opensource

This magazine is from a federated server and may be incomplete. Browse more on the original instance.

anon5621, in Will the new judicial ruling in the Vizio lawsuit strengthen the GPL?
@anon5621@lemmy.ml avatar

Thanks for sharing.This is really important.

JoeKrogan, in Haier, the air conditioner maker, takes down open source third-party Home Assistant integration
@JoeKrogan@lemmy.world avatar

Another one to the boycott list

comfortablydumb, in Haier, the air conditioner maker, takes down open source third-party Home Assistant integration

How many GBs do these ACs upload to the company’s cloud?

Dehydrated,

Too many probably

pearsaltchocolatebar,

That ended up being a router error. It was actually something like 1mb.

StrawberryPigtails, in Accessing NAS when not on LAN

You might try Tailscale or Wire Guard. Either can be used to create a mesh VPN that can include any device you want. Connect your devices to the VPN then you just access it like it is on your local network. Of the two I use Tailscale. Dead simple to setup on pretty much any device.

I looked into Nextcloud, but that requires paying for a domain

Depending on what installation method you choose to go with, you don’t need a domain. It’s just very much helpful to have one. Especially if you decide to have it public facing. Plus domains are cheap. A bigger issue for us self hosters is dealing with dynamic IPs. Most of the time you can buy a static IP from your ISP, but if that is not an option, most domain providers provide a way to deal with variable IP addresses.

And yes, Tailscale does ignore dynamic IP addresses. I think Wire Guard does as well as Tailscale is built on Wire Guard.

thirdBreakfast,
@thirdBreakfast@lemmy.world avatar

Absolutely Tailscale - I use it for this exact situation of Syncthing from my NAS. Simple to set up, and secure.

avidamoeba,
@avidamoeba@lemmy.ca avatar

Adding to this, Tailscale’s clients are open source and there’s a community-developed open source control server component called Headscale that can replace the Tailscale’s central server if and when needed. I tested it recently and it seemed to work fine.

ebits21,
@ebits21@lemmy.ca avatar

I’d also suggest Tailscale, it’s how I access my Synology away from home.

I’ve setup wireguard before but… Tailscale is so damn easy. And no need to open ports!

lung, in In case you missed it: Fossify (A fork of Simple Mobile Tools)
@lung@lemmy.world avatar

Oh cool! De-googling never seemed easier … I think we are finally ready for open source phones

butt_mountain_69420, in Raspberry Pi is now manufacturing 70,000 Pi 5s per week, will surge to 90,000 in February

But you can get a used thinkcentre tiny mini micro on ebay for $80. Wtf would I spend 100+ on a pi?

RagingRobot,

Yeah I am loving all these micro Linux computer options. Not much bigger than a raspberry pi but it’s a full computer. If you need gpio you can hook up an Arduino through USB and connect super easily. The one I have been using even has an integrated video card. All for around $100 and they are always in stock lol.

Thermal_shocked,

Yup. I use one for DNS / pihole / remote into network. Already tiny, easily replaceable parts and any OS. I do prefer the dells over Lenovo though.

HerrBeter,

Energy efficiency?

ShortN0te,

Most ppl do not bother to calculate that in(especially idle consumption) or living in an area where it basically does not matter.

But yes, no x86-64 device comes close.

Duamerthrax,

I was thinking more along the lines of battery powered operations. I can stick a Pi, a car battery, a solar panel into a weather proof box and set it in the woods if I needed to.

echodot,

Wouldn’t you just use a cheap lithium ion battery I’m not sure why you go for a lead acid.

Duamerthrax,

It’s just an example, but you can pull an old car battery from the junkyard and they have better temperature extremes. NiMH from a wrecked hybrid is also a good option for durability.

butt_mountain_69420,

You’ve got a point, but whatever you’re doing innawoods can probably be accomplished with a $40 pi, not a $100+ one.

jenny_ball,
@jenny_ball@lemmy.world avatar

can you link to one? i am interested

Thermal_shocked,

www.ebay.com/itm/265930849039?mkcid=16&mkevt=…

Prices vary on specs, but these work very well.

jenny_ball,
@jenny_ball@lemmy.world avatar

thank you. that’s a good deal.

butt_mountain_69420,

first search “thinkcentre i5” www.ebay.com/itm/335211475014?hash=item4e0c293046…

Tango, in It's joever. Tachiyomi will no longer be actively developed.
@Tango@lemmy.ml avatar

Absolutely legendary app and developer that will be missed. The animanga industry is ruthless.

cbarrick, (edited ) in ListenBrainz - Track and share the music you listen to

Neat.

So this is like Last.fm, but run by the MusicBrainz folks?

PropaGandalf,

Exactly!

PsychoMan,

There’s also libre.fm as.anotother alternative.

t0fr,
@t0fr@lemmy.ca avatar

Yes, it’s pretty awesome. And they’ve slowly been adding more and more features

danielbln, in Platformer is leaving Substack for Ghost, an Open-Sourced publishing platform

Better host it yourself, because the managed version of Ghost has the lovely dark pattern that you cannot cancel your plan without them immediately deleting everything, no matter if your plan is still paid for for another few months or not. Really left a bad taste on my mouth.

demesisx, (edited ) in Don't be that guy.
@demesisx@infosec.pub avatar

Don’t be that second guy, use Nix.

I agree with OP, but the whole confrontation could’ve been avoided in the first place if all dependencies were spelled out to the letter in the form of a flake.nix with the latest accompanying flake.lock file.

