• 8 Posts
  • 155 Comments
Joined 2 years ago
cake
Cake day: June 19th, 2023

help-circle



  • We got momentary gusts of 135km/h

    Only me and one other person I know on the coast didn’t lose power. Phones came back on Saturday afternoon, and internet came back this morning.

    Today was the first day I’ve been out since Thursday, there’s a lot of damage.

    Trees have had thick branches pulled and twisted off. A house just up the road had it’s roof peeled off. A building down the road the other way had it’s roof pushed down and in. A building the next block over has a shattered window. There’s a whirlybird on the footpath outside and I’m not sure where from. A tree grazed my bedroom window which bent the window frame out, braking branches along the way (but the window survived).

    Can’t get into work today due to floods.

    At least now I can cross “experience a cyclone” off my bucket list.

    Also I learnt where birds go during bad storms. The answer is inside hedge bushes along the ground.









  • See I think that’s not what the “anti-woke” people think it means.

    That’s exactly what I pointed out. The people who provide them their information are actively trying to poison the word to the point that it means something else. But it doesn’t, because the poisoning only works in the echo chambers that spread that information.

    Turning to urban dictionary, they’re using this definition: […]

    That would be one of the attempts to poison the word. It’s worth pointing out that anyone can add a definition to urban dictionary and it’s quite often that trolls try to overwhelm existing definitions on there.

    […] (according to that definition).

    That comes back to what I said before. People who self report as anti-woke are against anything that uses the label “woke”, until they look at what’s under the label and they realise they aren’t against any of the points the “woke” labelled thing is doing.

    They’re not actually anti-woke, they’re anti-incorrect-label.


  • Because being woke is generally considered to be a bad thing?

    No. Being woke is only considered bad in toxic echo chambers where they’ve tried to poison the word.

    Most people who self report as “anti-woke” repeat infectious and carefully crafted but fallacious talking points whenever the term “woke” is said.

    But if you bring up a situation where a minority is getting the bad end of the stick and they agree with you that it’s bad, they don’t realise that they themselves are being woke. They agree with being woke so long as the label “woke” isn’t used. It’s when you point that out that they start to realise that they’ve been poisoned against the term.

    Being woke simply means that some people don’t often get the same affordances as others.

    If you accept the general fact that women tend to get paid less for the same amount of work, then you’re woke.

    If you accept the general fact that black people might not get hired if a person doing the hiring is racist, then you’re woke.

    If you accept the general fact that some people have to hide the fact that they’re not heterosexual in some countries otherwise they’ll suffer the death penalty, then you’re woke.




  • This doesn’t seem overly useful.

    It’s a list taken out of a bunch of books with no regard for how something can be the best path in one language and a smell in another language.

    Look at this page for example: https://luzkan.github.io/smells/imperative-loops

    It suggests using functional loop methods (.map(), .reduce(), .filter()) instead of using imperative loops (for, for in, for each) but completely disregards the facts that imperative loops also have access to the break, continue, and return keywords to improve performance.

    For example: If I have an unsorted list of 1000 cars which includes a whole bunch of information per car (e.g. color, year manufactured, etc…), and I want to know if there were any cars were manufactured before the year 1980, I can run an imperative loop through the list and early return true if I find one, and only returning false if I haven’t found one by the end of the list.

    If the third car was made in 1977, then I have only iterated through 3 cars to find my answer.

    But if I were to try this with only functional loops, I would have to iterate through all 1000 cars before I had my answer.

    A website with blind rules like this is going to lead to worse code.