Skip to content

Instantly share code, notes, and snippets.

View satishp962's full-sized avatar
🤵‍♂️
Growing

Satish Pandey satishp962

🤵‍♂️
Growing
View GitHub Profile
@satishp962
satishp962 / keras_prediction.py
Created February 20, 2018 12:46 — forked from hnykda/keras_prediction.py
Predicting sequences of vectors (regression) in Keras using RNN - LSTM (danielhnyk.cz)
import pandas as pd
from random import random
flow = (list(range(1,10,1)) + list(range(10,1,-1)))*100
pdata = pd.DataFrame({"a":flow, "b":flow})
pdata.b = pdata.b.shift(9)
data = pdata.iloc[10:] * random() # some noise
import numpy as np
@satishp962
satishp962 / OpenWithSublimeText3.bat
Last active October 18, 2017 16:47 — forked from roundand/OpenWithSublimeText3.bat
Open folders and files with Sublime Text 3 from File Explorer context menu (tested on Windows 10 Pro x64)
@echo off
SET st3Path=C:\Program Files\Sublime Text 3\sublime_text.exe
rem add it for all file types
@reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text 3" /t REG_SZ /v "" /d "Open with Sublime Text" /f
@reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text 3" /t REG_EXPAND_SZ /v "Icon" /d "%st3Path%,0" /f
@reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text 3\command" /t REG_SZ /v "" /d "%st3Path% \"%%1\"" /f
rem add it for folders
@reg add "HKEY_CLASSES_ROOT\Folder\shell\Open with Sublime Text 3" /t REG_SZ /v "" /d "Open with Sublime Text" /f