Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| Coding: | |
| http://jobs.readwriteweb.com/ | |
| http://noodleyard.com/ | |
| http://angel.co/jobs | |
| http://startuply.com/ | |
| http://jobs.37signals.com/ | |
| http://www.dice.com/ | |
| http://jobs.github.com/ | |
| http://www.craigslist.org | |
| http://news.ycombinator.com/jobs |
| # Then you can do things like, etc. | |
| pip install -r requirements.txt -u prod |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
Prerequisites:
Software components used:
| proxy_cache_path /var/cache/nginx/cache levels=1:2 keys_zone=cache:8m max_size=3000m inactive=600m; | |
| proxy_temp_path /var/tmp; | |
| # the IP(s) on which your node server is running. I chose port 3000. | |
| upstream app_the_scratch { | |
| server 127.0.0.1:3000 weight=1 fail_timeout=60s; | |
| } | |
| # the nginx server instance | |
| server { |
Elasticsearch was created in 2010 by Shay Banon after forgoing work on another search solution, Compass, also built on Lucene and created in 2004.
| import psycopg2 as pg | |
| import pandas.io.sql as psql | |
| # get connected to the database | |
| connection = pg.connect("dbname=mydatabase user=postgres") | |
| dataframe = psql.frame_query("SELECT * FROM <tablename>", connection) |
| """ | |
| client.py - AsyncIO Server using StreamReader and StreamWriter | |
| This will create 200 client connections to a server running server.py | |
| It will handshake and run similar to this: | |
| Server: HELLO | |
| Client: WORLD |