Skip to content

Instantly share code, notes, and snippets.

View devthiago's full-sized avatar

Thiago Alves Luiz devthiago

View GitHub Profile
@devthiago
devthiago / portfolio.md
Created January 17, 2026 19:56
My portfolio

Disclaimer: I don't have a proper portfolio. Here's a list of the products I've worked on that I consider highlights of my UX/frontend career.

UX/Frontend Highlights

Humane (now HP IQ)

URL: https://humane.com

Created stunning UI elements along with animations to catch attention of users and keep them interested in the content. I had to use WebArchive to get the right website I've worked on. Plus, I worked on the Shopify interface for Humane.

@devthiago
devthiago / weather.sh
Last active February 28, 2016 00:40
Cool shell functions
# WEATHER INFO ------------------------------------------------------------
# Usage:
# $ weather [CITY_NAME]
# Examples:
# $ weather #returns current local weather
# $ weather "Porto Alegre" #returns Porto Alegre weather
function weather {
if [ -z "$1" ]; then
curl http://wttr.in/;