hperrin,

It’s a frontend JavaScript UI library. I can’t control what other dependencies people install alongside my library, or even whether they follow my library’s dependency list.

ParetoOptimalDev,

Isn’t package.json for controlling what dependency versions people install with?

I think I’m missing something.

jjjalljs,

Yeah JavaScript is a horrible language and ecosystem in a lot of ways, but package.json and friends don’t really give me much trouble.

And even if you hose something, you should be able to clear it out and reinstall easily.

I’m assuming the maintainer didn’t (knowingly) make a breaking change in a minor/patch release. That’s a high crime.

hperrin, (edited )

Yes, and I have a package.json that lists dependencies and the versions I test with. You can force a different version though. I don’t think that’s what happened here. I’m guessing it’s a version of some dependency that should work, because it was released as a minor version within the range I specified, but doesn’t actually work.

It could also be an issue with the build system/bundler, which I can’t really control either.

demesisx,
@demesisx@infosec.pub avatar

Are you sure about that?

taladar,

Don’t be the guy who ignores reports that your software doesn’t work with new dependency versions just because you can’t be arsed to test with anything else even if the report looks like a legitimate problem.

hperrin,

I have been testing with the original reporter of the problem. This guy came in, said he had the same problem, then cursed at me.

taladar,

That was less directed at you and more at the idea that just pinning versions solves the issue which is unfortunately very frequent among proponents of things like vendoring, nix, Docker containers and similar tools that allow a project to stay on an old version for potentially years. Sorry if that came across that way.

Ashiette,

I swear Nix users are the mormons of the Linux world.

AlmightySnoo,
@AlmightySnoo@lemmy.world avatar

They’re worse than us Arch users (btw)

fl42v,

As a former arch user, I advocate for both XD

natecox,
@natecox@programming.dev avatar

I’m a nix user and I’m disappointed by how apt this comparison is.

noodlejetski,

ehehehe you said “apt”

Trail,

Did you get it?

noodlejetski,

I SEE WHAT YOU DID THERE KIND SIR I DID GET YOUR SUBTLE REFERENCE

ParetoOptimalDev,

Yes, but one of our promises is real… Just a real pain in the ass sometimes.

Abnorc,

Are you saying that I will get my own planet if I use Nix?

demesisx,
@demesisx@infosec.pub avatar

Guilty. But substitute Mormonism with the proper way to do things.

null,

Upvoted in Nix solidarity. One day they’ll understand.

demesisx,
@demesisx@infosec.pub avatar

I think it’s funny. We are the new “I use Arch, BTW” and I’m happy to embrace it.

null,

I just hate having to re-configure all my stuff whenever I set up a new box 🤷

demesisx,
@demesisx@infosec.pub avatar

Agreed. That and I hate Docker with a burning passion.

jadedwench,

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?

demesisx,
@demesisx@infosec.pub avatar

Nix flakes are all I need to completely replace Docker.

Ephera, in Android dictionary app that uses Wikitionary as a backend

I’ve been using QuickDic since forever: f-droid.org/…/de.reimardoeffinger.quickdic/

squid_slime, in GustavoASantos/Noti: Quick glance, clear progress
@squid_slime@lemmy.world avatar

Get this on fdroid! :)

sag,
@sag@lemy.lol avatar

Thinking about this. I will open a issue on repo tommorow.

optissima,

Issue created!

kzhe, in Looking for Notes App for Android & Linux

Sync Obsidian with Syncthing.

redempt,

I do this too and it’s awesome

96VXb9ktTjFnRi, (edited ) in Enshittification of GitHub?

I’m not a developer so I’m not very familiar with this world. But it kind of amazes me that the code for so many open source projects are hosted by Microsoft. Isn’t there a FOSS alternative? edit: seems Gitlab is an alternative. Then the question is, why are people using microsoft products?

DacoTaco, (edited )
@DacoTaco@lemmy.world avatar

The power of git ( the backbone of github ) comes in that you can easily take a repository and move it to a different server. Its like, 3 commands? ( git vlone, git add remote, git push ). So if people would leave github, nothing is lost :)

federico3, (edited )

Github is designed to centralize git (as the word “hub” suggests). You can still migrate away code, issues and wikis, but contributors, followers, wiki editors, issue subscribers, visibility in general and github stars are locked in. Discoverability matters to projects trying to attract contributors.

DacoTaco, (edited )
@DacoTaco@lemmy.world avatar

Agreed there, but its still a source control platform. Its still git. I’d argue the code is the most important part and followers, subscribers and stars (whatever those may do) are a secundairy functionality that a developer doesnt necesarily care about. The most important part is the git repo and everything linked with it imo

antrosapien,

Github started independently and was amazing service(and still is except now its going downhill) but Microsoft acquired it it 2018

SomeoneSomewhere, in If I create a OSS app with analytics to detect & log crashes with feature use, is it a bad practice?

Biggest question to me is why you need an IP in the first place?

  • All
  • Subscribed
  • Moderated
  • Favorites
  • opensource@lemmy.ml
  • localhost
  • All magazines
  • Loading…
    Loading the web debug toolbar…
    Attempt #

    Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 1183744 bytes) in /var/www/kbin/kbin/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php on line 174

    Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 266240 bytes) in /var/www/kbin/kbin/vendor/symfony/monolog-bridge/Processor/DebugProcessor.php on line 81