giovedì 17 dicembre 2009

From word to html

ottimo link per trasformare da word ad html, con diverse opzioni, l'ho provato e funziona!
http://word2cleanhtml.com

giovedì 3 dicembre 2009

YouTube - Assalti Frontali - "IL RAP DI ENEA" videoclip - 2009

as long as i really love dis chune, i decided to share it with you :) (who?)!

YouTube
- Assalti Frontali - "IL RAP DI ENEA" videoclip - 2009

filtrare con maven solo alcuni tipi di file per evitare errori nei file immagini

Quì trovate le informazioni sul filtering maven:

http://maven.apache.org/plugins/maven-resources-plugin/examples/filter.html

In particolare guardare sotto il titoletto "Warning"

ubun-student

Ubun-student is an Ubuntu enhancement application. It can install/remove applications which do not provide Debian packages at all. It can change system settings. Moreover, it explains secret tricks behind enhancement.

http://tdt.sjtu.edu.cn/ubun-student/

mercoledì 2 dicembre 2009

This client is too old to work with working copy

ever seen this beautiful message?

svn: This client is too old to work with working copy '.'. You need
to get a newer Subversion client, or to downgrade this working copy.
See http://subversion.tigris.org/faq.html#working-copy-format-change
for details.


very short solution :

download that piece of code, then on a console run

python change-svn-wc-format.py /projectfoldertodowngrade/ --force --verbose 1.5 (if 1.5 is the version you wish to downgrade to).

Two Bits

free book on free software
Two Bits
The Cultural Significance of Free Software

martedì 24 novembre 2009

Make Eclispe work on Ubuntu 9.10

Run eclipse with the following option:
> GDK_NATIVE_WINDOWS=1 eclipse
Eclispe uses some deprecated API that are no longer supported on the new GTK version.
This option set GTK in compatibility mode.

giovedì 19 novembre 2009

Google Chrome Shortcuts

Google Chrome shortcuts listed at link can help save you time.

Google's "Go" language

Google today announced a new language called "Go" (see http://golang.org).It's what I would call a "mashup" language. It takes parts of C (compiled, pointers, functional language), C++ (strongly typed, Interfaces, but no classes), Java (garbage collection, reflection, memory models), and focuses on lightening fast compilation. It does add its own unique features, such as goroutines, which make concurrent programming easy.

From Google's documentation, it appears that they're targeting the C++ community with Go (see http://golang.org/doc/go_for_cpp_programmers.html). To get a quick introduction, check out the video

Also, check out Google's open source blog for ongoing discussions.

Happy coding!

via http://dobbscodetalk.com


mercoledì 4 novembre 2009

Where the stdout and the stderr have been redirected in the tomcat debian package installation?

Easy! On the syslog (/var/log/syslog). This made me crazy for a while. Actually because I've never took the time to look at the obvious thing: /etc/init.d/tomcat6.

Look at these lines:

$DAEMON -user "$TOMCAT6_USER" -cp "$JSVC_CLASSPATH" \
-outfile SYSLOG -errfile SYSLOG \
-pidfile "$CATALINA_PID" $JAVA_OPTS "$BOOTSTRAP_CLASS"

Is the reason explained here correct?
Any other reference?