Thanks to antville.org
important leafy vegetables

1. Amaranthus caudatus: rajgira.
2. Amaranthus tricolor: Math.  (Chhoti Chulai- Hindi, Cheera- Malayalam)
3. Amarnthus blitum: tamda math.
4. Amaranthus oleracea: tandulja.

... Link (0 comments) ... Comment


Holidays in India

These are the common holidays celebrated in India (Mumbai) during 2016 - 17

08-April Friday Guddi Padwa
1-May Sunday Maharashtra Day
15-Aug Monday Independence Day
05-Sept Monday Ganesh Chaturthi
02-Oct Sunday Gandhi Jayanti
11-Oct Tuesday Dussehra
30-Oct Sunday Diwali
31-Oct Monday Lakshmi Pooja
25-Dec Sunday Christmas
26-Jan Thursday Republic Day
13-March Monday Holi
_____

List FY 2013- 14           
Gudi Padwa    11-Apr    Thursday
Maharshtra Day    1-May    Wednesday
Independence Day    15-Aug    Thursday
Rakshabandhan    21-Aug    Wednesday
Ganesh Chaturthi    9-Sep    Monday
Gandhi Jayanti    2-Oct    Wednesday
Dasera    14-Oct    Monday
Laxmi Puja    3-Nov    Sunday
New Year    4-Nov    Monday
Bhai Duj    5-Nov    Tuesday
Chirstmas    25-Dec    Wednesday
Republic Day    26-Jan    Sunday
Holi    17-Mar    Monday
Gudi Padwa    31- Mar-2014    Monday

... Link (0 comments) ... Comment


LibreOffice version conflict

I am not able to install latest version of Libre office. I get an error message for file LibreOffice_6.3.4_Win_x86.msi

LibreOffice 6.3.4.2 can not be installed on this Windows version. Windows 7 SP1 or newer is required.

The fix is easy. Download earlier version for e.g. 6.2 version file:
LibreOffice_6.2.0.1_Win_x64.msi

From:

https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.0.1/win/x86_64/

This site is very slow and may take 10 or 20 times more time to download older version compared to the latest one!
_____

If I try the 64 bit version file LibreOffice_6.3.4_Win_x64.msi then I get the processor error like this:

This installation package is not supported by this processor type. Contact your product vendor.

... Link (0 comments) ... Comment


Cloudmapper using docker

A docker wrapper for the Cloudmapper application, used for visualizing AWS infrastructure.

git clone https://github.com/sebastientaggart/docker-cloudmapper.git
cd docker-cloudmapper
Edit .env file and add your AWS key, secret, region, and account name.
docker-compose build (go get a cup of coffee)
docker-compose up -d

Go to http://localhost:8000 and enjoy!

... Link (0 comments) ... Comment


codes used for classification

Standard codes used for classification:
1 SC
2 OBC
3 SBC
4 VJNT
5 ST
6 OPEN
7 Orphan

... Link (0 comments) ... Comment


Shell scripting basics

Here are 8 important concepts of Shell scripting that everyone should know.

1) Exit Code Status $?
2) here_doc
3) if_else

if [[ $mystatus = 'No' ]];then
echo "slave down"
else
echo "slave ok"
fi

4) For loop

for i in `ls`
do
cp $path$i $new_path
done

5) Positional Parameters $1, $2, $#, $@

6) Variables

7) Functions
stop()
(
for socket in {2..9}
do
mysqladmin shutdown $socket
done
)

8) Globbing - t?est [ab]* [a-c]* [^ab]* {b*,c*,*test*}

... Link (0 comments) ... Comment


Extract words from Marathi wikipedia

1) Download the polyglot pickled marathi model
wget http://bit.ly/12FI1xV
mv 12FI1xV polyglot-mt.pkl

2) Extract all the words from the embedding

from polyglot.mapping import Embedding
embeddings=Embedding.load("polyglot-mt.pkl")
with open('myfile.txt', 'w') as fx:
for i in embeddings.vocabulary:
fx.write(i.encode('utf-8')+'\n')

3) Download the wordlist:
https://s3.amazonaws.com/gamabhana/wiki_wordlist.txt

... Link (0 comments) ... Comment


Custom slack command

Here are 5 steps to add any API to your slack channel.

A) Click on "Build" button on App Directory page of slack.
B) choose "Make a Custom Integration" button
C) select Slash Commands
D) Create a new command called /dest2 and add the URL mentioned above
E) Choose GET Method and save the command.

... Link (0 comments) ... Comment


stack bookmarklet

This bookmarklet will help to quickly access stack pages linking to current page

stack link

