Skip to content

Instantly share code, notes, and snippets.

@mamrehn
mamrehn / README.md
Last active October 9, 2015 12:05
Short introduction to AngularJS 1.x

Short introduction to AngularJS 1.x

Get AngularJS at https://angularjs.org/.

See a demo of this code @plunker.

Model

Services hold the business logic for an app.

<!DOCTYPE html>
<html>
<head>
<title>The curse of dimensionality</title>
</head>
<body>
<h3>The curse of dimensionality</h3>
<p>
@mamrehn
mamrehn / [profile] map and iterators.ipynb
Created January 12, 2017 15:23
Test for StackOverflow question about python's list comprehension vs.map. http://stackoverflow.com/questions/1247486/python-list-comprehension-vs-map
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@mamrehn
mamrehn / install.sh
Created March 27, 2017 11:01 — forked from Reddine/install.sh
Install Theano on Ubuntu 14.04
sudo apt-get install build-essential
sudo apt-get update
# BLAS → LAPACK → ATLAS → numpy → scipy → Theano
# remove numpy and scipy
sudo apt-get remove python-numpy
sudo apt-get remove python-scipy
# Instalation commands
sudo apt-get install gfortran
sudo apt-get install libopenblas-dev
sudo apt-get install liblapack-dev
@mamrehn
mamrehn / xkcd_neon_colors.ipynb
Created April 26, 2017 13:53
xkcd neon colors for matplotlib/seaborn
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@mamrehn
mamrehn / gpu_stat.py
Last active September 15, 2017 13:18 — forked from matpalm/gpu_stat.py
json formatting of nvidia-settings
#!/usr/bin/env python
# gpu_stat.py [DELAY [COUNT]]
# dump gpu stats as a json and plot in file
# {"cpu":5.9,"gpu":{"used_mem":7959,"util":{"graphics":91,"memory":56,"video":0,"PCIe":2}},"time":1505480296.0436406}
import sys
import time
import json
from pathlib import Path
# import socket
@mamrehn
mamrehn / combine_images.py
Created December 31, 2017 01:55
Extract all images from a pdf file and enhance text in those images.
import sys
from pathlib import Path
import numpy as np
from skimage.io import imread, imsave
from skimage.color import gray2rgb
def to_rgba(img_):
if 3 == img_.ndim:
if 4 == img_.shape[2]:
return img_
@mamrehn
mamrehn / compress_git_repository.sh
Created April 9, 2018 12:01
Compress git repository
git repack -a -d --depth=250 --window=250
git gc
git prune
@mamrehn
mamrehn / build_and_install_fslint.sh
Created October 19, 2018 12:08
Generate .deb pacake yourself and install it
# Source: http://www.pixelbeat.org/fslint/
# https://www.vdr-portal.de/forum/index.php?thread/124755-gel%C3%B6st-dpkg-buildpackage-signiert-das-dsc-file-nicht/
git clone https://github.com/pixelb/fslint.git
cd fslint
# Note: "-us -uc" skips signing the package and is definitely not recommended (but works for self-built packages)
dpkg-buildpackage -I.git -rfakeroot -tc -us -uc
sudo dpkg -i ../fslint_2.47-1_all.deb
@mamrehn
mamrehn / install_latest_CUDA_driver_and_toolkit.sh
Created October 19, 2018 12:35
Install latest CUDA driver and toolkit
# Source: https://askubuntu.com/questions/1077061/how-do-i-install-nvidia-and-cuda-drivers-into-ubuntu
sudo apt-key adv --fetch-keys http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/7fa2af80.pub
sudo bash -c 'echo "deb http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64 /" >> /etc/apt/sources.list.d/cuda.list'
sudo apt update
# sudo apt install nvidia-driver-410
# sudo apt install cuda-10-0