Archive for April, 2010
Tuesday, April 27th, 2010
The final application was deployed. You might be wondering what is share source. Well, Share Source is an application that allows developers and quality assurance teams to collaborate on reviewing source codes. Currently, it specifically allows only Java source code to be reviewed. We will add more general programming languages ...
Posted in Java, Misc, Projects | No Comments »
Saturday, April 24th, 2010
I was able to implement Syntax Highlighter for WordPress plugin that is available. Here is the output of the test syntax highlighting code:
ColdFusion
[coldfusion]
<cfset myTestVar = "teseting" />
[/coldfusion]
Sample of Java code highlighting:
[java]
package com.android.helloandroid;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
public class HelloAndroid extends Activity {
/** Called when the activity is first created. */
@Override
...
Posted in Misc | No Comments »