Skip to content

Instantly share code, notes, and snippets.

View RaphaelDDL's full-sized avatar
👨‍💻

Raphael DDL Oliveira RaphaelDDL

👨‍💻
View GitHub Profile
@RaphaelDDL
RaphaelDDL / install.md
Created February 4, 2020 19:53 — forked from floehopper/install.md
Installing OSX Catalina from scratch

List & install software updates

softwareupdate --list
sudo softwareupdate --verbose --install --all

Set computer name

COMPUTER_NAME="<computer-name>"
sudo scutil --set ComputerName $COMPUTER_NAME
@RaphaelDDL
RaphaelDDL / Preferences.sublime-settings
Last active August 29, 2015 14:03
RaphaelDDL's Preferences.sublime-settings
{
"atomic_save": false,
"auto_complete_commit_on_tab": false,
"auto_complete_with_fields": true,
"bold_folder_labels": false,
"caret_extra_width": 1,
"color_scheme": "Packages/Theme - Flatland/Flatland Monokai.tmTheme",
"default_line_ending": "unix",
"detect_indentation": false,
"detect_slow_plugins": false,
@RaphaelDDL
RaphaelDDL / Default (OSX).sublime-keymap
Last active August 29, 2015 14:03
RaphaelDDL's Default (OSX).sublime-keymap
[{
"keys": ["f12"],
"command": "reindent"
}, {
"keys": ["f10"],
"command": "js_format",
"context": [{
"key": "selector",
"operator": "equal",
"operand": "source.js,source.json"
// selectorSupported lovingly lifted from the mad italian genius, diego perini
// http://javascript.nwbox.com/CSSSupport/
function selectorSupported(selector){
var support, link, sheet, doc = document,
root = doc.documentElement,
head = root.getElementsByTagName('head')[0],
impl = doc.implementation || {
[
{
"keys": ["ctrl+w"],
"command": "run_multiple",
"args": {
"commands": [
{"command": "find_under_expand", "args": null, "context": "window"},
{"command": "show_panel", "args": {"panel": "find"}, "context": "window"}
]
}
// selectorSupported lovingly lifted from the mad italian genius, diego perini
// http://javascript.nwbox.com/CSSSupport/
function selectorSupported(selector){
var support, link, sheet, doc = document,
root = doc.documentElement,
head = root.getElementsByTagName('head')[0],
impl = doc.implementation || {