- morphology
- morphology => morph = forms + ology = study
- study of forms = SabxarUpANam aXyayanam
- subanwaH wifanwaH padam
- bAla + sup = subanwa
- bAla -- bAlaH, bAlO, bAlAH, bAle, bAlayoH, bAleRu
- morphology => morph = forms + ology = study
- morphological analysis = SabxaviSleRaNa
Dadimi does not collect any personal information or data from its users.
We are committed to protecting your privacy and ensuring a safe and secure user experience. Our app does not track, store, or share any user data with third parties.
If you have any questions about our privacy policy or how we handle data, please contact us at [email protected].
This file contains 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
#!/bin/bash | |
# Installation location | |
MAIN_DIR="$HOME/scl" | |
ZEN_MAIN_DIR="$MAIN_DIR/SKT" | |
SCL_MAIN_DIR="$MAIN_DIR/scl" | |
echo -e "\n=== Updating system packages ===\n" |
This file contains 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
import glob | |
file_paths = glob.glob('/home/prasanna/Documents/Projects/Hobbies/Programming/kalpAntaram-content/kANe/**/*.md', recursive=True) | |
chars = {' '} | |
for file_path in file_paths[:1]: | |
with open(file_path) as file: | |
content = file.read() | |
chars.update(list(content)) |
This file contains 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
def evaluate( | |
nakshatram: int, | |
udayadi_naligai: int, | |
mundaya_naligai: int, | |
nakshatra_iruppu: int, | |
should_reeval: bool, | |
padam: int = 1, | |
): | |
if nakshatram == 0: | |
return "NaksError" |
This file contains 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
Number.prototype.between = function (a, b, inclusive = true) { | |
var min = Math.min(a, b), | |
max = Math.max(a, b); | |
return inclusive ? this >= min && this <= max : this > min && this < max; | |
} |