Boeing whistleblower found dead in US

https://ichef.bbci.co.uk/news/1024/branded_news/8834/production/_132886843_gettyimages-1258810033.jpg
Prior to his death, John Barnett was testifying against Boeing over concerns about standards.

JSON Canvas – An open file format for infinite canvas data

https://jsoncanvas.org/assets/card.png
Infinite canvas tools offer a spatial method for information management and have gained popularity in various apps. The JSON Canvas format enhances these tools by ensuring data longevity and user ownership, with open-source accessibility under the MIT license.

Webb and Hubble confirm Universe's expansion rate

https://www.esa.int/var/esa/storage/images/esa_multimedia/images/2024/03/webb_hubble_confirm_universe_s_expansion_rate/25971194-1-eng-GB/Webb_Hubble_confirm_Universe_s_expansion_rate_article.jpg
The James Webb Space Telescope confirmed Hubble's measurements of the universe's expansion rate, intensifying the Hubble Tension mystery. Webb's findings suggest the need for new physics or unknown factors affecting the expansion.

gh-116167: Allow disabling the GIL

https://opengraph.githubassets.com/895e3efe8a076c278945c7bb392da54d1cab14286911df8f1e97091ed9f34300/python/cpython/pull/116338
The article discusses the limitations and rules for applying code suggestions, stating that suggestions must alter the code and cannot be applied to deleted lines or in batches with multiple suggestions per line.

Flowers for Algernon (1965) [pdf]

Charlie Gordon, a 37-year-old with a low IQ, is selected for an experimental surgery to increase his intelligence, documented through his progress reports. Despite initial struggles with tests, his motivation impresses the doctors, leading to his participation in the experiment.

Diffusion models from scratch, from a new theoretical perspective

https://www.chenyang.co/assets/images/diffusion/schedule.png
The article discusses the effectiveness of diffusion models in generative modeling and their application in various domains. It provides a tutorial on implementing diffusion models from an optimization viewpoint, including theory and practical coding examples.

Simpson's paradox

https://upload.wikimedia.org/wikipedia/commons/thumb/4/47/Simpson%27s_paradox_continuous.svg/220px-Simpson%27s_paradox_continuous.svg.png
Simpson's paradox occurs when a trend in separate groups reverses in the aggregate data, a common issue in statistical analysis. It is resolved by addressing confounding variables and is exemplified by gender bias in UC Berkeley admissions and medical treatment effectiveness.

Airbnb is banning indoor security cameras

https://duet-cdn.vox-cdn.com/thumbor/0x0:2040x1360/2400x1600/filters:focal(1020x680:1021x681):format(webp)/cdn.vox-cdn.com/uploads/chorus_asset/file/23951248/STK090_VRG_Illo_N_Barclay_2_airb_b.jpg
Airbnb bans indoor security cameras to prioritize renter privacy, effective April 30th; hosts must also disclose outdoor cameras and noise monitors. Policy changes follow guest concerns over hidden cameras and privacy expectations.

GrapheneOS finds Bluetooth memory corruption via ARM MTE

Our hardware memory tagging support for Pixel 8 and Pixel 8 Pro has uncovered a memory corruption bug introduced in Android 14 QPR2 for Bluetooth LE. We're currently investigating it to determine how to fix or temporarily disable the newly introduced feature as a workaround.

Launch HN: Onedoc (YC W24) – A better way to create PDFs

https://camo.githubusercontent.com/6a7d2583fbd22191e1cd81a2d2f1a6493ae68540ae6f1afcf0e17fec0ac1459f/68747470733a2f2f7265706f62656174732e6178696f6d2e636f2f6170692f656d6265642f316364623566313565323965346535613933383863393832613033396561613937613532666466392e737667
The article promotes react-print-pdf, an open-source tool for creating PDFs with full layout control, integrating dynamic data, and modernizing document production. It invites developers to contribute to its ongoing development and use its components for efficient PDF generation.

Building an Open Source Decentralized E-Book Search Engine

The article describes the creation of an open-source e-book search website using ENS, IPFS, and the Glitter decentralized database, with no source code from Liber3. It outlines the process of setting up a Glitter SDK project, implementing a search function, and designing a front-end interface.

Kdenlive 24.02 open source video editor released

https://kdenlive.org/wp-content/uploads/2024/03/24.02.0.png
Kdenlive 24.02 introduces Qt6 and KDE Frameworks 6, enhancing performance across platforms and Wayland support for Linux. Despite some issues and discontinued PPA, the update offers new features like multi-subtitle support and improved project integrity.

The later we meet someone in a sequence, the more negatively we describe them

https://suchscience.org/wp-content/uploads/2024/03/later-encountered-people-viewed-more-negatively.jpg
A study shows an unconscious bias leads to more negative descriptions of individuals encountered later in sequences, as seen in experiments with Facebook profiles and "The Bachelor" clips. This bias could affect real-world scenarios like job interviews and social perceptions.

