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
# Git-branches | |
function git-branches() { | |
if [ ! -z $1 ] | |
then | |
author=$1 | |
else | |
author="Artur" | |
fi | |
git for-each-ref --format=' %(authorname) %09 %(refname)' --sort=authorname | grep ${author} | grep -v 'origin/release-' |
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
import React, { FunctionComponent, useMemo } from 'react'; | |
import { Else, If, Then } from 'react-if'; | |
import ViewStep from '../view-step/ViewStep'; | |
import { ProjectFormData } from '../../js/types/Project'; | |
import { BuilderListItem } from '../../js/types/Builder'; | |
import FormSection from '../form-section/FormSection'; | |
import { AddProjectSteps } from '../../6-react-app/containers/add-project-button/AddProjectButton'; | |
import TileBuilderCard from '../../3-components/tile-builder-card/TileBuilderCard'; | |
interface ViewStepProps { |
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
set number | |
set autoread | |
set tabstop=2 | |
runtime macros/matchit.vim | |
" Ignores | |
set wildignore+=*/tmp/*,*/node_modules/*,*/dist/*,*.so,*.swp,*.zip | |
" Prettier | |
function RunPrettier() |
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
{ | |
"id": "{{urlParam 'id'}}", | |
"roof": "{{hexColor}}", | |
"guttering": "{{hexColor}}", | |
"fascia": "{{hexColor}}", | |
"garageDoor": "{{hexColor}}", | |
"mortar": "{{hexColor}}", | |
"externalWalls": { | |
"brick": "{{guid}}", | |
"bondStyle": "{{guid}}", |
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
import 'MorphSVGPlugin'; | |
import TimelineMax from 'gsap/src/uncompressed/TimelineMax'; | |
import { Power1 } from 'gsap/src/uncompressed/easing/EasePack'; | |
const elA = catEl.querySelector('.el-a'); | |
const elB = catEl.querySelector('.el-b'); | |
const tl = new TimelineMax() | |
.to(elA, 2, { morphSVG: elB, ease: Power1.easeInOut }); |
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
"browser": { | |
"MorphSVGPlugin": "./src/js/vendor/MorphSVGPlugin.js", | |
"waveSVG": "./src/js/vendor/waveSVG.js", | |
"SplitText": "./src/js/vendor/SplitText.js" | |
} |
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
export default function(timeline) { | |
const bodyEl = document.querySelector('body'); | |
const timelineControlEl = document.createElement('input'); | |
const timelinePlayEl = document.createElement('button'); | |
let intitalProgress = parseFloat( localStorage.getItem('timelineValue') ); | |
let isPlaying = false; | |
if ( isNaN(intitalProgress) ) { intitalProgress = 0; } | |
document.documentElement.classList.add('is-debug'); |
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
import Ember from 'ember'; | |
export default Ember.Component.extend({ | |
actions: { | |
setArray () { | |
this.set('array', [4, 5]); | |
this.sendAction('performTransition'); | |
}, | |
setNumber () { |
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
# Atom editor settings |
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
{ | |
"colorPrimary": "#E2299E", | |
"colorSecondary": "#8D7B87", | |
"colorBg": "#EBD5E4", | |
"colorGradient": ["#b9157f", "#db2b9b"], | |
"minRange": "0", | |
"maxRange": "250000", | |
"isEasing": "true", |
NewerOlder