Skip to content

Instantly share code, notes, and snippets.

View sm3dev's full-sized avatar
🍿
outside in a Clarity. right outside

Michael P. Wright, SM₃ sm3dev

🍿
outside in a Clarity. right outside
View GitHub Profile
@sm3dev
sm3dev / List-of-AI-Tools-and-Applications.md
Last active December 31, 2024 17:42
List of AI Tools and Applications
@sm3dev
sm3dev / UI UX Front-End Resources.md
Last active September 23, 2026 05:11
UI/UX Front-End Resource Collection from Michael P Wright

UI/UX Front-End Resources

My personal collection of Front-End Development, User Interface Design, User Experience Design, and other Software Development resources. I began this Gist in 2021 while attending Nashville Software School as a student in the Front-End Web Designer/Developer Program. If you find any mistakes, especially broken links, DM me on Twitter: https://twitter.com/MrWryt

✴️ = Affiliate link. I receive a commission from the vendor when a purchase is made after clicking my link. Thank you!

Prototyping and Wireframing Tools

Design Systems

@sm3dev
sm3dev / convert-text-multiple-elements-lowercase-no-special-characters-with-javascript-arrays.html
Last active September 7, 2019 01:21
Convert Text in Multiple Elements to an Array to Replace Spaces and Special Characters with Dashes and Make All Letters in the Array Objects (Strings) Lowercase; The Long Way (Without Regular Expressions)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>
Convert Text in Multiple Elements to an Array to Replace Spaces and
SpecialCharacters with Dashes and Make All Letters in the Array Objects
(Strings) Lowercase; The Long Way (Without Regular Expressions)