What are Unhandled Exceptions?
3:02
Пікірлер
@shashanksharma4533
@shashanksharma4533 4 күн бұрын
great vid
@Patrick33456
@Patrick33456 Ай бұрын
I don't disagree. Our codebase is essentially a front-end static website with a few interactive elements here and there. We enforce 100% coverage for everything we build which I've always maintained was a colossal waste of time. My colleagues look at me sideways when I talk about this so it hasn't gone anywhere yet. I've had the intuition this was a waste from the start but hadn't put much thought into it and just abided by the rules, clenching my teeth every time I spent a full day writing tests. The thing is... I've now worked on this project for about 5 years. I can think of maybe only two instances where tests I expected to pass had failed and thus were a benefit. My thoughts are that the best coverage is to define the specific features that need e2e testing and have to pass and if those tests are written than coverage doesn't matter at all. Test coverage just feels like one of those dogmatic issues engineers get stuck doing without thinking about why they're doing it. My team could get twice as much done with minimal coverage that actually matters. Thanks for the video, just looking around for some discussions on the matter to help out with the argument.
@liambreuner4821
@liambreuner4821 Ай бұрын
This is a good video. But you take too long getting too the point and making jokes.
@ThinkBigLeaders
@ThinkBigLeaders 2 ай бұрын
Had fun in this conversation with Zach and love what you're doing on the podcast. Cheers - Amir
@LesleyOsborn-Author-Consultant
@LesleyOsborn-Author-Consultant 3 ай бұрын
Good conversation, Zach. Interesting
@LesleyOsborn-Author-Consultant
@LesleyOsborn-Author-Consultant 3 ай бұрын
Doug, I've heard that doctors are also at risk
@LesleyOsborn-Author-Consultant
@LesleyOsborn-Author-Consultant 3 ай бұрын
Zack, very good question, and asked with some humor
@LesleyOsborn-Author-Consultant
@LesleyOsborn-Author-Consultant 3 ай бұрын
And, you're so good at speaking to people
@LesleyOsborn-Author-Consultant
@LesleyOsborn-Author-Consultant 3 ай бұрын
Anytime you speak, Doug, I'm ready to listen 😀
@VINAY-SRIRAMULA-VS
@VINAY-SRIRAMULA-VS 4 ай бұрын
Hi sir
@VINAY-SRIRAMULA-VS
@VINAY-SRIRAMULA-VS 4 ай бұрын
Hi sir
@ruslanustiuhov5510
@ruslanustiuhov5510 4 ай бұрын
Thanks for your talk!
@INTELLIGENCE_Revolution
@INTELLIGENCE_Revolution 4 ай бұрын
@zac did you film this before the Apple Intelligence announcement? 📣
@INTELLIGENCE_Revolution
@INTELLIGENCE_Revolution 4 ай бұрын
24:50 it’s not “just a tool”.
@INTELLIGENCE_Revolution
@INTELLIGENCE_Revolution 4 ай бұрын
18:58 even if china bans a model and other countries don’t. How does that help them anyway? We need international regulation otherwise it’s pointless.
@simonesaraiva4884
@simonesaraiva4884 5 ай бұрын
I agree with your comment regarding finding a balance between functionality and production in your product or environment while also prioritizing protection🔍
@Avenstarful
@Avenstarful 5 ай бұрын
Thank you so much for posting this, this really helped me grasp the concept. I watched the entire thing. Thank you so much!
@KJM3SMG
@KJM3SMG 6 ай бұрын
I know he said he has no interest for non-Cloud.... but local LLM with RAG is pretty cool tho... that's what I have now. I know cloud AI tools are there but hey, what I have is great for personal use and no other running costs
@abdulwahidmomodu9692
@abdulwahidmomodu9692 6 ай бұрын
Great video… I often hear people say “Gen AI is the end of Automation” this video proves a lot of my point on the importance of Automation. Thanks Doug😊
@doug.shannon
@doug.shannon 4 ай бұрын
Happy to help and provide value added feedback.
@barssen803
@barssen803 7 ай бұрын
great episode! didn't know Dale was a big fan of call of duty...
@dennisfolk1683
@dennisfolk1683 7 ай бұрын
Great video. I've known Dale for years, and he knows his stuff. The video has gotten me really thinking how I can use AI with my work.
@barryyu97
@barryyu97 7 ай бұрын
+1 LLM
@barryyu97
@barryyu97 7 ай бұрын
+1 hard to find developers
@owenpollich
@owenpollich 7 ай бұрын
😕 Promo_SM
@mikeschlatter1852
@mikeschlatter1852 Жыл бұрын
Hi Zack, I ran into an exception dealing with Customer Service scenario where they supported people/events in other time zones. In that case we converted to the local event time of the activity so the Rep is not converting times to the customer or introducing that complexity into the conversation. Rep(EST.): "You attempted a withdrawal at 11:00pm" Customer(PST): "Impossible I go to bed at 10pm every night".
@tourdesource
@tourdesource Жыл бұрын
Hey Jake, that was pretty engaging! Did you get to implement any interesting features?
@tourdesource
@tourdesource Жыл бұрын
Dough looks awesome, by the way!
@JakeEverhart-qn7qp
@JakeEverhart-qn7qp Жыл бұрын
Hey, thanks for the feedback! Most of my recent changes have been centered around the user interface (adding a help menu, swapping key bindings, etc.). Aside from the REPL, I also wanted to try using Donut for some Advent of Code problems, so I added built-in functions for things like extracting file contents, parsing integers, and manipulating arrays. I really like the freedom of being able to add anything that seems neat. Do you have any feature ideas?
@davidpitt5677
@davidpitt5677 Жыл бұрын
Agree Zach, as a programmer with almost 40 years experience i got my first job out of college by differentiating myself by talking about a personnel development project. i agree with the 10 year mark, however our industries technology landscape changes rapidly, so if you want to still experience the rush of solving a problem with software, keep coding in the evenings. Or, join Keyhole Software where we have opportunities across a wide variety of programming languages. Sorry for the shameless plug :)
@Hemigoblin
@Hemigoblin Жыл бұрын
Vue components look too much like gulp builds to me. Too much nesting, too much magic in the “html”, not enough enforcement of immutability, hard to read. React after hooks (and ONLY after hooks) is much more FP-oriented, and that’s super important. You mentioned that software design comes second in difficulty to building spaceships. It’s largely because we’re still writing programs like we have to deal directly with machine instructions on very limited hardware, instead of writing software that addresses the problem at hand and letting sane language defaults handle the edge cases. There’s NO REASON to lack 1) immutable values by default 2) controlled / transactional mutations when necessary 3) value equality, deeply nested (none of this {} != {} nonsense) unless you’re doing low-level systems programming. This is untenable for modern computing. OOP (classes and inheritance) is a mistake. It has to stop. I was a bit confused when you said earlier that you’re not a fan of typescript, then at the end said that types should be baked into JS.
@brod515
@brod515 Жыл бұрын
I'm not sure the points you are talking about have much to do with Vue. not being a fan of volkswagens doesn't mean I don't like other cars.
@kishorekumarvempalli6744
@kishorekumarvempalli6744 2 жыл бұрын
Hi Thanks for the demo. Very Impressive .We are trying to implement similar model in our project. We are analyzing different branching strategies which are feasible for us. However we are not getting a clarity on How we update the declarative yaml file in develop branch with feature branch yaml. Through PR we can merge the variables but we have few variables which are specific to develop , release etc.So while raising PR should we update the feature yaml as per develop and merge it or should we maintain environment specific variables as defaults and merge remaining variables or we directly update the develop yaml in develop branch? Please can you suggest feasible approach.
@BiniamAsnake
@BiniamAsnake 3 жыл бұрын
I am watching this video in 2021 and it is still useful since my team needs to maintain a legacy application which is still one of the core services of the company. Thanks!
@elysechris7327
@elysechris7327 3 жыл бұрын
I highly recommend #haxtechie01 On IG! He helped me unlock my iPhone. he's the best hacker
@victormoses4826
@victormoses4826 3 жыл бұрын
Now i see why they always recommending #haxtechie01 on IG you are the main boss thanks for the successful Unlock
@rheaghen
@rheaghen 4 жыл бұрын
Looking good!
@blockchainstreet
@blockchainstreet 5 жыл бұрын
Awesome!, good one..
@hoanganhpt
@hoanganhpt 7 жыл бұрын
I want source code ! can you send for me ?
@sheridanmason1719
@sheridanmason1719 7 жыл бұрын
Any chance you could post the source code?
@JackySupit
@JackySupit 7 жыл бұрын
do you have to use the robot voice?
@thomasfisher1829
@thomasfisher1829 7 жыл бұрын
You never show the addComponent, getAddButton, or getEditButton methods
@AbdulMunaf-f7s
@AbdulMunaf-f7s 7 жыл бұрын
voice is not clear
@karunsiddana
@karunsiddana 8 жыл бұрын
What is the best open source text editor to work with for ExtJS? Are you guys using Sencha Products?
@subuddhi28
@subuddhi28 8 жыл бұрын
Where we can get those source code
@LMauget
@LMauget 8 жыл бұрын
I have never been able to get past buffering. I have a fast connection that works fine on You Tube. Not sure what the issue could be.
@Mega3Joe
@Mega3Joe 9 жыл бұрын
great tutorial. Is the source code available for download?
@alextanasoiu
@alextanasoiu 9 жыл бұрын
Very nice and complete tutorial. Can you provide the full source code for this example? Thank you very much.
@pedrorevolorio2660
@pedrorevolorio2660 9 жыл бұрын
very nice.
@zachgardner_chiefarchitect
@zachgardner_chiefarchitect 10 жыл бұрын
The song in this video is "Apogee" by Tycho on the Awake album.
@georgehuman7253
@georgehuman7253 10 жыл бұрын
dude u are awesome !!! :) god bless u mate! do you use any Eclipse Ext JS plug-ins?
@ashitomambo5080
@ashitomambo5080 10 жыл бұрын
nice tutorials but we are most interested in configuring ie where to put html files, javascript files, and css, running, writing, and finally the explanation to the code as you are doing. Lawrence
@chrisdawes7270
@chrisdawes7270 10 жыл бұрын
would read the architecture series at the bottom the guides instead of this description of controller breakdowns for your app.
@Keyholesoftware
@Keyholesoftware 10 жыл бұрын
There's a new ExtJS Single Page Application video tutorial series on the Keyhole KZbin channel. Check out Part 1 where you learn what an #ExtJS MVC #SinglePageApplication looks like and how its code can be structured -