@heikkiket I would say Tcl/Tk but I'm biased of course 😎
https://wiki.tcl-lang.org/page/Showcase
#tcltk
@heikkiket I would say Tcl/Tk but I'm biased of course 😎
https://wiki.tcl-lang.org/page/Showcase
#tcltk
@tcl_tk - or more compactly: dict getdef
#tcl #tcltk #programming
EuroTcl/OpenACS conference 2025 presentation videos are now online at https://learn.wu.ac.at/eurotcl2025/lecturecasts/ 🎬 🎞️ 🎥
#tcl #tcltk #programming #webdev
I have never heard a story that begins with the words "Richard Stallman..." and ends in a good place.
In other news, TIL tcl got screwed.
smh...again.
#ThisFuckingGuyAgain #rms #tcl #browsers #internetlanguages #tcltk #scriptinglanguage #scriptinglanguages
Neat new video on Tcl - "The Most MISUNDERSTOOD Programming Language" - https://www.youtube.com/watch?v=PYh6D1NhatY
#tcl #tcltk #programming
The programme for the EuroTcl / OpenACS conference 2025 has been published:
https://cmacleod.me.uk/tcl/bologna/program.htm
Registration officially ends today but I hear that late registrations will be accepted: https://openacs.km.at 😎
#tcl #tcltk #webdev #openacs
Last chance to register for the 2025 OpenACS & Tcl/Tk Conference, 10-11 July, Bologna, Italy!
Registration closes on Monday 30th June, see https://openacs.km.at .
#tcl #tcltk #programming #webdev
@h4ckernews Amazing progress! Pretty soon thread support in Python will have caught up to what Tcl had 25 years ago! 😎
#python #tcltk #programming
@Setok It's worth pointing out there is a good reason for this change. With the old behaviour you could get very weird breakage if you happened to run otherwise-correct code on a file or directory whose name started with '~' .
#tcltk #programming
🚀🎉 "Tkintergalactic": because nothing screams "modern" like a React-style interface... in Tcl/Tk. 🕰️ Get ready to dive into the time warp where developers trade sanity for #nostalgia, and GitHub tries to convince us that Tcl/Tk is the #future of #UI. 🌀
https://github.com/leontrolski/tkintergalactic #Tkintergalactic #React #TclTk #HackerNews #ngated
Tkintergalactic - Declarative Tcl/Tk UI Library for Python
https://github.com/leontrolski/tkintergalactic
#HackerNews #Tkintergalactic #TclTk #Python #UI #Library #Tech #Innovation #OpenSource
@abcdw It's not too hard in Tcl:
proc run_for_n_seconds {n f} {
set time_limit [clock seconds]
incr time_limit $n
set worker [interp create]
$worker limit time -seconds $time_limit
try {
$worker eval $f
} on error {} {
return "no value"
}
}
Actually this limits execution of f to n seconds *elapsed time* not CPU time, I think it could be extended to check cpu time, but that would be more work.
See docs at https://www.tcl-lang.org/man/tcl9.0/TclCmd/interp.html .
@wolframkriesing #tcl #tcltk -
% string map {{ } {}} { o n e }
one
@mcc dicts are a relatively recent addition, arrays were in Tcl from early on. A dict is a single value, which can be assigned to a variable, passed around etc.. An array is more like a collection of variables.
I tried to capture what's distinctive about Tcl in a blog post a while back - https://colin-macleod.blogspot.com/2020/10/why-im-tcl-ish.html
#tcl #tcltk
日本語プログラミング言語Mind9βのキャンバス大量図形移動 遅延イベントで実装してみる
https://qiita.com/mylifewithviolin/items/71fba4457061c372c96a?utm_campaign=popular_items&utm_medium=feed&utm_source=popular_items