ネットワーク設定, ワイヤレス設定, WPA supplicant, systemd-networkd, systemd-resolved
# 以前作ったnetctlの設定を削除
sudo systemctl stop [email protected]
sudo systemctl disable [email protected]
sudo -e /etc/systemd/network/wired.network
[Match]
FROM ubuntu:noble AS base | |
RUN <<-EOF | |
apt-get update && | |
apt-get install -y \ | |
curl \ | |
git | |
EOF | |
############################################# |
FROM alpine | |
RUN apk add --no-cache ruby | |
RUN wget -O /usr/local/bin/dumb-init https://github.com/Yelp/dumb-init/releases/download/v1.2.2/dumb-init_1.2.2_amd64 | |
RUN chmod +x /usr/local/bin/dumb-init | |
ENV TINI_VERSION v0.18.0 | |
ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini-static /tini | |
RUN chmod +x /tini |
FROM alpine:3.10 | |
RUN apk --no-cache add \ | |
python \ | |
py-pip | |
RUN pip install --upgrade pip awscli s3cmd | |
RUN adduser -D aws | |
USER aws |
Usage: | |
rails new APP_PATH [options] | |
Options: | |
[--skip-namespace], [--no-skip-namespace] # Skip namespace (affects only isolated applications) | |
-r, [--ruby=PATH] # Path to the Ruby binary of your choice | |
# Default: /usr/local/Cellar/ruby/2.6.3/bin/ruby | |
-m, [--template=TEMPLATE] # Path to some application template (can be a filesystem path or URL) | |
-d, [--database=DATABASE] # Preconfigure for selected database (options: mysql/postgresql/sqlite3/oracle/frontbase/ibm_db/sqlserver/jdbcmysql/jdbcsqlite3/jdbcpostgresql/jdbc) | |
# Default: sqlite3 |
Using --skip-bundle from /Users/fuse/.railsrc | |
Usage: | |
rails new APP_PATH [options] | |
Options: | |
[--skip-namespace], [--no-skip-namespace] # Skip namespace (affects only isolated applications) | |
-r, [--ruby=PATH] # Path to the Ruby binary of your choice | |
# Default: /usr/local/Cellar/ruby/2.6.3/bin/ruby | |
-m, [--template=TEMPLATE] # Path to some application template (can be a filesystem path or URL) | |
-d, [--database=DATABASE] # Preconfigure for selected database (options: mysql/postgresql/sqlite3/oracle/frontbase/ibm_db/sqlserver/jdbcmysql/jdbcsqlite3/jdbcpostgresql/jdbc) |
" vim-plug {{{1 | |
call plug#begin('~/.vim/plugged') | |
Plug 'xolox/vim-misc' | Plug 'xolox/vim-notes' | |
Plug 'powerman/vim-plugin-AnsiEsc', { 'on' : 'AnsiEsc' } " ansi escape sequences concealed, but highlighted as specified (conceal) | |
Plug 'godlygeek/tabular' | |
Plug 'junegunn/vim-easy-align' | |
Plug 'vim-scripts/VisIncr' | |
Plug 'kshenoy/vim-signature' " Plugin to toggle, display and navigate marks | |
Plug 'maxbrunsfeld/vim-yankstack' |
package main | |
import ( | |
"bufio" | |
"fmt" | |
"log" | |
"os" | |
"strconv" | |
"strings" | |
"time" |
ネットワーク設定, ワイヤレス設定, WPA supplicant, systemd-networkd, systemd-resolved
# 以前作ったnetctlの設定を削除
sudo systemctl stop [email protected]
sudo systemctl disable [email protected]
sudo -e /etc/systemd/network/wired.network
[Match]
# Maintainer: f440 <[email protected]> | |
pkgname=python-xkeysnail | |
pkgver=0.0.1 | |
pkgrel=1 | |
pkgdesc="Yet another keyboard remapping tool for X environment" | |
arch=('any') | |
url="https://github.com/mooz/xkeysnail" | |
license=('GPL') | |
groups=() | |
depends=('python') |
{ | |
"description": "control-[ to escape", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "open_bracket", | |
"modifiers": { "mandatory": [ "control" ] } | |
}, | |
"to": [ |