| ## | |
| ## 32-bit Mingw-w64 repository mirrorlist | |
| ## Changed on 2014-11-15 | |
| ## | |
| ##中国科学技术大学开源软件镜像 | |
| Server = http://mirrors.ustc.edu.cn/msys2/mingw/i686 | |
| ##北京理工大学镜像 | |
| Server = http://mirror.bit.edu.cn/msys2/REPOS/MINGW/i686 | |
| ##日本北陆先端科学技术大学院大学 sourceforge 镜像 | |
| Server = http://jaist.dl.sourceforge.net/project/msys2/REPOS/MINGW/i686 |
| preprocess do | |
| @items.each do |item| | |
| case item[:extension] | |
| when 'adoc', 'asciidoc' | |
| Asciidoctor::Document.new(item.raw_content).attributes.each_pair do |k,v| | |
| item[k.to_sym] = v | |
| end | |
| end | |
| end | |
| end |
| // ==UserScript== | |
| // @id iitc-plugin-ingressdualmap-exporter@OllieTerrance | |
| // @name IITC plugin: Ingress Dual Map Exporter | |
| // @category Keys | |
| // @version 0.0.0.1 | |
| // @namespace https://github.com/jonatkins/ingress-intel-total-conversion | |
| // @description Exports portals currently in view as a CSV list for use with Ingress Dual Map. | |
| // @include https://www.ingress.com/intel* | |
| // @include http://www.ingress.com/intel* | |
| // @match https://www.ingress.com/intel* |
| [mergetool] | |
| prompt = false | |
| keepBackup = false | |
| keepTemporaries = false | |
| [merge] | |
| tool = winmerge | |
| [mergetool "winmerge"] | |
| name = WinMerge |
| #!/bin/bash -x | |
| # Description:L2TP/IPsec for CentOS 6.5 64bit | |
| # 2014/01/06 @ysaotome | |
| ( | |
| ### setting | |
| /bin/cat << _SECRETS_ > /tmp/SECRETS_TMP.txt | |
| #============================================== | |
| # username auth_server password auth_ipaddress | |
| "hoge001" "xl2tpd" "hoge##123" * |
| # Make mouse useful in copy mode | |
| setw -g mode-mouse on | |
| # Allow mouse to select which pane to use | |
| set -g mouse-select-pane on | |
| # Allow mouse dragging to resize panes | |
| set -g mouse-resize-pane on | |
| # Allow mouse to select windows |
| - name: Group by Distribution | |
| hosts: all | |
| tasks: | |
| - group_by: key=${ansible_distribution} | |
| - name: Set Time Zone | |
| hosts: Ubuntu | |
| gather_facts: False | |
| tasks: | |
| - name: Set timezone variables |
| #!/bin/bash | |
| #shows traffic on the specified device | |
| function human_readable { | |
| VALUE=$1 | |
| BIGGIFIERS=( B K M G ) | |
| CURRENT_BIGGIFIER=0 | |
| while [ $VALUE -gt 10000 ] ;do | |
| VALUE=$(($VALUE/1000)) |
| body { | |
| font-family: Helvetica, arial, sans-serif; | |
| font-size: 14px; | |
| line-height: 1.6; | |
| padding-top: 10px; | |
| padding-bottom: 10px; | |
| background-color: white; | |
| padding: 30px; } | |
| body > *:first-child { |