Skip to content

Instantly share code, notes, and snippets.

View cstipkovic's full-sized avatar
🏠
Working from home

Clauber Stipkovic cstipkovic

🏠
Working from home
View GitHub Profile
@MarioRinaldi
MarioRinaldi / Default (OSX).sublime-keymap
Last active March 27, 2020 12:22
Sublime Customizations
[
{ "keys": ["super+d"], "command": "duplicate_line" },
{ "keys": ["super+shift+d"], "command": "find_under_expand" },
{ "keys": ["super+shift+o"], "command": "show_overlay", "args": {"overlay": "goto", "show_files": true} },
{ "keys": ["f10"], "command": "clone_file" },
{ "keys": ["f12"], "command": "reindent", "args": {"single_line": false} },
{ "keys": ["f13"], "command": "reindent", "args": {"single_line": false} },
{ "keys": ["super+down"], "command": "sublimerge_go_down"},
{ "keys": ["super+up"], "command": "sublimerge_go_up"},
{ "keys": ["f19"], "command": "sftp_upload_file" },
Dev-Front-End TecSinapse
Migrado para o site:
http://tecsinapse.com.br/nossas-vagas
@denji
denji / homebrew-rvm.md
Last active February 3, 2025 15:04
Homebrew + RVM > Awesome

The MBP is my development machine, so I needed all of my tools installed with the ability to update them with ease. In the past, I used MacPorts to take care of my MySQL, Memcached, and Ruby installions and it worked just fine. This time around however, I wanted something new and fun. Homebrew.

Homebrew is a new package manager for OS X. Unlike Fink or MacPorts, Homebrew integrates with the core operating system, reducing the number of extra libraries to install etc. Another neat feature is the ability to write software package recipes in Ruby, awesome.

Here are some raw installation instructions (clean system). I like to keep everything under user ownership to make life more enjoyable, say no to sudo.

You will need the latest version of xcode, you can get it here. After the installation is complete, you may continue.

sudo mkdir /usr/local
@millermedeiros
millermedeiros / osx_setup.md
Last active October 18, 2025 04:22
Mac OS X setup

Setup Mac OS X

I've done the same process every couple years since 2013 (Mountain Lion, Mavericks, High Sierra, Catalina) and I updated the Gist each time I've done it.

I kinda regret for not using something like Boxen (or anything similar) to automate the process, but TBH I only actually needed to these steps once every couple years...

@dypsilon
dypsilon / frontendDevlopmentBookmarks.md
Last active October 26, 2025 08:45
A badass list of frontend development resources I collected over time.
@banaslee
banaslee / XGH - de-de.txt
Last active September 23, 2025 08:25
eXtreme Go-Horse Process
eXtreme Go Horse (XGH) Process
Quelle: http://gohorseprocess.wordpress.com
Übersetzung ursprünglich von https://gist.github.com/Neffez/f8d907ba8289f14e23f3855011fa4e2f
1. Ich denke, also ist es nicht XGH.
In XGH wird nicht gedacht, es wird das erste gemacht, was in den Sinn kommt. Es gibt auch keine zweite Option, die erste ist schneller.
2. Es gibt 3 Wege ein Problem zu lösen: den richtigen Weg, den falschen Weg und den XGH Weg, welcher exakt wie der falsche ist, aber schneller.
@potch
potch / getb2g.sh
Created October 30, 2012 22:21
On a Mac? use this script to update your B2G Desktop!
#!/bin/bash
# Which version should we fetch?
b2gremote="https://ftp.mozilla.org/pub/mozilla.org/b2g/nightly/latest-mozilla-central/"
appname="B2G"
if [ "$1" == "aurora" ]; then
b2gremote="https://ftp.mozilla.org/pub/mozilla.org/b2g/nightly/latest-mozilla-aurora/"
appname="B2GAurora"
fi
@hugosenari
hugosenari / makefile
Created September 12, 2012 14:55
make
CSS = Content/css/style.css
CSS_MIN = Content/css/style.min.css
CSS_META = Content/css/meta-css/style.less
LESS = 'Content/css/meta-css/.*\.less'
JSS = $(wildcard Scripts/*.js)
JSS_NAMES = $(basename ${JSS})
DATE=$(shell date +%I:%M%p)
@ricardopontes
ricardopontes / DuckDuckGo.js
Created August 3, 2012 18:27
Comando do add-on Ubiquity (Firefox) para o buscador DuckDuckGo
CmdUtils.makeSearchCommand({
names: ["DuckGo"],
url: "http://duckduckgo.com/?q={QUERY}",
icon: "http://duckduckgo.com/favicon.ico",
description: "Search DuckDuckGo for your words.",
//help: "You can use the keyboard shortcut ctrl + alt + number to open one " +
// "of the DuckGo results shown in the preview.",
preview: function duck_preview(pblock, {object}) {
var searchTerm = object.text;
// Don't even display any text before fetching search results,
@hugosenari
hugosenari / content.md
Created July 18, 2012 19:51
Checklist para recebimento de wirefram/psd

Coisas que eu sempre tenho que verificar quando recebo um wire frame/psd:

Básico:

  • Trata todos os casos de sucesso e erro?
  • É viável e aceitável?
  • Trata todas as telas?

Opcional:

  • Isto vai ficar leve?
  • Isto é usável?