Add git files interactively from the command line.
This file contains hidden or 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
#!/usr/bin/env bash | |
# Prints the GitHub URL of the chosen file. Requires fzf. | |
FILE=$1 | |
if [ -z "${FILE}" ] | |
then | |
FILE=$(fzf) | |
fi | |
CURRENT_BRANCH_NAME=$(git rev-parse --abbrev-ref HEAD) |
This file contains hidden or 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 java.time.LocalDate | |
import java.time.LocalDateTime | |
import java.time.Month | |
import java.time.ZonedDateTime | |
import java.util.TimeZone | |
fun January(day: Int, year: Int) = LocalDate.of(year, Month.JANUARY, day) | |
fun February(day: Int, year: Int) = LocalDate.of(year, Month.FEBRUARY, day) | |
fun March(day: Int, year: Int) = LocalDate.of(year, Month.MARCH, day) | |
fun April(day: Int, year: Int) = LocalDate.of(year, Month.APRIL, day) |
This file contains hidden or 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
version: "3.8" | |
services: | |
sourcegraph: | |
image: sourcegraph/server:4.4.2 # 4.4.2 is the last version that doesn't have a repo limit | |
container_name: leafly-sourcegraph | |
ports: | |
- 7080:7080 | |
- 3370:3370 | |
volumes: | |
- "~/.sourcegraph/config:/etc/sourcegraph" |
This file contains hidden or 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 | |
# Bails on current working branch and switches to main | |
# Install: Place this script anywhere that is in your $PATH and make it executable (chmod +x) | |
BRANCH_TO_EJECT=$(git rev-parse --abbrev-ref HEAD) | |
git reset HEAD --hard | |
git checkout main | |
git br -D $BRANCH_TO_EJECT |
This file contains hidden or 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 | |
# Creates a new named bugfix branch in the following format: bugfix/xyz | |
# $1 - Name of the branch | |
# $2 - Base branch | |
BRANCH_NAME=bugfix/$1 | |
START_POINT=$2 | |
git checkout -b $BRANCH_NAME $START_POINT |
This file contains hidden or 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
#!/usr/bin/env bash | |
emulator=$ANDROID_HOME/tools/emulator | |
adb=$ANDROID_HOME/platform-tools/adb | |
EMULATOR_COUNT=$($emulator -list-avds | wc -l | cut -c 8) | |
RANDOM_INDEX=$(shuf -i 1-$EMULATOR_COUNT -n 1) | |
EMULATOR_NAME=$($emulator -list-avds | head -n $RANDOM_INDEX | tail -n 1) | |
printf "Starting $EMULATOR_NAME..." |
This file contains hidden or 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
val units = listOf( | |
ChronoUnit.MILLENNIA, | |
ChronoUnit.CENTURIES, | |
ChronoUnit.DECADES, | |
ChronoUnit.YEARS, | |
ChronoUnit.MONTHS, | |
ChronoUnit.WEEKS, | |
ChronoUnit.DAYS, | |
ChronoUnit.HOURS, | |
ChronoUnit.MINUTES, |
This file contains hidden or 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
#!/usr/bin/env python | |
import sys | |
import subprocess | |
def get_devices(): | |
pipe = subprocess.PIPE | |
process = subprocess.Popen(["adb", "devices"], stdin=pipe, stdout=pipe, stderr=pipe) | |
output, error = process.communicate() | |
output_lines = output.strip().split("\n") |
This file contains hidden or 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 | |
BASE_URL="https://maps.googleapis.com/maps/api/geocode/json" | |
API_KEY="" # Obtain an API key from https://developers.google.com/maps/documentation/geocoding/get-api-key | |
ADDRESS=$1 | |
curl -s -G $BASE_URL --data-urlencode "address=$1" --data-urlencode "key=$API_KEY" | jq '.results[] | { name: .formatted_address, latLng: "\(.geometry.location.lat),\(.geometry.location.lng)" }' |
NewerOlder