Live data from Hacker News

Viewing profile — lzybkr

lzybkr

HN member
Joined
Fri, Apr 04, 2014, 7:50 PM UTC
HN karma
78
Public activity
27 items

About lzybkr

No profile information was provided.

Recent public activity

  1. comment
    Comment #37681468

    Not 5 levels, but I once wrote debug visualizers for a compiler using funceval (the visualizer uses the debugger to run code in the target process). I think I once had to debug the…

  2. comment
    Comment #30088871

    It's about trademarks - see https://twitter.com/richturn_ms/status/1245742145119510529

  3. comment
    Comment #28960466

    Microsoft Research has been working on DNA storage: https://www.microsoft.com/en-us/research/project/dna-storage...

  4. comment
    Comment #28853664

    Saqib Shaikh, a blind developer at Microsoft, gave this short talk on using Visual Studio: https://www.youtube.com/watch?v=94swlF55tVc I realize this isn't a console, but I think i…

  5. comment
    Comment #23649049

    PowerShell can be shorter by 1 character for this use case: irm wttr.in irm is an alias for Invoke-RestMethod which is similar to Invoke-WebRequest but better for non-html response…

  6. comment
    Comment #22998545

    If you to use this on Windows, you'll need to update `less.exe` with my patched version - https://github.com/lzybkr/less/releases/tag/fix_windows_vt

  7. comment
    Comment #22998530

    It does not, but it seems like a popular request: https://github.com/dandavison/delta/issues/40

  8. story
  9. comment
    Comment #22444625

    I guess it's time to reread Starship and the Canoe - a great book about Freeman's nuclear weapon powered spaceship and his son George's interest in building boats. I thoroughly enj…

  10. comment
    Comment #19439002

    AFL might eventually get lucky, but I'm guessing you'd want a hybrid approach that combines symbolic execution with a fuzzer like AFL, e.g. QSYM [1]. [1] https://www.usenix.org/sys…

  11. comment
    Comment #18934908

    Visual C++ has the __debugbreak() intrinsic function. If you have JIT debug enabled, you will be prompted to attach your debugger to the process when hitting such a breakpoint.

  12. comment
    Comment #18175911

    With PSReadLine, you can change that: Set-PSReadLineOption -EditMode Emacs Or Set-PSReadLineKeyHandler -Key Tab -Function Complete

  13. comment
    Comment #18062558

    I'm optimistic about binaries providing completions, I think we'll see more of that as tools adopt frameworks like https://github.com/clap-rs/clap or https://pypi.org/project/argco…

  14. comment
    Comment #16433596

    Here is a quick PowerShell script - it supports the pipeline so you can automate, e.g. if you use a command line password manager. https://gist.github.com/lzybkr/85b4dbd6536ea5351e…

  15. comment
    Comment #15724752

    I have no specific insight to this patch, but I do have personal experience binary patching a popular Microsoft product. My patch was to the VC++ compiler nearly 20 years ago. We h…

  16. comment
    Comment #15315373

    I wrote PSReadline (readline for PowerShell) and never bothered implementing overwrite mode. It took about 3 years before anyone complained, and I think there is still just the one…

  17. comment
    Comment #14507095

    It's used in production for Microsoft Security Risk Detection - here is a good blog post describing how F# is used: https://blogs.msdn.microsoft.com/dotnet/2016/12/13/project-s...

  18. comment
    Comment #9649056

    At least a few people want vi-mode in the shell, see https://github.com/lzybkr/PSReadLine/pull/101

  19. comment
    Comment #9648981

    To be clear - the ISE (powershell_ise.exe) doesn't support interactive console apps. powershell.exe supports them just fine.

  20. comment
    Comment #9464962

    It hasn't been announced anywhere unless you count random tweets. I should post something on the PowerShell team blog one of these days.

  21. comment
    Comment #9459719

    Try https://github.com/lzybkr/PSReadLine - included in Windows 10 now.

  22. comment
    Comment #9070958

    I take it back, the VC++ options are C++ only (faulty memory, it's been too long.) There is a warning I added which does work in C ( https://msdn.microsoft.com/en-us/library/t7khky…

  23. comment
    Comment #9070569

    I implemented the VC++ options - they work in C. I have no experience with the others, I've just briefly read about them and assume they are similar. If they don't work in C and yo…

  24. comment
    Comment #9069620

    Most commonly used compilers have options to help find padding that is possibly not needed. VC++ has a couple of undocumented (but well known and discussed) options /d1reportAllCla…

  25. comment
    Comment #8390773

    Not out of the box, but ctrl+v works with https://github.com/lzybkr/PSReadLine