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

Blog

Digital solution partner

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

List of all selected checkboxes into a JSON string

Add class to checkbox Value 1 Value 2 Value 3 Value 4 Value 5 Create a function to return a JSON string function arrayChk(){ var arrAn = []; var m = $(‘.myChk’); var arrLen = $(‘.myChk’).length; for ( var i= 0; i < arrLen ; i++){ var w = m[i]; if (w.checked){ arrAn.push( { "myVal"…
Read more

NTP – Syncronize Date Time with internet service with Ubuntu 18.04

NTP (Network Time Protocol) on Ubuntu Linux is a service used to synchronize your server’s time accurately with reliable time sources on the internet. Keeping accurate time is crucial for system security, log consistency, and the proper functioning of network services.   Setting date time (TDateTime for Delphi Lovers) daemon and timezone of my locale…
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

Dell EMC Conference – February 15, 2018

Conference Topics: In-depth overview of Dell EMC’s channel strategy and Enterprise solutions Dell PowerEdge™ 14th Generation Server Portfolio Dell Networking – Product range deep dive Introduction to GDPR regulations – Microsoft Windows Server 2016 and SQL Server 2017          

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}