See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| /* This is an Example for a gallery-item in Elementor Custom CSS with Media Queries for different Elements */ | |
| /* Small devices (mobile/tablets, 767px and below) */ | |
| @media only screen and (max-width: 766px) { | |
| selector .gallery-item img { | |
| object-fit: cover; | |
| height: 18.5em | |
| } | |
| } |
| ///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 "your_email@youremail.com"