.:: Jasa Membuat Aplikasi Website,Desktop,Android Order Now..!! | | Order Now..!! Jasa Membuat Project Arduino,Robotic,Print 3D ::.

Bookmarks/favorite backup and restoration

0 komentar

Bookmarks/favorite backup and restoration



Day before yesterday one of my office mate asked me how he could take backup of his Firefox and Internet Explorer bookmarks, After that I realised its not a very well known way to take backup even its very simple so I decide to make this post for Firefox and I explorer bookmark Backup.



For bookmark backup we have two way to take backup

1) Offline Backup (take all backup in your backup as you do other backup)

2) Online Backup (upload bookmarks on some bookmark site)



I personally recommend both the method because one is simple and easy and other one is simple easy plus accessible from any part of the world. Very useful when you do not have access of your computer, and you need your bookmarks to do some task urgently.



Offline Backup :->



Internet Explorer:->

Backup

* From the File menu, select Import and Export.

* Click next and select Export Favourites.

* Save this file to your computer as bookmarkbackup.html.

This will be an HTML File now if you have to take restore your bookmark in some other computer just import this file in Internet explorer instead of export.

Restore

* From the File menu, select Import and Export.

* Click next and select Import Favourites.

* Browse to your bookmarkbackup.html file and next. Its done.



For Firefox

Backup

* From the bookmark menu, select organize bookmark or press ctrl+shift+B.

* you will get Library window here click on import and backup and select exporthtml.

* Save this html file and it�s done.

Restore bookmark in Firefox.

* From the bookmark menu, select organize bookmark or press ctrl+shift+B.

* You will get Library window here click on import and backup and select Import html.

* It�s done.



Online backup :->

For online backup you need to decide an online bookmark provider I recommend yahoo bookmarks.

1) Go to http://bookmarks.yahoo.com/ login here with your account.

2) Click on tools (top corner).

3) Click in Import bookmark

4) Select bookmark file click on browse and give the html file path that you backed up.

5) Click on import button.

Once this import is done you are done with your backup. You can see these bookmarks anywhere in the world.

For restore this bookmark

Yahoo bookmark ->tools->export bookmarks->bookmark type and click on export.

For restoring in browser choose restore bookmark



Suni

Pidgin Multi messenger

0 komentar

Pidgin Multi messenger

Many times people ask me if they can get a secure tool that can allow them to chat on multiple chatting clients from same tool as they do from www.meebo.com . All the time I have only one reply that why don�t you use pidgin (formerly Gaim). It�s most secured multiprotocol messenger that all are available in market.

It has a long history and development Life cycle so it�s least buggy software in its category and best thing it is open source and free. I can assure you that with Pidgin you will never get viruses and spywares as other free multi messenger.

This is not only for windows but also for Linux and Mac. In fact originally it was meant for Linux and then it became popular in windows and Mac Community also for OS X Try Adium. its Similar version of pidgin for Mac OS.

Pidgin can work with:

  • AIM
  • Bonjour
  • Gadu-Gadu
  • Google Talk
  • Groupwise
  • ICQ
  • IRC
  • MSN
  • MySpaceIM
  • QQ
  • SILC
  • SIMPLE
  • Sametime
  • XMPP
  • Yahoo!
  • Zephyr

Pidgin is free software and licensed under the GNU General Public License (GPL) version 2. This means you are free to use it and to modify it, but if you distribute your modifications you must distribute the modified source code as well.

You can simply download it from www.pidgin.im for your OS doesn�t matter its Linux or windows

Suni

Different Foreign Keys for Different Tables

0 komentar

A foreign key can be used to implement table design
patterns that span multiple tables. By choosing how
a foreign key handles a DELETE attempt on the parent
table, you can structure your table designs to
follow two standard patterns.



Welcome to the Database Programmer blog. This series
of essays is for anybody who wants to learn about
databases on their own terms. There is a complete
"http://database-programmer.blogspot.com/2007/12/database-skills-complete-contents.html"
>Table of Contents
, as well as a summary of
"http://database-programmer.blogspot.com/2008/01/table-design-patterns.html"
>Table Design Patterns
. There is a new essay in
this spot each Monday morning.



A Simple Example of Two Foreign Keys



