This is a tutorial to realize following video: https://www.youtube.com/watch?v=PBiOGvJRPqg
- Android phone Marsmallow or higher or Apple phone (for google assistant)
- IFTTT app
- Blynk app
- Arduino UNO
- ESP8266 Wifi module
| from bs4 import BeautifulSoup | |
| import csv | |
| import datetime | |
| import praw | |
| import requests | |
| import traceback | |
| import sys | |
| BOT_USERNAME = 'BOT_USERNAME' |
| #Creating an .onion service in the Tor network is as simple as editing /etc/tor/torrc and adding: | |
| HiddenServiceDir /var/lib/tor/www_service/ | |
| HiddenServicePort 80 127.0.0.1:80 | |
| # After restarting the tor service with | |
| sudo service tor restart | |
| # or | |
| sudo service tor reload | |
| # The directory will be created automagically, and inside the new directory, two files are generated, hostname and private_key. |
This is a tutorial to realize following video: https://www.youtube.com/watch?v=PBiOGvJRPqg
| .fadeinDown { | |
| -webkit-animation: fadeInDown 500ms ease-in-out; /* Chrome, Safari, Opera */ | |
| animation: fadeInDown 500ms ease-in-out; | |
| } | |
| /* Chrome, Safari, Opera */ | |
| @-webkit-keyframes fadeInDown { | |
| 0% { |
| // Reference: http://lea.verou.me/2011/10/easily-keep-gh-pages-in-sync-with-master/ | |
| $ git add . | |
| $ git status // to see what changes are going to be commited | |
| $ git commit -m 'Some descriptive commit message' | |
| $ git push origin master | |
| $ git checkout gh-pages // go to the gh-pages branch | |
| $ git rebase master // bring gh-pages up to date with master | |
| $ git push origin gh-pages // commit the changes |
| ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| ;; ;; | |
| ;; ;;;;;; ;;;;;; ;; | |
| ;; ;; ;; ;; ;; | |
| ;; ;; ;; ;;;;;; ;;; ;; ;; ;; ;; ;;; ;; ;; ;;;;;; ;; | |
| ;; ;;;;;; ;; ;; ;; ;; ;;;;;;; ;;; ;; ;; ;; ;; ;; ;; ;; | |
| ;; ;; ;; ;;;;; ;; ;; ;; ;; ;; ; ;; ;; ;; ;;;; ;;;;;; ;; | |
| ;; ;; ;; ;; ;;;;;;; ;; ;; ;; ;;; ;;;;;;; ;; ;; ;; ;; | |
| ;; ;; ;; ;;;;;; ;; ;; ;;;;;; ;;;;;; ;; ;; ;; ;; ;; ;; ;;;;;; ;; | |
| ;; ;; |
| #!/bin/bash | |
| # | |
| # video conversion script for publishing as HTML 5 video, via videojs (with hd button extension) | |
| # 2011 by zpea | |
| # feel free to use as public domain / Creative Commons CC0 1.0 (http://creativecommons.org/publicdomain/zero/1.0/) | |
| # | |
| FFMPEG=/usr/bin/ffmpeg | |
| HD_SUFFIX='_hd' |
| /* Our own header, to be included before all standard system headers */ | |
| #ifndef _APUE_H | |
| #define _APUE_H | |
| #if defined(SOLARIS) | |
| #define _XOPEN_SOURCE 500 /* Single UNIX Specification, Version 2 for Solaris 9 */ | |
| #define CMSG_LEN(x) _CMSG_DATA_ALIGN(sizeof(struct cmsghdr)+(x)) | |
| #elif !defined(BSD) | |
| #define _XOPEN_SOURCE 600 /* Single UNIX Specification, Version 3 */ |