26
13
submitted 2 months ago by tilefan@lemm.ee to c/degoogle@lemmy.ml

do they have like a Discord server, or a subreddit, or any presence on the fediverse?

27
397
submitted 3 months ago* (last edited 3 months ago) by hellfire103@lemmy.ca to c/degoogle@lemmy.ml

EDIT: Added soft- to the title, since it was pissing people off. Maybe I'm still wrong. Idk, it's just a meme.

28
57
submitted 3 months ago* (last edited 3 months ago) by monovergent@lemmy.ml to c/degoogle@lemmy.ml

I'm about to degoogle my stock Android phone. For the past few years, I've used it to handle the non-open source apps that I don't want running on my main phone. As I've finally weaned off GApps, I realize that I might as well go degoogle the rom as well.

edit: to be clear, I'll be using sandboxed Play services on GOS

But since that phone is my compatibility guinea pig, is it likely I'll still run into an app that demands unmodded Android with no alternatives? In your experience, has any bank or other service required the app on regular Android, with no alternative for the desktop, browser, etc?

29
13
submitted 3 months ago by pelletbucket@lemm.ee to c/degoogle@lemmy.ml

I'm having issues and I think it's because I ran out of credit, but for the life of me I cannot figure out where to go to pay them. I'm using cheogram

30
177
submitted 3 months ago by Genghis@monero.town to c/degoogle@lemmy.ml

I have my respect for GrapheneOS for addressing the Play Integrity API issue.

31
38
submitted 3 months ago by solrize@lemmy.world to c/degoogle@lemmy.ml

I get spammed by them all the time but have so far resisted and stayed with my crappy, slow, and expensive ADSL provider out of principle. But the ADSL provider just raised prices on me AGAIN and it's ridiculous.

What do I do? Is Google Fiber as invasive as other Google stuff? What if I just use it to tunnel a VPN to a non-Google endpoint?

This is sure annoying. It occurs to me that Comcrap might be available here as an alternative, but that must be as evil as Google. At least the ADSL company is reasonable about privacy, as such companies go.

Thanks for any thoughts.

32
151

Hi everyone,

First of all, I know WhatsApp doesn’t belong to Google so I’m technically in the wrong community.

Still I think getting rid of Facebook is part of the same movement.

I’ve been using Threema (and Signal/SMS a little bit) for years with all my close contacts, but I can’t fully get rid of WhatsApp as I’m part of some groups where I can’t convince/force everyone to move to Threema.

Because I was still on WhatsApp, a lot of people outside of the necessary groups thought it was okay to contact me on WhatsApp.

I had looked into ways of blocking everyone except these essential groups, but I couldn’t find anything on the web.

Now I think I’ve found the solution to prevent people outside of these necessary WhatsApp groups to write to me on WhatsApp. I had never heard of it before yesterday, but you can download a WhatsApp Business app which lets you send automated answers when people are writing to you.

So I basically just created an automated answer telling people that I’m using Threema/Signal/Sms and that I won’t answer on WhatsApp. Now I don’t have to write long messages telling people to please write to me on another app (and then these people keep writing on WhatsApp of course). So now it’s make the effort or leave me alone 😅

I still plan in ditching WhatsApp for good at one point, but it seems like a good temporary solution and, since I hadn’t found anyone suggesting this idea, I thought I would share it here to help people who have the same problem.

33
36
submitted 3 months ago* (last edited 3 months ago) by pelletbucket@lemm.ee to c/degoogle@lemmy.ml

edit 2 - READ THIS BEFORE DECIDING: https://blog.jmp.chat/b/sms-censorship edit - which client do you all prefer? I'm just using cheogram atm

I asked you all what to use to replace Google Voice, and this was the most highly recommended, and you guys were absolutely right.

it's $5 a month for unlimited text and media messaging plus 120 minutes of calls to US&CA.

the main reason I was finally jumping ship is because of how atrocious Google Voice support is. I'm a little tech naïve when it comes to things that I've never encountered before, and the jmp.chat support guys were immediately responsive, polite, and actually helpful. there was a bug where I couldn't import my contacts, and the update had been pushed to the Play Store within 4 hours.

34
24

