Earlier quoted context omitted.
There's some... apps on this server
certified geek seven days a week
Wapp – A Web-Application Framework for Tcl
41–50 of 57 posts
Re: Wapp – A Web-Application Framework for Tcl
#42Re: Wapp – A Web-Application Framework for Tcl
#43i feel like a good business idea would be showing new product names / logos to a group of 50 people from various demographics and ages to see if the name clashes with something else. bc this one quite quite funny
Re: Wapp – A Web-Application Framework for Tcl
#44Earlier quoted context omitted.
In all seriousness, I don't think there is much overlap in people who know about Wapp and those who know about WAP.
I don't think it would be hard to imagine people would be aware of an VERY RECENT INCREDIBLY POPULAR song. Just because you like web shit doesn't mean you are completely disconnected from the greater culture.
* I do not follow or participate in pop culture.
* I do not listen to pop music, ever.
* I do not know who Cardi B is.
Any similarity in the name of the Wapp software framework and music by the individual or group known as "Cardi B" is purely coincidental.Re: Wapp – A Web-Application Framework for Tcl
#45I've heavily used TCL twice in my career, and while I find it an interesting experiment in a language, and actually enjoy a lot of it, I would never recommend it to anyone, nor would I ever pick it for a project. The core idea of "everything is a string" just has a lot of failure modes, and you find yourself making common errors even after years of developing with it. But it's a really neat exploration of a "what if"…
In the 1990s.
Re: Wapp – A Web-Application Framework for Tcl
#46I've heavily used TCL twice in my career, and while I find it an interesting experiment in a language, and actually enjoy a lot of it, I would never recommend it to anyone, nor would I ever pick it for a project. The core idea of "everything is a string" just has a lot of failure modes, and you find yourself making common errors even after years of developing with it. But it's a really neat exploration of a "what if"…
These days, maybe lua is a better choice, but I can see lua being more intimidating for smart, but less software-experienced people. "Everything is a string" might be more intuitive for them.
Re: Wapp – A Web-Application Framework for Tcl
#47Earlier quoted context omitted.
I don't think it would be hard to imagine people would be aware of an VERY RECENT INCREDIBLY POPULAR song. Just because you like web shit doesn't mean you are completely disconnected from the greater culture.
I am the developer of Wapp. I gather (from other comments) that the name "Wapp" collides with a recent pop song by someone named "Cardi B" - please correct me if I have misunderstood. For the record: * I do not follow or participate in pop culture. * I do not listen to pop music, ever. * I do not know who Cardi B is. Any similarity in the name of the Wapp software framework and music by the individual or group known…
That people associate "Wapp" with a sexually suggestive pop song name instead of "app" or "web app" might say more about them than anything inherent from the project name...
Re: Wapp – A Web-Application Framework for Tcl
#48Cardi B's favorite framework
Re: Wapp – A Web-Application Framework for Tcl
#49I've heavily used TCL twice in my career, and while I find it an interesting experiment in a language, and actually enjoy a lot of it, I would never recommend it to anyone, nor would I ever pick it for a project. The core idea of "everything is a string" just has a lot of failure modes, and you find yourself making common errors even after years of developing with it. But it's a really neat exploration of a "what if"…
For example, you can delete or rename procedures on the fly, including built-in procedures. So you can rename a built-in like puts to something else, create your own puts procedure, and then call the old one (under its new name) in your new procedure (in case you wanted to override it to do some pre- or post-processing each time). You can even redefine procedures within themselves.
You can use variables in variable names (PHP does this as well).
The comment character # is a valid name for a variable or a procedure.
"Everything is a string" extends to even lists and code blocks.
Even though we've moved away from the hyperflexibility of languages like Tcl and Perl, they certainly served their purpose, and a lot of their better ideas were refined in their more orderly successors.
Re: Wapp – A Web-Application Framework for Tcl
#50I've heavily used TCL twice in my career, and while I find it an interesting experiment in a language, and actually enjoy a lot of it, I would never recommend it to anyone, nor would I ever pick it for a project. The core idea of "everything is a string" just has a lot of failure modes, and you find yourself making common errors even after years of developing with it. But it's a really neat exploration of a "what if"…