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 { I18n, Messages, setupI18n } from '@lingui/core'; | |
| import { locales } from './lingui-config'; | |
| import { log } from '@/lib/log'; | |
| export type SupportedLocales = (typeof locales)[number]; | |
| type AllI18nInstances = { [K in SupportedLocales]: I18n }; |
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
| property scriptName : "clear_notifications_applescript" | |
| property verbose : true | |
| on logMessage(message) | |
| set timestamp to do shell script "date '+%Y-%m-%d %H:%M:%S'" | |
| set fullMessage to timestamp & " [" & scriptName & "] " & message | |
| if verbose then | |
| log fullMessage | |
| else | |
| display dialog fullMessage |
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 background sounds is enabled | |
| enabled=$(defaults read com.apple.ComfortSounds comfortSoundsEnabled 2>/dev/null) | |
| if [[ "$enabled" == "1" ]]; then | |
| # Disable background sounds | |
| defaults write com.apple.ComfortSounds comfortSoundsEnabled -bool NO | |
| launchctl kill SIGHUP gui/$(id -u)/com.apple.accessibility.heard | |
| else |
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; | |
| } |
NewerOlder