Cross-posted from : https://lemmy.pierre-couy.fr/post/581642

Context : Immich default map tile provider (which gets sent a bunch of PII every time you use the map feature) is a company that I see no reason to trust. This is a follow-up to this post, with the ~~permanent~~ temporary fix I came up with. I will also summarize the general opinion from the comments, as well as some interesting piece of knowledge that commenters shared.

Hacky fix

This will use Nginx proxy module to build a caching proxy in front of Open Street Map's tileserver and to serve a custom style.json for the maps.

This works well for me, since I already proxy all my services behind a single Nginx instance. It is probably possible to achieve similar results with other reverse proxies, but this would obviously need to be adapted.

Caching proxy

Inside Nginx's http config block (usually in /etc/nginx/nginx.conf), create a cache zone (a directory that will hold cached responses from OSM) :

http {
     # You should not need to edit existing lines in the http block, only add the line below
    proxy_cache_path /var/cache/nginx/osm levels=1:2 keys_zone=osm:100m max_size=5g inactive=180d;
}

You may need to manually create the /var/cache/nginx/osm directory and set its owner to Nginx's user (typically www-data on Debian based distros).

Customize the max_size parameter to change the maximum amount of cached data you want to store on your server. The inactive parameter will cause Nginx to discard cached data that's not been accessed in this duration (180d ~ 6months).

Then, inside the server block that serves your Immich instance, create a new location block :

server {
    listen 443 ssl;
    server_name immich.your-domain.tld;

    # You should not need to change your existing config, only add the location block below

    location /map_proxy/ {
        proxy_pass https://tile.openstreetmap.org/;
        proxy_cache osm;
        proxy_cache_valid 180d;
        proxy_ignore_headers Cache-Control Expires;
        proxy_ssl_server_name on;
        proxy_ssl_name tile.openstreetmap.org;
        proxy_set_header Host tile.openstreetmap.org;
        proxy_set_header User-Agent "Nginx Caching Tile Proxy for self-hosters";
        proxy_set_header Cookie "";
        proxy_set_header Referer "";
    }
}

Reload Nginx (sudo systemctl reload nginx). Confirm this works by visiting https://immich.your-domain.tld/map_proxy/0/0/0.png, which should now return a world map PNG (the one from https://tile.openstreetmap.org/0/0/0.png )

This config ignores cache control headers from OSM and sets its own cache validity duration (proxy_cache_valid parameter). After the specified duration, the proxy will re-fetch the tiles. 6 months seem reasonable to me for the use case, and it can probably be set to a few years without it causing issues.

Besides being lighter on OSM's servers, the caching proxy will improve privacy by only requesting tiles from upstream when loaded for the first time. This config also strips cookies and referrer before forwarding the queries to OSM, as well as set a user agent for the proxy following OSM foundation's guidelines (according to these guidelines, you should add a contact information to this user agent)

This can probably be made to work on a different domain than the one serving your Immich instance, but this probably requires to add the appropriate headers for CORS.

Custom style.json

I came up with the following mapstyle :

{
  "version": 8,
  "name": "Immich Map",
  "sources": {
    "immich-map": {
      "type": "raster",
      "tileSize": 256,
      "tiles": [
        "https://immich.your-domain.tld/map_proxy/{z}/{x}/{y}.png"
      ]
    }
  },
  "sprite": "https://maputnik.github.io/osm-liberty/sprites/osm-liberty",
  "glyphs": "https://fonts.openmaptiles.org/{fontstack}/{range}.pbf",
  "layers": [
    {
      "id": "raster-tiles",
      "type": "raster",
      "source": "immich-map",
      "minzoom": 0,
      "maxzoom": 22
    }
  ],
  "id": "immich-map-dark"
}

Replace immich.your-domain.tld with your actual Immich domain, and remember the absolute path you save this at.

One last update to nginx's config

Since Immich currently does not provide a way to manually edit style.json, we need to serve it from http(s). Add one more location block below the previous one :

location /map_style.json {
    alias /srv/immich/mapstyle.json;
}

Replace the alias parameter with the location where you saved the json mapstyle. After reloading nginx, your json style will be available at https://immich.your-domain.tld/map_style.json

