This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var fs = require('fs'); | |
var Buffer = require('buffer').Buffer; | |
var id3Reader = new (function(){ | |
// Credits to esailja // | |
var self = this; | |
function id3Size( buffer ) { | |
var integer = ( ( buffer[0] & 0x7F ) << 21 ) | | |
( ( buffer[1] & 0x7F ) << 14 ) | | |
( ( buffer[2] & 0x7F ) << 7 ) | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* encoder.cpp | |
* | |
* Created on: Jul 12, 2012 | |
* Author : Abhishek Hingnikar | |
* @TODO: remove the file deps. | |
* ADD STREAM DEPS so that u can buffer output. | |
* Structure | |
* @JSAPI | |
* ffmpeg{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<conio.h> | |
#include<stdio.h> | |
#include<graphics.h> | |
#include<dos.h> | |
/* | |
*************************************************************************** | |
* Programmer : Abhishek Hingnikar * | |
* AIM : Mobile Shop Management System in C * | |
*************************************************************************** | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var mongodb = require( 'mongodb' ), | |
Server = mongodb.Server, | |
Db = mongodb.Db, | |
MongoModule = {}; | |
MongoModule.setup = function() { | |
// Initialize the db connection | |
var client = new Db( 'tartempion', | |
new Server( | |
'127.0.0.1', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* A Short but smart tutorial on basic pathfinding - http://ai-depot.com/Tutorial/PathFinding.html | |
* http://www.html5rocks.com/en/tutorials/webaudio/games/ | |
CSS Pro Tip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Since Octavian once appointed me as a vampire slayer. | |
I am here by giving you a tool to kill help vampires | |
*/ | |
/* | |
Run it in console and then do | |
blade.slash(<idOfVampire>); to nuke em alive em. | |
blade.mercy(<idOfVampire>); to leave em alive. | |
*/ | |
var blade = new (function(){ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* css_editor.js */ | |
module.exports = function(element,css){ | |
for(var key in css){ | |
element.style[key] = css[key]; | |
} | |
} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var uuid = require( 'node-uuid' ), | |
engines = require( './engines.js' ), | |
util = require( './util.js' ); | |
/** | |
* This is what the code must do: | |
* - Connect to the websocket. | |
* - Create a channel which name is a generated UUID. | |
* - Listen on "send key" event from the websocket to get | |
* a keyCode. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* (C) Tapeer Team 2012 | |
* Puffy is/was/will be a brain work of Abhishek Hingnikar , Nikita Arora , Lila Pustovoyt , Jennifer Inzer and | |
* other members of tapeer design team | |
* AWW SERIOUSLY MAN YOU GUYS HAVE READ THIS N1000 TIMES ... SO | |
* THIS IS JUST TO SAY THIS FILE IS DISTRIBUTED UNDER MIT LICENSE HAPPY ? KTHX BYE | |
*/ | |
@import url(http://fonts.googleapis.com/css?family=Josefin+Sans); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<i class="macbook"></i> |
OlderNewer