Skip to content

Instantly share code, notes, and snippets.

View vipranarayan14's full-sized avatar
🤔
Thinking

Prasanna Venkatesh T S vipranarayan14

🤔
Thinking
View GitHub Profile
@vipranarayan14
vipranarayan14 / notes.md
Last active May 3, 2024 13:56
lttoolbox Sanskrit morphological dictionary notes

lttoolbox Sanskrit morphological dictionary notes

Apertium - Machine Translation

  • morphology
    • morphology => morph = forms + ology = study
      • study of forms = SabxarUpANam aXyayanam
      • subanwaH wifanwaH padam
      • bAla + sup = subanwa
      • bAla -- bAlaH, bAlO, bAlAH, bAle, bAlayoH, bAleRu
  • morphological analysis = SabxaviSleRaNa

Privacy Policy

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 vipranarayan14+dev@gmail.com.

#!/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"
@vipranarayan14
vipranarayan14 / get-all-chars.py
Last active October 7, 2021 14:12
Characters in a OCRed English-Sanskrit document. (HoD Kane)
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))
def evaluate(
nakshatram: int,
udayadi_naligai: int,
mundaya_naligai: int,
nakshatra_iruppu: int,
should_reeval: bool,
padam: int = 1,
):
if nakshatram == 0:
return "NaksError"
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;
}
@vipranarayan14
vipranarayan14 / navigable-table.html
Last active February 20, 2023 21:18
A pure JavaScript navigable table that allows navigation using arrow keys.
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
</head>
<body>
<table id="navigableTable">
<tbody>