But my question is about the user experience and UI. I can run a docker script, but I care about the thing I can see and interact with.
She/They
But my question is about the user experience and UI. I can run a docker script, but I care about the thing I can see and interact with.
All I read is Marketing Tech Speak that sounds no different than anything else that gets advertised in my face. At work, we use Teams. It is a pain sometimes when it gets a little buggy, but integrates into SharePoint/OneDrive and the noise suppression in meetings is pretty awesome. At home I use discord or GChat because that is where all my friends are. I don’t assume I have privacy on any of these platforms and they all work on my phone and computer.
How is the user experience? Ultimately, give me privacy, but if the user experience and UI don’t give any improvements over the corporate ones, I will have to try it some other time.
You have to have a really high AC, which is really easy to get for Shadowheart/Cleric with all the heavy armor and other healer gear available. Add the Blood of Lathander mace, and you are set.
Shadowheart, from Baulders Gate 3
I loved decking her out in BG3. Mobs trying to get her to lose concentration was adorable. She just stood there, with that expression.
Everything runs 24/7, but now I am thinking about theoretical power saving modes. Besides any built in power saving whatever (a little clueless), you could always throttle the CPU more. Not sure if it would be worth it without testing with a power meter.
That’s the thing. I use Google Pay for 90% of the places I go and that isn’t something I am willing to give up. Also, it looks like Amex isn’t supported either. Google does 7 years of updates now.
My guess? Probably a mix of Google Evil (true), and not understanding you are talking about Pixels.
I switched to Pixels after the whole Note 7 debacle. I even have the Note 7 t-shirt Best Buy gave out for those of us with pre-orders. It was really really shitty timing as I was traveling a lot for work and I am trying to remember if I even had a backup phone to use. I may have already traded my old phone in at the time, but had something in a drawer I could use.
Evil Corp be damned, my phone just works. It doesn’t lag. The pictures are awesome. Screen is nice. I just need all of this AI assistant shit to go away. I got it to STFU about it at least and my phone can go back to being a phone. Gemini can rot.
I haven’t done it in ages as I have a Pixel, but the norm used to be go to XDA Developers. Everything you need should be there. Guides, reputable links, etc.
Sorry, didn’t make it home until today and not sure if you get notifications on edits. You will need a monitor and keyboard hooked up to your server as you will not have ssh access until the network config is “fixed”. I would do the below with the GPU removed, so you know 100% that your networking config is correct before mucking about further.
Add a /etc/systemd/network/99-default.link
with the below contents.
# SPDX-License-Identifier: MIT-0
#
# This config file is installed as part of systemd.
# It may be freely copied and edited (following the MIT No Attribution license).
#
# To make local modifications, one of the following methods may be used:
# 1. add a drop-in file that extends this file by creating the
# /etc/systemd/network/99-default.link.d/ directory and creating a
# new .conf file there.
# 2. copy this file into /etc/systemd/network or one of the other paths checked
# by systemd-udevd and edit it there.
# This file should not be edited in place, because it'll be overwritten on upgrades.
[Match]
OriginalName=*
[Link]
NamePolicy=mac
MACAddressPolicy=persistent
I forget if you have to reboot, but I am going to assume so. At this point, you can get the new name of your nic card and fix your network config.
ip link
should list all of your nic devices, both real and virtual. Here is how mine looks like for reference, with the MAC obfuscated:1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
2: enxAABBCCDDEEFF: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq master vmbr0 state UP mode DEFAULT group default qlen 1000
link/ether AA:BB:CC:DD:EE:FF brd ff:ff:ff:ff:ff:ff
3: vmbr0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
link/ether AA:BB:CC:DD:EE:FF brd ff:ff:ff:ff:ff:ff
You will need to edit your /etc/network/interfaces
file so the correct card is used.
/etc/network/interfaces
, just in case you mess something up.sudo vim /etc/network/interfaces
(or whatever text editor makes you happy)
It will need to look something like below. I have to have DHCP turned on for mine, so your config likely uses static. Really all you need to do is change wherever it says enp yada yada to the enxAABBCCDDEEFF
you identified above. source /etc/network/interfaces.d/*
auto lo
iface lo inet loopback
iface enxAABBCCDDEEFF inet manual
auto vmbr0
iface vmbr0 inet dhcp
#iface vmbr0 inet static
#address 192.168.5.100/20
#gateway 192.168.0.1
bridge-ports enxAABBCCDDEEFF
bridge-stp off
bridge-fd 0
sudo systemctl restart networking.service
Hopefully at this point you have nework access again. Check the below, do some ping tests, and if it doesn’t work, double check that you edited the interfaces file correctly.
sudo systemctl status networking.service
will show you if anything went wrong and hopefully show that everything is working correctlyip -br addr show
should show that the interface is up now.lo UNKNOWN 127.0.0.1/8 ::1/128
enxAABBCCDDEEFF UP
vmbr0 UP 192.168.5.100/20
At this point, if all is well, I would reboot anyways, just to make sure. If you add any GPUs, sata drives, other PCI device, disable/enable wifi/bt in the BIOS, or anything else that changes the PCI numbering, you don’t have to worry about your NIC changing.
I am not at home, but what I did was change the 99-default.link file. I found this from the two pages below. https://wiki.debian.org/NetworkInterfaceNames#CUSTOM_SCHEMES_USING_.LINK_FILES https://wiki.debian.org/NetworkInterfaceNames
Basically, by doing this, your nic cards will be forcibly named using the mac address:
#/etc/systemd/network/99-default.link
[Match]
OriginalName=*
[Link]
NamePolicy=mac
MACAddressPolicy=persistent
Afterwards, you will need to reboot and then update your network config file to use the correct names. I don’t ever change the network config with the GUI in proxmox as it has wrecked it too many times. I will update this reply again later with some more information on what to do.
I changed my settings to name nic cards by mac address instead of the enumeration as I got sick of the name changing when I would add/remove pci devices.
I use this on all on my Pis. It just works. I like the text config file for headless installation and how you can even add scripts to run on install too.
Ok. I tried Firefox for about a month on my Android phone and Mac, but unfortunately had to go back to Chrome on both. I don’t really know what to do at this point. I run enough firewalls and ad blockers that using Chrome has never particularly bothered me from a usability standpoint, but I get the point everyone is trying to make. However, I also don’t want to spend weeks of my life fighting to get yet another open source program to work the same as the “other” program, or find some substitute that I can live with.
I used to use Firefox when I was a kid and loved all of the extensions. However, it seems severely lacking now. I tried to find something to give me group tabs, and found old abandoned projects or some tree thing that made 0 sense to me. I saw an article I think explaining that it is coming? I don’t understand why a feature like this is missing when it used to exist a long time ago. Seems like basic functionality to me. Also, why is the tab bar so big? It takes up a lot of screen real estate.
The thing that killed it for me was the lack of PWA support, which is how I have used Outlook for around 6+ years. I fought with the extension for a while and things sort of worked on and off for a few days here or there, but half the time it would open emails in the main browser anyway. Once it got to the point where Outlook was completely blank and refused to load at all, I gave up. I could never get it to work again. I hoped I could maybe setup the PWA to just be in Chrome or Safari, but it just opens it as a tab in Firefox anyway. I tried, but I am not going to spend hours fighting with it anymore at this point and it would be nice if it was built into the browser instead of a random extension.
It was a better experience on the phone, and I like the bar on the bottom, until I realized it was draining my battery. I found a thread of users complaining about it for the last few months with no fix. I don’t even use the sync feature, but that supposedly is the culprit? Phone kept dying and I barely used it. Looked at the battery usage screen and there it was, almost the top item. I would love to use Firefox on Android, but not at the expense of my battery. Sorry.
I already have a really nice wallet and phone case. Things are hard enough as it is to fit into my pockets. I personally have no problems with my Pixel 6 and I really don’t want to create them without a really good reason.
Having the digital wallet has saved me multiple times in the past with fraudulent payments and lost/damaged cards. When you are waiting for your new card in the mail, the digital payment system that is linked with your bank/CC is still able to be used in the meantime. That means I can go get groceries and gas. I have had it take over a week to get a new card. If I am traveling/out of town, then it is even a bigger mess.
I understand that Google is evil, but there are some things that I am ok with them tracking, such as my location with Google Maps Timeline. As long as I can mostly block out the advertising on my phone with AdGuard, that will just have to be enough at this time.
You had me almost convinced to try this on mine up until the NFC. I use contactless payments on mine at 90% of the places I shop, so that is a deal breaker for me.
I ended up getting it from them directly. I am on Android 90% of the time and don’t pay for the license from the Apple store. No idea if that one is a single device or the same as the multi-device. I tend to not do things from the Apple store as I don’t have an iPhone and they seem to want or assume you have one. Just like I can never use their watch (not that I want one).
I use AdGuard both on my Android phone and iPad. Not quite as good on the iPad because Apple doesn’t make it easy, but definitely makes a huge difference. For me, $30 a year is worth it and you can use it on 3 devices. I got sick of the ads in apps that were downright disturbing in some cases and reporting them didn’t do a whole lot. Browser extensions can do a lot more to tidy up the experience, but I will take what I can get.
As someone who is out of the loop a lot, what is it about Docker that you hate? What do you use instead?
It took me weeks to wrap my head around it, but now I enjoy being able to spin something up without too much work. At work we have the whole CICD thing with Docker and K8, but I am pretty far removed from what they have to do in the run files.
What other kinds of workflows do people use these days?
Thank you for answering the question! I am genuinely both trying to make a point and still be open to try new things. To me, there seems to be a real downward turn on UI/UX in a lot of applications these days, corporate included. When they mentioned the bit about supporting corporate, I have a hard time believing they will get very far with that customer group right now.
I really wish software, especially FOSS, would stop making the UI the afterthought. I try to keep a holistic view when designing things and everyone has a seat at the table. I wonder if projects are boxing themselves in and making it harder for the UI teams to properly integrate, and vice versa? I will happily take criticism and ideas from pretty much anyone, especially outside my immediate teams.
I am pretty out of the game on that as I spent quite a few years doing controls engineering instead. I am back in Software now and I feel old and a little lost. I graduated back in 2012 and we didn’t have all of these crazy developer roles and more specialized degrees. They were trying to get a Game Design program started when I graduated, and it was supposedly a mess for a few years.