AshDene avatar

AshDene

@AshDene@kbin.social

Interested in programming, politics (especially local politics), law (especially copyright/patent law).

Nazi's and genocide deniers can fuck right off. For the love of all that isn't evil stop using lemmy and providing genocide deniers power.

AshDene,
AshDene avatar

I don't believe so. They'd have to remove identifying information, but my imperfect understanding is outside of that they are allowed to keep the content.

AshDene, to random
AshDene avatar

Watching people get mad at MDN for including ChatGPT, and I'm mostly struck by how time-sensitive PR crisis management is.

It was a clear mistake, yes. Everyone would have forgotten about if it was promptly removed after that was pointed out, or even if the promise to remove it was made.

Instead, because they've let this sit for an eternity (4 hours), we're already seeing reactions like

I am warning my team about this feature and letting them know not to trust it.

and

By implementing and deploying this "feature", MDN has convinced me to stop contributing to MDN and cease donating to the Mozilla Foundation, because I am completely unwilling to participate in perpetuating the massive disinformation which this "feature" presents to users and the dramatic confusion and waste of people's time which it will cause.

Obviously, I will also stop recommending MDN as a good source of documentation. I will also need to remove links to MDN from everything I've written which can be edited.

and

This was very disappointing as a now-former MDN contributor and subscriber. The whole point of MDN was authoritative content but until there are some fundamental improvements in LLMs I might as well be supporting W3 Schools.

These might seem like extreme reactions, but no one is defending MDN, because MDN has given them nothing to wield in MDNs defence. Instead these reactions are only receiving "upvotes" (thumbs ups) and more users piling on.

A not lightning fast response time is doing irreparable harm to MDN's reputation, and is losing them revenue.

Context: https://github.com/mdn/yari/issues/9208

Archived as of writing this comment: https://archive.is/MNjro

AshDene, to random
AshDene avatar

Unfortunately, unless Elon is lying, twitter will un-login-wall itself again in the near future: https://platform.twitter.com/embed/Tweet.html?id=1674865731136020505

I suppose it's unfortunate if Elon is lying as well, because it's unfortunate that people in power lie, but that's nothing new for him so I'll take it.

AshDene,
AshDene avatar

A single world spanning country.

If we don't kill ourselves off first it will probably happen eventually. Country sized used to be limited by things like communication latency, and the time it took to move forces around. Technology has shrunk the world so that those things no longer matter. The natural size limit on a country is almost certainly as large as the earth now.

It won't happen soon, cultures will take time to become similar enough to merge. Leadership structures take time to be absorbed into a greater one (EU style) or have to forcefully taken over (Chechnya style, thankfully very rare these days). But with no real impediment to countries growing larger, it will happen eventually. With no-one able to fund or support rebellion and modern technology making police actions extremely effective it may well last effectively forever.

Whether it's a democratic utopia, a dictatorial nightmare, or something in between for the common citizen is not yet defined. Either way, war, as in peer to peer conflict between sovereigns, will be over.

AshDene,
AshDene avatar

With the capability of modern surveillance technology (making it extremely hard to organize a rebellion), and the sophistication of modern weaponry (making it extremely hard to arm an army without state support) it strikes me as unlikely that you would ever get civil war in a single country world.

Civil war is already incredibly rare with plenty of outside actors happy to support trouble.

I certainly don't rule out mass strife and protests, but the question was about war, not suffering.

AshDene,
AshDene avatar

Factions happen. Political power struggles happen. Even coups happen.

It's quite rare for civil wars to happen, or for countries to dissolve. With a world country where there were no outside groups to go to for support or see as an example, it will become even rarer. "Not in a thousand years" sort of rare.

Conflict within a country which maintains superior capacity to violence than it's constituent groups is very different from war. That doesn't mean no one gets shot, but it means no one carves the land up with trenches and barrages the enemy with artillery for months on end. Real war is a particularly ugly beast and very few things are like it.

AshDene, to apple
AshDene avatar

I'm new to this whole development thing.

Am I right in thinking that I need to upgrade to the MacOS 14.0 beta to use the new SwiftData apis?

How bad an idea is it to use that beta on my laptop?

Is it safe to assume that 90%+ of users quickly upgrade to new MacOS versions after they're released?

AshDene,
AshDene avatar

Phrasing it as "spotting potential swatting calls" is approaching it from the wrong direction.

Instead it should be "confirming that there is probable cause before moving in with weapons". A single call should not probable cause make.

AshDene,
AshDene avatar

Thanks, I love it.

AshDene,
AshDene avatar

What I expected:

Randos asking for it on /r/redditrequest

And if that didn't work out poorly paid workers in some cheap country somewhere, like facebook does.

AshDene,
AshDene avatar

Youtube is allowed to encourage you to say things. That's guaranteed by the free speech rights of the people that make up youtube.

AshDene, (edited )
AshDene avatar

I went a bit farther and used the built in variable to set color, as well as setting the font weight down to match the "n hours ago" text, and changing " - " to "@" so that the uesrname matched the standard fediverse string that you can put into search boxes

I'll publish this properly as soon as greasyfork sends me an email to authenticate my new account, but in the meantime here's the source. EDIT: Email has yet to arrive 13 hours later, I doubt it's going to. Anyone interested feel free to publish this somewhere it's easier for people to install.

