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
const longerThanThree = (t: string): boolean => t.length > 3; | |
const includesO = (t: string): boolean => t.includes(filterInput); |
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
const users = [ | |
'Jo', | |
'Jim', | |
'Jake', | |
'Johny', | |
] |
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
const passItemThroughFilters = (item: any, cb: Function[]): boolean => | |
(R.juxt(cb)(item)).every(R.identity); |
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
box(10% 15%); | |
pad(10px 15px n n); | |
mar(n 15px 3px n); |
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
width: 10%; | |
padding-top: 10px | |
padding-right: 15px; | |
margin-bottom: 3px; | |
height: 15%; | |
margin-right: 15px; |
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
# Modules # | |
########### | |
/node_modules | |
/bower_components | |
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll |
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
[ | |
{ "keys": ["ctrl+b"], "command": "reveal_in_side_bar_and_focus" }, | |
] |
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
{ | |
"folders": | |
[ | |
//exclude all dirs | |
{ | |
"path": "/Users/wo/Documents/blog/sublimeProject", | |
"folder_exclude_patterns": ["*"], | |
}, | |
//import required dirs | |
{ "path": "/Users/wo/Documents/blog/sublimeProject/app" }, |
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
{ | |
"folders": | |
[ | |
{ | |
"path": "/Users/wo/Documents/blog/sublimeProject", | |
"folder_exclude_patterns": ["node_modules"], | |
} | |
] | |
} |