

They sound like twats. There’s something ugly about exploiting a cheaper cost of living overseas and still complaining about it to the locals. I have suspicions where these videos were filmed.


They sound like twats. There’s something ugly about exploiting a cheaper cost of living overseas and still complaining about it to the locals. I have suspicions where these videos were filmed.


The UK complaining about Australia is one of their favourite pastimes. We too in Australia feed off their tears and it would sincerely break our hearts if they were to stop.
The one on the left, because I have friends and when they visit they also expect to drink from a glass.
There’s a trend to arrange everything like a sculptures in the louvre. It’s a cupboard, and it has doors for a reason.
This does not spark joy.


Sorry, I also had more information, but I was falling asleep as I wrote that message:
It has been pretty easy to find Chartreuse in where I live, but I have heard that it has become hard to get yellow and green Chartreuse in the US. In my opinion, while a Naked and Famous is a great cocktail, the Division Bell isn’t too far from it and is cheaper to make. The Mezcal is certainly more dominate.
Sea Legs has been one of my favourite drink over the last half year. The peat from the Islay(pref. Laphroaig) pairs wonderfully the mezcal. If you like the Modern Medicine or the Penicillin, I’m pretty confident you would love this drink. I highly recommend making your own orgeat (if you’re not already). There is a hack where you can make it from oat milk, which is easy and much nicer than store-bought. Every time I’ve been served a drink with store-bought orgeat, its tasted awful.
I also use my celery bitters in a jalapeño & grapefruit cordial, which makes for a good mocktail. It works well with those kind of flavours.
Here’s a video on the Sea Legs: https://www.youtube.com/watch?v=8Hll45WbmWc


My favourites are:


These strategies are quite nice. I was worried I would have to show my license which I’m not entirely comfortable with. I can easily talk about how my friend skateboarded to my house after the breakfast club first aired so we could excitedly discuss it and I could take a photo of drinking a pint while driving. Easy.


Fair call, but it’s worth adding he is still the chairman and part of the Toyoda dynasty and clearly representing the brand.


Im mid 40s now. For me it was:
25-35, drinking, concerts, bars. Some non-alcohol activities.
[after this time a majority of my friends have had kids and/or been priced out of my city]
35-45, Coffee catchups, work parties, activities like D&D. Traveling to see older friends. Slowly learning how to socialize without alcohol.
It does require more effort the older you get. I can get introverted, making it harder to invest the effort. Having an outgoing wife has really helped me in this regard.


deleted by creator


Thanks! I will give this a go next batch I make. I’m always looking for new mocktail ideas.


A true anti-anti-fascist. If only there was a simpler name for that, but nothing is coming to mind.


My servers are one NUC clone and a 4*16tb NAS. I have a lot of docker containers running constantly and yet cooling has never really been an issue for me. A larger concern is I would rather not see it, so It’s hidden it under furniture. The fans on the NAS have attracted a layer of dust, and one day I might clean it. Kidding. I wont.
My security team involves a bull dog named Sophie, who has never done more than lick any other being, but I’m banking on burglars not knowing this.


Agreed. This sort of thing works well for when there is something difficult to visualise like maps of a warzone or how a budget is being divided. All it does here was make the article harder to read.


Ooooh I would not be throwing that stone in such a glass house. Has Australian Coal ever released their donor list? As far as I can tell, they have not.


Courting foreign influence from the opposition undermines their case and doesn’t project the sorely needed leadership from the LNP. Not a good look, Sussan Ley.


I say it’s like reddit when it was smaller and less obnoxious. If they inquire more, I discuss federation by describing email. I mostly try to sell that people are nicer and you start to know your netisan compatriots. I haven’t been successful in convincing anyone to join as far as I know.
I got banned from a subreddit because the mod had this "not with us, you are against us"argument. It was years ago, but IIRC I was posting against a comment calling for assaulting men to balance out the abuse of women.
To be honest, I think I may have seen more banning on Lemmy though. I’ve noticed a few cases where the admins have banned people with objectionable opinions. In all fairness, these were the type people you would avoid at parties, but it does give me pause. In reddit if you get banned from a particular subreddit you still keep your identity and participate in other subreddits. In Lemmy, you are at the mercy of your server, and if a large server bans you, it would essentially remove you from all of their communities that otherwise might accept you. I worry that this is creating an echo chamber.


