把 Caps Lock 變成智慧的 Control 以及 Escape :
- 單獨輕按一下就是 Escape 。
- 若按下時同時按著其他鍵,就會是 Control 。
這應該是 Vim 和 Emacs 的最佳解了!(Emacs? Bash 的快捷鍵就是 Emacs 系列的)
- Send Escape if you tap Caps Lock alone.
| """ | |
| This python script encodes all files that have the extension mkv in the current | |
| working directory. | |
| Sources: | |
| http://ffmpeg.org/trac/ffmpeg/wiki/x264EncodingGuide | |
| """ | |
| import subprocess, os | |
| #------------------------------------------------------------------------------- |
Picking the right architecture = Picking the right battles + Managing trade-offs
モヒカンslackのチャネルリスト(毎日 AM 5:00 自動更新)
詳細はQiita:究極のIT系最新技術情報収集用Slackチーム公開 - モヒカンSlack -を参照。
参加は
#######Compiling nginx with pagespeed and GeoIP module
As root execute below commands
# yum install gcc-c++ pcre-devel pcre-devel zlib-devel make unzip openssl-devel
And then download PageSpeed with below commands
# mkdir -P /opt/nginx; mkdir -P /opt/nginx/modules/;
# cd /opt/nginx/modules
# NPS_VERSION=1.9.32.3
# wget https://github.com/pagespeed/ngx_pagespeed/archive/release-${NPS_VERSION}-beta.zip
# unzip release-${NPS_VERSION}-beta.zip
| #!/bin/bash | |
| # Full path to tc binary | |
| TC=$(which tc) | |
| # | |
| # NETWORK CONFIGURATION | |
| # interface - name of your interface device | |
| # interface_speed - speed in mbit of your $interface | |
| # ip - IP address of your server, change this if you don't want to use |
| # Based on post from: https://snipt.net/chrisdpratt/symmetrical-manytomany-filter-horizontal-in-django-admin/#L-26 | |
| # Only reposting to avoid loosing it. | |
| """ | |
| When adding a many-to-many (m2m) relationship in Django, you can use a nice filter-style multiple select widget to manage entries. However, Django only lets you edit the m2m relationship this way on the forward model. The only built-in method in Django to edit the reverse relationship in the admin is through an InlineModelAdmin. | |
| Below is an example of how to create a filtered multiple select for the reverse relationship, so that editing entries is as easy as in the forward direction. | |
| IMPORTANT: I have no idea for what exact versions of Django this will work for, is compatible with or was intended for. |
| ######################################## | |
| # | |
| # Nginx 1.8.0 | |
| # Pagespeed v.1.9.32.6 | |
| # OpenSSL 1.0.2d | |
| # - Tested on Ubuntu 14.4.2 | |
| # | |
| ######################################## | |
On mac:
/usr/local/bin.| /* | |
| * Demonstrate using an http server and an HTML form to control an LED. | |
| * The http server runs on the ESP8266. | |
| * | |
| * Connect to "http://esp8266WebForm.local" or "http://<IP address>" | |
| * to bring up an HTML form to control the LED connected GPIO#0. This works | |
| * for the Adafruit ESP8266 HUZZAH but the LED may be on a different pin on | |
| * other breakout boards. | |
| * | |
| * Imperatives to turn the LED on/off using a non-browser http client. |