ohai.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
A cozy, fast and secure Mastodon server where everyone is welcome. Run by the folks at ohai.is.

Administered by:

Server stats:

1.8K
active users

#tcl

1 post1 participant0 posts today

🌗 Tcl 程式語言:綜合指南
➤ Tcl 語言的權威指南
magicsplat.com/ttpl/index.html
這本《Tcl 程式語言:綜合指南》第二版涵蓋了 Tcl 9 的所有內容,提供對此極具彈性和多功能語言的全面介紹。從基礎知識到進階概念,本書深入探討了 Tcl 的核心功能、模組化、國際化、I/O 框架、並行程式設計、安全性以及部署方法。書中提供可下載的章節、支援資源和使用者評論,廣受好評,被譽為 Tcl 程式設計領域的最佳參考書籍。
+ 這本書真的是 Tcl 程式設計領域的佼佼者,深度和廣度都遠超其他同類書籍。
+ 內容詳盡,實用性強,是 Tcl 學習和工作不可或缺的參考資料。
#程式設計 #Tcl #技術書籍

www.magicsplat.comThe Tcl Programming Language: A Comprehensive Guide | MagicsplatOfficial page for the book The Tcl Programming Language
Continued thread

Naïf que je suis, on me dit que les flics ne sont pas là pour des problèmes de titres de transport mais pour les sans papiers (méthodes RATP ?)

Scandalisé de voir une telle débauche de moyens publiques pour le crime suprême (aux yeux de certains) qu'est le franchissement illégal de frontière ! 😡
Voler des millions d'argent public oui, survivre non!

@BrunoBernard #tcl #teamavocat

🌀 Découvrez le futur de nos Rives : Le futur de notre Métropole se fait avec nos cours d'eau !

➕ Navette Fluviale #TCL 🛥
➕ Navettes touristiques ⛵
➕ Activités aquatiques 🛶
➕ Végétalisation 🌿
➕ Logistique urbaine 📦

🔎📊 Des études pour des zones de baignades à moyen-terme. 🏊

Wusstet ihr, dass der Hersteller #TCL die mittlerweile zweitgrößte #TV-Marke weltweit ist? Das Unternehmen hat nun gleich mehrere neue Fernseher einer neuen Generation vorgestellt, die sich vom kleinen 32″-Einstiegsmodell bis hin zum #MiniLED-Gerät mit satten 98 Zoll bewegen. Wir stellen die Neuerscheinungen bei uns im #Blog vor.

Zum Artikel: appgefahren.de/?p=376044

🌘 tänzer:Tcl 的可愛網頁伺服器框架
➤ tänzer:Tcl 的全新網頁伺服器框架
tanzer.io/
tänzer 是 Tcl 的一個產業級網頁伺服器框架,提供簡單環境撰寫 HTTP/1.1 網路應用程式。它具有異步支持、請求路由引擎、SCGI 客戶端及伺服端支持等特點,讓您輕鬆寫出網路應用程式。
+ 這個 Tcl 框架看起來很有潛力,讓網路應用程式開發變得更輕鬆。
+ 簡潔而強大的工具,對於想要快速建立網路服務的開發者來說會非常實用。
#Tcl 框架

tanzer.iotänzer: The lovable web server framework for Tcl!

#SQLite was designed as an #TCL extension. There are ~trillion SQLite databases in active use. SQLite heavily relies on #TCL: C code generation via mksqlite3c.tcl, C code isn't edited directly by the SQLite developers, and for testing , and for doc generation). The devs use a custom editor written in Tcl/Tk called "e" to edit the source! There's a custom versioning system Fossil, a custom chat-room written in Tcl/Tk!

tcl-lang.org/community/tcl2017

www.tcl-lang.orgSQLite's Use Of Tcl

Might as well give this a shot.

I want to get out of my current field and do something I can be happy with for a company I can feel good about. I'm currently in the SE US, but want to move back to mid-Atlantic/ North East. Remote is good too.

I have over 10 years of experience of various odd jobs in the embedded electronics space. I'm often moved around as I pick things up quickly and give insight others find valuable.
I've done FPGA verification, FPGA design, software and hardware reverse engineering. I have at least some experience with most standard embedded communication protocols and am very at home in electronics labs. I've recently been self teaching web dev using #Flask. I know #VHDL , #python , a bit rusty on #tcl , #c , and #cpp.
#FediHire #getfedihired

Replied in thread

@onyxraven @mcc Tcl is very, very easy to bind to other languages. It was actually a key original goal: rather than creating DSLs, just use Tcl and extend it suitably.

I remember at the time reading that #Lua was influenced by #Tcl. I was never quite sure why I'd thus use Lua rather than just go with Tcl. Possibly at the time, with Tcl being so dynamic, things could be made a bit more efficient in Lua (and thus perform better in games, where it was used). Not sure that's relevant anymore.

Replied in thread

@mcc so then you could do:

webForeach name $names {
<p>Hello: $name</p>
}

Which would return a bunch of HTML with $name replaced suitably. And of course all of that can be in another [subst] that processes your HTML template, so it looks like:

<html>
<body>
[webForeach name $names {
<p>Hello: $name</p>
}]
</body>
</html>

Replied in thread

@mcc I have personally used [subst] in exactly that way: as a templating language for stuff. It's very effective for some basic things. Also really easy to build around it and do even more powerful things due to how #Tcl allows you to build your own language constructs.

So like in addition to [foreach] I could do a [webForeach] (for wont of a better name) that returns whatever string is in it, concatenated for each iteration, but runs [subst] on it for each round.

To this day I'm convinced that by far the best way to do concurrent programming with #threads (beyond graphical programming languages like #Labview, where concurrency is natural) is that used by #Tcl

In other words each thread is created with its own sub-interpreter. Each has its own context, not shared. Information is passed by messaging (which the receiver receives in their own event loop). Channels moved (not shared) explicitly.

This massively reduces race conditions and other nasties.