Show HN: Teable – Open-Source No-Code Database Fusion of Postgres and Airtable

https://raw.githubusercontent.com/teableio/teable/develop/static/assets/images/teable-vertical-light.png
Teable offers a no-code, spreadsheet-like database platform enabling complex app development with ease, featuring templates and a demo for high performance. It promises scalability, data privacy, and flexibility, challenging the limitations of traditional no-code tools.

Automakers are sharing consumers' driving behavior with insurance companies

https://static01.nyt.com/images/2024/03/07/multimedia/07Car_Privacy-lvtj/07Car_Privacy-lvtj-articleLarge.jpg?quality=75&auto=webp&disable=upscale
Kenn Dahl was shocked to find his insurance costs soared due to a detailed LexisNexis report of his driving habits, provided by GM, which insurers used to assess risk. The report tracked his and his wife's car usage without location data, affecting his insurance quotes.

Google's threat model for post-quantum cryptography

https://storage.googleapis.com/bughunters-social/og_social_image_bughunters.png
Read on to understand how Google currently evaluates the threat landscape related to post-quantum cryptography, and what implications this has for migrating from classical cryptographic algorithms to PQC.

Speedometer 3.0: A shared browser benchmark for web application responsiveness

https://browserbench.org/announcements/speedometer3/preview.png
Speedometer 3.0, developed collaboratively by major browser engines, introduces improved performance tests reflecting modern web usage. It aims to enhance user experience by simulating real interactions and measuring browser responsiveness more accurately.

Speech and Language Processing (3rd ed. draft)

The article announces the Feb 3, 2024 release of a book with upcoming Chapter 12, and invites feedback on drafts for improvement. It acknowledges contributors for their role in enhancing the book.

Show HN: Prompts as WASM Programs

https://opengraph.githubassets.com/9c20321a23a7d13ab537eb3546019462585f7f59791fad720c5c4a98d44feaab/microsoft/aici
The AICI framework enables the creation of Controllers to manage and refine the output of Large Language Models in real-time, offering customization and efficiency. It supports various programming languages, integrates with multiple LLMs, and is designed for both local and cloud execution.

(How to Write a (Lisp) Interpreter (In Python)) (2010)

The article explains the process of creating a Lisp interpreter named Lispy using Python 3, focusing on simplicity and fundamental concepts of programming language interpreters. It also discusses the syntax and semantics of the Scheme dialect, demonstrating the interpreter's parsing and execution stages.

Are We Watching the Internet Die?

https://www.wheresyoured.at/content/images/2024/01/wyea--1.jpeg
Reddit is planning to go public with a valuation of $6.5 billion, offering select users initial stocks, despite consistent losses and never turning a profit. The article criticizes the IPO as exploitative, highlighting unpaid user contributions and the commodification of user-generated content for corporate gain.

What Extropic is building

https://assets-global.website-files.com/6313b89fb85cefd2b0f53967/65e8005223e4c06d634c54bc_Fig%201%20Large.webp
Extropic is developing a hardware platform that leverages matter's fluctuations for Generative AI, promising significant speed and efficiency gains over traditional processors. They aim to overcome the limitations of digital logic by using Energy-Based Models and stochastic analog circuits.

Fixing Gemma Bugs

https://unsloth.ai/cgi/image/BOS_token_eFS7AjFOGqSV0mw7Qnk58.png?width=1920&quality=80&format=auto
Unsloth has been busy fixing bugs in Gemma, including finetuning with the `<bos>` token and precision issues in embeddings and layernorms. They've updated fixes on Colab, addressed issues in transformers, and seek support for their two-person team.

OpenPlotter

https://openmarine.net/sites/default/files/inline-images/Screenshot%20from%202023-01-23%2017-51-51.png
OpenCPN allows for navigation and tracking at the helm, while AvNav enables remote chart plotting via web browser. OpenPlotter supports HDMI connection, dashboard customization, sensor integration, notifications, and IoT for boat monitoring and control.

European Commission's use of Microsoft 365 infringes data protection law for EU

https://www.edps.europa.eu/themes/custom/edpsweb_theme/og_image.png
The EDPS found the European Commission violated data protection laws using Microsoft 365 and ordered corrective actions and suspension of certain data flows by December 2024. The Commission failed to safeguard data transferred outside the EU and did not define data collection specifics in its Microsoft contract.

How to colorize Game Boy games – Backgrounds

https://toruzz.com/assets/images/howtocolorize-cover-9a06fbdacaba131ea64038654c8dce2c.png
The article discusses refining game colorization by focusing on background attributes, which requires understanding background data rendering and possibly editing code based on the game type. The process involves setting breakpoints, tracing code, and adapting a routine to incorporate BG attributes, which varies by game.

Humanity Is Dangerously Pushing Its Ability to Tolerate Heat

