Skip to content

Instantly share code, notes, and snippets.

View d3rrick's full-sized avatar

@d3rrick d3rrick

View GitHub Profile
@d3rrick
d3rrick / vscode_shortcuts.md
Created May 10, 2021 06:43 — forked from bradtraversy/vscode_shortcuts.md
Helpful shortcuts for VSCode

VSCode Shortcuts

List of helpful shortcuts for faster coding

If you have any other helpful shortcuts, feel free to add in the comments of this gist :)

Official List of all commands

@d3rrick
d3rrick / rsa_ecb_pkcs1.go
Created February 1, 2021 14:36 — forked from hothero/rsa_ecb_pkcs1.go
RSA/ECB/PKCS1Padding imnplementation by Golang (can work with JAVA, C#, etc.)
package main
import (
"bytes"
"crypto/rand"
"crypto/rsa"
"crypto/x509"
"encoding/base64"
"encoding/pem"
"errors"
@d3rrick
d3rrick / raspberrypi-picamera-motion-detection.py
Created July 22, 2018 17:28 — forked from FutureSharks/raspberrypi-picamera-motion-detection.py
A simple example of using the Raspberry Pi Camera Module and python picamera for motion detection
#!/usr/bin/python
import picamera
import picamera.array
import time
threshold = 10 # How Much pixel changes
sensitivity = 100 # How many pixels change
def takeMotionImage(width, height):