├── .gitignore ├── README.md └── images ├── cheatsheets.jpg ├── css-32.png ├── css-48.png ├── demos-32.png ├── demos-48.png ├── html-32.png ├── html-48.png ├── javascript-32.png ├── javascript-48.png ├── logo.png ├── manzdev-banner.png ├── terminal-32.png └── terminal-48.png /.gitignore: -------------------------------------------------------------------------------- 1 | discard/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # @ManzDev — [Manz.dev](https://manz.dev/) 2 | 3 | [![Twitter: Manz](https://img.shields.io/twitter/follow/Manz?style=social)](https://twitter.com/Manz) 4 | [![Twitch: ManzDev](https://img.shields.io/twitch/status/ManzDev?label=Twitch&style=social)](https://twitch.tv/ManzDev) 5 | [![Youtube: ManzDev](https://img.shields.io/youtube/channel/subscribers/UCgZoKiTvvpEnr1zI6Kv_i7A)](https://youtube.com/@ManzDev) 6 | [![GitHub: ManzDev](https://img.shields.io/github/followers/ManzDev?label=ManzDev&style=social)](https://github.com/ManzDev) 7 | 8 | ![ManzDev - GitHub Profile](./images/manzdev-banner.png) 9 | 10 | Hi! I'm Manz, 👨🏽‍💻 FullStack developer and 🥑 FrontEnd / WebPlatform standards advocate
11 | 12 | - 🧰 FullStack/Frontend Engineer / ❤️ CSS lover 13 | - 🎓 Teacher & Director at [@eoi](https://twitter.com/eoi) 14 | - 🎬 Partner content creator on [Twitch](https://twitch.tv/ManzDev) & [Youtube](https://youtube.com/@ManzDev) 15 | - 🎓 Ex-Teacher at [@ull](https://twitter.com/ull) 16 | - 👾 Gamer & Geek (Graphic Adventures / Pixel Art) 17 | 18 | ## My works 19 | 20 | [![HTML](./images/html-48.png)](https://lenguajehtml.com/) [![CSS](./images/css-48.png)](https://lenguajecss.com/) [![Javascript](./images/javascript-48.png)](https://lenguajejs.com/) [![Terminal](./images/terminal-48.png)](https://terminaldelinux.com/) [![Demos](./images/demos-48.png)](https://manz.dev/streams) 21 | 22 | ```js 23 | const works = [ 24 | { name: "📙 LenguajeHTML", url: "https://lenguajehtml.com/" }, 25 | { name: "📘 LenguajeCSS", url: "https://lenguajecss.com/" }, 26 | { name: "📒 LenguajeJS", url: "https://lenguajejs.com/" }, 27 | { name: "📓 TerminalDeLinux", url: "https://terminaldelinux.com/" }, 28 | { name: "🎁 Manz.dev", url: "https://manz.dev/" } 29 | ] 30 | ``` 31 | 32 | ## Profiles 33 | 34 | - Me: [Twitter](https://twitter.com/Manz) 🐦 35 | - Twitch: [ManzDev](https://twitch.tv/ManzDev) 🎬 36 | - Youtube: [@ManzDev](https://youtube.com/c/ManzDev) 🎬 37 | - Instagram: [@manz.dev](https://instagram.com/manz.dev) 📷 38 | - Linkedin: [J. Roman Hdez](https://www.linkedin.com/in/joseromanhdez/) 💼 39 | 40 | [![FrontEnd Cheatsheets](./images/cheatsheets.jpg)](https://twitter.com/Manz/status/1275338301172600837) 41 | -------------------------------------------------------------------------------- /images/cheatsheets.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManzDev/manzdev/253f7923c6dee70ab1d1ac899b4ffc860622f4d4/images/cheatsheets.jpg -------------------------------------------------------------------------------- /images/css-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManzDev/manzdev/253f7923c6dee70ab1d1ac899b4ffc860622f4d4/images/css-32.png -------------------------------------------------------------------------------- /images/css-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManzDev/manzdev/253f7923c6dee70ab1d1ac899b4ffc860622f4d4/images/css-48.png -------------------------------------------------------------------------------- /images/demos-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManzDev/manzdev/253f7923c6dee70ab1d1ac899b4ffc860622f4d4/images/demos-32.png -------------------------------------------------------------------------------- /images/demos-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManzDev/manzdev/253f7923c6dee70ab1d1ac899b4ffc860622f4d4/images/demos-48.png -------------------------------------------------------------------------------- /images/html-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManzDev/manzdev/253f7923c6dee70ab1d1ac899b4ffc860622f4d4/images/html-32.png -------------------------------------------------------------------------------- /images/html-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManzDev/manzdev/253f7923c6dee70ab1d1ac899b4ffc860622f4d4/images/html-48.png -------------------------------------------------------------------------------- /images/javascript-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManzDev/manzdev/253f7923c6dee70ab1d1ac899b4ffc860622f4d4/images/javascript-32.png -------------------------------------------------------------------------------- /images/javascript-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManzDev/manzdev/253f7923c6dee70ab1d1ac899b4ffc860622f4d4/images/javascript-48.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManzDev/manzdev/253f7923c6dee70ab1d1ac899b4ffc860622f4d4/images/logo.png -------------------------------------------------------------------------------- /images/manzdev-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManzDev/manzdev/253f7923c6dee70ab1d1ac899b4ffc860622f4d4/images/manzdev-banner.png -------------------------------------------------------------------------------- /images/terminal-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManzDev/manzdev/253f7923c6dee70ab1d1ac899b4ffc860622f4d4/images/terminal-32.png -------------------------------------------------------------------------------- /images/terminal-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManzDev/manzdev/253f7923c6dee70ab1d1ac899b4ffc860622f4d4/images/terminal-48.png --------------------------------------------------------------------------------