https://media.wired.com/photos/65de5b70b1790f25786bf32b/master/w_2560%2Cc_limit/UK_heatwave-science-GettyImages-1241981320.jpg
Humanity's ability to sweat is threatened by fatal heat waves due to a 2°C rise in temperature, with the UK's record heat in 2022 causing thousands of deaths. Cooperation and infrastructure that can handle extreme weather are crucial for survival.

Bees and chimps can also pass on their skills

https://scx1.b-cdn.net/csz/news/800a/2024/monkey-see-monkey-lear.jpg
Studies reveal bumblebees and chimpanzees possess the ability to learn complex skills socially, challenging the notion that cumulative culture is unique to humans. This discovery suggests other species can also develop and pass on knowledge previously attributed solely to human capability.

Intel Gaudi2 chips outperform Nvidia H100 on diffusion transformers

https://images.squarespace-cdn.com/content/v1/6213c340453c3f502425776e/36953f04-b971-415a-bd09-31a2cbd70999/Behind_The_Compute_Inline2.jpg
The article discusses performance benchmarks of compute solutions for AI, highlighting the efficiency of Intel Gaudi 2 accelerators over Nvidia's in training and inference tests, and the upcoming public release of the advanced Stable Diffusion 3 model. It emphasizes the need for affordable and powerful computing to make AI technology accessible.

Show HN: Async tasks in 350 lines of C

https://opengraph.githubassets.com/964091a5b6aa156293872d4ac55c9a1a5117d1a99cb8e98bca576dd360c44a5f/rkaehn/cr_task.h
The library offers an asynchronous task system in C with lock-free operations, supporting immediate and delayed task execution with dependencies. It uses standard C11 and POSIX, providing shorthand functions for common task management patterns.

How Miles Davis hired John Coltrane

https://substackcdn.com/image/fetch/w_120,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0cbabbbf-c113-4ea1-a214-a7e3991096d6_450x450.jpeg
Kaplan's book "3 Shades of Blue" details the influence of jazz icons Miles Davis, John Coltrane, and Bill Evans, highlighting Coltrane's struggle with heroin addiction and his eventual collaboration with Davis despite initial tensions.

Show HN: RE3 – Reversed Engineered GTA3 Source Code

https://raw.githubusercontent.com/halpz/re3/master/res/images/logo_1024.png
The article details the reversed source code availability for GTA III and GTA VC, supporting multiple platforms and processors, with various rendering and audio options. It emphasizes the project's enhancements, compatibility with mods, and non-commercial usage policy.

AMD announces the Spartan UltraScale+ FPGA family

https://www.cnx-software.com/wp-content/uploads/2024/03/amd-spartan-ultrascale.jpg
The Spartan UltraScale+ FPGA series, part of AMD's Cost-Optimized portfolio, offers high I/O to logic ratio, consumes less power, and includes advanced security. It targets applications like embedded vision and industrial networking, supported by AMD's design software.

How we engineer feedback at Figma with eng crits

https://cdn.sanity.io/images/599r6htc/localized/82da97f2dad2e60cab257c741cf9cdd27fef6b3f-2784x1566.png?w=2784&h=1566&q=75&fit=max&auto=format
Figma's engineering critiques (crits) are collaborative sessions for early feedback on technical designs, not approval steps. They've become a key part of the workflow, evolving from initial skepticism to a process that includes the entire organization.

Show HN: Pywebview 5

https://pywebview.flowrl.com/logo-no-text.png
Pywebview 5 introduces Android support, DOM manipulation, and application settings, expanding its GUI-building capabilities for Python programs. It lacks certain features on mobile but offers enhanced file path support and customizable behavior.

European Commission's use of Microsoft 365 infringes data protection law for EU

https://www.edps.europa.eu/themes/custom/edpsweb_theme/og_image.png
The EDPS found the European Commission violated data protection laws using Microsoft 365 and ordered corrective actions and suspension of certain data flows by December 2024. The Commission failed to safeguard data transferred outside the EU and did not define data collection specifics in its Microsoft contract.

A TUI Git client inspired by Magit

https://raw.githubusercontent.com/altsem/gitu/master/vhs/rec.gif
Gitu is a Git terminal interface inspired by Magit, designed to gradually incorporate Magit's features and cater to its users. It's installed by extracting the binary to a common path like /usr/local/bin and integrates with editors via environment variables.

Improving Performance in Firefox and Across the Web with Speedometer 3

https://hacks.mozilla.org/wp-content/themes/Hax/img/hacks-meta-image.jpg
Mozilla announces Speedometer 3, a more open and challenging browser performance benchmark created through unprecedented cross-industry collaboration. It aims to enhance real-world web responsiveness and has already led to significant performance improvements in Firefox.

Rnote – An open-source vector-based drawing app

