yarn add --dev flow-bin
yarn run flow init
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
yarn run v1.9.2 | |
$ prettier '**/*.{js,jsx,json,css,scss,less,md,ts,tsx}' --write | |
__mocks__/fileMock.js 30ms | |
__mocks__/mocks.js 9ms | |
__mocks__/styleMock.js 4ms | |
.stylelintrc.js 5ms | |
app/FakeRouting.ts 213ms | |
app/src/common/actionCreators/accessToken.ts 13ms | |
app/src/common/actionCreators/config.ts 7ms | |
app/src/common/actionCreators/requestsTimestamp.ts 7ms |
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
# | |
# Sets Prezto options. | |
# | |
# Authors: | |
# Sorin Ionescu <[email protected]> | |
# | |
# | |
# General | |
# |
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
module.exports = { | |
extends: ['stylelint-config-standard', 'stylelint-config-css-modules'], | |
plugins: ['stylelint-scss'], | |
rules: { | |
// ########################################### important rules ########################################### | |
'declaration-block-no-duplicate-properties': null, | |
'property-no-unknown': null, | |
'selector-pseudo-element-no-unknown': null, | |
'unit-no-unknown': null, | |
'font-family-no-duplicate-names': null, |
bonus tip: for more darkness > https://darkreader.org/
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
[ | |
{ | |
"company": "AdMass", | |
"role": "Data Engineer", | |
"location": "New York, NY", | |
"remote": "No", | |
"jobspec": "https://angel.co/admass/jobs/260672-data-engineer", | |
"comment": "Social media data is some of the richest behavioral data that exists. People post on social media about what they’re eating, where they’re going, what they’re wearing, who they’re with, etc. However, most brands have very limited access to this data and therefore don’t know how to create the best experiences and ads for their community. AdMass changes this by integrating directly with brands to gather data and help them understand who their customers area. We combine data from several sources, including the brand’s CRM, social media platforms, and web analytics.\n\nWe aren’t looking for someone with a specific degree or number of years of experience in a slew of different technologies. We’re looking for someone that will thrive as a data engineer at our early-stage start up." | |
}, { | |
"company": "LAUNCH POTATO", |
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
VBoxManage clonehd mydrive.vdi newdrive.vdi | |
VBoxManage modifymedium --resize 8096 newdrive.vdi |
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
#!/bin/sh | |
# a sourcetree custom action to open the selected commit in gitlab (easy to change to a similar url) | |
# 1- download this file somewhere and make sure it's executable | |
# 2- sourcetree > prefreances > custom actions > add > 'Open commit in gitlab' as title > select script > $SHA in params | |
# | |
# Ahmed Hassanein - Tickaroo | |
gitRemote=$(git config --get remote.origin.url) | |
if [ "$gitRemote" == "" ] | |
then |
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
Joy | |
(^ω^) | |
(-‿‿-) | |
(o^▽^o) | |
(⌒▽⌒)☆ | |
<( ̄︶ ̄)> | |
ヽ(・∀・)ノ | |
(´。• ω •。`) | |
( ̄ω ̄) |
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
#This will show the largest files at the bottom (fourth column is the file (blob) size. | |
git ls-tree -r -t -l --full-name HEAD | sort -n -k 4 |