Skip to content

Instantly share code, notes, and snippets.

View djGrill's full-sized avatar
🚀

david grilli djGrill

🚀
View GitHub Profile
@djGrill
djGrill / commands.sh
Last active March 16, 2026 03:01
Useful Rails Commands
rails new . \
--api \
--skip-action-mailbox \
--skip-action-text \
--skip-action-cable \
--skip-javascript \
--skip-hotwire \
--skip-system-test \
--skip-thruster \
--skip-bundle \
@djGrill
djGrill / steps.md
Last active March 19, 2020 09:20
[react-native-newrelic] iOS configuration

Requirements

  • react-native: 0.59.10

Installation

Install react-native-newrelic

npm install react-native-newrelic --save
@djGrill
djGrill / default.sublime-keymap
Last active January 9, 2025 11:42
Sublime Text 3 Key Bindings
/*
On OS X, basic text manipulations (left, right, command+left, etc) make use of the system key bindings,
and don't need to be repeated here. Anything listed here will take precedence, however.
*/
[
{ "keys": ["super+shift+n"], "command": "new_window" },
{ "keys": ["super+shift+w"], "command": "close_window" },
{ "keys": ["super+o"], "command": "prompt_open" },
{ "keys": ["super+shift+t"], "command": "reopen_last_file" },
{ "keys": ["super+alt+up"], "command": "switch_file", "args": {"extensions": ["cpp", "cxx", "cc", "c", "hpp", "hxx", "hh", "h", "ipp", "inl", "m", "mm"]} },