open-menu closeme
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
Archives
About
github linkedin rss
  • Arduino Real Time EggBox

    calendar Oct 15, 2014 · 6 min read
     arduino  eggbox it knowledgebase software-projects
     ·
    Share on: twitter facebook linkedin copy
    Arduino Real Time EggBox

    In questo secondo capitolo della serie egg box per arduino (una lampada a led costruita con 2 scatole di plastica delle uova), riscriveremo il codice in modo da utilizzare un sistema operativo real time chiamato NilRTOS e disponibile su Github; in particolare mostrerò un semplice sketch che è in grado di produrre un piccolo accordo ed accedere tre luci rispetto ad un ritmo, mentre una quarta, di colore rosso, si accenderà rispetto ad una cadenza diversa.


    Read More
  • Arduino EggBoxLamp

    calendar Oct 9, 2014 · 2 min read
     arduino  eggbox it knowledgebase software
     ·
    Share on: twitter facebook linkedin copy
    Arduino EggBoxLamp

    Programmare Arduino è molto divertente, ed in questo articolo voglio mostrare come creare una semplicissima lampada luminosa. Questo esempio sarà anche il pretesto per mostrare differenti implementazioni software dello stesso progetto (in prossimi post)

    Questo progetto è volutamente molto semplice, e non si serve di nessun sensore.

    Trovate il codice su github:

    https://github.com/daitangio/egg_box


    Read More
  • Debian perfect work environment

    calendar Sep 28, 2014 · 3 min read
     en featured software unix-featured  · ibm linux oracle unix virtualization
     ·
    Share on: twitter facebook linkedin copy
    Debian perfect work environment

    Working in a big company, my work laptop came with MS-Windows7 Enterprise installed. But as you imagine, Unix is my preferred desktop environment. So let’s how to configure a perfect Debian Linux for a old wolf consultant like me. You will be able to install commercial software mubmo jumbo like Oracle Express and IBM Websphere in a snap, and have a 64 rock solid system, easy to bring in a USB stick if you like.


    Read More
  • Hackathon @ NTTData

    calendar Sep 14, 2014 · 1 min read
     it  · nttdata
     ·
    Share on: twitter facebook linkedin copy

    This weekend I enjoyed with NTT Hackathon. We developed a Microsoft Kinetic-powered store: you can see objects, consult a catalog via arm swipe, and order 3D prints via hand claps. 3D Printing was powered by OctoPrint after a bad experience with SkyForge. We hope SkyForge will be production-ready in a couple of software-iterations (their lack of a full WebService API is simple to fix).


    Read More
  • 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
  • Er Zauker v0.0.5: Let it go

    calendar Aug 1, 2014 · 1 min read
     en erlang  · code-zauker er-zauker erlang
     ·
    Share on: twitter facebook linkedin copy

    Let it go, let it go! Can't hold it back any more. Let it go, let it go! Turn away and slam the door. ... Let it go, let it go. I am one with the wind and sky. Let it go, let it go. You'll never see me cry.


    Read More
  • Git Recovery commands

    calendar Jul 24, 2014 · 1 min read
     en  · git
     ·
    Share on: twitter facebook linkedin copy

    [bash] git fsck –full –unreachable [/bash]

    See also Maintenance-and-Data-Recovery on the Git book

  • Axis2 Debugging options

    calendar Jul 23, 2014 · 1 min read
     en  · apache java
     ·
    Share on: twitter facebook linkedin copy

    Web service interoperability is a nightmare. But it is easy to understand what is going on: just enable debugging! On Axis2, you can do it with the folowing java options…

    [bash] -Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.SimpleLog -Dorg.apache.commons.logging.simplelog.showdatetime=true -Dorg.apache.commons.logging.simplelog.log.httpclient.wire=debug -Dorg.apache.commons.logging.simplelog.log.org.apache.commons.httpclient=debug [/bash]

  • ErZauker Revenge!

    calendar Jul 15, 2014 · 1 min read
     en erlang featured knowledgebase software  · er-zauker erlang redis
     ·
    Share on: twitter facebook linkedin copy
    ErZauker Revenge!

    After a bunch of time, I take back my Erlang Hammer from the sand of time.

    The result is ErZauker v0.0.2 the first pure-Erlang implementation of a code indexer.

    Er Zauker is a tiny but speedy search engine tailoring code searches. Zauker is backed by REDIS, the fastest RAM-based NoSQL engine you have never seen.


    Read More
  • 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).

    Erlang Maps are the next big thing and this article from Joe Amstong introduce you to them.

    For some lengthly tutorial take a look to this http://learnyousomeerlang.com/maps


    Read More
  • Intervista a Francesco Cesarini di Erlang Solutions

    calendar Jul 7, 2014 · 12 min read
     erlang featured interviste it  · erlang italia oreilly
     ·
    Share on: twitter facebook linkedin copy

    A language that doesn’t affect the way you think about programming, is not worth knowing. Yale Professor Alan Perlis

    In occasione dell’Elixir Conf siamo lieti di pubblicare una intervista con Francesco Cesarini.  Nel 2009 abbiamo già recensito "Erlang Programming A Concurrent Approach to Software Development" scritto a quattro mani con Simon Thompson. Ora siamo lieti di ospitare una intervista ad ampio respiro con una delle colonne portati di Erlang Solutions.


    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..

    The new PinPress theme spot article auto loading; more important, you get also auto artilce rearrange when you resize the window (try out).

    We are planning some refinement on the newxt week so stai tuned and… we hope you enjoy the new style!

  • Server NUC Compatto per meno di 260€

    calendar May 4, 2014 · 2 min read
     it  · amazon linux ubuntu
     ·
    Share on: twitter facebook linkedin copy

    La Intel ha commercializzato da poco i NUC, (Next Unit of Computing): si trattà di unità compatte dalle dimensioni di un palmo, con doppia uscite HDMI e diverse categorie di processori Intel.

    Sono ottimi come media server, ma è possibile anche usarli come server, come vedremo


    Read More
    • ««
    • «
    • 30
    • 31
    • 32
    • 33
    • 34
    • »
    • »»

