Tuesday, December 31, 2013
Monday, December 23, 2013
Friday, December 13, 2013
Wednesday, November 27, 2013
Tuesday, November 26, 2013
Thursday, November 21, 2013
Sirius
Sirius is an Eclipse project which allows you to easily create your own graphical modeling workbench by leveraging the Eclipse Modeling technologies, including EMF and GMF.
Wednesday, November 20, 2013
Monday, November 18, 2013
Authenticating with Active Directory
http://www.javaxt.com/Tutorials/Windows/How_to_Authenticate_Users_with_Active_Directory
http://www.developerscrappad.com/963/java/jndi/java-jndi-ldap-windows-active-directory-authentication-organizational-unit-group-and-other-information-access/
http://www.programming-free.com/2012/09/query-active-directory-from-java-using.html
http://www.developerscrappad.com/963/java/jndi/java-jndi-ldap-windows-active-directory-authentication-organizational-unit-group-and-other-information-access/
http://www.programming-free.com/2012/09/query-active-directory-from-java-using.html
Labels:
active directory,
authentication,
java,
windows
Friday, November 15, 2013
Monday, November 11, 2013
Thursday, November 7, 2013
Thursday, October 31, 2013
Tuesday, October 29, 2013
Monday, October 28, 2013
Sunday, October 27, 2013
Thursday, October 24, 2013
Web Design
http://dribbble.com/shots/1254323-Gamecenter-Pack
http://tympanus.net/Development/ModalWindowEffects/
http://www.ericwenn.se/frameworks/flatmin/calendar/
http://m.elgendy.me/downloads/flatic-userinterface-kit/#.Umm8ivlmi-1
http://codepen.io/bennettfeely/details/twbyA
Source:
http://www.webdesignerdepot.com/2013/10/50-awesome-freebies-for-web-designers-october-2013/
Monday, October 21, 2013
Friday, October 18, 2013
Wednesday, October 16, 2013
Wednesday, October 9, 2013
JDBC Performance Tuning
http://www.precisejava.com/javaperf/j2ee/JDBC.htm
http://docs.oracle.com/cd/E11035_01/wls100/jdbc/performance.html
http://docs.oracle.com/javase/6/docs/api/index.html?java/sql/DriverManager.html
Connection Pooling (Tomcat)
http://tomcat.apache.org/tomcat-6.0-doc/jndi-datasource-examples-howto.html
http://people.apache.org/~fhanik/jdbc-pool/jdbc-pool.html
http://docs.oracle.com/cd/E11035_01/wls100/jdbc/performance.html
http://docs.oracle.com/javase/6/docs/api/index.html?java/sql/DriverManager.html
Connection Pooling (Tomcat)
http://tomcat.apache.org/tomcat-6.0-doc/jndi-datasource-examples-howto.html
http://people.apache.org/~fhanik/jdbc-pool/jdbc-pool.html
Labels:
connection pooling,
database,
jdbc,
oracle,
sql
Friday, October 4, 2013
Thursday, September 26, 2013
Sunday, September 22, 2013
Wednesday, September 18, 2013
Graph Visual LIbrary
Saturday, September 14, 2013
Thursday, September 12, 2013
Tuesday, September 10, 2013
jaret : java swing timeline
http://jaret.de/
JFace is included in your/plugins directory. In Helios SR2, it's org.eclipse.jface_3.6.2.M20110210-1200.jar.
https://kenai.com/projects/trident/pages/Home
JFace is included in your
Monday, September 9, 2013
Sunday, September 8, 2013
Friday, September 6, 2013
Thursday, September 5, 2013
Tuesday, September 3, 2013
Monday, September 2, 2013
Friday, August 30, 2013
Typography tutorial
http://www.creativebloq.com/graphic-design-tips/typography-tutorials-1232719
http://www.linotypefilm.com/
http://typedia.com/learn/only/anatomy-of-a-typeface/
http://www.typeissexy.com/
http://bonfx.com/the-big-book-of-font-combinations/?cmp=39
http://www.linotypefilm.com/
http://typedia.com/learn/only/anatomy-of-a-typeface/
http://www.typeissexy.com/
http://bonfx.com/the-big-book-of-font-combinations/?cmp=39
JSpinner
http://stackoverflow.com/questions/16632104/jspinner-with-display-format-numbers-only-and-manual-edit
http://www.jroller.com/dpmihai/entry/documentfilter
To access the buttons:
jSpinner1.setUI(new MyUI());
class MyUI extends javax.swing.plaf.basic.BasicSpinnerUI {
protected Component createNextButton() {
JButton btnUp = (JButton) super.createNextButton();
btnUp.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ae) {
System.out.println("Going up");
}
});
return btnUp;
}
protected Component createPreviousButton() {
JButton btnDown = (JButton) super.createPreviousButton();
btnDown.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ae) {
System.out.println("Going down");
}
});
return btnDown;
}
}
http://www.jroller.com/dpmihai/entry/documentfilter
To access the buttons:
jSpinner1.setUI(new MyUI());
class MyUI extends javax.swing.plaf.basic.BasicSpinnerUI {
protected Component createNextButton() {
JButton btnUp = (JButton) super.createNextButton();
btnUp.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ae) {
System.out.println("Going up");
}
});
return btnUp;
}
protected Component createPreviousButton() {
JButton btnDown = (JButton) super.createPreviousButton();
btnDown.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ae) {
System.out.println("Going down");
}
});
return btnDown;
}
}
Wednesday, August 28, 2013
Admin Tools
http://processhacker.sourceforge.net/
http://www.adminer.org/
http://postfixadmin.sourceforge.net/
http://www.ntop.org/products/ntop/
http://www.ispconfig.org/
http://stahlworks.com/dev/swiss-file-knife.html
http://www.artica.fr/
http://racktables.org/
http://www.rsnapshot.org/
http://isp-control.net/
http://unetbootin.sourceforge.net/
Extracted from
http://www.networkworld.com/slideshow/89893/killer-open-source-admin-tools.html
Monday, August 26, 2013
Thursday, August 22, 2013
java.sql.SQLException: ORA-01000: maximum open cursors exceeded
Could you run the sql command to determine the number of
open_cursors set by default:
show PARAMETER cursors;
If the value for open_cursors is 300, please run this following sql command to set it to a higher value:
ALTER SYSTEM SET open_cursors =800;
Run this sql command again to see if the change was made:
show PARAMETER cursors;
show PARAMETER cursors;
If the value for open_cursors is 300, please run this following sql command to set it to a higher value:
ALTER SYSTEM SET open_cursors =800;
Run this sql command again to see if the change was made:
show PARAMETER cursors;
Responsive Web Design
Media Queries (http://www.w3.org/TR/css3-mediaqueries/)
http://mobile.smashingmagazine.com/2010/07/19/how-to-use-css3-media-queries-to-create-a-mobile-version-of-your-website/
http://alistapart.com/article/responsive-web-design
http://hicksdesign.co.uk/journal/finally-a-fluid-hicksdesign
http://colly.com/
http://edmerritt.com/
http://mobile.smashingmagazine.com/2010/07/19/how-to-use-css3-media-queries-to-create-a-mobile-version-of-your-website/
http://alistapart.com/article/responsive-web-design
http://hicksdesign.co.uk/journal/finally-a-fluid-hicksdesign
http://colly.com/
http://edmerritt.com/
Labels:
media queries,
responsive web design,
web design
Wednesday, August 21, 2013
SQL
From http://www.techonthenet.com/sql/tables/create_table2.php
CREATE TABLE new_table AS (SELECT * FROM old_table WHERE 1=2);
CREATE TABLE new_table AS (SELECT * FROM old_table WHERE 1=2);
Monday, August 19, 2013
Tuesday, August 13, 2013
Penetration Testing Standard Organization
http://www.pentest-standard.org/
Labels:
organization,
penetration testing,
pentest-standard
Friday, August 9, 2013
Thursday, August 8, 2013
Wednesday, August 7, 2013
Securing REST
http://www.thebuzzmedia.com/designing-a-secure-rest-api-without-oauth-authentication/
http://aws.amazon.com/articles/1928
http://oauth.net/core/1.0a/
http://oauth.net/code/
http://hueniverse.com/oauth/
http://hueniverse.com/oauth/guide/authentication/
http://en.wikipedia.org/wiki/HMAC
http://tools.ietf.org/html/rfc5849#section-3.1
https://github.com/fernandezpablo85/scribe-java
https://www.owasp.org/index.php/REST_Security_Cheat_Sheet
https://jersey.java.net/
http://aws.amazon.com/articles/1928
http://oauth.net/core/1.0a/
http://oauth.net/code/
http://hueniverse.com/oauth/
http://hueniverse.com/oauth/guide/authentication/
http://en.wikipedia.org/wiki/HMAC
http://tools.ietf.org/html/rfc5849#section-3.1
https://github.com/fernandezpablo85/scribe-java
https://www.owasp.org/index.php/REST_Security_Cheat_Sheet
https://jersey.java.net/
Tuesday, August 6, 2013
Thursday, August 1, 2013
Wednesday, July 31, 2013
Mobile Dev Tools
Source
http://www.infoworld.com/slideshow/113034/10-cutting-edge-mobile-development-tools-223766
https://prototyper.appgyver.com/welcome
https://www.firebase.com/index.html
http://software.intel.com/en-us/html5
http://appscend.com/
https://www.parse.com/
http://eclipsesource.com/blogs/
http://www.coronalabs.com/
http://www.infoworld.com/slideshow/113034/10-cutting-edge-mobile-development-tools-223766
https://prototyper.appgyver.com/welcome
https://www.firebase.com/index.html
http://software.intel.com/en-us/html5
http://appscend.com/
https://www.parse.com/
http://eclipsesource.com/blogs/
http://www.coronalabs.com/
Wednesday, July 24, 2013
Monday, July 22, 2013
Saturday, July 20, 2013
Thursday, July 18, 2013
Wednesday, July 17, 2013
Listbox for JSP/Servlet
In servlet, use
HttpServletRequest#getParameterValues()
http://stackoverflow.com/questions/4184299/how-to-pass-the-value-of-listbox-from-jsp-to-servlet
http://stackoverflow.com/questions/2407945/how-to-get-multiple-selected-values-from-select-box-in-jsp
E.g. in javascript
var x = document.getElementById("user_list");
for (var i = 0; i < x.options.length; i++) {
if(x.options[i].selected ==true){
alert(i + ": " + x.options[i].selected + ": " + x.options[i].value + ": " + x.options[i].text);
}
}
Tuesday, July 16, 2013
Monday, July 15, 2013
Thursday, July 11, 2013
Wednesday, July 10, 2013
Producing UTF-8 XML file
http://stackoverflow.com/questions/443305/producing-valid-xml-with-java-and-utf-8-encoding
Use FileOutputStream instead of FileWriter
Use FileOutputStream instead of FileWriter
Scroll to there
jPanel1 is in the scrollpane
jTextField1 is in jPanel1
jPanel1.scrollRectToVisible(jTextField1.getBounds());
http://stackoverflow.com/questions/7883422/how-do-i-scroll-jscrollpane-viewport-containing-a-jpanel-to-a-specific-location
jTextField1 is in jPanel1
jPanel1.scrollRectToVisible(jTextField1.getBounds());
http://stackoverflow.com/questions/7883422/how-do-i-scroll-jscrollpane-viewport-containing-a-jpanel-to-a-specific-location
Tuesday, July 9, 2013
Monday, July 1, 2013
SQL: Sequence
http://stackoverflow.com/questions/10210273/how-to-retrieve-the-current-value-of-an-oracle-sequence-without-increment-it
JavaFX: Open Source Nautical Software
https://github.com/terre-virtuelle/navisu
http://blog.navisu.org/?lang=en
Websocket JEE 7
http://apex.oracle.com/pls/apex/f?p=44785:24:0::::P24_CONTENT_ID,P24_PREV_PAGE:7699,1
Swing Validation
https://kenai.com/projects/simplevalidation/pages/Home
Labels:
java,
simple validation api,
swing,
validation,
validation framework
Sunday, June 30, 2013
SQL: Insert a degree character
alt+248 or alt+0186 for typing the symbol
https://forums.oracle.com/thread/635893
Wednesday, June 26, 2013
Memory Limit for Windows OS
http://msdn.microsoft.com/en-us/library/windows/desktop/aa366778(v=vs.85).aspx
Labels:
memory,
memory limit,
operating system,
OS,
ram,
windows
MIME type for Microsoft Office documents
http://technet.microsoft.com/en-us/library/ee309278%28office.12%29.aspx
Tuesday, June 25, 2013
Excel file from Servlet
http://www.java-forums.org/blogs/servlet/668-how-write-servlet-sends-file-user-download.html
http://www.mkyong.com/servlet/servlet-code-to-download-text-file-from-website-java/
http://stackoverflow.com/questions/1442893/implementing-a-simple-file-download-servlet
http://todayguesswhat.blogspot.sg/2012/07/file-download-java-servlet-example-2gb.html
http://stackoverflow.com/questions/11226603/create-an-excel-file-for-users-to-download-using-apache-poi-jsp
http://nomanabbasi.wordpress.com/2011/09/13/jexcel-create-excel-file-using-outputstream/
http://www.roseindia.net/jsp/poi/Createexcel.shtml
http://stackoverflow.com/questions/4112686/how-to-use-servlets-and-ajax
http://stackoverflow.com/questions/1900711/handling-servlet-output-in-ajax
http://courses.coreservlets.com/Course-Materials/ajax-basics.html
Sunday, June 23, 2013
Friday, June 21, 2013
Swing validation
http://www.java2s.com/Code/Java/Swing-Components/ValidatingPresentationModelExample.htm
http://jnb.ociweb.com/jnb/jnbJul2007.html
Thursday, June 20, 2013
ORA-01000: maximum open cursors exceeded
http://neeraj-dba.blogspot.sg/2011/10/ora-01000-maximum-open-cursors-exceeded.html
http://chenguangblog.wordpress.com/2011/03/07/analysis-of-ora-01000-maximum-open-cursors-exceeded/
http://www.dba-oracle.com/sf_ora_01000_maximum_open_cursors_exceeded.htm
Monday, June 17, 2013
Transfer Contacts: iPhone to Android
http://www.androidauthority.com/transferring-contacts-between-iphones-and-android-phones-37928/
Thursday, June 13, 2013
Wednesday, June 12, 2013
Learn like a child
SIMULTANEOUS LOCALISATION AND MAPPING AT THE LEVEL OF OBJECTS
http://www.doc.ic.ac.uk/~rfs09/slampp.html
Saturday, June 8, 2013
Java Enterprise Design Patterns
http://www.mindspring.com/~mgrand/pattern_synopses3.htm#Mailbox
Labels:
design patterns,
enterprise,
enterprise design patterns,
java
Friday, June 7, 2013
HTML to Excel (Formatting cells)
http://niallodoherty.com/post.cfm/basic-html-to-excel-formatting
http://www.agoric.com/sources/software/htmltoExcel
http://stackoverflow.com/questions/4619909/format-html-table-cell-so-that-excel-formats-as-text
Labels:
cell format,
date,
excel,
format,
html,
html to excel,
microsoft
Saturday, June 1, 2013
XQuery Design Patterns
http://www.balisage.net/Proceedings/vol5/html/Candillon01/BalisageVol5-Candillon01.html
http://docs.marklogic.com/guide/cpf/modules
http://www.slideshare.net/wcandillon/xquery-rocks
http://www.xquery.com/tutorials/xqj_tutorial/
http://www.zorba-xquery.com/
Labels:
design patterns,
java,
xquery,
xquery processor,
zorba
Wednesday, May 29, 2013
Handling large XML Files
http://java.dzone.com/articles/conveniently-processing-large
https://github.com/andyHa/scireumOpen/tree/master/src/com/scireum/open/xml
http://www.javacodegeeks.com/2012/05/xml-unmarshalling-benchmark-jaxb-vs.html
http://thejavamonkey.blogspot.sg/2008/10/processing-large-xml-documents-with-x.html
http://www.xml-benchmark.org/downloads.html
https://github.com/andyHa/scireumOpen/tree/master/src/com/scireum/open/xml
http://www.javacodegeeks.com/2012/05/xml-unmarshalling-benchmark-jaxb-vs.html
http://thejavamonkey.blogspot.sg/2008/10/processing-large-xml-documents-with-x.html
http://www.xml-benchmark.org/downloads.html
Monday, May 27, 2013
Wednesday, May 15, 2013
Extra readings on JVM
http://www.javaworld.com/javaworld/jw-08-2012/120821-jvm-performance-optimization-overview.html?source=IFWNLE_jw_2012-08-21
http://www.javaworld.com/community/?q=node/8437&source=IFWNLE_jw_2012-08-21
http://www.javaworld.com/javaworld/jw-08-2012/120816-oracle-has-been-good-for-java.html?source=IFWNLE_jw_2012-08-21
http://www.javaworld.com/javaworld/jw-08-2012/120810-influence-not-control-in-open-source.html?source=IFWNLE_jw_2012-08-21
http://www.nytimes.com/2012/08/22/business/a-test-of-smart-cars-gets-under-way.html?_r=1
http://www.networkworld.com/news/2012/082012-wearable-computers-261509.html?t51hb
http://www.newscientist.com/article/mg21528774.900-augmented-reality-kitchens-keep-novice-chefs-on-track.html
http://tech.fortune.cnn.com/2012/08/20/the-big-apples-big-data-advantage/
Tuesday, May 14, 2013
Thursday, May 9, 2013
Apache Ant in java
Parsing build.xml in Java
http://www.srccodes.com/p/article/9/Invoke-and-Execute-Hello-World-Ant-Script-Programmatically-using-Java-Code
http://ant.apache.org/manual/projecthelper.html
http://stackoverflow.com/questions/830541/how-to-parse-and-interpret-ants-build-xml
Copy Directory
http://ant.apache.org/manual/Tasks/copydir.html
Running ant in java (http://ant.apache.org/manual/running.html)
http://www.ibm.com/developerworks/websphere/library/techarticles/0502_gawor/0502_gawor.htmljava -Dant.home=c:\ant org.apache.tools.ant.launch.Launcher [options] [target]
http://thilosdevblog.wordpress.com/2010/08/30/calling-an-ant-target-via-java/
http://stackoverflow.com/questions/10035188/running-ant-programmatically-through-java
Sunday, May 5, 2013
Thursday, May 2, 2013
Tuesday, April 30, 2013
NB Platform custom conf
https://blogs.oracle.com/geertjan/entry/support_for_custom_configuration_files
In project.properties file, use :
In project.properties file, use :
app.conf=nbproject/my.conf
Wednesday, April 17, 2013
Swing: modify table cell on tab
Override this method in JTable (Source: https://forums.oracle.com/forums/thread.jspa?threadID=1353305)
@Override
public void changeSelection(
int row, int column, boolean toggle, boolean extend) {
super.changeSelection(row, column, toggle, extend);
// Place cell in edit mode when it 'gains focus'
if (editCellAt(row, column)) {
Component editor = getEditorComponent();
editor.requestFocusInWindow();
((JFormattedTextField)editor).selectAll();
}
}
Ref
http://stackoverflow.com/questions/14206083/jtable-edit-on-keypress
http://stackoverflow.com/questions/9091208/jtable-enter-key/9095442#9095442
http://www.java2s.com/Tutorial/Java/0260__Swing-Event/MaketheENTERkeyactliketheTABkey.htm
http://www.java2s.com/Tutorial/Java/0260__Swing-Event/SettingFocusTraversalKeysinaComponent.htm
http://www.java2s.com/Tutorial/Java/0260__Swing-Event/KeyListenerandKeyEvent.htm
Thursday, April 11, 2013
Thursday, April 4, 2013
Thursday, March 28, 2013
Problem with Windows Task Scheduler
http://social.technet.microsoft.com/Forums/en-US/winservergen/thread/29a37921-3e27-4c88-b387-3dd394302298/
http://msdn.microsoft.com/en-us/library/windows/desktop/aa383614(v=vs.85).aspx
http://support.microsoft.com/kb/2461249
http://social.technet.microsoft.com/Forums/en-US/winservergen/thread/6b6453e7-acbc-451c-b821-96980ac597e9/
http://msdn.microsoft.com/en-us/library/windows/desktop/aa383614(v=vs.85).aspx
http://support.microsoft.com/kb/2461249
http://social.technet.microsoft.com/Forums/en-US/winservergen/thread/6b6453e7-acbc-451c-b821-96980ac597e9/
Wednesday, March 27, 2013
Java in iOS
http://www.javaworld.com/javaworld/jw-03-2013/130327-open-source-java-iphone-tools-compared.html?source=IFWNLE_nlt_jw_2013-03-26
Friday, March 22, 2013
AWS AMI Setup
http://www.excelsior-usa.com/articles/tomcat-amazon-ec2-basic.html
http://coenraets.org/blog/2011/11/set-up-an-amazon-ec2-instance-with-tomcat-and-mysql-5-minutes-tutorial/
http://blog.halcyon-solutions.com/2011/01/minimalist-no-6-deploy-your-tomcat.html (tomcat location: /var/lib/tomcat/)
sudo chmod -R 777 /var/lib/tomcat6/webapps
http://www.javacodegeeks.com/2012/05/complete-guide-to-deploy-java-web.html
http://www.cyberciti.biz/faq/mysql-change-root-password/ (IMPORTANT!!! flush privileges)
http://dev.mysql.com/doc/refman/5.0/en/creating-database.html
http://dev.mysql.com/doc/refman/5.5/en//adding-users.html
http://www.debuntu.org/how-to-create-a-mysql-database-and-set-privileges-to-a-user/
http://coenraets.org/blog/2011/11/set-up-an-amazon-ec2-instance-with-tomcat-and-mysql-5-minutes-tutorial/
http://blog.halcyon-solutions.com/2011/01/minimalist-no-6-deploy-your-tomcat.html (tomcat location: /var/lib/tomcat/)
sudo chmod -R 777 /var/lib/tomcat6/webapps
http://www.javacodegeeks.com/2012/05/complete-guide-to-deploy-java-web.html
http://www.cyberciti.biz/faq/mysql-change-root-password/ (IMPORTANT!!! flush privileges)
http://dev.mysql.com/doc/refman/5.0/en/creating-database.html
http://dev.mysql.com/doc/refman/5.5/en//adding-users.html
http://www.debuntu.org/how-to-create-a-mysql-database-and-set-privileges-to-a-user/
Tuesday, March 19, 2013
Tuesday, March 12, 2013
Thursday, February 28, 2013
Obfusticating DoXA
http://netbeans.dzone.com/obfuscating-netbeans-platform
http://proguard.sourceforge.net/index.html#downloads.html
http://proguard.sourceforge.net/index.html#downloads.html
Build NB Platform App
http://platform.netbeans.org/tutorials/nbm-ant.html
In platform.properties
nbplatform.active=default
nbplatform.active.dir=d:\\EucharistTech\\TestBuild\\DCollabro
harness.dir=${nbplatform.active.dir}/harness
ant clean
ant build
ant run
ant build-zip
Also, to specify jdk, use --jdkhome "C:\Program Files (x86)\Java\jdk1.7.0_15".
Add it to platform.properties in run.args.extra=
Ref:
http://netbeans.dzone.com/netbeans-platform-build-system-1
http://netbeans-org.1045718.n5.nabble.com/How-exactly-does-netbeans-invoke-ant-td3327317.html
http://blogs.kiyut.com/tonny/2008/02/18/netbeans-platform-ant-based-build-system-trick/#.US9GdjDk-So
http://stackoverflow.com/questions/845137/capture-ant-output
http://forums.netbeans.org/ptopic31326.html
Wednesday, February 27, 2013
Monday, February 25, 2013
Thursday, February 21, 2013
User Defined Windows Service
http://support.microsoft.com/kb/137890
http://www.mssqltips.com/sqlservertip/2600/troubleshooting-windows-remote-desktop-connections/
http://www.ehow.com/how_5949640_determine-server-under-remote-desktop_.html
http://www.windowsbbs.com/windows-server-system/74596-keeping-windows-server-logged.html
http://www.mssqltips.com/sqlservertip/2600/troubleshooting-windows-remote-desktop-connections/
http://www.ehow.com/how_5949640_determine-server-under-remote-desktop_.html
http://www.windowsbbs.com/windows-server-system/74596-keeping-windows-server-logged.html
Monday, February 18, 2013
Wednesday, February 13, 2013
Removing McAfee and Norton
http://www.makeuseof.com/tag/completely-remove-norton-mcafee-computer/
http://www.makeuseof.com/tag/ten-best-antivirus-programs/
http://www.makeuseof.com/tag/ten-best-antivirus-programs/
Tuesday, February 12, 2013
Mobile Redirect
https://developers.google.com/webmasters/smartphone-sites/redirects
http://www.seomoz.org/blog/the-real-impact-of-the-google-smartphone-crawler-part-2-generating-mobile-redirects-properly
http://www.mobilemoxie.com/marketing-tools/redirection-script-generator/
Sunday, January 27, 2013
Tuesday, January 22, 2013
Wednesday, January 16, 2013
JFormatterField magic
http://www.ibm.com/developerworks/library/j-mer0625/index.html
http://docs.oracle.com/javase/1.4.2/docs/api/javax/swing/text/NavigationFilter.html
http://docs.oracle.com/javase/1.4.2/docs/api/javax/swing/text/NavigationFilter.html
Monday, January 7, 2013
19 Generations of Computer Programmers
http://www.infoworld.com/d/application-development/developer-divide-19-generations-of-computer-programmers-209971
Subscribe to:
Posts (Atom)