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
  • New Syntax library: Crayon

    calendar Mar 14, 2018 · 1 min read
     en site
     ·
    Share on: twitter facebook linkedin copy

    After some trial and error, I decided to switch to a new syntax highlighter library, mostly because the old one stopped working. I am very satisfied with Crayon because it is backward compatible with  the previous plugin based on SyntaxHighlighter3 and offer also a nice in-line editor.


    Read More
  • Emacs absolute minimum setup

    calendar Mar 7, 2018 · 1 min read
     en  · emacs lisp
     ·
    Share on: twitter facebook linkedin copy

    Sometimes I need a very very fast start on emacs. If you have the same need, put this in your init.el and live happy:

    (cua-mode)
    (setq select-active-region nil)
    (setq mouse-drag-copy-region t)
    (global-set-key [mouse-2] 'mouse-yank-at-click)
    
  • Evolution of Service Architecture

    calendar Feb 27, 2018 · 5 min read
     en featured  · k8s unix
     ·
    Share on: twitter facebook linkedin copy

    Assembly: the only way

    In principle there was only one: assembly machine language. Hardware and software engineer was a one-role.

    The guy who was able to project a chip, was the one who was able to program it.

    Then Fortan (1957), the first high level language compiler was created.


    Read More
  • Meltdown and Spectre

    calendar Jan 31, 2018 · 4 min read
     en software  · raspberrypi security
     ·
    Share on: twitter facebook linkedin copy
    Meltdown and Spectre

    Meltdown and Spectre are two big vulnearbilities found in Intel and AMD chips out of there. The vulenarbility is so huge it affects up to 1995 chips.

    On the raspberrypi, there is a very nice explanation of what Meltdown is.

    First of all, the one who discovered this bug is a GENIUS, for sure.


    Read More
  • Esp8266 Music Machine

    calendar Nov 30, 2017 · 1 min read
     en esp8266  · esp8266
     ·
    Share on: twitter facebook linkedin copy

    After months of esp8266 experimentation, I “just” discovered this little chip has also a I2S Audio digital interface. To discover it you must install the Arduino IDE adapter and code directly in C++ (brr, ok not a breeze but not boring like Java :)

    I2S is a digital protocol to send your digital  music to a DAC decoder. Esp8266 has a 16bit DAC.


    Read More
  • Esp8266 your WiFi Embedded solution

    calendar Sep 3, 2017 · 2 min read
     en esp8266 featured knowledgebase  · esp8266
     ·
    Share on: twitter facebook linkedin copy
    Esp8266 your WiFi Embedded solution

    Arduino is a great hardware for a lot of reason: easy to use, difficulto to break, it is a very solid 5-Volt board.

    But it a way too much and it has a very limited amount of RAM. So I started exploring other more “different” solutions. I need an economy chip with some RAM on it. After some research, I stumpled upon a lot of so-called Arduino alternative…


    Read More
  • Vjdbc

    calendar Jul 1, 2017 · 1 min read
     en software  · java
     ·
    Share on: twitter facebook linkedin copy
    Vjdbc

    Vjdbc is a remote access for JDBC-Datasources developed more then ten years ago (last news are from 2007, with last comit from 2013.

    The project was migrated to Maven 3, but the code base is very old.

    I decided to give it a try, spin a github repository and started working on it, because you know, is nice to have a database driver proxy-logger :)


    Read More
  • Removing duplicate rows in PostgreSQL, Oracle and SQLite

    calendar Jun 15, 2017 · 1 min read
     en knowledgebase sql  · evil oracle postgresql sql
     ·
    Share on: twitter facebook linkedin copy
    Removing duplicate rows in PostgreSQL, Oracle and SQLite

    Sometimes you need to remove nasty duplicate on a table, based on a subset of the column. On every big database there is something called “rowid” which can be used to indentify a column in a unique way. On PostgreSQL is called ctid, as we shall see:


    Read More
  • Kotlin

    calendar Jun 8, 2017 · 3 min read
     en  · java
     ·
    Share on: twitter facebook linkedin copy

    Language based on JVM are the new trend in Java World. It seems everyone dislike Oracle on these days.

    Kotlin score some point on these days because it will be supported officially on Android (Mid-May announce):

    Starting now, Android Studio 3.0 ships with Kotlin out of the box, meaning Android developers no longer need to install any extras or worry about compatibility. It also means that moving forward, you can rest assured that both JetBrains and Google will be supporting Android development in Kotlin.

    It is a good news for an huble language with good IDE support like this.


    Read More
  • And finally Git wins: Microsoft Windows is developed with git aid!

    calendar Jun 4, 2017 · 3 min read
     en featured humor  · relax
     ·
    Share on: twitter facebook linkedin copy

    A small, relaxing news was published some days ago:

    It’s been 3 months since I first wrote about our efforts to scale Git to extremely large projects and teams with an effort we called “Git Virtual File System”.  [...]

    Today, I want  to share our results.  In addition, we’re announcing the next steps in our GVFS journey for customers, including expanded open sourcing to start taking contributions and improving how it works for us at Microsoft, as well as for partners and customers.


    Read More
  • Emacs Multi cursor!

    calendar Mar 30, 2017 · 1 min read
     en  · emacs relax
     ·
    Share on: twitter facebook linkedin copy

    Some “new” shiny IDE feature smart multi line editing, for instance for easily copy-past a block of code and then modifying it “live”. Sublime text has some feature like this…. and Emacs?

    Emacs has a package for it called…Multiple cursors!

    This video on “EmacsRocks” shows you some powerful use


    Read More
  • Emacs insert series

    calendar Mar 23, 2017 · 1 min read
     en knowledgebase  · emacs relax
     ·
    Share on: twitter facebook linkedin copy
    Emacs insert series

    In Excel you can easily fill in a column with a list of values. Some times also in Emacs you my need to write down a bunch of similar code. The dotimes function with the “elsp eval” M-x : (Esc + : on windooze) will solve your trouble easily. Try out this code on scratch buffer:


    Read More
  • Italian Accent Oracle fix

    calendar Feb 10, 2017 · 1 min read
     en sql  · oracle relax
     ·
    Share on: twitter facebook linkedin copy

    In Italian language we have accent words like àèéìòù

    They are quite important because for instance “is” is spelled

    è

    whereas “and” is spelled

    e

    Accent are bad guys even today: if you copy them from MS-Word inside an Oracle sql script you can end up with different UTF-8 values. Also the accent are likely to be destroyed if you past them in your html page without using the correct html entity (i.e. è )


    Read More
  • Arduino Real Time OS Evolution (flash news)

    calendar Feb 7, 2017 · 1 min read
     arduino  en
     ·
    Share on: twitter facebook linkedin copy
    Arduino Real Time OS Evolution (flash news)

    A new version of an Arduino Realtime OS is on the go:

    https://github.com/greiman/ChNil

    I have used with profit and fun NilRTOS, and I strongly suggest to you this new variant.

    A preemptive multi tasking RTOS in a 2KB 1-MIPS, 8 bit microcontroller remember be the ugly time when a MS-Windows 3.x with 1 MB of RAM was an inferior operative system no-preemptive at all, but with nice software like Excel and Access


    Read More
  • Org Mode parser 0.1.3 is out!

    calendar Jan 31, 2017 · 1 min read
     en org-mode-parser software-projects  · org-mode
     ·
    Share on: twitter facebook linkedin copy

    Beauty (OrgMode Parser 0.1.3) is here to stay! OrgMode parser is a small nodeJS library to parse Emacs OrgMode files (more info at this link).

    This version features:

    • Fixed empty header issue
    • Code Cleanup
    • Migration from jade to pug2 (new name of jade)
    • Added optional logging framework (winston)

    Also I’d like to thank all the people contributed: I have a list now.


    Read More
    • ««
    • «
    • 11
    • 12
    • 13
    • 14
    • 15
    • »
    • »»

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