Live data from Hacker News

Viewing profile — rushter

rushter

HN member
Joined
Sun, Aug 09, 2015, 7:23 PM UTC
HN karma
140
Public activity
37 items

About rushter

No profile information was provided.

Recent public activity

  1. story
    Show HN: Hexora – detection and analysis of malicious Python scripts

    I made a new library to detect malicious and harmful behaviour in Python scripts. It uses static analysis with semantic modeling. Even when the code is pretty obfuscated, it can st…

  2. story
    Show HN: Hexora – static analysis tool for malicious Python scripts

    I made a new library to detect malicious and harmful behaviour in Python scripts. There are alternative libraries, but they usually rely on regexes, which can be fragile and tricke…

  3. comment
    Comment #36590023

    https://rushter.com Most of my posts are about Python's internals and some security stuff

  4. story
  5. story
  6. story
  7. story
  8. comment
    Comment #23781448

    Github does not send any extra information. "GET /counter.svg HTTP/1.1" 200 565 "-" "github-camo (62249a1c)" I've reverted the badge.

  9. comment
    Comment #23781430

    You can't view profile statistics right now. Personally, my intent was to demonstrate the concept. I don't have plans using it.

  10. comment
    Comment #23781409

    I've removed it because it does not display relevant information anymore (someone fetches ten times a second via wget). I also don't have plans to use it in the future. I wanted to…

  11. comment
    Comment #23781187

    You can check it here https://github.com/dwyl/hits Also https://twitter.com/holman/status/427937383376379904

  12. comment
    Comment #23780990

    I agree, but I think such information should be available to all people. Some people will be doing this anyway, and they can hide this by using a transparent pixel.

  13. comment
    Comment #23780962

    I did some research before writing an article. GitHub started proxying images in 2014, and there are a lot of repositories that use this technique to keep their stats. I think GitH…

  14. story
  15. story
  16. story
  17. story
  18. story
  19. comment
    Comment #20614829

    Yes, it can, by calling the free function. Which framework do you use for deep learning? It can allocate some object on its own. Can you give me some stats when using a model and a…

  20. comment
    Comment #20611599

    Author of the article here. I don't think system allocators are clever enough to process and allocate 100-500k of very small objects each minute when Python is performing something…

  21. story
  22. story
  23. story
  24. comment
    Comment #17314324

    My article describes the tricks which are used inside the Python interpreter . Every improvement in the interpreter saves an insane amount of computing power considering its popula…

  25. comment
    Comment #17313786

    Maybe I've missed something, but you can also get the same id (it's basically an address in the memory) because of the how memory allocation works. There is a special allocator in …