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
fs.inotify.max_user_instances=1024 | |
fs.inotify.max_user_watches=524288 |
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
#!/bin/bash | |
# Allow users to override command-line options | |
if [[ -f ~/.config/chrome-flags.conf ]]; then | |
CHROME_USER_FLAGS="$(cat ~/.config/chrome-flags.conf)" | |
fi | |
# Launch | |
exec /opt/google/chrome/google-chrome $CHROME_USER_FLAGS "$@" |
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
shnsplit -f CDImage.cue -t "%n - %t" -o "flac flac -s -8 -o %f -" CDImage.flac |
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
--- | |
extends: | |
- tslint:latest | |
- tslint-react | |
rulesDirectory: | |
- node_modules/tslint-microsoft-contrib | |
rules: | |
ban-types: | |
- true | |
- - Object |
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
sudo usb_modeswitch -v 0x12d1 -p 0x14fe -V 0x12d1 -P 0x1506 -M 55534243123456780000000000000011062000000100000000000000000000 |
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
fc-list -f '%{file}\n' :lang=ja |
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
# The GResource file name | |
GR_FILE="gtk.gresource" | |
# The base folder of the extracted resources | |
GR_BASEDIR="/org/gnome/" | |
## Check for required utilities... | |
for REQUIRED_PROG in gresource | |
do |
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
Show hidden characters
{ | |
"extends": [ | |
"tslint:latest", | |
"tslint-react" | |
], | |
"rulesDirectory": [ | |
"node_modules/tslint-microsoft-contrib" | |
], | |
"rules": { | |
"ban-types": [ |
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 ExtractTextPlugin = require('extract-text-webpack-plugin'); | |
const path = require('path'); | |
const workboxPlugin = require('workbox-webpack-plugin'); | |
const webpack = require('webpack'); | |
module.exports = (env) => { | |
if (env === 'dev') { | |
return { | |
context: path.resolve(__dirname, './'), |
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
{ | |
"compilerOptions": { | |
"module": "es2015", | |
"moduleResolution": "node", | |
"target": "es2015", | |
"sourceMap": true, | |
"inlineSources": true, | |
"outDir": "./dist/", | |
"lib": [ | |
"dom", |
NewerOlder