@Nath, Are you talking about soaking the chickpeas the night before? I used to do that in giant tubs when I was younger and worked in a restaurant, but there’s no way I’m remembering to do that for a small snack the next day. Are people really this functional?
Trying to be as helpful as I can, I think you might consider streaming (Plex/Jellyfin) and downloading (*arrs) as two seperate concerns.
Arrs:
For now don’t worry about anything other than sonarr (tv shows) or radarr (movies). you can add the more complexity once you get it working.
These *arrs do two main things:
I would create a minimum viable config like this:
[sonarr] ----> [transmission or whatever torrent/nzb client]
at that point you should be able to download tv shows and you can building on it. Next steps might be nzbget, radarr or seerr (which is a very nice way to surface this functionality to your users), or connect things like prowlarr.
The other thing I would say is use something like Docker for this. Easy to make changes that way and provision new services. Here’s my arrs stack’s docker-compose.yml (which is by far not best practice, but it might help you)
services: ############################## # Transport ############################## sabnzbd: image: 'linuxserver/sabnzbd:latest' container_name: sabnzbd extends: file: ../_templates/template.yaml service: large networks: - arrs-edge volumes: - './sabnzbd:/config' - '/media/web/downloads:/downloads' - '/media/web/incomplete-downloads:/incomplete-downloads' - '/media/web/watched:/watched' transmission-openvpn: image: haugene/transmission-openvpn container_name: transmission extends: file: ../_templates/template.yaml service: large networks: - arrs-edge devices: - /dev/net/tun cap_add: - NET_ADMIN ports: - 9091:9091 volumes: - /media/web/torrent-data:/data - /media/web/books-import/torrents:/data/watch - ./transmission/config:/config ############################## # Arrs ############################## radarr: image: lscr.io/linuxserver/radarr:latest container_name: radarr extends: file: ../_templates/template.yaml service: nolimit # environment: # - UMASK=022 volumes: - './radarr:/config' - '/media/movies:/movies' - '/media/web/downloads:/downloads' - '/media/web/torrent-data:/torrent-data' networks: - arrs-edge sonarr: image: ghcr.io/linuxserver/sonarr:develop container_name: sonarr extends: file: ../_templates/template.yaml service: nolimit volumes: - './sonarr:/config' - '/media/tv-shows-1:/tv-shows' - '/media/web/downloads:/downloads' - '/media/web/torrent-data:/torrent-data' - '/media/web/torrent-data/completed/sonarr:/data/completed/sonarr' - '/media/tv-shows-3:/tv-shows-2' networks: - arrs-edge prowlarr: image: lscr.io/linuxserver/prowlarr:latest container_name: prowlarr extends: file: ../_templates/template.yaml service: medium volumes: - ./prowlarr:/config networks: - arrs-edge seerr: image: ghcr.io/seerr-team/seerr:latest init: true container_name: seerr extends: file: ../_templates/template.yaml service: medium volumes: - ./seerr:/app/config networks: - arrs-edge - pangolin-arrs-edge healthcheck: test: wget --no-verbose --tries=1 --spider http://localhost:5055/api/v1/status || exit 1 start_period: 20s timeout: 3s interval: 15s retries: 3 restart: unless-stopped networks: arrs-edge: external: true pangolin-arrs-edge: external: truePlex vs Jellyfin
Everyone one loves to talk about how they use jellyfin, but I suspect many more people quietly run Plex. You should probably try both, but some things to be aware:
Jellyfin:
Pros:
Cons:
Plex
Pros:
Cons:
Personally, I think Plex is best if you want to access this stuff remotely and you haven’t yet configured a reverse tunnel that can stream media. If you have a pangolin, or you’re comfortable opening a port on your home router, or you have no need to stream remotely, then Jellyfin might be worth looking at if for no other reason than its ecosystem of plugins. I have both available remotely, but I use Plex more than I use Jellyfin.