Categories
nativePHP

NativePHP and the Microphone Permission Menace: Taming the One-Time Access Beast

Next up: the dreaded microphone permission showdown. Every time a caller tried to start a call, the ominous prompt blasted onto the screen—“Would Like to Access the Microphone.” Sure, having a working microphone is essential, but this relentless gatekeeper made the whole experience feel like navigating a booby-trapped jungle rather than a smooth voice app. […]

Categories
nativePHP

NativePHP Firebase Cloud Messaging and the deep link

Push notifications are a powerful tool to engage users — and opening a specific screen within your app from a notification can dramatically enhance the user experience. Lately, I have been working with FCM and nativePHP. My use case was straightforward: to notify a callee of an incoming call via push notifications. Upon pressing the […]

Categories
twitch

Block twitch ads with a vpn on the AWS network

Block twitch ads with an adblocker Twitch is fighting adblockers left and right. And adblockers are fighting against twitch anti-adblocking. This is a constant battle that never ends. A lot of  people are complaining that adblockers no longer really work. So what is the alternative. Block twitch ads with an VPN You could consider a […]

Categories
ubuntu

Ubuntu 22.04, mariaDB, dbeaver and auth fail error

So lately I switched to ubuntu 22.04 and tried a fresh installation with mariadb. When trying to connect to the database server with dbeaver i got stuck with the message in Dbeaver: Can’t initialize tunnel Cannot establish tunnel to x.x.x.x:22 Cannot establish tunnel to x.x.x.x:22 Auth fail Auth fail Looking in the journal control I […]

Categories
ubuntu

Install composer on ubuntu 20.04

To quickly install composer on ubuntu 20.04 you want to run the following commands. Make sure you are in your own home directory. sudo apt install wget php-cli php-zip unzip -y wget -O composer-setup.php https://getcomposer.org/installer sudo php composer-setup.php –install-dir=/usr/bin –filename=composer Look at the –install-dir=/usr/bin. A lot of guides tell you to install it into the […]