https://raw.githubusercontent.com/flxzt/rnote/main/misc/assets/rnote-macos-app-bundle-badge.png
The article discusses various document expansion layouts and credits @dehesselle for making the app available on MacOS. It also introduces TT2020Base-Regular, an advanced open-source typewriter font.

Who uses Google TPUs for inference in production?

The author expresses confusion over the practical use of TPUs for production, citing a lack of resources for running modern models, compatibility issues, and difficulties in understanding memory consumption and accessing TPU v5.

Roku data breach: Over 15k accounts affected

https://assets-global.website-files.com/642f23b226136a039015e675/64fa276619d8ee1399250892_ClaimDepot%20Logo%20dark%20blue%20on%20transparent%20bg%20RGB.png
Roku experienced a data breach affecting 15,363 accounts, compromising login details between Dec 28, 2023, and Feb 21, 2024. They've taken measures like resetting passwords and monitoring for suspicious activity, and advise affected users to stay vigilant.

Exploring Bauhaus: Revolutionary design school that shaped modern world

https://images.squarespace-cdn.com/content/v1/6129e1d90fd5785f5023e7dd/cfcf2628-6e9b-4a45-9859-ffdf838f2ae1/bauhaus-cover.png
The article discusses the history and impact of the Bauhaus movement, which revolutionized art, design, and architecture in the 20th century with its emphasis on the unity of form and function. Despite its brief existence due to Nazi closure, Bauhaus's ideologies and methods continue to influence modern design.

A ‘double brood’ of periodical cicadas will emerge in 2024

https://static.scientificamerican.com/dam/m/49910f98eaf69512/original/GettyImages-105073456_WEB.jpg?w=600
The forests of the Eastern U.S. will witness a rare concurrent emergence of two cicada broods, after a quiet period since 2021. This spectacle, involving a 13-year and a 17-year brood, is part of an ancient lifecycle crucial to local ecosystems.

Among the A.I. doomsayers

https://media.newyorker.com/photos/65e8f1d72f4a68c5013b1601/2:2/w_2560%2Cc_limit/r43908.png
Katja Grace's Berkeley apartment is a blend of old-world charm and futuristic elements, reflecting her work as an A.I. safety researcher contemplating the potential of A.I. to destroy the world. Discussions on A.I.'s future, including doomer and optimist perspectives, converge at her dinner parties, amidst debates on existential risks and the alignment problem of artificial intelligence.

Proof of the Singular Value Decomposition

The article explains Gilbert Strang's existence proof of the singular value decomposition (SVD), stating that every matrix is diagonal with proper bases. It breaks down the proof into overview and details, focusing on real matrices and illustrating the construction of SVD.

Jupiter's ocean moon Europa, thought to be habitable, may be oxygen-starved

https://static01.nyt.com/images/2024/03/04/multimedia/04sci-europa-01-kmfv/04sci-europa-01-kmfv-articleLarge.jpg?quality=75&auto=webp&disable=upscale
Jupiter's moon Europa produces less oxygen than hoped, which might affect its habitability, but it's not considered prohibitive. Europa's icy surface generates oxygen through space particle bombardment, potentially supplying its subsurface ocean.

This week, xAI will open source Grok

Something went wrong, but don’t fret — let’s give it another shot.

Did the whole pairdrop repo just vanish

https://private-user-images.githubusercontent.com/24227628/305993460-a15ee104-6fb7-4d0a-9e02-2e0f6e622305.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MTAxNDQ3OTcsIm5iZiI6MTcxMDE0NDQ5NywicGF0aCI6Ii8yNDIyNzYyOC8zMDU5OTM0NjAtYTE1ZWUxMDQtNmZiNy00ZDBhLTllMDItMmUwZjZlNjIyMzA1LnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNDAzMTElMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjQwMzExVDA4MDgxN1omWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPWJjMThiZWZjYjFlMTk2ZmVlNGViM2U4ZDA4ZDhiZjBjZWMwYWRlZjAyOWYwNDU3YmRjYzljZWJlNTIxYjI4NTEmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0JmFjdG9yX2lkPTAma2V5X2lkPTAmcmVwb19pZD0wIn0.q0ovsilvD2ml1CcM1_vdShx7CloKesxUppGFXb98bMk
App version Lastest Android version 12 Describe the bug I don't know whether this is the best place to put up this issue, honestly I don't know a better place, at least it is connected to this project Steps to reproduce the bug Well go t...

Show HN: Goqite, a persistent message queue Go library built on SQLite

https://www.goqite.com/logo.png
goqite (pronounced Go-queue-ite) is a persistent message queue Go library built on SQLite and inspired by AWS SQS (but much simpler).

Maybe Functions

https://blog.benwinding.com/images/imgur/762bc434ec06.jpg
The article criticizes "maybe functions" for causing code confusion by returning unpredictable nulls, suggesting to shift control logic to consumers or use monads to manage null checks. It highlights the difficulty in maintaining and debugging "maybe functions".

The Secret Life of XY Monitors (2001)

