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
| [Unit] | |
| Description=My Miscellaneous Service | |
| After=network.target | |
| [Service] | |
| Type=simple | |
| User=nanodano | |
| WorkingDirectory=/home/nanodano | |
| ExecStart=/home/nanodano/my_daemon --option=123 | |
| Restart=on-failure # or always, on-abort, etc |
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
| Enterprise: NJVYC-BMHX2-G77MM-4XJMR-6Q8QF | |
| Professional: KBJFW-NXHK6-W4WJM-CRMQB-G3CDH | |
| Keys are generic ones. These are the same from MSDN account. | |
| Product Key : -6Q8QF | |
| Validity : Valid | |
| Product ID : 00369-90000-00000-AA703 | |
| Advanced ID : XXXXX-03699-000-000000-00-1032-9200.0000-0672017 |
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
| # Makefile for programming the ATtiny85 | |
| # modified the one generated by CrossPack | |
| DEVICE = attiny85 | |
| CLOCK = 8000000 | |
| PROGRAMMER = -c usbtiny | |
| OBJECTS = main.o | |
| # for ATTiny85 | |
| # see http://www.engbedded.com/fusecalc/ | |
| FUSES = -U lfuse:w:0x62:m -U hfuse:w:0xdf:m -U efuse:w:0xff:m |
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
| function gmailAutoarchive() { | |
| var delayDays = 2; // will only impact emails more than 48h old | |
| var maxDate = new Date(); | |
| maxDate.setDate(maxDate.getDate()-delayDays); // what was the date at that time? | |
| // Get all the threads labelled 'autoarchive' | |
| var label = GmailApp.getUserLabelByName("autoarchive"); | |
| var threads = label.getThreads(0, 400); | |
NewerOlder