- atom-terminal@0.8.0
- autoclose-html@0.23.0
- busy-signal@1.3.0
- ember-cli-helper@0.9.0
- highlight-selected@0.12.0
- intentions@1.1.2
- language-ember-htmlbars@0.4.0
- line-ending-converter@1.3.2
- linter@2.1.0
- linter-csslint@1.3.4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <configuration> | |
| <system.webServer> | |
| <rewrite> | |
| <rules> | |
| <rule name="DynamicContent"> | |
| <conditions> | |
| <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="True"/> | |
| </conditions> | |
| <action type="Rewrite" url="index.html"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "inline-script-disabled": false, | |
| "href-abs-or-rel": false, | |
| "attr-unsafe-chars": false, | |
| "id-class-ad-disabled": false, | |
| "space-tab-mixed-disabled": false, | |
| "inline-style-disabled": false, | |
| "style-disabled": false, | |
| "id-class-value": false, | |
| "doctype-html5": false, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # USAGE: To deploy the ember front-end to a remote gitrepo you need to do the following: | |
| # | |
| # Create a dist-deploy folder and repo in the root of the ember repo - and of course add dist-deploy to .gitignore | |
| # Add the remote repo as a remote with same name a branch you want to use | |
| # Have the ember-deploy.sh in the root of the ember repo | |
| # In terminal run sh ember-deploy.sh BRANCH_NAME 'COMMIT_MESSAGE' replacing the BRANCH_NAME and COMMIT_MESSAGE with your own values of course. | |
| set -e # set errors to terminate script | |
| # check if branch name submitted |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Table 52 - CareerJSM | |
| CareerJSM - Job Search Management | |
| https://careerjsm.com | |
| @careerjsm | |
| MENTORS | |
| Tristan Toye | |
| tristan@careerjsm.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "workbench.colorTheme": "Oceanic Next Dark Operator", | |
| "files.trimTrailingWhitespace": true, | |
| "editor.tabSize": 2, | |
| "search.exclude": { | |
| "**/node_modules": true, | |
| "**/bower_components": true, | |
| "**/tmp": true, | |
| "**/dist": true, | |
| "**/dist-deploy": true, |
To make PRs that auto point to develop instead of master (or another default branch) you can do the following
- Install github hub cli:
brew install hubhttps://github.com/github/hub - Set the origin default branch:
git remote set-head origin develophttps://github.com/github/hub/commit/e645f9aaed46ea6c00f64a54fae92b1d68e81dbb - When on your branch use hub command:
hub pull-request - Edit PR notes in VIM, and exit
- Cmd click on link generated to confirm your PR is setup in github