A script to fix EDID problems on external monitors in Mac OS.
-
Connect the problem monitor.
-
Restart in rootless state with 'CMD R'.
-
Disable SIP. http://www.madrau.com/support/support/srx_1011.html
A script to fix EDID problems on external monitors in Mac OS.
Connect the problem monitor.
Restart in rootless state with 'CMD R'.
Disable SIP. http://www.madrau.com/support/support/srx_1011.html
The components involved in this workflow are:
doPost()
function to handle responses. The script must be [deployed as a Web App][1].Here is an example of such a workflow, conducting a Commuting Survey. Recipients will receive a survey email like this:
if(rng[i]=="赤テキスト"){ | |
sht.getRange(i+4,4).setValue('赤文字').setHorizontalAlignment("center").setFontColor("red"); | |
}else if(rng[i]=="赤テキスト黄色塗り"){ | |
sht.getRange(i+4,4).setValue('赤&黄色').setHorizontalAlignment("center").setFontColor("red").setBackground(color); | |
}else{ | |
sht.getRange(i+4,4).setValue('青文字').setHorizontalAlignment("center").setFontColor("blue"); | |
} |
COPY ( | |
SELECT | |
userid AS "userId.auto()", | |
'some-static-string' AS "__classname__.auto()", | |
failed_login_count AS "failedLoginCount.int32()", | |
CASE WHEN mail_validated=TRUE THEN 'TRUE' ELSE 'FALSE' END AS "mailValidated.boolean()", | |
-42 AS "answers.toTheQuestion.int32()", | |
'Slate Star Codex' AS "answers.niceBlog.auto()" | |
FROM | |
users.accounts |
Copyright (c) 4-digit year, Company or Person's Name
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
sudo apt install -y ctags miscfiles python3-dev python3-pip python-dev python-pip rsync shellcheck software-properties-common wbritish wbritish-huge ruby ruby-dev npm | |
sudo select-default-wordlist | |
sudo apt-add-repository ppa:neovim-ppa/stable | |
sudo apt-get update | |
sudo apt-get install -y --reinstall neovim | |
sudo update-alternatives --install /usr/bin/vi vi /usr/bin/nvim 60 | |
sudo update-alternatives --install /usr/bin/vim vim /usr/bin/nvim 60 | |
sudo update-alternatives --install /usr/bin/editor editor /usr/bin/nvim 60 | |
sudo update-alternatives --config vi | |
sudo update-alternatives --config vim |
curl
to get the JSON response for the latest releasegrep
to find the line containing file URLcut
and tr
to extract the URLwget
to download itcurl -s https://api.github.com/repos/jgm/pandoc/releases/latest \
| grep "browser_download_url.*deb" \
| cut -d : -f 2,3 \
| tr -d \" \
" You can enable the existing layers in space-vim and | |
" exclude the partial plugins in a certain layer. | |
" The command Layer is vaild in the function Layers(). | |
" Use exclude option if you don't want the full Layer, | |
" e.g., Layer 'better-defaults', { 'exclude': 'itchyny/vim-cursorword' } | |
function! Layers() | |
" Default layers, recommended! | |
Layer 'fzf' | |
Layer 'unite' |
.netrwhist |