DEV Community

Coding

while (!(succeed = try()))

Posts

👋 Sign in for the ability to sort posts by relevant, latest, or top.
Memorization and learning to code

Memorization and learning to code

288
Comments 45
5 min read
Plugin Architecture Design Pattern – A Beginner’s Guide To Modularity

Plugin Architecture Design Pattern – A Beginner’s Guide To Modularity

Comments
7 min read
Are You Wasting Hours on Tedious Documentation? Here's the Ultimate Solution!

Are You Wasting Hours on Tedious Documentation? Here's the Ultimate Solution!

3
Comments 1
3 min read
Decorator Pattern – How To Master It In C# Using Autofac

Decorator Pattern – How To Master It In C# Using Autofac

3
Comments 2
5 min read
Letter to Prof. Turtle 1: Intro to Coding

Letter to Prof. Turtle 1: Intro to Coding

2
Comments
2 min read
Solving "Binary Tree Level Order Traversal" Leet code Question

Solving "Binary Tree Level Order Traversal" Leet code Question

5
Comments
1 min read
5 Git Commands You Shouldn’t Ignore

5 Git Commands You Shouldn’t Ignore

9
Comments 2
2 min read
Understanding Concurrency

Understanding Concurrency

1
Comments
12 min read
From Senior Front-End Developer to Java Novice: My Journey

From Senior Front-End Developer to Java Novice: My Journey

Comments
4 min read
Simple, yet easy-to-miss errors in code

Simple, yet easy-to-miss errors in code

2
Comments 1
2 min read
🚀🧪Unlocking the Power of Approval Testing 🔥💻

🚀🧪Unlocking the Power of Approval Testing 🔥💻

5
Comments 2
4 min read
The Spectrum of Developer Entrepreneurship

The Spectrum of Developer Entrepreneurship

15
Comments 3
4 min read
Solving the "Container With Most Water" Problem on Leet Code

Solving the "Container With Most Water" Problem on Leet Code

6
Comments
2 min read
Python For Seniors (Part 2)

Python For Seniors (Part 2)

8
Comments 1
11 min read
Grow into Programming

Grow into Programming

2
Comments 1
7 min read
Optional Chaining and Nullish Coalescing: Safe Property Access in JavaScript

Optional Chaining and Nullish Coalescing: Safe Property Access in JavaScript

4
Comments
3 min read
Solving the "Letter Combinations of a Phone Number" Problem on Leet Code

Solving the "Letter Combinations of a Phone Number" Problem on Leet Code

6
Comments
2 min read
WordPress Vs Coding. Which One To Go For?

WordPress Vs Coding. Which One To Go For?

3
Comments
2 min read
Compress the String! - HackerRank Solution Python

Compress the String! - HackerRank Solution Python

7
Comments
2 min read
Handling errors in TypeScript the right way

Handling errors in TypeScript the right way

13
Comments 5
14 min read
Why do we make IT so complicated? 😱

Why do we make IT so complicated? 😱

Comments
1 min read
Iterables and Iterators - HackerRank Solution Python

Iterables and Iterators - HackerRank Solution Python

2
Comments
3 min read
The Minion Game - HackerRank Solution Python

The Minion Game - HackerRank Solution Python

2
Comments
2 min read
How to Solve the "No Idea!" Challenge in Python

How to Solve the "No Idea!" Challenge in Python

2
Comments
3 min read
Regex Substitution - HackerRank Solution Python

Regex Substitution - HackerRank Solution Python

4
Comments
2 min read
Exploring Script Loading Strategies: Normal, async, and defer

Exploring Script Loading Strategies: Normal, async, and defer

4
Comments
3 min read
5 Design Patterns That Are ACTUALLY Used By Developers

5 Design Patterns That Are ACTUALLY Used By Developers

2
Comments
7 min read
Get images from resources in Windows Forms

Get images from resources in Windows Forms

4
Comments
4 min read
Mastering Data Preparation for Your Dream Data Job: Using Job Postings Data

Mastering Data Preparation for Your Dream Data Job: Using Job Postings Data

1
Comments
8 min read
Testing is not about the happy path

Testing is not about the happy path

2
Comments 2
3 min read
GitHub RepoJacking: Are You Sure Your GitHub Is Safe?

GitHub RepoJacking: Are You Sure Your GitHub Is Safe?

