Home
चंदा है तू मेरा सूरज है तू
- Details
- Category: My Favourites
चंदा है तू मेरा सूरज है तू
ओ मेरी आँखों का तारा है तू
चंदा है तू मेरा सूरज है तू
ओ मेरी आँखों का तारा है तू
जीती हूँ मैं बस तुझे देखके
इस टूटे दिल का सहारा है तू
चंदा है तू मेरा सूरज है तू
तू खेले खेल कई मेरा खिलौना है तू
तू खेले खेल कई मेरा खिलौना है तू
जिससे बंधी हर आशा मेरी
मेरा वो सपना सलोना है तू
नन्हा सा है कितना सुन्दर है तू
छोटा सा है कितना प्यारा है तू
चंदा है तू मेरा सूरज है तू
बच्चों के सीखने और सिखाने के मंत्र और श्लोक
- Details
- Category: My Favourites
शांति मंत्र 1
असतो मा सद्गमय , तमसो मां ज्योतिर्गमय।
मृत्योर्मा अमृतम गमय, ॐ शांतिः, ॐ शांतिः, ॐ शांतिः॥
भोजन मंत्र
ॐ सहनाववतु, सहनौ भुनक्तु
सहवीर्यम करवावहै।
तेजस्विनाव धितमस्तु, मा विद्विषावहै॥
ॐ शांतिः, ॐ शांतिः, ॐ शांतिः॥
पायो जी मैंने राम रतन धन पायो
- Details
- Category: My Favourites
- पायो जी मैंने राम रतन धन पायो
पायो जी मैंने राम रतन धन पायो
पायो जी मैंने...
वस्तु अमोलिक, दी मेरे सतगुरु
वस्तु अमोलिक, दी मेरे सतगुरु
किरपा कर अपनायो
पायो जी मैंने, कृपा कर अपनायो
पायो जी मैंने ...
जनम जनम की पूँजी पाई
जनम जनम की पूँजी पाई
जग में सबी खोवायो
पायो जी मैंने
जग में सबी खोवायो
पायो जी मैंने...
खरच ना खूटे, चोर ना लूटे,
खरच ना खूटे, चोर ना लूटे
दिन दिन बढ़त सवायो
पायो जी मैंने
दिन दिन बढ़त सवायो
पायो जी मैंने ...
Useful Text Processing Commands
- Details
- Category: Generalia
Create a symbolic link on windows:
Navigate to the directory in command prompt running in administrator mode, run this command:
mklink /D htdocs E:\htdocs
Move large amount of files (.txt files in example below) to a new folder (ubuntu):
find originalFolderName -name '*.txt' -exec mv {} targetFolderName/ \;
Bash Script for batch OCR using Tesseract where the output file starts with the name "hindi-xxx.png" and outputs each of the file with "text-" prefixed to it:
_________
#!/bin/sh
for i in hindi-*.png; do tesseract "$i" "text-$i" -l hin; done;
__________
Combile multiple text files with file name as the header /section on top. (Ubuntu)
tail -n +1 *.txt > combined.txt
Randomize the line numbers in a text file:
python -c "import random, sys; lines = open(sys.argv[1]).readlines(); random.shuffle(lines); print ''.join(lines)," D:\folder\test.txt > D:\Folder2\test_rand.txt
________
Count Unique lines in a large file (works on Ubuntu):
sort input.txt | uniq -c > output.txt
Page 3 of 6