I hereby claim:
- I am musaprg on github.
- I am musaprg (https://keybase.io/musaprg) on keybase.
- I have a public key ASDSZ2BiPjrr_EbvvU1FTteYZDtkWKLSNFEW2Hnv_6Kz2Qo
To claim this, I am signing this object:
#!/bin/bash | |
git tag | sort -V | tail -n 2 | xargs -n 2 bash -c 'latexdiff-vc -e utf8 --git --flatten --force -r $0 -r $1 -t CFONT main.tex' |
#!/bin/bash | |
set -euo pipefail | |
if [ -z "$DISCORD_WEBHOOK_URL" ]; then | |
echo '$DISCORD_WEBHOOK_URL is not set. Please set and try again.' | |
exit 1 | |
fi | |
if [ -t 0 ]; then |
#!/bin/bash | |
set -eu | |
if [ $# -lt 1 ]; then | |
echo "Usage: benchexec <your command>" | |
exit 1 | |
fi | |
echo "Input your root password to change the CPU governor for disabling CPU-scaling." |
function FindProxyForURL(url, host) { | |
return "SOCKS localhost:10080"; | |
} |
I hereby claim:
To claim this, I am signing this object:
// ==UserScript== | |
// @name Jump to Waseda Univ. Domain automatically | |
// @namespace musaprg | |
// @version 0.1.1 | |
// @description try to take over the world! | |
// @author Kotaro Inoue <[email protected]> | |
// @match https://dl.acm.org/* | |
// @match https://ieeexplore.ieee.org/* | |
// @match https://link.springer.com/* | |
// @updateURL https://gist.githubusercontent.com/musaprg/0a4b58458b8cf3e7ef64770d49cfa8fd/raw/user.js |
FROM jupyter/scipy-notebook | |
USER root | |
RUN apt-get update -y --fix-missing && \ | |
apt-get -y install \ | |
mecab \ | |
libmecab-dev \ | |
mecab-ipadic-utf8 \ | |
git \ |
curl -s https://api.github.com/repos/protocolbuffers/protobuf/releases/latest \ | |
| grep "browser_download_url" \ | |
| grep -E "protoc-[0-9.]+-linux-x86_64.zip" \ | |
| cut -f 4 -d '"' \ | |
| xargs -n1 curl -L -sS > protoc.zip && \ | |
unzip protoc.zip && \ | |
mv bin/protoc /usr/local/bin |
// ==UserScript== | |
// @name Use AOJv2.0 in AOJ-ICPC | |
// @namespace musaprg | |
// @version 0.1.3 | |
// @description try to take over the world! | |
// @author Kotaro Inoue <[email protected]> | |
// @match http://aoj-icpc.ichyo.jp/* | |
// @grant none | |
// @updateURL https://gist.githubusercontent.com/musaprg/0cecc3d3705e77ac9f337eb378cde894/raw/user.js | |
// ==/UserScript== |
https://github.com/rails/webpacker#vue
To use Webpacker with Vue, create a new Rails 5.1+ app using --webpack=vue option:
# Rails 5.1+
rails new myapp --webpack=vue
(or run bundle exec rails webpacker:install:vue on a Rails app already setup with Webpacker).