Considering how we use it. It is absolutely fascinating. Same for magnetism

[-] SzethFriendOfNimi@lemmy.world 13 points 1 day ago* (last edited 1 day ago)

Keep it floating… other than that useful for makeshift spears/weapons for fishing?

This tip brought to you by the Tetanus and Sepsis better health council

[-] SzethFriendOfNimi@lemmy.world 100 points 5 days ago

Speed tape. Very expensive but basically helps with drag and isn’t structural.

[-] SzethFriendOfNimi@lemmy.world 6 points 6 days ago

Journey is good.

Rime is a good (but emotional) story.

[-] SzethFriendOfNimi@lemmy.world 4 points 6 days ago

Right. And if you’re going to do it at least do it right.

At least make his tie grumpy cat, or Harambe.

12
submitted 1 month ago* (last edited 1 month ago) by SzethFriendOfNimi@lemmy.world to c/mlemapp@lemmy.ml

I just updated yesterday to the 1.3.5 release.

Unfortunately now when I use my thumb to quickly scroll posts and comments it doesn’t respond.

But if I stop, and move very slowly it does register the scroll. After it finally does scroll then for about 10 seconds or so it behaves normally.

This doesn’t happen, however, in the top half of the screen. Just the bottom half.

Thank you again for all the hard work you do on the app.

[-] SzethFriendOfNimi@lemmy.world 133 points 2 months ago

They seem to excel at it.

90
[-] SzethFriendOfNimi@lemmy.world 214 points 8 months ago* (last edited 8 months ago)

I know it’s a joke but I prefer the tab option. It’s easy to convert tabs to any particular spacing or code point width. It can also vary, if wanted, based on terminal or editor type.

People with worse eyesight can have a wider indentation while those who choose can opt for something more compact

[-] SzethFriendOfNimi@lemmy.world 129 points 9 months ago* (last edited 9 months ago)

So in JavaScript there’s the assignment

=

and the comparator is

==

Since there’s no types JS will do implicit conversion before comparison when using == in a case like this

if(false == '0'){
    //this is true
}

But with === it doesn’t. It means literally compare these

if(false === '0'){
    //this is false
}else{
    //so this will execute instead 
}

But this, however, will

var someState = false;
 if(someState === false){
    //this is true
}
[-] SzethFriendOfNimi@lemmy.world 194 points 10 months ago

Remember, always validate your inputs.

[-] SzethFriendOfNimi@lemmy.world 131 points 10 months ago

Because even the possibility that you implemented somebody else’s proprietary code from memory or inspiration opens up a lot of legal issues.

And while you may win there’s no winners when you or your employer has to pay your side of legal fees. It’s best to just avoid it to make that process easier.

[-] SzethFriendOfNimi@lemmy.world 147 points 10 months ago

Again for anybody working on their own games or who does software. Avoid this like the plague.

4
[-] SzethFriendOfNimi@lemmy.world 151 points 11 months ago* (last edited 11 months ago)

Mercator Projection. So many ways to try to represent a sphere on a flat 2D plane but none are perfect

https://theconversation.com/five-maps-that-will-change-how-you-see-the-world-74967

And this “True Size” map is fun to play with.

TheTrueSize

14
32

I found this interesting and was wondering how some of the larger instances handle the issues they outline such as

Copyright/DMCA Safe Harbor CSAM Law enforcement/warrants/info inquiries

And not included (since it’s focus is on US legal issues) but I’m curious about would be other regulations such as EU user data retention

view more: next ›

SzethFriendOfNimi

joined 1 year ago