• 0 Posts
  • 22 Comments
Joined 1 year ago
cake
Cake day: June 30th, 2023

help-circle

  • Dunno what OS’s it supports besides Windows but I use Kdiff for random comparisons regularly, I think it works pretty well untill you get to much larger files (20+ MB slows down a lot). The huge file wasn’t code but needed to check output changes for those curious.

    I constantly check git comparison with previous versions to see what changed to break things in a build though. Didn’t know there was a way to diff any files in git,should probably just learn to use that one.





  • According to the article, quoted.

    Access zones are in place at K-12 schools, and police can arrest or issue tickets to anyone found impeding access, disrupting or interfering with educational activities, or attempting to intimidate an individual within 20 metres (66 feet) of school property,” the province said in a release. Unquoted now…

    What part of that is bad? Nothing says people can’t protest but no one should interfere with kid’s education. Doesn’t say people can’t protest, but they can’t disrupt people who go in there is all which seems fair.

    Edit: forgot to say I can be a bit dense and not realize things so if I’m missing a glaring fact or angle of this please do inform me.



  • orbitz@lemmy.catoScience Memes@mander.xyzScience is Magic
    link
    fedilink
    English
    arrow-up
    4
    ·
    2 months ago

    I do agree but if you wanted to make to case for ‘God’ they could have made sure some of their creatures evolved to understand his work, assuming they did it in a logical way. I’m not a person with faith but just try and think a way is possible, though usually trying to understand weird comic and media universe type actions.

    We are the way for a universe to understand itself (paraphrased from Sagan). Though his writing is much more interesting than this comment. I just think there’s room for belief if it works for people, but not for the strict literal interpretations that many seem to believe.



  • How do you find which one you want with 150 open? Genuinely curious is all, I’m old and mostly use PC and can type quick enough to find what I want if I know which site (wikis for games and such). If I had to scroll through 150 tabs I’d spend half the time looking through a list so wonder how it helps to have that many open. Or maybe I just don’t read fast enough to scroll well.







  • Not if the place doesn’t do daylight savings time, and not all places in a timezone will do that (least in North America) so you need extra code if they do or do not. It becomes a pain after awhile when you do it in multiple projects. Technically one extra setting but it’s still a pain to make sure it’s handle properly in all cases, especially when the previous programmer decided to handle it for each case individually, but that’s a different issue.

    Also when you deal with the times, say in .Net you gotta make sure it’s the proper kind of date otherwise it decides it’s a local system date and will change it to system local when run. Sure it’s all handled but there are many easy mistakes to make when working with time.

    I probably didn’t even get to the real reason, I sort of picked this up on my own.