Userful while using local ipython notebooks or local code while accessing secure remote servers like redis, mongodb, etc.
autossh -M0 -fN -l -i ~/.ssh/id_rsa -L :localhost:
ABBY | |
AFFINITY | |
AKIRA | |
ALCHEMY | |
AMBER | |
AMBROSIA | |
AMETHYST | |
AMORE | |
ANAIS | |
ANASTASIA |
Userful while using local ipython notebooks or local code while accessing secure remote servers like redis, mongodb, etc.
autossh -M0 -fN -l -i ~/.ssh/id_rsa -L :localhost:
import requests | |
import datetime | |
from dateutil import parser | |
import pandas as pd | |
import matplotlib as mpl | |
mpl.use('Agg') | |
import matplotlib.pyplot as plt | |
# plt.style.use('ggplot') | |
from bs4 import BeautifulSoup | |
import StringIO |
shine:// URL |
#include <BLE_API.h> | |
#define DEVICE_NAME "PotentiometerToChat" | |
#define TXRX_BUF_LEN 20 | |
#define DEVICE_ID 0xFF | |
BLE ble; | |
#include <BLE_API.h> | |
#define DEVICE_NAME "PotentiometerToChat" | |
#define TXRX_BUF_LEN 20 | |
#define DEVICE_ID 0xFF | |
BLE ble; | |
# Introduction | |
This analysis helps in comparing cities on air pressure variations. | |
I calculate the mean variation in air-pressure for a given city using the wunderground data. | |
# Overall yearly variance output: | |
- BOS 0.08 | |
- JFK 0.24 | |
- SFO 0.13 |
Incomplete analysis of the pollution. Source: http://www.cpcb.gov.in/CAAQM/frmReportdisplay.aspx | |
https://docs.google.com/spreadsheets/d/1Deabs41hrbRsGL3qiE-evNWr4LFlDwl04nhk5S485T8/edit?usp=sharing |
import { customElement, property, LitElement, html, css } from 'lit-element'; | |
import { Machine, interpret, assign, createMachine, Interpreter, StateMachine } from 'xstate'; | |
import { XstateLitElement } from './xstate-lit-element'; | |
interface CounterContext { | |
count: number; | |
} | |
type CounterEvent = | |
| {type: "INC"} |