Picture a basic shopping cart, with its two basic tables
of CART and CART_LINES (or ORDERS and ORDER_LINES if you
are more old-fashioned). The table CUSTOMERS is also
in there as a parent to CARTS. Our three tables look
something like this:




CUSTOMERS
|
|
/|\
CART Cart is child of customers
|
|
/|\
CART_LINES Lines is child of Cart


There are two foreign keys here. CART has a foreign key
to CUSTOMERS, and CART_LINES has a foreign key to CART,
but the two foreign keys should behave very differently.



Table Types and Table Design Patterns



In "http://database-programmer.blogspot.com/2008/01/database-skills-sane-approach-to.html"
>A Sane Approach To Choosing Primary Keys
we saw
that table design begins with identifying the basic
kinds of tables: Reference and Small Master Tables,
Large Master Tables, Transactions, and Cross-References.
Just as we picked different kinds of primary keys
for the different tables, so will we pick different
kinds of foreign keys between these tables.



Deleting a Customer



Imagine you have a customer who has made 10 orders
in 2 years. A system administrator, who is allowed
to basically do anything, goes into your admin
screens, looks up the customer, and clicks [DELETE].
What should happen?



The near-universal answer is that the user should
be denied the action. An error should come back that
says "That customer has orders, cannot delete."
We want it this way because we never want to delete
any parent row and "orphan" the child rows.
Database programmers know from long experience that
if you allow the DELETE, your queries will give incorrect
results, or you will work extremely hard with lots
of weird LEFT JOINS and UNIONS trying to
get them to come back correctly.



This is not an issue of "flexibility", where a more
robust system would allow the deletion. This is a
basic question of record-keeping. If the customer has
orders on file then the customer must be kept on file.
Enforcing this rule keeps code clean and simple, and
trying to avoid this rule in the name of "flexibility"
just makes heaps of work for everybody.



Going further, the administrator in question, who
supposedly can do anything, may not violate the rule.
An administrator is simply somebody who can do anything
that would not produce bad data. Administrators
should not be given the ability to violate the basic
structure of the data
, they simply have full
rights to do anything within the structure of the
data
.




The DELETE RESTRICT Foreign Key




The behavior we want here is called DELETE RESTRICT.
On most database servers this is the default
behavior for a foreign key. It means that you cannot
delete a parent table row if there are matching
rows in the child table.



The DELETE RESTRICT pattern is almost universally used
when the child table is a transaction table and the
parent table is a master table or reference table.



The syntax looks something like this:




-- Most database servers implement DELETE RESTRICT
-- by default, so this syntax:
Create table CART (
customer integer REFERENCES customers
,order integer.....
)

-- ...is the same as this explicit syntax:
Create table CART (
customer integer REFERENCES customers
ON DELETE RESTRICT
,order integer.....
)



Deleting An Order and DELETE CASCADE




Now let us say a staff member is on the phone with
a customer, enters an order, enters five lines,
and then the customers says "forget it" and the user
needs to delete the entire order from the CART.



In this case the user wants to go delete the order,
and he expects the computer to also delete the
lines
. This makes perfect sense, why keep the
lines if we don't want the order?



It may seem strange that in the case of deleting
a customer it makes perfect sense to stop the user,
but when deleting an order it makes perfect sense
to delete the lines as well.



The difference is that an entry in the CART table
is a transaction entry. When a user deletes a
transaction they almost always want to automatically
delete all of the relevant rows from all child tables
as well. The two rules basically are:



  • The user cannot delete a master entry that
    has transactions.
  • Deleting a transaction means deleting the
    entire transaction.


NOTE: By "transaction" here I mean financial transaction
or other interaction between master elements. I do not
mean a database transaction.



The syntax for DELETE CASCADE looks something like this:




-- if the user deletes a row from CART,
-- do them the favor of deleting all of the
-- lines as well
Create table CART_LINES (
order integer REFERENCES CART
ON DELETE CASCADE
,order_line integer....
)


Conclusion: Different Tables Types, Different Foreign Key Types



I have said many times in these essays that the foreign key
is the only meaningful way to connect data in different
tables. This week we have seen that the kind of foreign
key you choose depends on what kind of tables you are
connecting together. Children of master tables generally
get DELETE RESTRICT, and children of transaction tables
generally get DELETE CASCADE.



"http://database-programmer.blogspot.com/2008/08/javascript-as-foreign-language.html"
>Next Essay: Javascript as a Foreign Language