https://www.jmargolin.com/xy/Fig1.gif
The article explains the components and physics behind XY Monitors used in vector games, detailing the electron gun, deflection amplifiers, and high voltage supply. It also discusses electron beam deflection, focusing, and challenges like pincushion distortion correction.

Steve Wozniak and Stuart Brand Discuss Control of IP (1984) [video]

https://media.gettyimages.com/id/146496695/video/stewart-brand-states-information-wants-to-be-free.jpg?s=170x170&k=20&c=bDYrGogcTex9hsMJtEec5N7fs-XKjC8-SVpSiFKPRB8=
At the first Hackers Conference in 1984, Steve Wozniak and Stuart Brand discuss control of intellectual property, leading Brand to famously declare that information wants to be expensive, but at the... Get premium, high-resolution news videos at Getty Images

How engineers straightened the Leaning Tower of Pisa [video]

Midjourney bans all Stability AI employees over alleged data scraping

https://duet-cdn.vox-cdn.com/thumbor/0x0:2040x1360/2400x1600/filters:focal(1020x680:1021x681):format(webp)/cdn.vox-cdn.com/uploads/chorus_asset/file/23262657/VRG_Illo_STK001_B_Sala_Hacker.jpg
Midjourney blames Stability AI employees for a service outage caused by "botnet-like" scraping, leading to a ban on their use of the service. The situation, still developing, has sparked criticism over AI model data practices.

Tell HN: NetworkSolutions.com lost the ability to update root DNS w/ custom DNS

The article warns DNS admins and hobbyists not to modify custom nameservers on web.com/NetworkSolutions.com, as changes won't update the root DNS servers. Support confirms this limitation, and communication is now only through web chat.

The complete story of Gödel incompleteness

Kurt Gödel's completeness theorem affirmed every tautology in predicate logic is provable, while his incompleteness theorems demonstrated that in any consistent formal system, there are true statements that are unprovable. His work refuted the possibility of a complete axiomatization of arithmetic.

Latam Airlines SYD to AKL flight: 50 people treated after mid-air incident

https://media.rnztools.nz/rnz/image/upload/s--Z7hn3HkE--/c_crop,h_1418,w_2269,x_910,y_388/c_scale,h_1418,w_2269/c_scale,f_auto,q_auto,w_1050/v1710139660/4KTH14N_000_33VB2WN_jpg
A technical issue on LATAM flight LA800 caused a severe jolt, injuring passengers, with one seriously hurt and 50 receiving medical care. The incident led to a canceled flight and an investigation into the cause.

Brits left baffled by Brexit's 'not for EU' food labels

https://www.politico.eu/cdn-cgi/image/width=1160,height=774,quality=80,onerror=redirect,format=auto/wp-content/uploads/2024/01/07/11652441-scaled.jpg
The U.K. Prime Minister reassures the Tory countryside base of support as EU export checks loom, potentially disrupting supply chains and increasing costs. Meanwhile, the new Foreign Secretary travels to Washington to affirm backing for Ukraine.

The Mad Stone, the One-Time 'Cure' for Rabies

https://img.atlasobscura.com/dDTTIh-OPiie77KKcqtKjNTIbZITxEUoM4mlivA4ekA/rt:fit/w:1280/q:81/sm:1/scp:1/ar:1/aHR0cHM6Ly9hdGxh/cy1kZXYuczMuYW1h/em9uYXdzLmNvbS91/cGxvYWRzL2Fzc2V0/cy9jMjcxYWVmMjZk/OTE1MDA5ZGNfTWFk/c3RvbmVzLWlpaWYt/c2VydmljZV9uZG5w/X2RsY19iYXRjaF9k/bGNfcHJvdG9zc192/ZXIwMV9kYXRhX3Nu/ODMwNDU0NjJfMDAy/ODA2NTYyODhfMTkw/ODA1MTAwMV8wNjY0/LTk3MXg2MjB4NDgw/NHg0NTcwLWZ1bGwt/MC1kZWZhdWx0Lmpw/Zw.jpg
In 1923 Missouri, Adam Rarely was bitten by a rabid dog and sought cure from Reverend Sutton's "mad stone," believed to extract rabies' poison. The stone's repeated application and the ritual's perceived success reflect historical rabies' fear and the allure of folk remedies.

The invention of blue and purple pigments in ancient times (2006)

https://pubs.rsc.org/image/article/2007/CS/b606268g/b606268g-p1.gif
The article reviews the synthesis and historical significance of ancient blue and purple pigments, focusing on Egyptian Blue and Han Blue/Purple, with a nod to the author's extensive background in inorganic chemistry and archaeometry. It explores the cultural and technological evolution of pigment use, highlighting the interplay between art and science throughout history.

Reddit: Return of the Junk Stock IPO

