Skip to content

Instantly share code, notes, and snippets.

View arjun921's full-sized avatar
🧠
Perpetual Learner

Arjun Sunil arjun921

🧠
Perpetual Learner
View GitHub Profile

Ubuntu 22.04 for Deep Learning

In the name of God

This gist contains steps to setup Ubuntu 22.04 for deep learning.


Install Ubuntu 22.04

@CodyKochmann
CodyKochmann / fib.py
Created September 8, 2017 15:22
Binet's Fibonacci formula in python
# this is Binet's Fibonacci formula written in python
fib = lambda n:int((((1+sqrt(5))**n)-((1-sqrt(5))**n))/((2**n)*sqrt(5)))
from matplotlib import pyplot as plt
import cv2
img = cv2.imread('/Users/mustafa/test.jpg')
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
plt.imshow(gray)
plt.title('my picture')
plt.show()
@kidpixo
kidpixo / jupyter_shortcuts.md
Last active September 21, 2024 14:26
Keyboard shortcuts for ipython notebook 3.1.0 / jupyter

Warning This is SEVERELY outdated, the current jupyter version is > 6.X, please refer to your current jupyter notebook installation!

Disclaimer : I just copied those shortcuts from Jupyter Menú > Help > Keyboard Shortcuts, I didn't wrote them myself.

Check your current shortcuts in your Help, shortcuts coule have been modified by extensions or your past self.

Toc

Keyboard shortcuts

@denji
denji / http-benchmark.md
Last active October 13, 2024 00:43
HTTP(S) Benchmark Tools / Toolkit for testing/debugging HTTP(S) and restAPI (RESTful)

tmux cheatsheet

As configured in my dotfiles.

start new:

tmux

start new with session name: