@MinekPo1@lemmy.ml avatar

MinekPo1

@MinekPo1@lemmy.ml

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

MinekPo1,
@MinekPo1@lemmy.ml avatar

not entirely sure but this doesn’t feel like something the fsf would like . most definetly it violates freedoms 0. because it discriminates against companies with over 5 M$ in income and against people living in Japan (see 2.14 , though I’m not sure its enough to qualify) , and possibly by restricting what you can do with the software , though I’m not sure on that one . it also violates freedoms 2. and 3. by requiring publicly releasing your changes (fsf requires that free software licenses allow for private modifications) and possibly by requiring contacting the licensor or the post-open administration though I’m unsure of if it does (entering into a post-open source zero-cost / paid contract seems to me to imply contacting either the licensor or the post-open administration) .

further reading :

MinekPo1,
@MinekPo1@lemmy.ml avatar

just gonna say , rethink combines both a firewall and a DNS blocker .

MinekPo1,
@MinekPo1@lemmy.ml avatar

if I understand correctly the rethink app does also work as a firewall , so no . I’ve also found netguard to be less intuitive and to have a less readable UI .

if you are just using rethink as a DNS provider however then netguard (or the rethink app) can allow you to have more granular control over specific apps .

MinekPo1,
@MinekPo1@lemmy.ml avatar

to my knowledge disabled apps do not run so you must have misunderstood something

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

minor nitpick but the value of π is technically a parameter of the space you are operating in . which means it can have any arbitrary value as long as you are willing to operate in non euclidean spaces (and the space we live in is not euclidean though not to a measurable extent unless you are near a black hole)

but yeah in this context saying π is a constant is as correct as saying you cant take a square root out of a negative number .

edit : possibly better example is that a triangle’s angles sum to 180°

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

Better question: What curvature of space is necessary for the apparent value of π to be 5?

honestly I don’t know if there is any way to measure curvature of space , but its slightly more curved than the surface of a ball (where π=~4.712)

edit : its more complex than that and topology of non euclidean spaces hurts

MinekPo1,
@MinekPo1@lemmy.ml avatar

I doubt it would affect Newpipe either honesty

MinekPo1,
@MinekPo1@lemmy.ml avatar

No its microsofts database GUI program that’s part of Microsoft Office . imagine software made for users who have a vague understanding of SQL and visual basic but then an exec. forced the designers and devs to make it accessible to everyone while giving them barely any teamembers causing a fuckton of technical debt and unintuitive quirks , making anyone who opens the software feel like they have just been placed in a highly equipped tank , in front of a wall of unlabeled levers and told to drive the tank , or at least that’s how I view it.

(reposting from another account sorry if you see both comments)

MinekPo1,
@MinekPo1@lemmy.ml avatar

I am doubtfull of LLMs ability to preform tasks via a protocol layer as described . from my experience these models really struggle with understanding rules and preforming actions within a ruleset .

To experimentally confirm my suspicions, I created the following prompt :

collapsedThere is a robot arm placed over a countertop, which has the ability to pick up and manipulate objects. The countertop is split into eight cells. Cell zero and cell one are stoves, both able to heat a pot or pan. Cell two is an equipment drawer, holding pots, pans, bowls, cutting boards, knifes and spoons. Cells three to five can accommodate one cutting board, pot, pan or bowl each. Cell six is a sink, which can be used to wash ingredients or to fill pots with water. Cell seven is an ingredient drawer, in which you can find carrots, potatoes and chicken breasts. You can control the robot arm by with exclusively the following commands: - “move left” and “move right” - moves the robot arm a single cell - “take {item}” - takes item from the cell the robot arm is currently in - “place” - places the item the robot arm is holding in the cell it is in - “fill” - requires the robot arm to hold a pot or bowl and to be over the sink, fills the container with water - “wash” - requires the robot arm to be over the sink, washes the currently held item - “chop” - requires the robot arm to be over a cell with a cutting board and to be holding a knife, chops the ingredients on the cutting board - “mix” - requires the robot arm to be over a cell with a bowl or pot and to be holding a spoon, mixes the ingredients in the bowl - “empty” - requires the robot arm to be holding a pot, pan, bowl or cutting board, empties the item and places the content on the cell the robot arm is above Note that the robot arm can only hold one item. You are tasked with cooking a meal, please only output commands. The robot arm starts over cell zero.

I have given this prompt to ChatGPT and it has failed in quite substantial ways . While I only have access to ChatGPT 3.5 , from my understanding of LLM architecture , it does not follow that increasing the size of the number or size of the layers will necessary let it overcome these issues , it does not seem to be able to understand the current state of the agent (picking up two objects at once , taking items from wrong cells etc)

