I take a picture inside Telegram, send it and immediately delete it for myself or for both. A copy of the picture always remains in the folder of the phone: Android/media/org.telegram.messenger/Telegram/Telegram Images/ If I delete it only for me an additional copy remains in the cache folder: Android/data/org.telegram.messenger/files/Telegram/Telegram Images/ This […]
Monthly Archives: February 2025
I’m trying to add 5 different audio files(they contain both audio and video streams but I’m just trying to add the audio) to a single video. and the audio streams are delayed in a way that there’s gonna be parts where there is no audio stream playing if that matters. […]
I have a Linux machine, with one interface on network A, and one interface on network B. On network A, another machine is a source for multicast traffic, let’s say 239.255.0.1. I want the multicast traffic to be forwarded to network B. My first idea would be to start a […]
I’ve written a little tool to grep inside the adddress space of a proces with a start and end delimiter in ECMAScript regex syntax. I’m parsing /proc/pid/maps twice to determine the largest mapping first. So if I’ve opened this mapping description first and rewind it with a seek( 0 ) […]
I have a number of development websites running on IIS on my local windows 11 machine. I bind the hostname of the website (myTestSite) to port 80/443 and add an entry to my windows hosts file so I can use something like: http://myTestSite to access the IIS site in my […]
Configuring payment restrictions in Magento 2 is not just a technical configuration but a smart decision to enhance your store performance. Continue reading on Medium »
With this test code <?= /* noEscape */ $secureRenderer->renderTag('script', ['id' => 'testjs'], 'var thisisatest=0;', false ); ?> I’d expect Magento to output a script tag similar to <script id="textjs" nonce="random-nonce-characters">var thisisatest=0;</script> But it’s not, instead outputting <script id="testjs">var thisisatest=0;</script> I’m aware that Dev tools tend to hide the nonce but […]