How to use:
./wordle.sh
Or try the unlimit mode:
# All my gist code is licensed under the terms of the MIT license. | |
# Video demo: https://www.youtube.com/shorts/ojhaUNYetsU | |
shopt -s autocd | |
# silence_autocd | |
# - Hack to stop autocd from printing the directory after autocd'ing. | |
# - Unfortunately there is no clean way to do this except messing with | |
# BASH_XTRACEFD, a poorly understood file descriptor that we are better not |
#!/usr/bin/env sh | |
########################################################################################## | |
# # | |
# ███████╗ ██████╗██████╗ ███████╗███████╗███╗ ██╗███████╗██╗ ██╗ ██████╗ ████████╗ # | |
# ██╔════╝██╔════╝██╔══██╗██╔════╝██╔════╝████╗ ██║██╔════╝██║ ██║██╔═══██╗╚══██╔══╝ # | |
# ███████╗██║ ██████╔╝█████╗ █████╗ ██╔██╗ ██║███████╗███████║██║ ██║ ██║ # | |
# ╚════██║██║ ██╔══██╗██╔══╝ ██╔══╝ ██║╚██╗██║╚════██║██╔══██║██║ ██║ ██║ # | |
# ███████║╚██████╗██║ ██║███████╗███████╗██║ ╚████║███████║██║ ██║╚██████╔╝ ██║ # | |
# ╚══════╝ ╚═════╝╚═╝ ╚═╝╚══════╝╚══════╝╚═╝ ╚═══╝╚══════╝╚═╝ ╚═╝ ╚═════╝ ╚═╝ # |
@layer utilities { | |
/* extra helper classes to account for mobile safe areas */ | |
.p-safe { | |
padding: env(safe-area-inset-top) env(safe-area-inset-right) | |
env(safe-area-inset-bottom) env(safe-area-inset-left); | |
} | |
.px-safe { | |
padding-left: env(safe-area-inset-left); | |
padding-right: env(safe-area-inset-right); |
extends KinematicBody2D | |
export var move_speed = 200.0 | |
var velocity := Vector2.ZERO | |
export var jump_height : float | |
export var jump_time_to_peak : float | |
export var jump_time_to_descent : float |
extends Area | |
class_name CustomProximityGroup | |
signal broadcast(method_name, params) | |
enum dispatch_modes{ | |
PROXY, | |
SIGNAL | |
} |
var styleNode = document.createElement('style');
styleNode.type = "text/css";
var styleText = document.createTextNode(`
@font-face {
font-family: "Fira Code";
Note: This gist may be outdated, thanks to all contributors in comments.
adb
is the Android CLI tool with which you can interact with your android device, from your PC
You must enable developer mode (tap 7 times on the build version in parameters) and install adb on your PC.
Don't hesitate to read comments, there is useful tips, thanks guys for this !