- http://jekyllthemes.org/themes/daktilo/ - For poetry
- https://panossakkos.github.io/personal-jekyll-theme/ - For person website
- http://jekyllthemes.org/themes/typewriter/ - For poetry
- http://jekyllthemes.org/themes/gridgallery/ - For photography gallery
- http://jekyllthemes.org/themes/modernblog/ - Photo poetry
- http://jekyllthemes.org/themes/mediator/ - Should move my existing project documentation to this bro.
- http://jekyllthemes.org/themes/vanilla-bean-creme/ - Poetry and Stories
- http://jekyllthemes.org/themes/book/ - Poetry maybe and stories
- http://jekyllthemes.org/themes/galileo/ - Travel diary
- http://jekyllthemes.io/theme/32865554/jasper - Travel/Blog this is built on Ghost, same used by Anmol
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 0100100100100000011000010110110100100000011001110110111101101001011011100110011100100000011101000110111100100000011010110110010101100101011100000010000001110100011010000110100101110011001000000111000001101001011001010110001101100101001000000110111101100110001000000111010001100101011110000111010000100000011011000110111101101110011001110010111000100000010101000110100001101001011100110010000001101001011100110010000001100010011001010110001101100001011101010111001101100101001000000100100100100000011000010110110100100000011101000111001001111001011010010110111001100111001000000111010001101111001000000111011101100001011100110111010001100101001000000111100101101111011101010111001000100000011101000110100101101101011001010010111000100000010110010110111101110101001000000110110101100001011110010010000001100010011001010010000001100001011000100110110001100101001000000111010001101111001000000110001101110010011000010110001101101011001000000110100101110100001011000010000001100010011101010111010000100000011000010111001101101011 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Follow this: https://blog.sengotta.net/signed-mac-os-driver-for-winchiphead-ch340-serial-bridge/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def doRetweet(_id_string_): | |
| # authenticate against the Twitter API | |
| import _inputs as c | |
| auth = OAuthHandler(c.consumer_key, c.consumer_secret) | |
| auth.set_access_token(c.access_token, c.access_token_secret) | |
| api = tweepy.API(auth) | |
| # actually do the retweet | |
| api.retweet(_id_string_) | |
| print('I did the retweet: ', _id_string_) | |
| #print() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! bash/sh | |
| case "$(pidof sh node.sh| wc -w)" in | |
| 0) echo "Starting script; $(date)" #>> /home/ubuntu/code/logs/bot.log | |
| /home/ubuntu/code/fracktalBot/sh node.sh & | |
| ;; | |
| 1) #all ok | |
| ;; | |
| *) echo "Removed double node scripts: $(date)" #>> /home/ubuntu/code/logs/bot.log | |
| kill $(pidof sh node.sh | awk '{print $1}') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| status=`ps -efww | grep -w "[n]ode.sh" | awk -vpid=$$ '$2 != pid { print $2 }'` | |
| if [ ! -z "$status" ]; then | |
| echo "[`date`] : node.sh : Process is already running" | |
| exit 1; | |
| else | |
| echo "Restaring this shit" | |
| /home/ubuntu/code/fracktalBot/node.sh>log.log & | |
| exit 1; | |
| fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import smtplib | |
| from email.mime.image import MIMEImage | |
| from email.mime.multipart import MIMEMultipart | |
| from email.mime.text import MIMEText | |
| from email.mime.base import MIMEBase | |
| from email import encoders | |
| fromaddr = "" | |
| toaddr = "" | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var submitted ="SUBMITTED"; | |
| var approved ="APPROVE"; | |
| var rejected ="DECLINE"; | |
| var APPROVAL_FORM_URL ='https://docs.google.com/a/helpchat.in/forms/d/1rofjwJbNZq_hMfQaBLWYk2RnhA24p7nCzXR1CTISVa8/viewform' ; | |
| var APPROVALS_SPREADSHEET_ID='1yvnH_ddE3d_MNOUHbrk535N0N6LJhpD4CGzQmc-l-vA'; | |
| function mainFunction() { | |
| var sheet = SpreadsheetApp.getActiveSheet(); | |
| var startRow = 2; // First row of data to process | |
| var numRows = sheet.getLastRow(); // Number of rows to process - This has to be the maximum number of rows. this part is working |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var APPROVALS_SPREADSHEET_ID ='1GqnBcrjUnG3XZFj3a4Kc8j_7aPKSMlqE70fmrTTdliM'; | |
| var APPROVAL_FORM_URL ='https://docs.google.com/forms/d/1kdpRJIxFLBrJyumCNOIx00x0Xp23ar1m0pXQ_qxFDRU/viewform?usp=send_form'; | |
| var STATE_APPROVED = "Approved"; | |
| var STATE_DENIED = "Denied"; | |
| var submitted ="SUBMITTED"; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| set nocompatible | |
| syntax enable | |
| syntax on | |
| set background=dark | |
| set number | |
| set incsearch | |
| set hlsearch | |
| set autoindent | |
| set smartindent | |
| set shiftwidth=2 |
NewerOlder