Suni

Download 400 Mobile Game For Sony Ericsson (And other Phone)

0 komentar

Enjoy

Download:

Part One
Suni

Bluetooth Multiplayer Game For Handphone

0 komentar
Super Miners



Bluetooth Multiplayer Game - Supermine

http://rapidshare.com/files/9285231/infinitedreams_1_.superminers.v1.07.s60.symbianos.cracked.read.nfo.zip.html
http://rapidshare.com/files/9285581/infinitedreams_1_.superminers.v1.05.s60.symbianos.cracked.proper.r.zip.htmll
http://rapidshare.com/files/9285424/infinitedreams_1_.superminers.v1.04.s60.symbianos.cracked-binpda_1.rar.html
http://rapidshare.com/files/9285729/infinite_1_.dreams.superminers.v1.01.s60.symbianos.cracked-hexpda_.rar.html
http://rapidshare.com/files/9285348/superminers_910_complet_save.rar.html

Rally Pro Contest



Explode Arena



Bluetooth Multiplayer Game

Download S60

Download S90

Stunt Car Extreme




Bluetooth Multiplayer Game - Stunt Car Extreme

Download




Bluetooth Multiplayer Game - Cluster Ball

Download




Bluetooth Multiplayer Game - Carmageddon

Download

Fatal Arena 3D




Bluetooth Multiplayer Game

Download

Fatal Force "Earth Assault"




Bluetooth Multiplayer Game

Download

Micro Quad Mazide


Nokia Series 60 : Nokia 3600, 3620, 3650, 3660, 7650, N-Gage
Nokia Series 60v2 : Nokia 3230, 6260, 6600, 6620, 6630, 6670, 6680, 6681, 6682, 7610, N70, N72

Bluetooth Multiplayer Game

Download

M-Bounce 3D MI Snooker v1.0 S60 (Symbian Game)




Bluetooth Multiplayer Game

Download

Morra (Symbian Game)



Bluetooth Multiplayer Game - Sut Jepang

Download

Hover Zone v1.00 s60 (Symbian Game)



Nokia 3230, 3600, 3650, 3660/3620, 6260, 6600, 6620, 6630, 6670, 6680, 7610, 7650, N-Gage, N-Gage QD
Siemens SX1




Bluetooth Multiplayer Game

Download
Suni

Five tips for Computer faster performance

0 komentar
Five tips to Computer faster performance



Many time people ask me how they can improve the speed of their home computer stating that it�s Celeron 1 GHz so they can work. Practically speaking it�s not possible! But I don�t let them down with this answer I give them some tips that could allow them to work with better speed than usual. In my today�s blog post those tips are here



1)Remove unnecessary item in startup : one of the very-very important point get faster performance is that do not keep any software in your start-up that you don�t use from start of your computer to shutdown of your computer. You can remove unwanted start-up program from run->msconfig->startup. Now remove the entire unwanted program from here. So it would not consume your system ram.



2)Minimise window instead of Alt+tab:If you need to see the other window of Firefox from winword or from one program to another program I would recommend to minimise the leaving program window instead of using cnatrol+tab. Now Question is why and the answer is when you move from one window to another window without minimising it,it would consume the same amount of the ram that when it was consuming when it was being used by you, but if you minimise the window then computer feels its not being used by you anymore and it don�t need more resource to run in front.



3)Remove temp files: one very important part of the keeping your system performance healthy is keep deleting temporary files of your computer. For deleting temporary file I am not going to recommend any tool just follow the simple steps.

a.Start->run->%temp% and press enter

b.Delete all the files from this folder and that�s done.

c.If it says to you this file cannot be deleted than skip that file and delete other for avoiding this message you can do this temp folder cleaning task just after restart so it would not give you any error of file usage.



4)Keep your system root drive (generally C) drive free as much as possible. Basically it�s recommended to keep the space 4 times than your RAM because it will have the space to create system file in your system.



5)Use disk Defragment time to time so it can arrange your computer�s hard disk data in a order and it need less time to read the data from hard disk. A must do task for slow hard disk computers.



How to remove program from startup and what is Disk defragmentation and how to do it!

I have already posted these topics on my blog previously that support this post. Please refer the links in this post to understand them.

If you liked it please commend and subscribe yourself for my blog so you can get daily update on my blog.





Suni

Tawk.to