https://specials-images.forbesimg.com/imageserve/603f281bc532c64bd8404687/400x0.jpg?cropX1=0&cropX2=1080&cropY1=0&cropY2=1080
Reddit is expected to go public in March with a valuation of $5 billion, earning an Unattractive Stock Rating due to its high valuation and unprofitability. The company faces challenges in monetizing its user-generated content without alienating users, amidst concerns of overvaluation and potential addition to the Zombie Stock list.

Microplastics linked to heart attack, stroke and death

https://static.scientificamerican.com/dam/m/7e8ab03adaf319ed/original/GettyImages-1443472073.jpg?w=600
A study links microplastics in arteries to increased risk of heart attack, stroke, or death, with 60% of surgery patients found to have these particles. The findings prompt calls for more research, though causation isn't established.

Ex-workers at Temu owner PDD suffer surveillance and ruin over non-competes

The article offers complete digital access to FT journalism with the ability to cancel anytime, and discounts for upfront annual payments. It also includes the delivery of the print edition from Monday to Saturday.

See 'horned' comet 12P/Pons-Brooks in the night sky

https://mos.fie.futurecdn.net/uyhgawbmc02uaww6-16455340654394-250-80.png
To view comet 12P/Pons-Brooks, one needs binoculars or a telescope and a sky map; it's named after two famed comet hunters, Pons and Brooks. The comet, with a roughly 71-year orbit, has had historical naked-eye sightings and is known for unpredictable brightness outbursts.

Two years later, deep learning is still faced with the same basic challenges

Show HN: I made Vinlo – Spinning artwork video for your music

With Vinlo, you can create videos from your audio with a spinning art image you can share on social media like Tiktok, Instagram, Twitter and Facebook. Social media videos are muted by default and with a static background image, people might not click unmute to listen to your music. With a spinning vinyl image, you will increase chances of people listening to your music. For artists and aspirers.

Bython: Python with braces. Because Python is awesome, but whitespace is awful

https://pypi.org/static/images/twitter.abaf4b19.webp
Bython allows for flexible indentation in code and supports existing Python modules. It translates '.by' files to Python and requires Python installation to run.

Open-source Rust-based RAG

https://camo.githubusercontent.com/a84b002259589cf637313db6164a3c2e3f6e3dc2f73d73b1140b539c757d270c/68747470733a2f2f63646e2e7472696576652e61692f7472696576652d6c6f676f2e706e67
The article discusses a platform offering self-hosting with Docker and Terraform, semantic search integration, typo-tolerant search, UX enhancements, and various APIs for customization. It also provides instructions for setting up development tools like NodeJS, Yarn, Rust, Docker, and PostgreSQL.

Kate image withdrawn by three news agencies amid 'manipulation' concerns

https://ichef.bbci.co.uk/news/1024/branded_news/38AC/production/_132880541_1kensingtonpalace_mothersday2024.jpg
The Associated Press said it has noted "an inconsistency in the alignment" of Princess Charlotte’s hand.

Debugging a Golang Bug with Non-Blocking Reads

https://scratchdata.com/blog/go-nonblocking-pipes-bug/hero.png
The article discusses streaming data from databases using DuckDB and a named pipe, revealing a bug in Go's handling of pipe reads on Mac. A patch was quickly devised after the bug report, improving non-blocking IO operations.

EV Charging Points in America Are Finally Making Money

https://d32r1sh890xpii.cloudfront.net/news/718x300/2024-03-06_fn1xt6ph3c.jpg
Utilization rates at U.S. EV charging stations have significantly increased, making Level 3 chargers profitable in 19 states. Despite this profitability, the U.S. needs more infrastructure to meet the growing demand and ensure convenience.

Pirate IPTV Co. & Seven Workers Fined After Raids Eight Years Ago

https://torrentfreak.com/images/iptv2-s.png
The Provincial Court of Pontevedra fined Engel Systems SL and its staff for selling pirate IPTV services and devices, with the company receiving a 673,000 euro fine and a sales ban. Despite the large-scale illegal operation and subsequent law enforcement crackdown, no prison sentences were handed down.

The De-Google Project

https://www.tbray.org/ongoing/When/202x/2024/03/09/PXL_20240309_024054360.png
The author expresses discomfort with reliance on Big Tech, particularly Google, and outlines a "De-Google" project to systematically replace these services with alternatives, assessing each service's performance, cost, and privacy concerns. They highlight specific services and their potential replacements, emphasizing the desire for more privacy-respecting options.

The Surprising History of Claims for Life on the Sun (2011)

Darknet bazaar Incognito Market is extorting former users

https://media.infosec.exchange/infosec.exchange/media_attachments/files/112/077/454/264/943/786/original/f36654828eb66aba.png
Attached: 1 image If you bought or sold something on the darknet bazaar Incognito Market, you may be in for a surprise. Apparently Incognito is now extorting all of its former users, saying that depending on their vendor level, not having your info leaked could cost between $100 and $20,000.

The great American llama (and ostrich and emu) collapse

