Skip to content

Instantly share code, notes, and snippets.

View TristanToye's full-sized avatar
💼
Helping Job Seekers

Tristan Toye TristanToye

💼
Helping Job Seekers
View GitHub Profile
@TristanToye
TristanToye / pull-requests-set-develop-base-gitflow.md
Last active May 15, 2019 14:25
How to set a different default branch for pull requests when working in gitflow.
@TristanToye
TristanToye / settings.json
Created May 24, 2017 13:05
VSCode Settings
{
"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,
@TristanToye
TristanToye / info.txt
Last active February 18, 2017 17:22
CareerJSM HTML500 Info
Table 52 - CareerJSM
CareerJSM - Job Search Management
https://careerjsm.com
@careerjsm
MENTORS
Tristan Toye
tristan@careerjsm.com
@TristanToye
TristanToye / ember-deploy.sh
Created August 23, 2016 18:31
Deployment File For Ember on Azure Web Apps
# 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
@TristanToye
TristanToye / apm-package-list.md
Last active March 23, 2017 15:33
My Apm Package List
  • 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
@TristanToye
TristanToye / .htmlhintrc
Created May 26, 2016 18:05
htmlhint disable all rules
{
"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,
@TristanToye
TristanToye / web.config
Created March 8, 2016 22:14
EmberJS Config Needed to Run it on Azure Web App
<?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"/>
@TristanToye
TristanToye / 0_reuse_code.js
Created October 2, 2013 23:23
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console