offset | sample | name | details |
---|---|---|---|
DB AD 47 5E | magic | ||
00 01 | version | PKG format version 1 | |
00 00 | encrypt | resellers can crypt these? | |
00 2A 60 00 | pkg_len | total package length | |
69 4F 82 7D | pkg_md5 | md5 of rest of pkg | |
6B DE CA 4F | - |
This file contains 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
var net = require('net'); | |
var client = net.connect({host: '10.181.121.21', port: 5552}, | |
function() { | |
console.log('connected to server!'); | |
client.write('TYPE=PARAMGET?Axle Weight Max Permited&'); | |
}); | |
client.on('data', function(data) { | |
console.log(data.toString()); |
This file contains 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
{ | |
"id":"1", | |
"created":"2016-06-23 15:41:44", | |
"started":"2016-06-23 15:41:36", | |
"finished":"2016-06-23 15:41:44", | |
"status":"done", | |
"message":"", | |
"query":"substance paint fruit", | |
"engines":[ | |
{ |
This file contains 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
global MeGUI_darx = 16 | |
global MeGUI_dary = 9 | |
LoadPlugin("C:\Apps\MeGUI\tools\dgindex\DGDecode.dll") | |
DGDecode_mpeg2source("VTS_01_1.d2v", info=3) | |
LoadPlugin("C:\Apps\MeGUI\tools\avisynth_plugin\ColorMatrix.dll") | |
ColorMatrix(hints=true, threads=0) |
This file contains 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
$test = @{}; | |
$out = New-Object System.Text.StringBuilder; | |
$lines = Get-Content 'f1.txt' | |
foreach ($line in $lines) { $test[$line] = 1; } | |
$lines = Get-Content 'f2.txt' | |
foreach ($line in $lines) { if($test[$line]) { $null = $out.Append("$line`r`n") } } | |
Set-Content out.txt $out.ToString() |
This file contains 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
#include <io.h> | |
#include <fcntl.h> | |
#include <windows.h> | |
#include <stdio.h> | |
typedef int (__stdcall *PY_ISINITIALIZED)(); | |
typedef int (__stdcall *PYRUN_SIMPLESTRING)(const char *str); | |
typedef DWORD* (__stdcall *PYGILSTATE_ENSURE)(); | |
typedef void (__stdcall *PYGILSTATE_RELEASE)(DWORD *gstate); |
This file contains 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
['AUR', 'ArithmeticError', 'AssertionError', 'AttributeError', 'BaseException', 'BufferError', 'BytesWarning', 'CATID', 'ConnectionError', 'CreateInstance', 'DATE', 'DAY', 'DIST', 'DeprecationWarning', 'EOFError', 'Ellipsis', 'EnvironmentError', 'Exception', 'False', 'FloatingPointError', 'FutureWarning', 'GPSAddressOccupied', 'GPSBadAddress', 'GPSException', 'GPSTransportClosed', 'GROUPID', 'GeneratorExit', 'HOUR', 'IOError', 'ISK', 'ImportError', 'ImportWarning', 'IndentationError', 'IndexError', 'KeyError', 'KeyboardInterrupt', 'LOCID', 'LookupError', 'MIN', 'MONTH', 'MachoException', 'MachoWrappedException', 'MemoryError', 'MethodNotCalledFromClient', 'NameError', 'None', 'NotImplemented', 'NotImplementedError', 'OSError', 'OWNERID', 'OverflowError', 'PendingDeprecationWarning', 'ProxyRedirect', 'ReferenceError', 'RoleNotAssignedError', 'RuntimeError', 'RuntimeWarning', 'SEC', 'SQLError', 'ServiceNotFound', 'SessionUnavailable', 'StandardError', 'StopIteration', 'SyntaxError', 'SyntaxWarning', 'SystemErr |
This file contains 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
<?php | |
$csv = ""; | |
function wcsv($a) { | |
global $csv; | |
$csv .= '#' . implode('#;#', $a) . "#\r\n"; | |
} | |
$filemap = [ | |
'HouseCoordinateData' => 'AW_EKA_GEO', |
This file contains 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
alias gs='git status' | |
alias gp='git push' | |
gc() { | |
git commit -m "$*" | |
} | |
ga() { | |
git add $* | |
} |
The call at 0x24FD is passed to a detour function that always returns 5. Not sure why the cache size is stored that way but the math works out. Before printing 0x10 << (5-1) is indeed 256K.
BIOS_F:24CD ; ---------------------------------------------------------------------------
BIOS_F:24CE aCacheMemory db 'Cache Memory : ',0
BIOS_F:24E3
BIOS_F:24E3 ; =============== S U B R O U T I N E =======================================
BIOS_F:24E3