- Text Content Generator - http://www.lipsum.com
- Favicon Generator - http://tools.dynamicdrive.com/favicon
- Data Generator - https://mockaroo.com/
- Mobile Mockup Generator - https://mockuphone.com
- Logo Generator - https://www.logaster.com
- UUID Generator - https://www.uuidgenerator.net/
- Hash Generator - https://passwordsgenerator.net/sha256-hash-generator/
- Ultimate Code Generator - https://webcode.tools/
This file contains 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
module.exports = { | |
parser: 'babel-eslint', | |
extends: ['plugin:prettier/recommended', 'prettier/react'], | |
plugins: ['prettier', 'jest'], | |
parserOptions: { | |
sourceType: 'module', | |
ecmaVersion: 2020, | |
ecmaFeatures: { | |
jsx: true, | |
}, |
This file contains 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 python | |
""" | |
Very simple HTTP server in python. | |
Usage:: | |
./dummy-web-server.py [<port>] | |
Send a GET request:: | |
curl http://localhost |
A minimal HTTP server in python. It sends a JSON Hello World for GET requests, and echoes back JSON for POST requests.
python server.py 8009
Starting httpd on port 8009...
curl http://localhost:8009
{"received": "ok", "hello": "world"}
- go to the master branch our-team
git checkout our-team
- pull all the new changes from our-team branch
git pull
- go to your branch featurex
git checkout featurex
- merge the changes of our-team branch into featurex branch
- 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.
-
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)
This file contains 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 => |
This file contains 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; |
NewerOlder