Thank you, @mccorryk, National Technology Officer at Microsoft, for shedding light on the fascinating world of Generative AI at the Main Stage: AI & FUTURE TECHNOLOGIES during our Tech Connect Live 2023 event. Your insights were truly illuminating! 💡
#TechConnectIRE
@swsKevinBoeren @SabitOlolade1 Not always and it’s significantly less then it used to be a year or two ago. But I agree, especially for at least somewhat technically educated execs the departments like marketing could be hit a lot harder
@jlweston85 Don’t write them with exception of if you have no way to writing a simple self-explanatory function name. That would work perfectly every time 😂
Some tips for keeping the project clean:
1) Write Self documenting code. In other words : ditch comments if you have a function it must be clear what it does.
2) keep methods small, but don’t go to extreme and turn your code to spaghetti.
#Software#NodeJS#java#python
@jlweston85 I was just pissed off at what code I saw yesterday … I’ve never seen so many comments and so little sense 😂 and it was a senior who wrote that
3) Remove unused code and clean your existing one (no random declarations, commented out code…)
4) Try not to use small classes if possible. Single Responsibility Principle ;)
5) Don’t repeat your code! Code repetition is evil
#Software#SoftwareDeveloper#nodejs#java#python