Configure Immich to use this

For this last part, follow steps 8, 9, 10 from this guide (use the link to map_style.json for both light and dark themes). After clearing the browser or app's cache, the map should now be loaded from your caching proxy. You can confirm this by tailing Nginx's logs while you zoom and move around the map in Immich

Summary of comments from previous post

Self-hosting a tile server is not realistic in most cases

People who have previously worked with maps seem to confirm that there are no tile server solution lightweight enough to be self hosted by hobbyists. There is maybe some hope with generating tiles on demand, but someone with deep knowledge of the file formats involved in the process should confirm this.

Some interesting links were shared, which seem to confirm this is not realistically self-hostable with the available software :

General sentiment about this issue

In all this part, I want to emphasize that while there seems to be a consensus, this is only based on the few comments from the previous post and may be biased by the fact that we're discussing it on a non-mainstream platform. If you disagree with anything below, please comment this post and explain your point of view.

  • Nobody declared that they had noticed the requests to a third-party server before
  • A non-negligible fraction of Immich users are interested in the privacy benefits over other solutions such as Google photos. These users do not like their self-hosted services to send requests to third-party servers without warning them first
  • The fix should consist of the following :
    • Clearly document the implications of enabling the map, and any feature that sends requests to third parties
    • Disable by default features that send requests to third parties (especially if it contains any form of geolocated data)
    • Provide a way to easily change the tile provider. A select menu with a few pre-configured style.json would be nice, along with a way to manually edit style.json (or at least some of its fields) directly from the Immich config page
35
45
submitted 3 months ago* (last edited 3 months ago) by dipak@lemmy.ml to c/degoogle@lemmy.ml

Hi folks,

I recently migrated to GrapheneOS and am happy with all the open-source, privacy centric apps except for navigation. In my region, OSM has limited mapping data for places, businesses, and landmarks. I contribute whenever I can, but often I can't find the place I need and have to rely on someone else using Google Maps for navigation.

I tried using Google Maps in the browser, but live navigation isn't available. I used to pre-plan routes on Google Maps on my PC, get the coordinates, and input them into OSM. However, that process was very tedious.

Today, I learned that I can use the "Share Place" feature of Google Maps Web. Among the share options - I can use OsmAnd~ to directly open that place in the OsmAnd~ navigation app.

I was about to give in and install the Google Maps app, but then I stumbled upon this feature. Many of you might already know of this feature, but I didn't, and I'm really happy that such feature exists.

Nevertheless, I'd still request OSM users to keep contributing places. So that we would not even have to rely on the browser based Google Maps.

Not exactly a DeGoogle guide, but I believe it might help transitioning.

36
137
submitted 3 months ago by davel@lemmy.ml to c/degoogle@lemmy.ml

https://beta.maps.apple.com/

It doesn’t seem to support Firefox or mobile browsers, at least not.

Maps on the web is compatible with these web browsers

On your Mac or iPad

  • Safari
  • Edge
  • Chrome

On your Windows PC

  • Edge
  • Chrome
37
56
submitted 3 months ago by pelletbucket@lemm.ee to c/degoogle@lemmy.ml

fuck these guys

38
13
submitted 3 months ago by Anonymouse@lemmy.world to c/degoogle@lemmy.ml

As if you need any more reason to degoogle, consider what would happen if Google removed you from their platform tomorrow. This article some of the problems with putting all your eggs in one basket.

39
17
submitted 3 months ago by technomad@slrpnk.net to c/degoogle@lemmy.ml

Thoughts?

40
11
submitted 3 months ago* (last edited 3 months ago) by azerial@lemmy.dbzer0.com to c/degoogle@lemmy.ml

I, switched from Google FI because of lack of customer support and services that were getting less and less, but more costly and costly. I went to T-Mobile. Good service, much the same as Google fi is a first party mvno. Anyway I use a private dns. NextDns. T-Mobile had no clue what a dns was and the super had to Google it. They SEVERELY THROTTLE if you use next dns.

I HATE THAT. What do you use as privacy conscious individuals?

edit: not that! What

41
50
submitted 3 months ago* (last edited 3 months ago) by Blu@sopuli.xyz to c/degoogle@lemmy.ml

