updated 2021-06-23
Version 2105 (Build 14026.20302)
==========================================
| # General .gitignore file suitable for Delphi 7 to XE | |
| *.ddp | |
| *.exe | |
| *.dll | |
| *.bpl | |
| *.bpi | |
| *.dcp | |
| *.so | |
| *.apk |
| <!doctype html> | |
| <title>Site Maintenance</title> | |
| <style> | |
| body { text-align: center; padding: 150px; } | |
| h1 { font-size: 50px; } | |
| body { font: 20px Helvetica, sans-serif; color: #333; } | |
| article { display: block; text-align: left; width: 650px; margin: 0 auto; } | |
| a { color: #dc8100; text-decoration: none; } | |
| a:hover { color: #333; text-decoration: none; } | |
| </style> |
| unit AhoCorasick; | |
| interface | |
| uses Classes, Generics.Collections; | |
| type | |
| ptrNode = ^TNode; | |
| TNode = record | |
| id: Cardinal; // Node Id for debugging |
| unit utokenizer; | |
| {$mode objfpc}{$H+} | |
| interface | |
| uses | |
| Classes, SysUtils; | |
| const |
| program TestTRawUtf8ListCreateCopyErrorPrj; | |
| {$APPTYPE CONSOLE} | |
| {$R *.res} | |
| uses | |
| System.SysUtils, | |
| SynCommons, | |
| mORMot; |
| ########## | |
| # Tweaked Win10 Initial Setup Script | |
| # Primary Author: Disassembler <[email protected]> | |
| # Modified by: alirobe <[email protected]> based on my personal preferences. | |
| # Version: 2.20.2, 2018-09-14 | |
| # Primary Author Source: https://github.com/Disassembler0/Win10-Initial-Setup-Script | |
| # Tweaked Source: https://gist.github.com/alirobe/7f3b34ad89a159e6daa1/ | |
| # Tweak difference: | |
| # | |
| # @alirobe's version is a subset focused on safely disabling telemetry, some 'smart' features and 3rd party bloat ... |
These use separate document structures instead of HTML, some are more modular libraries than full editors
| program MetaClassCache; | |
| {$APPTYPE CONSOLE} | |
| {$R *.res} | |
| uses | |
| System.TypInfo, | |
| System.SysUtils; |
| program Concept_mORMotBatchUpdateWithConditionsPrj; | |
| uses | |
| System.SysUtils, SynCommons, mORMot, mORMotHttpClient; | |
| {$APPTYPE CONSOLE} | |
| {$R *.res} | |
| type |