open-menu closeme
Home
RetroComp icon
Retro Computing Articles Composition Notebooks 8bit
DevOps icon
Automation K8s Done Right
GenAI icon
Fatlama Newsletter Generative AI
Projects icon
Software Projects Arduino Misterio Esp8266 SQLite
Status
Links icon
GitHub LinkedIn
About
github linkedin rss
  • Simple Html debug via CSS

    calendar Oct 21, 2020 · 1 min read
     en knowledgebase  · easy ideas web wordpress
     ·
    Share on: twitter facebook linkedin copy
    Simple Html debug via CSS

    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

    calendar Aug 14, 2014 · 1 min read
     en erlang knowledgebase  · easy erlang fix git
     ·
    Share on: twitter facebook linkedin copy
    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]


    Read More
  • Simple Nice Chart in Flash

    calendar Nov 1, 2010 · 1 min read
     en knowledgebase  · easy
     ·
    Share on: twitter facebook linkedin copy
    Simple Nice Chart in Flash

    http://teethgrinder.co.uk/open-flash-chart-2/

  • Php Server Distribution for windows - XAMPP

    calendar Mar 18, 2010 · 1 min read
     en knowledgebase  · apache easy linux mysql perl php sql web windows
     ·
    Share on: twitter facebook linkedin copy
    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?

    calendar May 7, 2008 · 4 min read
     blog-objectsrootcom en software  · arc build car code commercial development easy file fini freedom funny future games good hacking hard ideas internet italia italy linux news pd performance reader rim search site small system telecom test trouble ubuntu ui vi war web windows world
     ·
    Share on: twitter facebook linkedin copy
    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.


    Read More
  • iPhone programming

    calendar Apr 28, 2008 · 3 min read
     blog-objectsrootcom en  · ant apple bad book books build code developement development easy features good guide ideas interface iphone ipod java linux macosx make nerd news programming small smalltalk table touch trip ui vi war
     ·
    Share on: twitter facebook linkedin copy
    iPhone programming

    iPhone is the brand-new Apple product which has changed the way Apple thinks. Because of iPhone, Apple strip the word "Computers" from its brand name. And because of iPods and iPhone products, Lepoard developmenet slip a bit, blurring the focus on pure technology.
    To be true, I do not beat on  the iPhone success, but the product success is at least  bright this year. And the iPod touch has also added value to the iPods product catalog. But I am an IT-man, damn you boy! So I want to buy it to play with it, to program with it!


    Read More
  • Javascript and Smalltalk

    calendar Feb 15, 2008 · 3 min read
     blog-objectsrootcom en software  · ajax ant build car code development easy features fix future git good hard html http interface java javascript jquery performance ping programming project sage script simple small smalltalk squeak system tip ui usa vi war web
     ·
    Share on: twitter facebook linkedin copy
    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 going very well.


    Read More
  • Dynamic languages troubles

    calendar Jan 30, 2008 · 3 min read
     blog-objectsrootcom en software  · again ant api arc build business car code complex database design easy eclipse example fix hard hosting http ibm import java lion microsoft perl php plugin project projects python ruby simple small smalltalk sql system tools trouble ui unix war web world
     ·
    Share on: twitter facebook linkedin copy
    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.


    Read More
  • pyparsing review

    calendar Jan 16, 2008 · 2 min read
     blog-objectsrootcom en reviews  · ant arc book build code complex easy engine example funny good import lisp perl python script scripting search search-engine simple small table ui vi web
     ·
    Share on: twitter facebook linkedin copy
    pyparsing review

    This is the sad true: parsing is boring. And writing parser is even worst.

    If you can choose a scripting language for parsing you can think to do it in perl.

    For this way, take a big breath and go in the black sea  of perl's funny regexp. They are funny only if you have that special love for the regular expressions.


    Read More
  • Will Zend slash rubyonrails?

    calendar Dec 9, 2007 · 2 min read
     blog-objectsrootcom en  · build code design easy eclipse engine example framework funny http ibm java jug lamp nerd pd pdf perl php project python ruby small system ui web
     ·
    Share on: twitter facebook linkedin copy
    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 RubyOnRails or Perl or Python, thinking you can own the web in your way... Dear nerds you are so funny and young!!" in a lamp of light the borg duplicate itselfs in 100 indians programmers, saying together


    Read More
  • oracle mass table drop

    calendar Jul 3, 2007 · 1 min read
     blog-objectsrootcom en  · build easy oracle postgresql script small sql table ui vi
     ·
    Share on: twitter facebook linkedin copy
    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 ' || view_name || ' ;'
       from all_views where owner='zerg' ;
     
      select  'drop sequence ' || sequence_name || ' ;'
       from all_sequences where sequence_owner='spacemarine' ;

    The "BIN%" table are special temp tables of oracle.


    Read More
  • Blue Dragon Revision 2

    calendar May 16, 2007 · 1 min read
     blog-objectsrootcom en  · ant database easy site spam vi
     ·
    Share on: twitter facebook linkedin copy
    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, because it is so easy to isolate spam from true comments.
    I will not keep a record of this spam, sorry


    Read More
  • Site Update: Happy new editor!

    calendar Feb 28, 2007 · 1 min read
     blog-objectsrootcom en site  · ajax ant complex django easy editor framework good java javascript make news opinion pd script site touch vi web
     ·
    Share on: twitter facebook linkedin copy
    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 complex init procedure: you just tell tiny you want to edit well textareas, and it will do all for you. Because django  (my web framework for the site) has a bit complex way for handling administration pages, this is good news for objectsroot.com.Powered by TinyMCE


    Read More
  • humble ajax

    calendar Jan 20, 2007 · 1 min read
     blog-objectsrootcom en  · ajax easy good hacking ibm interface simple site system
     ·
    Share on: twitter facebook linkedin copy
    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 to Prototype window, a very easy to use windowing system.
    Happy hacking!


    Read More

Recent Posts

  • Arduino Q da far crescere
  • Postgres Take it All
  • La ruota del Destino
  • Darth Android
  • Vps Provider
  • Chat
  • RSS Readers

Latest comments

    Giovanni Giorgi

    Copyright 1999-  GIOVANNI GIORGI. All Rights Reserved

    to-top