Wednesday, June 30, 2010

What is context root ?




A name that gets mapped to the document root of a Web
application.

What is context attribute ?















An object bound into the context associated with a
servlet.

What is content ?

In an XML document, the part that occurs after the
prolog, including the root element and everything it
contains.

Tuesday, June 29, 2010

What is container-managed sign-on ?



The mechanism whereby security information needed for
signing on to a resource is supplied by the container.

What is container-managed persistence ?


The mechanism whereby data transfer between an entity
bean's variables and a resource manager is managed by
the entity bean's container.

What is container ?



An entity that provides life-cycle management,
security, deployment, and runtime services to J2EE
components. Each type of container (EJB, Web, JSP,
servlet, applet, and application client) also provides
component-specific services.

What is Connector architecture ?

An architecture for integration of J2EE products with
enterprise information systems. There are two parts to
this architecture: a resource adapter provided by an
enterprise information system vendor and the J2EE
product that allows this resource adapter to plug in.
This architecture defines a set of contracts that a
resource adapter must support to plug in to a J2EE
product-for example, transactions, security, and
resource management.

What is connector ?


















A standard extension mechanism for containers that
provides connectivity to enterprise information
systems. A connector is specific to an enterprise
information system and consists of a resource adapter
and application development tools for enterprise
information system connectivity. The resource adapter
is plugged in to a container through its support for
system-level contracts defined in the Connector
architecture.

Monday, June 28, 2010

What is component contract ?




The contract between a J2EE component and its
container. The contract includes life-cycle management
of the component, a context interface that the
instance uses to obtain various information and
services from its container, and a list of services
that every container must provide for its components.

What is commit ?



The point in a transaction when all updates to any
resources involved in the transaction are made
permanent.

What is comment ?

In an XML document, text that is ignored unless the
parser is specifically told to recognize it.

What is client-certificate authentication ?




An authentication mechanism that uses HTTP over SSL,
in which the server and, optionally, the client
authenticate each other with a public key certificate
that conforms to a standard that is defined by X.509
Public Key Infrastructure.

What is certificate authority ?



A trusted organization that issues public key
certificates and provides identification to the
bearer.

What is CDATA ?



A predefined XML tag for character data that means
"don't interpret these characters," as opposed to
parsed character data (PCDATA), in which the normal
rules of XML syntax apply. CDATA sections are
typically used to show examples of XML syntax.

What is cascade delete .?



A deletion that triggers another deletion. A cascade
delete can be specified for an entity bean that has
container-managed persistence.

Sunday, June 27, 2010

What is caller ?


The principal that identifies the invoker of the
enterprise bean method.i.i.also known as caller princeple

What is callback methods




Component methods called by the container to notify
the component of important events in its life cycle.

What is business method ?



A method of an enterprise bean that implements the
business logic or rules of an application.

What is business logic ?




The code that implements the functionality of an
application. In the Enterprise JavaBeans architecture,
this logic is implemented by the methods of an
enterprise bean.

What is build file ?



The XML file that contains one or more asant targets.
A target is a set of tasks you want to be executed.
When starting asant, you can select which targets you
want to have executed. When no target is given, the
project's default target is executed.

What is binding (JavaServer Faces technology) ?



Wiring UI components to back-end data sources such as
backing bean properties.

What is binding (XML) ?



Generating the code needed to process a well-defined
portion of XML data.

XML data binding refers to the process of representing the information in
an XML document as an object in computer memory.

This allows applications to access the data in the XML from the object
rather than using the DOM or SAX to retrieve the data from a direct
representation of the XML itself.

What is bean-managed transaction ?


A transaction whose boundaries are defined by an
enterprise bean.

What is bean-managed persistence ?



The mechanism whereby data transfer between an entity
bean's variables and a resource manager is managed by
the entity bean.

What is basic authentication ?



An authentication mechanism in which a Web server
authenticates an entity via a user name and password
obtained using the Web application's built-in
authentication mechanism.

What is backing bean ?



A JavaBeans component that corresponds to a JSP page
that includes JavaServer Faces components.

The backing bean defines properties for the components on the page
and methods that perform processing for the component.

This processing includes event handling, validation,
and processing associated with navigation.

What is B2B

Business-to-business (B2B) describes commerce transactions between
businesses, such  as  between  a  manufacturer  and  a  wholesaler ,  or
between a wholesaler and a retailer.

Contrasting terms are

business-to-consumer (B2C)
business-to-government (B2G).

The volume of B2B transactions is much higher than the volume of B2C transactions.
The primary reason for this is that in a typical supply chain there will be many B2B
transactions involving subcomponent or raw materials, and only one B2C transaction,
specifically sale of the finished product to the end customer. For example, an automobile
manufacturer makes several B2B transactions such as buying tires, glass for windscreens,
and rubber hoses for its vehicles. The final transaction, a finished vehicle sold to the
consumer, is a single (B2C) transaction.



What is authorization constraint



An authorization rule that determines who is permitted
         to access a Web resource collection.

What is authorization?



The process by which access to a method or resource is
determined.
 Authorization depends on the determination
of whether the principal associated with a request
through authentication is in a given security role.

A security role is a logical grouping of users defined
by the person who assembles the application.

A deployer maps security roles to security identities.
Security identities may be principals or groups in the
operational environment.

What is "applet container"



A container that includes support for the applet
programming model.

What is "applet"



A J2EE component that typically executes in a Web
browser but can execute in a variety of other
applications or devices that support the applet
programming model.

What is the difference between Session bean and Entity bean?one?



The Session bean and Entity bean are two main parts of
EJB container.

Session Bean


#  represents a workflow on behalf of a cliennt
# one-to-one logical mapping to a client.
# created and destroyed by a client
# not permanent objects
# lives its EJB container(generally) does noot survive
system shut down

entity bean

# two types: stateless and stateful beans Entity Bean
# represents persistent data and behavior off this
data
# can be shared among multiple clients
# persists across multiple invocations
# findable permanent objects
# outlives its EJB container, survives systeem
shutdown
# two types: container managed persistence(CCMP) and
bean managed persistence(BMP)

Wednesday, June 23, 2010

What are the differences between Ear, Jar and War files? Under what circumstances should we use each one?

 #   There are no structural differences between the files;
they are all archived using zip-jar compression.
However, they are intended for different purposes.

#   Jar files (files with a .jar extension) arre
intended to hold generic libraries of Java classes,
resources, auxiliary files, etc.

#  War files (files with a .war extension) arre
intended to contain complete Web applications. In this
context, a Web application is defined as a single
group of files, classes, resources, .jar files that
can be packaged and accessed as one servlet context.

#   Ear files (files with a .ear extension) arre
intended to contain complete enterprise applications.
In this context, an enterprise application is defined
as a collection of .jar files, resources, classes, and
multiple Web applications.

#  Each type of file (.jar, .war, .ear) is processed
uniquely by application servers, servlet containers,
EJB containers, etc.

What does web module contain?




The web module contains:
--JSP files,
--class files for servlets,
--GIF and HTML files, and
--a Web deployment descriptor.
Web modules are packaged as JAR files with a .war (Web
ARchive) extension.

What does application client module contain?




The application client module contains:
--class files,
--an application client deployment descriptoor.
Application client modules are packaged as JAR files
with a .jar extension.

What are the four types of J2EE modules?

1. Application client module
2. Web module
3. Enterprise JavaBeans module
4. Resource adapter module

What are the components of J2EE application?


A J2EE component is a self-contained functional
software unit that is assembled into a J2EE
application with its related classes and files and
communicates with other components. The J2EE
specification defines the following J2EE components:

Application clients and applets are client components.


Java Servlet and JavaServer PagesTM (JSPTM) technology
components are web components.

Enterprise JavaBeansTM (EJBTM) components (enterprise
beans) are business components.

Resource adapter components provided by EIS and tool
vendors.

What is the J2EE module?



A J2EE module consists of one or more J2EE components
for the same container type and one component
deployment descriptor of that type.

What is J2EE?