I'm pretty far into the degoogling process, and I'm thinking about purchasing a domain and using it for email. I realized I don't want to be stuck with any one email service, so this is pretty much a necessity for me.

I wouldn't self host though, because I understand that's very hard to do.

For people who have already done this: are there any pitfalls or things I should take into consideration before I purchase a domain?

Also, does the tld matter? Are my emails more likely to be sent to spam with a custom domain vs an email provider's?

42
67
submitted 3 months ago by Framasoft@lemmy.world to c/degoogle@lemmy.ml

publication croisée depuis : https://lemmy.world/post/17613422

PeerTube is a decentralized and federated alternative to YouTube. The goal of PeerTube is not to replace YouTube but to offer a viable alternative using the strength of ActivityPub and P2P protocols.

Being built on ActivityPub means PeerTube is able to be part of a bigger social network, the Fediverse (the Federated Universe). On the other hand, P2P technologies help PeerTube to solve the issue of money, inbound with all streaming platform : With PeerTube, you don't need to have a lot of bandwidth available on your server to host a PeerTube platform because all users (which didn't disable the feature) watching a video on PeerTube will be able to share this same video to other viewers.

If you are curious about PeerTube, I can't recommend you enough to check the official website to learn more about the project. If after that you want to try to use PeerTube as a content creator, you can try to find a platform available there to register or host yourself your own PeerTube platform on your own server.

The development of PeerTube is actually sponsored by Framasoft, a french non-for-profit popular educational organization, a group of friends convinced that an emancipating digital world is possible, convinced that it will arise through actual actions on real world and online with and for you!

Framasoft is also involved in the development of Mobilizon, a decentralized and federated alternative to Facebook Events and Meetup.

If you want to contribute to PeerTube, feel free to:

43
21
submitted 3 months ago by halm@leminal.space to c/degoogle@lemmy.ml

cross-posted from: https://leminal.space/post/8396158

I've used LineageOS with microG on my Oneplus 6 for years — so happily, in fact, that I haven't bothered with major updates since version 17 (Android 10). Oops!

Now I've been flashing updates to an older phone, and I might as well continue getting my daily driver up to date. I'm going to dirty flash my way up to the current version (21). But I'm rusty as all heck, and the upgrade instructions seem to have changed since last:

  1. Back in '21 I recall being recommended to disable screenlock (fingerprint/PIN/pattern, etc) before upgrading. Is that still a thing?
  2. With a/b slot devices it used to be necessary to flash ROMs twice or use a copy-partitions or simiilar zip file. The instructions make no mention of it, is that rolled into the upgrade package now?
  3. Finally, is it safe to just upgrade directly from LOS/mG v18 to v21? Because neither LOS main or the mG branch seem to archive older versions but I'd hate to miss some system update or other.

All help is appreciated!

Edited for clarity: Please don't offer suggestions on "better" phones or OSes — my question regards the above only. Thanks in advance 👍

44
14
submitted 3 months ago by No_Support_8363@lemm.ee to c/degoogle@lemmy.ml
45
47
GBoard replacement? (pawb.social)
submitted 3 months ago* (last edited 3 months ago) by VinesNFluff@pawb.social to c/degoogle@lemmy.ml

Title.

I'm not sure I'm ready to go all "lineageOS full degoogle" on my phone because some rather necessary day-to-day apps for me will freak out if I have root, let alone a modified OS. Buuuut GBoard has gotten right in my tit, and now they're offering nightmarish AI generated emoji and I'm like "NO". So.

I don't really care about predictive text or swipe-typing or any of that stuff, I mostly just type normally.

The only nice-to-haves that might entice me would be support for one-handed mode and a configurable keyboard layout.

46
36
submitted 4 months ago* (last edited 4 months ago) by el_abuelo@lemmy.ml to c/degoogle@lemmy.ml

I am currently attempting to degoogle and at the same time move to an entirely self hosted ecosystem.

I've set up a NAS and have syncthing to deal with the dropbox/gdrive type things and have backup on a raid disk. What I am looking for now is a backup solution that can backup to my nas and in the future a remote device - probably to another nas at a family member's hous

