I just start on ubuntu machine as I walked in to WSO2. So Here I will write some simple basic ubuntu teminal commands codes that I am using and some of work I did to ubuntu to my stlye.Maximize, Minimize and CloseI have the habit of using Maximize, Minimize and Close buttons in Right Corner, so I have to change ...
I think it is important to know how how with Putty, truly it is not big work, But know is important. There fore I am write this. I am in windows 7 machine and my remote server is linux server so I have to transfer my files to it. Passing a file to server by pscp C:/wamp/www/offlineAPI5.1/OfflineAPI5.5-readingImages.zip sh@192.248.15.237:/home/shalika/localStorage/version5.1
MPJ Express is a message passing library that be can be used by the application developers to develop and execute parallel Java applications on compute clusters or network of computers.MPJ Express can be configured in two ways: Multicore Configuration: This configuration is used by developers who want to execute their parallel Java applications on multicore or shared memory machines (laptops ...
In our server REST web services return XML (eXtensible Markup Language). XML Maybe it is a little hard to understand, but XML does not DO anything. XML was created to structure, store, and transport information. So Here we also getting XML from our web services. Here is example that I am getting when I request my inbox from our REST ...
The Common Language Runtime (CLR - virtual machine for .NET) and the Java Virtual Machine (JVM) share similar architectures, but there are lots of differences. Both the CLR and the JVM manage an internal heap of memory that is used for allocations. Both VMs's heap are allocate memory from the operating system. The JVM places a fixed upper limit on ...
I want to read such xml <DBMAIL> <Function>FolderList</Function> <Status>Sucess</Status> <FolderList> <folder>INBOX</folder> <folder>SENT</folder> <folder>OUTBOX</folder> <folder>TRASH</folder> </FolderList> <Untagged>Recent Flag List</Untagged> </DBMAIL> here is the Javascripte that I used for it function readFolders(){ if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari xmlh
All the hardcore Objective-C developers have been having a hard time writing apps for the iPhone. I too read a tutorial or two about developing for the iPhone, but its C—or a form of it—and it’s really hard to learn. But I now i was doing HTML5 offline project so I was thinking make web app for my iPOd. it ...
Recently, I needed to generate some xml for a rails 2.3 app. What was supposed to be a fast and easy, turned out to take much longer than expected. After all, rails already provides respond_to do |format| format.html # index.html.erb format.xml { render :xml => @emails } end It is return some this <emails type="array"> <email> <created-at ...
Here I am write post where I was stuck in my project for 1/2 hour, I want to connect WEBrick server REST web service and Apache Web server XMLHttpRequest to REST. Normally it is easy but When I call this I got error xmlhttp.open("GET","http://localhost:3000/emails/1.xml",false); //”http://localhost:3000/emails/1.xml” is REST server XML and it is called my “http://localhost:8081/DOM/test2.html”
last post I wrote simple work on customizing rails routes now we will play more. It is easy and fun and more use full this my main page and url is http://localhost:3000/mailheaders it is not cool URL for main page so how to change it.
Today I was working on rest web services and I was need some custom routes definition. my project is rails project http://localhost:3000/message/givesentmessage?to=aaa
Here is Storage interface and below I am doing this particle in browser console interface Storage { readonly attribute unsigned long length; DOMString key(in unsigned long index); getter any getItem(in DOMString key); setter creator void setItem(in DOMString key, in any value); deleter void removeItem(in DOMString key); void clear();}; Each Storage object is associated with a list of key/value pairs when ...
HTML5 localStorage is a client-side key-value database, meaning it is stored in the users browser. This means the users data is saved on their machine inside their browser. This also means that their data is only available to them when on that machine and in that browser. Remember that localStorage is per browser not per computer. let try it out. ...
In the DOM, everything is a node. Element nodes do not have a text value. The text of an element node is stored in a child node. This node is called a text node. Change the Value of a Text Node eg: to=xmlDoc.getElementsByTagName("to")[0].childNodes[0]; to.nodeValue=madhuka@gmail.com;
Here i will write on how to get the Value of an Element in XML DOM. The getElementsByTagName() method returns a node list containing all elements with the specified tag name. eg: xmlDoc.getElementsByTagName("emails")[0]; here is chrome console screen shoot of that
The DOM defines a standard by W3C (World Wide Web Consortium) for accessing documents like HTML and XML A DOM (Document Object Model) defines a standard way for accessing and manipulating documents. The XML DOM views an XML document as a tree-structure and all elements can be accessed through the DOM tree. Their content and attributes. The HTML DOM defines ...
I need XMLHttpRequest work for my project, so I think it also has value to be post on blog. therefore I am writing this post on it. I will give example on them also. First I will talk about some HTTPRequest and its issues . The problem in HTTPRequest is that with each HTTP connection, a new page is reloaded. ...
Thunderbolt is a revolutionary I/O technology that supports high-resolution displays and high-performance data devices through a single, compact port. Thunderbolt began at Intel Labs with a simple concept.It gives you access to a world of high-resolution displays and high-speed peripherals with one compact port. That’s because Thunderbolt is based on two fundamental technologies: PCI Express and DisplayPort. Thunderbolt also provides ...
Today I will point out Client side storage feature. There are several reasons to use client-side storage. We can make our app work when the user is offline, possibly sync'ing It make app to performance booster (instead of waiting for it to download again) It is easier programming model, with no server infrastructure required The technologies for local storages are: ...
I need the “debugging menu” of web browsers so I was need in safari, 1. Go to dir where you have install safari in you PC (Windows 7) eg: D:\Program Files\Utilities\Safari 2. Then in that dir you have to type Safari.exe executable: /enableInternalDebugMenu