Why do fdroid main repo keep apps that has not been updated in 12 years ? Isn't it more logical to move apps that has not been updated in more than three years to the archive ?

Like i use an older version of android and every new app on fdroid works for me and keeping the main repo full of abandonware isn’t a good idea and will hold fdroid back on being a good app store . And its not like the apps are deleted or anything if someone needs them for whatever reason they can find it on archive and not...

MinekPo1,
@MinekPo1@lemmy.ml avatar

sorry but I believe you are mistaken , there is both control and moderation on both the main fdroid repo and other repos .

  • the official fdroid repo only requires apps to be fully FLOSS , see their inclusion policy
  • izzydroid requires the app to be both free and gratis , not promote “violence, hate, harassment, racism and similar topics” and to have limited tracking see their inclusion policy

other repos only include apps from a single project/dev

MinekPo1,
@MinekPo1@lemmy.ml avatar

not OP but in Polish there is no word for boyfriend or girlfriend, you just say boy or girl which is kinda funny. however because Polish has grammatical gender, you can say boy friend/girl friend and even enby friend, thanks to neoforms! (przyjaciel, przyjaciółka, przyjacioło)

though note that partner is also gendered (partner, partnerka, partnerze)

MinekPo1,
@MinekPo1@lemmy.ml avatar

honestly , while I believe this is random=funny, I think it is interesting to interpret:

I believe that the person is a transmasc individual , who had a supportive grandma , but she died and he has been sent to conversion therapy by his unsupportive parents

MinekPo1,
@MinekPo1@lemmy.ml avatar

I mean yeah it is very overblown , sorry I did not make it clear

I've found the recent typescript 3x3 magic square checker entertaining. Anyway here is a arbitrary magic square checker using c++ type traits. (cdn.imgchest.com)

altc++ #include // from https://stackoverflow.com/a/8625010/12469275 // cmath’s sqrt is constexpr from c++26 constexpr std::size_t isqrt_impl (std::size_t sq, std::size_t dlt, std::size_t value){ return sq > 1) - 1; } constexpr std::size_t isqrt(std::size_t value){ return isqrt_impl(1, 3, value); } // because pack...

MinekPo1,
@MinekPo1@lemmy.ml avatar

TL;DR: Grid<A,B,C,D,E,F,G,H> simplifies to true, if and only if it is a 3x3 magic square.

full explanation- Fifteen is an array of length 15 - T<A,B,C> checks if an array of length A+B+C is equivalent to an array of length 15, thus checking if A+B+C is equal to 15 - And<A,X> is simplifies to X if A is true, else it simplifies to false- Df<A,B,X> checks if A and B are Diffrent , simplifying to X if they are - Grid<A,B,C,D,E,F,G,H> first checks if every row, column and diagonal is equal to 15, then checks if every item is unique.

MinekPo1,
@MinekPo1@lemmy.ml avatar

note that it continues onto the next line

Just read Animal Farm by George Orwell and i loved it (No Spoilers)

I know it is a known Classic but i liked Animal Farm so much i had to share. Before reading i thought that it would be similar to 1984 or Brave new world which it kind of is but its also very very different. Right from the Beginning i was hooked. I really love Orwells Books but this one is my favourite. I did not expect that. So...

MinekPo1,
@MinekPo1@lemmy.ml avatar

Just as an FYI Orwell was kinda a horrible person. You can still enjoy his literature if you want but he couldn’t help to find Hitler unlikable, was a colonial cop in India and didn’t like how the Hindi people treated him because of it and and made lists of people who he accused of being leftists and Jewish.

MinekPo1,
@MinekPo1@lemmy.ml avatar

I find the inclusion of WhatsApp hilarious.

MinekPo1,
@MinekPo1@lemmy.ml avatar

LMAO giving r/BuyItForLife as a good example of where to put ads.

MinekPo1,
@MinekPo1@lemmy.ml avatar

We are likely before the main exodus, so this will likely change, or so I hope.

MinekPo1,
@MinekPo1@lemmy.ml avatar

Glad to hear that!

MinekPo1,
@MinekPo1@lemmy.ml avatar

I recommend Turing complete! Its a puzzle game in which you learn how to make computers.

Its lightweight and written in Godot, plus there is a native Linux build. The gameplay is mostly figuring out how to implement something and you can undo any mistakes (assuming you find them). Might not be exactly what you had in mind, but I still recommend it!

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