Skip to content

Instantly share code, notes, and snippets.

View aug2uag's full-sized avatar

Reza Fatahi aug2uag

  • Los Angeles, CA
View GitHub Profile
@aug2uag
aug2uag / US Zip Codes from 2013 Government Data
Created November 8, 2018 18:56 — forked from erichurst/US Zip Codes from 2013 Government Data
All US zip codes with their corresponding latitude and longitude coordinates. Comma delimited for your database goodness. Source: http://www.census.gov/geo/maps-data/data/gazetteer.html
This file has been truncated, but you can view the full file.
ZIP,LAT,LNG
00601,18.180555, -66.749961
00602,18.361945, -67.175597
00603,18.455183, -67.119887
00606,18.158345, -66.932911
00610,18.295366, -67.125135
00612,18.402253, -66.711397
00616,18.420412, -66.671979
00617,18.445147, -66.559696
@aug2uag
aug2uag / gist:63a677a9ab1e4d3af21488820c1786e4
Created November 8, 2018 04:48 — forked from vekexasia/gist:2367508
Check if the user is opening the app for the first time
private Boolean firstTime = null;
/**
* Checks if the user is opening the app for the first time.
* Note that this method should be placed inside an activity and it can be called multiple times.
* @return boolean
*/
private boolean isFirstTime() {
if (firstTime == null) {
SharedPreferences mPreferences = this.getSharedPreferences("first_time", Context.MODE_PRIVATE);
firstTime = mPreferences.getBoolean("firstTime", true);
@aug2uag
aug2uag / app.js
Created September 17, 2018 19:14 — forked from nuthinking/app.js
Multiple file uploads with Nodejs
var http = require("http");
var url = require("url");
var multipart = require("./multipart/multipart");
var sys = require("sys");
var fs = require("fs");
var server = http.createServer(function(req, res) {
// Simple path-based request dispatcher
switch (url.parse(req.url).pathname) {
case '/':
@aug2uag
aug2uag / specialties.html
Last active August 9, 2018 21:46
List of Physician Specialties
<li>Allergist or Immunologist</li>
<li>Anesthesiologist</li>
<li>Cardiologist</li>
<li>Dermatologist</li>
<li>Gastroenterologist</li>
<li>Hematologist/Oncologist</li>
<li>Internal Medicine</li>
<li>Nephrologist</li>
<li>Neurologist</li>
<li>Neurosurgeon</li>
@aug2uag
aug2uag / ultimate-ut-cheat-sheet.md
Created August 2, 2018 22:11 — forked from yoavniran/ultimate-ut-cheat-sheet.md
The Ultimate Unit Testing Cheat-sheet For Mocha, Chai and Sinon

The Ultimate Unit Testing Cheat-sheet

For Mocha, Chai and Sinon

using mocha/chai/sinon for node.js unit-tests? check out my utility: mocha-stirrer to easily reuse test components and mock require dependencies


@aug2uag
aug2uag / .gitlab-ci.yml
Created July 17, 2018 16:33 — forked from thornbill/.gitlab-ci.yml
Example Node GitLab CI Yamlfile
# Official framework image. Look for the different tagged releases at:
# https://hub.docker.com/r/library/node/tags/
image: node:6
before_script:
- npm install
# This folder is cached between builds
# http://docs.gitlab.com/ce/ci/yaml/README.html#cache
cache:
@aug2uag
aug2uag / initial_config.yaml
Created June 29, 2018 14:32
Multinode Kubernetes cluster on CentOS with Ansible
- hosts: all
become: yes
tasks:
- name: disable SELinux
command: setenforce 0
- name: ensure net.bridge.bridge-nf-call-ip6tables is set to 1
sysctl:
name: net.bridge.bridge-nf-call-ip6tables
value: 1
@aug2uag
aug2uag / default
Created June 2, 2018 03:10
NGINX O.S.H.
user www-data;
worker_processes 4;
pid /run/nginx.pid;
events {
worker_connections 768;
# multi_accept on;
}
http {
@aug2uag
aug2uag / default
Created June 2, 2018 03:04
Mutli-websocket (MS) NGINX config
#default
server {
listen 80;
server_name api.foo.com;
client_max_body_size 20m;
keepalive_timeout 30;
@aug2uag
aug2uag / nginx.conf
Last active December 10, 2017 08:33 — forked from Unitech/nginx.conf
NGINX/PM2
worker_processes auto;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;