Skip to content

Instantly share code, notes, and snippets.

View bigomega's full-sized avatar

Bharath Raja bigomega

View GitHub Profile

Keybase proof

I hereby claim:

  • I am bigomega on github.
  • I am bigomega (https://keybase.io/bigomega) on keybase.
  • I have a public key whose fingerprint is 35B8 190F 23C3 8576 1E8C 8C8E 8EB4 BBCA 4DF5 E11C

To claim this, I am signing this object:

@bigomega
bigomega / himalayan-biking-trekking-camping-checklist.md
Last active August 11, 2021 19:21
Himalayan Biking + Trekking + Camping Checklist

Himalayan Biking + Trekking + Camping Checklist +

Utility

  • Tent
  • Sleeping bag
  • Blanket
  • Water bottles
  • Towel
  • Swiss army knife
  • An actual knife - emergencies
[{date:
'7-1-13',
pepsi: 2,
dietPepsi: 3
},{date:
'10-1-13',
mountainDew: 2,
frooti: 2,
@bigomega
bigomega / gist:4054638
Created November 11, 2012 11:31
Batman Logo (nolan's)
//THE DARK KNIGHT logo openGL code
//--Brad
//change the include files accordingly
#include <stdlib.h>
#include<GL/gl.h>
#include<GL/glu.h>
#include<GL/glut.h>
#include<unistd.h>
@bigomega
bigomega / github.js
Created November 3, 2021 11:17
Data collection for Appbase search
const got = require('got');
const AUTH_KEY = ''
;(async () => {
try {
const { data, headers } = await got.post({
url: 'https://api.github.com/graphql',
headers: { Authorization: `bearer ${AUTH_KEY}` },
json: {
@bigomega
bigomega / load-test.sh
Created March 3, 2016 11:03
A simple bash script to do load (performance) testing of a web service
max="$1"
date
echo "url: $2
rate: $max calls / second"
START=$(date +%s);
get () {
curl -s -v "$1" 2>&1 | tr '\r\n' '\\n' | awk -v date="$(date +'%r')" '{print $0"\n-----", date}' >> /tmp/perf-test.log
}