IMAG0152
January 22, 2009
IMAG0143
January 22, 2009
IMAG0151
January 22, 2009
MyCam
August 6, 2008
| Live Streaming Web Cams – by Camstreams |
Come to My city
January 23, 2008
Kunjungi http://djakartas.myminicity.com/ thank you…..
Blog Desk Testing
November 7, 2007
57% GeekMingle2 – Free Online Dating
If you cannot repair your network……
February 10, 2007
Occasionally, clearing your ARP cache will fail due to a bug in Microsoft Windows.
If you try to use Microsoft Windows to repair the network connection, you will receive an error message that says:
Windows could not finish repairing the problem because the following operation could not be completed:
Clearing the ARP cache
For assistance, contact the person who manages your network
This bug occurs when Routing and Remote Services is enabled. Routing and Remote Services is almost unnnecessary and can be turned off unless you know that you are using it.
To disable Routing and Remote Services:
- Click the <Start> button
- Click the <Control Panel> button
- Switch to “Classic View” if you are in “Category View”
- Click <Administrative Tools>
- Click <Computer Management>
- Double-click <Services and Applications>
- Double-click <Services>
- Scroll down to <Routing and Remote Services>
- Double-click <Routing and Remote Services>
- Examine the “Startup Type”
- The options are “Automatic”, “Manual”, and “Disabled”
- Set the “Startup Type” to “Disabled”
- Examine the “Service status”
- Make sure that the service status is Stopped. If it is not Stopped, click the <Stop> button
- Click the <OK> button
Now, try clearing the ARP cache again and it should complete with no error messages.
Terms of JAVA
November 29, 2006
Ini istilah2x pada java yg dasar untuk dimengerti
JDK = Java Development Kit - if you want to develop or just compile Java programs (*.java -> *.class -> *.jar) JRE = Java Runtime Environment - if you want to execute a Java program Just my simple descriptions: J2SE = Java 2 Standard Edition - (JDK+JRE) - for common purposes for example on PCs J2EE = Java 2 Enterprise Edition - AFAIK framework and methodology to produce applications in 3-layer technology (robust applications) J2ME = Java 2 Micro Edition - (JDK+JRE) - for small devices (cellular phones, palmtops etc.) SDK = Software Development Kit - it is IMHO common term It follows some fundamental infos from Sun's website: -------------------------- J2SE -------------------------- The premier solution for rapidly developing and deploying mission-critical, enterprise applications, J2SETM provides the essential compiler, tools, runtimes, and APIs for writing, deploying, and running applets and applications in the Java programming language. -------------------------- J2EE -------------------------- J2EETM technology and its component based model simplifies enterprise development and deployment. The J2EE platform manages the infrastructure and supports the Web services to enable development of secure, robust and interoperable business applications. The J2EE platform is the foundation technology of the Sun ONE platform and Sun's Web services strategy. -------------------------- J2ME -------------------------- A highly optimized Java runtime environment, J2METM technology specifically addresses the vast consumer space, which covers the range of extremely tiny commodities such as smart cards or a pager all the way up to the set-top box, an appliance almost as powerful as a computer.
How to view tables structure on ms sql
November 23, 2006
USE [DB Name]
SELECT o.name AS TableName, c.name AS ColumnName, t.name AS DataType, c.max_length, c.precision, c.scale
FROM sys.objects AS o INNER JOIN
sys.columns AS c ON o.object_id = c.object_id INNER JOIN
sys.types AS t ON c.user_type_id = t.user_type_id
WHERE (o.type = 'U')
