Simple and/or classless
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| BBB acts | |
| BBO agony | |
| BBG avoid | |
| BBY bacon | |
| BOB buggy | |
| BOO cork | |
| BOG crisp | |
| BOY cross | |
| BGB crust | |
| BGO curve |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| aaa | |
| aagh | |
| aah | |
| aang | |
| aargh | |
| aaron | |
| abba | |
| abbas | |
| abbie | |
| abbott |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| aba | |
| abade | |
| abadia | |
| abaixo | |
| abandona | |
| abandonada | |
| abandonadas | |
| abandonado | |
| abandonados | |
| abandonando |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| A | |
| ABE | |
| ABED | |
| ABEL | |
| ABET | |
| ABLE | |
| ABUT | |
| ACE | |
| ACHE | |
| ACID |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| abandon | |
| abandoned | |
| abbey | |
| abbot | |
| abdomen | |
| abdominal | |
| abilities | |
| abnormal | |
| aboard | |
| abolished |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| abandon | |
| ability | |
| able | |
| about | |
| above | |
| absent | |
| absorb | |
| abstract | |
| absurd | |
| access |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| set statusline=%f | |
| set statusline+=\ %h%w%m%r | |
| set statusline+=%= | |
| set statusline+=%-16(\ %l/%L\%)%P | |
| set statusline+=\ %P/%L | |
| set statusline+=\ | |
| nnoremap <silent> gx :normal mxviugx<Esc>`x | |
| nnoremap <silent> gX :call system('open ' . expand('%'))<CR> |
Context: This is a demonstration of different functionalities of a wordlist manipulation tool called Tidy.
Given this word list, which is sorted by Google Ngram word frequency with the most common word listed first, plus a few prefix words thrown in to make this hypothetical work well:
common
challenged
electrodes
chromium
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Following along with https://github.com/danhales/blog-sardinas-patterson/blob/master/index.ipynb | |
| fn main() { | |
| let c = vec!["a".to_string(), "an".to_string(), "apple".to_string()]; | |
| // let c = vec!["02".to_string(), "12".to_string(), "120".to_string(), "20".to_string(), "21".to_string()]; | |
| println!("c1 is {:?}", generate_c1(c)); | |
| assert!( | |
| generate_c1(vec!["a".to_string(), "an".to_string(), "apple".to_string()]) | |
| == vec!["n".to_string(), "pple".to_string()] | |
| ); |
NewerOlder