Technology will make your life easier

Well, totp is no problem, but the weird proprietary stuff may well be.

2 Likes

I am talking weird proprietary banking stuff.
The banking software both our banks use is actually written locally (I applied to work at the place last year but it is not where I work now) there is a non-zero chance that it would work on non-standard androids.

3 Likes

I’ve been using /e/ on a Fairphone5 for a couple of weeks. It seems okay so far. There’s an app store equivalent that you can use to filter for open source, tracker free apps, and it assigns everything a privacy rating (although the service used for that seems a bit flaky). The biggest complaint I have so far is that i can’t get autocorrect to work in a browser :unamused:

There are some other built-in privacy tools as well:

(Bonus points for guessing the worst culprits on the data leak list)

From the research I did beforehand, I understand that GrapheneOS is popular with the especially security and privacy concious, although it only works on Pixels

3 Likes

Is there a way to check which apps would work?

We only have a handful that I really really need to work (banking 2f as mentioned and public transport tickets, Home automation things, Lightroom–only me)

My biggest problem will be Lightroom. I don’t think I can go away from the playstore because I want to keep using Lightroom which as of now is non-negotiable for me having recently tested some alternatives and finding only suckage.

1 Like

Only if someone’s tried and posted about it.

Key things if you go non-Google Android: F-Droid is its own fully-open app repository. From that, you can get Aurora Store, which is an illicit view onto the Google app store.

4 Likes

There’s a list of banking apps that work on /e/ here:

2 Likes

Thanks :slight_smile: That’s hugely helpful. Because my bank is indeed listed with both apps even. My partner’s bank isn’t but since they are using the same software just with different branding I am assuming… it will work as well.

PS: I keep forgetting that for ease of use I have my work-phone on the same hardware and I doubt that would ever work on non-standard android.

2 Likes

Our optical fiber router appears to have died overnight. Since it’s owned by NTT, not us, there’s nothing we can do except wait for them to replace it, and apparently the earliest that can happen is tomorrow.

So, can’t work today. This is awkward.

8 Likes

Trying to figure out what was going on in a complex web site, I enabled the debugger’s tracing feature. I could tell it was having an effect, because the web request now took a really long time, but I couldn’t find the trace file. I checked the docs and found a function to tell me the file path, and that worked and told me it was writing it under /tmp. Which would have been great if the file was there. I then spent a really long time trying to figure out what might be preventing it from writing the file.

Turns out that it had successfully written the file every single time, and that systemd has a ā€œPrivateTmpā€ feature which was causing what the web server believed to be /tmp to actually be /tmp/systemd-private-a5761e3e695840ce872b6b39dec0468d-apache2.service-ni9mIr/tmp

So it wasn’t lying to me, but it also had absolutely no way of giving me a useful answer. So far as I can see, systemd doesn’t even set an environment variable that programs could look for if they knew about it?!

I only discovered this by doing a system-wide find as the root user.


Edit: This was still driving me nuts because the directory changes every time you restart the service (which I need to do to change the debug settings), at which point it purges the old directory (which makes things lot more temporary than one would expect)! I expect I could have told it to write the trace files somewhere else, but stackoverflow told me how to disable the behaviour for a given service, and I’ve opted to do that for my local dev environment.

A list of services configuring this feature:

find /lib/systemd -type f -print0 | xargs -0r grep PrivateTmp | sort

2 Likes

systemd may have some uses for some people (specifically people who want fast-booting desktops and VMs) but every time I have interacted with it has reinforced my determination not to use it.

2 Likes

I just ordered a Microbit for myself to prepare for the upcoming Girl’s Day in April–I will participate for the first time and somehow landed the job of ā€œpresenter/coach/teacherā€ at my new company (someone else does the organizing). I think they are quite happy to have a female dev to the whole thing :slight_smile: and I really want to try and convince some girls that tech jobs are for them–after all I am after the split of my department into two halves once more the only woman in my half department.

We plan on doing some programming with the Microbit and I need to figure out what exactly it can do.

10 Likes