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
  • Erlang Power Links

    calendar Jul 11, 2014 · 1 min read
     en erlang  · erlang relax
     ·
    Share on: twitter facebook linkedin copy

    Ready to study the Erlang?

    Take a look to http://howistart.org/posts/erlang/1 for understanding how erlang releases works (and how to deal with them).


    Read More
  • Spring Testing Survival guide

    calendar Jun 26, 2014 · 2 min read
     en featured software  · java relax spring
     ·
    Share on: twitter facebook linkedin copy
    Spring Testing Survival guide

    If you have an application with thousand of beans, you must do unit testing but…Spring testing is boring, belive me. A very complex Spring application usually have a lot of dependency: I had to manage over 3000 beans definitions in a production project right now. Sometimes you want only to test a bit of it, and setting up a complete Spring Context will drive you crazy. To avoid losing mind, my suggestion is to …cheat. Let’see how.


    Read More
  • Bash secret powers

    calendar May 14, 2014 · 3 min read
     en  · bash file python scripting unix
     ·
    Share on: twitter facebook linkedin copy

    Bash scripting has evolved a lot in the last ten years.

    I get used to relay on bash for all normal “data domination” tasks (like file system refactorings, database extraction and reporting and so on) and switching to python/ruby/perl when the complexity gets bigger. I didn’t imagine bash is even more powerful :) This article by Robert Muth so you new nice tricks: I  add here some other like mapfile and stress the most important one.

    Update 2016 Last but not least,if you do now know about bash history, this link will teach you a huge set of tricks Updated 2019 Bash Bible will further extend the topic.


    Read More
  • New Theme Juggling

    calendar May 8, 2014 · 1 min read
     en site  · gioorgi-com
     ·
    Share on: twitter facebook linkedin copy

    After some year, we decided a new theme shake up..


    Read More
  • Emacs Tips

    calendar Sep 1, 2013 · 1 min read
     en knowledgebase software  · emacs
     ·
    Share on: twitter facebook linkedin copy
    Emacs Tips

    Userful Commands:

    1. keep-lines
    2. sort-lines
    For more similar options, see this "working with lines"

    For playing with rectangles of text, see this tip


    Read More
  • 2013 Spotify Daitan Mix

    calendar Aug 15, 2013 · 1 min read
     en
     ·
    Share on: twitter facebook linkedin copy

    spotify  

    http://open.spotify.com/user/1169393101/playlist/6GjrQ0EjyucEZkXaIPRH5A And yes I love POP…:)


    Read More
  • Oracle Invalid number ORA-01722

    calendar Jul 15, 2013 · 1 min read
     en knowledgebase sql  · bad bug oracle sql
     ·
    Share on: twitter facebook linkedin copy
    Oracle Invalid number ORA-01722

    I stumbled upon a very brain-f**k error on Oracle 10g on these days.

    Context: the following query [sql]SELECT * FROM (
    SELECT TO_NUMBER(CUSTOMER_ID) AS SNDG FROM BAD_CODES_TABLE WHERE
    AND I_LIKE=UPPER(‘STATIC_CONDITION’) AND CUSTOMER_ID NOT LIKE ‘%P%’ ) S WHERE TO_NUMBER(S.SNDG) >2000[/sql] could trigger a Invalid number if CUSTOMER_ID column contains invalid numbers.

    Why?

    Well…if you ask to “explain plan”, you will get something like

    • a table full scan
      • Filter Predicates AND
        • I_LIKE=UPPER('STATIC_CONDITION')
        • TO_NUMBER(S.SNDG) >2000
        • CUSTOMER_ID NOT LIKE '%P%'

    Read More
  • How I Structure My Flask Applications

    calendar Jun 27, 2013 · 1 min read
     en knowledgebase  · python
     ·
    Share on: twitter facebook linkedin copy
    How I Structure My Flask Applications

    How I Structure My Flask Applications Flask has been my preferred web framework as of late. I think it has a great core feature set and Armin, the main author, has done well to keep its API minimal and easy to digest even for developers that are relatively new to Python. However, given that it is a rather minimal framework, it can be often difficult to decide on how to structure an application after it reaches a certain level of complexity. It tends to be a common question that comes up in the #pocoo IRC channel.In this article I intend to share how I structure Flask applications. To help support this article Ive written a very basic application that Ive arbitrarily named Overholt. If you plan on following along I recommend having the source code open in your browser or a code editor.


    Read More
  • Emacs Rectangles

    calendar Jun 8, 2013 · 1 min read
     en  · emacs
     ·
    Share on: twitter facebook linkedin copy

    Did you know? Emacs supports killing rectangles of text!


    Read More
  • Http1.0 on firefox

    calendar Jun 6, 2013 · 1 min read
     en  · http
     ·
    Share on: twitter facebook linkedin copy

    To force Firefox on http 1.0 proceed as follows:


    Read More
  • Code Zauker 0.1.0: Code Young

    calendar Jun 4, 2013 · 1 min read
     en featured projects software  · code-zauker redis ruby
     ·
    Share on: twitter facebook linkedin copy
    Code Zauker 0.1.0: Code Young

    I hear your heart beat to the beat of the drums Oh what a shame that you came here with someone So while you're here in my arms Let's make the most of the night like we're gonna Code young


    Read More
  • Learning Emacs Lisp: the fast track!

    calendar May 6, 2013 · 2 min read
     en  · emacs ideas lisp programming
     ·
    Share on: twitter facebook linkedin copy

    Ops I did it again. Although I repeatedly said I didn’t love emacs Lisp, I finally managed to learn it. So I want to share with you my tips, to help entering in the Emacs Lisp world in a fast, fun and easy way.


    Read More
  • ZFS on MACOSX

    calendar Feb 4, 2013 · 1 min read
     en knowledgebase
     ·
    Share on: twitter facebook linkedin copy
    ZFS on MACOSX

    ZFS is a very innovative file system….

    ZFS is a combined file system and logical volume manager designed by Sun Microsystems. The features of ZFS include protection against data corruption, support for high storage capacities, integration of the concepts of filesystem and volume management, snapshots and copy-on-write clones, continuous integrity checking and automatic repair, RAID-Z and native NFSv4 ACLs. ZFS is implemented as open-source software, licensed under the Common Development and Distribution License (CDDL). The ZFS name was a trademark of Oracle[3] until September 20, 2011.[4]

    […]


    Read More
  • Book Review: Git: Version Control for Everyone

    calendar Jan 31, 2013 · 1 min read
     en reviews  · book git
     ·
    Share on: twitter facebook linkedin copy

    I am very happy to announce the availability of “Git: Version Control for Everyone” book, written by Ravishankar Somasundaram


    Read More
  • Solving Emacs Freeze and/or Slowdown on windows7

    calendar Jan 28, 2013 · 1 min read
     en knowledgebase  · emacs windows
     ·
    Share on: twitter facebook linkedin copy
    Solving Emacs Freeze and/or Slowdown on windows7

    So you know I need Emacs on every PC I use.


    Read More
    • ««
    • «
    • 14
    • 15
    • 16
    • 17
    • 18
    • »
    • »»

Recent Posts

  • La ruota del Destino
  • Darth Android
  • Vps Provider
  • Chat
  • RSS Readers
  • Vibe Coding: easy to say, difficult to survive
  • Basic V2 rocks

Latest comments

    Giovanni Giorgi

    Copyright 1999-  GIOVANNI GIORGI. All Rights Reserved

    to-top