The analysed Firefox version is 125. If you have another version it’s maybe different. Desktop You have to add your
Continue readingCategory: Web
Why using the TOR Browser for public APs?
The issue with public APs is that it can be used for MITM attacks, like sniffing network traffic. Workflow Normal
Continue readingDesktop web player (Android)
1. Download web browser Get “Firefox Nightly” from the Google Play Store. (Tried with version 121.0) 2. Configure web browser
Continue readingResponsive iframe (WordPress)
Use the provided CSS classes from WordPress Add the following call in the functions.php file of your current theme, if
Continue readingDownload files from page (not listed in source)
Scenario You scroll a webpage an it loads files step by step and you want to download them. You check
Continue readingDownload files from page (listed in source)
Scenario You scroll a webpage an it loads files step by step and you want to download them. You check
Continue readingCompressed download (HTTP)
There are two ways to transmit compressed data via HTTP: Content-Encoding and Transfer-Encoding. Content-Encoding Transfer-Encoding Request header Accept-Encoding: {algorithms} TE:
Continue readingFunction – declaration vs. expression (JS)
Function declaration They are hoisted, which means the declaration is “moved” to the top of the scope. Function expression They
Continue readingCallback vs. Promise (JS)
They are used to handle asynchronous (single-threaded) execution. Callback (Old school) A Callback is a function … that gets injected
Continue readingScript tag attributes (JS)
Sync (without keyword) If during HTML parsing a JS element is found, the parsing gets stopped until the script is
Continue reading