frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Open in hackernews

Simple programming language with offline usable browser IDE

https://tiki.li/apps/tut_learn.html?v=2505e
104•chrisjj•23h ago

Comments

bn-l•22h ago
Who is this aimed at? Kids? If so it is unbelievably far off the mark.
lukaslalinsky•21h ago
It has a similar vibe to the BASIC I was starting with at around 10-11 years old. When I first saw this, I was thinking it could be a good first language for someone who is actually eager to learn more, but doesn't need to be exposed to the realities of the IT world.
gus_massa•20h ago
I made a somewhat similar project for My daughter when she was 8 or 9 y.o. It was a turtle that has to turn instead of using absolute coordinates like in this article.
James_K•21h ago
There are people who don't know how to program, not necessarily because they are young, but because it hasn't been relevant in their lives yet.
SoftTalker•17h ago
This is most people, and it will never be relevant in their lives ever.
delusional•21h ago
How come? When I was learning HTML 20 years ago it was all angelfire sites and w3schools. This seems like a reasonable analogue to that. It doesn't have to be for all people in an age group.
hyperhello•21h ago
It’s probably just aimed at scratching an itch of the person who designed it. Often when I see “for kids” I see a simplification of what adults would think. Here I see…JavaScript without brackets and parentheses.
bn-l•18h ago
If it is designed for kids then it is off the mark.
mike_ivanov•17h ago
Depends on the kind of kids. I find the approach perfect for the 10-15 years old age group.
istjohn•20h ago
Why do you say that? It seems like a great halfway point between Scratch and Python.
chrisbrandow•19h ago
Why?
mike_ivanov•17h ago
There are 3yo kids, 5yo, 15yo ... 50yo kids. All are different. Don't judge by your own inner kid age.
7thaccount•21h ago
Although simplistic it does remind me of my dream for a simplistic command driven language that actually does the tasks I want in a simple manner. I'm not thinking of tcl either, but if powershell was a lot faster and included support for a lot more things kind of like the graphics language mentioned here. Calling out to the Microsoft GUI tools is such a pain and not worth it given the glacial performance.
WillAdams•20h ago
I've actually been using OpenPythonSCAD for this sort of thing:

https://pythonscad.org/

paired with:

https://www.blockscad3d.com/editor/

it lets me rough out an algorithm (see the section on arcs in: https://github.com/WillAdams/gcodepreview/blob/main/gcodepre... ) interactively, seeing the result on-screen --- then once I have the rough concept, I can re-write it in Python, retaining this interactivity.

EDIT: next step is to work up a batch file which has me running OpenSCAD on a series of files to output .png and .svg files to read them back in and place the output at the appropriate places in the document.

7thaccount•18h ago
Nice setup to solve a problem. Seems like something I would do :)
WillAdams•18h ago
Thanks!

I kind of wish that I could find some tool like to Jupyter Notebook which would work for my needs, but I always run into some odd limitation.

jerf•16h ago
This seems a very surprising combination of technologies to turn into a visual prototyping language. Do you have a blog post or something on this topic that might expand on this workflow?
WillAdams•15h ago
I suppose I should blog about this at: https://designinto3d.com/

but I've written a fair number of posts on it at:

https://forum.makerforums.info/search?q=gcodepreview

and it has come up a few times at:

https://community.carbide3d.com/search?q=gcodepreview

and on the OpenSCAD mailing list --- that latter might need to be extended back in time to encompass: https://github.com/openscad/openscad/issues/2017

EDIT: also see my post history here, and this post might be what you are asking after?

https://news.ycombinator.com/item?id=44108440

Reasons for the technologies:

- OpenSCAD affords 3D modeling

- Python was added to it which finally got me the ability to write out files _and_ mutable variables (programming this w/o them was an interesting intellectual challenge and resulted in a quite stilted programming style)

- G-code is the _lingua franca_ of CNCs, so modeling that seemed a natural fit

- DXFs are imported by many CAD and CAM applications, so supporting them was a no-brainer

- LuaLaTeX is the current (La)TeX implementation, and I've been using/learning TeX since first checking out a copy of _TeX and METAFONT_ from the local college library

