👷♂️
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
| youtube-dl -f bestaudio --extract-audio --audio-format mp3 --audio-quality 0 -o "%(title)s.%(ext)s" https://www.youtube.com/playlist?list=abdlshfjskdhfuwhrklk |
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
| from icu import Locale, Collator as ICUCollator | |
| import locale | |
| collator = ICUCollator.createInstance(Locale("ml_IN")) | |
| word1="അവൻ" | |
| word2="അവന്\u200d" # "അവന്" | |
| collator.setStrength(ICUCollator.PRIMARY); | |
| print("[ICU] Are they primary equal? ", collator.compare(word1, word2)) | |
| collator.setStrength(ICUCollator.SECONDARY); | |
| print("[ICU] Are they secondary equal? ", collator.compare(word1, word2)) |
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
| <div class="container"> | |
| <input id="num" type="number" placeholder="Enter a number" /> | |
| <div id="result"></div> | |
| <div id="analysis"></div> | |
| </div> |
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
| #!/usr/bin/python3 | |
| import sys | |
| import gi | |
| gi.require_version('Gtk', '3.0') | |
| from gi.repository import Gtk, Gio, GLib, Pango | |
| import locale | |
| from pyuca import Collator | |
| from icu import UnicodeString, Locale, Collator as ICUCollator |
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
| Word = Syllable+ | |
| Syllable = s:( Vowel | |
| / Chillu | |
| / ( Conjunct / Consonant ) Signs | |
| / ZWNJ | |
| ) { | |
| if ( Array.isArray( s ) ) { | |
| return s.join( '' ) | |
| } | |
| return s |
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
| Conjunct = Consonant Virama (Conjunct / Consonant ) | |
| Consonant = [കഖഗഘങചഛജഝഞടഠഡഢണതഥദധനപഫബഭമയരലവശഷസഹളഴറ] | |
| Virama = [്] |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <title>jQuery IME example</title> | |
| <meta name="author" content="Santhosh Thottingal" /> | |
| <link href="../css/jquery.ime.css" rel="stylesheet" /> | |
| <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script> | |
| <script src="../src/jquery.ime.js"></script> |
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
| \documentclass[11pt]{article} | |
| \usepackage{polyglossia} | |
| \newfontfamily{\manjari}[Script=Malayalam]{Manjari} | |
| \newfontfamily{\manjaril}[Script=Malayalam, UprightFont={* Thin}]{Manjari} | |
| \newfontfamily{\manjarib}[Script=Malayalam, UprightFont={* Bold}]{Manjari} | |
| \begin{document} | |
| \manjaril മലയാളത്തിനായി പുതിയൊരു യുണിക്കോഡ് അക്ഷരരൂപം കൂടി സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ് സമ്മാനിയ്ക്കുന്നു. | |
| \manjari മലയാളത്തിനായി പുതിയൊരു യുണിക്കോഡ് അക്ഷരരൂപം കൂടി സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ് സമ്മാനിയ്ക്കുന്നു. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| fontInfos=$(find ../data -name 'font.ini') | |
| #for f in $fontInfos; do sed -i -n 'p; s/woff/woff2/gp' $f; done | |
| # Change to point to your fonts directory as needed | |
| ttfs=$(find ../data -name '*.ttf') | |
| # Create .woff2 versions of your ttf files | |
| #for f in $ttfs; do woff2_compress $f || { echo "Fail on $f"; exit 1; }; done | |
| woff2s=$(find ../data -name '*.woff2') | |
| for f in $woff2s; do git add $f || { echo "Fail on $f"; exit 1; }; done |