- Probabilistic Data Structures for Web Analytics and Data Mining : A great overview of the space of probabilistic data structures and how they are used in approximation algorithm implementation.
- Models and Issues in Data Stream Systems
- Philippe Flajolet’s contribution to streaming algorithms : A presentation by Jérémie Lumbroso that visits some of the hostorical perspectives and how it all began with Flajolet
- Approximate Frequency Counts over Data Streams by Gurmeet Singh Manku & Rajeev Motwani : One of the early papers on the subject.
- [Methods for Finding Frequent Items in Data Streams](http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.187.9800&rep=rep1&t
THIS GIST WAS MOVED TO TERMSTANDARD/COLORS
REPOSITORY.
PLEASE ASK YOUR QUESTIONS OR ADD ANY SUGGESTIONS AS A REPOSITORY ISSUES OR PULL REQUESTS INSTEAD!
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2011 YOUR_NAME_HERE <YOUR_URL_HERE> | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
[ | |
{ | |
"locationName":"Haslett Warehouse", | |
"locationDesc":"680 Beach St.", | |
"latitude":"37.8069", | |
"longitude":-122.4201 | |
}, | |
{ | |
"locationName":"Ghirardelli Square", | |
"locationDesc":"Block bounded by North Point, Larkin, Beach and Polk Streets", |
This pen explain how to use a svg
A Pen by Jimmy Moon on CodePen.
There are certain files created by particular editors, IDEs, operating systems, etc., that do not belong in a repository. But adding system-specific files to the repo's .gitignore
is considered a poor practice. This file should only exclude files and directories that are a part of the package that should not be versioned (such as the node_modules
directory) as well as files that are generated (and regenerated) as artifacts of a build process.
All other files should be in your own global gitignore file:
- Create a file called
.gitignore
in your home directory and add any filepath patterns you want to ignore. - Tell git where your global gitignore file is.
Note: The specific name and path you choose aren't important as long as you configure git to find it, as shown below. You could substitute
.config/git/ignore
for.gitignore
in your home directory, if you prefer.
// Reference: http://stackoverflow.com/questions/4822471/count-number-of-lines-in-a-git-repository | |
$ git ls-files | xargs wc -l |
#### Installs Nodejs and Express on a new AWS EC2 instance, running Linux AMI. | |
# "Webserver" is about 10 lines of code in Express.js/Node | |
# This works on RHEL systems (i.e. yum). | |
# To install, do this on target machine (make sure to get the link from RAW gist): | |
# | |
# $ sudo su - | |
# $ curl https://gist...../raw/... | bash -s | |
#### Step 1: Note OS | |
# Installing Nodejs depends on which OS you're on. Since I was on a AWS AMI |
#!/bin/bash | |
# Xcode: Set version and build number from Git | |
# -------------------------------------------- | |
# | |
# This script sets the version number `CFBundleShortVersionString` to one of | |
# | |
# - `1.2.3` -- for the tagged commit `v1.2.3` or a hyphen-separated prerelease, | |
# e.g. `v1.2.3-alpha`, `v1.2.3-alpha.2`, `v1.2.3-beta`, `v1.2.3-rc`. | |
# - `1.2.3-7-gabc1234` -- at commit `abc1234`, 7 commits after `v1.2.3`, | |
# - `1.2.3-7-gabc1234-dirty` -- when there are uncommitted changes, or |
#!/usr/bin/python | |
# aws-instance-monitor | |
# | |
# This is a command-line tool, as well as a monitor/failover script that is designed | |
# for HA NAT, but should be usable when the following conditions are met: | |
# | |
# 1. Used in AWS VPC Route Table - VPC routing describes methods of egress | |
# for outbound traffic. Typically, a NAT will have a 0.0.0.0/0 rule | |
# and the route will be in a table associated with a Private Subnet. |