latest news

in this website, we will provide you all new latest news

  • Home
  • Business
    • Internet
    • Market
    • Stock
  • Parent Category
    • Child Category 1
      • Sub Child Category 1
      • Sub Child Category 2
      • Sub Child Category 3
    • Child Category 2
    • Child Category 3
    • Child Category 4
  • Featured
  • Health
    • Childcare
    • Doctors
  • Home
  • Business
    • Internet
    • Market
    • Stock
  • Downloads
    • Dvd
    • Games
    • Software
      • Office
  • Parent Category
    • Child Category 1
      • Sub Child Category 1
      • Sub Child Category 2
      • Sub Child Category 3
    • Child Category 2
    • Child Category 3
    • Child Category 4
  • Featured
  • Health
    • Childcare
    • Doctors
  • Uncategorized

Tuesday, 28 July 2026

New top story on Hacker News: MCP 2026-07-28 Specification: transport going stateless

 Champ     12:21     Hacker News     No comments   

MCP 2026-07-28 Specification: transport going stateless
22 by Eldodi | 8 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

US walks out of UN Security Council meeting during France's remarks

 Champ     12:03     BBC News     No comments   

The row sparked after the US joined North Korea and Russia in voting against extending the term of the UN high commissioner for human rights.

from BBC News https://ift.tt/dCZItsh
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Monday, 27 July 2026

New top story on Hacker News: Tokio Gives Progress, Not Ordering: Scheduling 1M Tasks

 Champ     12:21     Hacker News     No comments   

Tokio Gives Progress, Not Ordering: Scheduling 1M Tasks
7 by pranitha_m | 0 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

France and Spain wildfire witnesses describe 'wall of flames', fear and stress

 Champ     12:03     BBC News     No comments   

Local and visitors tell the BBC of disbelief and anxiety as wildfires force more than 300,000 people to evacuate.

from BBC News https://ift.tt/WL7BHPI
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Sunday, 26 July 2026

New top story on Hacker News: Using ThinkPad T480 as a mobile phone

 Champ     12:21     Hacker News     No comments   

Using ThinkPad T480 as a mobile phone
9 by marosgrego | 4 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Saturday, 25 July 2026

New top story on Hacker News: Show HN: I made some transistor animations

 Champ     12:21     Hacker News     No comments   

Show HN: I made some transistor animations
27 by stunningllama | 2 comments on Hacker News.
Hi HN, I made some animations of the most important kinds of transistors using my semiconductor simulation, details of which are on the page. I tried to make the visuals as realistic as possible while also aiming for clarity. If you want to go beyond the charge carriers and look at, for example, the electric field, you can do so in the simulation software. The desktop software also has less common devices like IBGTs and SCRs that have similar animations. The last thread about my software was posted here about a year ago: https://ift.tt/tTBUm2O

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Friday, 24 July 2026

Nigeria's president approves largest military expansion in recent times

 Champ     12:03     BBC News     No comments   

The government is under intense pressure to tackle a slew of armed groups, many of whom attack civilians.

from BBC News https://ift.tt/6QnFUNd
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Thursday, 23 July 2026

New top story on Hacker News: Show HN: Trifle – Open-source analytics that stores answers, not events

 Champ     12:21     Hacker News     No comments   

Show HN: Trifle – Open-source analytics that stores answers, not events
7 by iluzone | 0 comments on Hacker News.
Trifle is an open-source time-series analytics library that aggregates nested counters instead of storing raw events. All in the database you already have. After rebuilding it twice over 10 years, it now tracks ~1B events a day at my day job. It started in 2015 as my own Rails APM. I plugged into ActiveSupport::Notifications, got a few small users, and one bigger one whose scraping app broke everything. That sparked the core idea: aggregate counters into pre-defined time buckets, so a single write increments multiple buckets at once. The APM eventually faded away without much traction. Later in 2021 I needed analytics at my day job. Instead of going for something out there I revised the idea of Trifle as a more generic analytics library, borrowing some data warehouse ideas. First used Redis, then Postgres, eventually MongoDB. Hence why Trifle::Stats comes with multiple drivers that keep the DSL unified while storage layer changes with your needs. In our case (huge write volume, some reads) PG read faster but slowed on large writes. The nested values are the whole trick here. Single: Trifle::Stats.track( key: 'requests::aws::s3_uploads', values: { count: 1, status: { request.response_code => 1 }, size: payload.bytes, duration: { sum: request.duration, count: 1 } } ) builds up counts for requests, success rate, result status codes, duration for multiple time buckets at once. Single bucket from 2am then looks like: { count: 14, status: { 200: 12, 500: 2 }, size: 5628341, duration: { sum: 43, count: 14 } } If request.duration is in seconds, then sum stored under duration would be in seconds as well. Success rate is never stored, but it is calculated by dividing 200s over total number of requests. Same with average duration: sum over count. You ask for a metrics key, granularity and timeframe and you get back aggregated values at each point. Ready for charts or to answer "Average response time over last 30 days". There's a Series wrapper for aggregating and formatting values for charts in a simple call. And as building dashboards is not as much fun for other devs as I thought, I built Trifle App - a visual layer with dashboards, scheduled digests and alerts. It's written in Elixir, so I ported the library to Elixir too. And later to Go for a CLI. All three are compatible, write in one and read in another. Today we track activity from over 100M background jobs a day which turns into about 1B events. It runs surprisingly cheap when you're willing to trade some safety away (turn off journaling and write concerns in Mongo). 3-node Hetzner MongoDB cluster where the primary does 20% utilization costs us around $1k/month. It has its limitations. Payloads can't hold tens of thousands of keys. Documents becomes too large to update efficiently. Some planning ahead is needed. And then there are no dimensions. Sometimes you can nest them (country - there are only so many countries), sometimes it's better to have dedicated metrics key per dimension (customer - growing forever). That multiplies tracked events, hence 1B events from 100M jobs. The libraries are MIT. The App is source-available under ELv2 - free to self-host and paid cloud if you want it managed. I build this on the side with no investor money to burn on a free service. Happy to answer anything about architecture, storage models, my failures or why I didn't give up on this yet.

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Canada's 'powerful' dairy sector is in Trump's trade crosshairs

 Champ     12:03     BBC News     No comments   

Canada's industry is in the spotlight after the US president singled it out as one of three main irritants used to justify new tariffs.

from BBC News https://ift.tt/6I5Xxos
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Wednesday, 22 July 2026

New top story on Hacker News: John C. Dvorak has died

 Champ     14:21     Hacker News     No comments   

John C. Dvorak has died
183 by coleca | 35 comments on Hacker News.
https://ift.tt/nuzYMcJ

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Watch: Louvre reopens gallery after jewellery heist

 Champ     14:03     BBC News     No comments   

The Louvre Museum reopens its Apollo Gallery nine months after a robbery that shocked France.

from BBC News https://ift.tt/owFxvjy
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: ICE shared Medicaid data it wasn't supposed to have with Palantir

 Champ     13:21     Hacker News     No comments   

ICE shared Medicaid data it wasn't supposed to have with Palantir
19 by Jimmc414 | 2 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Everyone Should Know SIMD

 Champ     12:21     Hacker News     No comments   

Everyone Should Know SIMD
18 by WadeGrimridge | 1 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Tuesday, 21 July 2026

New top story on Hacker News: Laguna S 2.1

 Champ     12:21     Hacker News     No comments   

Laguna S 2.1
40 by rexledesma | 3 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Monday, 20 July 2026

New top story on Hacker News: Agent swarms and the new model economics

 Champ     12:21     Hacker News     No comments   

Agent swarms and the new model economics
8 by jlaneve | 1 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

'If only people knew what a tick could do' - the deadly meat allergies caused by tick bites

 Champ     12:03     BBC News     No comments   

Mammalian meat allergy is a growing problem along Australia's east coast - and it's caused by tick bites.

from BBC News https://ift.tt/ct39TVU
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Sunday, 19 July 2026

New top story on Hacker News: Natural experiments prove phytoplankton carbon removal works

 Champ     13:21     Hacker News     No comments   

Natural experiments prove phytoplankton carbon removal works
11 by getnormality | 4 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Less Is More: Why Audio on SoundCloud Looks Different

 Champ     12:21     Hacker News     No comments   

Less Is More: Why Audio on SoundCloud Looks Different
13 by 1317 | 2 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Saturday, 18 July 2026

New top story on Hacker News: The Kimi K3 Moment

 Champ     12:21     Hacker News     No comments   

The Kimi K3 Moment
29 by sbochins | 15 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Trump threatens new Canada tariffs over fires sending 'filthy' air into US cities

 Champ     12:03     BBC News     No comments   

Canadian leader Mark Carney says both the US and Canada have an equal responsibility to fight climate change, which experts say are worsening wildfire conditions.

from BBC News https://ift.tt/7ZbljG9
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Friday, 17 July 2026

New top story on Hacker News: Homomorphically encrypted CIFAR-10 inference in 200ms

 Champ     12:21     Hacker News     No comments   

Homomorphically encrypted CIFAR-10 inference in 200ms
11 by j2kun | 8 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

More than 500 Rohingya vanished at sea - what happened?

 Champ     12:03     BBC News     No comments   

Two boats carrying an estimated 530 Rohingyas have disappeared since leaving Myanmar on 29 June.

from BBC News https://ift.tt/CNjwzQJ
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Thursday, 16 July 2026

New top story on Hacker News: Schema Harness Achieves ~99% on Arc‑AGI‑3 Public

 Champ     12:21     Hacker News     No comments   

Schema Harness Achieves ~99% on Arc‑AGI‑3 Public
34 by jasondavies | 7 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

At least one dead in Texas floods ravaging same area where campers died

 Champ     12:03     BBC News     No comments   

The same area devastated by floods last year - causing more than 130 deaths, including those at Camp Mystic - is once again being hit.

from BBC News https://ift.tt/D58Xw7F
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Wednesday, 15 July 2026

New top story on Hacker News: Duskers, the scary command line game, is getting a sequel

 Champ     13:21     Hacker News     No comments   

Duskers, the scary command line game, is getting a sequel
25 by spacemarine1 | 2 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Inkling: Our Open-Weights Model

 Champ     12:21     Hacker News     No comments   

Inkling: Our Open-Weights Model
74 by vimarsh6739 | 28 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

What if Bluey spoke one of the world's oldest living languages?

 Champ     12:03     BBC News     No comments   

Five episodes of the award-winning children’s cartoon have been released in Australian Indigenous language for the first time.

from BBC News https://ift.tt/Vf5FdrX
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Tuesday, 14 July 2026

New top story on Hacker News: Guardian Angels: LLM Personalization for Productivity and Security

 Champ     13:21     Hacker News     No comments   

Guardian Angels: LLM Personalization for Productivity and Security
4 by andsoitis | 0 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

How US commerce secretary's Epstein links were uncovered by British whistleblower

 Champ     13:03     BBC News     No comments   

Simon Andriesz made the discovery about Howard Lutnick in publicly released Epstein files.

from BBC News https://ift.tt/23nwp8O
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: IBM Stock has worst day

 Champ     12:21     Hacker News     No comments   

IBM Stock has worst day
30 by 1970-01-01 | 19 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Monday, 13 July 2026

Watch: Horses evacuated as fire approaches riding centre near Paris

 Champ     12:03     BBC News     No comments   

The Fontainebleau forest blaze, described by officials as of 'exceptional scale', continues to rage for the second day.

from BBC News https://ift.tt/yYS9Ozl
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Sunday, 12 July 2026

South Africa says more than 53,000 foreigners deported in migration campaign

 Champ     13:03     BBC News     No comments   

South Africa is cracking down on undocumented migrants following widespread anti-immigration protests.

from BBC News https://ift.tt/1Ucy6Sv
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Can We Understand How Large Language Models Reason?

 Champ     12:21     Hacker News     No comments   

Can We Understand How Large Language Models Reason?
13 by adunk | 3 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Saturday, 11 July 2026

New top story on Hacker News: UPI: Anatomy of a Payment Transaction

 Champ     12:21     Hacker News     No comments   

UPI: Anatomy of a Payment Transaction
14 by prtk25 | 3 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Show HN: Reame – a CPU inference server that gets faster as it runs

 Champ     12:21     Hacker News     No comments   

Show HN: Reame – a CPU inference server that gets faster as it runs
7 by targetbridge | 2 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

More than 40 kidnapped children and teachers freed after Nigerian army operation

 Champ     12:03     BBC News     No comments   

"I feel happy and elated… I feel joy," the head of the local teachers' union tells the BBC.

from BBC News https://ift.tt/e4b9WYp
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Friday, 10 July 2026

New top story on Hacker News: New York City to become first in US to ban deceptive subscription practices

 Champ     12:21     Hacker News     No comments   

New York City to become first in US to ban deceptive subscription practices
40 by randycupertino | 8 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Watch: What links a bomb in Monaco and a shooting in Ukraine?

 Champ     12:03     BBC News     No comments   

A Ukrainian intelligence agent who confessed to killing the woman suspected of trying to assassinate a multimillionaire in Monaco, has now claimed he did not pull the trigger.

from BBC News https://ift.tt/vfxNoFs
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Thursday, 9 July 2026

New top story on Hacker News: Show HN: Abralo – Free, easy way to run several Claude Code agents in one window

 Champ     13:21     Hacker News     No comments   

Show HN: Abralo – Free, easy way to run several Claude Code agents in one window
15 by cwbuilds | 4 comments on Hacker News.
Hi guys, I've been using Claude Code for almost everything lately. Have given one an email account so it can research business leads, draft emails, fact-check them and clear them with me before sending (works really well by the way). I also tend to have a few Claude Code agents running at any one time for coding. I used to create a split terminal to manage them from there, but found working in the terminal all day pretty depressing and, more importantly, found it hard to follow Claude Code's process and see which agents needed my immediate attention. I tried Anthropic's VS Code Claude Code extension and it had a great UI (more info on Claude Code's process and easier to read), but it crashed my PC when I ran more than 3 and I couldn't watch multiple agents in parallel (had to constantly switch between them). So I built a lightweight Tauri desktop app which lets you run multiple Claude Code agents in one window alongside each other. It's easier to read the output and see which agents need your attention than a terminal. Have been using this all day everyday instead of an IDE and have obsessed over every detail to make sure it's easy-to-use, but also lightweight and fast (so you can manage multiple agents without your PC crashing). There are some nice features like better usage alerts for when you're going to hit your 5-hour and weekly limits (with sparklines to show when usage peaked, and which agents are the most token-intensive). It's free to use (you just need to log in with your existing Claude Code account) for up to 4 agents simultaneously. This app doesn't store your Claude Code account details and doesn't store any of your interactions with Claude Code. They remain between you and Anthropic. It's compatible with Windows, MacOS and 64-bit Linux. Would really appreciate any feedback, so if you have any thoughts, issues or suggestions please let me know. Thanks, Chris

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: How to Start a Ruby Meetup

 Champ     12:21     Hacker News     No comments   

