Skip to content

Instantly share code, notes, and snippets.

View kedarmhaswade's full-sized avatar
💭
Just trying to catch up with my calendar

Kedar Mhaswade kedarmhaswade

💭
Just trying to catch up with my calendar
  • JyMob
  • Sunnyvale, USA
View GitHub Profile
@kedarmhaswade
kedarmhaswade / gist:67879e319d58c0905224674b5cc74bd7
Last active April 25, 2024 20:50
4-letter consonant clusters
Gibbsboro
consonant cluster above: bbsb
--------
Gibbstown
consonant cluster above: bbst
--------
Hobbsville
consonant cluster above: bbsv
--------
nonsubscriber
@kedarmhaswade
kedarmhaswade / 3cc.sh
Last active April 25, 2024 16:55
a short zsh program to create 3 consonant clusters from /usr/share/dict/words (not very efficient; done in the spirit of McIlroy, and not Knuth)
#! /bin/zsh
vo=(a e i o u y)
for u in {a..z}
do
for v in {a..z}
do
for w in {a..z}
do
if ()(( $@[(Ie)$u] )) $vo; then
@kedarmhaswade
kedarmhaswade / 3cc.txt
Created April 25, 2024 06:08
Shows three-consonant clusters in /usr/share/dict
abubble
babble
babbled
babbler
babblers
babbles
babbling
babblings
bedabble
bedabbled
@kedarmhaswade
kedarmhaswade / cut-and-paste-gallery.txt
Created September 30, 2023 14:14
Cut-and-paste-gallery for the social good :-)
@kedarmhaswade
kedarmhaswade / sorted-marathi-words-aspell-6-mar-2022.txt
Created March 6, 2022 08:55
List of all words from the aspell dictionary for Marathi
This file has been truncated, but you can view the full file.
ंकृतीविषयी
ंचायत
अँग्री
अँटीचेंबरमध्येदेखील
अँटीना
अँटीव्हायरस
अँटेनाला
अँड
अँड्र्युज
अँबॅसिडर
@kedarmhaswade
kedarmhaswade / adverbs-wordnet.txt
Created February 5, 2022 18:18
Marathi wordnet adverbs
-आत 04 01 0400 01 00013205
-वर 04 01 0400 01 00010974
-वरती 04 01 0400 01 00010974
अंतर्बाह्य 04 01 0400 01 00035768
अंतिमतः 04 01 0400 01 00002093
अंती 04 01 0400 01 00002093
अंदाजे 04 01 0400 01 00002102
अंमळ 04 01 0400 01 00008861
अंशतः 04 01 0400 01 00035770
अकस्मात 04 01 0400 01 00000051
@kedarmhaswade
kedarmhaswade / adjectives-wordnet
Created February 5, 2022 18:18
Marathi wordnet from cfilt
-गत 02 01 0400 01 00011706
-ग्रस्त 02 01 0400 01 00003370
-ज 02 01 0400 01 00008850
-जन्य 02 01 0400 01 00008850
-निर्मित 02 01 0400 01 00008850
-मान्य 02 01 0400 01 00002007
1000000 02 01 0400 01 00030455
100000000 02 01 0400 01 00031074
100000000000 02 01 0400 01 00012255
1000000000000 02 01 0400 01 00034155
This file has been truncated, but you can view the full file.
-तरंग 01 01 0400 01 00005942
-धारा 01 01 0400 01 00027382
-सारखा 01 01 0400 01 00026718
1000000 01 01 0400 01 00031077
10000000 01 01 0400 01 00015838
100000000 01 01 0400 01 00031073
11 01 01 0400 02 00026899 00026900
14 01 01 0400 02 00005305 00026902
150 01 01 0400 01 00030156
17 01 01 0400 01 00013732
package practice;
/**
* Simple program that generates wordlists of various lengths given certain characters.
*/
public class WordList {
private static final char[] alphabet = new char[]{
'अ',
'आ',
'इ',
'अआअ',
'अआइ',
'अआई',
'अआउ',
'अआऊ',
'अआए',
'अआऐ',
'अआक',
'अआख',
'अआग',