- 200 Ltrs water drum or cement tank.
- 200 Ltrs of water
- 10 Kg of indigenous desi Cow Dung
- 5 to 10 Ltrs of indigenous desi cow urine
- 1 Kg of black jaggery(smashed)
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
| <!doctype html> | |
| <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--> | |
| <!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]--> | |
| <!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]--> | |
| <!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]--> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
| <title></title> | |
| <meta name="description" content=""> |
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
| // API return format is as so: | |
| // { | |
| // data: [ | |
| // { | |
| // name: 'foo' | |
| // }, | |
| // { | |
| // name: 'bar' | |
| // } | |
| // ] |
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
| { | |
| "C6F99": { | |
| "downlinkData": "1" | |
| }, | |
| "C6F19": { | |
| "downlinkData": "0" | |
| } | |
| } |
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 Ember from 'ember'; | |
| export default Ember.Component.extend({ | |
| classNames: 'chat-box', | |
| didRender() { | |
| if (this.get('isScrolledToBottom')) { | |
| this.$('ul')[0].scrollTop = this.$('ul')[0].scrollHeight; | |
| } |
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
| <html> | |
| <body> | |
| <pre id="display"></pre> | |
| <script src="pouchdb.js"></script> | |
| <script src="pouchdb.load.js"></script> | |
| <script> | |
| var db = new PouchDB('turtles'); | |
| db.get('_local/preloaded').catch(function (err) { | |
| if (err.status !== 404) { | |
| throw err; |
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 Ember from 'ember'; | |
| export default Ember.Controller.extend({ | |
| appName: 'Ember Twiddle', | |
| firstName: 'Alex', | |
| lastName: 'Matchneer', | |
| fullName: auto(get => |
-
https://desertbot.io/blog/headless-raspberry-pi-3-bplus-ssh-wifi-setup
-
https://www.raspberrypi-spy.co.uk/2018/12/running-flask-under-nginx-raspberry-pi/
-
Raspberry PI Stretch lite (Mirror)
- 2018-11-13-raspbian-stretch-lite.zip
-
[Git DHT22] (https://github.com/adafruit/Adafruit_Python_DHT)
-
[Git Repo / REST] (https://github.com/simonalbrecht/raspberry-pi-dht22-rest-api)
- Node.js is essential for the project. Download it here: https://nodejs.org/en/. Download the LTS version.
- Install
n. It maintains the version of node.js from time to time. - In your terminal install
nodemon. Nodemon is an npm package. - Run the command:
npm install nodemon –g
Above command installs the nodemon globally.