- Add nongnu and set correct kernel for host system (/mnt/etc/config.scm)
(use-modules (gnu) (nongnu packages linux)) (operating-system (kernel linux) (firmware (list linux-firmware)) ...
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 "DHT.h" | |
| #define DHTPIN 2 / // PIN of DHT sensor | |
| #define DHTTYPE DHT21 // AM2301 | |
| DHT dht(DHTPIN, DHTTYPE); | |
| void setup() | |
| { | |
| Serial.begin(9600); |
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
| /* Used with the Breeze theme */ | |
| #filelist-header { | |
| display: none; | |
| } | |
| :root { | |
| --color-primary: #c12424 !important; | |
| --color-text-link: #fc4444 !important; | |
| --color-text-selection: #7f1818 !important; | |
| --color-primary-element: #ce2525 !important; |
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
| .fullViewportItem { height: 100% } .overlay { height: 100vh } |
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
| // ==UserScript== | |
| // @name X2AW | |
| // @namespace http://fredrikengstrand.se | |
| // @version 0.1 | |
| // @description CSGODouble Auto Withdrawer | |
| // @author Fredrik Engstrand | |
| // @match http://www.csgodouble.com/withdraw.php | |
| // @grant none | |
| // ==/UserScript== | |
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
| // ==UserScript== | |
| // @name Steam market - New listings highlighter | |
| // @namespace http://fredrikengstrand.se | |
| // @version 0.1 | |
| // @description Highlights all new listnings of a specific item | |
| // @author Fredrik Engstrand | |
| // @match https://steamcommunity.com/market/listings/730/* | |
| // @grant GM_setValue | |
| // @grant GM_getValue | |
| // ==/UserScript== |