Skip to content

Instantly share code, notes, and snippets.

View jedau's full-sized avatar

Jed Aureus Gonzales jedau

  • The Philippines
View GitHub Profile
### Keybase proof
I hereby claim:
* I am jedau on github.
* I am jedau (https://keybase.io/jedau) on keybase.
* I have a public key ASCCrRnswhhM6SO3KKGZ6RwHms1kiA53wUwNgihhZpPc3go
To claim this, I am signing this object:
## 5 Things that Most Excites Me
- Manage a support team
- Find and recruit teammates for the support team
- Help train and onboard new support teammates
- Run ticket review sessions to make sure tone is consistent across Zapier responses
- Analyze thousands of support tickets to spot trends the product team can use
## 5 Things that Least Excites Me
@jedau
jedau / Prime100
Created July 5, 2013 13:00
Returns the first 100 prime numbers
var result = "";
var ctr = 0;
for (var counter = 0; counter <= 1000; counter++)
{
for (var i = 2; i <= counter-1; i++)
if (counter%i === 0) break;
if(i === counter) {
if (result === "")
result = counter;
/*
* Copyright (c) 2012 Calvin Rien
*
* Based on the JSON parser by Patrick van Bergen
* http://techblog.procurios.nl/k/618/news/view/14605/14863/How-do-I-write-my-own-parser-for-JSON.html
*
* Simplified it so that it doesn't throw exceptions
* and can be used in Unity iPhone with maximum code stripping.
*
* Permission is hereby granted, free of charge, to any person obtaining