There have been multiple accounts created with the sole purpose of posting advertisement posts or replies containing unsolicited advertising.

Accounts which solely post advertisements, or persistently post them may be terminated.

lemmy.world

possiblylinux127 , to selfhosted in I got an old Cisco AP and I looked inside!

Why something that old? WiFi standards move on and so does security.

However, if it isn’t Broadcom you probably can get OpenWRT running

Krafting OP ,
@Krafting@lemmy.world avatar

Why not, old hardware can ne really cool you know! It’s not for running 24/7 of course, just to sée what once was a cool and expensive product

possiblylinux127 ,

Not for WiFi. You can get a cheap WiFi 5 device that will work way better. Just flash Openwrt to a supported device and you are golden.

possiblylinux127 , to mildlyinfuriating in Look what I got to spend my birthday money on!

I’m so confused

Why are you pissed?

FlyingSquid OP ,
@FlyingSquid@lemmy.world avatar

Take your pick:

Long-term illness bringing us down to one income.

High medical bills.

Having to use birthday money to help pay down those bills.

People on the internet telling me I’m lying about it all…

possiblylinux127 ,

Doesn’t your work cover it?

FlyingSquid OP ,
@FlyingSquid@lemmy.world avatar

I haven’t been able to handle a job since last year, unfortunately.

possiblylinux127 ,

Oh

Get well soon. God speed

FlyingSquid OP ,
@FlyingSquid@lemmy.world avatar

Thank you!

Waffle ,
@Waffle@infosec.pub avatar

The issue is that health insurance shouldn’t be tied to employment. This could very well be a payment plan for a much larger bill, so op is probably paying off $200 a month over a year or more.

Not everyone is so blessed to have a low deductible plan. Most people have high deductible plans. Having a deductible of $6k or more is as good as being uninsured. Most people can not deal with paying $6k for an emergency - it can zero out folks bank accounts or be a hamper on their month to month budget.

corsicanguppy ,

Doesn’t your work cover it?

  1. Probably not
  2. Definitely not with no job
untorquer ,

Employer provided healthcare only covers about %54 of Americans. So in general it’s not a safe assumption.

jimmydoreisalefty , to lemmyshitpost in Why is this the only working proxy for Twitter...
@jimmydoreisalefty@lemmy.world avatar

You are correct, only a few left:

status.d420.de

Reason below:

https://lemmy.world/pictrs/image/7d753cff-80c0-434a-a1cc-99eda97d023d.png

All Nitter public instances shut down.

There are no public instances left for you to use.

Why ?

Nitter has already been struggling to keep up with the changes Twitter made on their side after 2022.

In January 2024, the Twitter API used by Nitter to fetch data from Twitter got shut down.

Without this, there is no way to run instances on the scale needed for the public instances that got listed here.

That’s unfortunate. But I still want to use Nitter !

If you want to continue running Nitter, you can do so using a normal Twitter account.

Do note however, that this cannot and will not scale, and is in a legal grey-area. Proceed at your own risk.

See here for setting up Nitter if you feel brave enough and don’t fear the command line.

But there are some instances ?

Through he thankless work of some there is a tiny amount of instances left. These will be slow and can not expose RSS to prevent the huge volume bot attacks. The latter one also makes captchas and other anti-botting methods a requirement.

HubertManne , to lemmyshitpost in You're in the right place

im so sick of this chain. its like all you see now is this dunkin and subway.

SatansMaggotyCumFart , to lemmyshitpost in “I am a cybernetic organism, living tissue over metal endoskeleton”

Does it come in a vagina shape yet?

Sanctus , to lemmyshitpost in “I am a cybernetic organism, living tissue over metal endoskeleton”
@Sanctus@lemmy.world avatar

I see Skynet is preparing for time travel early on this time.

TheOakTree , to mildlyinfuriating in Look what I got to spend my birthday money on!

Crazy how you managed to photoshop the decimal point to the left by so many digits!

(I know, it’s only a partial payment)

Dasus , to lemmyshitpost in Help me out here
@Dasus@lemmy.world avatar
Etterra , to lemmyshitpost in I will not be taking questions.

I accept the wrong way if, and only if, the wrongifier has cats.

zammy95 ,

I have cats and would never have the audacity to do something as vulgar as that.

Etterra ,
WarmSoda OP ,

I can’t blame that cat. I been watching this for ten minutes and the roll never ends!

pancakes ,
@pancakes@sh.itjust.works avatar

Agreed. My cat would never dare put the roll on the wrong way.

silasmariner ,

Toddlers do the thing too

usualsuspect191 , to lemmyshitpost in I will not be taking questions.