https://www.washingtonpost.com/wp-apps/imrs.php?src=https://s3.amazonaws.com/arc-authors/washpost/cda77d7b-b1d0-4b77-81e9-e8627fd1b7dd.png&w=196&h=196
The article discusses the significant decline in populations of exotic farm animals like emus, llamas, and ostriches over the past two decades, contrasting with the stable numbers of traditional livestock. It explores various factors contributing to this trend, including market speculation, changes in farm sizes, and shifts in agriculture and investment practices.

Global Population Crash Isn't Sci-Fi Anymore

https://assets.bwbx.io/images/users/iqjWHBFdfxIU/iDdISHx_Tsuo/v2/piUjdcePl62Og/160x160.jpg
Bloomberg connects decision makers with essential business and financial information. Literature's view of humanity's future has shifted from Asimov's populated universe to Liu's vulnerable Earth.

Linux 6.8 Is Announced

https://149366088.v2.pressablecdn.com/wp-content/uploads/2024/03/linux-kernel-6.8-released.jpg
The article discusses the release of Linux kernel 6.8, highlighting its inclusion in Ubuntu 24.04 LTS and various updates like Raspberry Pi 5 support and Intel CPU optimizations. It also mentions improvements in networking and hardware support, advising users to wait for official distribution updates.

SQLPage – Building a full web application with nothing but SQL queries [video]

The Eames Institute of Infinite Curiosity Now Open to the Public

https://image-cdn.hypb.st/https%3A%2F%2Fhypebeast.com%2Fimage%2F2024%2F03%2Fthe-eames-institute-of-infinite-curiosity-opens-1.jpg?cbr=1&q=90
Charles and Ray Eames' influence on modern creatives is showcased at The Eames Institute, housing over 40,000 artifacts, now open to the public. Their design philosophy emphasized experiential interactions, evident in their furniture and films.

You don't need a database, a queue, a distributed system: Go is enough

The author argues against overcomplicating initial software setups with scalability concerns, using their simple quiz game project, Binary Duel, as an example of starting small. They advocate letting scalability be a result of success rather than a barrier.

The heavy hand of God: Europe's brutalist churches – in pictures

https://i.guim.co.uk/img/media/169c882fe574798c7914b358d731b9cd6345ac03/0_0_1597_1278/master/1597.jpg?width=300&quality=85&auto=format&fit=max&s=b626d67a297697f79c565522786cda40
Vienna-based photographer Jamie McGregor Smith has spent years travelling the continent in search of sacred spaces that allowed architects’ imaginations to run wild

Is Delphi a Memory Safe Language?

https://i0.wp.com/blogs.embarcadero.com/wp-content/uploads/2024/03/Marco-Blog-Post-2-7502934.png?resize=1140%2C694&ssl=1
The US government's report advocates for the use of memory safe programming languages and highlights security in software development, with Delphi listed as a memory safe option despite discussions about its garbage collection. It also emphasizes the need for secure open-source ecosystems and advanced security techniques in response to vulnerabilities like Log4Shell.

JSON Canvas: an open file format for infinite canvas data

https://obsidian.md/images/blog/jsoncanvas.png
The Obsidian Canvas file format has been renamed to JSON Canvas, with resources and specifications available at jsoncanvas.org under the MIT license. It aims to ensure data ownership and interoperability for infinite canvas app users.

The Zayed Sustainability Prize has launched a US$600K award for Climate Action

https://media.wired.com/photos/65e9c20fa9a2124b2ddfe5fc/master/w_2560%2Cc_limit/off-grid-B&W.jpg
The Zayed Sustainability Prize, honoring UAE's founding father's legacy since 2008, rewards innovators tackling environmental and human development challenges. With a new Climate Action category, it supports impactful solutions, benefiting millions globally and highlighting the UAE's commitment to sustainability.

Ask HN: Which skills are least likely to be replaced by AI?

The article discusses the potential for AI to replace human skills, suggesting that no skill is safe from AI in the long term, including creativity, leadership, and critical thinking. It also highlights that some jobs like plumbing may remain more resistant to automation due to the unpredictability and complexity of the work environment.

Why and how to write things on the Internet

The article criticizes existing "why you should write a blog" articles for focusing on counterarguments and not providing practical advice, advocating for blogging as a means to enhance friendships, job opportunities, and personal growth. It offers concrete advice on starting a blog, emphasizing consistent writing, engaging topics, and learning from feedback to improve.

Spondylus

https://upload.wikimedia.org/wikipedia/commons/thumb/3/33/Spondylus.jpg/220px-Spondylus.jpg
Spondylus, known as spiny oysters, are bivalve molluscs not closely related to true oysters but share some habits like cementing to rocks. They have a rich history, used in art and trade across cultures, and vary in appearance with a ball-and-socket shell hinge.

Data Center Water Consumption: A Lack of Transparency (2021)