J2EE is an environment for developing and deploying
enterprise applications. The J2EE platform consists of
a set of services, application programming interfaces
(APIs), and protocols that provide the functionality
for developing multitiered, web-based applications

Tuesday, June 22, 2010

GET LOGIN INFORMATION OF ANY SITE

STEP 1: Make a note of the website address your are trying to access. For example:
http://www.nytimes.com/cnet/CNET_2100-1024_3-5567274.html
Or even just:
www.nytimes.com

STEP 2: Visit http://bugmenot.com

STEP 3: Enter the address from step 1 into the box and press the "Get Logins" button

STEP 4: You should now be presented with at least one username and password. Make a note of them.

STEP 5: Go back to the site you were originally trying to access in step 1 and proceed to login with the username and password you noted in the previous step.

With any luck you should be able to access your article now!

serials for all Nero v9 products and plugins

Nero v9                                       : 9M03-01A1-PCX7-K31A-8A94-98PT-KT2E-522A

Blu-ray Disc Authoring Plug-in       : 9M13-0083-2710-5622-98W3-TL0A-THW4-9A0T

Grace note Plug-in                         : 9M0C-01A2-K817-3LK8-9X6M-WK3U-L942-3WE1

DTS Plug-in                                   : 9K00-0003-8M80-6320-5043-1458-XAA5

mp3 PRO plug-in                           : 1A41-0800-0000-2903-1645-8530

Nero Back It Up v4                       : 9M11-01CA-032E-01A5-AA9C-H44K-6T9U-X4HW

Nero Media Home v4                     : 9M06-019C-TTET-880Z-5PUM-6XA2-5MEC-35WM

Nero Move it                                : 9M09-01AC-5TE3-KEU9-177W-C6E0-6KCT-2W4K

                                  click here to download this software

AVAST LICENCE KEY


click here to download avast antivirus

MANY OF THE USERS WERE ASKING US ABOUT THE AVAST LICENCE KEY
 YOU CAN ENTER THE LICENCE KEY GIVEN BELOW FOR AVAST HOME EDITION

W24783458H1400A0611

BLACKBERRY CODES


Decibel meter.
Displays your signal strength in decibels, instead of bars.
Hold "Alt" and press "N", "M", "L", "L" (repeat to reverse the effect)..

Address Book file verification.
Checks the data in your Address Book for inconsistencies.
In the Address Book, hold "Alt" and press "V", "A", "L", "D"..

Address Book data structure rebuild.
Forces a data structure re-build in the Address Book...
In the Address Book, hold "Alt" and press "R", "B", "L", "D"..

View source code.
Displays the source code of a Web page.
In the Browser, hold "Alt" and press "R", "B", "V", "S"..

Help Me! menu.
Provides crucial technical information about your device, for when seeking technical support or help in forums...
Hold "Alt" and (left) "shift", then press "H"..

IMEI display.
Displays your device's international mobile equipment identity (IMEI - your serial number) on-screen... Also works from all other GSM handsets.
Type "*", "#", "0", "6", "#" on the Home screen..

"Soft" reset.
Performs a "soft" reset of your device; the equivalent of doing a "battery pull" (ie. Removing the battery for a few seconds).
Press-and-hold "Alt", then press-and-hold (left) "shift", then press-and-hold "Del"..

Event Log.
Displays event logs of all the system-level events that occur on your device...
Hold "Alt" and press "L", "G", "L", "G"..

All of these secrets have been tested on the BlackBerry 8800 and BlackBerry Curve 8300; ..

In some cases, you will need to be on the Home screen when you enter these codes...
Key shortcuts:
A or C = phonebook
S = search
F = phone profiles
W or B = browser
H = help
K = locks the keys
L = calendar
V = messages
M = messages folder
R = alarm
T = tasks
U = calculator
I = applications
O = options
P = phone.
T - Top of page (in browser)
B - Bottom of page (in browser)
Space - Page down (in browser)
ALT + Right Shift + Del = hard reset
D - Memo pad
U - Switch between hide/unhide in title bar (in browser)
ALT + NMLL = numbers instead of bars for signal strength