How to Start a Ruby Meetup
9 by mooreds | 0 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Wednesday, 8 July 2026

New top story on Hacker News: Cloudflare Drop

 Champ     13:21     Hacker News     No comments   

Cloudflare Drop
21 by coloneltcb | 8 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: A bug which affected only left handed users

 Champ     12:21     Hacker News     No comments   

A bug which affected only left handed users
7 by sixhobbits | 1 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Tuesday, 7 July 2026

New top story on Hacker News: A new runtime for k and q: l

 Champ     12:21     Hacker News     No comments   

A new runtime for k and q: l
28 by skruger | 6 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Watch: Moment rare tornado lashes central Chinese cities

 Champ     12:03     BBC News     No comments   

Videos shared with the BBC show debris flying through the air as the storm swept through Ezhou and Huanggang in Hubei province.

from BBC News https://ift.tt/1DOZW8B
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Monday, 6 July 2026

New top story on Hacker News: Orasort: 5x faster column-sorting with an expired patent from Oracle

 Champ     12:21     Hacker News     No comments   

Orasort: 5x faster column-sorting with an expired patent from Oracle
8 by theanonymousone | 1 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Sunday, 5 July 2026

New top story on Hacker News: Installing A/UX 1.1 like it's the 90s

 Champ     12:21     Hacker News     No comments   

Installing A/UX 1.1 like it's the 90s
8 by zdw | 0 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Emotion and politics merge in Tehran at funeral of former supreme leader

 Champ     12:03     BBC News     No comments   

The BBC's chief international correspondent Lyse Doucet is in Tehran, where funeral events are taking place in honour of Iran's former leader, Ayatollah Ali Khamenei.

from BBC News https://ift.tt/7w9Ubg0
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Saturday, 4 July 2026

New top story on Hacker News: Zig: All Package Management Functionality Moved from Compiler to Build System

 Champ     13:21     Hacker News     No comments   

Zig: All Package Management Functionality Moved from Compiler to Build System
23 by tosh | 1 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: EndBASIC 0.14: Are we multimedia yet?

 Champ     12:21     Hacker News     No comments   

EndBASIC 0.14: Are we multimedia yet?
5 by jmmv | 0 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Friday, 3 July 2026

New top story on Hacker News: Holes

 Champ     13:21     Hacker News     No comments   

Holes
50 by caminanteblanco | 6 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Instead of banning AI, I made a classroom contract with my students

 Champ     12:21     Hacker News     No comments   

Instead of banning AI, I made a classroom contract with my students
18 by digital55 | 1 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Thursday, 2 July 2026

New top story on Hacker News: Exapunks

 Champ     12:21     Hacker News     No comments   

Exapunks
33 by yu3zhou4 | 10 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

People smuggler convicted in France found by BBC living in UK and seeking asylum

 Champ     12:03     BBC News     No comments   

Once described as "the godfather" of French migrant camps, he has been working in a Leicestershire village.

from BBC News https://ift.tt/QpVxYwf
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Wednesday, 1 July 2026

New top story on Hacker News: A complete ClickHouse OLAP engine, compiled to WebAssembly

 Champ     12:21     Hacker News     No comments   

A complete ClickHouse OLAP engine, compiled to WebAssembly
18 by porridgeraisin | 0 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Fire kills five at Antwerp apartment block

 Champ     12:03     BBC News     No comments   

A man was seen clambering through a window to escape black smoke in the block where some 200 people live.

from BBC News https://ift.tt/cViIMnT
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Tuesday, 30 June 2026

Angry Venezuelans accuse government of negligence over earthquake response

 Champ     12:03     BBC News     No comments   

People in areas devastated by twin earthquakes say they need more support from the government.

from BBC News https://ift.tt/zAuNmqg
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Monday, 29 June 2026

New top story on Hacker News: The 80% Problem: The Last 20% Is Where the Engineer Used to Live

 Champ     12:21     Hacker News     No comments   

The 80% Problem: The Last 20% Is Where the Engineer Used to Live
15 by speckx | 8 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Desperate search for earthquake survivors continues outside Caracas

 Champ     12:03     BBC News     No comments   

The BBC's Will Grant reports on the efforts to dig out survivors in the port city of Catia la Mer.

from BBC News https://ift.tt/H8dSlwW
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Sunday, 28 June 2026

New top story on Hacker News: Semgrep: GLM 5.2 beats Claude in our Cyber Benchmarks

 Champ     13:21     Hacker News     No comments   

Semgrep: GLM 5.2 beats Claude in our Cyber Benchmarks
32 by jms703 | 7 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: The cost YAGNI was never about

 Champ     12:21     Hacker News     No comments   

The cost YAGNI was never about
28 by kiyanwang | 7 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Saturday, 27 June 2026

New top story on Hacker News: A History of Menus Is a Menu of History

 Champ     12:21     Hacker News     No comments   

A History of Menus Is a Menu of History
11 by surprisetalk | 2 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Watch: A race against the clock for Venezuela earthquake rescuers

 Champ     12:03     BBC News     No comments   

There is a sense that the next few hours will be critical for saving anyone who is still trapped, says the BBC's Dan Johnson reporting from the border of Venezuela and Columbia.

from BBC News https://ift.tt/H4qavcd
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Friday, 26 June 2026

New top story on Hacker News: What Is a Nomogram and Why Would It Interest Me?

 Champ     12:21     Hacker News     No comments   

What Is a Nomogram and Why Would It Interest Me?
12 by Eridanus2 | 4 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Debris falls after plane hits Beijing's tallest building

 Champ     12:03     BBC News     No comments   

Social media footage showed the moment debris from a small aircraft fell to the ground after a crash into Beijing's tallest skyscraper.

from BBC News https://ift.tt/izVEuWr
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Thursday, 25 June 2026

Oil price falls back to pre-Iran war levels

 Champ     13:03     BBC News     No comments   

Signs that traffic through the key Strait of Hormuz shipping route is gradually resuming has helped to push the oil price down.

from BBC News https://ift.tt/mt5O4px
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Show HN: OpenKnowledge – open source AI-first alternative to Obsidian/Notion

 Champ     12:21     Hacker News     No comments   

Show HN: OpenKnowledge – open source AI-first alternative to Obsidian/Notion
23 by engomez | 5 comments on Hacker News.
Hi HN, Nick here. We’re launching OpenKnowledge ( https://ift.tt/AmeXxbH ), a “what you see is what you get” markdown editor that has direct integrations with Claude, Codex, and Cursor. Available as MacOS app or CLI. Fully free/local and OSS ( https://ift.tt/C8gV4qF ). We built this because we wanted a “Google docs” like experience for writing and sharing markdown files across our team. Obsidian is the best alternative we tried, but found it doesn’t have a true “what you see is what you get” UI and it didn’t integrate well with Claude/Codex outside of community plugins. So we built OpenKnowledge. It takes shape as: 1. A MacOS app with a file navigator, the WYSIWYG editor, and link explorer. 2. Integrations with the Claude, Codex, and Cursor desktop apps. The agents can open an OpenKnowledge editor within their embedded web browsers for a side-by-side experience. 3. Built-in mcps, skills, and RAG for LLM-wiki and “AI Second Brain” scenarios + spec writing 4. An embedded terminal and CLI for TUI-first users OSS stack includes: Tiptap/prosemirror, CodeMirror, yjs (CRDT), Electron (MacOS app), Orama, remark/rehype/micromark/mdast, @pierre/trees On the architecture side, the interesting eng. challenges included: 1. A pipeline to convert ProseMirror to markdown in a bidirectional lossless way. ProseMirror uses ASTs, which are not designed to have byte-fidelity. 2. A dual-observer CRDT to keep the ProseMirror and markdown state in-sync. The CRDT + git also power a collaborative experience that shows what Agents are doing in the markdown, have undo/redo, and version history. The “Share” and cloud-sync functionality are geared for team collaboration. They feel “no-code” but leverage git/GitHub under the hood, which also means data stays fully private. In that spirit, we made OpenKnowledge open source for anybody who’s curious or who’d like to contribute. We’re actively thinking about plugins/extensibility and what’s next. If you have suggestions or feedback, would love to hear it.

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Wednesday, 24 June 2026

New top story on Hacker News: Show HN: LookAway, a Mac break reminder that knows when not to interrupt

 Champ     13:21     Hacker News     No comments   

Show HN: LookAway, a Mac break reminder that knows when not to interrupt
10 by _kush | 0 comments on Hacker News.
Hello, I'm Kushagra and I am the indie developer behind LookAway (I've posted about it earlier but it has received quite a lot of updates since the last time so I am posting it again). LookAway is a native break reminder for macOS that doesn't interrupt. I built it because I work from home and I spend a lot of time in front of my screens. It's very easy for me to get lost in the flow and I can end up sitting for hours. Due to this, I started facing issues like eye strain and back pain by the end of the day. The solution to this was simply taking enough breaks throughout the day. But remembering to take breaks was difficult, especially when I was in the flow. I tried some reminder apps but the problem with those was that they always interrupted me at the worst moments. So I ended up not using them. LookAway is designed not to interrupt. It gives enough heads up before a break so that you're not caught off-guard. It's also context-aware and it automatically pauses when you go into a meeting, start watching a video, record screen, and much more. It even waits for you to finish typing or dictating when a break is due. One thing worth mentioning is the free iOS counterpart LookAway Mirror. When your Mac goes on a break, your iOS devices can also mirror the same break so you don't end up scrolling your phone screen during the Mac break. I've spent a lot of time in making LookAway the least annoying break reminder app and I would love to know your thoughts. It's a native Swift app so it doesn't take much resources (150MB RAM and <1% CPU when idle). It's available to download from the website (lookaway.com), Setapp, and the App Store. Thank you!

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Tuesday, 23 June 2026

New top story on Hacker News: The worthlessness of Vitamin D is mildly exaggerated

 Champ     12:21     Hacker News     No comments   

The worthlessness of Vitamin D is mildly exaggerated
16 by surprisetalk | 0 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Monday, 22 June 2026

New top story on Hacker News: Linux and Secure Boot certificate expiration (2025)

 Champ     13:21     Hacker News     No comments   

Linux and Secure Boot certificate expiration (2025)
40 by weaksauce | 13 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Sunday, 21 June 2026

New top story on Hacker News: Show HN: Teach your kids perfect pitch

 Champ     15:21     Hacker News     No comments   

Show HN: Teach your kids perfect pitch
20 by paytonjjones | 10 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Ask for no, don't ask for yes (2022)

 Champ     14:21     Hacker News     No comments   

Ask for no, don't ask for yes (2022)
24 by skogstokig | 2 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Show HN: CleverCrow: give tokens to your favorite projects

 Champ     13:21     Hacker News     No comments   

Show HN: CleverCrow: give tokens to your favorite projects
12 by zhubert | 3 comments on Hacker News.
Howdy all. I'm Zack :wave:. I've been thinking about the problem of misguided AI pull requests and figured I'd throw a possible solution out there for feedback. Basically, CleverCrow lets supporters give tokens to a GitHub repo (or set of issues in that repo) for the maintainers to use to build/fix stuff. The fun implementation challenges have been around implementing the pooling dynamics and keeping the maintainers in charge while the backers are motivated to support their work.

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: JSON-LD Explained for Personal Websites

 Champ     12:21     Hacker News     No comments   

JSON-LD Explained for Personal Websites
4 by ethanhawksley | 0 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Saturday, 20 June 2026

New top story on Hacker News: Show HN: Make PDFs look scanned (CLI or in the browser via WASM)

 Champ     13:21     Hacker News     No comments   

Show HN: Make PDFs look scanned (CLI or in the browser via WASM)
23 by overflowy | 12 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Why has the pointe shoe been so resistant to change?

 Champ     12:21     Hacker News     No comments   

Why has the pointe shoe been so resistant to change?
16 by onemind | 6 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Friday, 19 June 2026

Would you choose to take a 22-hour non-stop flight?

 Champ     12:03     BBC News     No comments   

The BBC asked Sydney locals if they would take the newly announced, longest ever commercial flight from Sydney to London.

from BBC News https://ift.tt/nuHA6Dq
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Thursday, 18 June 2026

New top story on Hacker News: Agentic Resource Discovery Specification

 Champ     12:21     Hacker News     No comments   

Agentic Resource Discovery Specification
2 by damick | 0 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

British man dies in paragliding accident in Spain

 Champ     12:03     BBC News     No comments   

Authorities in Catalonia confirmed that the 63-year-old died in the Palau de Noguera area on Wednesday.

from BBC News https://ift.tt/i4n0v7x
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Wednesday, 17 June 2026

New top story on Hacker News: The hacker sent by Anthropic to calm the government's nerves about AI safety

 Champ     13:21     Hacker News     No comments   

The hacker sent by Anthropic to calm the government's nerves about AI safety
52 by Brajeshwar | 36 comments on Hacker News.
Readable: https://ift.tt/HecrdKk...

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Israel launches fresh strikes on Lebanon despite Trump criticism

 Champ     13:03     BBC News     No comments   

Speaking on Tuesday, Trump said Israel's PM Benjamin Netanyahu needed "to be more responsible with respect to Lebanon".

from BBC News https://ift.tt/FnxCQ1o
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Tuesday, 16 June 2026

New top story on Hacker News: Has AI already killed self-help nonfiction books?

 Champ     12:21     Hacker News     No comments   

Has AI already killed self-help nonfiction books?
20 by imakwana | 17 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Venezuela signs deal with US energy giant to rebuild power grid

 Champ     12:03     BBC News     No comments   

The deal with General Electric is the latest sign of co-operation between US firms and Venezuela's interim government.

from BBC News https://ift.tt/xctnQVa
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Monday, 15 June 2026

New top story on Hacker News: Typst 0.15.0

 Champ     12:21     Hacker News     No comments   

Typst 0.15.0
94 by schu | 14 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Iran deal presents political nightmare for Netanyahu

 Champ     12:03     BBC News     No comments   

Donald Trump's ceasefire agreement with Iran leaves the Israeli PM trapped in a new political and security dilemma.

from BBC News https://ift.tt/MPUhLTd
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Sunday, 14 June 2026

New top story on Hacker News: Show HN: Trace – Offline Mac meeting transcripts you can flag mid-call

 Champ     13:21     Hacker News     No comments   

