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
| #!/usr/bin/env python2 | |
| # -*- coding: utf-8 -*- | |
| #https://github.com/amueller/word_cloud | |
| from wordcloud import WordCloud | |
| #http://www.pmgrecordings.com/makedonide.php?id=113 | |
| #pdftotext | |
| text = open("mnogudetna.txt").read().decode('utf-8') |
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
| general { | |
| colors = true | |
| interval = 20 | |
| output_format = "i3bar" | |
| } | |
| # order += "ipv6" | |
| # order += "run_watch DHCP" | |
| # order += "run_watch VPN" | |
| #order += "wireless wlan0" |
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
| boolean wifiReady = 0; | |
| boolean wifiConnected = 0; | |
| void setup() { | |
| pinMode(10,OUTPUT); | |
| pinMode(13,OUTPUT); | |
| digitalWrite(10,LOW); | |
| digitalWrite(13,LOW); | |
| Serial.begin(115200); |
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
| #!/usr/bin/python3 | |
| """ | |
| This script notifies you by mail when there are available time slots for online shopping at the AH. | |
| ./get.py --postcode 1111aa --to-mail <WHERE_TO_SEND_THE_ALLERT> --from-mail <GMAIL_SENDER_ADDRESS> --password <THEPASS> | |
| """ | |
| import json | |
| import urllib.request |
OlderNewer