carmiemendoza.wordpress.com
Smart introduced the new mobile messenger “Uzzap” | The Explosive One
https://carmiemendoza.wordpress.com/2008/07/07/smart-introduce-the-new-mobile-messenger-uzzap
Smart introduced the new mobile messenger “Uzzap”. July 7, 2008 at 2:50 am ( Mobile. You can also group your buddies. It also has search bar that can search your contacts easily. This uzzap is the most useful messenger. Uzzap is a pc-pc, pc-phone and vice versa mobile messenger. Click here to download uzzap http:/ uzzap.com/download. Or text UZZAP send to 7272. Go to http:/ uzzap.com/index.htm. Main Menu of Uzzap http:/ uzzap.com/start enjoy.htm. Users Manual: http:/ uzzap.com/download pdf.htm. Automatic...
carmiemendoza.wordpress.com
List of All Programming Languages | The Explosive One
https://carmiemendoza.wordpress.com/2008/05/07/list-of-all-programming-languages
List of All Programming Languages. May 7, 2008 at 7:34 am ( Programming. Helloworld in all programming language. AssemblyLanguage for the IBM-PC (i386):. C (CeeLanguage) (according to KernighanAndRitchie):. NemerleLanguage: ( http:/ www.nemerle.org. May 7, 2008 at 7:51 am. Leave a Reply Cancel reply. Enter your comment here. Fill in your details below or click an icon to log in:. Address never made public). You are commenting using your WordPress.com account. ( Log Out. Notify me of new comments via email.
carmiemendoza.wordpress.com
Greedy Relative… | The Explosive One
https://carmiemendoza.wordpress.com/2008/08/08/greedy-relative
August 8, 2008 at 2:15 am ( Article. How can you define greedy? WHAT A SHAMELESS PEOPLE? How could they file a violation of human rights! To my knowledge, the violation done is them COVETING OUR PROPERTY and AND ABUSING OUR GENEROSITY! The owner, of course, never failed to spend so much on the maintenance of that lot and these greedy people only covet it! That’s not only a sin against society but also violates God’s commandment “thou shall not covet thy neighbors property”. Title II. – OWNERSHIP. Art 431...
carmiemendoza.wordpress.com
Learning PHP… | The Explosive One
https://carmiemendoza.wordpress.com/2008/08/23/learning-php
August 23, 2008 at 11:06 am ( Programming. Recursive acronym for “PHP: Hypertext Preprocessor”) is a widely-used Open Source general-purpose scripting language that is especially suited for Web development and can be embedded into HTML. Example 1: Hello World (sample1.php). Hi, I'm a PHP script! Var = “Hello” / string “hello”. Var = 3; / integer 3. Var2 = $var1; / Assigns a value of ‘PHP’ to $var2. Echo $var1; / Outputs ‘PHP’. Echo Hello World ;. Myarray = array(‘one’, 2, ‘3’);. Here’s what it looks like:.
carmiemendoza.wordpress.com
Simple HttpServer in Twisted Python | The Explosive One
https://carmiemendoza.wordpress.com/2008/05/27/simple-httpserver-in-twisted-python
Simple HttpServer in Twisted Python. May 27, 2008 at 8:25 am ( Programming. This is a sample code of http server programmed in twisted python. From twisted.protocols import basic. From twisted.web import server,resource,http. From twisted.internet.protocol import Protocol. Class HttpProtocol(basic.LineReceiver,Protocol):. SelfsendLine(“HTTP/1.0 200 OK”). Your code goes here: process the line you receive. Print “Connected”. Running on the terminal. Leave a Reply Cancel reply. Enter your comment here.
carmiemendoza.wordpress.com
Stress for Computer Programmers | The Explosive One
https://carmiemendoza.wordpress.com/2008/09/12/stress-for-computer-programmers
Stress for Computer Programmers. September 12, 2008 at 3:38 am ( Article. What is a stress? What are the sources of stress? According to my officemates here are the sources of stress. 1 Boyfriend/girlfriend. ( demanding partners). 2 Family ( if you are a breadwinner of the family). 3 Tax (deductions to your salary every payday is too much because of your tax). 4 Deadlines (meeting your deadlines). 5 Sourcecode, Bug(for programmers). 6 Specs ( client specs, what they want to add in the next release).
carmiemendoza.wordpress.com
Start the Midlet when New Message arrived | The Explosive One
https://carmiemendoza.wordpress.com/2008/05/07/start-the-midlet-in-incoming-message
Start the Midlet when New Message arrived. May 7, 2008 at 5:07 am ( Mobile. If you want your midlet to start when incoming message arrived, the message should be sent with specific port where your midlet is listening. Your jad file should look like this. MIDlet-Jar-URL: MyMidlet-0.0.1.jar. MIDlet-Vendor: 3rd Brand Pte Ltd. MIDlet-Version: 0.0.1. MIDlet-Push-1: sms:/ :5000,MyMidlet,*. MIDlet-Permissions: javax.microedition.io.PushRegistry,javax.wireless.messaging.sms.receive. Leave a Reply Cancel reply.
carmiemendoza.wordpress.com
Send Message in J2ME | The Explosive One
https://carmiemendoza.wordpress.com/2008/05/07/send-message-in-j2me
Send Message in J2ME. May 7, 2008 at 5:14 am ( Mobile. Sample code for sending a message using J2ME: You can send message with or without port. MessageConnection smsconn = null;. Open the message connection. */. Smsconn = (MessageConnection)Connector.open(address);. TextMessage)smsconn.newMessage(MessageConnection.TEXT MESSAGE);. Txtmessage.setPayloadText(messageBox.getString() ;. Catch (Throwable t) {. Catch (IOException ioe) {. System.out.println(“Closing connection caught: “);. March 3, 2009 at 2:00 pm.
carmiemendoza.wordpress.com
Writing J2ME Application in Linux | The Explosive One
https://carmiemendoza.wordpress.com/2008/04/30/writing-j2me-application-in-linux
Writing J2ME Application in Linux. April 30, 2008 at 2:23 am ( Mobile. If you’re going to create a mobile game application better use j2me. But if you’re mobile application runs in a background better used symbian c . Quick Start for setting up your workspace. 1 Install eclipse in synaptic manager for your IDE. Why choose eclipse? Simple and easy to use. 3 Install JDK Sun Java Standard Edition (SE) Downloads. 4 After setting up all the installers, you can now create a simple Hello World. MMainForm.ad...