Skip to content

Instantly share code, notes, and snippets.

View michaeljymsgutierrez's full-sized avatar
:octocat:
I'm just a developer for fun ⌨️

Chael Gutierrez michaeljymsgutierrez

:octocat:
I'm just a developer for fun ⌨️
View GitHub Profile
- mobile
max-width: 800px - 1
- mobile-small
max-width: 320px
- desktop
min-width: 800px
- desktop-tiny
@parmentf
parmentf / GitCommitEmoji.md
Last active July 23, 2024 06:11
Git Commit message Emoji
@seanbehan
seanbehan / email-regex-match.js
Last active October 3, 2022 07:49
extract email addresses from string with javascript
// http://rubular.com/r/twBPG8HQgP
regex = /\S+[a-z0-9]@[a-z0-9\.]+/img
"hello sean@example.com how are you? do you know bob@example.com?".match(regex)
// ["sean@example.com", "bob@example.com"]