frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Open in hackernews

Show HN: Codigo – The Programming Language Repository

https://codigolangs.com
72•adamjhf•2d ago
Codigo is a site I've built for discovering, exploring and comparing programming languages, including language news, trends and code examples.

I couldn't find any definitive resource for finding new languages and comparing them, so decided to make one.

It combines dynamic data from sources like PyPL Index, TIOBE Index and official feeds as well as static data about each language defined in a structured format. The language data is open-contribution and can be updated by anyone on the GitHub repository: https://github.com/codigo-langs/codigo.

I styled it specifically for coders - using a monospaced font and terminal-esque styling, along with many common IDE themes to choose from.

Codigo is built using Rust, Axum, HTMX and Alpine.js.

Keen to hear any feedback!

Comments

ranger_danger•1d ago
Why is the C++ example for 100 doors 10,000x over-complicated compared to the C version?

Is this a sick joke?

benatkin•1d ago
It gets the last one, maybe it would be better if it got the first one: https://rosettacode.org/wiki/100_doors#C
philocalyst•1d ago
Wondering if you would be interested in plugging into my

https://github.com/philocalyst/lang-config

Which contains comment tokens, block and line, common language servers, special pairs, recognized shebangs, root scopes, etc.

It's mostly for use in one of my other projects, although you can see some of its higher aspirations one day in the README. Would love to collaborate with you and make it useful for a real use-case outside my own! If any of the information contained there could be useful! Reach out through an issue or through an email (linked in my github profile) if you're keen

pella•1d ago
I’m interested in a list of new open-source programming languages released in the last 5, 3, and 1 years - ideally organized by category. Does such a list exist anywhere?

EDIT: minimal wikidata version: https://w.wiki/E5e3

genewitch•23h ago
How? Just a bunch of volunteers? Make a wiki-like and let people edit it, show HN, and maybe eventually PL makers will add their PL to your database.

Even if you scrape Wikipedia, or stack overflow or whatever, you're going to miss the newest and also the esoteric and possibly even wider use stuff. Basically you can't do it alone.

My life is a series of "why doesn't this exist? Oh, what a gigantic pain in the ass. That's why it doesn't exist. God bless anyone who makes this, because it ain't gunna be me" situations. I hope someone has done what you are looking for.

pella•23h ago
I have created a minimal wikidata query https://w.wiki/E5e3

  SELECT ?language ?languageLabel ?inceptionDate 
         (GROUP_CONCAT(DISTINCT ?website; SEPARATOR=", ") AS ?websites)
         (GROUP_CONCAT(DISTINCT ?developerLabel; SEPARATOR=", ") AS ?developers)
         (GROUP_CONCAT(DISTINCT ?paradigmLabel; SEPARATOR=", ") AS ?paradigms)
  WHERE {
    # Find items that are either programming languages or types of programming languages
    {
      ?language wdt:P31 wd:Q9143 .  # programming language
    } UNION {
      ?language wdt:P31 wd:Q116481801 .  # type of programming language
    }
    
    # Get the inception date
    ?language wdt:P571 ?inceptionDate .
    
    # Filter for languages created within the last 10 years
    FILTER(?inceptionDate >= "2009-05-12"^^xsd:dateTime)
    
    # Optional properties to get more information
    OPTIONAL { ?language wdt:P856 ?website . }  # official website
    OPTIONAL { 
      ?language wdt:P178 ?developer . 
      ?developer rdfs:label ?developerLabel .
      FILTER(lang(?developerLabel) = "en")
    }  # developer
    OPTIONAL { 
      ?language wdt:P3966 ?paradigm . 
      ?paradigm rdfs:label ?paradigmLabel .
      FILTER(lang(?paradigmLabel) = "en")
    }  # programming paradigm
    
    ?language rdfs:label ?languageLabel .
    FILTER(lang(?languageLabel) = "en")
  }
  GROUP BY ?language ?languageLabel ?inceptionDate
  ORDER BY DESC(?inceptionDate)  # Sort by date, newest first
  LIMIT 100
genewitch•15h ago
It's a good start, and i can't think of missing items off-hand, and i didn't know you could do that. I've done queries like this on the wiki sql itself locally, but i didn't know there was a notebook interface to querying like that.
pella•23h ago
I’m glad to see there’s a substantial metadata system powering the portal (and even minimal Wikidata integration + CC0-1.0 license! )

This is the Julia: https://github.com/codigo-langs/codigo/blob/master/languages...

I assume the initial database was built on Wikidata plus a lot of data cleaning. Is the code for the Wikidata synchronization available anywhere? I can’t seem to find it in the repo.

One thing you could add is a free-form wiki-style description field, where you could even embed an "awesome" list for each language, for example: https://github.com/coderonion/awesome-julia-list

worldsayshi•23h ago
Would be interesting to see which languages a language has influenced in addition to which influenced it.
blami•22h ago
Great job! Would be lovely to have filters on when language was created. Also one minor nit, I am not super mouse oriented person and wanted to bookmark the site but ctrl+d is mapped to scroll down.
tgv•22h ago
You might want to add some relation between the versions of Ada. Each is basically a superset of the previous version. You could treat them as one, and specify per feature from which version onward it is part of the language, e.g. https://www.adaic.org/advantages/ada-comp-chart
adamjhf•7h ago
Yes, at the moment it’s just a flat listing of languages. Will think about how to solve for dialects etc. without making it overly complex.
cranberryturkey•21h ago
how do I add https://smashlang.com?
adamjhf•7h ago
New languages can be added by adding a relevant YAML file to https://github.com/codigo-langs/codigo/tree/master/languages, following the defined schema.
huhtenberg•20h ago
A more comprehensive list of 900+ languages -

