キーボードレイアウト変更方法の備忘。
英語→日本語。
・恒久対応
sudo dpkg-reconfigure keyboard-configuration Generic 105-key (Intl) PC → Japanese → Japanese → The default for the keyboard layout → No compose key

プログラムのメモとか日常のこととか
キーボードレイアウト変更方法の備忘。
英語→日本語。
・恒久対応
sudo dpkg-reconfigure keyboard-configuration Generic 105-key (Intl) PC → Japanese → Japanese → The default for the keyboard layout → No compose key
vim .xmodmap
remove mod4 = Super_L add control = Super_L
xmodmap .xmodmap
add_filter('option_rss_use_excerpt',function($v){return false;});
add_filter('the_excerpt_rss',function($output){return get_the_content_feed('rss2');});
add_filter('cron_schedules',function($schedules){
$schedules['five_minutes'] = array(
'interval' => 300,
'display' => __('Every 5 Minutes')
);
return $schedules;
});
wp_schedule_event(time(), 'five_minutes', 'your_cron_function');
define('WP_HOME','http://example.com');
define('WP_SITEURL','http://example.com');
ビジュアルモードで選択後
:'<,'>s/\"/\'/g
cmd.exeを管理者権限で実行
fsutil hardlink create C:\Users\wkbr\Documents\TERATERM.INI C:\Users\wkbr\Dropbox\backup\TERATERM.INI
fsutil hardlink create [新しいファイル] [元ファイル]
regedit起動
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout]
バイナリ値追加
"Scancode Map"=hex:00,00,00,00, 00,00,00,00, 03,00,00,00, 1d,00,3a,00, 01,00,7b,00, 00,00,00,00
PC再起動
ディスク容量の確認
df -h /
各ディレクトリの使用量調査
du -sh /*
SELECT * FROM テーブル名; INTO OUTFILE 'ファイル名(path)' FIELDS TERMINATED BY 'セパレーター「,」とか デフォルトはtab';