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

Author: Ivan Revelli

Digital solution partner

Raspberry Pi 4 has arrived !!

Nearly a year ahead of release forecasts, the Raspberry PI4 is available !!It seems to be a revolution on the single-board computer, compared to the previous ones it seems to have something extra !!! Major improvements : Dual mini-HDMI interface for dual-monitor up to 4K reslution and 60Hz refresh Versions with 1GB to 4GB RAM…
Read more

pfSense Cron Iterface

With pfSense there are many “package” tools available that facilitate the configuration and maintenance of the system. These include “Cron” which allows you to change the configuration of the operating system crontab (BSD) via the web interface. To install a package, just select from the menu “System / Package Manager / Available Package /” write…
Read more

Firebird Performance Tour 2019 – Prague

  Synaptica has always adopted Firebird as its main database environment for the realization of many solutions from embedded iot products to Web solutions with thousands of daily accesses. Firebird proved to be a great tool, flexible and easy to manage. For this reason we could not miss the appointment to meet the creators (Dmitry…
Read more

smartFB a free tool for Interbase & Firebird

SmartFB is a free SQL client for Interbase and Firebird made for internal / educational use. As we think it will be useful we decided to make it available for download. It is in “beta” version, but I think it could be useful, so you can download it from the following links: – Download Windows…
Read more

Welcome VR6 @ Synaptica Farm

Welcome to VR6 @ Synaptica Farm VR6 is a fully customized Dell R740XD dual Xeon performance server for high performance in the KVM Virtualization System. Higher performance less core (on 18 per processor) more frequency (plus 3Ghz) memory RDIMM ECC 2666GHz … less virtual machine but faster. Why VR6? Each production server in Synaptica has…
Read more

Android App Version with Delphi

Using the JPackageInfo class is simple to retrive the version of your Android application. This class is already wrapped by Embarcadero in the following unit: Androidapi.JNI.GraphicsContentViewText {code} {$IFDEF ANDROID} var PackageManager: JPackageManager; PackageInfo: JPackageInfo; begin PackageManager := SharedActivityContext.getPackageManager; PackageInfo := PackageManager.getPackageInfo (SharedActivityContext.getPackageName, 0); result := JStringToString(PackageInfo.versionName); End; {$ENDIF}