frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The new HTTP QUERY method explained

https://kreya.app/blog/new-http-query-method-explained/
101•CommonGuy•3h ago•55 comments

Steam Machine launches today

https://store.steampowered.com/news/group/45479024/view/685257114654870245
1587•theschwa•16h ago•1373 comments

Will It Mythos?

https://swelljoe.com/post/will-it-mythos/
164•mindingnever•5h ago•93 comments

Polymarket has flooded social media with deceptive videos by paid creators

https://www.wsj.com/business/media/polymarket-social-media-bets-prediction-market-441cdeb5?st=HhTZY2
293•Vaslo•2d ago•225 comments

GLM-5.2 – How to Run Locally

https://unsloth.ai/docs/models/glm-5.2
395•TechTechTech•12h ago•171 comments

Plotnine

https://plotnine.org/
31•tosh•4d ago•11 comments

VibeThinker: 3B param model that beats Opus 4.5 on reasoning with novel SFT+GRPO

https://arxiv.org/abs/2606.16140
188•timhigins•7h ago•73 comments

In praise of memcached

https://jchri.st/blog/in-praise-of-memcached/
159•j03b•8h ago•59 comments

8086 Segmented Memory was a good idea

https://owl.billpg.com/8086-segmented-memory-was-a-good-idea-almost/
15•billpg•1d ago•6 comments

Improvements to Std:Format in C++26

https://mariusbancila.ro/blog/2026/06/19/improvements-to-stdformat-in-c26/
21•jandeboevrie•2d ago•7 comments

An Introduction to YOLO26

https://blog.roboflow.com/yolo26/
72•teleforce•8h ago•24 comments

OpenAI DayBreak – GPT-5.5-Cyber

https://openai.com/index/daybreak-securing-the-world/
99•AaronO•8h ago•49 comments

My Mathematical Regression

https://blog.dahl.dev/posts/my-mathematical-regression/
305•aleda145•3d ago•111 comments

Optocam Zero: a Pi Zero based digital camera made using off the shelf components

https://github.com/dorukkumkumoglu/optocamzero
178•iamnothere•14h ago•47 comments

AI Built a Nuke and Still Lost

https://www.lwilko.com/blog/i-gave-an-ai-a-civilization
52•kensai•1h ago•46 comments

Who Does What? Team Topologies for the Agentic Platform

https://blog.owulveryck.info/2026/06/22/who-does-what-team-topologies-for-the-agentic-platform.html
13•owulveryck•5h ago•0 comments

Ultralytics YOLO26: Unified Real-Time End-to-End Vision Models

https://arxiv.org/abs/2606.03748
42•teleforce•7h ago•5 comments

Moebius: 0.2B image inpainting model with 10B-level performance

https://hustvl.github.io/Moebius/
289•DSemba•20h ago•71 comments

Package Managers need global hooks

https://captnemo.in/blog/2026/06/17/package-managers-need-hooks/
25•evakhoury•4d ago•33 comments

Show HN: Ideate a trading strategy with an Ex-Citadel Trader

https://sean-but-ai.vercel.app/
13•Entropnt•1h ago•8 comments

Show HN: Oak – Git alternative designed for agents

https://oak.space/oak/oak
187•zdgeier•18h ago•162 comments

Canada plans 'nuclear renaissance' with up to 10 reactors built by 2040

https://www.cbc.ca/news/politics/federal-nuclear-strategy-9.7244509
483•geox•14h ago•333 comments

Cyberdecks, going analog, and convivial technology

https://blog.hydroponictrash.solar/cyberdecks-going-analog-and-convivial-technology/
106•akkartik•3d ago•58 comments

Windows NT for GameCube/Wii

https://github.com/Wack0/entii-for-workcubes
73•zdw•3d ago•11 comments

Show HN: A pure ARM64 Assembly web server, now on Linux with CGI for no reason

https://github.com/imtomt/ymawky/tree/linux
19•imtomt•5h ago•6 comments

Kyber (YC W23) Is Hiring a Head of Engineering

https://www.ycombinator.com/companies/kyber/jobs/FGmI8mx-head-of-engineering
1•asontha•12h ago

Flock-Powered Police Chiefs Stalking Women Shows Why Warrants Are Needed

https://ipvm.com/reports/police-chiefs-track
519•jhonovich•14h ago•225 comments

Show HN: Got sick of ads, so I made my own logic puzzle site

https://puzzlelair.com/
201•HaxleRose•21h ago•120 comments

Help I accidentally a wigglegram

https://lmao.center/blog/wiggle-accidents/
532•gregsadetsky•3d ago•122 comments

Canyon HUD helmet for road riding

https://media-centre.canyon.com/en-INT/266866-new-canyon-heads-up-display-helmet-could-be-a-safet...
97•zh3•2d ago•114 comments
Open in hackernews

Plotnine

https://plotnine.org/
29•tosh•4d ago

Comments

jstanley•1h ago
Using operator overloading of "+" to configure the plot is... a choice.
jamessb•1h ago
Plotnine is heavily inspired by the ggplot2 library, which uses the + operator in the same way: https://ggplot2.tidyverse.org/#usage
domoritz•1h ago
For another grammar-of-graphics-based visualization library (flexibly compose charts rather than simply pick a template), check out Altair https://altair-viz.github.io.
piqufoh•1h ago
`from plotnine import *`

... I love the idea of a new python plotting library, but why is this anti-pattern so common with plotting libs?

jamessb•1h ago
> a new python plotting library

Whilst it's still not yet at 1.0.0, it's not that new: the first (0.1.0) release was in 2017: https://pypi.org/project/plotnine/#history

LoganDark•46m ago
matplotlib's first release was in 2003, making it more than twice as old.
globular-toast•1h ago
Because it's aimed at data scientists who would rather be using R...
teruakohatu•44m ago
Because most of the time this will be used is not part of a software development project but rather producing publication plots in a script or plots in a notebook. Not what you would want to do when incorporating it into a web app.
jeroenjanssens•35m ago
While it’s generally considered to be bad practice to import everything into the global namespace, I think it’s fine to do this in an ad-hoc environment such as a notebook as it makes using the many functions plotnine provides more convenient. An additional advantage is that the resulting code more closely resembles the original ggplot2 code. Alternatively, it’s quite common to `import plotnine as p9` and prefix every function with `p9`.

Disclaimer: I made the plotnine homepage and cheatsheet.

globular-toast•1h ago
Back when I did a lot of data stuff I used ggplot in R because it seemed to be popular, but I was just copy/pasting examples. Then one day I finally started to "get it" and actually read the manual. Learning the grammar of graphics was like a super power. I got to the point I could open pretty much anything people sent me and visualise it in a matter of seconds.

Although I've used Python professionally a lot more than R, I still felt like R was better at this. Somehow opening files in Python always feels a bit more "heavy". I don't really know why, though.

qrobit•52m ago
And it comes with tidyverse-like cheatsheet[1] that I confused with ggplot2 when first discovered plotnine

[1]: https://github.com/rstudio/cheatsheets/blob/main/plotnine.pd...