Skip to content

Instantly share code, notes, and snippets.

View kreo's full-sized avatar
:atom:
System Failture. Try again🁢

Fabio Cencetti kreo

:atom:
System Failture. Try again🁢
View GitHub Profile
@kreo
kreo / 📊 Weekly development breakdown
Created May 6, 2021 08:29 — forked from antfu/📊 Weekly development breakdown
📊 Weekly development breakdown
TypeScript 16 hrs 5 mins █████████░░░░░░░░░░░ 30.9%
Markdown 13 hrs 52 mins ████████░░░░░░░░░░░░ 26.6%
Vue.js 11 hrs 27 mins ███████▒░░░░░░░░░░░░ 22.0%
JSON 3 hrs 59 mins ████▒░░░░░░░░░░░░░░░ 7.7%
{
"basics": {
"name": "Anthony Fu",
"picture": "https://antfu.me/avatar.png",
"label": "Software Engineer",
"headline": "A ship in harbor is safe, but that is not what ships are built for.",
"summary": "My name is Anthony Fu, a master of computer science student and a freelance software engineer. My passion for software lies with dreaming up ideas and making them come true with elegant interfaces. I take great care in the experience, architecture, and code quality of the things I build.\n\nI am also an open-source enthusiast and maintainer. I love how collaboration and knowledge sharing happens through open-source and I am happy to see what I do could eventually feedback to the community and industry.\n\nOutside of programming, I enjoy doing photography and traveling. I treasure the feeling when capturing wonderful moments and sharing them with people.",
"website": "https://antfu.me",
"projects_url": "https://antfu.me/projects",
"username": "antfu",
@kreo
kreo / gist:d2a9498172ff1a935926d8399f7603bb
Created April 26, 2021 16:42 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@kreo
kreo / px-rem-tw.csv
Created February 1, 2021 19:33 — forked from trevorgreenleaf/px-rem-tw.csv
PX to REM'S to TAILWIND CSS
PX REM TW
4 0.25 1
8 0.5 2
16 1 4
32 2 8
48 3 12
64 4 16
80 5 20
96 6 24
112 7 28
@kreo
kreo / animated-link-underline.css
Created September 17, 2020 20:57 — forked from dguo/animated-link-underline.css
blog - Animated Multiline Link Underlines with CSS - code
@kreo
kreo / Statamic+Tailwind+PurgeCSS.md
Created May 3, 2020 18:31 — forked from binoclard/Statamic+Tailwind+PurgeCSS.md
Fresh Statamic install, with Tailwind CSS and PurgeCSS configured

Fresh Statamic install, with Tailwind CSS and PurgeCSS configured

In 5 minutes, you’ll have a brand new clean Statamic site, with Tailwind CSS and PurgeCSS configured.

It assumes that you work on a Mac, you put your site in ~/sites and you use Laravel Valet.

All the credit go to Jack McDade and philipboomy, from whom I stole and adapt the build scripts and the PurgeCSS config, because I have really absolutely no idea what I am doing with all this Terminal Black Magic ™; this is only a detailed write up of the process.

You'll need Yarn and Node. You can install them both in one command via Brew: brew install yarn

@kreo
kreo / venv_cheat_sheet.md
Created May 1, 2020 07:31 — forked from bbengfort/venv_cheat_sheet.md
My virtualenv and virtualenv wrapper cheat sheet. I alias the commands of virtualenv and virtualenv wrapper for my own development environment.

Ben's VirtualEnv Cheatsheet

This cheat sheet describes my usage/implementation of virtualenv with virtualenv wrapper and the bash foo that I added with the help of many blogs to make it all tick together in fun land.

Quick Reference

$ echo $WORKON_HOME
/Users/benjamin/.virtualenvs

$ echo $PROJECT_HOME
@kreo
kreo / Update remote repo
Created April 29, 2020 13:13 — forked from mandiwise/Update remote repo
Transfer repo from Bitbucket to Github
// Reference: http://www.blackdogfoundry.com/blog/moving-repository-from-bitbucket-to-github/
// See also: http://www.paulund.co.uk/change-url-of-git-repository
$ cd $HOME/Code/repo-directory
$ git remote rename origin bitbucket
$ git remote add origin https://github.com/mandiwise/awesome-new-repo.git
$ git push origin master
$ git remote rm bitbucket
@kreo
kreo / gitcom.md
Created March 25, 2020 14:07 — forked from jednano/gitcom.md
Common git commands in a day-to-day workflow

Git Cheat Sheet

Initial Setup

Create an empty git repo or reinitialize an existing one

$ git init
@kreo
kreo / Switch_PHP_versions.md
Created March 12, 2020 00:15 — forked from 5818959/Switch_PHP_versions.md
Switch PHP versions in Mac OS