Skip to content

Instantly share code, notes, and snippets.

View LuisRBarreras's full-sized avatar

Luis R Barreras LuisRBarreras

View GitHub Profile
@grabbou
grabbou / tasks.json
Last active June 30, 2023 13:29
A simple example of launching two long-running processes within Visual Studio Code to make working in monorepo easier
{
"version": "2.0.0",
"tasks": [
{
"label": "Start Expo dev server",
"type": "shell",
"command": "cd ./apps/mobile && yarn start",
"presentation": {
"reveal": "always",
"panel": "new",
@AndrejsAbrickis
AndrejsAbrickis / .bowerrc
Last active March 20, 2019 00:35
Migrate from bower to webpack
{
"directory": "wwwroot/scripts/bower"
}
@LuisRBarreras
LuisRBarreras / git_custom_config.sh
Last active August 12, 2022 20:50
git custom config
# show compact and simplet log commits
git config --global alias.mylog "log --pretty=format:'%Cred%h%Creset - %Cgreen%s%Creset %C(yellow)[%an]%Creset %C(cyan)<%ad>%Creset' --graph --date=short"
# list branch order by most recent commit
git config --global alias.mybranches "branch --sort=-committerdate"

Moved

Now located at https://github.com/JeffPaine/beautiful_idiomatic_python.

Why it was moved

Github gists don't support Pull Requests or any notifications, which made it impossible for me to maintain this (surprisingly popular) gist with fixes, respond to comments and so on. In the interest of maintaining the quality of this resource for others, I've moved it to a proper repo. Cheers!