Anastasiabeyond-average.hashnode.net·May 26, 2021FeaturedHow to Build a Great Developer Portfolio (+ Examples & Tools)*header pic by Shen Comix As any other specialists, developers need to market themselves to get dream jobs and projects, attract more clients and reach a desirable level of income. The necessary skills and a killer portfolio website are the two thing...532 likes·4.6K readsCareer
Anastasiabeyond-average.hashnode.net·Apr 16, 2021FeaturedMaster These Three Skills to Improve Time Management 🚀We all have 24 hours in a day and time is ticking away second by second. We can’t save, store or reuse it. There’s no way to manage time but we can manage our attitude, activities and environment to get the most of the time we have. This is what time...447 likes·2.4K readsProductivity
Palash Mondaliampalash.hashnode.net·Feb 23, 2021Featured🔥 Ultimate Cheatsheet CompilationHi everyone 👋 Today I wanted to share with you the Ultimate Cheatsheet Compilation. I hope aspiring/new developers will find this compilation helpful for quick reference whenever needed. 1. Git CheatSheet Credit: Trilochan Parida 2. Git CheatShee...408 likes·22.0K readsWeb DevelopmentCSS
Priya Chakrabortypriyachakraborty.hashnode.net·Apr 23, 2023DAY 8 of PYTHON top 100 questions : from Basic to Advanced !!Write a Python program to count the number of vowels in a given string : vowels = set("aeiouAEIOU") count = 0 string = input("Enter a string: ") for char in string: if char in vowels: count += 1 print("The number of vowels in the string i...2 likes100DaysOfCode
Shivank Kapurshivankkapur.hashnode.net·Apr 23, 2023Day 1 Of #30DaysOfJavaScriptIntroduction Hey folks, the 30DaysOfJavaScript is a guide for both beginners and advanced JavaScript developers. In this Blog series, you'll learn all about JavaScript, the most popular programming language in the history of mankind. JavaScript is us...10 likes30 Days of Code
Varjinth subramaniyanmycodingjourneyy.hashnode.net·Apr 23, 2023Apache Hadoop installation in my workplace PCI installed Apache Hadoop-V3.3.5 on my workplace PC. But it did not run properly and an error was reported that a configuration error. I checked online and came to know that need to install the Java-8 version. Initially, I installed Hadoop-V3.3.5 alo...100DaysOfCode
Varjinth subramaniyanmycodingjourneyy.hashnode.net·Apr 23, 2023Python program to find triangular number with n number of divisorsdef tri_num_div(n): div=0 tri=1 realn=1 while div<n: realn+=1 tri+=realn for i in range(1,int((tri**0.5))+1): if tri%i==0: div+=2 if div<n: div=0 ...100DaysOfCode
Priya Chakrabortypriyachakraborty.hashnode.net·Apr 22, 2023DAY 7 of PYTHON top 100 questions : from Basic to Advanced !!Write a Python program to check whether a given string is a palindrome or not:- str=input("ENTER THE STRING : ") if str == str[::-1]: print("YES") else: print("NO") Output: ENTER THE STRING : eye YES The code first prompts the user to inpu...100DaysOfCode
Chris Renshawchrisrenshaw.hashnode.net·Apr 22, 2023My journey from social work manager to software engineerIntroduction: As a social worker, and more recently a social work manager, I spent years helping people in need, but I was always interested in the world of technology. In this article, I'll share my journey from social work manager to software engin...coding
Priya Chakrabortypriyachakraborty.hashnode.net·Apr 22, 2023DAY 6 of PYTHON top 100 questions : from Basic to Advanced !!Write a Python program to find the factorial of a given number: n=int(input('Enter the number : ')) fact=1 for i in range(1,n+1): fact=fact*i print(fact) Output : Enter the number : 6 720 This is a Python program to calculate the factorial o...Day6
Moshe Malatjidevmosh.hashnode.net·Apr 21, 2023Difference between Task() and TaskValue() in C#Introduction In .NET, a Task represents an asynchronous operation that may or may not return a result. When the result is available, you can use the Result property or the await keyword to retrieve it. Starting with .NET 5, a new struct called ValueT...131 readsC#
Olaleye Blessingjongbo.hashnode.net·Apr 18, 2023Create Dynamic URLs with URL Constructor in JavaScriptIn web development, one of the essential components of building a frontend web application is constructing URLs dynamically. Creating clean and consistent URLs is crucial for both search engine optimization and user experience. JavaScript provides th...11 likes·66 readsFrontend Development
Priya Chakrabortypriyachakraborty.hashnode.net·Apr 18, 2023DAY 3 of PYTHON top 100 questions : from Basic to Advanced !!Write a Python program to find the largest element in an array : a=[56,78,34,90,23,56,34] a.sort() print("The largest element is",a[-1]) Output: The maximum element is 90 The given code sorts the list a in ascending order and then prints the larges...array