(Original article: https://blog.codinghorror.com/are-you-an-expert/ )
ぼくは権威というものが嫌いらしい。 まず自分自身の過去から始めよう。
ぼくは、人々からアマチュア仲間としてではなく、 何らかの専門家や権威だとみなされることがひどく嫌いである。
(Original article: https://blog.codinghorror.com/are-you-an-expert/ )
ぼくは権威というものが嫌いらしい。 まず自分自身の過去から始めよう。
ぼくは、人々からアマチュア仲間としてではなく、 何らかの専門家や権威だとみなされることがひどく嫌いである。
This is going to be a long reply based in my experiences with rclone: https://rclone.org. Rclone interfaces with 30ish different cloud providers and has some very similar interfaces so I feel like I might have something to contribute!
As part of rclone I have made very similar interfaces. In fact there are two, one lower level more matched to the typical things cloud storage systems can do (eg read as streams, use Range requests, not seek in writes) and one which is more general purpose which can do everything a normal file system can (eg seek while writing, ReadAt,
PDF などの中にある一部の日本語の漢字が、見た目は同じだけど異なる謎の文字に変換されていることがある
U+9577 ではなく「⾧ (U+2FA7)」になっている| @echo off | |
| setlocal | |
| set target=%~1 | |
| if "" == "%target%" set target=. | |
| if not "" == "%VIM_TERMINAL%" ( | |
| echo | set /p=]51;["drop","%target:\=\\%"] | |
| ) else if not "" == "%VIM_SERVERNAME%" ( | |
| gvim --servername %VIM_SERVERNAME% --remote-silent "%target%" |
| set runtimepath^=~/.cache/dein/repos/github.com/Shougo/dein.vim | |
| if dein#load_state('~/.cache/dein') | |
| call dein#begin('~/.cache/dein', [$MYVIMRC, '~/.vim/rc/test.toml']) | |
| call dein#load_toml('~/.vim/rc/test.toml', {'lazy': 0}) | |
| call dein#end() | |
| call dein#save_state() | |
| endif |
| " install vim-pulg | |
| if has('vim_starting') | |
| set rtp+=~/.vim/plugged/vim-plug | |
| if !isdirectory(expand('~/.vim/plugged/vim-plug')) | |
| echo 'install vim-plug...' | |
| call mkdir(expand('~/.vim/plugged/vim-plug'), 'p') | |
| call system('git clone https://github.com/junegunn/vim-plug.git ' . expand('~/.vim/plugged/vim-plug/autoload')) | |
| end | |
| endif | |
| " setup |
Go 1.14 の主なregressionです。1.14.1で修正されると思われます。
This is a guide to Vim Script development for Python developers. Sample code for the various expressions, statements, functions and programming constructs is shown in both Python and Vim Script. This is not intended to be a tutorial for developing Vim scripts. It is assumed that the reader is familiar with Python programming.
For an introduction to Vim Script development, refer to usr_41.txt, eval.txt and Learn Vimscript the Hard Way
For a guide similar to this one for JavaScript developers, refer to Vim Script for the JavaScripter
This guide only describes the programming constructs that are present in both Python and Vim. The constructs that are unique to Vim (e.g. autocommands, [key-mapping](https://vimhelp.org/map.txt.html#key-m
| #!/bin/sh | |
| set -eu | |
| cgroup_rsslimit="/sys/fs/cgroup/memory/memory.limit_in_bytes" | |
| if [ -r "$cgroup_rsslimit" ] ; then | |
| rsslimit=`cat "$cgroup_rsslimit"` | |
| vszlimit=`expr $rsslimit / 1024` | |
| ulimit -v $vszlimit |
| require 'bundler/inline' | |
| gemfile do | |
| source 'https://rubygems.org' | |
| gem 'octokit' | |
| end | |
| name = ARGV[0] || `git config --get github.user`.chomp | |
| year = ARGV[1] || Time.now.year |