programming.dev

GammaGames, to lotrmemes in Apology

Were these images prompted from the human? It’s for a meme, I don’t really see the harm if it was decent quality

juli,

Yes

You can judge yourself, somehow it’s not yet deleted programming.dev/…/289fbb3c-99b2-4a25-ae68-ed85089…

Kyre,

That's actually pretty cool. I know it's popular to hate on AI but it is an accomplishment that it can do stuff like this.

_Gandalf_the_Black_,

Yeah, I think it’s all about context. If it’s just part of a personal project or something you’re sharing with a few friends, it’s a useful tool. If it’s being presented as real art or even used commercially, that’s when the issues start coming up.

aedelred, to memes in One does not simply
@aedelred@lemmy.world avatar

deleted_by_author

  • Loading...
  • snekerpimp,

    Pretty sure Tolkien’s estate would own the person that did that.

    Deceptichum,
    @Deceptichum@kbin.social avatar

    Pretty sure slavery is illegal. Checkmate Tolkein.

    NotATurtle,

    Disney would disagree

    SharkEatingBreakfast,
    @SharkEatingBreakfast@sopuli.xyz avatar

    Do not allow the tee shirt bots to assimilate here!!

    567PrimeMover,
    @567PrimeMover@kbin.social avatar

    WE ARE THE T SHIRT BOTS. REMOVE YOUR MODERATION TOOLS AND UNLOCK YOUR FORUMS. YOUR CULTURAL AND MONETARY DISTINCTIVENESS WILL BE MADE TO SERVICE US. RESISTANCE IS FUTILE

    Phoenix3875, to programmer_humor in GitHub Desktop or Git CLI?

    Why are they even on the same bus?

    pastelmind, to programmer_humor in GitHub Desktop or Git CLI?

    Fork is much better than GitHub Desktop, you can use it without paying indefinitely

    TheFerrango, to programmer_humor in GitHub Desktop or Git CLI?

    Laughs in Sourcetree

    nilloc,

    Sourcetree best for free, thanks bit bucket.

    Tower is pretty nice for mac user too. I paid for it for a few versions back when I was coding full time. Now I just stuck to source tree for occasional freelance and personal projects.

    CmdrKeen, (edited ) to programmer_humor in GitHub Desktop or Git CLI?
    @CmdrKeen@lemmy.today avatar

    GitLens?

    GitHub Desktop is literally “Baby’s first git GUI”.

    KairuByte, to programmer_humor in 1 follower on GitHub = 1000 followers on other platforms 😅
    @KairuByte@lemmy.dbzer0.com avatar

    Who follows users on GitHub? Repos, branches, issues, PRs, sure. But users?

    Daxtron2,

    I follow TodePond because they have funny repos and star weird stuff.

    jasory,

    Some people (like myself and other scientists/mathematicians), write software for specific fields so if you follow them you find it out what work they are putting out, and issues they find in other software etc.

    firelizzard,
    @firelizzard@programming.dev avatar

    I have 13 followers on GitHub. A few are friends from college, the rest I have absolutely no clue why.

    friendly_ghost, to memes in 6÷2(1+2)

    That blog post was awesome, thanks for doing that work and letting us know about it!

    wischi,

    Thank you for taking the time to read it.

    tiago, to memes in 6÷2(1+2)

    Damn ragebait posts, it’s always the same recycled operation. They could at least spice it up, like the discussion about absolute value. What’s |a|b|c|?

    What I gather from this, is that Geogebra is superior for not allowing ambiguous notation to be parsed 👌

    wischi,

    Your example with the absolute values is actually linked in the “Even more ambiguous math notations” section.

    Geogebra has indeed found a good solution but it only works if you input field supports fractions and a lot of calculators (even CAS like WolframAlpha) don’t support that.

    tiago,

    Yeah! That’s why I mentioned it, it was a fresh ambiguous notation problem that I’ve never encountered before. Discussions of “is it 1 or 9” get tiring quickly.

    At least WA and others tell you how they interpret the input, instead of being a black box (until you get to the manuals). Even though it is obvious in hindsight, I didn’t get why two calculators would yield different results; thanks!

    Nice write-up.

    cobra89, to memes in 6÷2(1+2)

    While I agree the problem as written is ambiguous and should be written with explicit operators, I have 1 argument to make. In pretty much every other field if we have a question the answer pretty much always ends up being something along the lines of “well the experts do this” or “this professor at this prestigious university says this”, or “the scientific community says”. The fact that this article even states that academic circles and “scientific” calculators use strong juxtaposition, while basic education and basic calculators use weak juxtaposition is interesting. Why do we treat math differently than pretty much every other field? Shouldn’t strong juxtaposition be the precedent and the norm then just how the scientific community sets precedents for literally every other field? We should start saying weak juxtaposition is wrong and just settle on one.

    This has been my devil’s advocate argument.

    wischi,

    I tried to be careful to not suggest that scientist only use strong juxtaposition. They use both but are typically very careful to not write ambiguous stuff and practically never write implicit multiplications between numbers because they just simplify it.

    At this point it’s probably to late to really fix it and the only viable option is to be aware why and how this ambiguous and not write it that way.

    As stated in the “even more ambiguous math notations” it’s far from the only ambiguous situation and it’s practically impossible (and not really necessary) to fix.

    Scientist and engineers also know the issue and navigate around it. It’s really a non-issue for experts and the problem is only how and what the general population is taught.

    Rinox, to memes in 6÷2(1+2)

    I recall learning in school that it should be left to right when in doubt. Probably a cop-out from the teacher

    wischi, (edited )

    “when in doubt” is a bit broad but left to right is a great default for operations with the same priority. There is actually a way to calculate in any order if divisions are converted to multiplications (by using the reciprocal value) and subtractions are converted to additions (by negating the value) that requires at least a little bit of math knowledge and experience so it’s typically not taught until later to prevent even more confusion.

    For example this: 6 / 2 * 3 can also be rewritten as 6 * 2⁻¹ * 3 and because multiplication is commutative you can now do it in any order for example like 3 * 6 * 2⁻¹

    You can also “rearrange” the order without changing the meaning if you move the correct operation (left to the number) with it (should only be done with explicit multiplication)

    6 / 2 * 3 into 6 * 3 / 2 (note that I moved the division with the 2)

    You can even bring the two to the front. Just remember that left to the six is an “imaginary” (don’t quote me ^^) multiplication. And because we can’t just move “/2” to the beginning we have to insert a one (empty product - check Wikipedia) like so:

    1 / 2 * 6 * 3

    This also works for addition and subtraction

    7 + 8 - 5

    You can move them around if you take the operation left to the number with it. With addition the “imaginary” operation at the beginning is a plus sign and the implicit number you use is zero (empty sum - check Wikipedia)

    8 - 5 + 7

    or like this

    0 - 5 + 8 + 7

    because with negative numbers you can use the minus sign to indicate negative numbers you can even drop the leading zero like this

    -5 + 8 + 7

    That’s not really possible with multiplication because “/2” is not a valid notation for “1/2”

    Brak,
    @Brak@hexbear.net avatar

    this is beautiful but my brain glazed over when i saw so many numbers, back to eating glue for me!

    MBM,

    6 / 2 * 3

    Semi-related: something in me wants to read that as 6 / (2*3), because 6 * 3 / 2 feels like a much more ‘natural’ way to write it

    Tartas1995, (edited ) to memes in 6÷2(1+2)

    I feel like if a blog post presents 2 options and labels one as the “scientific” one… And it is a deserved Label. Then there is probably a easy case to be made that we should teach children how to understand scientific papers and solve the equation in it themselves.

    Honestly I feel like it reads better too but that is just me

    wischi,

    I’m not sure if I’d call it the “scientific” one. I’d actually say that the weak juxtaposition is just the simple one schools use because they don’t want to confuse everyone. Scientist actually use both and make sure to prevent ambiguity. IMHO the main takeaway is that there is no consensus and one has to be careful to not write ambiguous expressions.

    Tartas1995,

    I mean the blog post says

    “If you are a student at university, a scientist, engineer, or mathematician you should really try to ask the original author what they meant because strong juxtaposition is pretty common in academic circles, especially if variables are involved like in $a/bc$ instead of numbers.”

    It doesn’t say scientific but…

    atomicorange,

    I’m a scientist and I’ve only ever encountered strong juxtaposition in quick scribbles where everyone knows the equation already. Normally we’re very careful to use fraction notation (or parentheses) when there’s any possibility of ambiguity. I read the equation and was shocked that anyone would get an answer other than 9.

    Tartas1995,

    My comment was directed to the blog post and the claims contained in it.

    The blog post claims it is popular in academy, if that is a deserved label, then I don’t understand how the author of the post lands on “there is no good or bad way, they are all valid”. I am in favor of strong juxtaposition but that is not the case that I am making here. Sorry for the confusion.

    TokyoMonsterTrucker, to memes in 6÷2(1+2)

    The order of operations is not part of a holy text that must be blindly followed. If these numbers had units and we knew what quantity we were trying to solve for, there would be no argument whatsoever about what to do. This is a question that never comes up in physics because you can use dimensional analysis to check to see if you did the algebra correctly. Context matters.

    usernamesaredifficul, (edited ) to memes in This needs to be a well-defined psychological principle. I do stuff like this all the time

    I think you would call this transductive reasoning. Rather than using information to put together a theory and work off that theory you work directly off the evidence

    for example hearing a bell and dinner being ready and coming to associate the bell with dinner without ever learning why the bell means dinner

    found pie in the bush, there might be pie in that bush

    Holyhandgrenade, to memes in This needs to be a well-defined psychological principle. I do stuff like this all the time
    @Holyhandgrenade@lemmy.world avatar

    There’s a Norwegian prog rock band called Magic Pie, I haven’t seen their bush yet though

    can, (edited )

    Nothing like some prog rock and bush.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • localhost
  • All magazines
  • Loading…
    Loading the web debug toolbar…
    Attempt #