I prefer the look of overhand, but the oversize rolls pull better out of my inset holder when it’s underhand

JetpackJackson , to linuxmemes in We are not the same

<span style="color:#323232;">#!/usr/bin/env bash
</span><span style="color:#323232;">mpc load $1
</span><span style="color:#323232;">mpc volume 80
</span><span style="color:#323232;">mpc random on
</span><span style="color:#323232;">mpc play
</span>

Name it shufflenplay so then you can shufflenplay <playlist name>

MinFapper ,

I think your script didn’t format correctly: https://lemmy.world/pictrs/image/1c987d6a-a966-4cd0-bb99-ba1554680fd9.png

JetpackJackson ,

files.catbox.moe/5ex40l.jpg this is how it looks on my end (for some reason I can’t upload photos rn, it errors out)

renzev , (edited )

Oh man are we sharing mpd scripts? I have this one that lets me search through music directory and add anything to the play queue (so I can add a single track or an entire album or whatever):


<span style="color:#323232;">#!/bin/bash
</span><span style="color:#323232;">
</span><span style="color:#323232;">MUSIC_DIR=$(grep -m 1 -E '^s*music_directorys+' "$XDG_CONFIG_HOME/mpd/mpd.conf" | awk '{printf $2}' | tr -d " | tr -d ')
</span><span style="color:#323232;">MUSIC_DIR="${MUSIC_DIR/#~/$HOME}"
</span><span style="color:#323232;">
</span><span style="color:#323232;">cd "$MUSIC_DIR"
</span><span style="color:#323232;">CHOICE="$(find . | cut -c 3- | dmenu)" || exit 1;
</span><span style="color:#323232;">
</span><span style="color:#323232;">mpc insert "$CHOICE"
</span><span style="color:#323232;">mpc play
</span>

There’s also this one that lets me save the currently playing song to a playlist of my choice. It’s good if I’m listening to a new album or a new artist and suddenly think “yeah, this song really fits with the mood of X playlist”:


<span style="color:#323232;">#!/bin/bash
</span><span style="color:#323232;">
</span><span style="color:#323232;">MUSIC_DIR=$(grep -m 1 -E '^s*playlist_directorys+' "$XDG_CONFIG_HOME/mpd/mpd.conf" | awk '{printf $2}' | tr -d " | tr -d ')
</span><span style="color:#323232;">
</span><span style="color:#323232;">choice="$(mpc lsplaylists | dmenu)" || { echo "No choice." ; exit 1; }
</span><span style="color:#323232;">MUSIC_DIR="${MUSIC_DIR/#~/$HOME}"
</span><span style="color:#323232;">
</span><span style="color:#323232;">mpc current -f '%file%' >> "$MUSIC_DIR/$choice.m3u"
</span>

Here’s my script to shuffle play an existing playlist as well:


<span style="color:#323232;">#!/bin/sh
</span><span style="color:#323232;">
</span><span style="color:#323232;">choice="$(mpc lsplaylists | dmenu)"
</span><span style="color:#323232;">mpc clear
</span><span style="color:#323232;">sleep 0.1
</span><span style="color:#323232;">mpc load "$choice"
</span><span style="color:#323232;">sleep 0.1
</span><span style="color:#323232;">mpc shuffle
</span><span style="color:#323232;">sleep 0.1
</span><span style="color:#323232;">mpc play
</span>

The sleeps are to prevent Cantata (graphical mpd client) from shitting itself if I run this script while it’s open. Also notice mpc shuffle instead of mpc random on. It shuffles the current playlist, but keeps the linear play order, so that I can add songs to play right after the current one.

JetpackJackson ,

Oooh those are nice! I’ll have to try mpc shuffle out then, and even though I generate my playlists with beets, I’ll definitely try out the save to playlist one!

Siegfried , to lemmyshitpost in I will not be taking questions.

Why do we assume that is a frontal view?

chemicalwonka , to memes in Also "parasite".
@chemicalwonka@discuss.tchncs.de avatar

or oligarch

PhlubbaDubba , to lemmyshitpost in “I am a cybernetic organism, living tissue over metal endoskeleton”

I have no mouth yet I must scream

Jarix , to mildlyinfuriating in I ordered my daughter a pizza, something I don't usually do. I got Domino's smallest size with two toppings. I got her cheese sticks and two sauces and tipped the driver 20%. $31.07.
gerbler ,

Pizza is always fucking insanely overpriced. I feel like this wasn’t always the case…

ASeriesOfPoorChoices ,

yeah, love that uber surcharge. 🤦‍♂️

  • All
  • Subscribed
  • Moderated
  • Favorites
  • random
  • lifeLocal
  • goranko
  • All magazines