Published 2023-08-13 09:17:19
What Is An Access Control List (ACL)?An Access Control List is a list that defines which features of a computer system, software, or resource a user has access to. Let's say your software system has different types of roles, say an admin (ADM), data entry (DE), and superviso...
Published 2023-08-13 08:38:53
How To Allow Users To Be Logged In Forever | Laravel 10Laravel 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 ...
Published 2023-08-12 09:45:24
What Is Continuous Integration CIContinuous 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 ...
Published 2023-08-09 18:27:48
What To Watch Out For When Writing JavaScript Without Semi-colonsPublished 2023-08-09 18:19:05
Puppeteer: Fix Timeout IssueBy 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...
Published 2023-08-08 06:25:04
Matching Markdown And HTML Headings Using Regex (JS)The Javascript code below matches the different types of headings in a Markdown string. This includes HTML headings since Markdown is a superset of HTML. The different types of headings the script matches are: Markdown hash based heading: Thus , ##...