Skip to content

Instantly share code, notes, and snippets.

View ofenerci's full-sized avatar

Özhan Fenerci ofenerci

View GitHub Profile
https://github.com/github/hub
@ofenerci
ofenerci / gist:0b25fd3eef4340dd6bbe
Created July 20, 2015 21:13
World War II Reading
http://www.mobileread.com/forums/archive/index.php/t-46403.html
@ofenerci
ofenerci / gist:f113b96eb880e60b656c
Created July 21, 2015 05:33
Using Tab in Browser
Linux and other POSIX systems:
To input tabs in GTK+ applications (like Firefox or Chrome):
Control+Shift+U9
In Windows, you can push Alt+09. This only works with the number pad number keys. (Release Alt after pressing the last number key.)
@ofenerci
ofenerci / gist:58d1f6a5c41d91b830a0
Created July 21, 2015 07:10
Interesting IPython Notebooks
https://github.com/ipython/ipython/wiki/A-gallery-of-interesting-IPython-Notebooks
@ofenerci
ofenerci / Resources.txt
Created July 21, 2015 09:36
SageMath IPython Teaching Resources
https://github.com/sagemathinc/smc/wiki/Teaching
@ofenerci
ofenerci / IPython.txt
Created July 21, 2015 14:31
IPython Installation and Statistical Python
http://people.duke.edu/~ccc14/sta-663/Jupyter.html
http://people.duke.edu/~ccc14/sta-663/MonteCarlo.html
@ofenerci
ofenerci / gitcreate.sh
Created September 21, 2017 20:01 — forked from robwierzbowski/gitcreate.sh
A simple litte script. Create and push to a new github repo from the command line.
#!/bin/bash
# https://gist.github.com/robwierzbowski/5430952/
# Create and push to a new github repo from the command line.
# Grabs sensible defaults from the containing folder and `.gitconfig`.
# Refinements welcome.
# Gather constant vars
CURRENTDIR=${PWD##*/}
GITHUBUSER=$(git config github.user)
@ofenerci
ofenerci / Stackedit.md
Created October 15, 2017 11:02 — forked from nztim/Stackedit.md
Install StackEdit on Ubuntu 14.04

###Install Node and Bower

  • Set up the NodeSource repo and install Node
  • curl -sL https://deb.nodesource.com/setup_0.12 | sudo bash -
  • sudo apt-get install nodejs
  • Install bower: sudo npm install -g bower

Install StackEdit

  • Clone the repo: git clone https://github.com/benweet/stackedit
  • To use a domain other than 'localhost', edit /public/res/constants.js:
  • constants.BASE_URL = "http://stackedit.dev:3000/";
@ofenerci
ofenerci / chroot.sh
Created April 7, 2019 21:23 — forked from uglide/chroot.sh
Chroot to Installed system on LVM
#!/bin/bash
fdisk -lu
pvscan
vgscan
vgchange -a y
lvscan
mount /dev/ubuntu-vg/root /mnt
mount --bind /dev /mnt/dev
mount --bind /proc /mnt/proc