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
anonymous_Function = function(t, bool) -- local_convertByteTable_DecToHex -- x1327.Function[25](table,ToStringBoolean); | |
-- user lua table input , check if output to string | |
-- was posted in BIN OCT/F | |
if not t then | |
return | |
end | |
local output = {} | |
for i = 1, #t do | |
table.insert(output, string.format("%02X", t[i])) --- ... | |
end |
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 isAddressAligned( address ) | |
local disassembledAdrStr = disassemble( address ) | |
local PrimaryPreviousAddress = getPreviousOpcode( address ) | |
local SecondaryPreviousAddress = getPreviousOpcode( PrimaryPreviousAddress ) | |
-- should be enough for now. | |
local PrimaryBufferAddress = SecondaryPreviousAddress + getInstructionSize( SecondaryPreviousAddress ) | |
local SecondaryBufferAddress = PrimaryBufferAddress + getInstructionSize( PrimaryBufferAddress ) |
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
Strings_v3W = registerCustomTypeLua("Wide-String", 0x1, function(...) | |
local h = {...} | |
return readString(h[#h], 255, true) | |
end, function() | |
end, false, true) | |
Strings_v3 = registerCustomTypeLua("String", 0x1, function(...) | |
local h = {...} | |
return readString(h[#h]) | |
end, function(...) | |
end, false, true) |
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
local function CallCommand(a) | |
local c = createStringlist() | |
local d = io.popen("2>&1 " .. a) | |
for e in d:lines() do | |
c.add(e) | |
end | |
return c.Text | |
end |
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
for a = 1, #enumStructureForms() do | |
local b = enumStructureForms()[a] | |
for c = 0, b.getComponentCount() - 1 do | |
local d = b.getComponent(c) | |
if tostring(d.getClassName()) == "TEdit" then | |
d.setWidth(300) | |
end | |
end | |
end |
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
local a = createForm() | |
a.setWidth(600) | |
a.setHeight(800) | |
a.Position = "poScreenCenter" | |
a.setBorderStyle(0) | |
local b = 0; | |
local c = 0; | |
local d = false; | |
function f_dragNow(e, f, g) | |
if d then |
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
local function url_encode(str) | |
if str then | |
str = str:gsub("\n", "\r\n") | |
str = str:gsub("([^%w _%%%-%.~])", function(c) | |
return string.format("%%%02X", string.byte(c)) | |
end) | |
str = str:gsub(" ", "+") | |
end | |
return str |
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
heapform = createForm() | |
heapform.setCaption("Heaplist v20241022124237") -- prev. was v20241021074232 | |
heapform.setBorderStyle(2) | |
heapform.setSize(800, 600) | |
heapform.setPosition(getScreenHeight() / 2, getScreenHeight() / 2) | |
heaplist = createListView(heapform) | |
heaplist.RowSelect = true | |
heaplist.HideSelection = true | |
heaplist.ReadOnly = true |
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 CheckProcess() | |
if readInteger(process) then | |
local u = createStringlist() | |
getThreadlist(u) | |
if u.Count > 1 then | |
return true, u.Count | |
else | |
return false | |
end | |
else |
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
Even with HDD space, RAM, graphics and cores allocations still doesn't allow | |
install windows 11 on virtual box 7 + (with Secure boot / special OS checked) | |
In order to install preview, you need edit --> add to regedit following: | |
(SHIFT + F10 to display CMD during installation) | |
+--> .../System/Setup/Labconfig | |
(default) | |
ByPassSecureBootCheck 1 (DWORD) | |
ByPassRAMCheck 1 (DWORD) | |
ByPassTPMCheck 1 (DWORD) |
NewerOlder