Show HN: Trace – Offline Mac meeting transcripts you can flag mid-call
8 by AG342 | 2 comments on Hacker News.
I'm the developer of Trace, a non-intrusive, shortcut-driven Mac app that records and transcribes your meetings on-device. I know, another meeting transcription app. Please bear with me though, I'm confident that this is at least a little novel. I primarily built Trace for myself. I'd been using MacWhisper, but there was enough fiddling before each call that I'd forget to start it and walk out of an hour-long meeting with nothing written down. So the things I cared about most were that it's quick to activate and stays out of the way. You activate Trace by pressing a global shortcut (configurable), which reveals a small bar at the bottom of your screen (there's also a keystroke and/or option to hide it entirely if you'd rather not see it at all). As I was building it I wanted to bake in a couple of workflows I'd wished for in other transcription apps. 1. Mid-meeting you can press another global shortcut to mark a "key moment" and type a note. The note shows up in the resulting transcript inline at that timestamp. I wanted to add this because I kept catching myself thinking "wait, that bit matters" in meetings and reaching to jot it down in a separate app like Obsidian, which I then needed to add context to, which took me out of the meeting. I use it all the time. If I paste the transcript into an LLM afterwards (which I find myself doing more and more these days) the important moments are flagged so it doesn't gloss over them. This is more noticeable in longer meetings with lots of topics. 2. With another keyboard shortcut you can summon a rough live recap (subtitles, basically) to quickly recap what's just been said. Trace uses standard macOS microphone and system recording APIs to capture both sides of the conversation as two separate tracks and then runs the system side through on-device diarization to identify speakers. Right now we only label them as "Speaker 1", "Speaker 2", etc but there are plans for speaker labelling in the future. You can also show a "live recap" as the call is happening to review what someone just said. All transcription models run on your machine. To be clear though, Trace doesn't do any of the summarising itself, it just produces a markdown transcript, so if you want summaries then you need to pass the output to an AI. The app is sandboxed and your audio/transcripts are never uploaded anywhere - they just exist as audio files and markdown on disk. The only network call Trace is required to make is on the first run to download the speech and speaker models (around 500MB) from Hugging Face, and after that it can be used fully offline. If enabled, a Google Calendar integration can auto-name sessions but that needs a network connection. The app is £9.99 on the macOS App Store. I've been using it every day for months now and I'm super happy with how it's improved my workflow. Feedback very welcome.

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Rome Fell and Nobody Noticed

 Champ     12:21     Hacker News     No comments   

Rome Fell and Nobody Noticed
32 by fkozlowski | 1 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Saturday, 13 June 2026

New top story on Hacker News: Codex for open source

 Champ     13:21     Hacker News     No comments   

Codex for open source
56 by EvgeniyZh | 1 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: GameBoy Workboy

 Champ     12:21     Hacker News     No comments   

GameBoy Workboy
41 by tosh | 6 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

US-Iran deal scheduled to be signed on Sunday, says Trump

 Champ     12:03     BBC News     No comments   

Before the US president's comments, Iran expressed caution about the exact timing.

from BBC News https://ift.tt/MFY1tUO
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Friday, 12 June 2026

New top story on Hacker News: You can power on a Mac remotely

 Champ     14:21     Hacker News     No comments   

You can power on a Mac remotely
27 by speckx | 14 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Cosmodial Sky Atlas

 Champ     12:21     Hacker News     No comments   

Cosmodial Sky Atlas
8 by memalign | 1 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Thursday, 11 June 2026

New top story on Hacker News: Show HN: I built a Red Flag Warning zone-check tool for the East Bay in 48h

 Champ     13:21     Hacker News     No comments   

Show HN: I built a Red Flag Warning zone-check tool for the East Bay in 48h
6 by vedant28t | 0 comments on Hacker News.
Hey HN. I'm a high schooler in Fremont, CA. Tuesday morning I got a county-wide AC Alert text telling everyone in Alameda County to prepare a go-bag for an East Bay Hills Red Flag Warning that starts tonight at 11 PM. The text went to ~half a million phones. The actual NWS warning polygon only covers East Bay Hills (NWS zone CAZ515). Most people who got the text don't need a go-bag tonight. Some in the hills don't realize how close they are. So I built this tool - https://ift.tt/7HilePt mit licensed public github - https://ift.tt/0wZW2U3 It does a few things - tells people if they are in the flagged zone, and also provides a way to check if a buddy is in flagged zone and send them a text. Everything without installing an app. I heard back from Oakland Firesafe Council director about a gap in my understanding (and the tool). To my surprise, and through feedback, I realized that you cannot assume that only the flagged area is at risk. Adjacent areas are at risk too! Fires do not follow zone boundaries! I fixed the tool. I built this in 48 hours to close that specific gap: type your address, get a yes/no on whether the NWS polygon covers it, your Genasys evacuation zone, tonight's wind + humidity at your point, a plain-English action checklist, a per-school decision view for East Bay districts, and a one-tap iMessage buddy-check template for a hill-neighbor at 10:30 PM.

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

World Cup kicks off in Mexico with Shakira, local performers and vibrant fans

 Champ     13:03     BBC News     No comments   

A star-studded opening ceremony featured artists from the World Cup's official soundtrack.

from BBC News https://ift.tt/OzW9es5
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Claude Fable 5: mid-tier results on coding tasks

 Champ     12:21     Hacker News     No comments   

Claude Fable 5: mid-tier results on coding tasks
18 by bugvader | 1 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Wednesday, 10 June 2026

New top story on Hacker News: L'Affaire Siloxane

 Champ     12:21     Hacker News     No comments   

L'Affaire Siloxane
27 by idlewords | 2 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Whale graveyard dating back five million years discovered

 Champ     12:03     BBC News     No comments   

The Indian Ocean site is "far beyond anything we had imagined", one researcher says.

from BBC News https://ift.tt/OYGCejX
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Tuesday, 9 June 2026

Does referee case show Fifa has lost control of its own World Cup?

 Champ     13:03     BBC News     No comments   

With referee Omar Artan denied entry to the United States and worries over staff and supporters being turned back, what does this tell us about the World Cup?

from BBC News https://ift.tt/Mv6QunI
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: What it feels like to work with Mythos

 Champ     12:21     Hacker News     No comments   

What it feels like to work with Mythos
29 by swolpers | 20 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Monday, 8 June 2026

New top story on Hacker News: EU-banned pesticides found in rice, tea and spices

 Champ     12:21     Hacker News     No comments   

EU-banned pesticides found in rice, tea and spices
28 by john-titor | 14 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Sunday, 7 June 2026

New top story on Hacker News: sqlite: A CGo-free port of SQLite/SQLite3

 Champ     12:21     Hacker News     No comments   

sqlite: A CGo-free port of SQLite/SQLite3
18 by tosh | 3 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Mexicans chase a world record wave - but is the trend even Mexican?

 Champ     12:03     BBC News     No comments   

Thousands lined the streets in Mexico City on Saturday as they attempted to set the world record for largest human wave.

from BBC News https://ift.tt/X2FPcpn
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Saturday, 6 June 2026

Armenia braces for election as Russia piles pressure on pro-West government

 Champ     13:03     BBC News     No comments   

Incumbent Prime Minister Nikol Pashinyan is seeking a third term despite falling domestic support.

from BBC News https://ift.tt/n1ME3SC
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Pentagon raised threat of Israeli spying on U.S. to highest level, sources say

 Champ     12:21     Hacker News     No comments   

Pentagon raised threat of Israeli spying on U.S. to highest level, sources say
80 by MilnerRoute | 8 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Friday, 5 June 2026

New top story on Hacker News: Inside FAISS: Billion-Scale Similarity Search

 Champ     12:21     Hacker News     No comments   

