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 strict'; | |
| const paths = require('../config/paths'); | |
| const fs = require('fs'); | |
| const path = require('path'); | |
| const svgSprite = require('gulp-svg-sprite'); | |
| module.exports = function(gulp, bs) { | |
| return gulp.task('svg-symbols', function() { |
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
| let eventsList = []; | |
| require('./getGithub').then((data) => { | |
| for (event in data) { | |
| eventsList.push({ | |
| title: event.title, | |
| url: event.html_url | |
| }); | |
| } |
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
| javascript:(function()%7Bvar%20b%3D%22javascripting%20git-it%20scope-chains-closures%20elementary-electron%20learnyounode%20how-to-npm%20stream-adventure%20how-to-markdown%20functional-javascript-workshop%20levelmeup%20expressworks%20makemehapi%20promise-it-wont-hurt%20async-you%20nodebot-workshop%20goingnative%20planetproto%20webgl-workshop%20esnext-generation%20test-anything%20tower-of-babel%20learnyoumongo%20regex-adventure%20learn-sass%20pattern-lab-workshop%20learnyoubash%20currying-workshopper%20shader-school%20bytewiser%20bug-clinic%20browserify-adventure%20introtowebgl%20count-to-6%20kick-off-koa%20lololodash%20learnyoucouchdb%20learnuv%20learn-generators%20learnyoureact%20perfschool%20web-audio-school%20torrential%20thinking-in-react%20node-debug-school%20seneca-in-practice%20less-is-more%22.split(%22%20%22)%2Cd%3D%7B%7D%3B%5B%5D.slice.call(document.querySelectorAll(%22.js-comment-body%22)).filter(function(c)%7Bc%3Dc.innerText.replace(%22%20%22%2C%22-%22)%3Bb.forEach(function(a)%7Ba%3Dc.match(a)%3Bnu |
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
| [ | |
| { "keys": ["super+shift+r"], "command": "show_panel", "args": {"panel": "replace", "reverse": false} }, | |
| { "keys": ["alt+w"], "command": "less_to_css" } | |
| ] |
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
| # PATH | |
| export PATH=$HOME/bin:/usr/local/bin:$PATH | |
| # ZSH | |
| ZSH_THEME="clean" | |
| plugins=(git) | |
| HIST_STAMPS="dd.mm.yyyy" | |
| DISABLE_AUTO_UPDATE="true" | |
| export ZSH="$HOME/.oh-my-zsh" | |
| alias zshrc="subl ~/.zshrc" |
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
| // Converting NodeList to Arrays | |
| [].slice.call(document.querySelectorAll(query)); | |
| // Shuffling array’s elements | |
| [1,2,3].sort(Math.random() - 0.5); // [2,1,3] | |
| // Caching the array.length in the loop | |
| for(var i = 0, length = array.length; i < length; i++) { | |
| console.log(array[i]); | |
| } |
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
| $easing-swift: cubic-bezier(.4, 0, .2, 1); | |
| $easing-swifter: cubic-bezier(.4, 0, 0, 1); | |
| $easing-heavy: cubic-bezier(.7, 0, .6, 1); | |
| $easing-swift-in: cubic-bezier(0, 0, .2, 1); | |
| $easing-swift-out: cubic-bezier(.55, 0, .1, 1); |
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
Show hidden characters
| { | |
| "auto_close_tags": true, | |
| "auto_complete": true, | |
| "auto_match_enabled": true, | |
| "color_scheme": "Packages/User/SublimeLinter/base16-eighties (SL).tmTheme", | |
| "draw_white_space": "all", | |
| "enable_tab_scrolling": false, | |
| "font_face": "Menlo", | |
| "font_size": 18, | |
| "highlight_line": true, |