How to use:
./wordle.sh
Or try the unlimit mode:
Go to this page by Júda Ronén for a more complete and prettier list!
NOTA BENE: Some of these may have existed before
This was originally taken from https://superuser.com/a/1012669/894282 and then updated to be compatible with python 3.X
Requires pypdf2 to be installed.
| local sense=-20 | |
| local speed = mp.get_property("speed") | |
| local detect = false | |
| function f(msg) | |
| if string.find(msg.text, "silence_end") and detect then | |
| mp.set_property("speed",speed) | |
| endmsg=msg.text | |
| detect = false | |
| --print("end") | |
| elseif string.find(msg.text, "silence_start") and detect==false then |
Here are the mods I recommend. These are all compatible with the latest versions of SMAPI and Stardew Valley on Linux/macOS/Windows. See the player's guide to using mods if you're interested.
config.json files, for the many mods which support it.| ---user settings--- | |
| local WaitTime = 0.1 --how long until we try to enter "fast" mode | |
| local lookAhead = 5 --how far ahead to look for subtitles when trying to enter "fast" mode | |
| local fast = 6 --how fast "fast" mode is by default | |
| local rewind = 0.2 --how far to rewind when entering normal mode; note that if this is more than or equal to WaitTime + lookAhead you will probably enter an infinite loop | |
| --- | |
| local searchtimer | |
| local checktimer | |
| local waitTimer | |
| local normal = mp.get_property("speed") |
| #!/bin/bash | |
| # Tom Hale, 2016. MIT Licence. | |
| # Print out 256 colours, with each number printed in its corresponding colour | |
| # See http://askubuntu.com/questions/821157/print-a-256-color-test-pattern-in-the-terminal/821163#821163 | |
| set -eu # Fail on errors or undeclared variables | |
| printable_colours=256 |
Here are some simple ways to make your PICO-8 code fit in 140 280 characters (as in the #tweetjam #tweetcart craze). I did not invent these, I merely observed and collected them from the tweetjam thread.
x=.1 and x=.023, not x=0.1 or x=0.023x=1/3 is shorter than x=.3333circ(x,y,1)pset(z,q,7) works just as well| -- Two dashes start a one-line comment. | |
| --[[ | |
| Adding two ['s and ]'s makes it a | |
| multi-line comment. | |
| --]] | |
| ---------------------------------------------------- | |
| -- 1. Variables and flow control. | |
| ---------------------------------------------------- |
| # 0 is too far from ` ;) | |
| set -g base-index 1 | |
| # Automatically set window title | |
| set-window-option -g automatic-rename on | |
| set-option -g set-titles on | |
| #set -g default-terminal screen-256color | |
| set -g status-keys vi | |
| set -g history-limit 10000 |