Software Testing Breaking into Software Testing as a Gen Z: My Experience Until five months ago, I had never heard of software quality assurance (QA). I discovered QA while searching for a tech internship position that required little to no coding. A
Upskilling Top 10 portfolio projects for junior developers As a junior developer, it's essential to have a solid portfolio to showcase your skills and accomplishments. A portfolio is a collection of projects demonstrating your technical expertise and problem-solving
tips Talk Techy To Me: Top Tech Terms Explained Are you tired of feeling lost in conversations about the latest tech trends? Do you find yourself nodding along to tech terms you've never heard of before? Well, you're not
Indie Hacking Indie Hacking 101: How to Build Your Own Startup on the Side Have you always dreamed of starting your own business but don't know where to start? Indie hacking might be the answer you've been looking for. Indie hacking is a term
Software Design Software Design Patterns in Action: Real-World Examples You may have heard of design patterns, but do you know what they are and how they can benefit you as a developer or engineer? Design patterns are solutions to
Web Development Common JavaScript Errors and How to Debug Them JavaScript is a popular programming language used for web development, but it can sometimes be frustrating to work with. One of the most common sources of frustration is dealing with
Upskilling A Survival Guide To Working in Tech. There's a lot of pressure in the tech world. You have to be fast, smart, and personable all at once, and it's not easy. With so many people vying for
Upskilling Why You Need A Portfolio As A Junior Developer When it comes to landing a dream job as a junior software developer, your portfolio is the single most important thing. It's your best chance to stand out and get
Upskilling 9+ Proven Ways to Make Money as a Developer Being a Software Developer is one of the highest-paying professions worldwide. Unfortunately, however, developers are not paid the same worldwide. For example, while the average annual salary for a US
laravel tips Laravel Route::redirect tip Did you know? You can quickly define a redirect route using Route::redirect('from', 'to') without defining a full route or controller for performing a simple redirect. You can customize
laravel tips Laravel config:cache tip Did you know? If you've cached your laravel configuration files with $ php artisan config:cache, env() function calls from everywhere except the config files will return null. > Loose recommendation: avoid
laravel tips Laravel Route::view tip Did you know? If your route or controller method needs to return a view. You can use Route::view('uri', 'view.name') instead of defining a full route and controller