Skip to content

Instantly share code, notes, and snippets.

@souparno
souparno / min-char-rnn.py
Created January 1, 2018 15:29 — forked from karpathy/min-char-rnn.py
Minimal character-level language model with a Vanilla Recurrent Neural Network, in Python/numpy
"""
Minimal character-level Vanilla RNN model. Written by Andrej Karpathy (@karpathy)
BSD License
"""
import numpy as np
# data I/O
data = open('input.txt', 'r').read() # should be simple plain text file
chars = list(set(data))
data_size, vocab_size = len(data), len(chars)
/*
A neuron is basically the sum of its synapses.
Along with a trigger threshold, that's all we need to calculate
whether or not it will trigger at any given moment:
*/
const neuron = ({ synapses = [], threshold = 1 } = {}) => ({
synapses,
threshold
});
@souparno
souparno / virtualhost.conf
Created March 13, 2017 16:27
apache configuration for node.js proxy
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName cuboid.io
ServerAlias www.cuboid.io
DocumentRoot /var/www/cuboidio
<Directory />
Options -Indexes +FollowSymLinks
AllowOverride None
Require all granted
</Directory>
@souparno
souparno / .conf
Created June 19, 2015 18:43
.conf file to create virtual host
<VirtualHost *:80>
ServerName Bonfire.local
DocumentRoot /var/www/Bonfire.local
<Directory /var/www/Bonfire.local>
Options FollowSymLinks
AllowOverride All
</Directory>
</VirtualHost>
@souparno
souparno / Combination Constructor & Prototype Pattern
Last active January 4, 2016 11:19 — forked from zacksleo/JavaScript Class
Combination Constructor & Prototype Pattern
/**
* Combination Constructor/Prototype Pattern
*/
//constructor
function Something(name){
//properties
this.name = name;
}
//prototype
@souparno
souparno / Javascript Inheritence
Last active January 3, 2016 23:49
A number of references on the javascript Class Framework/Class Implementation
/* Simple JavaScript Inheritance
* By John Resig http://ejohn.org/
* MIT Licensed.
*/
// Inspired by base2 and Prototype
(function(){
var initializing = false, fnTest = /xyz/.test(function(){xyz;}) ? /\b_super\b/ : /.*/;
// The base Class implementation (does nothing)
this.Class = function(){};
@souparno
souparno / .bshrc
Created January 1, 2016 12:13
my .bashrc
export ANDROID_HOME=/home/bonnie/Android/Sdk
export PATH=${ANDROID_HOME}/tools:${PATH}
export PATH=${ANDROID_HOME}/platform-tools:${PATH}
export PATH=${ANDROID_HOME}/build-toold:${PATH}
export PATH=${ANDROID_HOME}/../android-ndk-r10e:${PATH}
export JAVA_HOME=/usr/lib/jvm/java-7-openjdk-amd64
@souparno
souparno / gist:f077cb03f0339514bbcc
Created November 28, 2015 05:20 — forked from zachstronaut/gist:1184900
Stretch HTML5 canvas to fill window, preserving aspect ratio
/**
* fullscreenify()
* Stretch canvas to size of window.
*
* Zachary Johnson
* http://www.zachstronaut.com/
*
* See also: https://gist.github.com/1178522
*/
@souparno
souparno / building cordova with ant
Created July 12, 2015 07:53
building cordova with ant
cordova build android -- --ant
@souparno
souparno / getApp.js
Last active August 29, 2015 14:11 — forked from marcusoftnet/getApp.js
var app = require("express")();
app.get('/user', function(req, res){
res.send(200, { name: 'marcus' });
});
// In order to reach the app from other modules
// we need to export the express application
module.exports.getApp = app;