| type | min (dec) | max (dec) | min (hex) | max (hex) | size | C type |
|---|---|---|---|---|---|---|
| Shortint | -128 | 127 | 80 | 7F | 1 | signed char |
| Byte | 0 | 255 | 00 | FF | 1 | unsigned char |
| Smallint | -32768 | 32767 | 8000 | 7FFF | 2 | signed short |
| Word | 0 | 65535 | 0000 | FFFF | 2 | unsigned short |
| Integer | -2147483648 | 2147483647 | 80000000 | 7FFFFFFF | 4 | signed long |
| Cardinal | 0 | 4294967295 | 00000000 | FFFFFFFF | 4 | unsigned long |
| Int64 | -9223372036 |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <CONFIG> | |
| <Lazarus> | |
| <ColorSchemes Version="12"> | |
| <Names Count="1"> | |
| <Item1 Value="My Colors"/> | |
| </Names> | |
| <Globals Version="12"> | |
| <SchemeMy_Colors> | |
| <ahaGutter Background="clBtnFace"/> |
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
| program Project1; | |
| uses | |
| Forms, | |
| Unit1 in 'Unit1.pas' {Form1}; | |
| {$R *.res} | |
| begin | |
| Application.Initialize; |
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
| #!/bin/bash | |
| # http://errietta.me/blog/luks-clonezilla/ | |
| cryptsetup luksOpen /dev/sda5 crypt | |
| modprobe dm-mod | |
| vgchange -ay | |
| tar -jxvf sda1.img.tar.bz2 | |
| partclone.ext4 -r -s ./sda1.img -o /dev/sda1 | |
| rm sda1.img |
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
| #!/bin/bash | |
| # http://errietta.me/blog/luks-clonezilla/ | |
| cryptsetup luksOpen /dev/sda5 crypt | |
| modprobe dm-mod | |
| vgchange -ay | |
| partclone.ext4 -c -s /dev/sda1 -o ./sda1.img | |
| tar -jcvf sda1.img.tar.bz2 sda1.img && rm sda1.img |
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
| type | |
| TRectangle = class(TNativeObject) | |
| class procedure InitializeInstance(AInstance: JsValueRef; Args: PJsValueRef; ArgCount: Word); override; | |
| class function InitializePrototype(AConstructor: JsValueRef): JsValueRef; override; | |
| end; | |
| class procedure TRectangle.InitializeInstance(AInstance: JsValueRef; Args: PJsValueRef; ArgCount: Word); | |
| var | |
| ArgsArray: PJsValueRefArray absolute Args; | |
| ShapeCtr: JsValueRef; |
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
| procedure TNativeClassTestCase.TestInheritance; | |
| // - Shape (x, y) => Object | |
| // - Circle (x, y, r) => Shape (x, y) | |
| // - Rectangle (x, y, w, h) => Shape (x, y) | |
| // - Square (x, y, w) => Rectangle (x, y, w, w) | |
| Runtime: TChakraCoreRuntime; | |
| Context: TChakraCoreContext; | |
| ShapeObj, CircleObj, RectangleObj, SquareObj: JsValueRef; | |
| begin | |
| Runtime := nil; |
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 Square(x, y, w) { | |
| Rectangle.call(this, x, y, w, w); | |
| } | |
| Square.prototype = Object.create(Rectangle.prototype); | |
| Square.prototype.constructor = Square; |
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 Circle(x, y, r) { | |
| Shape.call(this, x, y); | |
| this.r = r; | |
| } | |
| Circle.prototype = Object.create(Shape.prototype); | |
| Circle.prototype.constructor = Circle; |
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 Shape(x, y) { | |
| this.x = x; | |
| this.y = y; | |
| } | |
| Shape.prototype.move = function(x, y) { | |
| this.x += x; | |
| this.y += y; | |
| }; |