Monday, February 28, 2022

New top story on Hacker News: Launch HN: Drifting in Space (YC W22) – A server process for every user

Launch HN: Drifting in Space (YC W22) – A server process for every user
44 by paulgb | 17 comments on Hacker News.
Hi HN, we’re Paul and Taylor, and we’re launching Drifting in Space ( https://ift.tt/82AJLYS ). We build server software for performance-intensive browser-based applications. We make it easy to give every user of your app a dedicated server-side process, which starts when they open your application and stops when they close the tab. Many high-end web apps give every user a dedicated connection to a server-side process. That is how they get the low latency that you need for ambitious products like full-fledged video editing tools and IDEs. This is hard for smaller teams to recreate, because it takes a significant ongoing engineering investment. That’s where we come in—we make this architecture available to everyone, so you can focus on your app instead of its infrastructure. You can think of it like Heroku, except that each of your users gets their own server instance. I realized that something like this was needed while working on data-intensive tools at a hedge fund. I noticed that almost all new application software, whether it was built in-house or third-party SaaS, was delivered as a browser application rather than native. Although browsers are more powerful than ever, I knew from experience that industrial-scale data-heavy apps posed problems, because neither the browser or a traditional stateless server architecture could provide the compute resources needed for low-latency interaction with large datasets. I began talking about this with my friend Taylor, who had encountered similar limitations while working on data analysis and visualization tools at Datadog and Uber. We decided to team up and build a company around solving it. We have two products, an open source package and a managed platform. Spawner, the open source part, provides an API for web apps to spawn a session-lived process. It manages the process’s lifecycle, exposing it over HTTPS, tracking inbound connections, and shutting it down when it becomes idle (i.e. when the user closes their tab). It’s open source (MIT) and available at https://ift.tt/P3ovKHk . Jamsocket is our managed platform, which uses Spawner internally. It provides the same API, but frees you from having to deal with any cluster or network configuration to ship code. From an app developer’s point of view, using it is similar to using platforms like Netlify or Render. You stay in the web stack and never have to touch Kubernetes. Here's an example. Imagine you make an application for investigating fraud in a large transaction database. Users want to interactively filter, aggregate, and visualize gigabytes of transactions as a graph. Instead of sending all of the data down to the browser and doing the work there, you would put your code in a container and upload it to our platform. Then, whenever a fraud analyst opens your application, you hit an API we provide to spin up a dedicated backend for that analyst. Your browser code then opens a WebSocket connection directly to that backend, which it uses to stream data as the analyst applies filters or zooms/pans the visualization. We're different from most managed platforms because we give each user a dedicated process. That said, there are a few other services that do run long-lived processes for each user. Architecturally, we're most similar to Agones. Agones is targeted at games where the client can speak UDP to an arbitrary IP; we target applications that want to connect directly from browsers to a hostname over HTTPS. In the Erlang world, the OTP stack provides similar functionality, but you have to embrace Erlang/Elixir to get the benefits of it; we are entirely language-agnostic. Cloudflare Durable Objects support a form of long-lived processes, but are focused on use cases around program state synchronization rather than arbitrary high-compute/memory use cases. We have a usage-based billing model, similar to Heroku. We charge you for the compute you use and take a cut. Usage billing scales to zero, so it’s approachable for weekend experiments. We have not solidified a price plan yet, but we’re aiming to provide an instance capable of running VS Code (as an example) for about 10 cents an hour, fractionally metered. High-memory and high-CPU backends will cost more, and heavy users will get volume discounts. Our target customers are desktop-like SaaS apps and internal data tools. As mentioned, our core API is open source and available at https://ift.tt/P3ovKHk . The managed platform is in beta and we’re currently onboarding users from a waitlist, to make sure that we have the server capacity to scale. If you’re interested, you’re welcome to sign up for it here: https://ift.tt/82AJLYS . Have you built a similar infrastructure for your application? We’re interested in hearing the approaches people have already taken to this problem and what the pain points are.

New top story on Hacker News: What is the purpose of check-in before flying? (2014)

What is the purpose of check-in before flying? (2014)
83 by samuelstros | 36 comments on Hacker News.

New top story on Hacker News: The Life of Pi: Ten Years of Raspberry Pi

The Life of Pi: Ten Years of Raspberry Pi
68 by giuliomagnifico | 51 comments on Hacker News.

New top story on Hacker News: FTX Future Fund

FTX Future Fund
54 by tmychow | 19 comments on Hacker News.

New top story on Hacker News: Why Does Windows Use Backslash as Path Separator? (2019)

Why Does Windows Use Backslash as Path Separator? (2019)
29 by susam | 14 comments on Hacker News.

New top story on Hacker News: Tail recursion, but modulo cons

Tail recursion, but modulo cons
13 by todsacerdoti | 0 comments on Hacker News.

New top story on Hacker News: Beware what sounds insightful

Beware what sounds insightful
19 by janandonly | 4 comments on Hacker News.

Sunday, February 27, 2022

New top story on Hacker News: Planetary Sapience

Planetary Sapience
6 by conanxin | 0 comments on Hacker News.

New top story on Hacker News: The dark secrets of Whopper Sacrifice (2009)

The dark secrets of Whopper Sacrifice (2009)
8 by luu | 0 comments on Hacker News.

New top story on Hacker News: Using CMOS Sensors in a Cellphone for Gamma Detection and Classification

Using CMOS Sensors in a Cellphone for Gamma Detection and Classification
16 by punnerud | 0 comments on Hacker News.

New top story on Hacker News: Norway's sovereign wealth fund to vote against Apple management's pay plan

Norway's sovereign wealth fund to vote against Apple management's pay plan
63 by caaqil | 24 comments on Hacker News.

New top story on Hacker News: Year 2038 problem is still alive and well

Year 2038 problem is still alive and well
19 by protomyth | 3 comments on Hacker News.

New top story on Hacker News: What the World can learn from Hongkong

What the World can learn from Hongkong
14 by doener | 2 comments on Hacker News.

Saturday, February 26, 2022

New top story on Hacker News: Adding PoisonValue for representing poison value explicitly in IR

Adding PoisonValue for representing poison value explicitly in IR
4 by luu | 0 comments on Hacker News.

New top story on Hacker News: Tabula: Convert PDF Table to CSV

Tabula: Convert PDF Table to CSV
10 by wolpoli | 1 comments on Hacker News.

New top story on Hacker News: Pioneer CDJ Guidebook: A Comparison and History of CDJs and XDJs

Pioneer CDJ Guidebook: A Comparison and History of CDJs and XDJs
5 by aligray | 1 comments on Hacker News.

New top story on Hacker News: Show HN: Esolang Park, a visual debugger for esolangs

Show HN: Esolang Park, a visual debugger for esolangs
14 by nilaymaj | 2 comments on Hacker News.
Hey HN! Esolang Park is an online visual debugger interface for esoteric programming languages, that I've been working on for the past few months. For every supported language, Esolang Park provides the powerful Monaco code editor, syntax checking, debugging functionality and a visualisation of the runtime state. The core is language-agnostic - a "language provider" only needs to implement the esolang's parser, interpreter and visualisation UI (and some other little stuff). Apart from trying to boost DX for esolangs, the idea is for this to grow into a platform where people can discover and play around with a variety of esolangs without leaving the browser. That's quite far away though - the project is quite early in development and currently only has 5 languages (Befunge-93, Brainf*ck, Chef, Deadfish and Shakespeare). Some features like non-debugging execution mode (0ms interval) are missing too. Currently the entire source code[0] (core + language providers) is written in TypeScript and React. Esolang code execution happens in a web worker. I'm planning to add support for WASM-based language providers for better performance, particularly for non-debugging execution. There's also a wiki[1] containing a description of the core design and a guide for implementing and contributing new language providers. Looking to hear some feedback on the idea and current implementation - bug reports are welcome too! [0] https://ift.tt/RKPLgbA [1] https://ift.tt/Q0kvIuW

New top story on Hacker News: C2PA Releases Spec of First Industry Standard for Content Provenance

C2PA Releases Spec of First Industry Standard for Content Provenance
4 by wglb | 0 comments on Hacker News.

Friday, February 25, 2022

New top story on Hacker News: KGB defector Yuri Bezmenov's warning to America (1984)

KGB defector Yuri Bezmenov's warning to America (1984)
115 by cs702 | 40 comments on Hacker News.

New top story on Hacker News: The Love Story Story

The Love Story Story
7 by pepys | 0 comments on Hacker News.

New top story on Hacker News: Show HN: Cloning a musical instrument from 16 seconds of audio

Show HN: Cloning a musical instrument from 16 seconds of audio
25 by abdljasser2 | 2 comments on Hacker News.
In 2020, Magenta released DDSP [1], a machine learning algorithm / python library which made it possible to generate good sounding instrument synthesizers from about 6-10 minutes of data. While working with DDSP for a project, we realised how it was actually quite hard to find 6-10 minute of clean recordings of monophonic instruments. In this project, we have combined the DDSP architecture with a domain adaptation technique from speech synthesis [2]. This domain adaptation technique works by pre-training our model on many different recordings from the Solos dataset [3] first and then fine-tuning parts of the model to the new recording. This allows us to produce decent sounding instrument synthesisers from as little as 16 seconds of target audio instead of 6-10 minutes. [1] https://ift.tt/cdPY8O9 [2] https://ift.tt/xUdJoz8 [3] https://ift.tt/aFO0Pvo We hope to publish a paper on the topic soon.

New top story on Hacker News: Announcing Actix Web v4.0 (Rust)

Announcing Actix Web v4.0 (Rust)
2 by robjtede | 0 comments on Hacker News.

New top story on Hacker News: Finland or Sweden joining NATO would spark Russian response: Russia warns

Finland or Sweden joining NATO would spark Russian response: Russia warns
8 by belter | 0 comments on Hacker News.

New top story on Hacker News: Is Grammarly a keylogger? What can you do about it?

Is Grammarly a keylogger? What can you do about it?
44 by terracatta | 19 comments on Hacker News.

New top story on Hacker News: Autonomous Computing (short version)

Autonomous Computing (short version)
7 by luu | 0 comments on Hacker News.

Thursday, February 24, 2022

New top story on Hacker News: Become a better data engineer on a shoestring (free resources)

Become a better data engineer on a shoestring (free resources)
45 by aratob | 2 comments on Hacker News.

New top story on Hacker News: Show HN: Programming Time - Playing card game to teach your kids Python

Show HN: Programming Time - Playing card game to teach your kids Python
85 by throwaway47292 | 15 comments on Hacker News.

New top story on Hacker News: Compressed Sensing in Python (2016)

Compressed Sensing in Python (2016)
7 by _Microft | 0 comments on Hacker News.

New top story on Hacker News: Lithops

Lithops
7 by tonyjstark | 1 comments on Hacker News.

New top story on Hacker News: Mastering Metacognition: The What, Why, and How

Mastering Metacognition: The What, Why, and How
7 by Secrethus | 0 comments on Hacker News.

New top story on Hacker News: Enthusiastically Rehiring

Enthusiastically Rehiring
7 by enigmatic02 | 0 comments on Hacker News.

Wednesday, February 23, 2022

New top story on Hacker News: No minimum parking requirements? No problem for Fayetteville, Arkansas

No minimum parking requirements? No problem for Fayetteville, Arkansas
64 by jseliger | 35 comments on Hacker News.

New top story on Hacker News: Subaru, Kia shut off some car features rather than adhere to 'right to repair'

Subaru, Kia shut off some car features rather than adhere to 'right to repair'
121 by davidclark22 | 56 comments on Hacker News.

New top story on Hacker News: FAA says 5G could impact radio altimeters on most Boeing 737s

FAA says 5G could impact radio altimeters on most Boeing 737s
116 by pseudolus | 106 comments on Hacker News.

New top story on Hacker News: Ngrok Alternatives

Ngrok Alternatives
60 by tosh | 16 comments on Hacker News.

New top story on Hacker News: The Buf CLI, an all-in-one tool for Protobuf development, has reached v1.0

The Buf CLI, an all-in-one tool for Protobuf development, has reached v1.0
41 by biggestlou | 4 comments on Hacker News.

New top story on Hacker News: Curious about Quantum

Curious about Quantum
2 by werner | 0 comments on Hacker News.

New top story on Hacker News: Kissing in the Middle Ages

Kissing in the Middle Ages
6 by pepys | 0 comments on Hacker News.

Tuesday, February 22, 2022

New top story on Hacker News: Convoy Crackdown – power to freeze bank accounts without trial or legal recourse

Convoy Crackdown – power to freeze bank accounts without trial or legal recourse
201 by nokcha | 204 comments on Hacker News.

New top story on Hacker News: Neuroscientists have recorded the activity of a dying human brain

Neuroscientists have recorded the activity of a dying human brain
105 by giuliomagnifico | 104 comments on Hacker News.

New top story on Hacker News: Show HN: Keep your bookmarks clean and up-to-date

Show HN: Keep your bookmarks clean and up-to-date
33 by neiman1 | 16 comments on Hacker News.

New top story on Hacker News: Sponge structure and bacteria

Sponge structure and bacteria
22 by ingve | 1 comments on Hacker News.

New top story on Hacker News: Detecting Monero Miners with Bpftrace

Detecting Monero Miners with Bpftrace
79 by philkuz | 25 comments on Hacker News.

New top story on Hacker News: How to Secure Anything

How to Secure Anything
18 by arberavdullahu | 0 comments on Hacker News.

New top story on Hacker News: Bringing the Framework Laptop to more of the world

Bringing the Framework Laptop to more of the world
27 by m6w6 | 7 comments on Hacker News.

Monday, February 21, 2022

New top story on Hacker News: Dutch antitrust authority fines Apple for fifth time

Dutch antitrust authority fines Apple for fifth time
14 by keleftheriou | 1 comments on Hacker News.

New top story on Hacker News: Valencia's irrigation system is now a model for sustainable farming

Valencia's irrigation system is now a model for sustainable farming
25 by dsnr | 0 comments on Hacker News.

New top story on Hacker News: Apple retail employees organize a union using Android phones to prevent spying

Apple retail employees organize a union using Android phones to prevent spying
31 by marcod | 5 comments on Hacker News.

New top story on Hacker News: An elaborate con that tricked dozens into working for a fake design agency

An elaborate con that tricked dozens into working for a fake design agency
9 by bhartzer | 0 comments on Hacker News.

New top story on Hacker News: Famous Laws of Software Development (2017)

Famous Laws of Software Development (2017)
13 by legrande | 1 comments on Hacker News.

New top story on Hacker News: Feynman’s advice to W&M student resonates 45 years later (2020)

Feynman’s advice to W&M student resonates 45 years later (2020)
10 by andrewl | 0 comments on Hacker News.

New top story on Hacker News: Find You: Building a stealth AirTag clone

Find You: Building a stealth AirTag clone
53 by kerm1t | 8 comments on Hacker News.

Sunday, February 20, 2022

New top story on Hacker News: My favorite essays of life advice (2020)

My favorite essays of life advice (2020)
6 by etherio | 0 comments on Hacker News.

New top story on Hacker News: How a Book Is Made – Ink, Paper and a 200k-Pound Printer

How a Book Is Made – Ink, Paper and a 200k-Pound Printer
46 by pseudolus | 6 comments on Hacker News.

New top story on Hacker News: Making of Goethe’s Colours (2020)

Making of Goethe’s Colours (2020)
4 by amanuensis | 0 comments on Hacker News.

New top story on Hacker News: How to optimize the security, size and build speed of Docker images

How to optimize the security, size and build speed of Docker images
37 by mshekow | 5 comments on Hacker News.

New top story on Hacker News: My Notebook System

My Notebook System
21 by ingve | 1 comments on Hacker News.

Saturday, February 19, 2022

New top story on Hacker News: KEYBCS2

KEYBCS2
10 by kencausey | 1 comments on Hacker News.

New top story on Hacker News: Show HN: Arduino 6502 Controller

Show HN: Arduino 6502 Controller
21 by billziss | 1 comments on Hacker News.
The 6502ctl project is an Arduino controller for the 6502 CPU. The controller controls all 6502 pins, including the clock signal and interrupts, and simulates an address and data bus with attached memory and an output peripheral. The controller includes a clock-cycle debugger with disassembler. An assembler is also included with the project.

New top story on Hacker News: Concurrency in Java – I came up with a design I feel comfortable with

Concurrency in Java – I came up with a design I feel comfortable with
2 by seinecle | 3 comments on Hacker News.

New top story on Hacker News: The solved riddle of the Apple serial number

The solved riddle of the Apple serial number
4 by dcminter | 0 comments on Hacker News.

New top story on Hacker News: Oilslick – an elevation map showing fine detail in terrain

Oilslick – an elevation map showing fine detail in terrain
11 by mleonhard | 1 comments on Hacker News.

New top story on Hacker News: Ask HN: What books are recommended to learn re semiconductors industry?

Ask HN: What books are recommended to learn re semiconductors industry?
13 by allie1 | 0 comments on Hacker News.
I want to understand the ins and outs of the semiconductor industry. What resources would you recommend for beginner, intermediary and technical person?

Friday, February 18, 2022

New top story on Hacker News: How the Fehmarnbelt Tunnel is being built

How the Fehmarnbelt Tunnel is being built
11 by blutack | 3 comments on Hacker News.

New top story on Hacker News: Facebook Shadow Profiles [pdf]

Facebook Shadow Profiles [pdf]
45 by Jimmc414 | 5 comments on Hacker News.

New top story on Hacker News: The solved riddle of the Apple-1 serial number

The solved riddle of the Apple-1 serial number
37 by DamnInteresting | 2 comments on Hacker News.

New top story on Hacker News: Demodulation of the LTE uplink

Demodulation of the LTE uplink
14 by picture | 2 comments on Hacker News.

New top story on Hacker News: Plausibly deniable encryption (2020)

Plausibly deniable encryption (2020)
94 by yamrzou | 47 comments on Hacker News.

New top story on Hacker News: An example of why RSS is useful and important

An example of why RSS is useful and important
43 by ChrisHardie | 13 comments on Hacker News.

New top story on Hacker News: Windows 11 Pro will soon require a Microsoft Account during initial setup

Windows 11 Pro will soon require a Microsoft Account during initial setup
55 by SoapSeller | 32 comments on Hacker News.

Thursday, February 17, 2022

New top story on Hacker News: Removing cookie consent requests from Firefox iOS

Removing cookie consent requests from Firefox iOS
30 by rchaves | 29 comments on Hacker News.

New top story on Hacker News: Otter.ai has saved reporters hours transcribing interviews. Caveat emptor

Otter.ai has saved reporters hours transcribing interviews. Caveat emptor
103 by danso | 52 comments on Hacker News.

New top story on Hacker News: The Unreasonable Math of Type 1 Diabetes

The Unreasonable Math of Type 1 Diabetes
125 by grahar64 | 47 comments on Hacker News.

New top story on Hacker News: Static B-Trees: A data structure for faster binary search

Static B-Trees: A data structure for faster binary search
73 by sereja | 9 comments on Hacker News.

New top story on Hacker News: Filters to block and remove copycat-websites from DuckDuckGo, Google and other

Filters to block and remove copycat-websites from DuckDuckGo, Google and other
25 by gleb_the_human | 3 comments on Hacker News.

Wednesday, February 16, 2022

New top story on Hacker News: Apache Arrow Flight SQL: Accelerating Database Access

Apache Arrow Flight SQL: Accelerating Database Access
83 by ionychal | 10 comments on Hacker News.

New top story on Hacker News: In which I agree with the federal government and bash VPNs for fun and profit

In which I agree with the federal government and bash VPNs for fun and profit
12 by EthanHeilman | 2 comments on Hacker News.

New top story on Hacker News: The Elements of Cache Programming Style (2000)

The Elements of Cache Programming Style (2000)
23 by rramadass | 3 comments on Hacker News.

New top story on Hacker News: It's often said that the Analytical Engine was before its time

It's often said that the Analytical Engine was before its time
26 by luu | 2 comments on Hacker News.

New top story on Hacker News: The Three Types of Fun

The Three Types of Fun
36 by brudgers | 8 comments on Hacker News.

Tuesday, February 15, 2022

New top story on Hacker News: Where Did CP852 Come From?

Where Did CP852 Come From?
11 by kencausey | 0 comments on Hacker News.

New top story on Hacker News: WebRTC-HTTP ingestion protocol (WHIP)

WebRTC-HTTP ingestion protocol (WHIP)
11 by pabs3 | 0 comments on Hacker News.

New top story on Hacker News: Super Mario Bros. 2 (2015) [video]

Super Mario Bros. 2 (2015) [video]
7 by tosh | 0 comments on Hacker News.

New top story on Hacker News: N-body interactions between trapped ion qubits via spin-dependent squeezing

N-body interactions between trapped ion qubits via spin-dependent squeezing
7 by donutloop | 0 comments on Hacker News.

New top story on Hacker News: ML training compute has been doubling every 6 months since 2010

ML training compute has been doubling every 6 months since 2010
16 by innerfestival | 4 comments on Hacker News.

Monday, February 14, 2022

New top story on Hacker News: How AI Is Changing Chemical Discovery

How AI Is Changing Chemical Discovery
9 by andreyk | 0 comments on Hacker News.

New top story on Hacker News: Decoding radio-controlled bus stop displays (2013)

Decoding radio-controlled bus stop displays (2013)
8 by zdw | 1 comments on Hacker News.

New top story on Hacker News: MonoLisa – A font designed for developers

MonoLisa – A font designed for developers
46 by qubitcoder | 12 comments on Hacker News.

New top story on Hacker News: Ask HN: Why is Firefox losing marketshare and how would you save it?

Ask HN: Why is Firefox losing marketshare and how would you save it?
135 by feross | 219 comments on Hacker News.
What would you do if you were in charge of Mozilla? How would you save Firefox?

New top story on Hacker News: Hwatch: A modern alternative to the watch command

Hwatch: A modern alternative to the watch command
9 by ducktective | 0 comments on Hacker News.

New top story on Hacker News: MikroTik authentication revealed

MikroTik authentication revealed
34 by aaronsdevera | 3 comments on Hacker News.

New top story on Hacker News: How to manage software developers without micromanaging

How to manage software developers without micromanaging
21 by gk1 | 8 comments on Hacker News.

Sunday, February 13, 2022

New top story on Hacker News: The Last Words of Dutch Schultz, the Cartoon (2014)

The Last Words of Dutch Schultz, the Cartoon (2014)
4 by samclemens | 0 comments on Hacker News.

New top story on Hacker News: Has Literature Ever Changed the Course of History?

Has Literature Ever Changed the Course of History?
6 by lermontov | 5 comments on Hacker News.

New top story on Hacker News: Ancient chalk sculpture is 'most important prehistoric art'

Ancient chalk sculpture is 'most important prehistoric art'
8 by diodorus | 0 comments on Hacker News.

New top story on Hacker News: The rise of railroads gave rise to the first org chart (2017)

The rise of railroads gave rise to the first org chart (2017)
7 by plimp | 0 comments on Hacker News.

New top story on Hacker News: Ask HN: Tools to visualize data in SQL databases?

Ask HN: Tools to visualize data in SQL databases?
10 by dyml | 5 comments on Hacker News.
I’d like to hear what tools you use to easily visualize the data in a sql table? Preferably I’d just like to click on a MariaDB table and receive some plots and statistics on the columns. Whats your experience on this? Edit: to clarify, I don’t want to visualize the database itself (Schema’s, keys etc). Just the data within it.

Saturday, February 12, 2022

New top story on Hacker News: Real-Cugan: Real Cascade U-Nets for Anime Image Super Resolution

Real-Cugan: Real Cascade U-Nets for Anime Image Super Resolution
3 by ksec | 0 comments on Hacker News.

New top story on Hacker News: A SHIFT in Perspective

A SHIFT in Perspective
7 by cunidev | 0 comments on Hacker News.

New top story on Hacker News: Benefits and costs of writing a Posix kernel in a high-level language (2018) [pdf]

Benefits and costs of writing a Posix kernel in a high-level language (2018) [pdf]
18 by Decabytes | 1 comments on Hacker News.

New top story on Hacker News: How Texas is becoming a Bitcoin mining hub

How Texas is becoming a Bitcoin mining hub
14 by rustoo | 3 comments on Hacker News.

New top story on Hacker News: The Logical Mystic

The Logical Mystic
6 by llvm | 0 comments on Hacker News.

New top story on Hacker News: Does the human lifespan have a limit?

Does the human lifespan have a limit?
16 by feltsense | 8 comments on Hacker News.

New top story on Hacker News: Little Sound Dj

Little Sound Dj
10 by Tomte | 4 comments on Hacker News.

Friday, February 11, 2022

New top story on Hacker News: A walk through Project Zero metrics

A walk through Project Zero metrics
38 by arkadiyt | 15 comments on Hacker News.

New top story on Hacker News: Moore’s Not Enough: New Laws of Computing

Moore’s Not Enough: New Laws of Computing
13 by pseudolus | 0 comments on Hacker News.

New top story on Hacker News: The Seven-Per-Cent Solution

The Seven-Per-Cent Solution
12 by samclemens | 4 comments on Hacker News.

New top story on Hacker News: How and why Linaro builds, boots and tests over a million Linux kernels per year

How and why Linaro builds, boots and tests over a million Linux kernels per year
21 by pabs3 | 0 comments on Hacker News.

New top story on Hacker News: Analog: A simple productivity system

Analog: A simple productivity system
36 by kkoncevicius | 10 comments on Hacker News.

Thursday, February 10, 2022

New top story on Hacker News: Safer entropy accumulation in Linux 5.18's RNG

Safer entropy accumulation in Linux 5.18's RNG
21 by zx2c4 | 2 comments on Hacker News.

New top story on Hacker News: Have we been thinking about inflation all wrong?

Have we been thinking about inflation all wrong?
45 by pseudolus | 177 comments on Hacker News.

New top story on Hacker News: Theses on Sleep – Alexey Guzey

Theses on Sleep – Alexey Guzey
26 by wosk | 18 comments on Hacker News.

New top story on Hacker News: MIPI CSI-2 v4.0 adds features always-on, low power machine vision applications

MIPI CSI-2 v4.0 adds features always-on, low power machine vision applications
3 by zdw | 0 comments on Hacker News.

New top story on Hacker News: On Cat Pictures

On Cat Pictures
4 by samclemens | 0 comments on Hacker News.

Wednesday, February 9, 2022

New top story on Hacker News: Cracking Charles Dickens’ code

Cracking Charles Dickens’ code
15 by drdee | 1 comments on Hacker News.

New top story on Hacker News: Understanding LSM Trees: What Powers Write-Heavy Databases

Understanding LSM Trees: What Powers Write-Heavy Databases
11 by branko_d | 5 comments on Hacker News.

New top story on Hacker News: Researchers use tiny magnetic swirls to generate true random numbers

Researchers use tiny magnetic swirls to generate true random numbers
14 by wjSgoWPm5bWAhXB | 3 comments on Hacker News.

New top story on Hacker News: Program above and beyond your actual ability by using FreeMind (2012)

Program above and beyond your actual ability by using FreeMind (2012)
19 by Tomte | 1 comments on Hacker News.

New top story on Hacker News: Physical Unclonable Functions,a unique, inborn, unclonable hardware level key

Physical Unclonable Functions,a unique, inborn, unclonable hardware level key
17 by Nokinside | 7 comments on Hacker News.

Tuesday, February 8, 2022

New top story on Hacker News: Christopher Walken on Acting Like Christopher Walken

Christopher Walken on Acting Like Christopher Walken
12 by samclemens | 1 comments on Hacker News.

New top story on Hacker News: Raid-Z Expansion Feature for ZFS Goes Live

Raid-Z Expansion Feature for ZFS Goes Live
38 by chungy | 6 comments on Hacker News.

New top story on Hacker News: Common Calendrical Fallacies

Common Calendrical Fallacies
13 by _ttg | 0 comments on Hacker News.

New top story on Hacker News: You cannot police misinformation in a fair, reproducible, and representative way

You cannot police misinformation in a fair, reproducible, and representative way
113 by youcould | 157 comments on Hacker News.

New top story on Hacker News: Intel, once king of microchips, is now far behind competitors

Intel, once king of microchips, is now far behind competitors
2 by carlycue | 0 comments on Hacker News.

Monday, February 7, 2022

New top story on Hacker News: Learning a Technical Subject

Learning a Technical Subject
2 by kiyanwang | 0 comments on Hacker News.

New top story on Hacker News: The DoD Is Prioritizing Open Source Software. OSS Projects Can Benefit

The DoD Is Prioritizing Open Source Software. OSS Projects Can Benefit
29 by ritwikgupta | 1 comments on Hacker News.

New top story on Hacker News: Proof That the Earth Spins

Proof That the Earth Spins
12 by nyc111 | 6 comments on Hacker News.

New top story on Hacker News: Trudeau tries to bring back online censorship bill

Trudeau tries to bring back online censorship bill
83 by andrenth | 16 comments on Hacker News.

New top story on Hacker News: Can a $310M startup avoid due diligence?

Can a $310M startup avoid due diligence?
104 by svgossip | 25 comments on Hacker News.

New top story on Hacker News: Keeping the Pirates at Bay (2001)

Keeping the Pirates at Bay (2001)
5 by Tomte | 1 comments on Hacker News.

Sunday, February 6, 2022

New top story on Hacker News: Scientific Programming Blog

Scientific Programming Blog
18 by gballan | 0 comments on Hacker News.

New top story on Hacker News: Connor Leahy on EleutherAI, Replicating GPT-2/GPT-3, AI Risk and Alignment

Connor Leahy on EleutherAI, Replicating GPT-2/GPT-3, AI Risk and Alignment
37 by antman | 6 comments on Hacker News.

New top story on Hacker News: Gut microbe linked to depression in large health study

Gut microbe linked to depression in large health study
233 by pella | 141 comments on Hacker News.

New top story on Hacker News: On Being Broke

On Being Broke
35 by vitabenes | 10 comments on Hacker News.

New top story on Hacker News: Six-Letter DNA Alphabet Produces Proteins in Cells

Six-Letter DNA Alphabet Produces Proteins in Cells
3 by _Microft | 0 comments on Hacker News.

New top story on Hacker News: Europe: The End of the Privacy of Digital Correspondence

Europe: The End of the Privacy of Digital Correspondence
14 by donutloop | 1 comments on Hacker News.

Saturday, February 5, 2022

New top story on Hacker News: Jo – a shell command to create JSON

Jo – a shell command to create JSON
155 by robfig | 38 comments on Hacker News.

New top story on Hacker News: Wikipedia of Algebraic Geometry Will Forever Be Incomplete

Wikipedia of Algebraic Geometry Will Forever Be Incomplete
19 by mathgenius | 0 comments on Hacker News.

New top story on Hacker News: Florida governor to investigate GoFundMe over Canada trucker donations

Florida governor to investigate GoFundMe over Canada trucker donations
87 by throwawaysea | 158 comments on Hacker News.

New top story on Hacker News: I Used Linux-Based PinePhone Daily for a Year. Here’s What I Learned

I Used Linux-Based PinePhone Daily for a Year. Here’s What I Learned
10 by kk6mrp | 0 comments on Hacker News.

New top story on Hacker News: First Recorded Usage of “Hacker”

First Recorded Usage of “Hacker”
3 by legrande | 0 comments on Hacker News.

New top story on Hacker News: Ask HN: Best hosted alternative to Google Workspace for email?

Ask HN: Best hosted alternative to Google Workspace for email?
48 by CharlesW | 47 comments on Hacker News.
So with Google starting to charge previously-free users, I've decided that I'd rather give my money to someone else. I'd like a provider who is likely to be around in a decade or two. Tips on moving many years of Google email to a new provider are appreciated as well!

Friday, February 4, 2022

New top story on Hacker News: Long-term visa for remote workers

Long-term visa for remote workers
107 by floetic | 99 comments on Hacker News.

New top story on Hacker News: Biologist decided to disavow his own study

Biologist decided to disavow his own study
43 by colinprince | 1 comments on Hacker News.

New top story on Hacker News: FreeCAD: Open-source 3D parametric modeler

FreeCAD: Open-source 3D parametric modeler
35 by _benj | 13 comments on Hacker News.

New top story on Hacker News: New research: natural gas appliances emit much more methane than realized

New research: natural gas appliances emit much more methane than realized
31 by softwarebeware | 16 comments on Hacker News.

New top story on Hacker News: Protons are probably smaller than long thought

Protons are probably smaller than long thought
6 by hhs | 0 comments on Hacker News.

New top story on Hacker News: Ask HN: Is there any tool for benchmarking responsiveness for Linux?

Ask HN: Is there any tool for benchmarking responsiveness for Linux?
25 by c0deR3D | 13 comments on Hacker News.
System76 recently announced their responsiveness optimizer, System76 Scheduler [0], which basically works as a daemon, adjusting the nice value and the CFS knobs for processes in the box for increased responsiveness. They've claimed that the responsiveness is therefore increased, which I'm also believed so. However, this got me wondering, is there exists any tool that can report the "numbers" (e.g., scheduling latency) regarding to the responsivenss? Maybe Google has such tool for testing regression for Android or Chrome OS, sadly, I didn't managed to find one. Thanks! [0] https://ift.tt/hPaDI3s

Thursday, February 3, 2022

New top story on Hacker News: Show HN: I built a service to help companies reduce AWS spend by 50%

Show HN: I built a service to help companies reduce AWS spend by 50%
89 by kavehkhorram | 43 comments on Hacker News.
Hey HN: Kaveh here, the founder of https://www.usage.ai/ We help companies drive down AWS EC2 spend. Why? Because the way it's done now is a pain. DevOps and Software Engineers end up spending time managing costs rather than focusing on business problems. Previous to founding Usage, I worked on high-performance computing research at JP Morgan Chase and as a software engineer at a number of smaller startups. Here's how it works: We are typically brought in by a DevOps manager to cut AWS EC2 costs. The app is entirely self-service and the savings are generated automatically, typically we do this live on a call. On average, we reduce AWS EC2 spend by 50% for 5 minutes of work. To reduce by 50%+, we don't touch the instances, require any code change, or change the performance of your instances. We buy Reserved Instances on your behalf (a billing layer change only) and bundle them with guaranteed buyback. So you get the steep 57% savings of 3-year no-upfront RIs with none of the commitment (you can sell them back to us anytime after 30 days). We make money off of a 20% Savings Fee. Happy to chat directly kaveh@usage.ai Have you experienced any issues with managing your company or organization's AWS expenses? We'd love to hear your feedback and ideas!

New top story on Hacker News: How to stop running out of ephemeral ports and love long-lived connections

How to stop running out of ephemeral ports and love long-lived connections
19 by pimterry | 0 comments on Hacker News.

New top story on Hacker News: I hacked SONOS and YouTube the same day

I hacked SONOS and YouTube the same day
96 by lukastyrychtr | 29 comments on Hacker News.

New top story on Hacker News: Resurrecting an Old Plotter (2019)

Resurrecting an Old Plotter (2019)
16 by dbalan | 0 comments on Hacker News.

New top story on Hacker News: DarkPattern.games: Find Healthy Mobile Games

DarkPattern.games: Find Healthy Mobile Games
54 by homarp | 15 comments on Hacker News.

Wednesday, February 2, 2022

New top story on Hacker News: Reading on smartphone affects sigh generation, brain activity, and comprehension

Reading on smartphone affects sigh generation, brain activity, and comprehension
137 by yamrzou | 48 comments on Hacker News.

New top story on Hacker News: Show HN: Add a “1” to your Hacker News URL to get fancy social previews

Show HN: Add a “1” to your Hacker News URL to get fancy social previews
33 by statico | 13 comments on Hacker News.
For example, paste this into Slack or Discord or whatever: https://ift.tt/7tnZJLE9K It works with comments, too: https://ift.tt/2M9WXPB6J Hastily-developed source: https://ift.tt/YAML39fF5

New top story on Hacker News: Show HN: Grafana Incident, smart incident management for your teams

Show HN: Grafana Incident, smart incident management for your teams
96 by matryer | 17 comments on Hacker News.

New top story on Hacker News: Exploring SIMD performance improvements in WebAssembly

Exploring SIMD performance improvements in WebAssembly
10 by hackthesystem | 0 comments on Hacker News.

New top story on Hacker News: Settings are not a design failure

Settings are not a design failure
29 by tommoor | 10 comments on Hacker News.

Tuesday, February 1, 2022

New top story on Hacker News: The McNamara fallacy: Measurement is not understanding

The McNamara fallacy: Measurement is not understanding
174 by wenc | 102 comments on Hacker News.

New top story on Hacker News: How a PhD astrophysicist thinks about data

How a PhD astrophysicist thinks about data
39 by izzymiller | 15 comments on Hacker News.

New top story on Hacker News: Show HN: OneModel – Diagramming tailor-made for Software Engineers

Show HN: OneModel – Diagramming tailor-made for Software Engineers
51 by koahmad | 18 comments on Hacker News.

New top story on Hacker News: Show HN: Atlas – A deployment pipeline platform built on Argo CD

Show HN: Atlas – A deployment pipeline platform built on Argo CD
17 by mihirpandya | 0 comments on Hacker News.
Atlas is an open-source deployment pipeline platform built for cloud-native applications. Atlas allows users to: - Create continuous pipelines across all their environments and clusters - Add custom tasks/tests plugins (Python scripts, K8S manifests, Argo Workflows, environment setup, etc.) - Automatically rollback applications in case of failure or degradation (Atlas watches the application past the scope of a pipeline run to ensure and enforce stability) - Use all existing Argo features Would love to hear all of your feedback and thoughts on this!

New top story on Hacker News: Ask HN: Who wants to be hired? (February 2022)

Ask HN: Who wants to be hired? (February 2022)
50 by whoishiring | 89 comments on Hacker News.
Share your information if you are looking for work. Please use this format: Location: Remote: Willing to relocate: Technologies: Résumé/CV: Email: Readers: please only email these addresses to discuss work opportunities. Searchers: try https://ift.tt/ycdjkFYON or https://ift.tt/HbAK3Pkc9 .