See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope>
is optional
///MY CUSTOM INIT SCRIPT FOR USE WITH KODE STUDIO, BECAUSE ITS MY BITCH | |
"use strict"; | |
const fs = require('fs'); | |
const path = require('path'); | |
function run(name, from, projectfile) { | |
if (!fs.existsSync(path.join(from, projectfile))) { | |
fs.writeFileSync(path.join(from, projectfile), "let project = new Project('New Project');\n" | |
+ "project.addAssets('Assets/**');\n" | |
+ "project.addSources('Sources');\n" |
///PERSONAL KEYBINDINGS SINCE VSCODE IS A BIT OF A BITCH | |
[ | |
{ | |
"key": "cmd+r", | |
"command": "workbench.action.debug.continue", | |
}, | |
{ | |
"key": "cmd+r", | |
"command": "workbench.action.debug.start", |
var gulp = require('gulp'); | |
var sourcemaps = require('gulp-sourcemaps'); | |
var source = require('vinyl-source-stream'); | |
var buffer = require('vinyl-buffer'); | |
var browserify = require('browserify'); | |
var watchify = require('watchify'); | |
var babel = require('babelify'); | |
function compile(watch) { | |
var bundler = watchify(browserify('./src/index.js', { debug: true }).transform(babel)); |
# Install ipython3 on Mac OS X Maverics | |
# Update brew | |
brew update | |
brew upgrade | |
# Install Python 3 | |
brew install python3 | |
# Install ipython |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
// This gist is now maintained on github at https://github.com/luetkemj/wp-query-ref | |
<?php | |
/** | |
* WordPress Query Comprehensive Reference | |
* Compiled by luetkemj - luetkemj.github.io | |
* | |
* CODEX: http://codex.wordpress.org/Class_Reference/WP_Query#Parameters | |
* Source: https://core.trac.wordpress.org/browser/tags/4.9.4/src/wp-includes/query.php | |
*/ |