5
Comments 1
7 min read
Short-Circuit Evaluation: Making Your Code More Concise

Short-Circuit Evaluation: Making Your Code More Concise

10
Comments
3 min read
Loops in C#

Loops in C#

9
Comments 1
6 min read
Installing Apt Packages Without Sudo

Installing Apt Packages Without Sudo

15
Comments 5
4 min read
Coding: Growth, Learning, & Transformation

Coding: Growth, Learning, & Transformation

Comments
4 min read
Solving the "Search Insert Position" Problem on LeetCode

Solving the "Search Insert Position" Problem on LeetCode

7
Comments
2 min read
Pedagogy for Self Taught Developers: Introduction to Identifying Your Technical Skill Level with Bloom’s Taxonomy

Pedagogy for Self Taught Developers: Introduction to Identifying Your Technical Skill Level with Bloom’s Taxonomy

1
Comments
2 min read
JavaScript Functional Programming: Map, Filter, & Reduce

JavaScript Functional Programming: Map, Filter, & Reduce

6
Comments
2 min read
Why The Best Developers Are Obsessed With Vertical Slices

Why The Best Developers Are Obsessed With Vertical Slices

Comments
6 min read
Solving the "Longest Palindromic Substring" Problem on LeetCode

Solving the "Longest Palindromic Substring" Problem on LeetCode

5
Comments
3 min read
Unlock Your Developer Potential: A Guide to the Best Chrome Extensions

Unlock Your Developer Potential: A Guide to the Best Chrome Extensions

9
Comments
8 min read
10 Lesser-Known JavaScript Array Methods You Might’ve Missed

10 Lesser-Known JavaScript Array Methods You Might’ve Missed

8
Comments
3 min read
The 5 Best Software Engineering Podcasts

The 5 Best Software Engineering Podcasts

1
Comments
10 min read
Solving the "Roman to Integer" Problem on LeetCode

Solving the "Roman to Integer" Problem on LeetCode

6
Comments
3 min read
Queue actions in optimistic updates

Queue actions in optimistic updates

Comments
4 min read
7 Habits to Cultivate for Becoming a Better Software Engineer

7 Habits to Cultivate for Becoming a Better Software Engineer

75
Comments 16
4 min read
Solving the "Valid Parentheses" Problem on LeetCode

Solving the "Valid Parentheses" Problem on LeetCode

10
Comments
2 min read
Marketing for Developers: The Unconventional Guide

Marketing for Developers: The Unconventional Guide

94
Comments 12
9 min read
Testing: Good Practices for Error-Free Code

Testing: Good Practices for Error-Free Code

Comments
3 min read
Breaking Up with @Autowired: Why Dependency Injection with Spring Boot Needs a Makeover! 💔

Breaking Up with @Autowired: Why Dependency Injection with Spring Boot Needs a Makeover! 💔

8
Comments 4
3 min read
Recharging Your Creativity as a Developer

Recharging Your Creativity as a Developer

15
Comments 6
3 min read
Top 10 Latest Technologies That Are Transforming Web App Development

Top 10 Latest Technologies That Are Transforming Web App Development

5
Comments 1
9 min read
"Smart" Refactoring with AI 〉beyond Old School Refactors

"Smart" Refactoring with AI 〉beyond Old School Refactors

6
Comments
2 min read
Solving the "Longest Substring Without Repeating Characters" Problem on LeetCode

Solving the "Longest Substring Without Repeating Characters" Problem on LeetCode

5
Comments
2 min read
LeetCode vs HackerRank: What’s the Most Popular Website to Learn Coding?

LeetCode vs HackerRank: What’s the Most Popular Website to Learn Coding?

Comments
10 min read
Aplicando a Orientação a Objetos: Gerenciamento de memória [4/10]🧶

Aplicando a Orientação a Objetos: Gerenciamento de memória [4/10]🧶

7
Comments
2 min read
Jokeday Funday: Part 6 - More Programming Humor to Brighten Your Day

Jokeday Funday: Part 6 - More Programming Humor to Brighten Your Day

6
Comments
2 min read
Inheritance or Composition, that is the question.

Inheritance or Composition, that is the question.

2
Comments 2
6 min read
Why You Should Invest Time Honing Editor Skills

Why You Should Invest Time Honing Editor Skills

Comments
5 min read
What do you know about variables in JS?

What do you know about variables in JS?

Comments
5 min read
loading...