Recent Posts

  • Max
  • Estrarre Bene i soldi dal portafoglio
  • Is code review dead?
  • Take Back Ai Control
  • PMC: Prezzo medio di carico
  • Togaf
  • Risparmio Target: 7,57% per il 2026

Categories

EN 505 IT 491 SOFTWARE 188 KNOWLEDGEBASE 186
All Categories
ADVERTISEMENT2 AUTOMATION5 BLOG-OBJECTSROOTCOM88 BOOKS3 COVID1919 DEVOPS30 EGGBOX4 EN505 ERLANG14 ESP82666 EVERGREEN4 FEATURED93 FLASH1 FREEDOM8 GENERATIVEAI6 HUMOR81 INTERVISTE2 IT491 JAVA3 JAVASCRIPT1 K8S-DONE-RIGHT3 KNOWLEDGEBASE186 LANG30 LETTERE-A-MIA-FIGLIA37 LETTERE-A-MIO-FIGLIO39 LIBRI3 NEWS3 ORG-MODE-PARSER9 PROJECTS8 PYTHON18 RACCONTI5 RECENSIONI20 RETRO-COMPUTING36 REVIEWS12 SITE14 SOFTWARE188 SOFTWARE-PROJECTS14 SQL27 UNIX-FEATURED7
[A~Z][0~9]

Series

ARDUINO 25 RISPARMIO 9 PROGRAMMING_LANGUAGES 7 HOMELAB 6
All Series
ARDUINO25 FATLAMA5 FREEDOM4 HOMELAB6 PROGRAMMING_LANGUAGES7 RISPARMIO9 TAKE-BACK-CONTROL1
[A~Z][0~9]

Latest comments

    Giovanni Giorgi

    Copyright 1999-  GIOVANNI GIORGI. All Rights Reserved

    to-top