... Link (0 comments) ... Comment


mail merge separate file per record

Microsoft Word has an excellent feature called Mail-Merge. If the query returns more than one record (say 4 for the sake of the example), then the resulting Word file has multiple copies of the document merged together in one file. It is possible to have Word create a seperate file for each record using this add-on.

http://www.gmayor.com/individual_merge_letters.htm

... Link (0 comments) ... Comment


Online for 7916 days
Last modified: 4/24/24, 9:33 AM
Status
Youre not logged in ... Login
Menu
... Home
... Tags

Search
Calendar
April 2024
SunMonTueWedThuFriSat
123456
78910111213
14151617181920
21222324252627
282930
January
Recent updates
discretize continuous features You can
"discretize" or "bin" continuous features into categorical features. from sklearn.preprocessing...
by shantanuo (4/24/24, 9:33 AM)
User Defined Property You
can create User Defined Property in libreoffice writer. File – Properties...
by shantanuo (1/9/23, 8:52 AM)
Arranging Chapters in the Navigator
To use a custom paragraph style for a heading, choose...
by shantanuo (1/4/23, 8:26 AM)
Use focus mode using Android
phones Settings > Digital Wellbeing and parental controls. Tap your...
by shantanuo (1/1/23, 3:59 AM)
Embed Fonts in document If
you use a font that the recipient is unlike to...
by shantanuo (12/18/22, 10:07 AM)
Using Navigator in Writer To
open the Navigator, select View > Navigator, or press the...
by shantanuo (12/18/22, 10:06 AM)
More about hyphenation The settings
for Tools > Options > Language Settings > Writing Aids...
by shantanuo (12/18/22, 10:04 AM)
link or unlink template If
you are using Libre office then template changer extension is...
by shantanuo (12/16/22, 5:27 AM)
Finding Styles you can select
Edit > Find and Replace > Other Options > Paragraph...
by shantanuo (12/14/22, 7:17 AM)
regex in clac In LibreOffice
Calc, you can use function REGEX for e.g. Begins with...
by shantanuo (12/14/22, 4:40 AM)
Libre Calc tips Turn Off
Grid Lines If you want to turn off grid lines...
by shantanuo (12/13/22, 8:14 AM)
More about Styles You can
goto View - Styles and change "All Styles" to "Applied...
by shantanuo (12/13/22, 7:49 AM)
Page Break Before Every Chapter
If your chapter titles are using the "Heading 2" Style:...
by shantanuo (12/13/22, 6:36 AM)
View and print in different
color Displaying Color in LO but Printing as White Page...
by shantanuo (12/13/22, 6:26 AM)
Change Normal Template in Libreoffice
Writer 1) Open a new file and set your font;...
by shantanuo (12/12/22, 8:45 AM)
Short english words in Devanagari
The list of short english words written in Devanagari. #...
by shantanuo (10/5/22, 9:05 AM)
Card issuing banks CITI
Standard Chartered HSBC American Express HDFC ICICI AXIS INDUS IND Kotak...
by shantanuo (7/16/22, 4:46 AM)
Activate IAM Access To activate
the Activate IAM Access setting, you must log in to...
by shantanuo (7/12/22, 5:52 AM)
use cheat instead of man
wget https://github.com/cheat/cheat/releases/download/4.2.3/cheat-linux-arm64.gz gunzip cheat-linux-arm64.gz chmod 770 cheat-linux-arm64 ./cheat-linux-arm64 mv cheat-linux-arm64...
by shantanuo (7/4/22, 8:53 AM)
python module itertools list of
useful methods of itertools module. permutations combinations combinations_with_replacement zip_longest count...
by shantanuo (9/8/21, 7:50 AM)
wikipedia tools 1) Collection of
useful utilities https://wikipediatools.appspot.com/ 2) all history of a user https://xtools.wmflabs.org/ec/mr.wikisource.org/Shantanuo...
by shantanuo (8/20/21, 6:36 AM)
Duration/Term of Copyright In the
case of original literary, dramatic, musical and artistic works, the...
by shantanuo (8/20/21, 6:26 AM)
Preserve seeds 6 types of
seeds to be preserved for next season. 1) laal Mula...
by shantanuo (5/7/21, 5:46 AM)
Why do I care for
Linux? I don't care that much for other software. Linux...
by shantanuo (12/17/20, 9:27 AM)
important leafy vegetables 1. Amaranthus
caudatus: rajgira. 2. Amaranthus tricolor: Math.  (Chhoti Chulai- Hindi, Cheera-...
by shantanuo (4/12/20, 2:01 PM)

RSS feed

Made with Antville
Helma Object Publisher