EDDYMENS

Published a year ago

How To Start An HTTP Server In Python 2 & 3

Python provides a convenient way to start a simple HTTP server to serve up HTML files using the module in Python 2. In Python 3 this is done using the module. If you have both versions of Python install Python 3 might be available as `python3`` in which case us...

Published a year ago

How To Refresh A Laravel 10 Tinker Session

You may have run into the annoying situation of needing to exit and restart your Tinker session each time you modify your code. In this walkthrough we will look at one way you can easily refresh your Tinker session by using the script below. ...

Published a year ago

How To Allow Users To Be Logged In Forever | Laravel 10

Laravel by default logs out an inactive user after some minutes. For apps that are the main drivers of a person's business, you might want to avoid requiring the user to log in every few m...

Published a year ago

What Is Continuous Integration CI

Continuous Integration(CI) is the use of different processes and tools to smoothen out the software creation and release workflow. When you have different team members working to create the same software solution it's easy for a lot of things to fall through the cracks which might prolong...

Published a year ago

What To Watch Out For When Writing JavaScript Without Semi-colons

A semi-colon is used to mark the end of a statement or to separate multiple statements on one line in many programming languages such as Javascript. However, the use of semi-colons in Javascript is optional as the parser appends missing semi-colons behind the scenes by followin...

Published a year ago

Puppeteer: Fix Timeout Issue

By default Puppeteer will timeout and stop loading a page if it takes too long. To fix this you will have to specify the maximum time it needs to wait for the page to load before timing out. The...