@RuikkaaPrus@lemmy.ml avatar

RuikkaaPrus

@RuikkaaPrus@lemmy.ml

Web & Software developer. I also love pizza🍕, cats🐱, and computers🖥️.

The Astolfo pfp is just temporal!

🎵 𝘖𝘯𝘦 𝘥𝘢𝘺, 𝘐 𝘩𝘰𝘱𝘦 𝘐’𝘮 𝘴𝘰𝘮𝘦𝘰𝘯𝘦 𝘺𝘰𝘶’𝘥 𝘮𝘪𝘴𝘴. 🎶

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

RuikkaaPrus,
@RuikkaaPrus@lemmy.ml avatar

This proposal is meaningless bullshit. I can’t believe we are one of the the oldest species on earth and they keep coming up with such ridiculous ideas. This is a NO from me for this ridiculous proposal.

RuikkaaPrus,
@RuikkaaPrus@lemmy.ml avatar

JavaScript is crazy. While you are learning React.js or Vue.js you are learning Webpack, Rollup or Vite.js even without your consent :skull:

RuikkaaPrus,
@RuikkaaPrus@lemmy.ml avatar

Apparently it is impossible for this kind of functions to be defined as friends of classes:


<span style="font-weight:bold;color:#a71d5d;">template </span><span style="color:#323232;"><</span><span style="font-weight:bold;color:#a71d5d;">typename</span><span style="color:#323232;"> T>
</span><span style="font-weight:bold;color:#a71d5d;">auto </span><span style="font-weight:bold;color:#795da3;">do_something</span><span style="color:#323232;">(T </span><span style="font-weight:bold;color:#a71d5d;">&</span><span style="color:#323232;">t) -> </span><span style="font-weight:bold;color:#a71d5d;">decltype</span><span style="color:#323232;">(t.private_msg);
</span><span style="color:#323232;">
</span><span style="font-weight:bold;color:#a71d5d;">class </span><span style="color:#0086b3;">Foo
</span><span style="color:#323232;">{
</span><span style="font-weight:bold;color:#a71d5d;">private</span><span style="color:#323232;">:
</span><span style="color:#323232;">    </span><span style="font-weight:bold;color:#a71d5d;">const char *</span><span style="color:#323232;">private_msg </span><span style="font-weight:bold;color:#a71d5d;">= </span><span style="color:#183691;">"You can't touch me!"</span><span style="color:#323232;">;
</span><span style="color:#323232;">    
</span><span style="font-weight:bold;color:#a71d5d;">friend auto </span><span style="color:#323232;">do_something<>(Foo </span><span style="font-weight:bold;color:#a71d5d;">&</span><span style="color:#323232;">f) -> decltype(f.private_msg); </span><span style="font-style:italic;color:#969896;">// Error!
</span><span style="color:#323232;">};
</span><span style="color:#323232;">
</span><span style="font-weight:bold;color:#a71d5d;">template </span><span style="color:#323232;"><>
</span><span style="font-weight:bold;color:#a71d5d;">auto </span><span style="font-weight:bold;color:#795da3;">do_something</span><span style="color:#323232;"><Foo>(Foo </span><span style="font-weight:bold;color:#a71d5d;">&</span><span style="color:#323232;">f) -> </span><span style="font-weight:bold;color:#a71d5d;">decltype</span><span style="color:#323232;">(f.private_msg) </span><span style="font-style:italic;color:#969896;">// Error!
</span><span style="color:#323232;">{
</span><span style="color:#323232;">    </span><span style="font-weight:bold;color:#a71d5d;">return</span><span style="color:#323232;"> f.private_msg; </span><span style="font-style:italic;color:#969896;">// Error!
</span><span style="color:#323232;">}
</span>

After trying different combinations, it seems that I managed to get it working with the condition the whole template are considered friends of the class. I don’t know if I should consider it a language problem, but it seems that way, since the template restrictions (in this case) are minor.


