“Firebird Performance”, by Vlad Khorsun, Firebird Project “Tuning Linux, Windows, and Firebird for heavy workload” by Alex Kovyazin, IBSurgeon. Presentations from Firebird Tour 2017: Firebird Performance and Tuning Linux and Windows
Configure RaspAP over Ubuntu 16.04 Server and Apache2
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
1440 cd /var/www/html 1441 ls 1442 mkdir raspap 1443 sudo git clone https://github.com/billz/raspap-webgui /var/www/html/raspap 1444 cat /etc/network/interfaces 1445 sudo nano /etc/init.d/hostapd 1446 sudo nano /etc/hostapd/hostapd.conf 1447 lsb -release 1448 lsb_release -a 1449 sudo nano /etc/sudoers 1450 cat /etc/passwd 1451 sudo chown -R www-data:www-data /var/www/html/raspap/ 1452 sudo mkdir /etc/raspap 1453 sudo mv /var/www/html/raspap/raspap.php /etc/raspap/ 1454 sudo chown -R www-data:www-data /etc/raspap 1455 sudo mkdir /etc/raspap/hostapd 1456 sudo mv /var/www/html/installers/*log.sh /etc/raspap/hostapd 1457 sudo mv /var/www/html/raspap/installers/*log.sh /etc/raspap/hostapd 1458 cd /etc/raspap 1459 ls 1460 cat raspap.php 1461 cd hostapd/ 1462 ls 1463 cat enablelog.sh 1464 cat disablelog.sh 1465 sudo reboot |
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}
Tramite piccoli trucchi è possibile clonare una SD card o un qualsiasi disco anche che esegue il BOOT su un altro supporto anche di dimensioni inferiori senza diventare pazzi. Supponiamo di avere un SD da 32GB con ad esempio 4GB occupati su cui è installato un Ubuntu Server oppure una distribuzione di Android e volessimo…
Leggi tutto
L’obiettivo era quello di connettersi a livello programmatico ad una specifica WiFi da qui è sorta l’esigenza di gestire in modo completo la classe Java WifiManager. Nei tre metodi principali riportati di seguito avremo: riconoscimento dell’IP Address assegnato alla porta wifi Elenco delle Wifi disponibili (quelle che il dispositivo riconosce) Elenco delle configurazioni WiFi salvate…
Leggi tutto
Following this tutorial you’ll be able to configure your RaspBerryPi model 3 to accept incoming connections using its built-it WiFi antenna and to forward the requests to the Ethernet port. Requirements 1x RaspBerryPi model 3 (earlier versions will not work unless you have a WiFi dongle. In that case, just follow this Adafruit tutorial) 1x…
Leggi tutto