Wednesday, December 15, 2010

Easiest way to instal HP printer in Fedora

I wanted to install my HP LaserJet 8150 and HP LaserJet 2430 Network printers in Fedora. I searched in the Internet but found many complected ways to install. After spending some time on the Internet and tried myself, I found the easiest way to install. I am writing the easiest way to install these printers.
1. type in the terminal
$system-config-printer
It brings one wizard.
2. Go to Edit menu and click on + New Printer
3. Select Internet Printing Protocol (if your printer is network printer, otherwise select LPT#1)
4. Click on Next then select HP and select model name
5. Finally when it ask Device URI, then give hp:/net/HP_LaserJet_8150_Series?ip=your.printer's.IP.Address
or
hp:/net/HP_LaserJet_2430?ip=your.printer's.ip.address

replace your.printer's.ip.address with IP Address of your printer.
eg. hp:/net/HP_LaserJet_8150_Series?ip=192.168.0.0
or, hp:/net/HP_LaserJet_2430?ip=192.168.0.0
6. Print test page.
Enjoy!!

Saturday, December 11, 2010

vector.tcc:452: error: expected unqualified-id before ‘(’ token

I wasted so much time to solve this problem, while compiling code in c++ in fedora 8.
Now I found out the problem. The problem was due to the not linking c++ in old version of gcc, as I installed older version of gcc.
Oh, god!! finally I found out the problem. I searched 2 days for the solution on the net.

cc: In member function ‘void std::vector<_tp,>::_M_range_insert(__gnu_cxx::__normal_iterator::_Tp_alloc_type::pointer, std::vector<_tp,> >, _ForwardIterator, _ForwardIterator, std::forward_iterator_tag)’:
/usr/lib/gcc/i386-redhat-linux/4.1.2/../../../../include/c++/4.1.2/bits/vector.tcc:452: error: expected unqualified-id before ‘(’ token
make: *** [diffusion3/ns/difftimer.o] Error 1
Ns make failed!

Thursday, December 9, 2010

Error while loading shared libraries: libstdc++.so.5: cannot open shared object file: No such file or directory

This error comes while installing some applications in Fedora.
It comes because libstdc++.so.5 is installed in other library folders, rather than /usr/lib. If you make symbolic link to /usr/lib from the folder where libstdc++.so.5 is installed. It's solved.

Dommand

ln -s /opt/gcc33/lib/libstdc++.so.5 /usr/lib/libstdc++.so.5

Remember that in my computer /opt/gcc33 is the folder where I have installed new gcc. It can be different in your computer. Just search the libstdc++.so.5.

Wednesday, December 8, 2010

MSN messenger for Ubuntu and Fedora

MSN messenger or Windows Messenger or Live Messenger's alternative for Ubuntu and Fedora is AMSN messenger. It's available in the following link. Download it and give these two lines command in the terminal.
Download link:
http://sourceforge.net/projects/amsn/files/amsn/0.95/amsn_0.95-3.ubuntu.deb/download
code:
sudo apt-get -f -y install amsn
sudo dpkg -i amsn_0.95-3.ubuntu.deb

Easiest way to install in Fedora
Click on Applications >> Add/Remove Software
Click on Search tab, and search AMSN
Click the checkbox/s for AMSN
Click apply
Done!!
Alternatively, you can do
$yum install amsn

Monday, December 6, 2010

How to install gcc-3.3 in Ubuntu 9.04

Today I tried to install gcc-3.3 in Ubuntu9.04 in my PC. I followed following steps. I found 2 patches to solve the errors in the Internet.
(NOTE: - means delete, and + means add as in Patch file)

1. Download gcc-core3.3.tar.bz2 and gcc-g++-3.3.tar.bz2
2. bzip2 -cd gcc-core3.3.tar.bz2 | tar xvf -
bzip2 -cd gcc-g++-3.3.tar.bz2 | tar xvf -
3. mkdir build
4. cd build
5. /home/xxxx/gcc/gcc-3.3/configure --prefix=/opt/gcc33 --program-suffix=33 --enable-languages=c,c++

6. If there are errors from /usr/include/bits/studio-lock.h file
then comment the /*#include */
- #include
+ /*#include */
7. If there are errors from gcc/gcc-3.3/include/obstack.h file ("/read-rtl.c:653: error: lvalue required as increment operand")
Change line#423 in
gcc/gcc-3.3/include/obstack.h
- *((void **)__o->next_free)++ = ((void *)datum); \
+ *((void **)__o->next_free) = ((void *)datum);
+ __o->next_free += sizeof(void *); \
8. If there are errors from decl.c file
Apply gcc42-patch-gcc-3.3.1_gcc_cp_decl.c patch from ftp.nsysu.edu.tw/FreeBSD/FreeBSD-current/ports/palm/prc-tools/files/gcc42-patch-gcc-3.3.1_gcc_cp_decl.c
9. If there is an error "gcc/collect2.c:1779:/usr/include/bits/fcntl2.h:51: error: call to ‘__open_missing_mode’ declared"
Then, in the line number 1776 of gcc/collect2.c
- redir_handle = open (redir, O_WRONLY | O_TRUNC | O_CREAT);
+ redir_handle = open (redir, O_WRONLY | O_TRUNC | O_CREAT, 0666);
10. make
11. Follow http://www.mjmwired.net/resources/mjm-fedora-gcc.html

Few useful commands
:
sudo apt-get install gcc
find /usr/bin |grep gcc
find /usr/bin |grep g++
stat /usr/bin/gcc

$ cd /usr/bin
The default gcc version
$ gcc --v

Delete the old symbolic links
$ sudo rm cpp gcc g++

Change the symbolic links to 3.3: (Find where the gcc33 is installed. In this example we installed in /opt/gcc33/bin (we gave the command while installing gcc as: --prefix=/opt/gcc33).

$sudo ln -s /opt/gcc33/bin/g++33 /usr/bin/g++
$sudo ln -s /opt/gcc33/bin/gcc33 /usr/bin/gcc
$sudo ln -s /opt/gcc33/bin/cpp33 /usr/bin/cpp

Check the default gcc version

$ gcc --v

It should show new gcc version.

Saturday, November 27, 2010

How to install flash player on Opera in Ubuntu?

Easiest way to install flash player on Opera in Ubuntu.

Are you frustrating with your Opera because you cannot play Youtube videos because it ask you to install Flash player, but you can't find/install for Opera?

Here is the simple steps. It's for newbies (as I am).  NOTE: This procedure works only if Flash player is installed for Firefox. 

Step-1: Change to the hidden directory

$cd ~/.opera

Step-2: Open and edit pluginpath.ini file. Add this line at the end of the file and save the file. (Note: CLOSE OPERA WHILE EDITING pluginpath.ini FILE.)

/home/qwerty/.mozilla/plugins=1

Step-3: Open Opera. Now, it works fine.

Tuesday, November 16, 2010

Problem with NS-2

Problem: Makefile:314 *** commands commence before first target. Stop.
Solution: DO NOT use tab or copy/paste spaces from previous line when you add .o in makefile. Use only space.

Monday, September 6, 2010

NS2 installation problem on Cygwin / NS2 installation problem on Windows7

I installed latest version of Cygwin and tried to install and run NS2, but it didn’t work. I check this site and found following information. http://nsnam.isi.edu/nsnam/index.php/Running_Ns_and_Nam_Under_Windows_9x/2000/XP_Using_Cygwin
I tried to search the solution on Google but couldn’t find exact answer. So, I am posting here. This may be useful to you.

The current version of Cygwin 1.7.x breaks some programs, including ns-2. Presently, there is no working version of the ns-allinone-2 series that works with Cygwin 1.7.x

Although, the above site says there is a "legacy" installation that will allow you to install Cygwin 1.5 series and then install ns-allinone-2 package. But, when I tried to install legacy, it didn’t work.

Fortunately, I found old version Cygwin 1.5.x in one of my friends’ computer. Now, it works perfectly.

Suggestion: try to get old version of Cygwin
Command to check version of Cygwin (it’s same as in Unix): uname –srv

Good luck

Wednesday, June 23, 2010

जन्डिस् पिउषभर्षी औषधालय र आयुर्वेदीक औषधालायको औषधी प्रयोग गरेर मात्र ठिक हुन्छ भन्ने भ्रम नपालौ

"जन्डिस निको पार्छु भनेर जडीबुटी भिडाउनेलाई पनि आफूले दिएको औषधिले के गर्छ भन्ने थाहा नहुन सक्छ !!!" -अर्जुन पौडेल

जन्डिसको वारेमा नेपालमा पाईने विभिन्न गलत धारणाहरु चिर्नको लागि यी विशेसज्ञहरुको राय यहाँ संकलन गरिएको छ । जन्डिस रोग होईन र   यो पिउषभर्षी औषधालायको औषधी प्रयोग गरेर वा नरदेवीको आयुर्वेदीक औषधालायमा महिनौ वसेर  मात्र ठिक हुन्छ भन्ने भ्रम नपाल्न सहयोगी हुनेछ भन्ने आशा छ है ।  


Jaundiced? Beware of some myths - SUMINA KARKI

Ayurvedic treatment for jaundice in Nepal - Durkin, Maureen, Columbia University, Sergievsky Center, New York

जन्डिस सम्बन्धी जानाकारी   - डा. सुधांशु केसी (लेखक नर्भिक हस्पिटल, थापाथलीका कलेजो रोग विशेषज्ञ हुन्।)

वर्षायाममा जन्डिस  -  डा. सुधांशु केसी (लेखक नर्भिक हस्पिटल, थापाथलीका कलेजो रोग विशेषज्ञ हुन्।)

हेपाटाइटिस 'ई' र जन्डिस - डा. सुधांशु केसी (लेखक नर्भिक हस्पिटल, थापाथलीका कलेजो रोग विशेषज्ञ हुन्।)

जन्डिस रोग होइन ! -अर्जुन पौडेल

Few other resources: 

What is Jaundice?

http://www.labtestsonline.org/understanding/conditions/jaundice.html

http://www.medicinenet.com/jaundice/symptoms.htm

http://en.wikipedia.org/wiki/Jaundice

Jaundice - yellow skin - Overview

Sunday, June 20, 2010

Magic of good thinking - Khaptad Baba

This is a series of Khaptad Baba's book - Vichar Vigyan. The credit goes to Dr. Praveen Tiwari. His post is here.

Part - 1/4



The summary of the Vichar Vigyan in Nepali can be downloaded from this link.

Part - 2/4



Part - 3/4



Part - 4/4

Friday, June 18, 2010

NS2 (Network Simulator) resources

A link that answers you all.

http://www.matlab.nitech.ac.jp/~khpoo/research/ns2.html

Some other links

http://hpds.ee.ncku.edu.tw/~smallko/ns2/ns2.htm

Advice to the graduate students

http://www.cse.psu.edu/~yuanxie/advice.htm


Thursday, June 17, 2010

A change is Gonna come -Sam Cooke

As Performed Sam Cooke (1964)


I was born by the river in a little tent
And just like the river, I've been running ever since
It's been a long time coming
But I know a change is gonna come

It's been too hard living, but I'm afraid to die
I don't know what's up there beyond the sky
It's been a long time coming
But I know a change is gonna come

I go to the movie, and I go downtown
Somebody keep telling me "Don't hang around"
It's been a long time coming
But I know a change is gonna come

Then I go to my brother and I say, "Brother, help me please"
But he winds up knocking me back down on my knees

There've been times that I've thought I couldn't last for long
But now I think I'm able to carry on
It's been a long time coming
But I know a change is gonna come

Wednesday, June 16, 2010

Expected value or average value of a random variable.

The expected value E(X) of a random variable X is an average µ of the random variable. Two random variables with the same expected value may have different distributions. 

Tuesday, June 15, 2010

Why queue if λ/μ < 1 ?

In Poisson distribution, why there is a queue even though λ/μ < 1. Where λ is an arrival rate and μ is a service time?

Because λ and μ are the average (or expected) value of distribution. It doesn’t mean that in every t second a customer arrives into the system. Inter-arrival (the time between consecutive events) time are exponentially distributed and arrival rate is Poisson. It means the time between two consecutive arrivals are different.
In other words, even though λ/μ < 1, two or more customers may come to the system at the same time and system can serve only one customers at one time. So, we need queue. For example: average arrival rate (λ) = 10 customer per hour, average service rate (μ) is 15 customer per hour. It means λ/μ <1. However, it follows Poisson distribution, so, two customer (or in the worst case, all the 10 customers) may come at the same time. That’s why we need queue.

Thursday, June 10, 2010

How to measure packet loss rate, jitter and end-to-end delay ?

Here is the nice script for measuring packet loss rate, jitter and end-to-end delay in the prof. Chih-Heng Ke's website. 

http://140.116.72.80/~smallko/ns2/tool_en.htm

How to measure the throughput, packet drop rate, and end-to-end delay for UDP-based application over wireless networks is given here

http://hpds.ee.ncku.edu.tw/~smallko/ns2/wireless-udp-1.htm

This fellow has a good collection here:

http://lovefei.com/?p=19

BSS vs. IBSS

There are two service sets in IEEE 802.11 standard. The basic service set (BSS) for the infrastructure mode and the Independent Basic Service Set (IBSS) for the ad-hoc mode. 

The BSS is a single access point (AP)  together with all associated stations with the AP. In the infrastructure WLAN , communications can only take place between the AP and the other members of the BSS. 

In the ad hoc networks, all of the stations those are within each other's transmission range is called an IBSS.

Wednesday, June 9, 2010

NS2.31 NAM problem - "[code omitted because of length]"

Problem: While executing NAM in NS2 following error appears. 

nam:
[code omitted because of length]
: no event type or button # or keysym
while executing
"bind Listbox {
%W yview scroll [expr {- (%D / 120) * 4}] units
}"
invoked from within
"if {[tk windowingsystem] eq "classic" || [tk windowingsystem] eq "aqua"} {
bind Listbox {
%W yview scroll [expr {- (%D)}] units
}
bind Li..."

Solution: 

  1. Download  "tk-8.4-lastevent.patch" patch file from http://bugs.gentoo.org/show_bug.cgi?id=225999
  2. Save the file in tk8.4.x floder (remember that there could be tk8.4.14 or tk8.4.18)
  3. Patch the file with this command

                         patch -p1 < ./tk-8.4-lastevent.patch

    4.  install again (with ./install command)

Now it works perfectly. 

(If there is a problem on patching, change -p1 to -p0. )

Installation of Cygwin and NS2 on Windows

The best open source tool for network simulation is NS2. The first step to learn NS2 is to it. Cygwin gives linux like environment on Windows. Here is the step by step procedure how to install NS2:
 
                  http://personals.ac.upc.edu/rzilan/ns/2_NS2InstalCYGWIN.pdf

Some other useful links for NS2.

  1. The Network Simulator: Building Ns, http://www.isi.edu/nsnam/ns/ns-build.html
  2. How to Compile Ns2 on Windows Platform, http://www.isi.edu/nsnam/ns/ns-win32-build.html
  3. Ns Manual, http://www.isi.edu/nsnam/ns/ns-documentation.html
  4. Tutorial for the Network Simulator “ns”, www.isi.edu/nsnam/ns/tutorial/index.html
  5. Tracegraph Program Download Page, http://www.geocities.com/tracegraph/
  6. NS by Example, http://nile.wpi.edu/NS/

Tuesday, June 8, 2010

List of the winners of the FIFA World Cup (2030~now)

1930 Uruguay

1934 Italy

1938 Italy

1950 Uruguay

1954 Germany

1958 Brazil

1962 Brazil

1966 England

1970 Brazil

1974 Germany 

1978 Argentina

1982 Italy

1986 Argentina

1990 Germany 

1994 Brazil

1998 France

2002 Brazil

2006 Italy

Monday, June 7, 2010

EuroSports' Power Rankings of the FIFA World Cup 2010

EuroSports ranked 32 participating countries in the FIFA World Cup 2010
1 (1) - Spain
2 (2) - Netherlands
3 (3) - Brazil
4 (6) - Germany
5 (4) - England
6 (5) - Italy
7 (7) - Argentina
8 (8) - USA
9 (9) - Portugal
10 (10) - Mexico
11 (12) - Ivory Coast
12 (11) - France
13 (13) - Ghana
14 (14) - Chile
15 (15) - Uruguay
16 (16) - Serbia
17 (18) - Paraguay
18 (17) - Australia
19 (19) - South Africa
20 (21) - South Korea
21 (20) - Cameroon
22 (22) - Slovenia
23 (23) - Denmark
24 (24) - Slovakia
25 (25) - Nigeria
26 (26) - Greece
27 (27) - Switzerland
28 (28) - Japan
29 (30) - Honduras
30 (29) - New Zealand
31 (31) - Algeria
32 (32) - North Korea

Saturday, June 5, 2010

Rednex - Cotton Eye Joe (original)




If it hadn't been for cotton-eye joe
I'd been married long time ago
Where did you come from. Where did you go?
Where did you come from cotton-eye joe?

If it hadn't been for cotton-eye joe
I'd been married long time ago
Where did you come from. Where did you go?
Where did you come from cotton-eye joe?

If it hadn't been for cotton-eye joe
I'd been married long time ago
Where did you come from. Where did you go?
Where did you come from cotton-eye joe?

If it hadn't been for cotton-eye joe
I'd been married long time ago
Where did you come from. Where did you go?
Where did you come from cotton-eye joe?

If it hadn't been for cotton-eye joe
I'd been married long time ago
Where did you come from. Where did you go?
Where did you come from cotton-eye joe?

If it hadn't been for cotton-eye joe
I'd been married long time ago
Where did you come from. Where did you go?
Where did you come from cotton-eye joe?

He brought disaster wherever he went
The hearts of the girls was to hell broken sent
They all ran away so nobody would know
And left only men cause of cotton-eye joe

If it hadn't been for cotton-eye joe
I'd been married long time ago
Where did you come from. Where did you go?
Where did you come from cotton-eye joe?

If it hadn't been for cotton-eye joe
I'd been married long time ago
Where did you come from. Where did you go?
Where did you come from cotton-eye joe?

(solo)

He brought disaster wherever he went
The hearts of the girls was to hell broken sent
They all ran away so nobody would know
And left only men cause of cotton-eye joe

(solo)

If it hadn't been for cotton-eye joe
I'd been married long time ago
Where did you come from. Where did you go?
Where did you come from cotton-eye joe?

If it hadn't been for cotton-eye joe
I'd been married long time ago
Where did you come from. Where did you go?
Where did you come from cotton-eye joe?

(solo)

If it hadn't been for cotton-eye joe
I'd been married long time ago
Where did you come from. Where did you go?
Where did you come from cotton-eye joe?

If it hadn't been for cotton-eye joe
I'd been married long time ago
Where did you come from. Where did you go?
Where did you come from cotton-eye joe?

(solo)

If it hadn't been for cotton-eye joe
I'd been married long time ago
Where did you come from. Where did you go?
Where did you come from cotton-eye joe?


The remix version is here:

Official video FIFA World Cup 2010: K'naan Wavin' Flag



This song was chosen as Coca-Cola's promotional anthem for the 2010 FIFA World Cup.

Lyrics:
When I get older
I will be stronger
They'll call me freedom
Just like a wavin' flag

When I get older
I will be stronger
They'll call me freedom
Just like a wavin' flag

And then it goes back
And then it goes back
And then it goes back

Born to a throne
Stronger than Rome
But violent prone
Poor people zone
But its my home
All I have known
Where I got grown
Streets we would roam
Out of the darkness
I came the farthest
Among the hardest
Survival

Learned from these streets
It can be bleak
Accept no defeat
Surrender, retreat

So we struggling
Fighting to eat
And we wondering
When we'll be free
So we patiently wait
For that fateful day
It's not far away
But for now, we say

When I get older
I will be stronger
They'll call me freedom
Just like a wavin' flag

And then it goes back
And then it goes back
And then it goes back

So many wars
Settling scores
Bringing us promises
Leaving us poor

I heard them say
Love is the way
Love is the answer
That's what they say

But look how they treat us
Make us believers
We fight their battles
Then they deceive us

Try to control us
They couldn't hold us
But we just move forward
Like Buffalo Soldiers

But we struggling
Fighting to eat
And we wondering
When we'll be free

So we patiently wait
For that fateful day
It's not far away
But for now we say

When I get older
I will be stronger
They'll call me freedom
Just like a wavin' flag

And then it goes back
And then it goes back
And then it goes back
And then it goes...

When I get older
I will be stronger
They'll call me freedom
Just like a wavin' flag

And then it goes back
And then it goes back
And then it goes back

And then it goes...

And then it goes...

And everybody will be singing it...

And you and I will be singing it...

And we all will be singing it...

When I get older
I will be stronger
They'll call me freedom
Just like a wavin' flag

And then it goes back
And then it goes back
And then it goes back

And then it goes

When I get older
I will be stronger
They'll call me freedom
Just like a wavin' flag

And then it goes back
And then it goes back
And then it goes back

When I get older...

When I get older...

I will be stronger...

Just like a wavin' flag...
Just like a wavin' flag...
Just like a wavin' flag...

Flag...
Flag...

Just like a wavin' flag...

Spanish version (remix) of K'naan's Waving flag by K'naan & David Bisbal




K'naan and David Bisbal Waving flag.
Productión: Coca-Cola. original Idea: Agencia Roja. Realizatión: MTV, Gloria Films Agencia Roja.

Lyrics: English and Spanish

Ohhhh Ohhhh Ohhhhh Ohhhh
Give me freedom! Give me fire !
Give me reason! Take me higher!
See the champions Take the field now !
You define us, make us feel proud!

En las calles muchas manos levantadas celebrando
Una fiesta sin descansó los países como hermanos

Canta y une tu voz grita fuerte que te escuche el sol
El partido ya va a comenzar, todos juntos vamos a ganar
Unidos!!
Chorús spanish
Seremos grandes seremos fuertes
somos un pueblo bandera de libertad
!!!que viene y que va, que viene que va!!!

Chorús English
when Iget older Iwill be stronger
They will call me freedom, just like the waving flag.
Now waving your flag X6 oh ho oh oh oh oh oh oh oh

Danos vida danos fuego que nos lleve a lo alto
Campeones o vencidos pero unidos a intentarlos

In the streets are hands and lifting
As we lose our inhibitions
Celebration is around us, every nation all around us.

Singing forever young, singing songs underneath the sun !
Lets rejoice to the beautiful game
And together at the end of the day

____________________________________

Thursday, June 3, 2010

Group and name of the countries they will be in 2010 FIFA World cup South Africa (top 16)

From Group A – France/South Africa
From Group B – Argentina/Nigeria
From Group C – England/USA
From Group D – Germany/Australia
From Group E – Netherlands/Cameroon
From Group F – Italy/Paraguay
From Group G – Brazil/Portugal
From Group H – Spain/Chile

Source: My intuition.

Friday, May 28, 2010

Do NOT discriminate people on the basis of Cast or Sex.

The gender discrimination and certain cast discrimination written in Manusmirti is totally wrong. It’s written by someone who thinks himself as smart but not in fact. Swami Dayanand Swarswati has written in his book Satyarth Prakash that all those are a big lie. Pls. read the following in Hindi.

Thursday, April 29, 2010

Bagalamukhi Yentra (12)

This is the last yentra of the Bagalamukhi Yentras series. I published different yentras so far.




Thursday, April 15, 2010

Bagalamukhi Yentra (11)

In this series I'll try to publish the Bagalamukhi Yentras. Check every Thursday for update.


"Om hreem lreem baglamukhi mam sarvachestanam wacham mukham padam. Stambhay jihwa kilay buddhi vinashay hreem lreen om swaha"
Here is the Bagala Mukhi Dhyana Mantra बगलामूखी स्तुति :

Thursday, April 8, 2010

Bagalamukhi Yentra (10)

In this series I'll try to publish the Bagalamukhi Yentras. Check every Thursday for update.

"Om hreem lreem baglamukhi mam sarvachestanam wacham mukham padam. Stambhay jihwa kilay buddhi vinashay hreem lreen om swaha"

Here is the "Bagala Mukhi Dhyana & Mantra Mantras For Protection Shatrubaadha Nivaran Mantra"

बगलामूखी स्तुति 

Friday, March 26, 2010

Bagalamukhi Yentra (9)

In this series I'll try to publish the Bagalamukhi Yentras. Check every Thursday for update.


"Om hreem lreem baglamukhi mam sarvachestanam wacham mukham padam. Stambhay jihwa kilay buddhi vinashay hreem lreen om swaha"

Here is the Bagalamukhi Bhajan in Bangali/Bangoli

Thursday, March 18, 2010

Bagalamukhi Yentra (8)

In this series I'll try to publish the Bagalamukhi Yentras. Check every Thursday for update.


"Om hreem lreem baglamukhi mam sarvachestanam wacham mukham padam. Stambhay jihwa kilay buddhi vinashay hreem lreen om swaha"

Bagalamukhi Bhajan-Ten Mahavidyas

Thursday, March 11, 2010

Bagalamukhi Yentra (7)

In this series I'll try to publish the Bagalamukhi Yentras. Check every Thursday for update.





Thursday, February 25, 2010

Bagalamukhi Yentra (6)


In this series I'll try to publish the Bagalamukhi Yentras. Check every Thursday for update.



"Om hreem lreem baglamukhi mam sarvachestanam wacham mukham padam. Stambhay jihwa kilay buddhi vinashay hreem lreen om swaha"

Thursday, February 18, 2010

Bagalamukhi Yentra (5)

In this series I'll try to publish the Bagalamukhi Yentras. Check every Thursday for update.
"Om hreem lreem baglamukhi mam sarvachestanam wacham mukham padam. Stambhay jihwa kilay buddhi vinashay hreem lreen om swaha" A Bagalamukhi Bhajan by Ashish!

Tuesday, February 16, 2010

Windows Live Messenger NOT Remembering ID and Password

If your Windows Live Messenger is not remembering your ID and Password, there might be a problem in your registry. If you change the following registry value your Windows Live Messenger will remember ID and password. (DON'T FORGET TO BACKUP YOUR REGISTRY BEFORE ANY CHANGES.)
Original:
[HKEY_USERS\S-1-5-21-.......-1003\Software\Microsoft\Windows\CurrentVersion\Ex plorer\User Shell Folders]

AppData = %AppData%

New changes:

AppData = %USERPROFILE%\Application Data

Thursday, February 11, 2010

Bagalamukhi Yentra (4)

In this series I'll try to publish the Bagalamukhi Yentras. Check every Thursday for update.
"Om hreem lreem baglamukhi mam sarvachestanam wacham mukham padam. Stambhay jihwa kilay buddhi vinashay hreem lreen om swaha"

Friday, February 5, 2010

Bagalamukhi Yentra (3)

In this series I'll try to publish the Bagalamukhi Yentras. Check every Thursday for update.
Baglamukhi yantra is effective as a memo of acheiving success over enemies. This yantra also offers protection for cuts, scars, operations and accidents. Baglamukhi yantra should be written or embossed on copper, brorze or Silver or Gold. It is worn in neck as well as kept in the puja ghar. It's pooja be performed through yellow beads, rosary and yellow dress through Beej Mantra to be recited daily.



Thursday, January 28, 2010

Bagalamukhi Yentra (2)

In this series I'll try to publish the Bagalamukhi Yentras. Check every Thursday for update.
Baglamukhi Maha Yantra is used to power & dominance over enemies. This yantra basically is to be drawn by Turmeric, Dhatura flowers juice, or yellow orpoinent on a piece and be worshipped to attain success. The yantra is engraved on copper plate only. Baglamukhi yantra is very effective to ward off the evil effects of souls and Yakshani also to get success in gambling. This is a very powerful and useful yantra for victory over enemies, law suits, success in quarrels and compititions.


Thursday, January 21, 2010

Bagalamukhi Yentra (1)

In this series I'll try to publish the Bagalamukhi Yentras. Check every Thursday for update.
Baglamukhi yantra is very powerful and useful yantra for victory over enemies, law suits, success in quarrels and comprtitions. The presiding deity goddess Baglamukhi is the conroller of this powerful Yantra which encharges Yantra with occoult forces. Baglamukhi yantra is useful for victory over enemies, success in law suits, quarrels and compettitions. The worship of this yantra is performed in a particular star and moment when there is maximum power generated from the planet MARS, by wearing yellow dress, on yellow asana, with yellow flowers and yellow beads.


बगलामुखि 108 शतनाम मंत्र साधना




(For more about BAGALAMUKHI, click the Deity label below)


Tuesday, January 19, 2010

An attribute of a binary relationship type can be migrated to become an attribute of one of the participating entity types.

The attributes of 1:1 or 1:N relationship types can be migrated to one of the participating entity types. In case of 1:1 cardinality, attribute can be moved to either of entity types in binary relationship and in case of 1:N cardinality attributes can be migrated only to N side of relationship. In both 1:1 and I:N relationship types, the decision as to where a relationship attribute should be placed-as a relationship type attribute or as an attribute of a participating entity type-is determined subjectively by the schema designer. For relationship types with cardinality M:N, attributes cannot be migrated to become attributes of one of participating entity types.

Sunday, January 17, 2010

The two alternatives for specifying structural constraints on relationship types.

The two alternatives for specifying structural constraints on relationship types are the cardinality ratio and participation constraints.

Cardinality ratio: The cardinality ratio for a binary relationship specifies the maximum number of relationship instances that an entity can participate in. For example, in the WORKS_FOR binary relationship type, DEPARTMENT: EMPLOYEE is of cardinality ratio l:N, meaning that each department can be related to (that is, employs) any number of employees, but an employee can be related to (work for) only one department. The possible cardinality ratios for binary relationship types are 1:1, l:N, N:l, and M:N.

Participation constraint: The participation constraint specifies whether the existence of an entity depends on its being related to another entity via the relationship type. This constraint specifies the minimum number of relationship instances that each entity can participate in, and is sometimes called the minimum cardinality constraint. There are two types of participation constraints-total and partial.

Friday, January 15, 2010

How To Install a Husband?

INSTALLING A HUSBAND

Dear Tech Support,

Last year I upgraded from Boyfriend 5.0 to Husband 1.0 and noticed a distinct slow down in overall system performance -- particularly in the flower and jeweler applications, which operated flawlessly under Boyfriend
5.0.

In addition, Husband 1.0 uninstalled many other valuable programs, such as Romance 9.5 and Personal Attention 6.5 and then installed undesirable programs such as Premier League 5.0, Six Nations 3.0, and Golf Clubs 4.1.

Conversation 8.0 no longer runs, and Housecleaning 2.6 simply crashes the system. I've tried running Nagging 5.3 to fix these problems, but to no avail.

What can I do?

Signed,

Desperate.


____________ _________ ___


Dear Desperate,

First keep in mind, Boyfriend 5.0 is an Entertainment Package, while Husband 1.0 is an Operating System.

Please enter the command: 'HTTP: I Thought You Loved Me.html' and try to download Tears 6.2 and don't forget to install the Guilt 3.0 update. If that application works as designed, Husband 1.0 should then automatically run the applications Jeweler 2.0 and Flowers 3.5.

But remember, overuse of the above application can cause Husband 1.0 to default to Grumpy Silence 2.5, Happy Hour 7.0 or Beer 6.1.

Beer 6.1 is a very bad program that will download the Snoring Loudly Beta.

Whatever you do, DO NOT install Mother-in-law 1.0 (it runs a virus in the background that will eventually seize control of all your system resources).

Also, do not attempt to reinstall the Boyfriend 5.0 program. These are unsupported applications and will crash Husband 1.0.

In summary, Husband 1.0 is a great program, but it does have limited memory and cannot learn new applications quickly. You might consider buying additional software to improve memory and performance.

We recommend Food 3.0.

HOPE THIS WORKS !!!!

Friday, January 8, 2010

The two alternatives for specifying structural constraints on relationship types.

The two alternatives for specifying structural constraints on relationship types are the cardinality ratio and participation constraints.

  • Cardinality ratio: The cardinality ratio for a binary relationship specifies the maximum number of relationship instances that an entity can participate in. For example, in the WORKS_FOR binary relationship type, DEPARTMENT: EMPLOYEE is of cardinality ratio l:N, meaning that each department can be related to (that is, employs) any number of employees, but an employee can be related to (work for) only one department. The possible cardinality ratios for binary relationship types are 1:1, l:N, N:l, and M:N.
  • Participation constraint: The participation constraint specifies whether the existence of an entity depends on its being related to another entity via the relationship type. This constraint specifies the minimum number of relationship instances that each entity can participate in, and is sometimes called the minimum cardinality constraint. There are two types of participation constraints-total and partial.

Tuesday, January 5, 2010

What is a participation role?

Participation role signifies role that a participating entity from the entity type plays in each relationship instance, and helps to explain that relationship means. Using Role name is not necessary in the description of relationship types where all participating entities are distinct because in such case name of entity types generally specify the role played by each entity type. But when one entity type participate in a relation in more than one role; recursive relationship; it becomes necessary to use role names in the description of relationship type.

Monday, January 4, 2010

The differences among a relationship instance, a relationship type, and a relationship set.

A relationship type R among n entity types E1, E2, …, En is a set of associations among entities from these types. Actually, R is a set of relationship instances ri where each ri is an n-tuple of entities (e1, e2, …, en), and each entity ej in ri is a member of entity type Ej, 1≤j≤n. Hence, a relationship type is a mathematical relation on E1, E2, …, En, or alternatively it can be defined as a subset of the Cartesian product E1x E2x … xEn . Here, entity types E1, E2, …, En defines a set of relationship, called relationship sets.

Saturday, January 2, 2010

The difference between an attribute and a value set.

An attribute is a property that describes an real world entity. Now for all entities there are certain values that each attribute can take. Set of all values that an attribute can take is called value set. Often the value that attribute take are lesser in number than number of element in value set. Difference between an attribute and value set can simply be taken as that between a variable and group of values that this variable can take. For example for a person an attribute can be name. For value of this attribute we can have any combination of character string so that will be the domain but in reality not all combination of characters exist as name of person.

Friday, January 1, 2010

Differences among an entity, an entity type, and an entity set.

A set of entities that have the same attributes is called an entity type. Each entity type in the database is described by a name and a list of attributes. For example an entity employee is an entity type that has Name, Age and Salary attributes.
The individual entities of a particular entity type are grouped into a collection or entity set, which is also called the extension of the entity type.
An entity is a thing in the real world. It may be an object with a physical existence or an object with a conceptual existence. A set of these entities having same attributes is entity type and collection of individual entity type is an entity set.