frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

UK shares findings of damning climate crisis national security report

https://www.theguardian.com/environment/2026/sep/23/uk-climate-crisis-national-security-report-su...
1•littlexsparkee•2m ago•0 comments

Tiny C Compiler with POSIX superpowers

https://github.com/Muras69/TCCygwin
1•Muras•3m ago•1 comments

The Majority of Actors Are Struggling

https://www.pajiba.com/film_reviews/jack-havens-plea-for-work-reminds-us-that-the-majority-of-act...
1•mathgenius•4m ago•0 comments

Fire in the brain: How psychosis may arise when the body attacks itself

https://knowablemagazine.org/content/article/mind/2026/new-research-on-autoimmune-causes-of-psych...
1•knowablemag•9m ago•0 comments

We've Turned Starlink into a Planetary Barometer

https://www.spaceweather.com/starlink/starlink_drag_explainer.html
1•NKosmatos•11m ago•0 comments

One setup, every AI CLI with agnostic-AI

https://agnostic-ai.org/
1•Chemaclass•11m ago•1 comments

Why did Google declare war on HTTP? (2016)

https://wp.josh.com/2016/04/01/googles-war-on-http/
1•1vuio0pswjnm7•16m ago•1 comments

Show HN: NetHackers

https://nethackers.dunnolab.ai/
1•vokneruk•17m ago•0 comments

Sidehoe – Your Roster. Handled

https://www.sidehoe.chat/
1•sergiotapia•19m ago•0 comments

That About Wraps It Up for Stock Mac UI

https://inessential.com/2026/09/22/that-about-wraps-it-up-for.html
2•birdculture•19m ago•0 comments

Meta Connect 2026

https://www.meta.com/en-gb/connect/#watch
1•pelcg•20m ago•0 comments

I tried using Jev for judgment based guardrails

https://github.com/deepansh-saxena/jev-guardrails
1•deepanshsaxena•20m ago•0 comments

Why Don't My Agents Break Containment?

https://harper.blog/2026/09/22/break-away/
1•pongogogo•20m ago•0 comments

Show HN: Recipe Card Creator

https://www.sunnyshorescreative.com/recipe-card-creator
1•bobblywobbles•22m ago•0 comments

Show HN: Hosted JayBase – An append-only data store for safe AI agent writes

https://jaybase.ai
1•kvisner•22m ago•0 comments

Trump Invites Putin to G20 in Miami, Rubio Says

https://www.politico.com/news/2026/09/23/trump-putin-g20-miami-01089850
3•_djo_•24m ago•0 comments

Critical GitLab Auth RCE via Double-Free in Regex Parser

https://docs.gitlab.com/releases/patches/patch-release-gitlab-19-4-1-released/
1•pelcg•24m ago•0 comments

Ursa: A storage engine that implements Lakestream

https://github.com/openlakestream/ursa
3•jinqueeny•27m ago•0 comments

Show HN: Make cursed fonts like Times New Bastard

https://bastardica.mitpit.com
1•MitPitt•28m ago•0 comments

I made a social media site

1•saqaliba•28m ago•0 comments

Show HN: The Mouse Is Coming Too – Easy Switch for Legacy Logitech Devices

https://github.com/ensoenso/the-mouse-is-coming-too
1•evek•28m ago•0 comments

Show HN: PromptSpend – LLM API prices re-checked daily, with source per price

https://promptspend.com/
1•AndrewAvery7•31m ago•1 comments

Do Our Emotions Have a Culture?

https://booksandideas.net/Do-Our-Emotions-Have-a-Culture
1•rdmuser•32m ago•0 comments

ArXiv receives multiyear commitments to support it as an independent nonprofit

https://blog.arxiv.org/2026/09/23/arxiv-receives-multiyear-investment/
5•JohnHammersley•36m ago•0 comments

ASML currently sells no chipmaking machines in Europe, executive says

https://nltimes.nl/2026/09/22/asml-currently-sells-chipmaking-machines-europe-executive-says
8•doener•39m ago•1 comments

AI leaders warn UN of security risks as systems grow more powerful

https://www.reuters.com/business/ai-leaders-brief-un-amid-warnings-technology-could-slip-beyond-h...
1•layer8•40m ago•0 comments

In-Process MCP for MySQL

https://villagesql.com/blog/mcp/
1•deesix•40m ago•1 comments

Researcher Found 76 Vulnerabilities in Managed PostgreSQL Security Extensions

https://mehmetince.net/part-2-6-breaking-the-superuser-guardrails-attacking-security-hardening-ex...
2•ozirus•41m ago•0 comments