https://media.springernature.com/w215h120/springer-static/image/art%3A10.1038%2Fs41598-024-54033-9/MediaObjects/41598_2024_54033_Fig1_HTML.png
The article discusses the expected growth of the information communication technology sector and the associated increase in data centre water consumption, highlighting the lack of transparency and data on water efficiency. It also examines the environmental impact of data centres, including their indirect and direct water use, and the industry's efforts to reduce consumption.

Bring Back Private Offices, Part II

TikTok: Shareholders who make 'disparaging statements' will lose their holdings

https://content.fortune.com/wp-content/uploads/2024/03/GettyImages-1968516206-e1709936865742.jpg?w=1440&q=75
TikTok's shareholder agreement prohibits criticism, risking forfeiture of vested shares, a practice deemed unusual but legal unless it deters legitimate complaints to authorities. Ex-employee Ryan challenges this clause, alleging retaliation after being excluded from a stock buyback offer.

Review: Apple's efficient M3 MacBook Airs are just about as good as laptops get

https://cdn.arstechnica.net/wp-content/uploads/2024/03/IMG_1727-800x400.jpeg
The article suggests that the M3 MacBook Airs, while not as innovative in design as the M2 models, may be more significant due to their timing with the phasing out of Intel Macs. Despite familiar design elements, updates like a faster chip and new coating for the Midnight version make the M3 Airs potentially appealing upgrades.

What is remarkable about Germany is productivity: wealthiness vs. worktime

Something went wrong, but don’t fret — let’s give it another shot.

As Use of A.I. Soars, So Does the Energy and Water It Requires

https://e360.yale.edu/assets/site/_400x225_crop_center-center/Guian-Data-Center_Getty-2.jpg
OpenAI's ChatGPT reached 100 million users in two months, sparking a tech race in generative A.I., compared to major historical innovations. The environmental cost of A.I. is significant, prompting legislative action and standards for sustainable A.I. to address its carbon and water footprint.

How to know if a job makes a difference

Job seekers looking for impactful roles may find positions that seem promising but lack real influence due to inefficient organizations and meaningless tasks. The SELF framework helps evaluate a job's potential impact by considering problem significance, solution efficacy, role leverage, and personal fit.

Why does Rust choose not to provide `for` comprehensions?

https://cdn.sstatic.net/Img/teams/teams-illo-free-sidebar-promo.svg?v=47faa659a05e
The article discusses the challenges in Rust's design regarding list comprehensions and memory management, highlighting the language's focus on explicit control over memory allocation and lifetimes. It also explains that while list comprehensions are not incompatible with Rust, the complexity of memory and type control in the language makes their implementation non-trivial.

Is This 'Magic' Roundabout Made of 5 Mini-Roundabouts?

https://mediaproxy.snopes.com/width/600?url=https://media.snopes.com/2024/03/rounabout_twitter_post.png
The article confirms the authenticity of a complex intersection known as The Magic Roundabout in Swindon, UK, featuring five mini roundabouts. It's considered challenging yet successful, with relatively few accidents since its 1972 opening.

Latam Airlines: 12 treated in New Zealand after mid-air 'technical' issue

https://ichef.bbci.co.uk/news/1024/branded_news/11FBA/production/_132885637_gettyimages-1671786130.jpg
Passengers on the flight from Sydney to Auckland reported experiencing a "quick little drop".

Ask HN: Why is hosting a contact form so difficult?

The article expresses surprise at the profitability of selling seemingly trivial items like forms, despite the lack of straightforward options for creating a contact form on platforms like Github Pages. It criticizes the excessive features and high costs associated with "simple" form API services.

With Unusual Speed, Hong Kong Pushes Strict New Security Law

https://static01.nyt.com/images/2024/03/08/multimedia/08hongkong-security-gpwc/08hongkong-security-gpwc-articleLarge.jpg?quality=75&auto=webp&disable=upscale
Officials in Hong Kong hasten to pass a national security law, Article 23, which could lead to life sentences for political crimes. The law aims to quash dissent and is seen as Beijing's move to tighten control over the city.

Execute formulas stored in database fields with almost standard SQL

https://www.colbert.nl/wp-content/uploads/2024/01/cb_salesHigh.jpg
Colbert introduces a novel approach to integrating formula storage and execution within SQL databases, enhancing analytical capabilities while maintaining security and orthogonality. It allows for dynamic, type-checked formula fields that can be applied flexibly across different data sets and SQL statements.

98% GPU Utilization Achieved in 1k GPU-Scale AI Training Using Distributed Cache

https://static1.juicefs.com/images/640_Nag5g1l.2e16d0ba.fill-200x140.png
MLPerf introduced a Storage Benchmark for AI model training, with tests by JuiceFS showing over 97% GPU utilization, indicating high storage performance. JuiceFS's distributed cache system enhances scalability and I/O throughput, supporting large-scale AI training effectively.