Синхронизация настроек Sublime Text 3
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
| [ | |
| { "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
| 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
| 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
| '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
| function fuck(msg) { | |
| var fuckfExcl = '0'; | |
| var ohoho = msg; | |
| for (var n = 0; n < fuckfEx.length; n++) { | |
| if (msg.toLowerCase().search(fuckfEx[n]) != -1 && (msg.toLowerCase().search(fuckf[0]) == -1 && msg.toLowerCase().search(fuckf[1]) == -1)) { | |
| fuckfExcl = '1'; | |
| } | |
| } | |
| if (fuckfExcl == '0') { | |
| for (var k = 0; k < fuckf.length; k++) { |
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
| var $ = q => document.querySelectorAll(q) | |
| var columns = $('table td:nth-child(4)') | |
| var filterNum = n => !isNaN(parseFloat(n)) ? parseFloat(n) : 0 | |
| var kb2mb = n => Math.round(n.toFixed(2)/1024)+' MB' | |
| var arr = nl => Array.from(nl) | |
| var summary = arr(columns).reduce((sum, val) => { | |
| return sum += filterNum(val.innerText) | |
| }, 0) |