Forked from David DeSandro's Pen Isotope - masonry layout mode.
A Pen by Nelson Omuto on CodePen.
Forked from David DeSandro's Pen Isotope - masonry layout mode.
A Pen by Nelson Omuto on CodePen.
Forked from David DeSandro's Pen Isotope - layout modes.
A Pen by Nelson Omuto on CodePen.
'use strict'; | |
var gulp = require('gulp'); | |
var gutil = require('gulp-util'); | |
var browserSync = require('browser-sync'); | |
var notify = require('gulp-notify'); | |
var less = require('gulp-less'); | |
var autoprefix = require('gulp-autoprefixer'); | |
var minifyCSS = require('gulp-minify-css'); | |
var exec = require('child_process').exec; |
A starter app with sidenav, icons, tabs, floating action button, and a list of items.
Forked from Angular Material Basic App.
Forked from Marcy Sutton's Pen Angular Material Basic App.
A Pen by Nelson Omuto on CodePen.
syntax on | |
" for command mode | |
" nnoremap <S-Tab> << | |
" for insert mode | |
inoremap <S-Tab> <C-d> | |
set pastetoggle=<F3> | |
set expandtab ts=4 sw=4 ai | |
autocmd Filetype html setlocal ts=2 sw=2 expandtab |
Create file /etc/systemd/system/[email protected]
[Unit]
Description=%i service with docker compose
Requires=docker.service
After=docker.service
import Ember from 'ember'; | |
export default Ember.Component.extend({ | |
tagName: 'p', | |
classNames: ['x-input'], | |
attributeBindings: ['dataFieldName:label'] | |
}); |
git add . && git commit -m '$1' && git push |
(function flatten(arr, currentIndex = 0, flattened = []) { | |
let currItem; | |
if (currentIndex >= arr.length) { | |
return flattened; | |
} | |
currItem = arr[currentIndex++]; | |
if (!Array.isArray(currItem)) { | |
flattened.push(currItem); |