Skip to content

Instantly share code, notes, and snippets.

View antonfisher's full-sized avatar

Anton Fisher antonfisher

View GitHub Profile
@antonfisher
antonfisher / material-ui-flexible-fixed-header-table.js
Last active March 16, 2020 23:22
React.js Material-UI Table component with flexible height and fixed header
/*
* React.js Material-UI Table and TableRow components with flexible height and fixed header
* - fixes "jumping" scrolling bar in WebKit browsers
* - shows permanent scrolling bar for other browsers
*
* Usage: import this Table and TableRow component instead of
* 'material-ui/Table' and 'material-ui/TableRow' component
*/
import React, {PropTypes} from 'react';
@antonfisher
antonfisher / bash-one-liners.sh
Last active November 19, 2018 01:34
eslint only added/modified js files
# eslint only added/modified js files
git status --porcelain | grep '^\s*[AM]\+\s\+.*\.js$' | sed 's/^\s*[AM]\+\s\+//' | xargs eslint
# list licenses of all node_modules
cd node_modules && for i in $(ls); do echo $i: $(npm v $i license); done
# run script on remote machine
cat s.js | ssh [email protected] "cat | node"
# npm outdate for projects in dir @climagic
@antonfisher
antonfisher / displays.sh
Last active March 26, 2018 17:53
Show full screen terminals on each Linux screens
vim .config/monitors.xml
gnome-terminal --hide-menubar --full-screen;
for i in `xrandr --query | grep " connected" | grep -v "primary" | sed -e 's/^.*connected \([^ ]*\).*$/\1/'`; do gnome-terminal --hide-menubar --full-screen --geometry=$i; done
plugins: [
new webpack.optimize.CommonsChunkPlugin({
name: 'vendor',
minChunks: (module) => {
if (module.resource && /^.*\.(css|scss)$/.test(module.resource)) {
return false;
}
return module.context && module.context.includes('node_modules');
}
})
wget --mirror -p --html-extension --convert-links [HOST]

Keybase proof

I hereby claim:

  • I am antonfisher on github.
  • I am afschr (https://keybase.io/afschr) on keybase.
  • I have a public key whose fingerprint is 2762 516A 0461 6A5C 5356 98FE CD4E 893B 2CB4 4DFD

To claim this, I am signing this object:

# ------------------------------------------------------
# --- PRE-CONFIGURATION --------------------------------
# ------------------------------------------------------
#enable shh
touch ./boot/ssh
#preconfigure wifi
vim ./boot/wpa_supplicant.conf
# --- file conrent -------------------------------------
sudo apt install git vim redshift nodejs npm htop guake gnome-tweak-tool;
redshift -l list
# redshift -l geoclue2
sudo update-alternatives --config editor
# bind keyboard source change to CapsLosk
#gsettings get org.gnome.desktop.input-sources xkb-options
#gsettings set org.gnome.desktop.input-sources xkb-options "[]"
#gsettings set org.gnome.desktop.wm.keybindings switch-input-source "['<Alt>Shift_L']" #['Caps_Lock']
[user]
name = Anton Fisher
email = [email protected]
[color]
diff = auto
status = auto
branch = auto
ui = true
[alias]
st = status
{
"printWidth": 120,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"trailingComma": "none",
"bracketSpacing": false,
"jsxBracketSameLine": false,
"arrowParens": "always"