Skip to content

Instantly share code, notes, and snippets.

View ofenerci's full-sized avatar

Özhan Fenerci ofenerci

View GitHub Profile
@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
@jhjensen2
jhjensen2 / noninteracting_particle_md.ipynb
Created October 30, 2018 20:42
noninteracting_particle_MD.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@goerz
goerz / An Introduction to Statistical Learning.md
Last active September 7, 2020 08:27
PDF bookmarks for "James, Witten, Hastie, Tibshirani - An Introduction to Statistical Learning" (LaTeX)

This gist contains out.tex, a tex file that adds a PDF outline ("bookmarks") to the freely available pdf file of the book

An Introduction to Statistical Learning with Applications in R, by Gareth James, Daniela Witten, Trevor Hastie and Robert Tibshirani

http://www-bcf.usc.edu/~gareth/ISL/index.html

The bookmarks allow to navigate the contents of the book while reading it on a screen.

@chrisma
chrisma / latex-cheatsheet-template.tex
Created September 22, 2017 11:52 — forked from alexander-yakushev/latex-cheatsheet-template.tex
Beautiful cheatsheet template for key bindings, compiled with XeLaTeX
\documentclass[10pt,english,landscape]{article}
\usepackage{multicol}
\usepackage{calc}
\usepackage[landscape]{geometry}
\usepackage{color,graphicx,overpic}
\usepackage[T1]{fontenc}
\usepackage[bitstream-charter]{mathdesign}
\usepackage[utf8]{inputenc}
\usepackage{url}
@max-mapper
max-mapper / bibtex.png
Last active November 6, 2024 09:03
How to make a scientific looking PDF from markdown (with bibliography)
bibtex.png

In your proposal, include the following information:

  • Your name and GitHub username
  • Your e-mail address
  • Your university/current enrollment (including what degree you're pursuing, and when you expect to graduate)
  • What is your level of familiarity with NetLogo? What is your level of familiarity with agent-based simulation in general?
  • Can you commit to a full 40 hours to week for the entire duration of GSoC?
  • What is the project you want to work on?
  • What is your experience with the technologies needed for this project?
  • What is your interest in the project? What do you hope to accomplish? What do you want to learn?
@pennestri
pennestri / katex_number_cite.html
Last active March 9, 2018 03:09
Numbering, cross referencing and copy equations in KaTex
<!DOCTYPE html>
<meta charset="utf-8">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.6.0/katex.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.6.0/katex.min.js"></script>
<style>
.equation {
font-size: 20px;
text-align: left;
margin: 30px 0;
margin-left: 5cm;
@mcnees
mcnees / UAO.tex
Created October 18, 2016 14:13
Spacetime diagrams for uniformly accelerated observers in LaTeX, using PGF/TikZ
%----------------------------------------------------------------------
% Use TikZ/PGF to programmatically draw spacetime diagrams for
% uniformly accelerated observers. Set the acceleration, initial
% conditions, and other paramters below.
%
% Questions/Comments to Robert McNees at [email protected]
% http://jacobi.luc.edu
% @mcnees on Twitter
% January 2015, Updated October 2016
%----------------------------------------------------------------------
@sam217pa
sam217pa / tufte-book.tex
Last active March 2, 2021 21:57
a template to export from org-mode to latex
\usepackage[scaled=0.95]{roboto}
\usepackage{mathpazo}
\linespread{1.05}
\usepackage{eulervm}
\usepackage[usenames]{xcolor}
%% footnote color
\renewcommand{\thefootnote}{\textcolor{Gray}{\arabic{footnote}}}
\makeatletter
@jfpuget
jfpuget / Mandelbrodt.ipynb
Created January 27, 2016 14:23
Mandelbrot set computation in Python
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.