This file contains 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
<?xml version="1.0" encoding="utf-8"?> | |
<key name="Software"> | |
<key name="ConEmu"> | |
<key name=".Vanilla" modified="2017-04-16 23:09:24" build="170402"> | |
<value name="StartType" type="hex" data="02"/> | |
<value name="CmdLine" type="string" data=""/> | |
<value name="StartTasksFile" type="string" data=""/> | |
<value name="StartTasksName" type="string" data="{Bash::bash}"/> | |
<value name="StartFarFolders" type="hex" data="00"/> | |
<value name="StartFarEditors" type="hex" data="00"/> |
This file contains 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
abbr --add gco "git checkout" | |
abbr --add gb "git branch" | |
abbr --add gp "git push" | |
abbr --add gl "git pull" | |
abbr --add gaa "git add --all" | |
abbr --add gc "git commit -m \"\"" | |
abbr --add gf "git fetch" | |
abbr --add gs "git status" | |
abbr --add gcm "git checkout master" | |
abbr --add gss "git stash save -u" |
This file contains 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
### Keybase proof | |
I hereby claim: | |
* I am christilut on github. | |
* I am christilut (https://keybase.io/christilut) on keybase. | |
* I have a public key ASBiEE8YFJPlPNYlwwQaaOQ4mgAAshaRl2W0c2gd5VxB6go | |
To claim this, I am signing this object: |
This file contains 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
<template lang="pug"> | |
h3 test | |
</template> | |
<script> | |
export default { | |
} | |
</script> | |
<style lang="scss" scoped> |
This file contains 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
$phone-width: 600px; | |
$tablet-width: 900px; | |
$desktop-width: 1200px; | |
$devices: ( | |
none: null, | |
phone: $phone-width, | |
tablet: $tablet-width, | |
phablet: $desktop-width, | |
desktop: null |
This file contains 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
// Copy _redirects | |
var fs = require('fs-extra') | |
fs.copySync(path.join(__dirname, '..', 'static/root/_redirects'), path.join(__dirname, '..', 'dist/_redirects')) |
This file contains 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
JSON.stringify($.map($('.devsite-table-wrapper').first().find('tbody tr'), (x) => { | |
return { | |
label: $(x).find('td').first().text(), | |
code: $(x).find('td:eq(1)').text() | |
} | |
}), null, ' ') | |
// dont forget to remove some comments |
This file contains 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
<template lang="pug"> | |
v-text-field( | |
ref='field', | |
:prefix='prefix', | |
v-model='model', | |
@focus='onFocus', | |
@keyup='onKeyUp', | |
:error-messages='errorMessages', | |
v-bind='$attrs', | |
@change='onChange' |
This file contains 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
async function timeout(ms: number) { | |
return new Promise(resolve => setTimeout(resolve, ms)) | |
} |
This file contains 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
$g: 20px; | |
$props: ( | |
(margin, ma), | |
(margin-top, mt), | |
(margin-bottom, mb), | |
(margin-left, ml), | |
(margin-right, mr), | |
(padding, pa), | |
(padding-top, pt), |
OlderNewer