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
# Only execute commands in interactive sessions | |
if status is-interactive | |
# Ensure Homebrew is in the PATH for everything installed via Homebrew | |
if type brew &>/dev/null | |
set -gx PATH $PATH (brew --prefix)/bin | |
set -gx PATH $PATH (brew --prefix)/sbin | |
end | |
end |
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
alias hide-desktop="defaults write com.apple.finder CreateDesktop false; killall Finder" | |
alias show-desktop="defaults write com.apple.finder CreateDesktop true; killall Finder" |
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
function run(input, parameters) { | |
const appNames = []; | |
const skipAppNames = []; | |
const verbose = true; | |
const scriptName = "close_notifications_applescript"; | |
const CLEAR_ALL_ACTION = "Clear All"; | |
const CLEAR_ALL_ACTION_TOP = "Clear"; |
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
## | |
# You should look at the following URL's in order to grasp a solid understanding | |
# of Nginx configuration files in order to fully unleash the power of Nginx. | |
# https://www.nginx.com/resources/wiki/start/ | |
# https://www.nginx.com/resources/wiki/start/topics/tutorials/config_pitfalls/ | |
# https://wiki.debian.org/Nginx/DirectoryStructure | |
# | |
# In most cases, administrators will remove this file from sites-enabled/ and | |
# leave it as reference inside of sites-available where it will continue to be | |
# updated by the nginx packaging team. |
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
Track Artist | |
------------------------------------------------------ | |
Voyage Leavv | |
Spatial Sequence Endel, Dream Park | |
Sand Drawing Endel | |
School Rooftop Hisohkah, WMD | |
Deep Surf Jetson | |
Butterfly SwΓΈrn | |
Far Away SwΓΈrn | |
mocean tusken. |
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
64 Games played | 31 Games won | π 114 WPM | ΓΈ 83 WPM | |
ββ Recent races (Average ΓΈ 84 WPM) | |
βββββββββββββββββββββββββββββββββββ 79 WPM | |
βββββββββββββββββββββββββββββββββββ 71 WPM | |
βββββββββββββββββββββββββββββββββββ 76 WPM | |
βββββββββββββββββββββββββββββββββββ 82 WPM | |
βββββββββββββββββββββββββββββββββββ 75 WPM | |
βββββββββββββββββββββββββββββββββββ 87 WPM | |
βββββββββββββββββββββββββββββββββββ 89 WPM | |
βββββββββββββββββββββββββββββββββββ 97 WPM |
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
.no-scrollbar::-webkit-scrollbar { | |
display: none; | |
} |
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
@tailwind base; | |
@tailwind components; | |
@tailwind utilities; | |
@layer base { | |
.font-outline-1 { | |
-webkit-text-stroke: 1px white; | |
} | |
.font-outline-2 { | |
-webkit-text-stroke: 2px white; |
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 | |
# Check if the prefix is provided as an argument | |
if [ -z "$1" ]; then | |
echo "Usage: $0 <prefix>" | |
exit 1 | |
fi | |
# Get the prefix from the command line argument | |
prefix="$1" |
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
const player = "p"; | |
const wall = "w"; | |
const enemy = "e"; | |
const obstacle = "o"; | |
setLegend( | |
[ player, bitmap` | |
....288888...... | |
...222888888.... | |
...222880808.... |
NewerOlder