<span style="font-weight:bold;color:#a71d5d;">template </span><span style="color:#323232;"><</span><span style="font-weight:bold;color:#a71d5d;">typename</span><span style="color:#323232;"> T>
</span><span style="font-weight:bold;color:#a71d5d;">auto </span><span style="font-weight:bold;color:#795da3;">do_something</span><span style="color:#323232;">(T </span><span style="font-weight:bold;color:#a71d5d;">&</span><span style="color:#323232;">t) -> </span><span style="font-weight:bold;color:#a71d5d;">decltype</span><span style="color:#323232;">(t.private_msg);
</span><span style="color:#323232;">
</span><span style="font-weight:bold;color:#a71d5d;">class </span><span style="color:#0086b3;">Foo
</span><span style="color:#323232;">{
</span><span style="font-weight:bold;color:#a71d5d;">private</span><span style="color:#323232;">:
</span><span style="color:#323232;">    </span><span style="font-weight:bold;color:#a71d5d;">const char *</span><span style="color:#323232;">private_msg </span><span style="font-weight:bold;color:#a71d5d;">= </span><span style="color:#183691;">"You can't touch me!"</span><span style="color:#323232;">;
</span><span style="color:#323232;">
</span><span style="font-weight:bold;color:#a71d5d;">template </span><span style="color:#323232;"><</span><span style="font-weight:bold;color:#a71d5d;">typename</span><span style="color:#323232;"> T>
</span><span style="font-weight:bold;color:#a71d5d;">friend auto</span><span style="color:#323232;"> do_something(T </span><span style="font-weight:bold;color:#a71d5d;">&</span><span style="color:#323232;">t) -> decltype(t.private_msg); </span><span style="font-style:italic;color:#969896;">// This works fine!
</span><span style="color:#323232;">};
</span><span style="color:#323232;">
</span><span style="font-weight:bold;color:#a71d5d;">template </span><span style="color:#323232;"><>
</span><span style="font-weight:bold;color:#a71d5d;">auto </span><span style="font-weight:bold;color:#795da3;">do_something</span><span style="color:#323232;"><Foo>(Foo </span><span style="font-weight:bold;color:#a71d5d;">&</span><span style="color:#323232;">f) -> </span><span style="font-weight:bold;color:#a71d5d;">decltype</span><span style="color:#323232;">(f.private_msg)
</span><span style="color:#323232;">{
</span><span style="color:#323232;">    </span><span style="font-weight:bold;color:#a71d5d;">return</span><span style="color:#323232;"> f.private_msg;
</span><span style="color:#323232;">}
</span>

Do you think I found an error in the language?

RuikkaaPrus,
@RuikkaaPrus@lemmy.ml avatar

Firefox is better than most, no double there, but at the same time they do have some shady finances.

I’m not going to refute this because it seems to me that article are right in several points. Also, we have to be honest, Mozilla is kind of stupid sometimes.

But if you care about the default search engine or privacy settings, you really just need to do some hardening and tweaks to make it very private in general. Chromium doesn’t have any of these settings, it even doesn’t have RFP btw.

and they also do stuff like adding unique IDs to each installation.

Looks like you can download Firefox through the Mozilla’s official HTTP/FTP repository that doesn’t trigger this ID token generation. Also this article motivates people to download Firefox installer from Softonic’s page:

Firefox users who prefer to download the browser without the unique identifier may do so in the following two ways:

  1. Download the Firefox installer from Mozilla’s HTTPS repository (formerly the FTP repository).
  2. Download Firefox from third-party download sites that host the installer, e.g., from Softonic.

Softonic have a really nice and privacy respectful privacy policy (obviously that’s not the case) in contrast with randomized pretty anonymous unique ID triggered by Firefox installer download. Mozilla’s generated ID feels more like a download counter than a tracker indeed.

I’m not trying to justify the Mozilla’s problems. They makes silly things sometimes, but being realistic, they do a better job taking care of their users privacy more than Google or even Brave.

RuikkaaPrus,
@RuikkaaPrus@lemmy.ml avatar

You probably will not notice that you are in other distro when you start using Debian. They are the same in most things, but without Snaps and most propietary stuff (by default. But if you really need propietary things, you may see the official non-free sourcelist)

RuikkaaPrus,
@RuikkaaPrus@lemmy.ml avatar

I really do not know. But what I can say for sure is that during the installation of Debian, it allows you to choose the desktop environment at installation time, so you can have your Debian with KDE at minute 0 after installing it.

On the other hand, remember that Kubuntu is derived from Ubuntu. I don’t see Ubuntu fans very enthusiastic about creating another Debian-based distro with KDE preinstalled when they even offer it (live images) to you here.

RuikkaaPrus, (edited )
@RuikkaaPrus@lemmy.ml avatar

Well… Flatpak ships Propietary Software too. And at this point Propietary Software is almost avoidable (unless you have a LibreBoot. I want one too). But it’s reasonable to be frustrated that an operating system as influential as Ubuntu has ended up falling so down in its technology, and that it has the support of a company like Chanonical.

Edit: Thank you for the comments. I didn’t noticed Snap itself is propietary.

RuikkaaPrus,
@RuikkaaPrus@lemmy.ml avatar

In my experience. I didn’t like Murena. I used it for a while (I think 6 months. I don’t remember well). And yes, it’s “ok”, but the interface is a bit broken.

