Via Cà Matta 2 - Peschiera Borromeo (MI)
+39 02 00704272
info@synaptica.info

Autore: Ivan Revelli

Digital Innovation Partner

Ubuntu 20.04 – start program after boot

edit or create the rc.local file: sudo nano /etc/rc.local #!/bin/bash <your_program>.sh exit 0   make rc.local executable: sudo chmod +x /etc/rc.local edit /etc/systemd/system/rc-local.service: sudo nano /etc/systemd/system/rc-local.service add this content to rc.local.service: # SPDX-License-Identifier: LGPL-2.1+ # # This file is part of systemd. # # systemd is free software; you can redistribute it and/or modify it…
Leggi tutto

RadStudio 10.4 – Prime impressioni

RadStudio 10.4 è una release che promette grandi cose in tutte le aree di questo fantastico ambiente di sviluppo. Facendo un primo giro di test abbiamo notato: Nelle applicazioni FMX abbiamo notato un notevole miglioramento del render dei caratteri Il nuovo sistema LSP (language server protocol) sembra aver reso l’IDE ancora più fluido e produttivo…
Leggi tutto

TCriticalSection Threrad Example Delphi

TThreadedMsgEvent = class( TThread ) private FLock : TCriticalSection; FStr : TQueue<String>; FMemo : TMemo; function GetEvent : String; protected procedure Execute; override; public procedure AddEvent( aMsg : String ); constructor Create( AMemo: TMemo ); destructor Destroy; override; end; implementation { TThreadedMsgEvent } procedure TThreadedMsgEvent.AddEvent(aMsg: String); begin FLock.Acquire; FStr.Enqueue( FormatDateTime(‘DD/MM/YY HH:NN:SS.ZZZ’,Now)+ ‘ : ‘+ aMsg…
Leggi tutto

Custom message SSH before login prompt in Linux

  Tested on ubuntu 18.04 server  The file /etc/issue.net is a text file which contains a message or system identification to be printed before the login prompt of a telnet session. It may contain various ‘%-char’ (or, alternatively, ‘\-char’) sequences. The common char for output some informations are: b Insert the baudrate of the current line. d…
Leggi tutto

Delphi Linux Daemon

Delphi Linux … create a background process… daemon service stay tuned   https://chapmanworld.com/2017/04/05/creating-a-linux-daemon-service-in-delphi/ http://blog.paolorossi.net/2017/07/11/building-a-real-linux-daemon-with-delphi-part-1-2/ http://blog.paolorossi.net/2017/09/04/building-a-real-linux-daemon-with-delphi-part-2/

Testing Supermicro E50-9AP with ubuntu 20.04 LTS

    In collaborazione con PegasoTeam abbiamo appena testato il fantastico modello Supermicro E50-9AP con la nuovissima versione di Ubuntu server e desktop. Abbiamo preso il modello Supermicro E50-9AP con il modulo wifi intel 8265 fornitro da Supermicro il cui codice assemblato è E50-9AP-WIFI e lo abbiamo testato a fondo. Il prodotto si presenta veramente…
Leggi tutto