Can anyone recommend a backup solution for this?

Technically I am not looking to degoogle as I don't gave a Google solution for this- but I guess I'm looking for a self hosted alternative to GCP backup.

47
17
submitted 4 months ago* (last edited 4 months ago) by MadBob@feddit.nl to c/degoogle@lemmy.ml

I've almost completely removed Google products from my life now, having recently decided to change the OS on my phone, delete Gmail, etc. etc. but only two things remain:

I've looked at Invidious and at Piped and I just can't seem to get the same experience as on Youtube. It's fine if Google knows nothing about me except what I watch on Youtube and what dates I'd put the bins out in 2013, no? (Can't seem to delete that from the calendar) Or if anyone's managed to emulate the same kind of experience Youtube gives on one of the two, please share. I quite like the recommendations but I think it's only possible on the abovementioned by watching a video then looking at the side of the page?

I've got a tablet (Samsung SM-T335) from ten years ago running on Android 5.1.1. I've decided to root it to delete all the bollocks that came installed with it (I've recently factory reset it and only use it for ebooks and Firefox Focus), including the Google stuff. I have to wait a week or something apparently before it'll let me check the OEM-unlocking box but I was wondering if anyone's had any success with this (I've seen people saying you can change the date, you can fiddle with it in xyz manner, but I'm looking to hear people's experiences).

The plan then is to root it, delete the shovelware, and sideload the two apps I want to use. Also curious to hear people's experiences with sideloading, because most of the articles I find on the internet were written by a robot or in the year dot. I've also read that it's impossible to install a custom OS on such an old tablet but I'd like to hear whether it's worth trying at the risk of bricking the thing.

Edit: After waiting a week, the OEM-unlocking never became available, so after searching and searching and having no joy, I decided to just log out of Google on the tablet and it just let me without deleting the apps I'd downloaded. It turns out, too, that this particular version of Android 5 lets you just hide the apps in the list, so I've just hidden all the shovelware and that's good enough for me. I've ended up subscribing to those I was subscribed to on Youtube on Invidious and in doing so I've discovered that a load of videos just have never been recommended to me by Youtube, so I'll see how I go and if the subscriptions thing works, I just have to delete my Youtube account then I'm free of Google!

48
16
submitted 4 months ago by dafunkkk@lemmy.world to c/degoogle@lemmy.ml

I'm trying searx, but like duckduckgo, qwant and ecosia doesn't give me direct answer (Firefox both PC/android). Just google and bing works, any idea (maybe some site that use ai directly without agree or choose the model every time like in DDG) My user scenario will be to use it with kiss launcher on android (will be great if someone know a way to use some ai search with it too) Thanks

49
38
submitted 4 months ago by Psyhackological@lemmy.ml to c/degoogle@lemmy.ml

I have OnePlus 7 Pro that I successfully flashed with LineageOS 21 with MicroG. Do you have some interesting apps or ideas to take advantage of it? I thought of some Magisk modules. Maybe someone is more experience than me! This is the spare smartphone, the main one is GrapheneOS, so I don't mind breaking stuff.

50
32
submitted 4 months ago by jeffreyosborne@lemm.ee to c/degoogle@lemmy.ml

I'm considering buying a pixel 7(a/pro) or pixel 8(a/pro). I was wondering if the longer updates for the pixel 8 impacts grapheneOS, and if that means I should go for the pixel 8. And have any GrapheneOS users here had any issues that they wouldn't have had on Android.

Thanks alot in advance!

view more: ‹ prev next ›

DeGoogle Yourself

7743 readers
1 users here now

A community for those that would like to get away from Google.

Here you may post anything related to DeGoogling, why we should do it or good software alternatives!

Rules

  1. Be respectful even in disagreement

  2. No advertising unless it is very relevent and justified. Do not do this excessively.

  3. No low value posts / memes. We or you need to learn, or discuss something.

Related communities

!privacyguides@lemmy.one !privacy@lemmy.ml !privatelife@lemmy.ml !linuxphones@lemmy.ml !fossdroid@social.fossware.space !fdroid@lemmy.ml

founded 4 years ago
MODERATORS