Inside FAISS: Billion-Scale Similarity Search
12 by tohms | 0 comments on Hacker News.
Author here. I wrote this as a visual companion to the 2017 FAISS paper ( https://ift.tt/8O0McJd ), focused on the parts I found hardest to grok from text alone. The article covers a subset of what FAISS does, with the paper as the source of truth. NSG, FastScan, IMI are not covered here, they'll get their own articles. I'd be especially interested in feedback on: - the IVFPQ / IVFADC explanation, particularly the LUT reuse argument - whether the GPU part captures enough of the actual complexity Happy to answer questions.

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Norway's crown princess on lung transplant waiting list, palace says

 Champ     12:03     BBC News     No comments   

Mette-Marit's condition, which stiffens the lungs, making it hard to breathe, has deteriorated, the royal household says.

from BBC News https://ift.tt/CEgYluV
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Thursday, 4 June 2026

Missing Sherpa guide found on Mount Everest after 'miracle' self-rescue

 Champ     13:03     BBC News     No comments   

Cleaners found Dawa Sherpa crawling towards Base Camp six days after he went missing at a higher altitude.

from BBC News https://ift.tt/ma8XieV
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Show HN: Cost.dev (YC W21) – making agents cost-aware and cheaper to call

 Champ     12:21     Hacker News     No comments   

Show HN: Cost.dev (YC W21) – making agents cost-aware and cheaper to call
7 by akh | 1 comments on Hacker News.
We launched Infracost on HN five years ago ( https://ift.tt/VK2Q6zn ) where our CLI generated cost estimates for infra-as-code, e.g. "this Terraform PR adds $400/mo". The idea was to shift cloud costs (FinOps) left, so engineers get visibility of costs before deployment and make better decisions. Earlier this year we started seeing agent traffic in our logs and it looked like coding agents were calling our CLI. But that CLI wasn't designed with coding agents in mind. We went down a philosophical rabbit hole to see if a CLI is even needed anymore given that Claude, Copilot et al. already follow best practices. Ultimately we decided to create a new CLI from the ground up with coding agents in mind for two reasons: 1. We optimized the CLI for agent callers and cut Claude's output token usage by up to 79% and API cost by up to 67% versus a bare-Claude baseline. We wrote a blog documenting our lessons on optimizing user token usage when designing a CLI, e.g. using predicate flags so the agent doesn't compose jq | python | wc pipelines, output format that strips JSON's redundant field names. The blog is here: https://ift.tt/wrDE6AL... 2. With cloud costs, precision matters. Telling a coding agent "make this Terraform cost-optimized" can be expensive and lossy. You burn tokens loading code and policy context into every conversation. Your agent could make up a price and you wouldn't know because it's difficult to verify that across the ~10M price points that AWS, Azure and Google have. The CLI runs static analysis on the code, uses the latest prices from cloud vendors, and passes that context to the coding agent. So that's what we're launching today - Cost.dev: https://cost.dev/ . - It runs locally. Your code never leaves your machine, you get a fast feedback loop, and you're not burning API calls per character when you want to fetch prices. - The CLI does the deterministic work. Fetching price points, scanning the code, validating fixes. The coding agent does the natural-language part. You don't have to trust the LLM to remember the rules, and can verify it called the right CLI command. - It provides a consistent rule layer across every tool you use. Get cost estimates in your IDE and your coding agent with a single install. We support Claude Code, GitHub Copilot, Cursor, Windsurf, OpenAI Codex, Gemini CLI, as well as IDEs like VS Code and JetBrains Before we keep building more in that direction, I want to sanity-check with HN: is "agents writing IaC in prod" actually a thing yet, or am I betting on a future that's still a year out? I know software developers are using coding agents heavily, but are platform/infra folks doing that for prod too? Also, if you have any feedback on Cost.dev, I'd love to hear it!

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Wednesday, 3 June 2026

From butterflies to breast milk, Uber's list of lost items reveals wild backseat discoveries

 Champ     12:03     BBC News     No comments   

The rideshare company's annual Lost & Found Index also reveals America's most forgetful city, and the most forgetful day.

from BBC News https://ift.tt/lcXsDhL
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Tuesday, 2 June 2026

New top story on Hacker News: On the nature of autobiographical memory

 Champ     12:21     Hacker News     No comments   

On the nature of autobiographical memory
12 by prismatic | 2 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Monday, 1 June 2026

Iran attacks damage 20 US military sites since start of war, satellite images show

 Champ     12:03     BBC News     No comments   

Analysts told BBC Verify that Tehran's strikes were more extensive than publicly acknowledged.

from BBC News https://ift.tt/xlImij9
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Sunday, 31 May 2026

New top story on Hacker News: Re: [PATCH] OOM_pardon, a.k.a. don't kill my xlock

 Champ     12:21     Hacker News     No comments   

Re: [PATCH] OOM_pardon, a.k.a. don't kill my xlock
17 by luu | 8 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Brazil monitors two patients for possible Ebola infection

 Champ     12:03     BBC News     No comments   

If confirmed, they would be the first infection cases outside Africa, since the outbreak began in DR Congo.

from BBC News https://ift.tt/wtK8d7f
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Saturday, 30 May 2026

New top story on Hacker News: Let's talk about EU Sovereignty (2025)

 Champ     12:21     Hacker News     No comments   

Let's talk about EU Sovereignty (2025)
22 by mooreds | 15 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Trump attacks artists dropping out of US Freedom 250 concert and mulls appearing himself

 Champ     12:03     BBC News     No comments   

Performers Young MC, Poison frontman Bret Michaels and country singer Martina McBride raised concerns the event will be political.

from BBC News https://ift.tt/kcg4ovD
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Friday, 29 May 2026

New top story on Hacker News: Liquid AI reveals 8B-A1B MoE trained on 38T

 Champ     12:21     Hacker News     No comments   

Liquid AI reveals 8B-A1B MoE trained on 38T
26 by simjnd | 0 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Thursday, 28 May 2026

New top story on Hacker News: Legislation Killed Would Have Effectively Blocked Police LPR, Including Flock

 Champ     12:21     Hacker News     No comments   

Legislation Killed Would Have Effectively Blocked Police LPR, Including Flock
31 by jhonovich | 12 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Wednesday, 27 May 2026

New top story on Hacker News: What Apple and Google are doing to your push notifications

 Champ     13:21     Hacker News     No comments   

What Apple and Google are doing to your push notifications
42 by iamacyborg | 24 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Stress disrupts hippocampal integration of overlapping events, memory inference

 Champ     12:21     Hacker News     No comments   

Stress disrupts hippocampal integration of overlapping events, memory inference
9 by gmays | 0 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Tuesday, 26 May 2026

New top story on Hacker News: Stack Overflow’s forum is dead but the company’s still kicking

 Champ     12:21     Hacker News     No comments   

Stack Overflow’s forum is dead but the company’s still kicking
72 by geerlingguy | 100 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Osaka sparkles in golden French Open outfit

 Champ     12:03     BBC News     No comments   

Naomi Osaka continues her tradition of serving jaw-dropping looks at Grand Slams with an outfit that reminds her of "the Eiffel tower at night".

from BBC News https://ift.tt/bT7uU81
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Monday, 25 May 2026

New top story on Hacker News: Exit IP VPN servers mitigation rollout

 Champ     12:21     Hacker News     No comments   

Exit IP VPN servers mitigation rollout
59 by Cider9986 | 9 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Watch: Only world record broken at Enhanced Games won't be recognised

 Champ     12:03     BBC News     No comments   

The BBC's Shaimaa Khalil explains why the achievement by Greek swimmer Kristian Gkolomeev will not be accepted by official sporting bodies.

from BBC News https://ift.tt/kn0AYWp
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Sunday, 24 May 2026

New top story on Hacker News: Australia Four-Day Work Week Study Data Shows Boosted Productivity

 Champ     13:21     Hacker News     No comments   

Australia Four-Day Work Week Study Data Shows Boosted Productivity
8 by randycupertino | 0 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Trump tells US negotiators 'not to rush' into deal with Iran

 Champ     13:03     BBC News     No comments   

The deal under discussion would involve a 60-day ceasefire extension during which the Strait of Hormuz would be reopened, according to US media.

from BBC News https://ift.tt/WdOgNP7
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Don't know where your data is from? Bayesian modeling for unknown coordinates

 Champ     12:21     Hacker News     No comments   

Don't know where your data is from? Bayesian modeling for unknown coordinates
4 by ckrapu | 0 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Saturday, 23 May 2026

Race for French presidency sees ex-PM Philippe as early favourite to beat populists

 Champ     13:03     BBC News     No comments   

Latest polls suggest the centre-right figure is the only candidate who can defeat Marine Le Pen or Jean-Luc Mélenchon.

from BBC News https://ift.tt/wrq4ELH
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Green card seekers must leave U.S. to apply, Trump administration says

 Champ     12:21     Hacker News     No comments   

Green card seekers must leave U.S. to apply, Trump administration says
110 by tlhunter | 403 comments on Hacker News.
https://ift.tt/1qITvZ9... https://ift.tt/BqHXuJ7... [pdf] https://twitter.com/DHSgov/status/2057817233200418837 , https://ift.tt/eIiXgKP https://ift.tt/XmMjWnK https://ift.tt/vKRS9ht... , https://ift.tt/31Xib46

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Friday, 22 May 2026

'No means no': Greenlanders protest against Trump outside new US consulate

 Champ     12:03     BBC News     No comments   

The inauguration of the new consulate comes amid a push by the US president for greater control over the island.

from BBC News https://ift.tt/RaTKlBc
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Thursday, 21 May 2026

New top story on Hacker News: Spotify will start reserving concert tickets for fans

 Champ     12:21     Hacker News     No comments   

Spotify will start reserving concert tickets for fans
28 by elffjs | 35 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Charges dismissed against official at school where six-year-old shot teacher

 Champ     12:03     BBC News     No comments   

The child fired a single shot at a teacher, who had to have surgery after the incident in 2023.

from BBC News https://ift.tt/y9DS0kZ
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Wednesday, 20 May 2026

New top story on Hacker News: Why is Inkwell stuck in review

 Champ     12:21     Hacker News     No comments   

Why is Inkwell stuck in review
18 by speckx | 5 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Tuesday, 19 May 2026

Uncontrolled California wildfires seen from space

 Champ     12:03     BBC News     No comments   

Some 750 firefighters are tackling the uncontrolled blazes supported by water-dropping helicopters.

from BBC News https://ift.tt/o4IHKWr
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Monday, 18 May 2026

New top story on Hacker News: I 3D Printed Origami [video]

 Champ     12:21     Hacker News     No comments   

I 3D Printed Origami [video]
19 by Teever | 4 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Former Google CEO Eric Schmidt booed by graduates at mention of AI

 Champ     12:03     BBC News     No comments   

The reaction underscores a growing anxiety among students over AI's impact on jobs and their future careers.

from BBC News https://ift.tt/JtxUkni
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Judge rules gun and writings are admissible in Luigi Mangione's New York murder trial

 Champ     12:03     BBC News     No comments   

Other items found with Mangione at a Pennsylvania McDonald's will not be allowed to be presented in court, the judge ruled.

from BBC News https://ift.tt/I205Gxr
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Sunday, 17 May 2026

New top story on Hacker News: Schanuel's Conjecture and the Semantics of Triton's FPSan

 Champ     12:21     Hacker News     No comments   

Schanuel's Conjecture and the Semantics of Triton's FPSan
7 by c1ccccc1 | 1 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Saturday, 16 May 2026

New top story on Hacker News: Show HN: Daily vibe-coding video games, day 33: Tower Defense (single prompt)

 Champ     13:21     Hacker News     No comments   

Show HN: Daily vibe-coding video games, day 33: Tower Defense (single prompt)
6 by pzxc | 0 comments on Hacker News.
I'm using AI (mostly Claude) to create/publish a new video game every day This is day 33, first stab at the tower defense genre. Most of the games (including this one) I build with a single prompt. Rarely, a couple extra prompts are needed for bug fixes or to tweak the physics/UI. Extremely rarely, the AI has difficulty making the game work right (usually drawing it) and it takes a dozen or more prompts -- but the majority of the time, it gets everything right and makes a fully playable game first try Happy to answer any questions, just a little hobby project of mine I'm having lots of fun with :)

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Man killed by 13ft shark in Western Australia

 Champ     13:03     BBC News     No comments   

The attack occurred at Horseshoe Reef - north-west of the popular Rottnest Island near the city of Perth, local police say.

from BBC News https://ift.tt/mikF1xa
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: US Is Starting to See Heavy Job Losses in Roles Exposed to AI

 Champ     12:21     Hacker News     No comments   

US Is Starting to See Heavy Job Losses in Roles Exposed to AI
59 by elsewhen | 44 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Friday, 15 May 2026

New top story on Hacker News: Waymo recalls 3,800 robotaxis after they drive into flood waters

 Champ     12:21     Hacker News     No comments   

Waymo recalls 3,800 robotaxis after they drive into flood waters
37 by drob518 | 39 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

US to seek death penalty for suspect in killing of Israeli embassy staff members

 Champ     12:03     BBC News     No comments   

The US government alleges that Elias Rodriguez shot and killed a young Jewish couple at an event in Washington last May.

from BBC News https://ift.tt/K3AXvLV
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Thursday, 14 May 2026

New top story on Hacker News: What's in a GGUF, besides the weights – and what's still missing?

 Champ     12:21     Hacker News     No comments   

What's in a GGUF, besides the weights – and what's still missing?
19 by bashbjorn | 9 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Wednesday, 13 May 2026

New top story on Hacker News: ReactOS

 Champ     13:21     Hacker News     No comments   

ReactOS
16 by DeathArrow | 2 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: GitHub Actions issued GitHub_TOKEN disclosure in GitHub Actions logs

 Champ     12:21     Hacker News     No comments   

GitHub Actions issued GitHub_TOKEN disclosure in GitHub Actions logs
8 by damienwebdev | 1 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Tuesday, 12 May 2026

New top story on Hacker News: SQL: Incorrect by Construction

 Champ     13:21     Hacker News     No comments   

SQL: Incorrect by Construction
8 by ingve | 1 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Quack: The DuckDB Client-Server Protocol

 Champ     12:21     Hacker News     No comments   

Quack: The DuckDB Client-Server Protocol
13 by aduffy | 0 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Monday, 11 May 2026

Trump calls Iran response to US proposal to end war 'totally unacceptable'

 Champ     12:03     BBC News     No comments   

Iran is reported to want lifting of the US naval blockade, recognition of Iranian sovereignty over the Strait of Hormuz and compensation for war damage.

from BBC News https://ift.tt/1wARWyh
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Sunday, 10 May 2026

How hotels are stopping the 'dawn dash' for sunbeds after man wins payout

 Champ     14:03     BBC News     No comments   

Some resorts enforce allocation rules from check-in to prevent people reserving loungers with towels in the "sunbed wars".

from BBC News https://ift.tt/bUd9weC
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: YC's Biggest Scandals

 Champ     13:21     Hacker News     No comments   

YC's Biggest Scandals
58 by laserduck | 13 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Saturday, 9 May 2026

UK warship HMS Dragon heads to Middle East for potential Strait of Hormuz mission

 Champ     12:03     BBC News     No comments   

The Ministry of Defence says the ship will prepare to join an international mission to safeguard shipping, but only when fighting in the region ends.

from BBC News https://ift.tt/NT2MxcW
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Friday, 8 May 2026

New top story on Hacker News: pg_flight_recorder: Continuously sample PostgreSQL system state via pg_cron

 Champ     13:21     Hacker News     No comments   

pg_flight_recorder: Continuously sample PostgreSQL system state via pg_cron
6 by tanelpoder | 1 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: AI Is Breaking Two Vulnerability Cultures

 Champ     12:21     Hacker News     No comments   

AI Is Breaking Two Vulnerability Cultures
43 by speckx | 8 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Thursday, 7 May 2026

New top story on Hacker News: Principles for agent-native CLIs

 Champ     12:21     Hacker News     No comments   

Principles for agent-native CLIs
12 by blumpy22 | 1 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Three women linked to Islamic State arrested in Australia on return from Syria

 Champ     12:03     BBC News     No comments   

Three women who allegedly supported IS were arrested after they flew home to Australia for the first time in years.

from BBC News https://ift.tt/aGrN9nj
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Wednesday, 6 May 2026

New top story on Hacker News: A Theory of Deep Learning

 Champ     12:21     Hacker News     No comments   

A Theory of Deep Learning
22 by elonlit | 4 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Tuesday, 5 May 2026

New top story on Hacker News: Zuckerberg 'Personally Authorized and Encouraged' Meta's Copyright Infringement

 Champ     13:21     Hacker News     No comments   

Zuckerberg 'Personally Authorized and Encouraged' Meta's Copyright Infringement
45 by spankibalt | 13 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Adding a feature to a closed-source app

 Champ     12:21     Hacker News     No comments   

Adding a feature to a closed-source app
15 by stavros | 5 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Monday, 4 May 2026

New top story on Hacker News: Let's Talk about LLMs

 Champ     12:21     Hacker News     No comments   

Let's Talk about LLMs
14 by cdrnsf | 2 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Spain seizes record amount of cocaine in Atlantic Ocean, authorities say

 Champ     12:03     BBC News     No comments   

The Civil Guard found between 30,000 and 45,000kg of the drug on a freighter headed to Libya.

from BBC News https://ift.tt/xN24CoL
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Sunday, 3 May 2026

New top story on Hacker News: Infrasound waves stop kitchen fires, but can they replace sprinklers?

 Champ     12:21     Hacker News     No comments   

Infrasound waves stop kitchen fires, but can they replace sprinklers?
26 by 0in | 15 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Germany troop cuts send wrong signal to Russia, say two top US Republicans

 Champ     12:03     BBC News     No comments   

The chairs of the House and Senate armed services committees said withdrawing 5,000 service personnel risked undermining deterrence.

from BBC News https://ift.tt/ENTjdK2
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Saturday, 2 May 2026

New top story on Hacker News: Canonical Under Attack

 Champ     13:21     Hacker News     No comments   

Canonical Under Attack
20 by ta988 | 1 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Welcome to Hell Developer

 Champ     12:21     Hacker News     No comments   

Welcome to Hell Developer
4 by denysvitali | 0 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Friday, 1 May 2026

New top story on Hacker News: Spotify adds 'Verified' badges to distinguish human artists from AI

 Champ     12:21     Hacker News     No comments   

Spotify adds 'Verified' badges to distinguish human artists from AI
43 by reconnecting | 14 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Thursday, 30 April 2026

New top story on Hacker News: The Human Creativity Benchmark – Evaluating Generative AI in Creative Work

 Champ     13:21     Hacker News     No comments   

The Human Creativity Benchmark – Evaluating Generative AI in Creative Work
9 by 0bytematt | 0 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Full-Text Search with DuckDB

 Champ     12:21     Hacker News     No comments   

Full-Text Search with DuckDB
6 by ethagnawl | 1 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Wednesday, 29 April 2026

New top story on Hacker News: Why I still reach for Lisp and Scheme instead of Haskell

 Champ     12:21     Hacker News     No comments   

Why I still reach for Lisp and Scheme instead of Haskell
38 by jjba23 | 1 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Tuesday, 28 April 2026

US political violence generates a familiar cycle - this time it's in overdrive

 Champ     12:03     BBC News     No comments   

In modern America, it seems violence of this kind has become an ever-present storm that can strike anywhere and at any moment.

from BBC News https://ift.tt/d3xUZMI
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Monday, 27 April 2026

Canada's Carney launches a sovereign wealth fund. What is it?

 Champ     12:03     BBC News     No comments   

The fund - which Canadians can invest in directly - will help pay for major infrastructure projects in the country, the prime minister says.

from BBC News https://ift.tt/oDaH1ME
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Sunday, 26 April 2026

New top story on Hacker News: An AI agent deleted our production database. The agent's confession is below

 Champ     12:21     Hacker News     No comments   

An AI agent deleted our production database. The agent's confession is below
75 by jeremyccrane | 84 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Saturday, 25 April 2026

Seven dead in major Russian attack on Ukraine

 Champ     13:03     BBC News     No comments   

The city of Dnipro was hardest hit, with officials saying four died in a strike on a residential building.

from BBC News https://ift.tt/MrnDGkN
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Hokusai and Tesselations

 Champ     12:21     Hacker News     No comments   

Hokusai and Tesselations
34 by srean | 4 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Watch: How one orangutan braved new bridge to unite his split community

 Champ     12:03     BBC News     No comments   

The forest where the Sumatran orangutans live has been split by a road.

from BBC News https://ift.tt/6xVuqFO
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Friday, 24 April 2026

New top story on Hacker News: Tariffs Raised Consumers' Prices, but the Refunds Go Only to Businesses

 Champ     12:21     Hacker News     No comments   

Tariffs Raised Consumers' Prices, but the Refunds Go Only to Businesses
39 by duxup | 14 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Why is this game only legal across Australia one day a year?

 Champ     12:03     BBC News     No comments   

Two-up is a coin toss betting game that was played by Australian soldiers during World War One - it’s now only legal across Australia on 25 April.

from BBC News https://ift.tt/7oGLsYR
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Thursday, 23 April 2026

New top story on Hacker News: WireGuard for Windows Reaches v1.0

 Champ     13:21     Hacker News     No comments   

WireGuard for Windows Reaches v1.0
21 by zx2c4 | 0 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Middle Eastern News Sites Are U.S. Government Propaganda Ops

 Champ     12:21     Hacker News     No comments   

Middle Eastern News Sites Are U.S. Government Propaganda Ops
17 by robtherobber | 3 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Wednesday, 22 April 2026

New top story on Hacker News: You don't need advice from editors on rejected manuscripts

 Champ     12:21     Hacker News     No comments   

You don't need advice from editors on rejected manuscripts
6 by MrBuddyCasino | 0 comments on Hacker News.
https://ift.tt/XL4bIeR...

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Tuesday, 21 April 2026

New top story on Hacker News: Theseus, a Static Windows Emulator

 Champ     12:21     Hacker News     No comments   

Theseus, a Static Windows Emulator
15 by zdw | 1 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Monday, 20 April 2026

Victory slips away as marathon runner celebrates too soon

 Champ     13:03     BBC News     No comments   

The dramatic end to the Delaware Marathon occurred when the lead runner slowed in celebration before a trailing marathoner sprinted toward the finish line .

from BBC News https://ift.tt/YN9uFkl
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Modern Rendering Culling Techniques

 Champ     12:21     Hacker News     No comments   

Modern Rendering Culling Techniques
10 by krupitskas | 2 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Sunday, 19 April 2026

New top story on Hacker News: Claude Brain

 Champ     12:21     Hacker News     No comments   

Claude Brain
16 by DeathArrow | 0 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Widespread damage as storm spreads through midwestern US

 Champ     12:03     BBC News     No comments   

A series of strong winds has torn through the midwestern US, ripping roofs off homes and leaving roads obstructed.

from BBC News https://ift.tt/3fW7NZe
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Saturday, 18 April 2026

French peacekeeper killed in southern Lebanon

 Champ     13:03     BBC News     No comments   

President Macron blames the attack on Hezbollah. The Iran-backed armed group denies "any connection" to the incident.

from BBC News https://ift.tt/Ol7XibK
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Graphs That Explain the State of AI in 2026

 Champ     12:21     Hacker News     No comments   

Graphs That Explain the State of AI in 2026
20 by bryanrasmussen | 9 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Friday, 17 April 2026

New top story on Hacker News: Random musings: 80s hardware, cyberdecks

 Champ     12:21     Hacker News     No comments   

Random musings: 80s hardware, cyberdecks
6 by speckx | 2 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Palestinians hand over suspect in 1982 attack on Jewish restaurant in Paris

 Champ     12:03     BBC News     No comments   

Hicham Harb is suspected of directing the attack in the Rue des Rosiers and acting as one of the gunmen who shot at diners.

from BBC News https://ift.tt/mnN1qfR
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Thursday, 16 April 2026

New top story on Hacker News: German Dog Commands

 Champ     13:21     Hacker News     No comments   

German Dog Commands
13 by rolph | 10 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Qwen3.6-35B-A3B on my laptop drew me a better pelican than Claude Opus 4.7

 Champ     12:21     Hacker News     No comments   

Qwen3.6-35B-A3B on my laptop drew me a better pelican than Claude Opus 4.7
36 by simonw | 3 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Rescuers to use air cushions in latest effort to save stranded whale

 Champ     12:03     BBC News     No comments   

"Timmy" has been stranded in the Baltic Sea for weeks despite several attempts to free the ailing animal.

from BBC News https://ift.tt/MOXZCH6
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Wednesday, 15 April 2026

New top story on Hacker News: Cal.com is going closed source

 Champ     12:21     Hacker News     No comments   

Cal.com is going closed source
63 by Benjamin_Dobell | 88 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Frank Gardner: What is China's role in the Iran war?

 Champ     12:03     BBC News     No comments   

BBC Security Correspondent Frank Gardner explains how the world's second-largest economy fits into the Gulf conflict.

from BBC News https://ift.tt/Bh7RxvN
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Tuesday, 14 April 2026

New top story on Hacker News: California ghost-gun bill wants 3D printers to play cop, EFF says

 Champ     13:21     Hacker News     No comments   

California ghost-gun bill wants 3D printers to play cop, EFF says
70 by Bender | 30 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Show HN: Plain – The full-stack Python framework designed for humans and agents

 Champ     12:21     Hacker News     No comments   

Show HN: Plain – The full-stack Python framework designed for humans and agents
10 by focom | 0 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Monday, 13 April 2026

US drivers head to Native American lands for cheaper gas

 Champ     13:03     BBC News     No comments   

Some of the cheapest fuel in the country can be found on tribal land due to tax exemptions.

from BBC News https://ift.tt/Vz2XsaK
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: How to make Firefox builds 17% faster

 Champ     12:21     Hacker News     No comments   

How to make Firefox builds 17% faster
3 by mbitsnbites | 0 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Sunday, 12 April 2026

After Iran talks falter, the big question is what happens next?

 Champ     12:03     BBC News     No comments   

Twenty-one hours was not enough to end 47 years of hostility between Iran and the US, writes the BBC's Lyse Doucet.

from BBC News https://ift.tt/yNQ9wn4
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Saturday, 11 April 2026

Melania Trump's speech propels Epstein crisis back to forefront

 Champ     13:03     BBC News     No comments   

She has now placed herself squarely into the Epstein story and at odds with the administration, which wants to end the investigation.

from BBC News https://ift.tt/x1WK8UA
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Mexican surveillance company Grupo Seguritech watches the U.S. border

 Champ     12:21     Hacker News     No comments   

Mexican surveillance company Grupo Seguritech watches the U.S. border
16 by classichasclass | 1 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Friday, 10 April 2026

Taiwan opposition leader meets Xi Jinping in Beijing

 Champ     12:03     BBC News     No comments   

Cheng Li-wun is the Kuomintang's first sitting leader to visit China in a decade.

from BBC News https://ift.tt/YISvXmb
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Thursday, 9 April 2026

New top story on Hacker News: Where does all the milk go?

 Champ     12:21     Hacker News     No comments   

Where does all the milk go?
28 by DiffTheEnder | 30 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: FreeBSD Laptop Compatibility: Top Laptops to Use with FreeBSD

 Champ     06:21     Hacker News     No comments   

FreeBSD Laptop Compatibility: Top Laptops to Use with FreeBSD
21 by fork-bomber | 2 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Trapped miner rescued from flooded Mexican tunnel after 14 days

 Champ     06:03     BBC News     No comments   

The 42-year-old gold miner was standing in waist-high water when rescuers found him in a flooded tunnel.

from BBC News https://ift.tt/cCe1dDU
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Introduction to Nintendo DS Programming

 Champ     05:21     Hacker News     No comments   

Introduction to Nintendo DS Programming
14 by medbar | 1 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Best-selling The Housemaid author Freida McFadden reveals true identity

 Champ     05:03     BBC News     No comments   

One of the biggest mysteries in publishing is solved, as The Housemaid writer reveals her real name.

from BBC News https://ift.tt/Q73i0lK
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Wednesday, 8 April 2026

New top story on Hacker News: How Costco Won in Japan

 Champ     12:21     Hacker News     No comments   

How Costco Won in Japan
4 by gmays | 0 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Tuesday, 7 April 2026

One dead as train travelling 99mph collides with lorry in France

 Champ     12:03     BBC News     No comments   

The lorry driver is in custody after the train driver died during the collision in northern France.

from BBC News https://ift.tt/R06EZ2f
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Monday, 6 April 2026

New top story on Hacker News: Smart people recognize each other – science proves it

 Champ     12:21     Hacker News     No comments   

Smart people recognize each other – science proves it
21 by 01-_- | 7 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Sunday, 5 April 2026

New top story on Hacker News: LÖVE: 2D Game Framework for Lua

 Champ     13:21     Hacker News     No comments   

LÖVE: 2D Game Framework for Lua
33 by cl3misch | 13 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Running Google Gemma 4 Locally with LM Studio's New Headless CLI and Claude Code

 Champ     12:21     Hacker News     No comments   

Running Google Gemma 4 Locally with LM Studio's New Headless CLI and Claude Code
20 by vbtechguy | 4 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Saturday, 4 April 2026

After 16 years in power, could Viktor Orban finally be unseated?

 Champ     13:03     BBC News     No comments   

Hungary is going to the polls in nine days - after 16 years in power, can Viktor Orban be unseated?

from BBC News https://ift.tt/MwX15o8
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Plague Ships

 Champ     12:21     Hacker News     No comments   

Plague Ships
8 by bryanrasmussen | 0 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Friday, 3 April 2026

New top story on Hacker News: Show HN: An evidence-rated encyclopedia of peptides

 Champ     12:21     Hacker News     No comments   

Show HN: An evidence-rated encyclopedia of peptides
12 by uelbably | 2 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Artemis II crew take 'spectacular' image of Earth

 Champ     12:03     BBC News     No comments   

The snap was taken aboard the Orion capsule by its commander, Reid Wiseman, as the crew head towards the Moon.

from BBC News https://ift.tt/DXdozhs
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Thursday, 2 April 2026

New top story on Hacker News: Good ideas do not need lots of lies in order to gain public acceptance (2008)

 Champ     12:21     Hacker News     No comments   

Good ideas do not need lots of lies in order to gain public acceptance (2008)
5 by sedev | 0 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Wednesday, 1 April 2026

New top story on Hacker News: SpaceX Files to Go Public

 Champ     12:21     Hacker News     No comments   

SpaceX Files to Go Public
19 by nutjob2 | 1 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Tuesday, 31 March 2026

New top story on Hacker News: South Polar Times

 Champ     12:21     Hacker News     No comments   

South Polar Times
7 by Thevet | 0 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Monday, 30 March 2026

Shock, sadness and relief in town at centre of Australia's seven-month manhunt for Dezi Freeman

 Champ     12:03     BBC News     No comments   

The Australian town has been in the spotlight since Dezi Freeman shot dead two police officers last year.

from BBC News https://ift.tt/RtZ2i6V
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Sunday, 29 March 2026

Frosting, sprinkles and layers of fun: Giant cake picnic hits Sydney

 Champ     13:03     BBC News     No comments   

Hundreds of bakers head to the city's botanic gardens to share and savour their colourful creations.

from BBC News https://ift.tt/gx4qt2B
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: C++26 is done ISO C++ standards meeting, Trip Report

 Champ     12:21     Hacker News     No comments   

C++26 is done ISO C++ standards meeting, Trip Report
54 by pjmlp | 19 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Saturday, 28 March 2026

New top story on Hacker News: Undroidwish – a single-file, batteries-included Tcl/Tk binary for many platforms

 Champ     12:21     Hacker News     No comments   

Undroidwish – a single-file, batteries-included Tcl/Tk binary for many platforms
13 by smartmic | 1 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Gaza peace doubts deepen as attention shifts to Iran

 Champ     12:03     BBC News     No comments   

With the world focused on the Iran war, there is increasing uncertainty about what happens next for Gaza. 

from BBC News https://ift.tt/BMjPhap
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Friday, 27 March 2026

New top story on Hacker News: Byte Magazine Archive 1975 to 1995

 Champ     12:21     Hacker News     No comments   

Byte Magazine Archive 1975 to 1995
8 by oldnetguy | 1 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Is Trump's pause on attacking Iranian energy for diplomacy or an escalation?

 Champ     12:03     BBC News     No comments   

The US president's commitment to deadlines is fluid but he uses them for a purpose, writes the BBC's James Landale.

from BBC News https://ift.tt/Z65MKEd
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Thursday, 26 March 2026

Guthrie on missing mother: 'We cannot be at peace without knowing'

 Champ     12:04     BBC News     No comments   

In her first interview since the disappearance, Savannah Guthrie recounts the moment she learned her mother was missing and wrestles with the idea that her fame may have made her mother a target.

from BBC News https://ift.tt/ubq1NUG
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Wednesday, 25 March 2026

New top story on Hacker News: ARC-AGI-3

 Champ     13:21     Hacker News     No comments   

ARC-AGI-3
64 by lairv | 24 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: UK total wind generation record beaten today

 Champ     12:21     Hacker News     No comments   

UK total wind generation record beaten today
18 by martinald | 5 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Tuesday, 24 March 2026

New top story on Hacker News: Epic Games to cut more than 1k jobs as Fortnite usage falls

 Champ     13:21     Hacker News     No comments   

Epic Games to cut more than 1k jobs as Fortnite usage falls
98 by doughnutstracks | 186 comments on Hacker News.
https://ift.tt/LA9uqUV

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Tell HN: Litellm 1.82.7 and 1.82.8 on PyPI are compromised

 Champ     12:21     Hacker News     No comments   

Tell HN: Litellm 1.82.7 and 1.82.8 on PyPI are compromised
136 by dot_treo | 303 comments on Hacker News.
About an hour ago new versions have been deployed to PyPI. I was just setting up a new project, and things behaved weirdly. My laptop ran out of RAM, it looked like a forkbomb was running. I've investigated, and found that a base64 encoded blob has been added to proxy_server.py. It writes and decodes another file which it then runs. I'm in the process of reporting this upstream, but wanted to give everyone here a headsup. It is also reported in this issue: https://ift.tt/K3sOTHQ

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Monday, 23 March 2026

Watch: Inside a Palestinian home attacked by settlers

 Champ     12:03     BBC News     No comments   

Violence began after a teenage settler was killed, reportedly after being hit by a vehicle driven by a Palestinian.

from BBC News https://ift.tt/OPGW0u7
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Sunday, 22 March 2026

New top story on Hacker News: JavaScript Is Enough

 Champ     12:21     Hacker News     No comments   

JavaScript Is Enough
50 by arbayi | 23 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Qatari and Turkish citizens die in military helicopter crash

 Champ     12:03     BBC News     No comments   

Four Qatari military personnel, one Turkish serviceman and two technicians from a Turkish defence company were on board.

from BBC News https://ift.tt/AQHE4lt
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Saturday, 21 March 2026

New top story on Hacker News: Show HN: Termcraft – terminal-first 2D sandbox survival in Rust

 Champ     13:21     Hacker News     No comments   

Show HN: Termcraft – terminal-first 2D sandbox survival in Rust
9 by sebosch | 0 comments on Hacker News.
I’ve been building termcraft, a terminal-first 2D sandbox survival game in Rust. The idea is to take the classic early survival progression and adapt it to a side-on terminal format instead of a tile or pixel-art engine. Current build includes: - procedural Overworld, Nether, and End generation - mining, placement, crafting, furnaces, brewing, and boats - hostile and passive mobs - villages, dungeons, strongholds, Nether fortresses, and dragon progression This is still early alpha, but it’s already playable. Project: https://ift.tt/3Ryo2Hn Docs: https://pagel-s.github.io/termcraft/ Demo: https://youtu.be/kR986Xqzj7E

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Why Some Men Struggle to Keep Up with Friendships

 Champ     12:21     Hacker News     No comments   

Why Some Men Struggle to Keep Up with Friendships
17 by paulpauper | 8 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Friday, 20 March 2026

Ukraine-Hungary oil pipeline row threatens EU loan

 Champ     14:03     BBC News     No comments   

Kyiv and Budapest disagree on how badly damaged a hub in western Ukraine bombed by Russia really is, as its oil flow remains suspended.

from BBC News https://ift.tt/Yg7qQjd
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Time to Dump Windows?

 Champ     13:21     Hacker News     No comments   

Time to Dump Windows?
4 by llm_nerd | 0 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: BYD's bet on EVs is paying off as drivers ditch gas amid rising oil prices

 Champ     12:21     Hacker News     No comments   

BYD's bet on EVs is paying off as drivers ditch gas amid rising oil prices
72 by ironyman | 45 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Thursday, 19 March 2026

New top story on Hacker News: Connecticut and the 1 Kilometer Effect

 Champ     12:21     Hacker News     No comments   

Connecticut and the 1 Kilometer Effect
13 by speckx | 1 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Wednesday, 18 March 2026

New top story on Hacker News: Wanter – A tiny, decentralised tool to explore the small web

 Champ     12:21     Hacker News     No comments   

Wanter – A tiny, decentralised tool to explore the small web
20 by susam | 23 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

US judge orders Trump administration to reopen Voice of America

 Champ     12:03     BBC News     No comments   

Some 85% of VOA staff were laid off by Trump who accused the international broadcaster of bias.

from BBC News https://ift.tt/ku2ha05
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Tuesday, 17 March 2026

New top story on Hacker News: If you thought the code writing speed was your problem; you have bigger problems

 Champ     12:21     Hacker News     No comments   

If you thought the code writing speed was your problem; you have bigger problems
107 by mooreds | 49 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

US west coast prepares for 'dangerous' heatwave in early spring

 Champ     12:03     BBC News     No comments   

Severe weather is plaguing the US from coast to coast, bringing a mix of extreme heat and bitter cold.

from BBC News https://ift.tt/y39S0q6
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Monday, 16 March 2026

New top story on Hacker News: Agent Skills – Open Security Database

 Champ     12:21     Hacker News     No comments   

Agent Skills – Open Security Database
8 by 4ppsec | 1 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Ecuador deploys 75,000 soldiers and police to combat drug gangs

 Champ     12:04     BBC News     No comments   

Citizens of the most violent-wracked provinces have been warned the government is "at war" with the gangs.

from BBC News https://ift.tt/l72OMCw
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Sunday, 15 March 2026

New top story on Hacker News: Autoresearch Hub

 Champ     12:21     Hacker News     No comments   

Autoresearch Hub
4 by EvgeniyZh | 1 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

'Gruesome' war bets fuel calls for crackdown on prediction markets

 Champ     12:03     BBC News     No comments   

Predictions markets have hosted millions of dollars of bets related to the war in Iran.

from BBC News https://ift.tt/NCc6eM2
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Saturday, 14 March 2026

Why has the US targeted Iran's Kharg Island?

 Champ     12:03     BBC News     No comments   

The tiny island is home to one of the most critical pieces of Iran's energy infrastructure.

from BBC News https://ift.tt/es9BDYa
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Friday, 13 March 2026

New top story on Hacker News: Coding after coders: The end of computer programming as we know it

 Champ     13:21     Hacker News     No comments   

Coding after coders: The end of computer programming as we know it
56 by angst | 24 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: John Carmack about open source and anti-AI activists

 Champ     12:21     Hacker News     No comments   

John Carmack about open source and anti-AI activists
69 by tzury | 43 comments on Hacker News.
https://ift.tt/KyY94uv

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Thursday, 12 March 2026

New top story on Hacker News: 'AI is African intelligence': The workers who train AI are fighting back

 Champ     12:21     Hacker News     No comments   

'AI is African intelligence': The workers who train AI are fighting back
4 by beepbooptheory | 1 comments on Hacker News.
https://ift.tt/tdbyrZg

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Wednesday, 11 March 2026

New top story on Hacker News: The Darkness from the Darkness

 Champ     13:21     Hacker News     No comments   

The Darkness from the Darkness
5 by lermontov | 0 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Ukraine says it has hit Russian 'missile component' plant

 Champ     12:03     BBC News     No comments   

Russia says the attack hit civilians and could not have been carried out without British help.

from BBC News https://ift.tt/haH4K1C
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Tuesday, 10 March 2026

New top story on Hacker News: Yann LeCun raises $1B to build AI that understands the physical world

 Champ     12:21     Hacker News     No comments   

Yann LeCun raises $1B to build AI that understands the physical world
96 by helloplanets | 244 comments on Hacker News.
https://ift.tt/GkH0zyj... https://ift.tt/YXk3ozO... ( https://ift.tt/xeIJsAo )

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

BBC visits key Dubai port in Iran's firing line

 Champ     12:03     BBC News     No comments   

Trade at the Middle East's biggest port has been hit hard since Iran's blockade of the Strait of Hormuz began.

from BBC News https://ift.tt/jP6bZNT
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Monday, 9 March 2026

New top story on Hacker News: Velxio, Arduino Emulator

 Champ     13:21     Hacker News     No comments   

Velxio, Arduino Emulator
6 by dmonterocrespo | 4 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Rethinking Syntax: Binding by Adjacency

 Champ     12:21     Hacker News     No comments   

Rethinking Syntax: Binding by Adjacency
12 by owlstuffing | 1 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Sunday, 8 March 2026

New top story on Hacker News: WSL Manager

 Champ     12:21     Hacker News     No comments   

WSL Manager
8 by gballan | 2 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Saturday, 7 March 2026

Heavy rains and flooding kills at least 23 in Nairobi

 Champ     12:03     BBC News     No comments   

Flights in and out of Nairobi Airport have been disrupted while some roads in the capital are submerged.

from BBC News https://ift.tt/ERgX6By
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Show HN: Prompt Armour – Real-time PII detection for AI chatbots, 100% local

 Champ     11:21     Hacker News     No comments   

Show HN: Prompt Armour – Real-time PII detection for AI chatbots, 100% local
8 by TheAlexRider | 1 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Friday, 6 March 2026

New top story on Hacker News: A tool that REMOVES censorship from ANY open-weight LLM with a single click

 Champ     11:21     Hacker News     No comments   

A tool that REMOVES censorship from ANY open-weight LLM with a single click
10 by mvdwoord | 1 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Beirut evacuees 'sleeping in tents and cars'

 Champ     11:03     BBC News     No comments   

Some residents in the Beirut suburb of Dahieh have left their homes amid ongoing air strikes by Israel.

from BBC News https://ift.tt/95YNuIc
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Thursday, 5 March 2026

Iran's high-risk war strategy seems to centre on endurance and deterrence

 Champ     11:03     BBC News     No comments   

Tehran's approach appears to rest on a belief it can absorb strikes longer than its adversaries sustain pain and costs, writes BBC Persian's Amir Azimi.

from BBC News https://ift.tt/mIwqyuL
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Wednesday, 4 March 2026

Watershed moment as Russia's sporting exile ends

 Champ     11:03     BBC News     No comments   

Sports Editor Dan Roan analyses Russia's controversial return to global sporting action at the Winter Paralympics and what it might mean for other sports.

from BBC News https://ift.tt/Sarh40w
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Tuesday, 3 March 2026

New top story on Hacker News: Someone needs to go to jail

 Champ     11:21     Hacker News     No comments   

Someone needs to go to jail
55 by shimm723 | 15 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Monday, 2 March 2026

New top story on Hacker News: 19th century silent film that first captured a robot attack

 Champ     11:21     Hacker News     No comments   

19th century silent film that first captured a robot attack
6 by ynac | 1 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

A rap star might just beat a former PM - what this says about Nepal's Gen Z election

 Champ     11:03     BBC News     No comments   

Many hope the vote could bring change after protests last year, and shatter decades of political paralysis.

from BBC News https://ift.tt/CIaw6OS
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Sunday, 1 March 2026

Celebrations around the world after strikes on Iran

 Champ     12:03     BBC News     No comments   

People in the UK, Spain and the United States celebrated on Saturday following news of the strikes.

from BBC News https://ift.tt/dJSLtZ7
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: January in Servo: preloads, better forms, details styling, and more

 Champ     11:21     Hacker News     No comments   

January in Servo: preloads, better forms, details styling, and more
15 by birdculture | 1 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Saturday, 28 February 2026

A 'delicate' balance for Canada and a 'win-win' for Modi as Carney visits India

 Champ     12:03     BBC News     No comments   

The two countries are repairing a strained relationship as they also seek to reduce their trade reliance on the US.

from BBC News https://ift.tt/JRnyETq
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Werner Herzog Between Fact and Fiction

 Champ     11:21     Hacker News     No comments   

Werner Herzog Between Fact and Fiction
15 by Hooke | 3 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Friday, 27 February 2026

New top story on Hacker News: Theory of Constraints: "Blue Light" creating capacity for nothing (2007)

 Champ     11:21     Hacker News     No comments   

Theory of Constraints: "Blue Light" creating capacity for nothing (2007)
10 by strongpigeon | 1 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Thursday, 26 February 2026

New top story on Hacker News: Show HN: Mission Control – Open-source task management for AI agents

 Champ     11:21     Hacker News     No comments   

Show HN: Mission Control – Open-source task management for AI agents
11 by meisnerd | 1 comments on Hacker News.
I've been delegating work to Claude Code for the past few months, and it's been genuinely transformative—but managing multiple agents doing different things became chaos. No tool existed for this workflow, so I built one. The Problem When you're working with AI agents (Claude Code, Cursor, Windsurf), you end up in a weird situation: - You have tasks scattered across your head, Slack, email, and the CLI - Agents need clear work items, context, and role-specific instructions - You have no visibility into what agents are actually doing - Failed tasks just... disappear. No retry, no notification - Each agent context-switches constantly because you're hand-feeding them work I was manually shepherding agents, copying task descriptions, restarting failed sessions, and losing track of what needed done next. It felt like hiring expensive contractors but managing them like a disorganized chaos experiment. The Solution Mission Control is a task management app purpose-built for delegating work to AI agents. It's got the expected stuff (Eisenhower matrix, kanban board, goal hierarchy) but built from the assumption that your collaborators are Claude, not humans. The killer feature is the autonomous daemon . It runs in the background, polls your task queue, spawns Claude Code sessions automatically, handles retries, manages concurrency, and respects your cron-scheduled work. One click: your entire work queue activates. The Architecture - Local-first : Everything lives in JSON files. No database, no cloud dependency, no vendor lock-in. - Token-optimized API : The task/decision payloads are ~50 tokens vs ~5,400 unfiltered. Matters when you're spawning agents repeatedly. - Rock-solid concurrency : Zod validation + async-mutex locking prevents corruption under concurrent writes. - 193 automated tests : This thing has to be reliable. It's doing unattended work. The app is Next.js 15 with 5 built-in agent roles (researcher, developer, marketer, business-analyst, plus you). You define reusable skills as markdown that get injected into agent prompts. Agents report back through an inbox + decisions queue. Why Release This? A few people have asked for access, and I think it's genuinely useful for anyone delegating to AI. It's MIT licensed, open source, and actively maintained. What's Next - Human collaboration (sharing tasks with real team members) - Integrations with GitHub issues and email inboxes - Better observability dashboard for daemon execution - Custom agent templates (currently hardcoded roles) If you're doing something similar—delegating serious work to AI—check it out and let me know what's broken. GitHub: https://ift.tt/kulciaV

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Wednesday, 25 February 2026

New top story on Hacker News: Why isn't LA repaving streets?

 Champ     11:21     Hacker News     No comments   

Why isn't LA repaving streets?
15 by speckx | 19 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Tuesday, 24 February 2026

New top story on Hacker News: HuggingFace Agent Skills

 Champ     11:21     Hacker News     No comments   

HuggingFace Agent Skills
16 by armcat | 1 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Ramaphosa thanks Putin for release of South Africans lured into Russia-Ukraine war

 Champ     11:04     BBC News     No comments   

The men believed they were going to Russia for training as bodyguards but ended up on the front line.

from BBC News https://ift.tt/mjQMHu8
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Monday, 23 February 2026

Zelensky tells BBC Putin has started WW3 and must be stopped

 Champ     12:04     BBC News     No comments   

Ukraine's president sat down with the BBC's Jeremy Bowen in Kyiv days before the four-year anniversary of the war.

from BBC News https://ift.tt/o0MdrF5
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: ASML unveils EUV light source advance that could yield 50% more chips by 2030

 Champ     11:21     Hacker News     No comments   

ASML unveils EUV light source advance that could yield 50% more chips by 2030
42 by pieterr | 3 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Sunday, 22 February 2026

New top story on Hacker News: Fresh File Explorer – VS Code extension for navigating recent work

 Champ     11:21     Hacker News     No comments   

Fresh File Explorer – VS Code extension for navigating recent work
20 by frehu | 6 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Armed man killed after entering secure perimeter of Trump's residence, Secret Service says

 Champ     11:03     BBC News     No comments   

The suspect was carrying a shotgun and fuel can when he was killed, officers said. Trump was in Washington DC at the time.

from BBC News https://ift.tt/3sxzdL4
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Saturday, 21 February 2026

New top story on Hacker News: Loon: A functional lang with invisible types, safe ownership, and alg. effects

 Champ     11:21     Hacker News     No comments   

Loon: A functional lang with invisible types, safe ownership, and alg. effects
12 by surprisetalk | 2 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Giant tortoises return to Galápagos island after nearly 200 years

 Champ     11:04     BBC News     No comments   

The native species was driven to extinction by sailors in the 1800s. Now, 158 juvenile giant tortoises have been reintroduced to the island.

from BBC News https://ift.tt/tk8HYWx
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Friday, 20 February 2026

New top story on Hacker News: KFC, Nando's, and others ditch chicken welfare pledge

 Champ     12:21     Hacker News     No comments   

KFC, Nando's, and others ditch chicken welfare pledge
27 by penguin_booze | 7 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Blue light filters don't work

 Champ     11:21     Hacker News     No comments   

Blue light filters don't work
24 by pminimax | 30 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Thursday, 19 February 2026

New top story on Hacker News: DOGE Bro's Grant Review Process Was Literally Just Asking ChatGPT 'Is This DEI?'

 Champ     11:21     Hacker News     No comments   

DOGE Bro's Grant Review Process Was Literally Just Asking ChatGPT 'Is This DEI?'
32 by hn_acker | 11 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

US-Iran tension: Why Tehran may choose confrontation over 'surrender'

 Champ     11:03     BBC News     No comments   

The Iranian leadership is weighing up whether resisting US demands is the best option for its survival.

from BBC News https://ift.tt/z0hod42
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Wednesday, 18 February 2026

New top story on Hacker News: DNS-Persist-01: A New Model for DNS-Based Challenge Validation

 Champ     11:21     Hacker News     No comments   

DNS-Persist-01: A New Model for DNS-Based Challenge Validation
20 by todsacerdoti | 2 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

I would scream in my sleep: Women from Syria's Alawite minority tell of kidnap and rape

 Champ     11:03     BBC News     No comments   

The BBC hears harrowing accounts of assaults appearing to target the sect of former President Assad.

from BBC News https://ift.tt/nQIGUL5
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Tuesday, 17 February 2026

New top story on Hacker News: Russia's economy has entered the death zone

 Champ     11:21     Hacker News     No comments   

Russia's economy has entered the death zone
6 by thelastgallon | 0 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Discord Rival Gets Overwhelmed by Exodus of Players Fleeing Age-Verification

 Champ     11:21     Hacker News     No comments   

Discord Rival Gets Overwhelmed by Exodus of Players Fleeing Age-Verification
47 by thunderbong | 11 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Sub-Millisecond RAG on Apple Silicon. No Server. No API. One File

 Champ     11:21     Hacker News     No comments   

Sub-Millisecond RAG on Apple Silicon. No Server. No API. One File
19 by ckarani | 3 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Family of Zambia's ex-President Lungu dismiss poisoning allegation - lawyers

 Champ     11:03     BBC News     No comments   

It is the latest twist over the fate of Lungu's body, which remains in a South African morgue since his death.

from BBC News https://ift.tt/0KuxVTb
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Monday, 16 February 2026

New top story on Hacker News: Use Protocols, Not Services

 Champ     11:21     Hacker News     No comments   

Use Protocols, Not Services
37 by enz | 3 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Privilege Is Bad Grammar

 Champ     11:21     Hacker News     No comments   

Privilege Is Bad Grammar
79 by surprisetalk | 55 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Show HN: Jemini – Gemini for the Epstein Files

 Champ     11:21     Hacker News     No comments   

Show HN: Jemini – Gemini for the Epstein Files
6 by dvrp | 0 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Show HN: Nerve: Stitches all your data sources into one mega-API

 Champ     11:21     Hacker News     No comments   

Show HN: Nerve: Stitches all your data sources into one mega-API
3 by mprast | 0 comments on Hacker News.
Hi HN! Nerve is a solo project I've been working on for the last few years. It's a developer tool that stitches together data from multiple sources in real-time. A lot of high-leverage projects (AI or otherwise) involve tying data together from multiple systems of record. This is easy enough when the data is simple and the sources are few, but if you have highly nested data and lots of sources (or you need things like federated pagination and filtering), you have to write a lot of gnarly boilerplate that's brittle and easy to get wrong. One solution is to import all your data into a central warehouse and just pull it from there. This works, but 1) you need a warehouse, 2) you have an extra copy of the data that can get stale or inconsistent, 3) you need to write and manage pipelines/connectors (or outsource them to a vendor), and 4) you're adding an extra point of failure. Nerve lets you write GraphQL-style queries that span multiple sources; then it goes out and pulls from whatever source APIs it needs to at query-time - all your source data stays where it is. Nerve has pre-built bindings to external SAAS services, and it's straightforward to hook it into your internal sources as well. Nerve is made for individual developers or two-pizza teams who: -Are building agents/internal tools -Need to deal with messy data strewn across different systems -Don't have a data team/warehouse at their disposal, (or do, but can't get a slice of their bandwidth) -Want to get to production as quickly as possible Everything you see in the demo is shipped and usable, but I'm adding a little polish before I officially launch. In the meantime, if you have a project you'd like to use Nerve on and you want to be a beta user, just drop me a line at mprast@get-nerve.com (it's free! I'll just pop in from time to time to ask you how it's going and what I can improve :) ) If you want to get an email when Nerve is ready from prime-time, you can sign up for the waitlist at get-nerve.com. Thanks for reading!

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Sunday, 15 February 2026

