askeralim.blogspot.com
Asker Ali M: April 2012
http://askeralim.blogspot.com/2012_04_01_archive.html
Tuesday, April 10, 2012. The 90% : The unpleasant truth: 90 percent Indians are fools by Markandey Katju. The unpleasant truth: 90 per cent of Indians are fools. Someone asked me, “Justice Katju, you say you wish to keep away from controversies, but why is it that controversies keep chasing you? When I said that 90 per cent Indians are fools I spoke an unpleasant truth. The truth is that the minds of 90 per cent Indians are full of casteism, communalism, superstition. Consider the following:. Second, 90 ...
askeralim.blogspot.com
Asker Ali M: May 2012
http://askeralim.blogspot.com/2012_05_01_archive.html
Thursday, May 17, 2012. HowTo Setup VoIP On Your iPhone - SpinVoip using Fring. To Configure Voip Account in Fring do the following steps. Install fring in iPhone. Provide the following details. Username : username@sip.spinvoip.com. Password : Enter Password. Proxy Server : sip.spinvoip.com. It will enable you to setup SpinVoip over Fring or any other Voip. I am getting wonderful clarity on sound with small delays. I fell SpinVoip is an Average Voip providers. Location: Doha, Qatar. How Popular I am.
askeralim.blogspot.com
Asker Ali M: July 2012
http://askeralim.blogspot.com/2012_07_01_archive.html
Sunday, July 29, 2012. Inserting BLOB data through JDBC. How to Insert Blob Data into database using JDBC . String blobData="My Blob Data String."; BigDecimal id= BigDecimal.ONE; String QUERY = "INSERT INTO USER BLOB(ID, BLOB DATA) VALUES(? Connection connection = null; PreparedStatement statement = null; try{ connection = Connections.getDataBaseConnection(); statement =connection.prepareStatement(QUERY); byte[] blobData = blobData.getBytes(); InputStream inputStream = new ByteArrayInputStrea...
askeralim.blogspot.com
Asker Ali M: October 2013
http://askeralim.blogspot.com/2013_10_01_archive.html
Sunday, October 6, 2013. Prolog - XSB Execute Prolog in Command Line and drop result in file. Here I would like to discuss on How to execute a Prolog Expression, and store the result in a file,. Also Execute the prolog Expression through Comand line,. For implementing the Prolog, I have chosen XSB. Once the XSB is installed, I kept the XSB/bin folder in System variables, so that I can execute from command line from any locations. WRITE Operation in Prolog:. Open('RESULT 1380695160492.txt', write, H),.
askeralim.blogspot.com
Asker Ali M: Installing OS in Raspberry Pi
http://askeralim.blogspot.com/2014/06/installing-os-in-raspberry-pi.html
Thursday, June 26, 2014. Installing OS in Raspberry Pi. As a fun project, I just purchased Raspberry Pi from Amazon costing $39. Its look wonderful MicroController to do the All the automation project without having much knowledge in Electronic Circuits and designs, It is all about Software and programming with the documents from website. For OS Installation you can refer to :. Http:/ www.youtube.com/watch? You can download OS NOODLE from following link. Http:/ www.raspberrypi.org/downloads/.
askeralim.blogspot.com
Asker Ali M: April 2013
http://askeralim.blogspot.com/2013_04_01_archive.html
Thursday, April 25, 2013. Scala Cross Compilation Issue with Different Versions - Unknown Scala Classpath Problem. Scala Eclipse Compilation Issue:. Scalatest 2.10-1.9.1.jar is cross-compiled with an incompatible version of Scala (2.10). In case of errorneous report, this check can be disabled in the compiler preference page. I feel The Issue. Is the Eclipse is Using the Library of Scala 2.10, But the eclipse Plugin is compiled of Scala 2.09. I got resolved this issue By Downloading Eclipse Juno.
askeralim.blogspot.com
Asker Ali M: May 2014
http://askeralim.blogspot.com/2014_05_01_archive.html
Thursday, May 15, 2014. How to check whether scrollbar available Using JQuery. In my Example I have a DIV contains some data Table. As the application looks like Excel, I have to check whether the div have horizontal or Vertical Scrollbar present to set the size of other Div. JQuery Code is as folows:. If($('div.dataTableDiv').width() $('#dataTable').width(). Console.log('Horizontal Scrollbar Present');. Console.log('Horizontal Scrollbar NOT Present');. Console.log('Vertical Scrollbar Present');.
askeralim.blogspot.com
Asker Ali M: August 2014
http://askeralim.blogspot.com/2014_08_01_archive.html
Tuesday, August 26, 2014. Drawing a self reference directed edge in graph. I come across a requirement to draw a self-reference edge in my graph on Raphael Graph. The edge from inDirect to Direct is drawn using Bezier curve. For the selef refernce edge as welli used the same Bazier curve,. Here P1 and P4 can be easily calculated as center point of each sides. and P2 and P3 are assumed to be the part of a square,. Hope it will help you draw better graphs and edges using Raphael and Mathematics.
askeralim.blogspot.com
Asker Ali M: ReplaceAll Function in Javascript
http://askeralim.blogspot.com/2013/11/replaceall-function-in-javascript.html
Wednesday, November 6, 2013. ReplaceAll Function in Javascript. Replace All Function in Javascript : Implemented through Recursion. Function replaceAll(word, text, newWord){ var pos = text.search(word); if(pos = -1) return text; var str1 = text.substr(0, pos); var str2 = replaceAll(word, text.substr(pos word.length), newWord); return str1 newWord str2; }. Subscribe to: Post Comments (Atom). How Popular I am. Calicut, Kerala, India. 1ASKER ALI M-The Complete Technology Blog. 2Things That Made Me Laugh.
askeralim.blogspot.com
Asker Ali M: Drawing a self reference directed edge in graph
http://askeralim.blogspot.com/2014/08/drawing-self-reference-directed-edge-in.html
Tuesday, August 26, 2014. Drawing a self reference directed edge in graph. I come across a requirement to draw a self-reference edge in my graph on Raphael Graph. The edge from inDirect to Direct is drawn using Bezier curve. For the selef refernce edge as welli used the same Bazier curve,. Here P1 and P4 can be easily calculated as center point of each sides. and P2 and P3 are assumed to be the part of a square,. Hope it will help you draw better graphs and edges using Raphael and Mathematics.