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

Notes Taking (tagging)

http://cintanotes.com/

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;
        }
    }

Thursday, August 8, 2013

UNetbootin

http://sourceforge.net/projects/unetbootin/?source=dlp

Java EditorKit

http://java-sl.com/articles.html

http://java-sl.com/docx_editor_kit.html