New top story on Hacker News: Scientists observe a 300M-year-old brain rhythm in several animal species

 Champ     11:21     Hacker News     No comments   

Scientists observe a 300M-year-old brain rhythm in several animal species
7 by PaulHoule | 0 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Towards Autonomous Mathematics Research

 Champ     11:21     Hacker News     No comments   

Towards Autonomous Mathematics Research
18 by gmays | 2 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: (Ars) Editor's Note: Retraction of article containing fabricated quotations

 Champ     11:21     Hacker News     No comments   

(Ars) Editor's Note: Retraction of article containing fabricated quotations
29 by bikenaga | 9 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Soviet Tektronix 7000-series oscilloscope copies

 Champ     11:21     Hacker News     No comments   

Soviet Tektronix 7000-series oscilloscope copies
2 by mosura | 0 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Saturday, 14 February 2026

New top story on Hacker News: A header-only C vector database library

 Champ     11:21     Hacker News     No comments   

A header-only C vector database library
9 by abdimoalim | 1 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: uBlock filter list to hide all YouTube Shorts

 Champ     11:21     Hacker News     No comments   

uBlock filter list to hide all YouTube Shorts
12 by i5heu | 3 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

'Canadians are with you,' says PM at Tumbler Ridge vigil

 Champ     11:03     BBC News     No comments   

