Summary
Google Noto Fonts は、Googleがオープンソースで提供するフォント群。Noto Sans CJK は SIL Open Font License, Version 1.1
その他のフォントは Apache License, Version 2.0
Reference
Google Noto Fontshttps://www.google.com/get/noto/
function set_proxy() {
export http_proxy=$proxy
export HTTP_PROXY=$proxy
export ftp_proxy=$proxy
export FTP_PROXY=$proxy
export all_proxy=$proxy
export ALL_PROXY=$proxy
export https_proxy=$proxy
export HTTPS_PROXY=$proxy
git config --global http.proxy $proxy
git config --global https.proxy $proxy
git config --global url."https://".insteadOf git://
}
function unset_proxy() {
unset http_proxy
unset HTTP_PROXY
unset ftp_proxy
unset FTP_PROXY
unset all_proxy
unset ALL_PROXY
unset https_proxy
unset HTTPS_PROXY
git config --global --unset http.proxy
git config --global --unset https.proxy
git config --global --unset url."https://".insteadOf
}
network_location="`networksetup -getcurrentlocation`"
proxy=''
if [ $network_location = "example.com" ]; then
echo "Switch to proxy for example.com network"
proxy="proxy.example.com:8080"
set_proxy
elif [ $network_location = "example.net" ]; then
echo "Switch to proxy for example.net network"
proxy="proxy.example.net:8080"
set_proxy
else
echo "Unset proxy config"
unset_proxy
fi
unset network_location
$ git config --global url."https://".insteadOf git://
$ git config --global credential.helper osxkeychain
[http]
proxy = xxx.xxx.xxx.xxx:xxxx
[https]
proxy = xxx.xxx.xxx.xxx:xxxx
[url "https://"]
insteadOf = git://
[credential]
helper = osxkeychain
$ git remote set-url origin https://github.com/xight/homebrew-cask.git
' usage | |
' Call("Sheet1", "A1", "Z100") | |
Sub findMergedCell(strWorkSheet As String, strStartCell As String, strEndCell As String) | |
Dim cl | |
Dim msg | |
Dim rng | |
rng = strStartCell & ":" & strEndCell | |
For Each cl In Worksheets(strWorkSheet).Range(rng) | |
If cl.MergeCells = True Then | |
If cl.MergeArea(1).Address = cl.Address Then | |
msg = msg & vbCrLf & cl.Address | |
End If | |
End If | |
Next | |
MsgBox msg | |
End Sub |