Yet another regex for email validation
Here’s a nice little regular expression for checking valid emails. There are dozens of email validations out there, this is just another one…
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…
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…
Use a custom Angular directive to clean an input field to allow only number…
Fire an event after the ng-repeat has finished in Angular. If you need to trigger a third party jQuery plugin or anything for that matter…
Use Angular template with curly braces inside Jinja templates…
Add two way data binding in React using it’s own addons library…
Use the map function to loop through an empty array inside a react component. Very useful but no so intuitive…
Trasnform your .jsx files to regular .js files with Grunt and Babel, the JavaScript compiler…