Skip to content

Instantly share code, notes, and snippets.

git config --global alias.lola "log --graph --decorate --pretty=oneline --abbrev-commit --all"
[
{
"fileType": "D",
"lastModifiedDate": 1484286754241,
"name": "bar",
"path": "/bar",
"size": 0.0
},
{
"fileType": "D",
[{
"total": {
"currencyIso": "USD",
"priceType": "BUY",
"value": 6100.00,
"maxQuantity": null,
"minQuantity": null,
"formattedValue": "$6,100.00"
},
"guid": null,
@sushilshah
sushilshah / demo.json
Last active January 16, 2017 10:55
demo json
[{
"total": {
"currencyIso": "USD",
"priceType": "BUY",
"value": 6100.00,
"maxQuantity": null,
"minQuantity": null,
"formattedValue": "$6,100.00"
},
"guid": null,
@sushilshah
sushilshah / frequency_estimator.py
Created July 20, 2016 09:17 — forked from endolith/frequency_estimator.py
Frequency estimation methods in Python
from __future__ import division
from numpy.fft import rfft
from numpy import argmax, mean, diff, log
from matplotlib.mlab import find
from scipy.signal import blackmanharris, fftconvolve
from time import time
import sys
try:
import soundfile as sf
except ImportError:
#!/usr/bin/python
import paho.mqtt.client as paho
import os
import socket
import ssl
from time import sleep
from random import uniform
connflag = False
/*
* eHealth sensor platform for Arduino and Raspberry from Cooking-hacks.
*
* Description: "The e-Health Sensor Shield allows Arduino and Raspberry Pi
* users to perform biometric and medical applications by using 9 different
* sensors: Pulse and Oxygen in Blood Sensor (SPO2), Airflow Sensor (Breathing),
* Body Temperature, Electrocardiogram Sensor (ECG), Glucometer, Galvanic Skin
* Response Sensor (GSR - Sweating), Blood Pressure (Sphygmomanometer) and
* Patient Position (Accelerometer)."
*
@sushilshah
sushilshah / Consumer
Last active May 7, 2018 10:06
ActiveMQ JMS MQTT pub/sub
import javax.jms.*;
import org.apache.activemq.ActiveMQConnection;
import org.apache.activemq.ActiveMQConnectionFactory;
public class Consumer {
static String topicName = "foo";
public static void main(String[] args) throws JMSException {
// Getting JMS connection from the server
import sys
from urllib import urlencode
import requests
from urlparse import urlparse, parse_qs
from random import choice
import re
self_id = None # your facebook id here
utc_bday = None # utc timestamp of your birthday
@sushilshah
sushilshah / OracleDatabaseInfo
Created October 29, 2013 07:30
Oracle System Queries for Retrieving Oracle Database Object Information
// http://www.razorsql.com/articles/oracle_system_queries.html
The following contains information on how to retrieve database information for Oracle objects such as tables, views, indexes, packages, procedures, functions, and triggers. The queries all query the Oracle system views located in the SYS schema.
Tables
This is a query to get all Oracle tables that can be viewed by the current user.
select TABLE_NAME, OWNER from SYS.ALL_TABLES order by OWNER, TABLE_NAME