New design is now live!
I’ve created a new WordPress Theme for Rick’s code using Bootstrap 4. It is now live, check it out…
HTML, CSS and JavaScript
I’ve created a new WordPress Theme for Rick’s code using Bootstrap 4. It is now live, check it out…
If you need to find the url’s in a string and convert them to HTML link elements using JavaScript, feel free to take this handy regex expression…
Use TypeScript liniting in JavaScript files (.js) without changing the file extension with Atom IDE…
You can spawn a simple http server in your localhost with a single line using Python from your command line…
This magic regex will separate a string into groups of 4 characters (or less if in the end the group is smaller)…
Here’s a nice little regular expression for checking valid emails. There are dozens of email validations out there, this is just another one…
The following regular expression will match for a single character not present in the range between 0 (ASCII 48) and 9 (ASCII 57) (case sensitive)…
Specially useful when you’re on mobile and need to hide the phone keyboard…
Add a terminal command to lock the screen in Mac, add it to your bash_profile to it will be after restarting your computer…
Use a debounce function when listening to a window resize event in JavaScript otherwise you’ll site be very slow, bad UX or even crash the browser…