Skip to content

Instantly share code, notes, and snippets.

View vmariano's full-sized avatar
:shipit:
ATR coding.

Mariano Vicente vmariano

:shipit:
ATR coding.
  • Buenos aires, Argentina
View GitHub Profile

Must

  • Oh my zsh, bunch of plugins and improvements for zsh (alternative to bash, compatible.
  • fzf, fuzzy finder. Specially when configured with ctrl+r to search history.
  • (Mac) Raycast. Spotlight replacement. Better in every way. Also good replacement for the default emoji picker, much faster.

Nice-to-have

  • cron. Desktop calendar to rule them all.

Mac-specific apps

  • iterm. Tried a few others but keep coming back to this one.
This work as a "template".
The idea is leave the titles, and answer all questions (if apply if not, delete it)
```
Motivation/Context
What is the problem we're trying to solve or the goal we're trying to accomplish?
Is there history behind the issue that should be known?
@vmariano
vmariano / ask-for-review
Last active December 23, 2015 06:29
Ask for reviewboard basic functions.
#!/bin/bash
# All functions create a draft for each review.
#For public branches only this means,
function reviewPublickBranch() {
post-review --guess-summary --guess-description --target-groups development "$1" | grep https | xargs firefox
}
#Parent non public.
function reviewNonPublicBranch() {
@vmariano
vmariano / release.sh
Last active August 29, 2015 14:10
Release flow.
#!/bin/bash
#based on https://github.com/DemocracyOS/app/wiki/How-to-release-a-new-version-of-DemocracyOS
# $1 is the new number version ej: 0.0.2
function release-prepare() {
git checkout -b $1
git-changelog --tag $1
git add History.md
vim History.md
echo 'Now, you can move the version of config files'
#Update dev fixtures
function dev-reload-fixtures-billtracker() {
node $path_project/bin/billtracker-db drop
node $path_project/bin/billtracker-db load bill $path_project/lib/fixtures/bills.json
}