I hereby claim:
- I am Arty2 on github.
- I am heracles (https://keybase.io/heracles) on keybase.
- I have a public key whose fingerprint is 3D2C 3A1E F678 41B3 CEE6 D4D8 EEEE A5F2 53A7 ACBE
To claim this, I am signing this object:
| #NoEnv | |
| #persistent | |
| #KeyHistory 0 | |
| ;BETTER TYPOGRAPHY - shortcuts | |
| $^!-:: SendUnicode("2014") ;— em dash | |
| $^!+-:: SendUnicode("2013") ;– en dash | |
| $^!.:: SendUnicode("2026") ;… | |
| $^!+.:: SendUnicode("2022") ;• | |
| $^+.:: SendUnicode("2E0C") ;⸌ “list character” (left raised omission bracket) |
I hereby claim:
To claim this, I am signing this object:
| <?php | |
| /* | |
| 2017-09-10 | |
| A tool to convert AJ-Fork (Cutenews) data into a well-formated CSV for import into WordPress or other. | |
| */ | |
| $input = file('data.txt'); | |
| $output = fopen('data.csv','w+'); | |
| $entries = 0; |
| html { | |
| background-color: #fff; | |
| filter: invert(100%); | |
| } | |
| img, a, button { | |
| filter: invert(100%); | |
| } |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>beep</title> | |
| <meta charset="utf-8" /> | |
| <style> | |
| body { | |
| margin: 20px; | |
| background: #0000FF; |
| /* | |
| Obsolete since Dropbox Paper introduced a native Dark theme. | |
| */ | |
| ::-moz-selection { background: #000; } | |
| ::selection { background: #000; } | |
| body, | |
| .ace-editor, | |
| .hp-sidebar-container, |
| @echo off | |
| setlocal | |
| :PROMPT | |
| SET /P CONFIRM=Do you want to delete all ^ | |
| Sketchup : .skb, AutoSave_, Backup*.layout ^ | |
| AutoCAD : .bak, .dwl, .dwl2, .log, .err ^ | |
| Photoshop : .tmp ^ |
| // Script for Maxwell Render: render all the MXS files located in the folder 'inputFolder', including its children | |
| var inputFolder = 'C:/_queue'; | |
| var outputFolder = 'C:/_output'; | |
| var engineVersion = Maxwell.getEngineVersion(); | |
| var mxsCount = FileManager.getNumberOfFilesInBranch( inputFolder, '*.mxs' ); | |
| var mxsList = FileManager.getFilesInBranch( inputFolder, '*.mxs' ); | |
| // Connect event | |
| RenderEvents['renderFinished()'].connect(renderHasFinished); | |
| var i = 0; |
| //pins | |
| const int led = 13; //calibration LED | |
| const int vibrator = 12; | |
| const int buzzer = 11; | |
| const int pulseSensor = A0; //LDR | |
| const int breathSensor = A1; //resistive fabric | |
| //pulse sensor variables | |
| int pulseMin = 1023; | |
| int pulseMax = 0; |
| @echo off | |
| powershell -command "tree > directory-tree.txt" |