I hereby claim:
- I am texhex on github.
- I am texhex (https://keybase.io/texhex) on keybase.
- I have a public key ASAYZHB9j5B0aN5SE2ErB-SkDvM_VGaFD_J1cEnabkHyKAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| /*Only internal rowid*/ | |
| CREATE TABLE names_none (name TEXT); | |
| INSERT INTO [names_none] VALUES ("JAMES"); | |
| INSERT INTO [names_none] VALUES ("DAVID"); | |
| INSERT INTO [names_none] VALUES ("ROBERT"); | |
| INSERT INTO [names_none] VALUES ("MICHAEL"); | |
| INSERT INTO [names_none] VALUES ("WILLIAM"); | |
| /* Normal primary key, this is an alias to rowid - see https://www.sqlite.org/lang_createtable.html#rowid */ |
| #include <ISPPBuiltins.iss> | |
| #pragma option -v+ | |
| #pragma verboselevel 9 | |
| #define public DefaultDirName '{pf}\Foxit Software\Red PDF Icon' | |
| REGEDIT4 | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Internet Explorer\Low Rights\ElevationPolicy\{a09ea7ed-e5fe-459c-8ea9-90bf365d2833}-32] | |
| "AppName"="Foxit Reader.exe" | |
| "AppPath"=hex(2):25,50,72,6f,67,72,61,6d,46,69,6c,65,73,28,78,38,36,29,25,5c,\ | |
| 46,6f,78,69,74,20,53,6f,66,74,77,61,72,65,5c,46,6f,78,69,74,20,52,65,61,64,\ | |
| 65,72,00 | |
| "Policy"=dword:00000003 | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Low Rights\ElevationPolicy\{a09ea7ed-e5fe-459c-8ea9-90bf365d2833}] |
| Rem Retrieve program files folder for the installation of the BIN file | |
| Rem ----- 32 / 64 bit Batch Helper by TeX HeX - http://www.texhex.info/ | |
| if defined ProgramFiles(x86) GOTO WinX64 | |
| Rem This seems to be a 32-bit machine | |
| SET IsX64=0 | |
| SET PrgFiles=%ProgramFiles% | |
| GOTO Exec | |
| :WinX64 |
| // Arduino DatatypeSize v2 - Display information about data types used in Arduino | |
| // Created by Michael 'TeX' Hex - http://www.texhex.info/ | |
| // | |
| // Full list of all data types: | |
| // http://arduino.cc/en/Reference/HomePage -> Section "Data Types" | |
| // | |
| // Additonal references: | |
| // http://www.arduino.cc/playground/Code/DatatypePractices | |
| // http://arduino.cc/en/Reference/VariableDeclaration | |
| // |