The Canadian prime minister attended a vigil with federal leaders and paid tribute to the eight victims.

from BBC News https://ift.tt/a1d09PE
via IFTTT
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Friday, 13 February 2026

New top story on Hacker News: Show HN: Moltis – AI assistant with memory, tools, and self-extending skills

 Champ     12:21     Hacker News     No comments   

Show HN: Moltis – AI assistant with memory, tools, and self-extending skills
8 by fabienpenso | 1 comments on Hacker News.
Hey HN. I'm Fabien, principal engineer, 25 years shipping production systems (Ruby, Swift, now Rust). I built Moltis because I wanted an AI assistant I could run myself, trust end to end, and make extensible in the Rust way using traits and the type system. It shares some ideas with OpenClaw (same memory approach, Pi-inspired self-extension) but is Rust-native from the ground up. The agent can create its own skills at runtime. Moltis is one Rust binary, 150k lines, ~60MB, web UI included. No Node, no Python, no runtime deps. Multi-provider LLM routing (OpenAI, local GGUF/MLX, Hugging Face), sandboxed execution (Docker/Podman/Apple Containers), hybrid vector + full-text memory, MCP tool servers with auto-restart, and multi-channel (web, Telegram, API) with shared context. MIT licensed. No telemetry phoning home, but full observability built in (OpenTelemetry, Prometheus). I've included 1-click deploys on DigitalOcean and Fly.io, but since a Docker image is provided you can easily run it on your own servers as well. I've written before about owning your content ( https://ift.tt/9y507jL ) and owning your email ( https://ift.tt/w8iCfAR ). Same logic here: if something touches your files, credentials, and daily workflow, you should be able to inspect it, audit it, and fork it if the project changes direction. It's alpha. I use it daily and I'm shipping because it's useful, not because it's done. Longer architecture deep-dive: https://ift.tt/FbM2qWi... Happy to discuss the Rust architecture, security model, or local LLM setup. Would love feedback.

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg
Newer Posts Older Posts Home

