#developersparadise
Explore tagged Tumblr posts
openprogrammer · 3 years ago
Photo
Tumblr media
Did you tell it what to do incorrectly, OR, Did you tell it to do the wrong thing?⁣ 🤔 ⁣ Every beginner to programming confronts the same challenge, trouble in understanding the logic of the code and finding the appropriate solution to the coding problem. "It's tough to tackle a problem and find a solution" ⁣🙅‍♂️ ⁣ The key is to develop your problem-solving skills ... How? 💭⁣ ⁣ Let's imagine a puzzle ... how are you going to solve it? 🧩⁣ Most people will try the following three steps :⁣ ⁣ 1) Try a solution⁣ 2) If that doesn't work, try another one.⁣ 3) If that doesn't work, repeat step 2 until you get the solution.⁣ ⁣ However, that's just an example and coding can always have more than one approach to solve a problem. The objective is to pick the one that is most suited to the nature of your project. ⁣ ⁣ To determine whether our method is the optimal solution, respond to the following statement ... ☑️ ⁣ "Make it work 💨, make it right ✅, make it fast 🔥." - Kent Beck⁣ In other news, a new setup is coming soon so stay tuned for that… 👀 ⁣Have a great weekend devs! ✌️ #programmer #programming #and #coding #setup #coderslife #developer #python #ai #datascience #developing #developerslife #webdesigner #webdeveloper #softwaredeveloper #developerstuff #developersparadise #software #google #codingdays #peoplewhocode #webdev #devlife #vibes #letsgo #manojdeshwal #connectedprogrammer #openprogrammer (at India) https://www.instagram.com/p/Ck3LcgJvcU1/?igshid=NGJjMDIxMWI=
0 notes
hrmsolution-blog · 5 years ago
Photo
Tumblr media
#developers #developerslife #developersoftware #developerspace #DeveloperSuperSetup #developerstudio #developersteam #developersq #developersblog #developersconference #developersworld #DevelopersInLagos #developersyariah #DevelopersPortMac #developersparadise #developersownmiami #DevelopersOfIdeas #website #websitedesign #websites #websitedesigner #WebsiteDevelopment #websitelaunch #WebsiteComingSoon #websitebuilder #websitedeveloper #websitetraffic #websitesi #london (at London UK) https://www.instagram.com/p/B8Bbch1H_hL/?igshid=1qw6tcy5swtqa
0 notes
e-commerce-magento · 7 years ago
Text
RT @maksek_ua: @mjasay Hey #magento devs, it may be great opportunity to do #DevelopersParadise winter edition. #MagentoDevelopers
Hey #magento devs, it may be great opportunity to do #DevelopersParadise winter edition. #MagentoDevelopers
— Max (@maksek_ua) August 23, 2018
from Twitter https://twitter.com/fbeardev
0 notes
openprogrammer · 3 years ago
Photo
Tumblr media
Software design patterns 🍬 #software #design #patterns #for #devs #developer #programmers #programming #coders #setup #routine #life #coderslife #coding #javascript #python #ai #datascience #developerslife #webdeveloper #developerstuff #developersparadise #google #apple #codingdays #peoplewhocode #gymshark #vibes #letsgo (at India) https://www.instagram.com/p/CkdrYPtv6j-/?igshid=NGJjMDIxMWI=
1 note · View note
openprogrammer · 3 years ago
Photo
Tumblr media
Don't code like this, code like that. ⁣ Avoid switch statements / nested conditional statements ➗ ⁣ A switch or 'nested' if-else statement is commonly seen as a code smell. So ... most likely there is a better solution.⁣ ⁣ Let's take a look at the following coding example ... </>⁣ ⁣ // CODE BELOW ⬇⁣ def getPokemonType(pokemon) {⁣ switch (pokemon) {⁣ case 'Pikachu': ⁣ return 'Electric ⚡';⁣ break;⁣ case 'Carm': ⁣ return 'Fire 🔥';⁣ break;⁣ case 'Squirtle': ⁣ return 'Water 🌊';⁣ break;⁣ case 'Bulbasaur': ⁣ return 'Grass ☘';⁣ break;⁣ // ETC ... and the list goes on and on.⁣ }⁣ // CODE ABOVE ⬆⁣ ⁣ Definitely, for this, you need a database integration into your side because there are thousands of pokemon. ⁣ But for this example let's see a better solution,⁣ ⁣ // CODE BELOW ⬇⁣ var pokemonList = [⁣ {name:"Pikachu", type:"Electric ⚡", etc},⁣ {name:"PI123", type:"Fire 🔥", etc},⁣ {name:"Squirtle", type:"Water 🌊", etc},⁣ {name:"Water123", type:"Grass ☘", etc},⁣ ];⁣ def getPokemonType(pokemonName){⁣ var rtnPokemon = pokemonList.find(⁣ pokemon => pokemon.name === pokemonName);⁣ // You can add a condition to check if null/nil etc ⁣ return rtnPokemon.type;⁣ }⁣ console.log(getPokemon("Pikachu")⁣ // CODE ABOVE ⬆⁣ ⁣ This solution also relates to the previous part (Part.4), where we discussed code duplication.⁣ We can use the same strategy (*strategy* ... objects&arrays) to solve the same issue with future nested conditions or switch statements.⁣ ⁣ #dont #code #like #this #tips #series #software⁣⁣⁣ #programmers #programming #coders #setup #routine #life #coderslife #coding #javascript #python #ai #datascience #webdeveloper #developerstuff #developersparadise #google #apple #codingdays #peoplewhocode #gymshark #vibes #letsgo  (at India) https://www.instagram.com/p/CkYo_bWvNqb/?igshid=NGJjMDIxMWI=
0 notes
openprogrammer · 3 years ago
Photo
Tumblr media
Software Developers portfolio Do's and Dont's (Part.3)⁣⁣⁣ ⁣⁣ 👍) Keep it up to date 📅⁣⁣ ⁣ That's definitely one of the simplest tasks to do.⁣ However, you must be consistent.⁣ Especially when you are seeking a new role in tech.⁣ Make sure to check the following:⁣ 👨‍💻 Add or Update all of your new skills 💡 Add or Update your projects 📜 Add or Update your certificates 📱 Add or Update all your social media 📞 Add or Update your contact details 💬 Add or Update your personal statement 🧬 Add or Update your personal information ⁣⁣ 👎) Display skills in which you are not confident or do not practice on a daily basis.⁣ ⁣ The aim of your portfolio is to showcase your work to potential clients / hiring managers, and you should only present your greatest work samples. While it may be tempting to put all of your work in your portfolio, the samples that stand out the most should be highlighted.⁣ This statement is also applicable to your abilities.⁣ Stop writing down all the languages/skills you worked with while not touching them in years!⁣ Just because you created an Android app at UNI does not mean you are an expert at Android app development. (*Show me your apps!)⁣ ⁣⁣⁣ Yours, KosDevLab⁣⁣⁣ ⁣⁣⁣ #do #and #dont #porfolio #projects #series #for #programmers #programming #coders #setup #routine #life #coderslife #coding #javascript #python #ai #datascience #webdeveloper #developerstuff #developersparadise #google #apple #codingdays #peoplewhocode #gymshark #vibes #letsgo #manojdeshwal (at India) https://www.instagram.com/p/CkL2PpOPfiG/?igshid=NGJjMDIxMWI=
1 note · View note
openprogrammer · 3 years ago
Photo
Tumblr media
Repost  • • • • • • Software Developers portfolio Do's and Dont's ⁣ 👍) Documented source code 📜⁣ This one is pretty obvious since "documenting" your code is a must-have skill, and how effectively you do it may have a significant impact on your communication with the rest of your team.⁣ Nobody wants a developer who submits changes to any repository without well-documented code (*at least include a message!).⁣ ⁣ 👎) Use of skill bar 🔢⁣ A skill bar is simply unnecessary because it does not demonstrate your ability in either skill or language.⁣ Hey, nobody cares if you are a 10/10 at HTML or 8.5/10 at Python.⁣ They say that without actions, words are nothing. ⁣ And that is a fact.⁣ Instead, provide a reference to that skill from a project you developed.⁣ That is what the majority of employers want to see, and then, ⁣ they will be the ones to comment on your level of expertise.⁣ ⁣⁣ ⁣⁣ #do #and #dont #porfolio #projects #series #for #programmers #programming #coders #setup #routine #life #coderslife #coding #javascript #python #ai #datascience #developerslife #webdeveloper #developersparadise #google #apple #codingdays #peoplewhocode #gymshark #vibes #letsgo #manojdeshwal https://www.instagram.com/p/CkAe1crPu-Y/?igshid=NGJjMDIxMWI=
0 notes