Apr 2, 2021How to Install Windows 10 — Quick TutorialIn this tutorial, you can learn how to install Windows 10. You may want to install Windows 10 for different reasons, for example: You have a new computer with no operating system installed You have a previous windows version already installed Your current windows 10 installation is faulty, corrupted, or…Windows6 min read
Jan 21, 2021Building a Laravel 8 Application: Routes and ViewsIn this post, we start building a Laravel 8 Application just created. You can follow the tutorial Create a Laravel 8 application from scratch to install and create your first project and the initial application structure. …Laravel7 min read
Jan 12, 2021Create a Laravel 8 application from scratchIn this tutorial, we will explore how to create a Laravel 8 application from scratch and then prepare your application for development. However, the overall process changed from the previous version (Laravel 7), improving the developer experience with a fresh set of tools. …Docker7 min read
Nov 2, 2020Useful GIT commands for everyday useIn this post, I share some useful GIT commands for everyday use. After years of using GIT, I’ve found useful commands to make my developer’s life easier. This is the list of the most frequently used in my case. I’ve created the Github demo repo here, containing all of these…Git4 min read
Sep 14, 2019Member-onlyJavascript Fetch API: The XMLHttpRequest evolutionThe Javascript Fetch API is the current standard to make asynchronous HTTP Requests. To anyone who used XMLHttpRequest and Jquery.ajax(), this new API provides more powerful and flexible features. The main features of the Javascript Fetch API are: Generic definition of Request and Response objects More control over request properties…Ajax4 min read
Published in JavaScript in Plain English·Sep 7, 2019Member-onlyHow to explain JavaScript .filter() .map() and .reduce() to SQL usersI found using .filter() .map() and .reduce() Array methods could help to reduce code complexity and simplify many typical array data processing tasks. Looking at http://kangax.github.io/compat-table/es5/#test-Array_methods, you can confirm these methods are compatible with almost any modern desktop/mobile browser. A good approach to understand how to use .filter() .map() and…Java Script3 min read
Jan 10, 2019Member-onlyGithub is now offering Unlimited private repos for freeGithub is now offering Unlimited private repos for free. From a recent update on January 7th, 2019, Github announced a big change in their main offerings for developer and enterprise accounts. GitHub’s new offers GitHub Free now allows unlimited private repositories with up to three collaborators per repository for free. …Git2 min read
Jan 10, 2019Member-onlyGoogle SEO and Web ToolsThere are many useful Google SEO and Web tools, created by Google, to improve your SEO and site rank. These free tools could help you improve your search position: Webmaster Tools (Google Search Console) Google Analytics Keyword Planner Google Page Speed Structured Data tools Markup Helper Structured Data Testing Google Webmaster tools (Search Console) The…Analytics3 min read
Jan 5, 2019Member-onlyStatically typed Javascript : Why and HowIn the last months I have found good experiences using Statically typed Javascript. For example, using React with Typescript. It helps a lot to build a robust Web development, with statically typed Javascript support, ready for a complex and enterprise-level projects. TypeScript is maintained by Microsoft, but it’s not the…React4 min read
Dec 29, 2018Member-onlyBuild a REST API with Node.js and Express.jsIn this guide you can build a REST API with Node.js and Express.js. Then, in a next part, we will be building automated Unit tests using Mocha and Chai, ready for a Test-Driven Development (TDD). The main components of this REST service are: A Node.js base project, created as a…Express10 min read