Skip to content

Instantly share code, notes, and snippets.

View d-schmidt's full-sized avatar
🏠
Coding from home

David Schmidt d-schmidt

🏠
Coding from home
  • Germany
View GitHub Profile
@d-schmidt
d-schmidt / raspberry-pi-zero_as_webcam.md
Last active February 7, 2021 13:58 — forked from justinschuldt/raspberry-pi-zero_as_webcam.md
Directions for setting up a RaspberryPi 4 to act as a generic USB webcam

hardware/software

Webcam parts:

  • Raspberry Pi 4
  • Raspberry Pi High Quality Camera (12.3-megapixel)
  • Raspbian Buster Lite 2021-01-11

Webcam works with:

  • Windows 10
  • Windows 10 "Camera" app
  • Google Hangouts via Chrome
import csv
import requests
import glob
# Quick and dirty script to convert a CSV file of album names to a Spotify playlist
SEARCH = "https://api.spotify.com/v1/search"
ALBUMS = "https://api.spotify.com/v1/albums"
AUTH = "Bearer xxxxxxxx" # Fill in with OAUTH token
PLAYLIST = "https://api.spotify.com/v1/users/xxxx/playlists/xxxxxxxx/tracks" # fill in
@d-schmidt
d-schmidt / SimpleAuthServer.py
Last active May 3, 2019 19:36 — forked from fxsjy/SimpleAuthServer.py
SimpleAuthServer: A IPv6 Python 3 SimpleHTTPServer with authentication
import base64
from http.server import HTTPServer
from http.server import SimpleHTTPRequestHandler
import socket
key = base64.b64encode(b"user:password")
class HTTPServerV6(HTTPServer):
address_family = socket.AF_INET6
@d-schmidt
d-schmidt / OpenWithSublimeText3.cmd
Last active February 27, 2017 21:52 — forked from mrchief/LICENSE.md
Add "Open with Sublime Text 3" to Windows Explorer Context Menu of folders
@echo off
SET st3Path=c:\Program Files\Sublime Text 3\sublime_text.exe
rem add it for folders
@reg add "HKEY_CLASSES_ROOT\Folder\shell\Open with Sublime Text 3" /t REG_SZ /v "" /d "Open with Sublime Text 3" /f
@reg add "HKEY_CLASSES_ROOT\Folder\shell\Open with Sublime Text 3" /t REG_EXPAND_SZ /v "Icon" /d "%st3Path%,0" /f
@reg add "HKEY_CLASSES_ROOT\Folder\shell\Open with Sublime Text 3\command" /t REG_SZ /v "" /d "%st3Path% \"%%1\"" /f
pause