Credit Circle People for old skins
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 kotlinx.coroutines.CoroutineScope | |
| import kotlinx.coroutines.Job | |
| import kotlinx.coroutines.delay | |
| import kotlinx.coroutines.launch | |
| /* | |
| This is free and unencumbered software released into the public domain. | |
| Anyone is free to copy, modify, publish, use, compile, sell, or | |
| distribute this software, either in source code form or as a compiled |
Here is an updated list of the colors that are currently implemented with a name.
To using colors on discord.js, this is a typedef Colors, Colors.Aqua to get the Aqua color.
| Name | Int value | Hex Code |
|---|---|---|
Default |
0 | #000000 |
Aqua |
1752220 | #1ABC9C |
DarkAqua |
1146986 | #11806A |
Green |
5763719 | #57F287 |
DarkGreen |
2067276 | #1F8B4C |
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
| """ | |
| Delete all saved posts / comments on your reddit account with PRAW. | |
| See: https://lewery.ca/automation/delete-all-saved-reddit-links | |
| Needs Python 3+ and Praw 5.3.0 | |
| """ | |
| import argparse | |
| import praw |
this has been rewritten yet again as most workarounds aren't required anymore since wine 3+
example video of the final result: https://www.youtube.com/watch?v=zkqzQoeOGfU
with touchscreen: https://www.youtube.com/watch?v=GcIrlorWmaQ
performance is indistinguishable from windows. there might be a very slight ~25ms sound latency which is easily compensated with +25 local offset
tested on
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
| // This is an example how to put an arduino board into deep sleep to save on battery power and | |
| // periodically wake up to run some logic. Ideal for sensor stations like plant moisture sensors. | |
| #include "Arduino.h" | |
| #include <avr/sleep.h> | |
| #include <avr/power.h> | |
| #include <avr/wdt.h> | |
| // Blink Before sleeping | |
| #define LED_PIN (13) |
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
| #include <CapacitiveSensor.h> | |
| CapacitiveSensor sens1 = CapacitiveSensor(8,6); | |
| CapacitiveSensor sens2 = CapacitiveSensor(4,2); | |
| void setup() { | |
| sens1.set_CS_AutocaL_Millis(0xFFFFFFFF); | |
| sens2.set_CS_AutocaL_Millis(0xFFFFFFFF); | |
| Serial.begin(115200); |
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 java.lang.reflect.Method; | |
| import java.util.Arrays; | |
| public class Bytecodes { | |
| static { | |
| System.loadLibrary("bytecodes"); | |
| } | |
| private static native byte[] getBytecodes(Method method); |
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
| # This is an example PKGBUILD file. Use this as a start to creating your own, | |
| # and remove these comments. For more information, see 'man PKGBUILD'. | |
| # NOTE: Please fill out the license field for your package! If it is unknown, | |
| # then please put 'unknown'. | |
| # Maintainer: Your Name <youremail@domain.com> | |
| pkgname=NAME | |
| pkgver=VERSION | |
| pkgrel=1 | |
| epoch= |
NewerOlder