The good thing is that there is a lot of software you can use there: OnlyOffice, NextCloud (much of their software), Searx and even Gitlab are there.

Another thing: if you like SMPT and IMAP, the Murena account offers you this. I prefer Proton, but it a good option too.

RuikkaaPrus,
@RuikkaaPrus@lemmy.ml avatar

Disroot also gives all +Xmpp +Fediverse

Well then, why no choose Disroot instead?

RuikkaaPrus,
@RuikkaaPrus@lemmy.ml avatar

I’m simply using Brain and Brain++ compilers to build and run ideas. Plus you can overclock your own neurons

RuikkaaPrus, (edited )
@RuikkaaPrus@lemmy.ml avatar

Yes. See Docker stuff and NPM stuff.

RuikkaaPrus,
@RuikkaaPrus@lemmy.ml avatar

I think C and C++ are safer options, because GNU doesn’t use this technology in particular. But Dart are obviously using opt-out telemetry. You should disable it manually. Idk the case of Ruby, sorry :(

RuikkaaPrus,
@RuikkaaPrus@lemmy.ml avatar

You’re right. Maybe I should have put more information about it. The idea was perhaps to find out what information the Lemmy community could share. I would like to be as experienced as other community members, but I’m not very expert yet :(

RuikkaaPrus,
@RuikkaaPrus@lemmy.ml avatar

This is the sad true. Nowdays, sdk haves tons of these analytics and telemetry. According to Dart documentation we can disable its analytics. And the first time the CLI is executed, this analysis is not used (respecting the opt-out concept). Is at your discretion trust Google’s words (or investigate Dart’s source code to find out if it is true or not, or if there are even other unethical means, although I find it a bit unlikely). If you wanna do the second, You can use something like CatFish to help you.

RuikkaaPrus,
@RuikkaaPrus@lemmy.ml avatar

I searched A LOT about this information and got no information (but misinformation) about. Plus just look at this decision.

What that means? I need to do a torsocks to every single command I type? (That last is just sarcasm. Please, I’m not so paranoid (by now))

RuikkaaPrus,
@RuikkaaPrus@lemmy.ml avatar

So, that means telemetry is optional? How I ensure is currently active or not? Just wanna an explanation. I (as I said) searched about this thing and got almost nothing :(

it’s where all of the mod version is cached, so any time anyone builds a Go package from source, calls are made to the mother ship.

I don’t understand it at all. Why I’ll need something like that?

Thank you for your response!

RuikkaaPrus,
@RuikkaaPrus@lemmy.ml avatar

Lmao Hope you’re not right (I mean, I hope no telemetry is imposed on my favorite programming language). But as you said, Google tracking/survillance history say that people privacy really don’t concerns him

RuikkaaPrus, (edited )
@RuikkaaPrus@lemmy.ml avatar

That’s a pretty good explanation about. Care if you reply the source of your information? I’d wanna keep it as reference <3

Thank you!

RuikkaaPrus,
@RuikkaaPrus@lemmy.ml avatar

Rust is my “alternative”. But I see Rust pretty hard (is a system level programming language lol) and differently scoped.

I like some Go characteristics like garbage collection, simpler syntax, crossplatform, 1 second C bindings, and so on.

RuikkaaPrus,
@RuikkaaPrus@lemmy.ml avatar

Sorry my english spell is a shees.

I corrected my post

RuikkaaPrus,
@RuikkaaPrus@lemmy.ml avatar

Well, this makes sense to me.

Privacy Practices in public registries for developers

Okay, it may sound like a personal issue, but I disagree with the privacy practices in developer tools. And I’m not talking about VSCode issue, but about other more elemental development tools. For example, the privacy policy of npmjs.com, pkg.go.dev (Google’s privacy policy lol), hub.docker.com, and these public registries...

RuikkaaPrus,
@RuikkaaPrus@lemmy.ml avatar

Yeah! You see it? At the end of the day, everyone, even if they want to become independent from these invasive policies, must accept and eat these policies.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • provamag3
  • kavyap
  • DreamBathrooms
  • cisconetworking
  • magazineikmin
  • InstantRegret
  • Durango
  • thenastyranch
  • Youngstown
  • rosin
  • slotface
  • mdbf
  • khanakhh
  • tacticalgear
  • JUstTest
  • everett
  • modclub
  • Leos
  • cubers
  • ngwrru68w68
  • ethstaker
  • osvaldo12
  • GTA5RPClips
  • anitta
  • megavids
  • normalnudes
  • tester
  • lostlight
  • All magazines