- git clone https://github.com/vim/vim.git
- cd vim/src
- git checkout v8.0.18009
- be aware of the prefix.
./configure \
--disable-nls \
--enable-cscope \
| class MyHashMap { | |
| static class Node { | |
| public int key; | |
| public int value; | |
| public Node prev; | |
| public Node next; | |
| } | |
| static Node first; | |
| static Node last; |
| package rocks.ninjachen; | |
| /** | |
| * Murmur hash 3.0. | |
| * <p> | |
| * It works as the same as lastguest\Murmur in PHP in limited test data. | |
| */ | |
| public final class MurmurHash { | |
| /** | |
| * @param key Text to hash. |
| [alias] | |
| co = checkout | |
| br = branch | |
| ci = commit | |
| st = status -uno | |
| mylog = !git log --author=\"$(git config user.name)\" | |
| viewchanges= diff -v --stat --cached origin/master | |
| [user] | |
| name = Jiachen Ning | |
| email = [email protected] |
| { | |
| "basics": { | |
| "name": "JiachenNing", | |
| "label": "Java Software Engineer", | |
| "picture": "https://avatars3.githubusercontent.com/u/3176871?s=460&v=4", | |
| "email": "[email protected]", | |
| "phone": "(86) 15800800838", | |
| "website": "https://rnd.app", | |
| "summary": "A broad-skill dev with seven year experience in analysis, design, implementation, testing. Be proficient with Java, Android", | |
| "location": { |
| { | |
| "basics": { | |
| "name": "宁佳晨", | |
| "label": "Java工程师", | |
| "picture": "https://avatars3.githubusercontent.com/u/3176871?s=460&v=4", | |
| "email": "[email protected]", | |
| "phone": "(86) 15800800838", | |
| "website": "https://rnd.app", | |
| "summary": "一名技能广泛的程序员,从业7年,动手能力较强,熟悉JavaEE,Android,PHP领域.", | |
| "location": { |
| { | |
| "basics": { | |
| "name": "JiachenNing", | |
| "label": "Java Software Engineer", | |
| "picture": "https://avatars3.githubusercontent.com/u/3176871?s=460&v=4", | |
| "email": "[email protected]", | |
| "phone": "(86) 15800800838", | |
| "website": "https://rnd.app", | |
| "summary": "A broad-skill dev with seven year experience in analysis, design, implementation, testing. Be proficient with Java, Android", | |
| "location": { |
| #x = 1 | |
| #if x == 1: | |
| # print("x is 1.") | |
| #print("new line") | |
| #words = ['one', 'two', 'three'] | |
| #for w in words: | |
| # print(w, len(w)) | |
| # Calculate x^3+y^3+z^3=33 |
./configure \
--disable-nls \
--enable-cscope \