// ==UserScript==
// @name        kbin social add home-instance name to username (modified)
// @namespace   english
// @description  kbin social add home -instance name to username, modified to match style and fediverse formatting
// @include     http*://*kbin.social*
// @version     1.16
// @run-at document-end
// @require       https://cdn.jsdelivr.net/npm/jquery@3/dist/jquery.min.js
// @license MIT
// @grant       GM_addStyle
// ==/UserScript==

$( document ).ready(function() {
    $( ".user-inline" ).each(function() {
        // get username URL and text, then remove username from URL and paste the instance name after username (not if instance is home-instance of kbin.social

        var homeinstance = $(this).attr('href') ;
        var myname = $(this).text().trim();

        var homeinstance2 =  homeinstance.replace( "/u/@" + myname + "@"  , '');

        if( homeinstance2  !=   "/u/" + myname ){ //show nothing if home-instance kbin
            console.log(homeinstance2 );
            $(this).append( "<span>@" +  homeinstance2 +"</span>" );
        }
    });
}); //end each username a href

var style = document.createElement('style');
style.type = 'text/css';
style.innerHTML =   '#content a.user-inline span{color: var(--kbin-meta-text-color); font-weight: 400}' ;

document.getElementsByTagName('head')[0].appendChild(style);

AshDene,
AshDene avatar

You mean the thing you get when you hover over someone's profile pic?

Why!?

AshDene,
AshDene avatar

Boat, definitely. A nice hybrid-electric yacht with solar panels.

A fancy car is just a cheap car that costs more to maintain to me.

A fancy boat is a house that moves.

AshDene,
AshDene avatar

It's literally a fork of wine.

But from a practical perspective, you tell steam to start the game and it starts it, installing and using proton as necessary. If the developers haven't configured it you have to first click a button in preferences that says "use proton" (paraphrased), but that's it.

"Antiwoke" magazin on kbin.social posting bullshit like "how to end Wokeness" and "Time to reject the extrem trans lobby harming our society" How to report ? he is the moderator of that magazin. (calckey.social)

@ernest how do I report a Magazin on kbin.social ? There is a usere called "ps" who is posting to his own "antiwoke" Magazin on kbin.social. Please remove this and dont give them a chance to etablish them self on kbin.social. When I report his stuff it will go to him because he is the moderator of the magazin? Seems like a...

AshDene,
AshDene avatar

It depends on your definition of free speech, the US constitution does consider it part of free speech.

The US constitution also considers free speech a right that protect a websites right not to repeat hate speech, not a users "right" to force a website to host their speech. In the constitutions view of the world free speech is protection against the government, not a tool to force other people to host your speech.

AshDene,
AshDene avatar

I'm actually not from the US, I was just giving it as an example because it is the most famous one that unequivocally does include it.

What I'm really saying is "free speech" isn't really one thing. It means different things in different contexts. For instance the breadth of "free speech" you should allow in what you promise to repeat (that's what hosting something is) is much smaller than the breadth of "free speech" that you should not think less of someone for saying is in turn much smaller than the breadth of "free speech" that you should not wield the power of government to punish. And people legitimately disagree on where each of those boundaries lie.

I do think I missed the mark with the comment you replied to rereading it. I raised it because when someone says "It's not a free speech platform and no one ever said it was" they are using the american republican-troll's definition of free speech that means "anything but child porn", and I think your reply was misunderstanding their comment as a result. But I don't think I successfully conveyed my point.

AshDene,
AshDene avatar

With the very rare exception, absolutely.

AshDene,
AshDene avatar

Speaking for myself I've seen both 10A and ps making these comments. 10A has managed to amass at least -2732 downvotes, ps -653, that's not a trivial amount of interaction. I came across an antiwoke post on the front page (I think just right after it was posted, so bad luck). And I'm holding off advocating people move to kbin until I see a moderating policy that results in banning them.

AshDene,
AshDene avatar

It sounds like you were viewing the “new” tab?

I don't think so, but I couldn't swear to it.

thats not a lot of interaction

Probably we just have different thresholds for a lot. People seeing hate 3000 times on the platform seems like a lot to me.

AshDene,
AshDene avatar

I mean, if genders are equal then an equal number of men and women should be leading in matters of gender equality.

And there are real issues that stem from this. If you make it so that under-represented people always lead initiatives to improve representation, you are adding workload to the under-represented people involved in the <activity> (governance in this case), and making them even more under-represented in the rest of the activity.

The optics in this case are bad enough that the downsides of sending a candidate chosen in a gender-neutral fashion outweigh the upsides, but I'd definitely advise being cautious about assuming that's always the case. If anything it's the exception, not the rule.

AshDene,
AshDene avatar

And where do you think a woman has more power? In a meeting on women's empowerment, or a meeting on... I don't know... how many weapons to give to Ukraine?

If you pull women away from the latter to send them to the former that is negatively impacting women's empowerment.

Like I said, the optics in this case make it worth it anyways, but it is not a clear cut rule where that is always the case, and it's easy to do it too often.

AshDene,
AshDene avatar

Rather I think they're diplomats in senior government rolls, because they're at the G7. In US terms think state department, not DOD.

Regardless the exact nature of the other meeting isn't the point. The general fact that DEI work is usually not the most impactful work you can be doing in terms of personal development and growth in the organization is, so saying that under-represented people need to lead it harms under-represented people.

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