⌘T | go to file |
⌘⌃P | go to project |
⌘R | go to methods |
⌃G | go to line |
⌘KB | toggle side bar |
⌘⇧P | command prompt |
I hereby claim:
- I am tverlaan on github.
- I am tverlaan (https://keybase.io/tverlaan) on keybase.
- I have a public key whose fingerprint is EE9B 8AA4 8780 1D46 F271 69A7 E65B 0D8D 0DAF 240C
To claim this, I am signing this object:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
iex> z foo | |
No function like 'foo' was found | |
iex> z into | |
Did you mean one of? | |
Collectable.BitString.into() | |
Collectable.File.Stream.into() | |
Collectable.HashDict.into() | |
Collectable.HashSet.into() | |
Collectable.IO.Stream.into() | |
Collectable.List.into() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e | |
CURRENT_VERSION="${1:-HEAD}" | |
NEXT_VERSION="${2:-FETCH_HEAD}" | |
echo "Showing commits from $NEXT_VERSION since $CURRENT_VERSION" | |
COMMIT_COUNT=$(git --no-pager log --format=format:%H $CURRENT_VERSION..$NEXT_VERSION | wc -l) | |
echo "Commits to review: $COMMIT_COUNT" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Copyright (C) 2020 Kia | |
# Licensed under Zero Clause BSD License | |
if [[ $# -ne 3 ]]; then | |
echo "usage: $0 (BMC I2C BUS NUMBER) (FAN PAGE) (DUTY CYCLE FLOOR)" | |
echo "" | |
echo "BMC I2C BUS NUMBER can be found as follows" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
import uuid | |
from recipe_scrapers import scrape_html | |
MEALIE_TOKEN = "" | |
MEALIE_URL = "" | |
MEALIE_TAG_ID = "" | |
MEALIE_HEADERS = {"Authorization": "Bearer " + MEALIE_TOKEN} | |
AH_HEADERS = {"Accept-Language": "nl", "User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:124.0) Gecko/20100101 Firefox/124.0"} |