Skip to content

Instantly share code, notes, and snippets.

View steffiland's full-sized avatar
🏠
Working from home

steffiland

🏠
Working from home
View GitHub Profile
@steffiland
steffiland / How to download streaming video.md
Created February 25, 2022 13:39 — forked from danfinlay/How to download streaming video.md
How to download a streaming video with Google Chrome

How to download streaming video

Streaming just means a download that they don't want you to keep. But Chrome's developer tools make it easy to access what's really going on under the hood.

Open Developer Tools

From the page where you want to download some things, go into your chrome menu to open the developer tools. You can either:

1.  (On a mac): Command-option-J
2. (On a PC): Control-alt-J
@steffiland
steffiland / gitsubmodules.md
Created August 6, 2019 07:05
Git Submodules

How to detect Telegram Chat IDs

... by opening https://web.telegram.org/ in a Browser:

for a user

group

Open the group's chat window and inspect the URL: https://web.telegram.org/#/im?p=g[GROUP_ID] ⇒ the chat ID will be -[GROUP_ID] (prepend a minus)

@steffiland
steffiland / 00_readme.md
Last active August 4, 2020 18:47
Putzplan

Putzplan Flylady

this is a static html webapp based on Tiddlywiki.

@steffiland
steffiland / webtools.md
Last active July 1, 2019 07:34
Mini Web Tool Collection
@steffiland
steffiland / ssh_config
Created May 23, 2019 07:48 — forked from rbenaley/ssh_config
GitHub ssh access via HTTP Proxy
host github.com
user git
hostname ssh.github.com
port 443
proxycommand socat - PROXY:<hostname>:%h:%p,proxyport=<port>
@steffiland
steffiland / push.html
Created May 20, 2019 08:51
Push Notifications Minimal example
<!DOCTYPE html>
<html>
<head>
<title>Using Push.js to Display Web Browser Notifications</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/push.js/1.0.9/push.min.js"></script>
</head>
<body>
@steffiland
steffiland / httpservers.md
Created February 7, 2018 10:43
quick and simple HTTP servers

Works on windows as well.

Python2:

python -m SimpleHTTPServer [8000]     # starts a simple http server in current directory
python -m CGIHTTPServer [8000]          # allow cgi-bin subdirectory

Python3: