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.

kbin.life

secret300 , to programmer_humor in Principal Skinner on Immutable Distros

Honestly how I feel right now, well kinda. I was using fedora silverblue but apps kept crashing and shit just wasn’t working out how I wanted. I was excited to try VanillaOS until I did… It was annoying. I was hoping for a system that made it so I can seamlessly use dnf, pacman, and apt in the terminal and it would figure out all the containers for me but not at all. VanillaOS was too much of a hassle to keep track of everything and was just eh. I got fed up enough so I just installed NixOS today and so far I’m loving it. It’s not as hard as I thought it would be but also I’m not doing anything to advanced yet. I plan on messing around with home-manager later. So far NixOS seems like it’s exactly what I was looking for but all this time I avoided it

SaharaMaleikuhm ,

I bet NixOS will be kinda cool once they get a proper wiki in like 10 years or so

Wooki ,

Wiki and official social platform to share configurations and flakes ect! But my god the documentation…

Corbin ,

They have two. If the complaint is that neither wiki is as rich as the Gentoo or Arch wiki, consider that perhaps NixOS users don’t need as much supplementary advice for configuring their systems.

Tangent5280 ,

Every tutorial should be crafted for some hypothetical user stupider than their current stupidest user.

Corbin ,

By induction, that will only make your user base stupider.

secret300 ,

yeah I’m feeling that now…

BonesOfTheMoon , to lemmyshitpost in LinkedIn

LinkedIn is the human centipede of social media.

M0oP0o ,
@M0oP0o@mander.xyz avatar

yeah, like the social media for the villains in every horror movie. Like this is 100% where the guy from saw posts about the method to get the most fear out of a trap.

moosetwin , to lemmyshitpost in This is so freaking funny to me. I love Lemmy
@moosetwin@lemmy.dbzer0.com avatar

https://lemmy.dbzer0.com/pictrs/image/bcfc0a61-ed5e-4499-b2db-25f591538e22.webp

lemmy inherited all it’s circlejerk-y smugness from reddit

Fades ,

lemmy inherited all it’s circlejerk-y smugness from reddit

It’s almost like that’s what happens on social media and has little to nothing to do with Reddit at all

TubularTittyFrog ,

wow, wow, wow.

you aren’t suggesting that it’s people, that are the problem, are you?

clearly it’s only platforms that cause issues. all internet users are divine entities of pure logic and infinite empathy before they are corrupted by the unholy sins of the platform

Aceticon ,
Strykker ,

Of course it did, everyone here came from Reddit.

ClanOfTheOcho , to youshouldknow in YSK how to eBay - in depth

With fees that high, what was your typical profit margin per sale? How were you able to source product at such a high discount?

j4k3 OP ,
@j4k3@lemmy.world avatar

Check other comments in post. Margin was complex and distributed.

Daeraxa , to linux in IDE/Text Editor Recommendations for Go Development on Linux

Pulsar is a fork of Atom under active development. We don’t publish a flatpak (yet) but there is a community maintained flatpak for it.

Otherwise if you want to look at something else I’d give Lite XL, Lapce or even Zed (it has now been open sourced and looks like it has a flatpak available) a look as interesting alternatives.

Don_Dickle , to newcommunities in Weekly active communities promotion thread

I would like to promote Askhistorians becasue no one had posted in a month and the one mod doesn’t answer questions.

Elevator7009 ,

Do you mean /m/[email protected]?

Also,

One important criteria: please only promote communities that have been at least one post in the last 7 days. And if there is none, feel free to post there and then promote it here!

Don_Dickle ,

Yep seems kind of inactive.

Don_Dickle ,

Seems like the mod hasn’t been on within the past six months.

Blaze OP , to newcommunities in Weekly active communities promotion thread

For casual discussions and real life topics

Blaze OP , to newcommunities in Weekly active communities promotion thread
threelonmusketeers ,

Also !physics

Blaze OP , to newcommunities in Weekly active communities promotion thread
luciole , to gaming in Weekly “What are you playing” Thread || Week of August 4th
@luciole@beehaw.org avatar

I’ve been progressing through Divided Reigns. Very indie, retro JRPG. The story reminds me of FFIV & FFVI in good ways. Battles are much more involved then the aforementioned classics though: while remaining turn based there are plenty of types, effects and skills involved. A rage meter brings in some form of planning ahead between turns, somewhat like Octopath Travellers or Bravely Default. All around solid game. Only downside is the dialogs being sometimes pretty silly.

Been playing Assassin’s Creed: Valhalla as well. So here’s my theory: inside Ubisoft there are two wolves. The first wolf is made up of thousands of creative, talented, diverse artisans working hard to make the open world formula fun and beautiful. The second wolf is a handful of suits looking for ways to milk the first wolf’s output for money in all sorts of shit ways. I’ve found out that if you put the Ubisoft launcher in offline mode, you’ve blocked the second wolf. As for the game itself, it remains faithful to the series. There are some welcome improvements, such as the end of garbage equipment loot. In terms of storyline, I can’t say I’m feeling especially involved so far. There is a certain cruelty to the protagonist which I struggle with. On the other hand I must also say that at times the game feels unapologetically woke which I thoroughly enjoy. The side quests are also super goofy.

Solemarc , to programmer_humor in Principal Skinner on Immutable Distros

I’m not against immutable distro’s on principle. I imagine they still have some kinks to iron out, but I haven’t looked in on them for a while.

My opinion on these things is; if it’s a superior system, then it’ll become the new standard, that’s always what happens, and the naysayers are largely irrelevant. Just like computers, smart phones, the internet, etc.

demesisx OP ,
@demesisx@infosec.pub avatar

Yeah. I think they’ll catch on in much the same way that lock files have become the standard in many languages. IMO, it just makes more sense to declare all dependencies atomically. I also think/hope it will supplant our overreliance on Docker containers to achieve these kinds of guarantees (where it actually makes sense or presents undeniable benefits).

Solemarc ,

In the case of docker I’m already at the point where I no longer think it’s necessary. At my current job our stack is JS, PHP and Python. 3 interpreted languages, we then build on Ubuntu and deploy on Ubuntu. I don’t think our project really needs docker, even though it does use it. We also have wasm/wasi prepping to eat Docker’s lunch.

demesisx OP , (edited )
@demesisx@infosec.pub avatar

I’d look into building all of that in a flake just so you can encapsulate (and have a central version control of) all of your dependencies in case something does change.

I’m a bit of a Nix dork but I tend to try and declare my entire dev stack in a flake so it can follow me to every machine. It offers some of the “it works on every machine” guarantees that Docker offers while also forcing the compilation of the stack to happen natively (or at least pulls in some content addressed cache that offers security by being the exact hash for the whole dependency graph). I like that

Here’s how I used the Nix way to declare an interactive Python scraper the other day. With this method, I can lock dependencies between machines as a matter of course without having to use Docker:


<span style="color:#323232;">{
</span><span style="color:#323232;">  description = “Weed Scraper”;
</span><span style="color:#323232;">
</span><span style="color:#323232;">  inputs = {
</span><span style="color:#323232;">    nixpkgs.url = “github:NixOS/nixpkgs?ref=nixpkgs-unstable”;
</span><span style="color:#323232;">    utils.url = “github:numtide/flake-utils”;
</span><span style="color:#323232;">  };
</span><span style="color:#323232;">
</span><span style="color:#323232;">  outputs = { self, nixpkgs, utils }: utils.lib.eachSystem [“x86_64-linux”] (system: let
</span><span style="color:#323232;">    pkgs = import nixpkgs { system = system; };
</span><span style="color:#323232;">  in rec {
</span><span style="color:#323232;">    packages = {
</span><span style="color:#323232;">      pythonEnv =
</span><span style="color:#323232;">        pkgs.python3.withPackages (ps: with ps; [ webdriver-manager openpyxl pandas requests beautifulsoup4 websocket-client selenium keyboard ]);
</span><span style="color:#323232;">    };
</span><span style="color:#323232;">
</span><span style="color:#323232;">    devShell = pkgs.mkShell {
</span><span style="color:#323232;">      buildInputs = [
</span><span style="color:#323232;">        pkgs.chromium
</span><span style="color:#323232;">        pkgs.undetected-chromedriver
</span><span style="color:#323232;">        packages.pythonEnv
</span><span style="color:#323232;">      ];
</span><span style="color:#323232;">
</span><span style="color:#323232;">      shellHook = ‘’
</span><span style="color:#323232;">        export PATH=${pkgs.chromium}/bin:${pkgs.undetected-chromedriver}/bin:$PATH
</span><span style="color:#323232;">      ‘’;
</span><span style="color:#323232;">    };
</span><span style="color:#323232;">  });
</span><span style="color:#323232;">} 
</span>
0x0 ,

if it’s a superior system, then it’ll become the new standard,

That’s not how it usually works, unfortunately…

jwt ,

Yeah, everyone knows the new standard will be whatever gets the backing of the porn industry.

Corbin ,

It’s been two decades. What kinks do you think NixOS has yet to iron out?

nintendiator ,

if it’s a superior system, then it’ll become the new standard

Not even remotely close to how it works. Remember: we had pulseaudio as the “new standard” for a decent while.

LesserAbe , to youshouldknow in YSK how to eBay - in depth

Very detailed, thanks for sharing.

I sense that you may get some satisfaction from the attention to detail and process itself. Discounting those, do you think that reselling items on eBay is ever a reasonable proposition as a primary source of income, or is it always a side hustle? Do you consider there to be better ways to resell? (Obviously that answer will depend on what’s being sold)

j4k3 OP ,
@j4k3@lemmy.world avatar

::: spoiler The term used in retail is Keystone. That means 50% profit margin. It is the benchmark. In cycling retail, few products are proper keystone margins. The issue is that keystone bumps the overburden losses so that the shop comes out to ~30%-35% actual margins. Even in a year round market for cycling, this will barely pay the rent and salaries for a sub par, maybe what I could call B-class location. Most bike shops go out of business within a decade because the margins are too thin. Any shop that lasts longer is either a write off hobby business or has an excellent bike service and maintenance business for low end junk only. The margins are too thin in bikes to make up for the overburden. I learned to specialize in overburden management. This is why I did eBay. I also sold customer trade in bikes and occasional strait consignments. Keystone is the secret to sustainable retail.

The reason retail struggles right now is because online sellers do not have skilled sales staff labor or retail space rent to deal with. It may be possible to run a business on at little as 25%-30% margins in some cases. You certainly won’t get someone like me doing the job though.

I can’t say how viable it would be to do eBay as a business. It takes a lot of space and organization between staging listings, storing listed items, shipping sold items as soon as payment clears, and a photo studio setup. There is a ton of time involved with listings and it is not really possible to make that into a 9-5 job easily. I answered questions and stuff right away during my waking hours. I doubt you could even find someone that could know and understand products like that as an employee. You won’t get a ton of consignments from most people. It is hard for a person to want to get rid of their bike and deal with the numbers in practice.

Let’s say you bring me your 3 year old BMC carbon road bike you paid way too much for and spent $3k5 on new. I look up the sold history for your exact bike and find 3 have sold for $850, $925, and $1225. You don’t know anything about how I’m using sold history, and you looked up your bike on eBay already. You found 10 bikes, of which 3 were sawn into pieces and smashed with a sledgehammer while they were listed for $50 over what you paid 3 years ago for your new bike. Now I have to explain why those listings were created by mental patients in a padded room somewhere. I have to show you that I can only expect to get the average sold history price for your stuff because you race and your 3 years is like a club rider’s decade and is beat to hell. Now I have to tell you what I can offer you. The final offer is $360. Do you take that offer for the bike you paid $3k5 for just 3 years ago? Most people can’t stomach that kind of offer. However that is accounting for all of the fees combined that I must pay other businesses (40%), then that is 40% of the remaining for me to do a massive amount of work to photograph and carefully pack the bike for shipping. I’m taking all of the variable risk and in most cases not getting adequate pay for my time commitments.

In a shop environment, as the Buyer, I was like one of the owners. I could assign employees or schedule them to do whatever I wished. I utilized them to do a lot of the menial work while I managed and oversaw the details on the side. Overall eBay was just a tool for me to manage the inventory of all of my shops. I bought many little eeww and awww flashy products people like to look at but will never purchase specifically because I could easily offload them later on eBay for cost. Like that Felt IA I mentioned in the original post, one of the owners got to ride it for a season. That was a 30% margin purchase. There was no chance I was selling a $14,900 bike out of my stores in an area without many high profile triathlon events. It was just eye candy. I marketed it as a rental bike too just for kicks and giggles, but no one bit that bait. That was a stupid expensive bike at the time and I had to order it well in advance. I sold a ton of other lower end triathlon bikes though and I got a good deal on a size run from Felt and Orbea. That anchor brought people into the store. The bike cost me $10,430 which was hard on my budget for highest end but there wasn’t anything spectacular in Road bikes in the same season, and that is only like 3 high end bikes I sacrificed. I think I sold the wheels for somewhere north of $1500 shortly thereafter. So in the end I managed to pull over cost… technically, but after you factor all eBay fees I actually lost around $3,770 to my advertising and happy owner in a hobby business budget.

In my experience, eBay is too expensive in total for what they offer and the support they give. You’ll find yourself in a pawnshop like business model and you’ll likely need a pawn license if you want to do it long term and be protected. One has to ask why the person is willing to take so little for such high end merchandise in the first place instead of trying to sell it themselves or just giving it away to someone where the act has more useful value.

That is just my take. I would consider it much more viable at a 20% total margin for all overhead from taxes to shipping and listings. At 30% it probably isn’t long term sustainable. At the 40% I experienced, this is the reason eBay goes to massive lengths to obfuscate the total fees involved with selling on the platform. They do not want you to know this number even if you sell a ton of stuff on there. It is hard to track all of it in detail.

I_Miss_Daniel , to techsupport in Cloned Windows 10 drive keeps taking me to automatic repair after using clonezilla

Another approach is to use ddrescue instead of Clonezilla.

corruptian , to technology in US Email Providers - Other then Google, MS, Apple, ...
@corruptian@mastodon.cloud avatar

@furrowsofar

Run your own goddamn email server. Don't trust these big fat companies.

furrowsofar OP ,

Thanks. Like the sentiment. Yes I can do this but my wife cannot. So this option is out. It needs to be a solution that she can maintain alone if something happens to me. This concern gets a lot more real as one gets older.

tal ,
@tal@lemmy.today avatar

I would advise against this.

I am all about running things yourself, run most stuff myself, but email is just a nightmare these days with all the anti-spam stuff out there.

Go ask at !selfhosted. They’ll tell you the same thing. Lots of hassle, lots of potential pitfalls.

Estebiu ,
@Estebiu@lemmy.dbzer0.com avatar

Email in itself is an outdated protocol. Even if you’re selfhosting it, and have the best opsec practices; if the other person uses gmail then you’re fucked anyway.

corruptian ,
@corruptian@mastodon.cloud avatar

@Estebiu

Then again, it's useful to filter out the gmail zombies.

corruptian ,
@corruptian@mastodon.cloud avatar

@Estebiu

Nah, SMTP is not outdated.

Everything since is irrelevant.

A bunch of hipsters inventing job security.

We can sell them to slavers in Brazil and be better off :)

tal , (edited )
@tal@lemmy.today avatar

Not having mandatory security is a legit issue, but there isn’t a drop-in replacement that does, not in 2024. You’re gonna need widespread support, support for file transfer, federated operation, resistance to abuse, client software on many platforms, etc.

And email security is way down the list of things that I’d be concerned about. At least with email, you’ve got PGP-based security. If you’re worried about other people’s mail providers attacking mail you send them, that’s getting into “do you trust certificate authorities to grant certificates” territory, because most secure protocols are dependent upon trusting that.

Like, XMPP with OTR is maybe a real option for messaging, but that’s not email.

EDIT: Not to mention that XMPP doesn’t mandate security either.

furrowsofar OP ,

Security is getting better on the transport side.

Raglesnarf , to memes in silver medal team

the real Mr and Mrs Smith

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