APPLE IPHONE CODES


With these codes you can access to any function call-status (disabled/enabled), how many minutes you have left on your pre-paid account (as well as your other quota post-paid minutes)..
*#06# display IMEI number.

 apple_iPhone_image
*3001#12345#* and tap Call. Enter field mode, (iPhone network and cellular information)

* 777 # and tap Call. Show the balance amount if prepaid ..

* 225 # and tap Call. Post-paid account balance.

* 646 # and tap Call. Call minute balance postpaid phone.

* # 21 # and tap Call. Call feature setup (enabled / disabled) for voice, data, fax, SMS, sync, async, access package, call forwarding.


* # 30# and touch call. Caller-ID display check (on / off)


* # 76# and touch call. Connected call screen check (on / off)

* # 43# and touch call. Determine if call waiting is activated.


* # 61 # and tap Call. Call with a number of services (no-answer)


* # 62 # and tap Call. Call Forwarding number without service (non-ring)

* # 67 # and tap Call. Call when the number occupied

* # 33 and # touch call. Check outgoing call services for call-barring (enabled / disabed)

FREE DOMAIN FOR YOUR WEBSITE



click here to find free domain for ur website

LG MOBILES CODES

 LG all models test mode: Type 2945#*# on the main screen.
2945*#01*# Secret menu for LG

IMEI (ALL): *#06#
IMEI and SW (LG 510): *#07#
Software version (LG B1200): *8375#
Recount cheksum (LG B1200): *6861#
Factory test (B1200): #PWR 668
Simlock menu (LG B1200): 1945#*5101#
Simlock menu (LG 510W, 5200): 2945#*5101#
Simlock menu (LG 7020, 7010): 2945#*70001#
Simlock menu (LG 500, 600): 2947#*

LG-U81XX SPECIAL CODES
Code to read phone version :
- Phone without SIM
- Enter 277634#*# or 47328545454#
- Select 'SW Ver.info'
Code to reset phone :
- Phone without SIM
- Enter 277634#*# or 47328545454#
- Select 'Factory Reset'
Code to enter UNLOCK MENU :
- Phone wit SIM inside
- Enter 2945#*88110#
Test Menu 8330 : 637664#*#
Test Menu 8180 V10a: 49857465454#
Test Menu 8180 V11a: 492662464663#
Test Menu 8130-8138: 47328545454#
Test Menu 8110-8120: 277634#*#

SAMSUNG CODES

Service codes for different models of Samsung mobile phones

For all:
*#06# Show IMEI
*#9999# Show mobile Software Version
*#0837# Show mobile Software Version (instructions)
*#0001# Show Serial Parameters
*#9125# Activates the smiley when charging
*#0523# LCD Contrast

samsung mobiles

*#9998*228# Battery status (capacity, voltage, temperature)
*#9998*246# Program status
*#9998*289# Change Alarm Buzzer Frequency
*#9998*324# Debug Screens
*#9998*364# Watchdog
*#9998*377# EEPROM Error Stack - Use side keys to select values
*#9998*427# Trace Watchdog
*#9998*523# Change LCD contrast
*#9998*544# Jig detect
*#9998*636# Memory status
*#9998*746# SIM File Size
*#9998*778# SIM Service Table
*#9998*785# RTK (Run Time Kernel) errors - if ok then phn is reset, info is put in memory error

*#9998*786# Run, Last UP, Last DOWN
*#9998*837# Mobile Software Version
*#9998*842# Test Vibrator - Flash the screenlight during 10 sec and vibration activated

*#9998*862# Vocoder Reg - Normal, Earphone or Carkit
*#9998*872# Diag
*#9998*947# Reset On Fatal Error
*#9998*999# Last/Chk

*#9998*9266# Yann debug screen (Debug Screens?)
*#9998*9999# Software version

*0001*s*f*t# Changes serial parameters (s=?, f=0.1, t=0.1)
*0002*?# unknown Samsung's comand
*0003*?# unknown Samsung's comand

