Skip to content

Instantly share code, notes, and snippets.

View kujiy's full-sized avatar

Kujiy kujiy

View GitHub Profile
@kujiy
kujiy / gist:2434ffeb724cdfe5169a98618ca1b04b
Last active November 18, 2021 00:36
discussion forum highlight
@-moz-document regexp("https://my.uopeople.edu/mod/.*") {
article > div > article
{
box-shadow: -20px 0 0 #76AFB5
}
article > div > article > div > article
{
box-shadow: -20px 0 0 #AAA
}
}
@kujiy
kujiy / Vagrantfile
Last active January 22, 2022 02:02
Vagrantfile
Vagrant.configure("2") do |config|
# config.vm.box = "centos/7"
# 共有フォルダが使えるイメージ
config.vm.box = "geerlingguy/centos7"
config.vm.synced_folder "/Users/<name>/repos", "/repos"
config.vm.provision "shell", inline: <<-SHELL
sudo yum install -y vim net-tools iputils
SHELL
config.vm.define :node1 do |node|