Skip to content

Instantly share code, notes, and snippets.

View rishabhjoshi's full-sized avatar

Rishabh Joshi rishabhjoshi

View GitHub Profile
@rishabhjoshi
rishabhjoshi / tmux_local_install.sh
Created December 21, 2018 10:50 — forked from ryin/tmux_local_install.sh
bash script for installing tmux without root access
#!/bin/bash
# Script for installing tmux on systems where you don't have root access.
# tmux will be installed in $HOME/local/bin.
# It's assumed that wget and a C/C++ compiler are installed.
# exit on error
set -e
TMUX_VERSION=1.8
@svjan5
svjan5 / placeholder_reproduce.py
Created May 9, 2018 05:00
TF bug for multiple unused placeholders
""" Bi-directional Recurrent Neural Network.
A Bi-directional Recurrent Neural Network (LSTM) implementation example using
TensorFlow library. This example is using the MNIST database of handwritten
digits (http://yann.lecun.com/exdb/mnist/)
Links:
[Long Short Term Memory](http://deeplearning.cs.cmu.edu/pdfs/Hochreiter97_lstm.pdf)
[MNIST Dataset](http://yann.lecun.com/exdb/mnist/).
@tycho
tycho / build.cmd
Created August 19, 2016 01:46
build script for Synergy on Windows x86_64
rem This works for me at least. Found the Synergy wiki annoying and not descriptive enough about the correct
rem process, so I wrote this script in case I had to do the process more than once (e.g. on new releases)
call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin\amd64\vcvars64.bat"
set PATH=%PATH%;C:\Qt\2010.02\qt\bin;C:\Qt\2010.02\bin;C:\Qt\2010.02\mingw\bin;C:\Program Files (x86)\WiX Toolset v3.10\bin
call hm.cmd reset || exit /b
call hm.cmd conf -r --no-prompts -v -g 2 || exit /b
call hm.cmd build -r --no-prompts -v || exit /b
call hm.cmd package win || exit /b
@developius
developius / README.md
Last active April 25, 2024 22:15
Setup SSH keys for use with GitHub/GitLab/BitBucket etc

Create a new repository, or reuse an existing one.

Generate a new SSH key:

ssh-keygen -t rsa -C "your_email@example.com"

Copy the contents of the file ~/.ssh/id_rsa.pub to your SSH keys in your GitHub account settings (https://github.com/settings/keys).

Test SSH key:

@ryin
ryin / tmux_local_install.sh
Last active April 23, 2024 01:06
bash script for installing tmux without root access
#!/bin/bash
# Script for installing tmux on systems where you don't have root access.
# tmux will be installed in $HOME/local/bin.
# It's assumed that wget and a C/C++ compiler are installed.
# exit on error
set -e
TMUX_VERSION=1.8