A simple POSIX compatible shell script to allow aws
CLI commands and subcommands to be added or overwritten.
There are two naming conventions for your executables.
# Docker spacer icon. | |
defaults write com.apple.dock persistent-apps -array-add '{tile-data={}; tile-type="spacer-tile";}' \ | |
&& killall Dock | |
# Faster dock hiding/showing. | |
defaults write com.apple.dock autohide-delay -float 0 \ | |
&& defaults write com.apple.dock autohide-time-modifier -float 0.5 \ | |
&& killall Dock |
#!/bin/sh | |
### | |
# Uses the 3 pipe to run commands. | |
# | |
# In Rust: https://stackoverflow.com/a/54858159 | |
## | |
inner() | |
{ | |
echo 'echo "Hello, before!"' >&3 |
/* calendar.google.com */ | |
:root { | |
--base-bg-color: #111111; | |
--base-fg-color: #eeeeee; | |
--border-color: #202020; | |
--button-hover-bg-color: #333333; | |
--button-hover-border-color: #404040; |
import java.util.function.Consumer; | |
import java.util.function.Function; | |
import java.util.Optional; | |
public class Example { | |
public static void main(String []args) { | |
// Create a series of nullable objects. | |
Test a = new Test(); |