HumanEquivalentUnit
HumanEquivalentUnit
> we can at least document it systematically - and the discussion here can serve as the starting point for compiling a "pitfall gallery" Roman Kuzmin has been collecting such...
> hear people say this, including @BrucePay (see emphasis mine, below, quoting him) , but the bottom line is: > In Korn Shell, return exits a function, period. > In...
@jzabroski can you share any details of the script? Powershell people try to encourage pipeline streaming (`get-childitem | foreach-object {}`) instead of pre-loading a dataset (`$files = get-childitem; $files |...
> I have yet to see people use this correctly on the first try. Again, this is not what bash does or any other shell. ``` $ test () {...
I have done this on one from Andrews & Arnold, the script did not trigger first time, but I have got it to work. Seems it gets stuck trying to...
> Could you go further and share OSCK and firmware? I've done `dd if=/dev/mtd3...` (50MB dump), `dd if=/dev/mtd4 ...` (50MB dump) and `dd if=/dev/mtd5 ..` (128Kb dump), I will find...
The LIME module works to make a memory dump; that page says "*You need to search for your ECKey into the full RAM dump made with LiME*" but how?
That makes me uncomfortable; a memory dump likely contains enough router state to include: - WiFi SSID and MAC, enough for https://wigle.net/ to find my home - NAT tables, DNS...
Hi, I want to try that, but the picture is too blurry for me to read the hex values or text - could you paste a higher res one please?
It looks like this works to make a FireFox driver which ignores SSL certificate checks: ``` $firefoxOptions = [OpenQA.Selenium.Firefox.FirefoxOptions]::new() $firefoxOptions.AddAdditionalCapability('acceptInsecureCerts', $true, $true) $Driver = New-Object -TypeName "OpenQA.Selenium.Firefox.FirefoxDriver" -ArgumentList @($firefoxOptions) ```...