Feed aggregator

SAP Patches Critical FS-QUO, NetWeaver Vulnerabilities

Security Week - Tue, 03/10/2026 - 10:31am

A code injection bug in FS-QUO and an insecure deserialization flaw in NetWeaver could lead to arbitrary code execution.

The post SAP Patches Critical FS-QUO, NetWeaver Vulnerabilities appeared first on SecurityWeek.

Categories: SecurityWeek

Thousands Affected by Ericsson Data Breach

Security Week - Tue, 03/10/2026 - 10:23am

The telecommunications equipment and services giant has blamed the incident on a third-party vendor.

The post Thousands Affected by Ericsson Data Breach appeared first on SecurityWeek.

Categories: SecurityWeek

EQT Eyes $6 Billion Sale of SUSE

SlashDot - Tue, 03/10/2026 - 10:06am
Categories: SlashDot

Despite the predictions that SIEM is going away, its role is actually evolving. Learn why SIEM tools remain essential to enterprise security operations.

Security Wire Daily News - Tue, 03/10/2026 - 10:06am
Despite the predictions that SIEM is going away, its role is actually evolving. Learn why SIEM tools remain essential to enterprise security operations.

London Mayor Sadiq Khan reveals in a scrutiny session with London Assembly members that the Met is set to trial a facial-recognition phone app for officers

Computer Weekly Feed - Tue, 03/10/2026 - 10:06am
London Mayor Sadiq Khan reveals in a scrutiny session with London Assembly members that the Met is set to trial a facial-recognition phone app for officers
Categories: Computer Weekly

So you don't want to be a manager

Hacker News - Tue, 03/10/2026 - 9:59am
Categories: Hacker News

What invariants would you enforce for broker import pipelines?

Hacker News - Tue, 03/10/2026 - 9:57am

I’m working on a broker import pipeline for retail portfolios, and I underestimated how messy exports are in practice.

Problems I’ve seen: - CSV, JSON and PDF exports for the same broker - EU/US number formats - date-first vs month-first ambiguity - ISIN/ticker/name mismatches - duplicate rows and partial positions - bad parses silently corrupting cost basis

My current approach is deterministic-first: 1. parse structured exports locally 2. only use an LLM fallback when parsing fails 3. normalize symbols and reject invalid rows 4. require human review before persistence 5. apply imports conservatively to avoid cost-basis drift

I’m trying to think clearly about the invariants this system should enforce.

For those who’ve worked on financial imports, accounting systems, or safety-critical data pipelines: - what invariants would you absolutely enforce? - where would you draw the boundary between deterministic logic and LLM extraction? - what would you log for replay/debug/auditability?

Happy to share implementation details if useful.

Comments URL: https://news.ycombinator.com/item?id=47323321

Points: 2

# Comments: 0

Categories: Hacker News

Show HN: ColumnLens – Query millions of rows in milliseconds on your Mac

Hacker News - Tue, 03/10/2026 - 9:53am

We keep shipping data to the cloud to analyze it, but modern Macs have enough horsepower to query millions of rows locally in milliseconds. Even an 8GB MacBook Neo.

I built ColumnLens because I wanted to stop uploading sensitive data to SaaS tools just to run a GROUP BY. It's a native C++ desktop app that opens 5GB+ CSV, JSONL, Parquet, and Excel files in about 3 seconds, then lets you query them with DuckDB's full SQL engine — JOINs, CTEs, window functions, all running on your machine.

The idea is simple: your laptop is a perfectly good analytics workstation. You shouldn't need a cloud pipeline to look at your data.

Some things I learned building it:

- DuckDB's columnar engine is absurdly efficient. 12M rows, sub-second queries, under 1 GB RAM. On hardware that fits in a backpack.

- ImGui + OpenGL is a great stack for data-heavy desktop apps. No DOM, no layout engine overhead — just raw GPU rendering. The data grid scrolls 12M rows without a single frame drop.

- I added a "3D City View" that maps rows to buildings (height = one column, color = another). Sounds gimmicky, but outliers and clusters are immediately visible in ways they aren't in tables or charts. Our brains are good at spotting the tall building in a skyline.

- Lua scripting turned out more useful than expected. People write small scripts to fetch data from APIs, run queries, and configure charts — repeatable analysis without leaving the app.

- Everything runs locally. Zero telemetry, zero network calls. The binary is 33MB, statically linked.

Free download at https://columnlens.com

Would love to hear from anyone else building local-first data tools — I think the "ship everything to the cloud" era is starting to swing back.

Comments URL: https://news.ycombinator.com/item?id=47323284

Points: 2

# Comments: 0

Categories: Hacker News

Pages