Skip to content

Instantly share code, notes, and snippets.

View Bobslegend61's full-sized avatar

Alabi Akpobome Emmanuel Bobslegend61

  • Lagos, Nigeria
View GitHub Profile
@Bobslegend61
Bobslegend61 / regexCheatsheet.js
Created January 11, 2019 06:30 — forked from sarthology/regexCheatsheet.js
A regex cheatsheet 👩🏻‍💻 (by Catherine)
let regex;
/* matching a specific string */
regex = /hello/; // looks for the string between the forward slashes (case-sensitive)... matches "hello", "hello123", "123hello123", "123hello"; doesn't match for "hell0", "Hello"
regex = /hello/i; // looks for the string between the forward slashes (case-insensitive)... matches "hello", "HelLo", "123HelLO"
regex = /hello/g; // looks for multiple occurrences of string between the forward slashes...
/* wildcards */
regex = /h.llo/; // the "." matches any one character other than a new line character... matches "hello", "hallo" but not "h\nllo"
regex = /h.*llo/; // the "*" matches any character(s) zero or more times... matches "hello", "heeeeeello", "hllo", "hwarwareallo"
@Bobslegend61
Bobslegend61 / Blogs_podcast.md
Last active October 16, 2018 05:47
30 Blogs & Podcasts For Web Developers To Follow

Here is a list that I compiled of 31 (30 sounded better) active blogs, newsletters and podcasts that relate to web development and design. All of these resources are currently posting in 2018. Some of these resources are related to certain technologies and topics and some are more diverse….Enjoy!

Blogs & Articles

Smashing Magazine Smashing magazine has been around for a while and has great resources for HTML, CSS, JavaScript and front-end technologies but also has articles on things like design patterns, workflow and even more personal stuff like the mental health of web developers. They offer books for sale, events as well as a full featured job board.

David Walsh davidwalsh.name is JavaScript based blog and this site features articles on modern JavaScript. Things like promises and async / await, destructuring, react, node and even some jquery. If you’re JavaScript developer then you should definitely check this blog out. The posts are very s

@Bobslegend61
Bobslegend61 / DevJobs.md
Last active January 27, 2024 02:09
70+ Job Find Websites For Developers & Other Tech Professionals

This is a list of over 70 websites to find jobs in the IT industry. I am focusing on development/programming but these websites offer jobs of all kinds including all types of engineering, design, networking, SEO and more. courtesy of Brad Traversy

Traditional Job Search

Websites where companies post part-time, full-time and remote positions for you to apply to

@Bobslegend61
Bobslegend61 / color_resources.md
Created September 3, 2018 14:36
Websites for color schemes, color guides, color creation tools, and some awesome colors
@Bobslegend61
Bobslegend61 / docker-help.md
Created August 16, 2018 05:28 — forked from bradtraversy/docker-help.md
Docker Commands, Help & Tips

Docker Commands, Help & Tips

Show commands & management commands

$ docker

Docker version info

@Bobslegend61
Bobslegend61 / webdev_online_resources.md
Created July 17, 2018 16:24 — forked from bradtraversy/webdev_online_resources.md
Online Resources For Web Developers (No Downloading)