For Mobile phones SGH (R210, T100, A300...)
if Samsung code is in format *#9998*xxx#
try write in this *#0xxx#

SGH-600
SGH-2100

*2767*3855# Full EEPROM Reset (THIS CODE REMMOVES SP-LOCK! but also changes IMEI to 447967-89-400044-0

*2767*2878# Custom EEPROM Reset

Samsung mobile phone codes: Samsung E700

*2767*688# remove USER CODE and SIMLOCK

Samsung mobile phone codes: Samsung V200

Unlocking:
Power on the mobile phone without SIM card and type these codes:

*2767*63342# and press green button
*2767*3855# and press green button
*2767*2878# and press green button
*2767*927# and press green button
*2767*7822573738# press button

Phone will be unlocked, but all trims are reseted !!!
Mobile phone must be fully charged

Samsung mobile phone codes: Samsung S500
Unlocking
*2767*MVT# (*2767*688#) E2P MVT Reset
*#SIMLOCK# (*#7465625#)

chinese mobiles codes



                   default user code: 1122, 3344, 1234, 5678
Engineer mode: *#110*01#
Factory mode: *#987#
Enable COM PORT *#110*01# -> Device -> Set UART -> PS Config -> UART1/115200
Restore factory settings: *#987*99#
LCD contrast: *#369#
software version: *#800#
software version: *#900#
set default language: *#0000# Send
set ENGLISH LANGUAGE: *#0044# Send
set English language (new firmware): *#001# SendService codes BenQ:
software version: *#300#
test mode: *#302*20040615#
Service codes Pantech:
SOFTWARE VERSION: *01763*79837#
service menu: *01763*476#
reset defaults (phone/user code reset to default): *01763*737381#
Service codes 3xx, 5xx:
software version: *#79#
software version: *#837#

Service codes VK200, VK2000, VK2010, VK2020, VK4000:
software version: *#79#
SERVICE MENU: *#9998*8336# (hold #)
reset defaults (phone/user code reset to default): *#9998*7328# (hold #)
Service codes LG:
software version: 2945#*#

Service codes Fly:
2040(i) reset defaults: *#987*99# Send
MX200 reset defaults: *#987*99# Send
MX200 software version: *#900# Send
SL300m reset defaults: *#987*99# Send
SL300m software version: *#900# Send
SL500m reset defaults: *#987*99# Send
SL500m software version: *#900# Send
MP500 reset defaults: *#987*99# Send
MP500 software version: *#900# Send
Set language to English: *#0044#
Set language to Russian: *#0007#

Service codes Konka:
C926 software version: *320# Send
C926 set default language: *#0000# Send
C926 set English language: *#0044# Send

Service codes GStar:
GM208 (Chinese Nokea 6230+) engineering menu: *#66*#
Set language to English: *#0044#
Set language to Russian: *#0007#

Service codes Philips:
S200 enable COM port: *#3338913# -> Device -> Set UART -> PS -> UART1/115200
Service codes “Chinese” models:
default user code: 1122, 3344, 1234, 5678
Engineer mode: *#110*01#
Factory mode: *#987#
Enable COM port: *#110*01# -> Device -> Set UART -> PS Config -> UART1/115200
Restore factory settings: *#987*99#
LCD contrast: *#369#
software version: *#800#
software version: *#900#
Service codes BenQ:
software version: *#300#
test mode: *#302*20040615#
Service codes Pantech:
software version: *01763*79837#
service menu: *01763*476#
reset defaults (phone/user code reset to default): *01763*737381#

Service codes VK-Mobile 3xx, 5xx:
software version: *#79#
software version: *#837#
service menu: *#85*364# (hold #)
Service codes VK200, VK2000, VK2010, VK2020, VK4000:
software version: *#79#
service menu: *#9998*8336# (hold #)
reset defaults (phone/user code reset to default): *#9998*7328# (hold #)

