Skip to content

Instantly share code, notes, and snippets.

View djGrill's full-sized avatar
🚀

dAIvd djGrill

🚀
View GitHub Profile
@djGrill
djGrill / commands.sh
Last active June 13, 2024 11:37
Useful Rails Commands
rails new . \
--api \
--minimal \ # https://github.com/rails/rails/blob/4a4b3998300fbebf537b770d842066b13dee5072/railties/lib/rails/generators/rails/app/app_generator.rb
--skip-asset-pipeline \
--skip-bundle \
--skip-keeps \
--skip-listen \
--skip-spring \
--skip-sprockets \
--skip-test \
@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"]} },