Maybe the most important context is what my first project on my Shapeoko 3 entailed: https://community.carbide3d.com/t/locking-register-calipers-... --- drawing in Macromedia Freehand, making a one character font in Fontforge, doing V-carving using F-Engrave, then the balance of the CAM using MakerCAM (a Flash file formerly known as PartKam).

The over-arching name of the project is "Design Into 3D", so also see: https://willadams.gitbook.io/design-into-3d/programming and you may find the (very early) Tugboat article: https://tug.org/TUGboat/tb40-2/tb125adams-3d.pdf of interest.

Glad to answer any other questions you might have! I'm hoping to have a project ready for a "Show HN" before 4 July.

mdaniel•21h ago
Seems to be GPLv3 https://github.com/chkas/easylang/blob/394e29a44458ac67f8483... although I think the line right above that stating "All rights reserved" is actually incompatible with GPLv3 which is designed to grant rights, not reserve them. I am not lawyerly enough to know what the story is with that "must contain a built-in function" clause.

Kind of sad it's not self hosted yet :-D

n2d4•21h ago
"All rights reserved" no longer means anything anymore. In the past, you had to state that you want to reserve copyright, but now this has become the default even if you say nothing.

Either way, this does not conflict with GPLv3; if the author decides to reserve all rights, and then use their reserved right to license the work under a certain license like GPLv3, that is totally fine. Notably, the phrase "All rights reserved" does not recapture any rights that you don't have. It is the same logic under which you're allowed to license your own GPLv3 code under a proprietary, non-FOSS license, but that doesn't revoke the GPLv3 license itself.

ornitorrincos•20h ago
I'm more worried on the advertising clause, which would afaik make it gpl-incompatible for anyone else. (and probably also unfit for osi defined open source)
ModernMech•19h ago
> Kind of sad it's not self hosted yet :-D

Self hosting a language is only really a useful exercise if the language is designed for writing compilers. Easylang doesn't seem to be intended for that, so there are always better things to spend one's time on, as there's an infinite amount of work that goes into making a language, and writing a compiler is not a trivial task. There are better ways to stress test a language.

xunil2ycom•20h ago
So, basically Logo.
RHSeeger•16h ago
That was my first thought; that it looks like a version of Logo; which holds a fond place in my heart from younger years.
abjr•20h ago
I've always heard of this as Easylang https://easylang.online/

Is it just a re-branding as Tiki?

Anyway, the author does AoC every year in it: https://easylang.online/aoc/ which I admit I have referenced during my own attempts.

bertman•19h ago
>Is it just a re-branding as Tiki?

Looks like it. The source link at the bottom of the page goes to https://github.com/chkas/easylang

abjr•7h ago
Found this comment from the author: "tiki.li is a test variant of easylang.online"

https://news.ycombinator.com/item?id=32319578

chrisbrandow•19h ago
This really resonates for me. I have been thinking for sometime that it would be much more useful than scratch, if we could have a simple programming language with a simple canvas next to a text/console output, both of which were separate from the editor.

And ta da!! You’ve done it.

I really think this is wonderful.

layer8•18h ago
This reminds me of Comal 80: https://www.reddit.com/r/c64/comments/1g8gqeu/comal_for_the_...

A programming language halfway between Basic and Pascal, with old-style REPL and Logo-like turtle graphics.

jcmontx•16h ago
It's like a DSL for graphics, really really cool!
WillAdams•9h ago
If that is what one wants, then why not Logo, or METAPOST, or TikZ?

Modern C++ – RAII

https://green7ea.github.io/modern/modern.html
25•green7ea•1h ago•5 comments

The radix 2^51 trick (2017)

https://www.chosenplaintext.ca/articles/radix-2-51-trick.html
220•blobcode•7h ago•30 comments

Radio Astronomy Software Defined Radio (Rasdr)

https://radio-astronomy.org/rasdr
15•zeristor•1h ago•2 comments

Bridged Indexes in OrioleDB: architecture, internals and everyday use?

https://www.orioledb.com/blog/orioledb-bridged-indexes
5•pella•30m ago•0 comments

Tokenization for language modeling: BPE vs. Unigram Language Modeling (2020)

