Skip to content

Instantly share code, notes, and snippets.

View yfr's full-sized avatar

Frank Mecklenburg yfr

  • Your Friendly Robot
  • Hamburg
View GitHub Profile
{
"AF": {
"region_code": "AF",
"region": "Afghanistan",
"map_tiles": true,
"geocoding": true,
"traffic": true,
"driving_directions": true,
"biking_directions": false,
"walking_directions": true,
@yfr
yfr / obsidian-web-clipper.js
Last active January 27, 2022 08:46 — forked from kepano/obsidian-web-clipper.js
Obsidian Web Clipper Bookmarklet to save articles and pages from the web (for Safari, Chrome, Firefox, and mobile browsers)
javascript: Promise.all([import('https://unpkg.com/turndown@6.0.0?module'), import('https://unpkg.com/@tehshrike/readability@0.2.0'), ]).then(async ([{
default: Turndown
}, {
default: Readability
}]) => {
/* Optional vault name */
const vault = "";
/* Optional folder name such as "Clippings/" */
@yfr
yfr / index.html
Created May 12, 2019 11:47
HTML-CSS 2019.04 Finale Version
<!DOCTYPE html>
<html>
<head>
<title>Hello world!</title>
<link
href="https://fonts.googleapis.com/css?family=Cutive+Mono"
rel="stylesheet"
/>
<link rel="stylesheet" href="./styles.css" />
</head>
Verifying that "yfrobot.id" is my Blockstack ID. https://onename.com/yfrobot
repo
README
online edit
subfolder
issues
templates
label
milestone

Keybase proof

I hereby claim:

  • I am yfr on github.
  • I am yfr (https://keybase.io/yfr) on keybase.
  • I have a public key whose fingerprint is 5C24 C647 E657 92E8 9550 08F8 F43F 09C6 8ACF F08B

To claim this, I am signing this object:

#!/bin/sh
git branch --merged
echo
read -p "Do you want to delete these branches? [y|n]" -n 1 confirmation
echo
case "$confirmation" in
n|N) exit 0;;
#!/bin/sh
git stash list
echo
read -p "Do you want to drop all these stashes? [y|n]" -n 1 confirmation
echo
case "$confirmation" in
n|N) exit 0;;