Here.
Related Posts
Android: Changing TextView alpha transparency across different target SDKs
Sometimes you may need to make a TextView (label) look a little transparent to make emphasis on other parts of your UI. The .setAlpha() function on TextView is not supported after later in the SDK. Here’s a static workaround you can place on some sort of UIUtils class you may have in your project. [java] […]
How to obtain the coordinates of the JTable cell a mouse is hovering over, useful for tooltips within cell renderers.
public String getToolTipText(MouseEvent event) { /* * This is a Java Swing lesson on how to obtain the coordinates of the current cell * as you hover with the mouse on a JTable. * * You cannot use the renderer component, since it seems that once the table is done * stamping the cells with […]
Ubuntu: mongodb won’t start [FIXED]
So you decided to change the default location of your mongodb data path on mongodb.conf but mongo won’t start and you get an error similar to this [bash] Wed May 23 04:17:35 [initandlisten] MongoDB starting : pid=1214 port=27017 dbpath=/media/ebs/data 64-bit host=domU-12-31-38-00-78-DB Wed May 23 04:17:35 [initandlisten] db version v2.0.4, pdfile version 4.5 Wed May 23 […]