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
#!/usr/bin/env bash | |
# First get version from the latest git tag | |
VERSION="$(git describe --tags --abbrev=0)" | |
NIX_FILE="nix/package.nix" | |
echo "Bumping version to $VERSION" | |
# replace version = "local-2024-09-16"; within "$NIX_FILE" | |
sed -i "s/version = \".*\";/version = \"$VERSION\";/" "$NIX_FILE" | |
sed -i 's/sha256-.*=//g' "$NIX_FILE" |
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
https://archive.ph/XeZO5 | |
It's 2024! Please avoid writing SSH commands like that. | |
Instead, configure your ~/.ssh/config with LocalForward, RemoteForward, and ProxyJump. This can save you a significant amount of time, especially when using ssh, scp, or rsync to transfer data from a remote server that requires multiple intermediate SSH connections. | |
e.g: | |
Host jump-host-1 | |
HostName jump1.example.com | |
User your_username |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Page Title</title> | |
</head> | |
<body> | |
<h1>This is a Heading</h1> | |
<p>This is a paragraph.</p> |
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
#!/usr/bin/env bash | |
FILEPATH="$1" | |
FILENAME="${2?"No file name provided"}" | |
if hash optipng 2>/dev/null; then | |
echo "Optmizing image" | |
cp "$FILEPATH" "$FILEPATH-bkp.png" | |
optipng -o5 "$FILEPATH" | |
else |
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
{ | |
"global": { | |
"check_for_updates_on_startup": false, | |
"show_in_menu_bar": true, | |
"show_profile_name_in_menu_bar": false | |
}, | |
"profiles": [ | |
{ | |
"complex_modifications": { | |
"parameters": { |
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
// Use case | |
// Render things based on the experiment variant | |
class FooTest extends Component { | |
static propTypes = { | |
children: PropTypes.node, | |
className: PropTypes.string | |
}; | |
constructor(props) { |
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 -l | |
set -e # fail on error | |
set -u # do not allow unset variables | |
# use the correct exit code, when piping commands, e.g. | |
# here you use curl ... | python... so if curl fails, python will still | |
# continure working | |
set -o pipefail |
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
function fibCreate() { | |
return function fibonacci(num) { | |
if (num <= 1) return 1; | |
return fibonacci(num - 1) + fibonacci(num - 2); | |
}; | |
} | |
for (var i = 0, len = 40; i < len; i++) { | |
fibCreate()(i); |
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
// This is the common field set free of country specific things. | |
function GeneralInternationalAddress(props) { | |
return ( | |
<Fragment> | |
<AddressLineInput value={props.address_line} /> | |
<AddressLineInput | |
name="address_line2" | |
value={props.address_line2} | |
optional |
NewerOlder