Learn Python: Tutorials for Beginners, Intermediate, and Advanced Programmers

Sagar Arora Developer Career Development, Developer Tips, Tricks & Resources

As you know, computers totally depend on program code to function properly. There are so many programming languages available that helps developers create applications. Python is one of the high-level, interpreted and general-purpose programming languages that is easy to use, comprehensive and powerful. In 1991, Guido van Rossum (referred to its father) developed the Python programming language. Python is a …

Learn Java: Tutorials for Beginners, Intermediate, and Advanced Programmers

Sagar Arora Developer Career Development, Developer Tips, Tricks & Resources

 If you want to be a developer, create applications, or learn how to code, then Java is the best programming language to work with. In this article, we will introduce some of the best Java tutorials for beginners as well as advanced programmers. These tutorials will help you to learn and nourish your programming skills in Java. But first, we’ll …

PHP Try Catch: Basics & Advanced PHP Exception Handling Tutorial

Agbayani Molde Developer Tips, Tricks & Resources

When PHP version 5 was released, it incorporated a built-in model to catch errors and exceptions. Handling errors in PHP with try-catch blocks is almost the same as handling errors in other programming languages. When a PHP exception is thrown, the PHP runtime looks for a catch statement that can handle that type of exception. It will continue checking the …

Top 25 PHP Tutorials: Resources, Websites, Courses

Iryne Somera Developer Career Development, Developer Tips, Tricks & Resources

Selecting the best websites to learn PHP is a nice entrance to the programming world. If you are interested in learning this language, searching online provides tons of PHP tutorial results. Stay calm and don’t get discouraged. PHP skills, though highly technical in nature, can be acquired with the right resources. And by resources, we mean the vast amount of …

Top 11 Python Frameworks in 2018

Sagar Arora Developer Tips, Tricks & Resources

 Python is an interpreted, dynamically-typed, and high-level language. It also implements the basic concepts of an object-oriented programming language (OOP). It has a unique syntax, which makes it different from other programming languages such as Java, C++, and C. Hence, it is simple and easy to learn the language. Most developers use frameworks to create code and develop applications. The …

NLog vs log4net vs Serilog: Compare .NET Logging Frameworks

Simon Timms Developer Tips, Tricks & Resources

Logging information in .NET, or really in any production application, is invaluable. In many cases, developers don’t have direct access to the production environment to debug issues. Good quality logs are the difference between solving problems like Sherlock Holmes and stumbling upon solutions like Inspector Jacques Clouseau. As you can imagine, we’re pretty big on logging here at Stackify, and …

Top 8 PaaS Providers for Deploying PHP Applications

Agbayani Molde Developer Tips, Tricks & Resources

 Platform as a Service (PaaS) is an innovative cloud computing model that helps to deliver applications over the web. In this model, a cloud provider offers hardware and software tools, typically those required for application development, to the users as a service. The cloud infrastructure provides the ability to efficiently and quickly design and deploy apps and have them functioning …

Elasticsearch Tutorial: Your Detailed Guide to Getting Started

Phil Vuollet Developer Tips, Tricks & Resources

In this Elasticsearch tutorial, I’m going to show you the basics. There are so many things to learn about Elasticsearch so I won’t be able to cover everything in this post. If you have experience searching Apache Lucene indexes, you’ll have a significant head start. Also, if you’ve worked with distributed indexes, this should be old hat. But if you’re …

Top Laravel Tutorial Sites and Resources

Agbayani Molde Developer Career Development, Developer Tips, Tricks & Resources

At present, Laravel is very popular among PHP frameworks. Despite being an open source framework, it has become a desired technology among PHP developers. It has a neat syntax and comes with a powerful toolkit, especially with the latest releases. There’s no surprise that it is the preferred framework by modern web developers as it is equipped with powerful features …

Get Detailed PHP Tracing with Retrace

Juliet Mendez Developer Tips, Tricks & Resources, Stackify Product & Company Updates

Tracing bugs in your PHP code can be very time-consuming. In order to find bugs quickly in your PHP applications, you can use PHP tracing tools. Stackify provides two tools, Retrace & Prefix, which can help with tracing what happens within a web request or transaction. Retrace is a very affordable application performance monitoring solution that provides centralized logging, error …

Reduce Hosting Costs: Application Dependency Performance Tuning

Sylvia Fronczak Developer Tips, Tricks & Resources

You were sold the promise of the cloud. The performance gains were going to make everything better. Costs would go down since you’d only be paying for the resources you were actually using. It sounded magical. You’d look like a star and save your company money. Unfortunately, when all was said and done, the cloud didn’t deliver. So where did …

Top 10 PHP Frameworks for Web Development

Agbayani Molde Developer Tips, Tricks & Resources

PHP frameworks make agile development possible. If you are starting a new PHP project you should definitely consider picking a modern PHP framework to provide well-organized, reusable and maintainable code. They make it easier to grow your application over time and scale. Most modern PHP frameworks follow the MVC (Model-View-Controller) pattern that ensures the separation of presentation and logic and …

How to Troubleshoot PHP Web Application Problems

Juliet Mendez Developer Tips, Tricks & Resources

Not all problems or issues in web development can be detected during development or testing. There are even web application errors that are hard to catch like runtime errors. Most PHP developers or server administrators will just look at the web server or database logs once an issue arises. They would just grep the logs for errors or timestamps in …

MongoDB Tutorial: Get Going from Scratch Using Java

Casey Dunham Developer Tips, Tricks & Resources

 There are numerous database systems that take a non-tabular NoSQL approach to handle data management. One of the most popular is MongoDB, which is used in various industries. While MongoDB is only the playground for Ruby on Rails or Node.js developers, using MongoDB with a modern Java framework like Spring Boot results in a powerful tool in the problem-solving arsenal. …

Whats_New_Java10

What’s New in Java 10

Eugen Paraschiv Developer Tips, Tricks & Resources

Java 10 overview March 2018 saw the latest semi-annual release of Java: Java 10. In this article, we’ll examine the big changes introduced in this version, as well as talk about some of the smaller improvements that will make life easier for developers and ops alike. Java 10: Big changes The two big stories in Java 10 are: the new …

Writing Multitenant ASP.NET Core Applications

Ricardo Peres Developer Tips, Tricks & Resources

A multitenant web application is one that responds differently depending on how it is addressed – the tenant. This kind of architecture has become very popular, because a single code base and deployment can serve many different tenants. In this post, I will present some of the concepts and challenges behind multitenant ASP.NET Core apps. Let’s consider what it takes …