Skip to content

Instantly share code, notes, and snippets.

View xadahiya's full-sized avatar

Akshay Dahiya xadahiya

View GitHub Profile
@xadahiya
xadahiya / min-char-rnn.py
Created March 13, 2017 07:52 — 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)
@xadahiya
xadahiya / MemeMaker.html
Last active September 21, 2016 16:52 — forked from jwill/MemeMaker.html
Starter code for Meme Maker
<!DOCTYPE html>
<html>
<head>
<title>MemeMaker-Simple</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<style>
@xadahiya
xadahiya / login.html
Created July 11, 2016 20:16
Typingeek Login html
<!DOCTYPE html>
{% load account socialaccount %}
{% load i18n %}
{% load staticfiles %}
{% load compress %}
<html class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">