Clean up the web! - General Topics

Developers, it’s time for you to choose a side: will you help rid the web of privacy-invading tracking or be complicit in it?
https://cleanuptheweb.org/
#CleanUpTheWeb #FlocOffGoogle
nginx server config to add the header:
Code:
server {
…
add_header Permissions-Policy "interest-cohort=()";
…
}
There is also a JavaScript trick if you do not have full access to the configuration of the Web server:
https://git.sr.ht/~cedric/website/commit/7abaa80689c02ece8a477f9f18802dea8de590bc
Github already blocked FloC
GitHub Pages: Permissions-Policy: interest-cohort=() Header added to all pages sites​
All GitHub Pages sites served from the github.io domain will now have a Permissions-Policy: interest-cohort=() header set.
Pages sites using a custom domain will not be impacted.
Click to expand...
Click to collapse
source: https://github.blog/changelog/2021-...erest-cohort-header-added-to-all-pages-sites/

Related

[Q] Mobile Redirect from specific page / QR Code

My client has created a QR Code that goes to a specific page on her non-mobile site. She does have a mobile site, m.customersdomain.com
Question is, the QR Code has already been submitted to print for advertising and is going to a regular URL.
Is there a way to look for mobile devices that hit this one non-mobile page and redirect them to a mobile URL / page with the same content?
solwebsolutions said:
My client has created a QR Code that goes to a specific page on her non-mobile site. She does have a mobile site, m.customersdomain.com
Question is, the QR Code has already been submitted to print for advertising and is going to a regular URL.
Is there a way to look for mobile devices that hit this one non-mobile page and redirect them to a mobile URL / page with the same content?
Click to expand...
Click to collapse
hmm, why, yes. You either move the mobile content to that address, or change that address to a redirect, or make your content in that page recognize mobile devices and redirect them to another page.
It is all on your side, as it should be
Javascript final
NavNav,
Have this so far for JS:
if ((screen.width <= 700) &&
currentpage("regularURL")) {
window.location = "mobileurl";
}
I just need to figure out how to look @ the current URL, and if it is in fact regular URL, then send them via window.location to mobile URL

[APP][1.0] HTTP Tester

I've created this small utility for developers. I hope it can be useful to many of us.
It works for phones and tablets.
HTTP Tester is a tool that allows the execution of HTTP requests (GET/POST).
It's a very useful tool for all developers who want to test their web services or API.
Main Features
- Execute GET & POST Requests
- Display the contents of the Request (Url, Headers, etc.)
- Display the contents of the Response (Status code, Headers, etc.)
- Display the data returned by the Response (ex. JSON or XML)
- Display domain/ip address info on Map
- Saving a Request
- Execution or display of a saved Request
- Sharing with third-part apps
- Modern Holo interface
If you have any questions, issues or want to suggest future functionalities, please use the ‘Email Developer’ link or send email to [email protected]
https://play.google.com/store/apps/details?id=com.foscosoft.wstester
HTTP Tester v1.0 Screens

OpenHub - an open source GitHub android client

Hi everyone, I am an android developer, I want to share my first open source app with everyone, this app is growing, welcome anyone if you have any idea or suggestion, if you want to work together, welcome you in.
About my app:
An open source GitHub Android client app, faster and concise.
Source Code: Search 'OpenHub' at github.com
Google Play: App id is 'com.thirtydegreesray.openhub', or search 'OpenHub for GitHub'
Features
App
Two login types (Basic Auth) and (OAuth)
Light and dark theme, multiple accent color
Markdown and code highlighting support
English, simple chinese and hebrew support
Offline mode
Support trending repositories of 32 languages
Search repos and users
Shortcuts support
Notifications support
Bookmark users or repos
Record trace of the repos or users you have been viewed
Repositories
View repo info
Star, watch and fork repos
View repo files, commits and activity
Download source code, releases and files
View your private, public, forked and starred repos
View trending repos of daily, weekly and monthly
Search repos
View recent wiki updates
Users
View user info
View user followers, following, organizations
View user public repositories, starred repositories and activity
View your private repositories
Follow/Unfollow users
Search users
Organizations
View org info
View org public repositories and activity
View org members
Issues
View issue info and comments
Create, open and close issues
Create, edit and delete issue comments
Write comment with preview
View your created, assigned and mentioned issues
View repository issues
Commits
View commit info and files
View file diff
View repository commits
And more
OpenHub is growing, try to be better github client.
Interest in?
You can search 'OpenHub' at GitHub site, you will see the app source code and google play download link.
This is an awesome GitHub client!!! Very well done!

deleted

deleted
No.
The User-Agent (UA) string is contained in the HTTP headers and is intended to identify devices requesting online content.
The UA tells the visited server what the visiting device is (among many other things) and this information can be used to determine what content to return.
See also here:
List of User-Agent strings
deviceatlas.com
jwoegerbauer said:
No.
The User-Agent (UA) string is contained in the HTTP headers and is intended to identify devices requesting online content.
The UA tells the visited server what the visiting device is (among many other things) and this information can be used to determine what content to return.
See also here:
List of User-Agent strings
deviceatlas.com
Click to expand...
Click to collapse
deleted

Question How to quickly turn off Private DNS?

I use adguard's Private DNS server for adblocking purposes however when I am connected to some public wifi hotspots, the private DNS will not allow me to log into the public wifi hotspot for some reason. When I turn off private DNS it works fine.
Is there a way I can quickly turn off private DNS without digging into the menus of my phone? maybe a quicktile or routine?
thanks!
Perhaps you could try the Private DNS Quick Settings Tile
Private DNS Quick Tile | F-Droid - Free and Open Source Android App Repository
Quickly toggle and configure Private DNS on Android 9.0+
f-droid.org
(you need to perform some actions via adb to allow this to work, so read the info in the link above)
craigacgomez said:
Perhaps you could try the Private DNS Quick Settings Tile
Private DNS Quick Tile | F-Droid - Free and Open Source Android App Repository
Quickly toggle and configure Private DNS on Android 9.0+
f-droid.org
(you need to perform some actions via adb to allow this to work, so read the info in the link above)
Click to expand...
Click to collapse
thanks! let me try it out
craigacgomez said:
Perhaps you could try the Private DNS Quick Settings Tile
Private DNS Quick Tile | F-Droid - Free and Open Source Android App Repository
Quickly toggle and configure Private DNS on Android 9.0+
f-droid.org
(you need to perform some actions via adb to allow this to work, so read the info in the link above)
Click to expand...
Click to collapse
I've been annoyed by same problem for long time, but not annoyed enough to actually looking for a specific solution like this. Thank you for this. Make life much easier
craigacgomez said:
Perhaps you could try the Private DNS Quick Settings Tile
Private DNS Quick Tile | F-Droid - Free and Open Source Android App Repository
Quickly toggle and configure Private DNS on Android 9.0+
f-droid.org
(you need to perform some actions via adb to allow this to work, so read the info in the link above)
Click to expand...
Click to collapse
thanks for this, its a big help!
seems to be working so far.

Categories

Resources