Viewing profile — rushter
rushter
HN member- Joined
- Sun, Aug 09, 2015, 7:23 PM UTC
- HN karma
- 140
- Public activity
- 37 items
- HN profile
- View on Hacker News ↗
About rushter
No profile information was provided.
Recent public activity
-
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…
-
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…
-
comment
Comment #36590023
https://rushter.com Most of my posts are about Python's internals and some security stuff
- story
- story
- story
- story
-
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.
-
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.
-
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…
-
comment
Comment #23781187
You can check it here https://github.com/dwyl/hits Also https://twitter.com/holman/status/427937383376379904
-
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.
-
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…
- story
- story
- story
- story
- story
-
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…
-
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…
- story
- story
- story
-
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…
-
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 …