easy
Add the following css lines to your CSS theme, possibly at the end div::before { content:” C:” attr(class) “” } *::before,*::after { color:red; font-weight:100; font-size:1.0em } and div classes will showup easily. Very handly while customizing WoooordPress :) This page show a demo.
Rebar poor proxy git fixer
Sometimes you are behind a http proxy, and the git:// protocol is not accessible. For instance on erlang rebar, all developers prefer the git:// protocol when listing dependency. But how to fix it if you are behind a http proxy? Ask help to git… [bash] git config –global url.https://github.com/.insteadOf git://github.com/ [/bash] Credits: http://erlang.org/pipermail/erlang-questions/2014-March/078402.html
Simple Nice Chart in Flash
http://teethgrinder.co.uk/open-flash-chart-2/
Php Server Distribution for windows – XAMPP
XAMPP is a very easy to install Apache Distribution for Linux, Solaris, Windows and Mac OS X. The package includes the Apache web server, MySQL, PHP, Perl, a FTP server and phpMyAdmin.
Asus EEE-PC better then Mac Air?
Finally I managed to buy a Asus EEE PC 700 this week. I would thanks a lot Next Store and its kindly clerks, which I will prefer in future to Mediaword :)If you are at Milan and you plan to buy it, Next Store is a good choice. There are a lot of sites and …
iPhone programming
iPhone Open Application Development
By Jonathan A. Zdziarski
First Edition March 2008
Pages: 280
ISBN 10: 0-596-51855-2 | ISBN 13: 9780596518554
Javascript and Smalltalk
There is a future for SmallTalk? I was a very strong fan of the SmallTalk language, but in the last five years I have seen more and more contraction of its usage in the IT field. The OLPC project, which uses also Squeak Smalltalk and its done by the core team fo Squeak, is not …
Dynamic languages troubles
I have read http://www.manageability.org/blog/stuff/chandler-failure and I think it is very danger way of exposing concepts.
In the article pointed out, the quite dead Chandler project is compared to the multi-billion Eclipse project. And then a too easy analysis is done against dynamic languages, where Java is the absolute winner.
I will try to fix some of the things said there, and to add also my two cents here :)
pyparsing review
Review of "Getting Started with Pyparsing", Copyright © 2008 O'Reilly Media, Inc.
ISBN: 9780596514235
Released: October 4, 2007
Will Zend slash rubyonrails?
Let the Zend Framework introduce itself as a Borg would do: "Hi dear RubyOnRails. Hi all. I am the Zend Framework, a small work (about 5 tons of code) done by IBM and Zend to destroy you. You think php is not able to build big project?… do you? So you have dared to develop …
oracle mass table drop
Sometimes I need to build a small script to delete a huge set of tables of a schema. In Oracle is easy to do it, using the meta tables "all_tables", "all_views", and "all_sequences": select 'drop table ' || table_name || ' cascade constraints;' from all_tables where owner='protoss' and table_name not like 'BIN%';select 'drop view …
Blue Dragon Revision 2
Hi dear spammers, I am an announce. I love you so much I have decided to auto delete spam comments not already published. As you know, dear spammers, the anti spam on this site (called Blue Dragon) is able to shutup your nasty posts. Now blue dragon can also delete them from our big database, …
Site Update: Happy new editor!
(First published on 2007-01-20) Hi all, ObjectsRoot now has correct story ordering ontags view! I am happy to announce I have just installed tinymce on my site. TinyMCE is a very nice javascript editor, also used in Drupal. What makes tinymce very nice in my humble own opinion, is its easy installation. You do not need …
humble ajax
I think ajax is a very new technology, but with too much hype on it. I think we’d try to do simple things with it, avoiding too much bloated interfaces. I have found a good ibm article with shows “In-place editing” avery easy way to get a more responsible site. Finally the same article points …