How to use:
./wordle.sh
Or try the unlimit mode:
| ;SMBDIS.ASM - A COMPREHENSIVE SUPER MARIO BROS. DISASSEMBLY | |
| ;by doppelganger ([email protected]) | |
| ;This file is provided for your own use as-is. It will require the character rom data | |
| ;and an iNES file header to get it to work. | |
| ;There are so many people I have to thank for this, that taking all the credit for | |
| ;myself would be an unforgivable act of arrogance. Without their help this would | |
| ;probably not be possible. So I thank all the peeps in the nesdev scene whose insight into | |
| ;the 6502 and the NES helped me learn how it works (you guys know who you are, there's no |
| #! /bin/sh | |
| # /etc/init.d/ngrok | |
| case "$1" in | |
| start) | |
| echo "Ngrok service is starting" | |
| screen ./ngrok start -all -config /home/pi/.ngrok2/ngrok.yml | |
| echo "Ngrok service was started" | |
| ;; | |
| stop) |
| authtoken: * | |
| json_resolver_url: "" | |
| dns_resolver_ips: [] | |
| tunnels: | |
| httpbin: | |
| proto: http | |
| addr: 80 | |
| bind_tls: both #Here I chose HTTP and HTTPS protocols when active the flag 'both'. | |
| sshbin: |
| # Output a single frame from the video into an image file: | |
| ffmpeg -i input.mov -ss 00:00:14.435 -vframes 1 out.png | |
| # Output one image every second, named out1.png, out2.png, out3.png, etc. | |
| # The %01d dictates that the ordinal number of each output image will be formatted using 1 digits. | |
| ffmpeg -i input.mov -vf fps=1 out%d.png | |
| # Output one image every minute, named out001.jpg, out002.jpg, out003.jpg, etc. | |
| # The %02d dictates that the ordinal number of each output image will be formatted using 2 digits. | |
| ffmpeg -i input.mov -vf fps=1/60 out%02d.jpg |
| root=/path/to/root | |
| project=/path/to/project |
| #! /usr/bin/env bash | |
| # Copyright 2020 Watermark Community Church | |
| # | |
| # Licensed under the Apache License, Version 2.0 (the "License"); | |
| # you may not use this file except in compliance with the License. | |
| # You may obtain a copy of the License at | |
| # | |
| # http://www.apache.org/licenses/LICENSE-2.0 | |
| # |