Skip to content

Instantly share code, notes, and snippets.

@suyash
suyash / .gitignore
Last active September 5, 2017 14:15
synth
*.mp3
@suyash
suyash / README.md
Last active October 12, 2017 21:29
Pocket API authentication demo
go run main.go -key ...

and go to http://localhost:4343/login

@suyash
suyash / jfsStore.js
Last active May 12, 2020 07:21
MemoryStore + JFSStore
import { Store } from 'express-session';
import JFS from 'jfs';
export default class JFSStore extends Store {
constructor(location) {
super();
this.db = new JFS(location || 'data');
}
@suyash
suyash / lib.rs
Created December 6, 2017 07:48
Bowling
#[derive(Debug)]
enum State {
STRIKE,
STRIKE_PLUS_1,
STRIKE_PLUS_2,
SPARE,
SECOND,
FIRST
}

Keybase proof

I hereby claim:

  • I am suyash on github.
  • I am suyash93 (https://keybase.io/suyash93) on keybase.
  • I have a public key ASB0FMVL09PSCDnomjVVQCJzpz-5L9fDYgQi3l49j4NthQo

To claim this, I am signing this object:

@suyash
suyash / Cargo.toml
Last active December 27, 2022 14:51
@karpathy's min-char-rnn.py in rust
[package]
name = "min-char-rnn-rs"
version = "0.1.0"
authors = ["Suyash <suyash93@protonmail.com>"]
edition = "2018"
[dependencies]
rulinalg = "0.4.2"
rand = "0.6.4"
indicatif = "0.11.0"
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@suyash
suyash / mixture_density_networks.ipynb
Created September 25, 2019 12:27
Mixture Density Networks
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@suyash
suyash / canny_edge_detector.ipynb
Created September 27, 2019 05:50
Canny Edge Detector
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.