I tried to use my blog feed as a sitemap in Google Webmaster Tools, but it Google complains about “Invalid XML: too many tags describing this tags” in several points in the feed.
I found in several places that this due to the format of the feed, a simple change to ATOM will fix it. But I’m using a Wordpress Feedburner plugin to redirect my blog’s feed to the Feedburner one.
I tried to use the delicious online import tool from Evernote and I have to say that I’m not satisfied with it. It’s limited to 1000 tags (that’s due to important performance issues in Evernote when the number of tags is big) and if you don’t import the tags the tag information is lost.
I was expecting that it will add the delicious tags and link notes as body text in the Evernote note but they don’t.
My first try at using CGLib from a Netbeans RCP ended up in a ClassNotFoundException for net.sf.cglib.proxy.Factory
I had two modules, MainModule and cglib and MainModule was depending on cglib. And the following snippet was raising the ClassNotFoundException.
Enhancer enhancer = new Enhancer(); enhancer.setSuperclass(Graph.class); enhancer.setCallback(NoOp.INSTANCE); Graph g = (Graph) enhancer.create(new Class[]{FrameListener.class,InterpreterAbstraction.class},new Object[]{fl,ia}) ; As I later found out from Enhancer documentation and DevFaqClassLoaders it seems that Enhancer it taking the System class loader instead of taking the Module classloader.
I just reported it to netbeans issuezilla issue 169074.
I was trying to use these variables as pointed out by Michal Hlavac in my post about templates. And then I realized that these variables don’t seem to work for Netbeans Plaform Application projects. Instead of the project name and display name they (the template variables, I mean) get replaced by an error message
Expression project.name is undefined on line 10, column 19 in Templates/Licenses/license-gplv3.
I spent some time on GraphBrowser, starting off the project, the first step has been to add basic support for opeining Graphviz DOT files.
There are already some pages on the net talking about how to add open file support for new file types in NetBeans.
File Type Integration Tutorial So there is no need to explain how to do it in a detailed way. The first main step is to invoke New File Type wizard on the module (in my case MainModule) to add the basic files to support the file type.
I decided to start a small project trying to port the GUESS framework into Netbeans RCP.
The plan is to replace the GUESS own graphical library with Netbeans Visual Library stuff and replace the GUESS Python like interpreter with something more along the lines of JSR 223 Scripting for the Java Platform.
For the moment I created the project at kenai.
The SEUR tracking system in amazing in the wrong way.
I got a tracking number from a bike shop that dispatched a bike from spain to sweden.
Ok, so I go to http://www.seur.es (because http://seur.es didn’t work) and put my tracking number there. Nothing, the tracking number is not yet in the system. Disappointment number 1. But this is not the first time I see this, you get a tracking number and it takes a while until you can actually find it in the system so I’m OK.
As clearly stated in Linux SATA RAID FAQ the Conceptronics CSATACOMBO card based on VIA vt6421 chipset is not a Hardware RAID.
The CSATACOMBO is called a “fake raid”, “BIOS RAID” or “BIOS-assisted software RAID” that means that actually a driver at OS level is needed to get the RAID features (see more info about BIOS RAID at novell page).
And that’s why Linux (gparted for example) doesn’t recognize the RAID arrays created with CSATACOMBO because there’s no Linux driver to handle the proprietary BIOS RAID in CSATACOMBO.
I was getting “Python support for SSL and HTTPS is not installed” while trying to use Mercurial on Mac OS X 10.5 Leopard. I upgraded python to 2.5.2
sudo port upgrade python and mercurial too (1.2.1)
sudo port -u upgrade mercurial But that didn’t fix it. I’m glad that I found the solution on Twitter
Just do an
sudo port install py25-socket-ssl
I was fiddling with the Netbeans Visual Library again, trying to show a complex graph on screen and I run into a problem: There were so many connection in the graph that some widgets were hard to read because the ConnectionWidget arrows were printed over them.
So I tried to I try to rearrange the order of my LayerWidgets to paint the LabelWidgets on top of ConnectionWidgets. A call to mainLayer.