I don't understand the robot / air part.. you can control a robot (running ??) via a NiceGui application/browser somewhere on the network? BTW, is there a way to design the GUI elements using a WYSIWYG-like editor? Along with the standard checkboxes, text.. I'd like to display an image, and have it react everytime a user clicks different parts of the image!
@InventorOfYouTube3 ай бұрын
Ruby Engine had GIL, may still have it
@self-aware9863 ай бұрын
This is awesome 👍
@arj123sub5 ай бұрын
Its a nice framework. Trying it out.
@jonathansilva33645 ай бұрын
Still relevant. Great video.
@brothertyler6 ай бұрын
I like the reverse proxy function - I did this once for a security camera company I ran.
@MounkailaGarba-kl6rq6 ай бұрын
Good presentation
@brothertyler6 ай бұрын
Invocation for it seems really confusing to me. It seems to take the power away from the programmer and abstracts it way too much. With tkinter, I declare an object that I can define its parameters and do stuff to, place where I want, and move it around. With niceGUI - ?????
@NoobsAndGeeks6 ай бұрын
Very interesting presentation, thank you! I'll definitely look into it.
@legion_prex36506 ай бұрын
will try it out! thx so much!
@nathanielthomas44376 ай бұрын
I was unaware of single dispatch before this. One of my gripes with python when compared to other languages (like C/C++) was the lack of function overloading. I thought it was inevitible because of the dynamic type system, but it's good to know that it can still be done! I certainly will be adding that to my Python toolset!
@etcher68416 ай бұрын
Nice talk, and the framework is REALLY good, thank you so much guys!
@reengineer24976 ай бұрын
I learned a lot of new things, thank you so much !
@morannechushtan21019 ай бұрын
Nice lecture thanks!
@morannechushtan21019 ай бұрын
very nice lecture, I'm about to sleep at 34:09
@morannechushtan21019 ай бұрын
19:15 I went to the beach
@morannechushtan21019 ай бұрын
The actual lecture starts at 11:15
@morannechushtan21019 ай бұрын
7:30 I fell a sleep. Continue from here
@morannechushtan21019 ай бұрын
No body left a comment?
@ChrisCox-wv7oo10 ай бұрын
looks like half of the _initiated transitions are duplicates (see transitions from new_user_initiated atthe top). am I seeing that right?
@kylemaolinson941711 ай бұрын
This guy has no idea to do a proper presentation.
@johnnybravo377 Жыл бұрын
Now wondering if Mark also experimented with creating a comparison for Ir-ish and Brit-ish...
@edgeeffect Жыл бұрын
This is great... for many years, various people have been saying "metaprogramming is the root of all evil"... and now we have clear, scientific proof. ;) 2:40 THANK YOU SO MUCH for that. Usually when you see that sort of shenanigans it's somebody saying "Eugh! Look how crappy JavaScript is! JavaScript programmers are all idiots!" It's nice to have somebody saying "look that sort of thing happens in any dynamically typed language. :) :) :)
@FranciscoMNeto Жыл бұрын
WTF happened at 5:51?
@PythonIreland Жыл бұрын
Glitch in the matrix... 😎
@FranciscoMNeto Жыл бұрын
@@PythonIreland I KNEW IT!
@mmilerngruppe6 ай бұрын
I fell asleep
@nexovec Жыл бұрын
This is a great talk, I love it. The only thing you'll realize by making python into a lisp is python isn't lisp
@Yupppi Жыл бұрын
You'd think a language had at least some respect and have constants that are immutable. I just googled about it and learned that "constants" in python are just an agreement of "strong" naming convention where other programmers won't change your variable if you type it in uppercase. I honestly never thought about it before and only just now realized that nothing is holy in python. I kinda understand that old languages don't have immutable by default, but not having immutable at all is crazy business.
@nexovec Жыл бұрын
Same with private fields, it's just a convention. It also has multiple inheritance. It also doesn't have code blocks. And multi-threading is done so that the entire interpreter gets locked when an instruction is executed. I'm pretty sure that is still not the most insane thing.
@fragglet Жыл бұрын
"True" is not equal to True though, so this is straight-up wrong. Python 2.7.18 (default, Aug 1 2022, 06:23:55) >>> "True" == True False Python 3.11.6 (main, Oct 8 2023, 05:06:43) [GCC 13.2.0] on linux >>> "True" == True False However, bool("True") == True, bool("False") == True and (not "False") == False
@PythonIreland Жыл бұрын
Yeah, I guess not strictly True but Truthy... More so: if "True" == True: ...
@visheshmangla82203 ай бұрын
@@PythonIreland I tried it on python 3.11 64 bit windows 10. I get False for "True" == True and if "True" == True: print(1) , prints nothing
@MikeDIY Жыл бұрын
Great video!
@JamesLongOnGoogle Жыл бұрын
yeah I said AWS tools Glue and Athena are python under the covers. That was a slip of the tongue. They are Java and I just totally misspoke. Sorry folks :(
@julialongtin5743 Жыл бұрын
Thank you for the presentation, it was quite enlightening.
@jasondunn451 Жыл бұрын
Promo>SM ✅
@didiervandendaele4036 Жыл бұрын
Bad !😊
@atiqurrehman1567 Жыл бұрын
Very interesting.
@hurleypiano3953 Жыл бұрын
Cool acoustics.
@k1k2k3k4 Жыл бұрын
Brilliant talk! I am learning Django on my own and having this master class on tools to debug is really useful! Thanks so much :)
@igi2135 Жыл бұрын
💖
@tan.nicolas2 жыл бұрын
wow that was amazing!!
@Pepsiaddicto2 жыл бұрын
Talking about the ESP32: "Where we're going to be in 2-3 years time nobody really knows" - well, 5 years later and we're still using ESP32.
@sullivanzheng95862 жыл бұрын
ESP32-S3 maybe?
@qoieo5892 жыл бұрын
I have mad respect for this guy. And this "non-tech talk" is quite inspiring. Thanks for sharing!
@dnyakaul2 жыл бұрын
Hi sir Can you help me to write a first constraint using pyomo
@bafian2 жыл бұрын
thanks, great insight and talk.
@GrayTrader013 жыл бұрын
This was so helpful! Really, you nailed it when you said that there is nearly no documentation on how to integrate webpack with Django. Thank you sir!
@josephgitongawails3 жыл бұрын
Cool stuff!
@Ftoy-OG3 жыл бұрын
Very Helpful :)
@floriansalihovic36973 жыл бұрын
... "barely working" ... makes me relate a lot
@Birdnano393 жыл бұрын
Do you still have this Tutorials file?
@tompov2273 жыл бұрын
This is a fantastic talk. Tons of great great ideas here. Absolutely loved it
@Schlumpfpirat3 жыл бұрын
Poor guy was very nervous
@jaradc2198 Жыл бұрын
I know, right? His talk was on-point. Great talk. Confidence and self-doubt can be a major struggle.
@DataAnalyticsIreland3 жыл бұрын
Interesting point about open source code and some malicious code incorporated 🤔👍