https://github.com/ChessMax/awesome-programming-languages

LandR•20h ago
If you change the theme, sometimes the theme dropdown shows white text on a white background.

e.g. on chrome / Ubuntu, change theme to material or nord-dark, then dropdown is all white (shows if you hover the items)

Same if you go to a programming language page, the drop down for code examples is white on white

WillAdams•18h ago
How are you defining "programming language"?

TeX is listed: https://codigolangs.com/language/TeX

but OpenSCAD is not.

anentropic•17h ago
What is it?
elviejo•17h ago
You can also look at pldb.com It has a huge list of programming languages and its attributes.
aredox•17h ago
It is https://pldb.io/

Show HN: Lumoar – Free SOC 2 tool for SaaS startups

https://www.lumoar.com
73•asdxrfx•11h ago•28 comments

Show HN: Airweave – Let agents search any app

https://github.com/airweave-ai/airweave
139•lennertjansen•14h ago•35 comments

Show HN: CLI that spots fake GitHub stars, risky dependencies and licence traps

https://github.com/m-ahmed-elbeskeri/Starguard
100•artski•17h ago•62 comments

Show HN: Triplex, a visual workspace for React / Three Fiber

https://github.com/trytriplex/triplex
2•madou•2h ago•0 comments

Show HN: Open-source MMORPG prototype inspired by World of Warcraft

http://everwilds.io/
3•nickyvanurk•3h ago•2 comments

Show HN: The missing inbox for GitHub pull requests

https://github.com/pvcnt/mergeable
23•pvcnt•12h ago•2 comments

Show HN: Codigo – The Programming Language Repository

https://codigolangs.com
72•adamjhf•2d ago•20 comments

Show HN: LLM-God – An LLM Multiprompting App

https://github.com/czhou578/llm-god/tree/1.0.3
2•czhou578•5h ago•0 comments

Show HN: AGI Hits a Structural Wall – A Billion-Dollar Problem

6•mmschlereth•6h ago•0 comments

Show HN: Open-source AI code review agent that's aware of your entire codebase

https://docs.sourcebot.dev/docs/agents/review-agent
4•msukkarieh•7h ago•0 comments

Show HN: GlassFlow – OSS streaming dedup and joins from Kafka to ClickHouse

https://github.com/glassflow/clickhouse-etl
76•super_ar•1d ago•31 comments

Show HN: Translate between dialects and share SQL queries on the browser

https://sqlscope.netlify.app
15•WhyIsItAlwaysHN•4d ago•2 comments

Show HN: Blog comments, nice looking, open source – Talkyard

https://blog-comments.talkyard.io/demo/
18•KajMagnus•1d ago•2 comments

Show HN: GS-Base – A multifunctional database tool with Python integration

https://citadel5.com/gs-base.htm
2•jpiech•9h ago•0 comments

Show HN: MMORPG prototype inspired by World of Warcraft

https://github.com/nickyvanurk/everwilds
21•nickyvanurk•21h ago•7 comments

Show HN: Jester – An RSS/Atom Reader and Content Management Tool

https://jesterengine.com/
4•dan_h•11h ago•0 comments

Show HN: LoopMix128 – Fast C PRNG (.46ns), 2^128 Period, BigCrush/PractRand Pass

https://github.com/danielcota/LoopMix128
74•the_othernet•2d ago•34 comments

Show HN: Vom Decision Platform (Cursor for Decision Analyst)

https://www.vomdecision.com
15•davidreisbr•4d ago•10 comments

Show HN: Code Claude Code

https://github.com/RVCA212/codesys
117•sean_•2d ago•25 comments

Show HN: Xenolab – Rasp Pi monitor for my pet carnivourus plants

https://github.com/blackrabbit17/xenolab
130•malux85•2d ago•53 comments

Show HN: Hydra (YC W22) – Serverless Analytics on Postgres

https://www.hydra.so/
58•coatue•3d ago•33 comments

Show HN: Eurker – A Developer-First Uptime Monitoring Platform with JSON Configs

https://www.eurker.com/
3•ajoshu•15h ago•0 comments

Show HN: Oliphaunt – A native Mastodon client for macOS

https://testflight.apple.com/join/Epq1P3Cw
103•anosidium•3d ago•38 comments

Show HN: I’m 16 years old and working on my first startup, a study app

https://www.notiv.app/
80•WilliamCranna•1d ago•123 comments

Show HN: Downloads and saves any YouTube videos and playlists

https://github.com/pH-7/Download-Simply-Videos-From-YouTube
4•pierres7•16h ago•0 comments

Show HN: Vibemail – Chrome extension for vibe emailing

https://chromewebstore.google.com/detail/vibemail/dijcjhhnpgoenmkmahigmdgpkajhhhbg
9•aliyanishfaq•23h ago•7 comments

Show HN: I Built Remind Me AI. It's Like Unlimited GPT Tasks. Try the Demo

https://app.arcade.software/share/PrR3lG51cRjJkk6vEz3R
5•ShawnBuilds•1d ago•0 comments

Show HN: Hyvector – A fast and modern SVG editor

https://www.hyvector.com
325•jansan•3d ago•92 comments

Show HN: Pure Go QuickJS JavaScript engine (Golang)

https://pkg.go.dev/modernc.org/quickjs
4•0xjnml•17h ago•1 comments

Show HN: A backend agnostic Ruby framework for building reactive desktop apps

https://codeberg.org/skinnyjames/hokusai
91•zero-st4rs•3d ago•34 comments