Popular Posts

  • 简报:中美发表应对气候危机联合声明;医生称纳瓦尔尼病危
    By BY EMILY CHAN AND KONEY BAI from NYT World https://ift.tt/3dva1lP via IFTTT
  • New York Post Reporter Who Wrote False Kamala Harris Story Resigns
    By BY MICHAEL M. GRYNBAUM from NYT Business https://ift.tt/3aKd8Ex via IFTTT
  • New top story on Hacker News: Visa and Mastercard are getting overwhelmed by gamer fury over censorship
    Visa and Mastercard are getting overwhelmed by gamer fury over censorship 181 by mrzool | 134 comments on Hacker News.
  • New top story on Hacker News: The Power of Starting Again
    The Power of Starting Again 10 by memorable | 2 comments on Hacker News.
  • United Nations at 75 plagued by new crises and cash crunch
    Faced with wars, climate change and a pandemic, the United Nations is struggling to make an impact. from BBC News - World https://ift.tt/2...
  • New top story on Hacker News: My Experience with Claude Code After 2 Weeks of Adventures
    My Experience with Claude Code After 2 Weeks of Adventures 3 by dejavucoder | 0 comments on Hacker News.
  • New top story on Hacker News: Instrumenting Next.js with runtime secret injection
    Instrumenting Next.js with runtime secret injection 6 by nimishk | 3 comments on Hacker News.
  • Wildlife Tourism: सैलानियों की पहली पसंद बना ये टाइगर रिजर्व, तीन गुना हुए बाघ
    यहां बाघों की संख्या बढ़ने से वह अब आसानी से दिख जाते हैं। ये पार्क एशियाई हाथियों के लिए भी प्रसिद्ध है। लिहाजा यहां दो साल में पर्यटकों की...
  • New top story on Hacker News: Memoirs from a Japanese Internet Cafe
    Memoirs from a Japanese Internet Cafe 18 by bemmu | 1 comments on Hacker News.
  • New top story on Hacker News: Nuclear Waste Reprocessing Gains Momentum in the U.S.
    Nuclear Waste Reprocessing Gains Momentum in the U.S. 14 by rbanffy | 4 comments on Hacker News.

Recent Posts

Categories

  • BBC News
  • BBC News - Technology
  • BBC News - World
  • BOLLYWOOD Jagran Hindi News - entertainment:bollywood
  • CBNNews.com
  • CLASS 10 BEST BOOKS FOR BECOME A TOPPER
  • CRICKETJagran Hindi News - cricket:headlines
  • FOX NEWS
  • Hacker News
  • INDIAJagran Hindi News - news:national
  • NYT
  • Reuters: World News

Unordered List

Pages

  • Home

Text Widget

