frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

MegaWang 2000 Turbo Edition hardware

https://martin-piper.itch.io/bomb-jack-display-hardware
1•homarp•49s ago•0 comments

Why Central Banks Target 2% Inflation [video]

https://www.youtube.com/watch?v=CnoDKqlcR4Y
1•zahlman•1m ago•0 comments

Modder Revived Imagine's Infamous 'Megagame' Add-On Concept

https://www.timeextension.com/news/2025/09/this-modder-has-revived-imagines-infamous-megagame-add...
1•homarp•1m ago•0 comments

Powered By the Apocalypse RPG character sheet builder (GitHub Pages)

https://github.com/tznind/lc
1•tznind•3m ago•0 comments

Personalities Dissolve and Reform in Multi-Agent Orchestrations

https://dyllonj.com/the-convergent-mind-how-personalities-dissolve-and-reform-in-multi-agent-orch...
1•dyllonj•4m ago•0 comments

Void – open-source Cursor alternative

https://voideditor.com/
1•modinfo•4m ago•0 comments

Life, Work, Death, and the Peasant: Spinning Plates

https://acoup.blog/2025/09/26/collections-life-work-death-and-the-peasant-part-ivd-spinning-plates/
1•claytonwramsey•6m ago•0 comments

Performance from architecture: comparing a RISC (MIPS) and a CISC (VAX) with SIM

https://dl.acm.org/doi/abs/10.1145/106974.107003
1•fanf2•8m ago•0 comments

Air Force AI Targeting Tests Show Promise, Despite Hallucinations

https://www.twz.com/news-features/air-force-ai-teaming-tests-show-promise-despite-hallucinations
1•throwaway888abc•8m ago•0 comments

Open Letter Generator: Easily share calls for problematic people to resign

https://this-is-an-open-letter.org
3•anopenletter•9m ago•0 comments

The Future (and Present) of AI Is Synthetic Data

https://sutro.sh/blog/the-future-of-ai-is-synthetic-data
4•cmogni1•11m ago•0 comments

Using LLMs to create datasets: reconstructing the historical memory of Colombia

https://arxiv.org/abs/2509.04523
1•PaulHoule•11m ago•0 comments

How Common Is Accidental Invention? – By Brian Potter

https://www.construction-physics.com/p/how-common-is-accidental-invention
1•rbanffy•12m ago•0 comments

ByteDance expected to maintain big role in new US TikTok, sources say

https://www.reuters.com/legal/transactional/bytedance-expected-play-big-role-new-us-tiktok-source...
2•SilverElfin•13m ago•0 comments

Things I Hate About SHAP as a Maintainer

https://mindfulmodeler.substack.com/p/6-things-i-hate-about-shap-as-a-maintainer
1•gmays•14m ago•0 comments

Weeds and the Evils of Landscape Fabric (2020)

https://www.gooseberrygardens.ca/post/weeds-the-evils-of-landscape-fabric
1•some-guy•14m ago•0 comments

Quick News on How to Recover Stolen Crypto from Scammers

1•timothyallen•14m ago•0 comments

What happens when an AI-generated artist gets a record deal? A copyright mess

https://www.theverge.com/ai-artificial-intelligence/785792/ai-generated-music-record-deal-copyright
1•thm•15m ago•0 comments

Bcachefs goes DKMS after Torvalds' kernel banishment

https://www.theregister.com/2025/09/25/bcachefs_dkms_modules/
1•ahlCVA•16m ago•0 comments

Genkit Go 1.0 and Enhanced AI-Assisted Development

https://developers.googleblog.com/en/announcing-genkit-go-10-and-enhanced-ai-assisted-development/
1•meetpateltech•17m ago•0 comments

Durotaxis: A new therapeutic target against metastatic cancer is discovered

https://english.elpais.com/health/2025-09-25/durotaxis-a-new-therapeutic-target-against-metastati...
1•pilingual•18m ago•0 comments

Getting Podman quadlets talking to each other

https://major.io/p/quadlet-networking/
1•speckx•19m ago•0 comments

Trump says TikTok should be tweaked to become "100% MAGA"

https://arstechnica.com/tech-policy/2025/09/trump-says-tiktok-should-be-tweaked-to-become-100-maga/
3•rbanffy•19m ago•0 comments

Soviet's First Planar Integrated Circuits – The CPU Shack Museum

https://www.cpushack.com/2025/02/13/soviets-first-planar-integrated-circuits/
1•rbanffy•22m ago•0 comments

Federal agencies DOGE questions about what cost-cutting team is doing

https://www.theregister.com/2025/09/26/senate_doge_report/
5•rntn•23m ago•1 comments

The Human Stain Remover

https://www.theguardian.com/news/2025/sep/23/long-read-britain-extreme-cleaner-murder-ben-giles
2•gmays•24m ago•0 comments

Expanded 287(g) Program Turns Local Police into Deportation Agents

https://www.aclu.org/news/immigrants-rights/how-expanded-287g-program-turns-local-police-into-dep...
6•ourmandave•26m ago•1 comments

Show HN: FingerprinterJS – A tiny JavaScript library for browser fingerprints

https://github.com/Lorenzo-Coslado/fingerprinter-js
6•lococococo•27m ago•0 comments

Macs are becoming the go-to choice for enterprise AI workloads

https://nerds.xyz/2025/09/macs-enterprise-ai-survey/
1•giuliomagnifico•28m ago•0 comments

I scraped the Crime solutions site

https://andrewpwheeler.com/2025/09/26/i-scraped-the-crime-solutions-site/
2•apwheele•29m ago•0 comments
Open in hackernews

Zero-knowledge pastebin alternative using client-side AES-256-GCM

https://dailyforever.com
1•goldykr•1h ago

Comments

goldykr•1h ago
Built a Pastebin alternative that implements client-side encryption to minimize server-side trust. The server never sees plaintext content, files or encryption keys.

Implementation - Uses Web Crypto API (AES-256-GCM) - Keys generated with `crypto.getRandomValues()` - Random IV per operation - Content chunked into 4KB buckets - Argon2id for password hashing - Keys embedded in URL fragments

Architecture - Laravel backend stores only encrypted blobs - All crypto handled in JavaScript (client-side) - No server-side key storage - Metadata stored separately

Security Considerations - XSS could compromise client-side crypto - URL fragments may be logged in some contexts - No perfect forward secrecy - Relies entirely on client-side security

Questions - How can I improve key management? - Is there a viable way to add forward secrecy? - Should additional security layers (e.g., CSP, iframe sandboxing) be added?

****************

URL: https://dailyforever.com/

****************