frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

F-Droid 2.0

https://f-droid.org/2026/09/24/f-droid-2.0-a-new-chapter-for-android-freedom.html
581•daveoc64•4h ago•177 comments

Show HN: Make cursed fonts like Times New Bastard

https://bastardica.mitpit.com
151•MitPitt•20h ago•26 comments

Show HN: Whiteboard (YC W26) – An open-source IDE for thoughtful software design

https://github.com/devdotfast/whiteboard
103•sidharthkmenon•2h ago•30 comments

Rails World 2026 Opening Keynote [video]

https://www.youtube.com/watch?v=vDjW_dRyKXY
112•an0malous•1d ago•81 comments

Fearless SIMD v1.0

https://linebender.org/blog/fearless-simd-1-0/
77•verdagon•2d ago•13 comments

Creatine uptake enhances antitumor immunity

https://www.cell.com/iscience/fulltext/S2589-0042(26)00811-4
88•lormayna•1h ago•98 comments

The forgotten battle of East Lansing

https://eastlansinginfo.news/the-forgotten-battle-of-east-lansing/
42•rmason•2d ago•1 comments

My weird new hobby: Wandering around Tokyo on Google Maps

https://ahmedhossamdev.com/writing/my-weird-new-hobby-wandering-around-tokyo/
69•ahmedhossamdev•2d ago•27 comments

Stable (YC W20) Is Hiring Product Engineers

https://www.usestable.com/careers/product-engineer
1•collinpham•1h ago

Book review: Is parallel programming hard, and, if so, what can you do about it?

https://ahelwer.ca/post/2026-09-21-concurrency-textbook/
41•ahelwer•3d ago•5 comments

Programming Tutorials Are Dead

https://robrace.dev/blog/programming-tutorials-are-dead/
15•polysaturate•1h ago•0 comments

Forging 1024-bit RSA signatures in nearly SNFS time [pdf]

https://eprint.iacr.org/2026/2131.pdf
28•int0x29•5h ago•2 comments

Two-tier encryption in the UK

https://macanorak.com/two-tier-encryption-in-the-uk/
312•ReturnoftheHack•9h ago•318 comments

Show HN: Radix – Visual UI for agentic programming

https://radix-os.com
8•0x1062•1h ago•6 comments

Geothermal heat map of US hot springs

https://www.soakingsprings.com/hot-springs/geothermal-map
36•armenarmen•23h ago•13 comments

Security auditing in the age of (good enough) AI

https://blog.trailofbits.com/2026/09/18/auditing-in-the-age-of-good-enough-ai/
27•aray07•2d ago•1 comments

Why is the liver so weirdly regenerative?

https://dynomight.substack.com/p/liver
76•jbotz•3h ago•67 comments

WaveDigger: Dig into wireless signals to discover their physical locations

https://github.com/christianrowlands/wavedigger
56•882542F3884314B•1d ago•7 comments

Show HN: Treepeat – Code similarity detection using Tree-sitter

https://github.com/dsummersl/treepeat
24•91awebsi•2d ago•0 comments

Nokia Design Archive (2025)

https://repo.aalto.fi/index.php?name=SO_b66a9391-dcf8-4399-8e87-611f84c3fc4c
193•pillars•9h ago•102 comments

Lambda MicroEgg

https://www.philipzucker.com/lambda_miller_egg/
48•philzook•4d ago•5 comments

Show HN: AgentRun: DSL to turn agents into workflows

https://github.com/Parcha-ai/agentrun
21•miguelrios•1d ago•1 comments

Show HN: Air-gapped file encryption as self-decrypting HTML page

https://cms-sfx-demo.apeleg.com/
21•emurlin•12h ago•8 comments

A Million Agents Is a Distributed System Problem

https://www.instacloud.com/blogs/a-million-agents-is-a-distributed-systems-problem
9•tonychang430•2h ago•1 comments

Motor Characterization for Small Running Robots (2016)

https://robot-daycare.com/posts/2016-01-06-motor-characterization-for-small-running-robots/
15•loughnane•2d ago•0 comments

GitHub has not removed malicious imitation software after 3 weeks

https://successfulsoftware.net/2026/09/24/github-has-not-removed-malicious-imitation-software-aft...
207•hermitcrab•3h ago•85 comments

Search – A small, fast WebKit browser for macOS

https://github.com/driceroland/Search
47•metrofun•10h ago•12 comments

Ideas on modernizing the open-source desktop

https://lwn.net/SubscriberLink/1095425/2d9f411252325784/
363•signa11•16h ago•449 comments

Experiencing writing at our recent Chinese calligraphy workshop

https://viewsproject.wordpress.com/2026/09/06/chinese-calligraphy-workshop/
17•surprisetalk•4h ago•1 comments

B5-BJ2 – Ice Cream Barges – Concrete Ship Constructors (2023)

https://thecretefleet.com/blog/f/b5-bj2---ice-cream-barges---concrete-ship-constructors
17•nixass•2d ago•7 comments
Open in hackernews

Show HN: Air-gapped file encryption as self-decrypting HTML page

https://cms-sfx-demo.apeleg.com/
21•emurlin•12h ago
Air-gapped file encryption packed into a single, self-decrypting HTML page. Repo: https://github.com/ApelegHQ/ts-cms-ep-sfx

I was inspired by self-extracting archives. I wanted to share files with basically no dependencies. The goal was:

  1. Something that didn't require any installation (assuming a web browser)
  2. Have a single file with no network that could self-decrypt
  3. Be fully auditable
The second point is done by having (sort of(*)) reproducible builds and embedded OpenPGP signatures.

The first point is made by cleverly manipulating the HTML structure so that it can decrypt without breaking the PGP signature. It can even decrypt using bare openssl (which was a design goal too, though getting the exact structure right took some work and bug reports).

The third point is accomplished by the first two, and by the source being freely available.

(*) Depends on the OS at the moment.

Comments

DylanMerigaud•12h ago
Self-decrypting HTML? That's an innovative approach.
emurlin•11h ago
Yeah, I was inspired by self-extracting archives. I wanted to share files with basically no dependencies.

The goal was:

1. Something that didn't require any installation (assuming a web browser)

2. Have a single file with no network that could self-decrypt

3. Be fully auditable

The second point is done by having (sort of(*)) reproducible builds and embedded OpenPGP signatures.

The first point is made by cleverly manipulating the HTML structure so that it can decrypt without breaking the PGP signature. It can even decrypt using bare openssl (which was a design goal too, though getting the exact structure right took some work and bug reports).

The third point is accomplished by the first two, and by the source being freely available.

(*) Depends on the OS at the moment.

dang•1h ago
I'm going to move this description to the top and re-up the post - I hope that's ok!
112233•23m ago
Somebody already has copied this innovative approach and travelled to past apparently: https://acme.com/software/securepage/
jszymborski•3m ago
Methods like these go way further back than 2010... I recall one that had a reward promised if you could break it.
FatalLogic•12h ago
Maybe this is the source?

https://github.com/ApelegHQ/ts-cms-ep-sfx

emurlin•11h ago
Correct
nikhilkxmar•5h ago
Cool!