{ "telemetry.enableCrashReporter": false, "telemetry.enableTelemetry": false, "workbench.activityBar.visible": false, "editor.fontSize": 15.5, "editor.fontFamily": "Monaco Lives For Powerline", "editor.fontLigatures": true, "editor.wordWrap": "on", "editor.wordWrapColumn": 90, "editor.suggest.showStatusBar": true,
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
const WavingHand = () => { | |
return ( | |
<motion.div | |
style={{ | |
marginBottom: '-20px', | |
marginRight: '-45px', | |
paddingBottom: '20px', | |
paddingRight: '45px', | |
display: 'inline-block', | |
}} |
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
adpyke.codesnap | |
andrewleedham.vscode-css-modules | |
bateleurio.vscode-combine-scripts | |
bierner.github-markdown-preview | |
bierner.markdown-checkbox | |
bierner.markdown-emoji | |
bierner.markdown-footnotes | |
bierner.markdown-mermaid | |
bierner.markdown-preview-github-styles | |
bierner.markdown-yaml-preamble |
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
const clipboardItem = new ClipboardItem({ | |
"text/plain": new Blob( | |
['https://example.com'], | |
{ type: "text/plain" } | |
), | |
"text/html": new Blob( | |
['<a href="https://example.com">Example link</a>'], | |
{ type: "text/html" } | |
), | |
"application/rtf": new Blob( |
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
// .storybook/main.js | |
const excludedProps = ['as', 'forwardedAs', 'theme', 'ref'] | |
module.exports = { | |
// ... | |
typescript: { | |
check: false, | |
checkOptions: {}, | |
reactDocgen: react-docgen-typescript | |
reactDocgenTypescriptOptions: { |
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
PROMPT="${pwd} ${git} | |
%(?..)%B›%b%{$reset_color%} " | |
# Gun safety lock | |
alias rm "rm -i" | |
# General UNIX | |
alias cp='cp -iv' | |
alias df='df -h' | |
alias du='du -h' |
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 { merge } from 'lodash' | |
// This module allows us to completely customize all of Material UI's JSS stylesheets | |
// to define our own theme. | |
// | |
// Note that you Material UI's JSS is often tied to application logic and you may | |
// deviate from the official Material UI spec. | |
// | |
// Unlike using the `overrides` feature of jss-theme-reactor, here you have access to | |
// the original calculated styles and theme. Notably you can do deep merge (lodash.merge) |
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
var RequestShortener = require("webpack/lib/RequestShortener"); | |
var _ = require("lodash"); | |
/** | |
* TODO Docs | |
* @example new NamedModulesPlugin(/^\.\/app\/(viewmodels|records|adapters)/, /^\.\/app\/(.*)\.js$/) | |
*/ | |
function NamedModulesPlugin(fileWhitelistRegex, replacementRegex) { | |
this.fileWhitelistRegex = fileWhitelistRegex; | |
this.replacementRegex = replacementRegex; |
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
⚡ gn watch:main annotations-client master * | |
Running "watch:main" (watch) task | |
Waiting...OK | |
>> File "app/abc.coffee" changed. | |
Running "coffee:compile" (coffee) task | |
File tmp/javascript/app/abc.js created. | |
Running "file_did_change" task |
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
"use strict" | |
module.exports = (grunt) -> | |
grunt = (require 'grunt-utilities') grunt | |
# Note that for performance reasons we're only matching one level | |
# down: 'test/spec/{,*/}*.js'. If you want to match all subfolders, | |
# use 'test/spec/**/*.js' | |
grunt.initConfig | |
yeoman: |
NewerOlder