Linux support is coming to Snapdragon X2 Series

https://www.qualcomm.com/news/onq/2026/09/snapdragon-summit-agentic-ai-pcs-linux
29•aaronday•43m ago•9 comments

Toyota is finally taking its best-seller electric

https://electrek.co/2026/09/23/toyota-best-selling-corolla-electric/
3•cisc•44m ago•0 comments
Open in hackernews

Ask HN: Is there a general, multi-PL programming task dataset?

1•quartztz•1y ago
Hello!

Being a student interested in PL design, I have had this idea floating around for a while: the gist is finding out what programming languages LLMs might be the most proficient in, to study their design choices and syntactic features with the goal of designing the perfect language for LLMs. This is, of course, gimmicky, but I entertained the idea for a while as a fun afterschool project.

The challenge is: what would be the best way to evaluate programming performance _in specific languages_? There are two main hypotheses here:

1. There are intrinsic syntactic/structural features that the transformer architecture is uniquely able to parse/reproduce/understand best, leading to higher quality code generated. For example: Lisp dialects make parsing code structure and blocks very easy, so one could assume an LLM can "understand their code better" 2. There is so much Python/JS out there that the question isn't even worth asking, and the performance in those will beat whatever other language you throw at it. This is probably not as much of a point thanks to newer transformer architectures but the question is still up.

I suspect the answer can be made somewhat interesting by considering performance relative to language popularity, but the ground question is: is there a general dataset containing different programming challenges, of varying difficulty, in multiple languages, with standard solutions? I couldn't find anything when I looked around, but I might have missed something obvious. It wouldn't be impossible to build a simple website to crowdsource, but I'm thinking that if I missed something obvious I'd rather find out early than late. Also, if you have any input on the project itself, I'd love to hear your ideas!

Comments

Someone•1y ago
> For example: Lisp dialects make parsing code structure and blocks very easy, so one could assume an LLM can "understand their code better"

I would expect the reverse: lisp has no syntactic sugar, making it harder for a LLM to glue code fragments together in a way that produces valid lisp code. Even guaranteeing that parentheses are correctly nested already can be a challenge.

As to a set of programs: they aren’t exactly what you’re looking for, but I would consider https://projecteuler.net (does not contain solutions, but searching for project Euler solutions” finds some) or https://benchmarksgame-team.pages.debian.net/benchmarksgame.

sargstuff•1y ago
Very open ended questions. Geeks for Geeks loosely organized around computer science topics of study : https://www.geeksforgeeks.org/

nit-pick details:

Ignoring hardware differences, "performance" comparisons can be based on differences between algorithm(s) used vs. how algorithm is implimented. For a given language, "algorithm implimentation performance" can be defined as the trade-offs on how a a given algorithm is implimented in a language (compared to other programming languages, but also easy use/flexibility based on 'language generation level -> https://www.geeksforgeeks.org/generation-programming-languag... )

----------------------

1) General computation language specialty 'modules' not withstanding; "languages" are built/optimised around core algorithmic concepts / anticipated area/concentration of targeted professional environment. aka opencl (gpu), R (statistics), Lisp (engineering design), C (OS level), sql (data selection), jasper reports, cobol (business), etc. Languages tend to be 'popular' because of the ecosystem provided around/for a given language.

snarky side note -> can always write a more standard language that compiles to an esolang & provide appropriate emacs/vim/sed/spacemacs ide support.: https://esolangs.org/wiki/Main_Page

  LLM's are very useful at curating information and recognizing/summarizing "statisical" relevance. aka apl is great for engineering mind set, not so good for business use cases aka cobal.  LLM might recognize a language for a given user that combines commonly used 'apl' aspecs of user and commonly used 'cobal' aspecs of user and recommend a language(s) with suitable commonalities for given user. 


2) Search engine topic 'coding challenges' 'algorithmic coding challenges' brings up many types of answers/sites for honing one's coding skills (various languages, beginner to expert, etc). Coding 'algorithms' vs. coming up with algorithm(s) to code is sort of a side aspect. Also differences in 'competition' challenges vs. 'technical challenges' (aka 512 c64 vs. 1 raspberry pi) ; vs. "computer science coding challenges" vs. 'computational genomic challenges'

     ?? how easy / hard based on 'profession' aka artist vs. software designer 20 years experience programming in scheme; environment -- NASA vs. google vs. insurance company.

   ?? from scratch : https://synoptek.com/insights/it-blogs/10-challenges-every-software-product-developer-faces/

   ?? based on industry standards ?? ; just trying to keep skills honed ??