https://ndingwall.github.io/blog/tokenization
8•phewlink•2h ago•0 comments

Atomics and Concurrency

https://redixhumayun.github.io/systems/2024/01/03/atomics-and-concurrency.html
13•LAC-Tech•2d ago•1 comments

Practical SDR: Getting started with software-defined radio

https://nostarch.com/practical-sdr
158•teleforce•9h ago•40 comments

Triangle splatting: radiance fields represented by triangles

https://trianglesplatting.github.io/
87•ath92•6h ago•34 comments

WeatherStar 4000+: Weather Channel Simulator

https://weatherstar.netbymatt.com/
618•adam_gyroscope•19h ago•115 comments

Germany eyes 10% digital tax on global tech groups

https://www.ft.com/content/39d4678d-a7e1-4fce-b8d8-eb799cfed3e6
37•saubeidl•1h ago•18 comments

Turn a Tesla into a mapping vehicle with Mapillary

https://blog.mapillary.com/update/2020/12/09/map-with-your-tesla.html
31•faebi•1d ago•9 comments

FLUX.1 Kontext

https://bfl.ai/models/flux-kontext
391•minimaxir•17h ago•99 comments

Show HN: MCP Server SDK in Bash (~250 lines, zero runtime)

https://github.com/muthuishere/mcp-server-bash-sdk
71•muthuishere•6h ago•19 comments

OpenBAO (Vault open-source fork) Namespaces

https://openbao.org/blog/namespaces-announcement/
44•gslin•7h ago•19 comments

Buttplug MCP

https://github.com/ConAcademy/buttplug-mcp
173•surrTurr•3h ago•89 comments

Why do we get earworms?

https://theneuroscienceofeverydaylife.substack.com/p/mahna-mahna-do-doo-be-do-do-why-do
4•lentoutcry•2h ago•3 comments

The atmospheric memory that feeds billions of people: Monsoon rainfall mechanism

https://phys.org/news/2025-05-atmospheric-memory-billions-people-monsoon.html
26•PaulHoule•2d ago•5 comments

Printing metal on glass with lasers [video]

https://www.youtube.com/watch?v=J0NNO91WyXM
3•surprisetalk•2d ago•1 comments

Player Piano Rolls

https://omeka-s.library.illinois.edu/s/MPAL/page/player-piano-rolls-landing
46•brudgers•8h ago•30 comments

Dr John C. Clark, a scientist who disarmed atomic bombs twice

https://daxe.substack.com/p/disarming-an-atomic-bomb-is-the-worst
93•vinnyglennon•2d ago•61 comments

Show HN: I wrote a modern Command Line Handbook

https://commandline.stribny.name/
351•petr25102018•20h ago•90 comments

Smallest Possible Files

https://github.com/mathiasbynens/small
41•yread•2d ago•16 comments

How to Do Ambitious Research in the Modern Era [video]

https://www.youtube.com/watch?v=w7DVlI_Ztq8
30•surprisetalk•5h ago•1 comments

Show HN: Donut Browser, a Browser Orchestrator

https://donutbrowser.com/
41•andrewzeno•6h ago•19 comments

Superauthenticity: Computer Game Aspect Ratios

https://datadrivengamer.blogspot.com/2025/05/superauthenticity-computer-game-aspect.html
13•msephton•3d ago•4 comments

Show HN: templUI – The UI Kit for templ (CLI-based, like shadcn/UI)

https://templui.io/
35•axadrn•6h ago•20 comments

The David Lynch Collection

https://www.juliensauctions.com/en/auctions/julien-s-auctions-turner-classic-movies-present-the-david-lynch-collection
57•Duanemclemore•5h ago•53 comments

Making C and Python Talk to Each Other

https://leetarxiv.substack.com/p/making-c-and-python-talk-to-each
119•muragekibicho•2d ago•75 comments

I'm starting a social club to solve the male loneliness epidemic

https://wave3.social
210•nswizzle31•11h ago•373 comments

Why is everybody knitting chickens?

https://ironicsans.ghost.io/why-is-everybody-knitting-chickens/
139•mooreds•2d ago•104 comments