Skip to content

Instantly share code, notes, and snippets.

View jrock2004's full-sized avatar

John Costanzo jrock2004

View GitHub Profile
@jrock2004
jrock2004 / d3-kanai-cube-missing.md
Created November 4, 2020 19:58
This is the items I am missing that I need to extract
  • Weapon
    • Akarat's Awakening
    • Anessazi Edge
    • Arreat's Law
    • Azurewrath
    • Baleful Remnant
    • Bastion's Revered
    • Blade of the Warlord
    • Bone Ringer
  • Bovine Bardiche
@jrock2004
jrock2004 / extensions.txt
Last active April 15, 2024 18:46
VS Code Configurations
adpyke.codesnap
alefragnani.project-manager
bradlc.vscode-tailwindcss
catppuccin.catppuccin-vsc
dbaeumer.vscode-eslint
EditorConfig.EditorConfig
eamodio.gitlens
esbenp.prettier-vscode
github.copilot
mikestead.dotenv
@jrock2004
jrock2004 / projections.json
Last active December 19, 2019 04:08 — forked from josemarluedke/projections.json
Projections Ember Pods & TS
{
"app/initializers/*.js": {
"type": "initializer"
},
"app/services/*.js": {
"type": "service"
},
"app/models/*.js": {
"type": "model",
@jrock2004
jrock2004 / README.md
Last active October 2, 2019 00:13 — forked from josemarluedke/ember-projections.json
A `.projections.json` file that can be used with vim-projectionist for navigating ember.js projects classic structure app.

EmberJS Vim Projections

This file is used to help you navigate around in your project. You will want to install Tpope Vim Projections.

Create a new file .projections.json and put it in your root project directory and take the above code and put it in there.

@jrock2004
jrock2004 / .projections.json
Last active August 20, 2017 21:05
EmberJS Files
{
"app/adapters/*.js": {
"command": "adapter",
"template": [
"// export default DS.{capitalize}Adapter.extend();"
]
},
"app/components/*.js": {
"command": "component",
@jrock2004
jrock2004 / Ember Debug in Visual Code
Last active August 4, 2016 18:08
If you want to debug ember apps in Visual Studio Code. File should be place in your projectroot/.vscode/launch.json
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch local",
"type": "chrome",
"request": "launch",
"runtimeExecutable": "/Applications/Google Chrome.app/Contents/MacOS/Google Chrome",
"runtimeArgs": [ "--remote-debugging-port=9222" ],
"url": "http://localhost:8081/dev.html#/location/cafe",