Service codes Fly:
M100 software version: ####0000#
2040(i) reset defaults: *#987*99# Send
MX200 reset defaults: *#987*99# Send
MX200 software version: *#900# Send
SL300m reset defaults: *#987*99# Send
SL300m software version: *#900# Send
SL500m reset defaults: *#987*99# Send
SL500m software version: *#900# Send
MP500 reset defaults: *#987*99# Send
MP500 software version: *#900# Send
Set language to English: *#0044#
Set language to Russian: *#0007#
Service codes Konka:
C926 software version: *320# Send
C926 set default language: *#0000# Send
C926 set English language: *#0044# Send

Service codes GStar:
GM208 (Chinese Nokea 6230+) engineering menu: *#66*#
Set language to English: *#0044#
Set language to Russian: *#0007#
Service codes Motofone-F3:
Motofone F3 software version: **9999* Send
***300* Set SIM Pin
***310* / ***311* SIM Pin ON | OFF
***000* Reset Factory settings
***644* Set Voicemail number
***260* / ***261* Auto keypad lock ON | OFF
***510* / ***511* Voice Prompts ON | OFF
***160* / ***161* Restricted Calling (Phonebook only) ON | OFF
***200608* Send: software version
***200606* Send: software version
***200806* Send: flex version
***250* / ***251* Keypad tones ON | OFF
***470* Select time format
***500* /***501* Prepaid Balance Display ON | OFF
***520* Change language
==============================================
All Chinese Mobile Code And Pinouts
——————————————————
Service codes BenQ:
software version: *#300#
test mode: *#302*20040615#
Service codes Pantech:
software version: *01763*79837#
service menu: *01763*476#
reset defaults (phone/user code reset to default): *01763*737381#
Service codes 3xx, 5xx:
software version: *#79#
software version: *#837#
Service codes VK200, VK2000, VK2010, VK2020, VK4000:
software version: *#79#
service menu: *#9998*8336# (hold #)
reset defaults (phone/user code reset to default): *#9998*7328# (hold #)

Service codes Fly:
2040(i) reset defaults: *#987*99# Send
MX200 reset defaults: *#987*99# Send
MX200 software version: *#900# Send
SL300m reset defaults: *#987*99# Send
SL300m software version: *#900# Send
SL500m reset defaults: *#987*99# Send
SL500m software version: *#900# Send
MP500 reset defaults: *#987*99# Send
MP500 software version: *#900# Send
Set language to English: *#0044#
Set language to Russian: *#0007#
Service codes Konka:
C926 software version: *320# Send
C926 set default language: *#0000# Send
C926 set English language: *#0044# Send

Service codes GStar:
GM208 (Chinese Nokea 6230+) engineering menu: *#66*#
Set language to English: *#0044#
Set language to Russian: *#0007#


Motofone F3 software version: **9999* Send
C113, C114, C115, C115i, C116, C117, C118 software version: #02#*
C138, C139, C140 software version: #02#*
C155, C156, C157 software version: #02#*
C257, C261 software version: #02#*
V171, V172, V173 software version: #02#*
V175, V176, V176 software version: #02#*
C168, W220 software version: *#**837#
W208, W375 software version: #02#*
ZTE Mobile1- *938*737381#
2- PHONE WILL DIPLAYED DONE
3- POWER OFF YOUR PHONE AND POWER ON AGAIN


alcatelE205
unlocking phone code,only press***847# without simcardE900 software version: *#5002*8376263#
E900 full reset: *2767*3855#
Service codes Spice:
S404 enable COM port: *#42253646633# -> Device -> Set UART -> PS -> UART1/115200
S410 engineer mode: *#3646633#
S900 software version: *#8375#
S900 serial no: *#33778#
Service codes Philips:
S200 enable COM port: *#3338913# -> Device -> Set UART -> PS -> UART1/115200
Service codes “Chinese” models:
default user code: 1122, 3344, 1234, 5678
Engineer mode: *#110*01#
Factory mode: *#987#
Enable COM port: *#110*01# -> Device -> Set UART -> PS Config -> UART1/115200
Restore factory settings: *#987*99#
LCD contrast: *#369#
software version: *#800#
software version: *#900#
Service codes BenQ:
software version: *#300#
test mode: *#302*20040615#

nokia codes

  HERE ARE SOME NOKIA CODES

# *3370# This Nokia code activates Enhanced Full Rate Codec (EFR) - Your Nokia cell phone uses the best sound quality but talk time is reduced my approx. 5%
#
# #3370# Deactivate Enhanced Full Rate Codec (EFR) .
#
# *#4720# Activate Half Rate Codec - Your phone uses a lower quality sound but you should gain approx 30% more Talk Time.
#
# *#4720# With this Nokia code you can deactivate the Half Rate Codec.
#
# *#0000# Displays your phones software version, 1st Line : Software Version, 2nd Line : Software Release Date, 3rd Line : Compression Type .
#
# *#9999# Phones software version if *#0000# does not work.
#
# *#06# For checking the International Mobile Equipment Identity (IMEI Number) .
#
# #pw+1234567890+1# Provider Lock Status. (use the "*" button to obtain the "p,w" and "+" symbols).
#
# #pw+1234567890+2# Network Lock Status. (use the "*" button to obtain the "p,w" and "+" symbols) .

# #pw+1234567890+3# Country Lock Status. (use the "*" button to obtain the "p,w" and "+" symbols).
#
# #pw+1234567890+4# SIM Card Lock Status. (use the "*" button to obtain the "p,w" and "+" symbols) .
#
# *#147# This lets you know who called you last (Only vodofone).
#
# *#1471# Last call (Only vodofone) .
#
# *#21# This phone code allows you to check the number that "All Calls" are diverted to.
#
# *#2640# Displays phone security code in use .
#
# *#30# Lets you see the private number.
#
# *#43# Allows you to check the "Call Waiting" status of your cell phone.

# *#61# Allows you to check the number that "On No Reply" calls are diverted to .
#
# *#62# Allows you to check the number that "Divert If Unreachable (no service)" calls are diverted to .
#
# *#67# Allows you to check the number that "On Busy Calls" are diverted to

*#67705646# Phone code that removes operator logo on 3310 & 3330
#
# *#73# Reset phone timers and game scores.
#
# *#746025625# Displays the SIM Clock status, if your phone supports this power saving feature "SIM Clock Stop
# Allowed", it means you will get the best standby time possible .
#
# *#7760# Manufactures code.
#
# *#7780# Restore factory settings.
#
# *#8110# Software version for the nokia 8110.
#
# *#92702689# Displays - 1.Serial Number, 2.Date Made, 3.Purchase Date, 4.Date of last repair (0000 for no repairs), 5.Transfer User Data. To exit this mode you need to switch your phone off then on again.
#
# *#94870345123456789# Deactivate the PWM-Mem.
#
# **21*number# Turn on "All Calls" diverting to the phone number entered.
#
# **61*number# Turn on "No Reply" diverting to the phone number entered .
#
# **67*number# Turn on "On Busy" diverting to the phone number entered .
#
# 12345 This is the default security code .
#
# press and hold # Lets you switch between lines

PAYPAL HACKING SOFTWARE

NOTE-ALSO AS THESE HACKING SOFTARE ARE AKIND OF VIRUS SO PLEASE TURN OF YOUR ANTIVIRUS BEFORE DOWNLOADING


CLICK HERE TO DOWNLOAD


YES YOU HAVE READ IT RIGHT I AM INTRODUCING PAYPAL HACKING SOFTWARE(ITS NOT FAKE)

IMPORTANT NOTE-YOU SHOULD USE THESE SOFTWARE AT YOUR OWN RISK WE ARE NOT RESPONSIBE IF CAUGHT .

THIS IS JUST TO GIVE YOU ONLY INTRODUCTION WE DON`T LEAD TO SUCH  HACKING 

MANY OF SITES  ASK YOU TO PAY FOR SUCH SOFTWARES BUT I PROVIDE FOR FREE\

THERE ARE TWO SOFTWARE YOU ACN CHOOSE WHICH ONE TO DOWNLAOD
 
Copyright 2009 free learn hacking tips and tricks. Powered by Blogger Blogger Templates create by Deluxe Templates. WP by Masterplan