Skip to content

Instantly share code, notes, and snippets.

View achton's full-sized avatar

Achton Smidt Winther achton

View GitHub Profile
@hhromic
hhromic / raspbian-stretch-lite-slimdown.md
Last active October 14, 2024 23:02
Slimming Down Raspbian Stretch Lite

Slimming Down Raspbian Stretch Lite

Notes for slimming down a fresh installation of Raspbian Stretch Lite. This guide does not strip Raspbian of basic functionality such as Bluetooth and mDNS.

Instructions

Install a fresh Raspbian Stretch Lite image into the SD card ([source][1]).

$ unzip -p 2018-04-18-raspbian-stretch-lite.zip | dd bs=4M of=/dev/sdX conv=fsync

@Schnitzel
Schnitzel / attacks.md
Last active April 16, 2018 19:40
Drupal SA-CORE-2018-002 attacks

Drupal SA-CORE-2018-002 attacks on amazee.io

Attack 1

First seen: April 13th 2018, 12:54:06

Array Key: #markup

Array Value:

@Peregrinox
Peregrinox / Install docker osmc.md
Last active November 15, 2024 20:12
Install docker in osmc on pi

source: Docker en Raspberry Pi

Check version, release and keyname of OS:

$ cat /etc/debian_version
9.5
$ cat /etc/os-release
ID=osmc
@sdoshi579
sdoshi579 / Predicting-Traffic-Signs-using-CNN.py
Created September 1, 2019 10:56
Predicting the traffic signs by building CNN model using Keras
import os
import pandas as pd
from scipy.misc import imread
import math
import numpy as np
import cv2
import keras
import seaborn as sns
from keras.layers import Dense, Dropout, Flatten, Input
from keras.layers import Conv2D, MaxPooling2D