programmatica.blogspot.com
Programmatica: 05/01/2007 - 06/01/2007
http://programmatica.blogspot.com/2007_05_01_archive.html
Programming experience brought to light. Sunday, May 27, 2007. Cream 0.39 beta2 looks good. After a long time I visited cream to check for updates. And i found a new version in beta stage. Its looks good and it has now got more items in settings menu. And more over you have a singe session mode, which turns VIM into a singleton application. And the features of VIM 7.1 make it much more beautiful. Long live VIM and Cream. Posted by Indian Lycan. Links to this post. Subscribe to: Posts (Atom).
programmatica.blogspot.com
Programmatica: 11/01/2007 - 12/01/2007
http://programmatica.blogspot.com/2007_11_01_archive.html
Programming experience brought to light. Monday, November 12, 2007. IE fails to parse script content if its in XHTML shorthand format that is script src="some.js" type="text/javascript" /. But works fine in Firefox and other mozilla based browsers. To fix this one has expand the tag as follows:. Script src="some.js" type="text/javascript". I checked it with IE 6, may be in version 7 it could be working. Posted by Indian Lycan. Links to this post. Sunday, November 04, 2007. GWT and its package names.
programmatica.blogspot.com
Programmatica: 07/01/2007 - 08/01/2007
http://programmatica.blogspot.com/2007_07_01_archive.html
Programming experience brought to light. Wednesday, July 25, 2007. Embedded tomcat without deployment descriptor(web.xml). I just had to write some code for running a single servlet. For testing and wrote this java program which uses Embedded tomcat. The following code doesn't use web. xml. To configure the context. Context configuration is done programmatically. Jar I have added a servlet. And mapped it to the URL. Create an embedded server. Print all log statments. Create a default virtual host.
programmatica.blogspot.com
Programmatica: 10/01/2007 - 11/01/2007
http://programmatica.blogspot.com/2007_10_01_archive.html
Programming experience brought to light. Friday, October 12, 2007. ClassforName("fully.qualified.ClassName").newInstance() in GWT. In Java, when we design something to work generically like loading a plugin Class or something like that, we use the classloader to load some arbitrary class and instantiate it using the Class.newInstance() (Assuming that our Class has a Zero argument constructor) or using the constructors through the Class's getConstructor method. Nameaanand.gwt.client;. The ReflectiveFactor...
programmatica.blogspot.com
Programmatica: Python under Moon light
http://programmatica.blogspot.com/2009/01/python-under-moon-light.html
Programming experience brought to light. Friday, January 30, 2009. Python under Moon light. Post I thought of comparing the performance of python against the lightweight scripting language Lua. So to have a fair comparison I ported the MorseCode encoder/decoder wirtten in python into a Lua script with no change to the logic or the sequence. 1'] = ".- - ", ['0'] = "- - -", ['3'] = ".- ",. 2'] = ".- -", ['5'] = ".", ['4'] = ".-", ['7'] = "- .",. A'] = ".-",. Encodes the value into morse code. Local i = 1.
programmatica.blogspot.com
Programmatica: 03/01/2007 - 04/01/2007
http://programmatica.blogspot.com/2007_03_01_archive.html
Programming experience brought to light. Tuesday, March 13, 2007. ClassLoader and the order of classpath entries. Provides runtime aspectization feature. For this it has a classloader instrumentor which modifies the java.lang.ClassLoader. Which will intercept the call and invoke the interceptor chain. Based on their docs. Java -Xbootclasspath/p: aop boot classpath as described. Djboss.aop.path= path to jboss-aop.xml. Classpath path to your classes com.blah.MyMainClass. Lesson learnt: order of the. Me, My...
programmatica.blogspot.com
Programmatica: 07/01/2008 - 08/01/2008
http://programmatica.blogspot.com/2008_07_01_archive.html
Programming experience brought to light. Sunday, July 13, 2008. This is a simple Numerology calculator written in ruby. Just a pass time program while learning ruby. This will give you the value of the given name and date (date of birth). Numerology.rb your name date month year. Map = {'A' = 1, 'J' = 1, 'I' = 1, 'Y' = 1, 'Q' = 1,. B' = 2, 'K' = 2, 'R' = 2,. S' = 3, 'C' = 3, 'L' = 3, 'G' = 3,. T' = 4, 'D' = 4, 'M' = 4,. E' = 5, 'N' = 5, 'X' = 5, 'H' = 5,. U' = 6, 'V' = 6, 'W'= 6,. Name = name.upcase.
programmatica.blogspot.com
Programmatica: 03/01/2008 - 04/01/2008
http://programmatica.blogspot.com/2008_03_01_archive.html
Programming experience brought to light. Friday, March 28, 2008. Komodo may be the choice now. I have been looking for an open source feature rich IDE for dynamic languages such as Python, ruby and Javascript. Now that ActiveState has released an opensource version of its Komodo, that may be become a primary choice for dynamic languages. Http:/ www.activestate.com/Products/komodo ide/komodo edit.mhtml. No more pydev - a huge junk of java for editing python files. Thanks a lot ActiveState. Me, Myself and I.
programmatica.blogspot.com
Programmatica: 09/01/2008 - 10/01/2008
http://programmatica.blogspot.com/2008_09_01_archive.html
Programming experience brought to light. Saturday, September 27, 2008. Netbeans setting jvmargs for SHIFT-F6. In Netbeans there is an option to run the current file. It works fine until we need the option to set a JVM argument. I hit the same problem and was searching the build xml for target that runs the file and customize it. But accidentally found a property runmain.jvmargs. In project.properties file and set the JVM args that i wanted and it worked. This also works for web projects. Me, Myself and I.
programmatica.blogspot.com
Programmatica: 02/01/2008 - 03/01/2008
http://programmatica.blogspot.com/2008_02_01_archive.html
Programming experience brought to light. Sunday, February 10, 2008. GWT - FlexTable with frozen header. DataGrids displaying a huge set of data with header for each column would be better usable with its header row frozen. Plain HTML tables, with frozen header are very simple to create. Create THEAD and TBODY elements. For TBODY element's style set overflow: auto or scroll;. Set fixed size for the TBODY element. Package name.aanand.magix.client;. Import com.google.gwt.user.client.DOM;. DOMsetInnerText(DO...