Blog Archive

  • ▼  2026 (383)
    • ▼  July (55)
      • New top story on Hacker News: MCP 2026-07-28 Speci...
      • US walks out of UN Security Council meeting during...
      • New top story on Hacker News: Tokio Gives Progress...
      • France and Spain wildfire witnesses describe 'wall...
      • New top story on Hacker News: Using ThinkPad T480 ...
      • New top story on Hacker News: Show HN: I made some...
      • Nigeria's president approves largest military expa...
      • New top story on Hacker News: Show HN: Trifle – Op...
      • Canada's 'powerful' dairy sector is in Trump's tra...
      • New top story on Hacker News: John C. Dvorak has died
      • Watch: Louvre reopens gallery after jewellery heist
      • New top story on Hacker News: ICE shared Medicaid ...
      • New top story on Hacker News: Everyone Should Know...
      • New top story on Hacker News: Laguna S 2.1
      • New top story on Hacker News: Agent swarms and the...
      • 'If only people knew what a tick could do' - the d...
      • New top story on Hacker News: Natural experiments ...
      • New top story on Hacker News: Less Is More: Why Au...
      • New top story on Hacker News: The Kimi K3 Moment
      • Trump threatens new Canada tariffs over fires send...
      • New top story on Hacker News: Homomorphically encr...
      • More than 500 Rohingya vanished at sea - what happ...
      • New top story on Hacker News: Schema Harness Achie...
      • At least one dead in Texas floods ravaging same ar...
      • New top story on Hacker News: Duskers, the scary c...
      • New top story on Hacker News: Inkling: Our Open-We...
      • What if Bluey spoke one of the world's oldest livi...
      • New top story on Hacker News: Guardian Angels: LLM...
      • How US commerce secretary's Epstein links were unc...
      • New top story on Hacker News: IBM Stock has worst day
      • Watch: Horses evacuated as fire approaches riding ...
      • South Africa says more than 53,000 foreigners depo...
      • New top story on Hacker News: Can We Understand Ho...
      • New top story on Hacker News: UPI: Anatomy of a Pa...
      • New top story on Hacker News: Show HN: Reame – a C...
      • More than 40 kidnapped children and teachers freed...
      • New top story on Hacker News: New York City to bec...
      • Watch: What links a bomb in Monaco and a shooting ...
      • New top story on Hacker News: Show HN: Abralo – Fr...
      • New top story on Hacker News: How to Start a Ruby ...
      • New top story on Hacker News: Cloudflare Drop
      • New top story on Hacker News: A bug which affected...
      • New top story on Hacker News: A new runtime for k ...
      • Watch: Moment rare tornado lashes central Chinese ...
      • New top story on Hacker News: Orasort: 5x faster c...
      • New top story on Hacker News: Installing A/UX 1.1 ...
      • Emotion and politics merge in Tehran at funeral of...
      • New top story on Hacker News: Zig: All Package Man...
      • New top story on Hacker News: EndBASIC 0.14: Are w...
      • New top story on Hacker News: Holes
      • New top story on Hacker News: Instead of banning A...
      • New top story on Hacker News: Exapunks
      • People smuggler convicted in France found by BBC l...
      • New top story on Hacker News: A complete ClickHous...
      • Fire kills five at Antwerp apartment block
    • ►  June (55)
      • Angry Venezuelans accuse government of negligence ...
      • New top story on Hacker News: The 80% Problem: The...
      • Desperate search for earthquake survivors continue...
      • New top story on Hacker News: Semgrep: GLM 5.2 bea...
      • New top story on Hacker News: The cost YAGNI was n...
      • New top story on Hacker News: A History of Menus I...
      • Watch: A race against the clock for Venezuela eart...
      • New top story on Hacker News: What Is a Nomogram a...
      • Debris falls after plane hits Beijing's tallest bu...
      • Oil price falls back to pre-Iran war levels
      • New top story on Hacker News: Show HN: OpenKnowled...
      • New top story on Hacker News: Show HN: LookAway, a...
      • New top story on Hacker News: The worthlessness of...
      • New top story on Hacker News: Linux and Secure Boo...
      • New top story on Hacker News: Show HN: Teach your ...
      • New top story on Hacker News: Ask for no, don't as...
      • New top story on Hacker News: Show HN: CleverCrow:...
      • New top story on Hacker News: JSON-LD Explained fo...
      • New top story on Hacker News: Show HN: Make PDFs l...
      • New top story on Hacker News: Why has the pointe s...
      • Would you choose to take a 22-hour non-stop flight?
      • New top story on Hacker News: Agentic Resource Dis...
      • British man dies in paragliding accident in Spain
      • New top story on Hacker News: The hacker sent by A...
      • Israel launches fresh strikes on Lebanon despite T...
      • New top story on Hacker News: Has AI already kille...
      • Venezuela signs deal with US energy giant to rebui...
      • New top story on Hacker News: Typst 0.15.0
      • Iran deal presents political nightmare for Netanyahu
      • New top story on Hacker News: Show HN: Trace – Off...
      • New top story on Hacker News: Rome Fell and Nobody...
      • New top story on Hacker News: Codex for open source
      • New top story on Hacker News: GameBoy Workboy
      • US-Iran deal scheduled to be signed on Sunday, say...
      • New top story on Hacker News: You can power on a M...
      • New top story on Hacker News: Cosmodial Sky Atlas
      • New top story on Hacker News: Show HN: I built a R...
      • World Cup kicks off in Mexico with Shakira, local ...
      • New top story on Hacker News: Claude Fable 5: mid-...
      • New top story on Hacker News: L'Affaire Siloxane
      • Whale graveyard dating back five million years dis...
      • Does referee case show Fifa has lost control of it...
      • New top story on Hacker News: What it feels like t...
      • New top story on Hacker News: EU-banned pesticides...
      • New top story on Hacker News: sqlite: A CGo-free p...
      • Mexicans chase a world record wave - but is the tr...
      • Armenia braces for election as Russia piles pressu...
      • New top story on Hacker News: Pentagon raised thre...
      • New top story on Hacker News: Inside FAISS: Billio...
      • Norway's crown princess on lung transplant waiting...
      • Missing Sherpa guide found on Mount Everest after ...
      • New top story on Hacker News: Show HN: Cost.dev (Y...
      • From butterflies to breast milk, Uber's list of lo...
      • New top story on Hacker News: On the nature of aut...
      • Iran attacks damage 20 US military sites since sta...
    • ►  May (54)
      • New top story on Hacker News: Re: [PATCH] OOM_pard...
      • Brazil monitors two patients for possible Ebola in...
      • New top story on Hacker News: Let's talk about EU ...
      • Trump attacks artists dropping out of US Freedom 2...
      • New top story on Hacker News: Liquid AI reveals 8B...
      • New top story on Hacker News: Legislation Killed W...
      • New top story on Hacker News: What Apple and Googl...
      • New top story on Hacker News: Stress disrupts hipp...
      • New top story on Hacker News: Stack Overflow’s for...
      • Osaka sparkles in golden French Open outfit
      • New top story on Hacker News: Exit IP VPN servers ...
      • Watch: Only world record broken at Enhanced Games ...
      • New top story on Hacker News: Australia Four-Day W...
      • Trump tells US negotiators 'not to rush' into deal...
      • New top story on Hacker News: Don't know where you...
      • Race for French presidency sees ex-PM Philippe as ...
      • New top story on Hacker News: Green card seekers m...
      • 'No means no': Greenlanders protest against Trump ...
      • New top story on Hacker News: Spotify will start r...
      • Charges dismissed against official at school where...
      • New top story on Hacker News: Why is Inkwell stuck...
      • Uncontrolled California wildfires seen from space
      • New top story on Hacker News: I 3D Printed Origami...
      • Former Google CEO Eric Schmidt booed by graduates ...
      • Judge rules gun and writings are admissible in Lui...
      • New top story on Hacker News: Schanuel's Conjectur...
      • New top story on Hacker News: Show HN: Daily vibe-...
      • Man killed by 13ft shark in Western Australia
      • New top story on Hacker News: US Is Starting to Se...
      • New top story on Hacker News: Waymo recalls 3,800 ...
      • US to seek death penalty for suspect in killing of...
      • New top story on Hacker News: What's in a GGUF, be...
      • New top story on Hacker News: ReactOS
      • New top story on Hacker News: GitHub Actions issue...
      • New top story on Hacker News: SQL: Incorrect by Co...
      • New top story on Hacker News: Quack: The DuckDB Cl...
      • Trump calls Iran response to US proposal to end wa...
      • How hotels are stopping the 'dawn dash' for sunbed...
      • New top story on Hacker News: YC's Biggest Scandals
      • UK warship HMS Dragon heads to Middle East for pot...
      • New top story on Hacker News: pg_flight_recorder: ...
      • New top story on Hacker News: AI Is Breaking Two V...
      • New top story on Hacker News: Principles for agent...
      • Three women linked to Islamic State arrested in Au...
      • New top story on Hacker News: A Theory of Deep Lea...
      • New top story on Hacker News: Zuckerberg 'Personal...
      • New top story on Hacker News: Adding a feature to ...
      • New top story on Hacker News: Let's Talk about LLMs
      • Spain seizes record amount of cocaine in Atlantic ...
      • New top story on Hacker News: Infrasound waves sto...
      • Germany troop cuts send wrong signal to Russia, sa...
      • New top story on Hacker News: Canonical Under Attack
      • New top story on Hacker News: Welcome to Hell Deve...
      • New top story on Hacker News: Spotify adds 'Verifi...
    • ►  April (52)
      • New top story on Hacker News: The Human Creativity...
      • New top story on Hacker News: Full-Text Search wit...
      • New top story on Hacker News: Why I still reach fo...
      • US political violence generates a familiar cycle -...
      • Canada's Carney launches a sovereign wealth fund. ...
      • New top story on Hacker News: An AI agent deleted ...
      • Seven dead in major Russian attack on Ukraine
      • New top story on Hacker News: Hokusai and Tesselat...
      • Watch: How one orangutan braved new bridge to unit...
      • New top story on Hacker News: Tariffs Raised Consu...
      • Why is this game only legal across Australia one d...
      • New top story on Hacker News: WireGuard for Window...
      • New top story on Hacker News: Middle Eastern News ...
      • New top story on Hacker News: You don't need advic...
      • New top story on Hacker News: Theseus, a Static Wi...
      • Victory slips away as marathon runner celebrates t...
      • New top story on Hacker News: Modern Rendering Cul...
      • New top story on Hacker News: Claude Brain
      • Widespread damage as storm spreads through midwest...
      • French peacekeeper killed in southern Lebanon
      • New top story on Hacker News: Graphs That Explain ...
      • New top story on Hacker News: Random musings: 80s ...
      • Palestinians hand over suspect in 1982 attack on J...
      • New top story on Hacker News: German Dog Commands
      • New top story on Hacker News: Qwen3.6-35B-A3B on m...
      • Rescuers to use air cushions in latest effort to s...
      • New top story on Hacker News: Cal.com is going clo...
      • Frank Gardner: What is China's role in the Iran war?
      • New top story on Hacker News: California ghost-gun...
      • New top story on Hacker News: Show HN: Plain – The...
      • US drivers head to Native American lands for cheap...
      • New top story on Hacker News: How to make Firefox ...
      • After Iran talks falter, the big question is what ...
      • Melania Trump's speech propels Epstein crisis back...
      • New top story on Hacker News: Mexican surveillance...
      • Taiwan opposition leader meets Xi Jinping in Beijing
      • New top story on Hacker News: Where does all the m...
      • New top story on Hacker News: FreeBSD Laptop Compa...
      • Trapped miner rescued from flooded Mexican tunnel ...
      • New top story on Hacker News: Introduction to Nint...
      • Best-selling The Housemaid author Freida McFadden ...
      • New top story on Hacker News: How Costco Won in Japan
      • One dead as train travelling 99mph collides with l...
      • New top story on Hacker News: Smart people recogni...
      • New top story on Hacker News: LÖVE: 2D Game Framew...
      • New top story on Hacker News: Running Google Gemma...
      • After 16 years in power, could Viktor Orban finall...
      • New top story on Hacker News: Plague Ships
      • New top story on Hacker News: Show HN: An evidence...
      • Artemis II crew take 'spectacular' image of Earth
      • New top story on Hacker News: Good ideas do not ne...
      • New top story on Hacker News: SpaceX Files to Go P...
    • ►  March (52)
      • New top story on Hacker News: South Polar Times
      • Shock, sadness and relief in town at centre of Aus...
      • Frosting, sprinkles and layers of fun: Giant cake ...
      • New top story on Hacker News: C++26 is done ISO C+...
      • New top story on Hacker News: Undroidwish – a sing...
      • Gaza peace doubts deepen as attention shifts to Iran
      • New top story on Hacker News: Byte Magazine Archiv...
      • Is Trump's pause on attacking Iranian energy for d...
      • Guthrie on missing mother: 'We cannot be at peace ...
      • New top story on Hacker News: ARC-AGI-3
      • New top story on Hacker News: UK total wind genera...
      • New top story on Hacker News: Epic Games to cut mo...
      • New top story on Hacker News: Tell HN: Litellm 1.8...
      • Watch: Inside a Palestinian home attacked by settlers
      • New top story on Hacker News: JavaScript Is Enough
      • Qatari and Turkish citizens die in military helico...
      • New top story on Hacker News: Show HN: Termcraft –...
      • New top story on Hacker News: Why Some Men Struggl...
      • Ukraine-Hungary oil pipeline row threatens EU loan
      • New top story on Hacker News: Time to Dump Windows?
      • New top story on Hacker News: BYD's bet on EVs is ...
      • New top story on Hacker News: Connecticut and the ...
      • New top story on Hacker News: Wanter – A tiny, dec...
      • US judge orders Trump administration to reopen Voi...
      • New top story on Hacker News: If you thought the c...
      • US west coast prepares for 'dangerous' heatwave in...
      • New top story on Hacker News: Agent Skills – Open ...
      • Ecuador deploys 75,000 soldiers and police to comb...
      • New top story on Hacker News: Autoresearch Hub
      • 'Gruesome' war bets fuel calls for crackdown on pr...
      • Why has the US targeted Iran's Kharg Island?
      • New top story on Hacker News: Coding after coders:...
      • New top story on Hacker News: John Carmack about o...
      • New top story on Hacker News: 'AI is African intel...
      • New top story on Hacker News: The Darkness from th...
      • Ukraine says it has hit Russian 'missile component...
      • New top story on Hacker News: Yann LeCun raises $1...
      • BBC visits key Dubai port in Iran's firing line
      • New top story on Hacker News: Velxio, Arduino Emul...
      • New top story on Hacker News: Rethinking Syntax: B...
      • New top story on Hacker News: WSL Manager
      • Heavy rains and flooding kills at least 23 in Nairobi
      • New top story on Hacker News: Show HN: Prompt Armo...
      • New top story on Hacker News: A tool that REMOVES ...
      • Beirut evacuees 'sleeping in tents and cars'
      • Iran's high-risk war strategy seems to centre on e...
      • Watershed moment as Russia's sporting exile ends
      • New top story on Hacker News: Someone needs to go ...
      • New top story on Hacker News: 19th century silent ...
      • A rap star might just beat a former PM - what this...
      • Celebrations around the world after strikes on Iran
      • New top story on Hacker News: January in Servo: pr...
    • ►  February (58)
      • A 'delicate' balance for Canada and a 'win-win' fo...
      • New top story on Hacker News: Werner Herzog Betwee...
      • New top story on Hacker News: Theory of Constraint...
      • New top story on Hacker News: Show HN: Mission Con...
      • New top story on Hacker News: Why isn't LA repavin...
      • New top story on Hacker News: HuggingFace Agent Sk...
      • Ramaphosa thanks Putin for release of South Africa...
      • Zelensky tells BBC Putin has started WW3 and must ...
      • New top story on Hacker News: ASML unveils EUV lig...
      • New top story on Hacker News: Fresh File Explorer ...
      • Armed man killed after entering secure perimeter o...
      • New top story on Hacker News: Loon: A functional l...
      • Giant tortoises return to Galápagos island after n...
      • New top story on Hacker News: KFC, Nando's, and ot...
      • New top story on Hacker News: Blue light filters d...
      • New top story on Hacker News: DOGE Bro's Grant Rev...
      • US-Iran tension: Why Tehran may choose confrontati...
      • New top story on Hacker News: DNS-Persist-01: A Ne...
      • I would scream in my sleep: Women from Syria's Ala...
      • New top story on Hacker News: Russia's economy has...
      • New top story on Hacker News: Discord Rival Gets O...
      • New top story on Hacker News: Sub-Millisecond RAG ...
      • Family of Zambia's ex-President Lungu dismiss pois...
      • New top story on Hacker News: Use Protocols, Not S...
      • New top story on Hacker News: Privilege Is Bad Gra...
      • New top story on Hacker News: Show HN: Jemini – Ge...
      • New top story on Hacker News: Show HN: Nerve: Stit...
      • New top story on Hacker News: Scientists observe a...
      • New top story on Hacker News: Towards Autonomous M...
      • New top story on Hacker News: (Ars) Editor's Note:...
      • New top story on Hacker News: Soviet Tektronix 700...
      • New top story on Hacker News: A header-only C vect...
      • New top story on Hacker News: uBlock filter list t...
      • 'Canadians are with you,' says PM at Tumbler Ridge...
      • New top story on Hacker News: Show HN: Moltis – AI...
    • ►  January (57)
  • ►  2025 (738)
    • ►  December (53)
    • ►  November (52)
    • ►  October (60)
    • ►  September (61)
    • ►  August (63)
    • ►  July (71)
    • ►  June (64)
    • ►  May (71)
    • ►  April (61)
    • ►  March (66)
    • ►  February (51)
    • ►  January (65)
  • ►  2024 (756)
    • ►  December (73)
    • ►  November (69)
    • ►  October (64)
    • ►  September (58)
    • ►  August (71)
    • ►  July (63)
    • ►  June (63)
    • ►  May (64)
    • ►  April (64)
    • ►  March (66)
    • ►  February (35)
    • ►  January (66)
  • ►  2023 (1593)
    • ►  December (64)
    • ►  November (69)
    • ►  October (80)
    • ►  September (112)
    • ►  August (111)
    • ►  July (129)
    • ►  June (135)
    • ►  May (181)
    • ►  April (173)
    • ►  March (189)
    • ►  February (166)
    • ►  January (184)
  • ►  2022 (2295)
    • ►  December (177)
    • ►  November (178)
    • ►  October (202)
    • ►  September (194)
    • ►  August (194)
    • ►  July (198)
    • ►  June (184)
    • ►  May (186)
    • ►  April (195)
    • ►  March (184)
    • ►  February (183)
    • ►  January (220)
  • ►  2021 (7845)
    • ►  December (335)
    • ►  November (635)
    • ►  October (656)
    • ►  September (636)
    • ►  August (713)
    • ►  July (713)
    • ►  June (690)
    • ►  May (707)
    • ►  April (690)
    • ►  March (713)
    • ►  February (644)
    • ►  January (713)
  • ►  2020 (8315)
    • ►  December (713)
    • ►  November (688)
    • ►  October (614)
    • ►  September (690)
    • ►  August (713)
    • ►  July (713)
    • ►  June (690)
    • ►  May (713)
    • ►  April (690)
    • ►  March (711)
    • ►  February (667)
    • ►  January (713)
  • ►  2019 (19506)
    • ►  December (712)
    • ►  November (689)
    • ►  October (712)
    • ►  September (681)
    • ►  August (712)
    • ►  July (713)
    • ►  June (689)
    • ►  May (2935)
    • ►  April (2907)
    • ►  March (3014)
    • ►  February (2731)
    • ►  January (3011)
  • ►  2018 (21108)
    • ►  December (3036)
    • ►  November (2927)
    • ►  October (3024)
    • ►  September (2931)
    • ►  August (3016)
    • ►  July (3033)
    • ►  June (2790)
    • ►  May (350)
    • ►  March (1)

About Me

Champ
View my complete profile
Powered by Blogger.

Sample Text

Copyright © latest news | Powered by Blogger
Design by Hardeep Asrani | Blogger Theme by NewBloggerThemes.com