HN user

f311a

3,009 karma
Posts48
Comments427
View on HN
news.ycombinator.com 1mo ago

Ask HN: How do you find deep technical content?

f311a
40pts28
kefir.protopopov.lv 1mo ago

Cessation of public development of Kefir C compiler

f311a
141pts134
safedep.io 1mo ago

A Supply Chain Rat Exfiltrating to HuggingFace

f311a
3pts0
danieltan.weblog.lol 1mo ago

Nobody on the internet knows if you are a human

f311a
3pts1
github.com 1mo ago

Go: Support for Generic Methods

f311a
311pts274
jola.dev 1mo ago

The Social Contract of Writing

f311a
5pts0
shubs.io 2mo ago

The down fall of bug bounties

f311a
2pts1
blog.rust-lang.org 2mo ago

Rust: Project Goals Update

f311a
1pts0
rushter.com 2mo ago

PyPI packages are increasing rapidly

f311a
6pts0
www.youtube.com 5mo ago

Turning YouTube into Cloud Storage [video]

f311a
1pts0
www.youtube.com 5mo ago

Why I'll Never Drive a Modern Car Again [video]

f311a
8pts2
rushter.com 6mo ago

String handling in ClickHouse

f311a
3pts1
rushter.com 6mo ago

Recent Optimizations in Python's Reference Counting

f311a
25pts7
rushter.com 7mo ago

Hash tables in Go and advantage of self-hosted compilers

f311a
2pts0
blog.rust-lang.org 7mo ago

Rust: Project goals update – November 2025

f311a
3pts0
rushter.com 7mo ago

Hash tables in Go and advantage of self-hosted compilers

f311a
62pts43
anti-theft.github.io 8mo ago

Attempts to Steal CcTLD Domains

f311a
1pts0
rushter.com 9mo ago

How I'm using Helix editor

f311a
216pts91
blog.sicuranext.com 11mo ago

Vtenext 25.02: A three-way path to RCE

f311a
1pts0
rushter.com 11mo ago

Tracking malicious code execution in Python

f311a
4pts0
github.com 11mo ago

Neovim now natively supports inline competitions from LLMs

f311a
3pts1
malwr-analysis.com 11mo ago

Phishing Emails Are Now Aimed at Users and AI

f311a
1pts0
www.bleepingcomputer.com 12mo ago

NPM package 'is' with 2.8M weekly downloads infected devs with malware

f311a
2pts0
rushter.com 1y ago

Threat Hunting Introduction: Cobalt Strike

f311a
1pts0
btcodecs.valdikss.org.ru 1y ago

Why many TWS earbuds are capped to 128 kbit/s AAC?

f311a
6pts0
notes.valdikss.org.ru 2y ago

Encrypted traffic interception on Hetzner and Linode targeting Jabber service

f311a
731pts306
github.blog 2y ago

Coordinated Disclosure: 1-Click RCE on Gnome (CVE-2023-43641)

f311a
10pts0
medium.com 4y ago

I stopped hunting on HackerOne after years because they stole my $50k

f311a
7pts6
github.com 4y ago

YaLM-100B: Pretrained language model with 100B parameters

f311a
736pts625
telegram.org 4y ago

Telegram: Notification Sounds, Bot Revolution and More

f311a
3pts2

Yet the most viewed questions are about how to undo git commit, how to sort an array, how to select stuff in jquery, how to group by in SQL and so on.

General questions about programming languages, SQL and git don't change that much.

But there are also really good ones - so I can't afford to not take actual look at each, but it gets tiring and we need a solution.

There is not easy solution, the landscape has changed and if care about security, you just need to allocate more human resources. Another layer of LLM checks won't help.

I'm working on hexora, a library that detects malicious Python code using static analysis and machine learning.

Recently, I've added a simple ML model to filter out false positives. In the last month, I found and flagged more than 40 malicious Python packages.

Unlike the LLM approach, my library is not susceptible to prompt injection and deobfuscates Python code. Where LLMs see "obfuscated code, potentially harmful", my library decodes it and sees what's happening inside.

https://github.com/rushter/hexora

They don't have a goal of becoming a popular language, though and will continue to work on it as long as there are donations. They don't care about being mainstream and there are niche companies who appreciate Zig and donate.

ClickHouse also supports a lot of data sources and has a local mode where you just use a single binary with local-only access.

Coincidentally, I wrote an article today on how I use it for similar scenarios. It can fetch from S3, multiple databases at once, and so on.

And you get all the benefits of a database when you need to join or postprocess data from multiple sources.

https://rushter.com/blog/clickhouse-data-processing/