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
ungarmichael Typeracer Statistics |
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 Document, { Head, Html, Main, NextScript } from "next/document"; | |
import { ServerStyleSheet } from "styled-components"; | |
export default class MyDocument extends Document { | |
static async getInitialProps(ctx) { | |
const sheet = new ServerStyleSheet(); | |
const originalRenderPage = ctx.renderPage; | |
try { | |
ctx.renderPage = () => |
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.... |
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
@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
.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
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
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
## | |
# 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
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"; |
OlderNewer