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
Friday, August 30, 2013
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
Subscribe to:
Posts (Atom)