Honestly if you send this to someone you disagree with you just come across as the biggest tool ever.
- 0 Posts
- 23 Comments
decivex@yiffit.netto A Boring Dystopia@lemmy.world•Youtube stopped working for me today when using uBlock Origin in Firefox or Vivaldi with anti-ad enabled.17·1 year agoBrendan Eich founded Brave after being booted from Mozilla over his opposition to same-sex marriage.
decivex@yiffit.netto A Boring Dystopia@lemmy.world•Youtube stopped working for me today when using uBlock Origin in Firefox or Vivaldi with anti-ad enabled.284·1 year agoShame about the crypto bs and homophobia though.
decivex@yiffit.netto Technology@lemmy.world•Announcing the Ladybird Browser InitiativeEnglish1·1 year agoIt doesn’t help that there’s basically no documentation for how to use the Gecko engine either.
decivex@yiffit.netto Technology@lemmy.world•Announcing the Ladybird Browser InitiativeEnglish2·1 year agoThe engine is where like 95% of the complexity lies though. Maybe more.
decivex@yiffit.netto Technology@lemmy.world•Announcing the Ladybird Browser InitiativeEnglish16·1 year agoIn this case having more browser engines not under Google’s control is probably a good thing. Although this effort might’ve been better spent working on Servo.
decivex@yiffit.netto News@lemmy.world•Etsy to ban sale of most sex toys, explicit content, and more5·1 year agoYou don’t really get the personal touch there though.
decivex@yiffit.netto News@lemmy.world•Etsy to ban sale of most sex toys, explicit content, and more22·1 year agoI think it’s most likely pressure from payment processors.
decivex@yiffit.netto Rust@programming.dev•JetBrains RustRover Is Released and Includes a Free Non-Commercial Option2·1 year agoIn what way is it less effort than vim? I’ve tried helix a little bit and it didn’t seem that different.
decivex@yiffit.netto Python@programming.dev•Why can't I append to list inside of a list comprehension?1·1 year agoI know I’m being somewhat pedantic but range() returns an iterable
range
type, not a list, in python 3.
decivex@yiffit.netto Python@programming.dev•Why can't I append to list inside of a list comprehension?5·1 year agolist.append
returnsNone
so what you’ve actually got is a list comprehension that generates a list containing the valueNone
19 times. (using functions with side effects, such aslist.append
, in list comprehensions are generally bad style so you should avoid this)- The
list[...]
syntax retrieves elements from the list, which is not what you’re trying to do here. (and it is actually invalid syntax in this case) - You should generally avoid calling lists
list
, because list is already a builtin.
If you want to append the numbers 1 to 19 to a list as you’re trying to do you can call the
list.extend
function with the list comprehension[
as the argument. (Although in this case you can also just use the range directly.) To do it without list comprehensions you can simply loop over the range and repeatedly call the append function. ]
I think they weren’t asking for an idea that would actually make the world a better place but rather one that somebody on some level believes would make the world a better place. Hence it still being a stupid idea.
decivex@yiffit.netto Technology@lemmy.world•I Will Fucking Piledrive You If You Mention AI Again — LudicityEnglish9·1 year agoIt’s not a paper, it’s a stream-of-consciousness style blog post.
decivex@yiffit.netto Curated Tumblr@sh.itjust.works•You control the children you created (the sims)English4·1 year agoPretty sure 5 is Artemis Fowl.
Yes, I simplified for the sake of brevity. But you’re reading a lot into their comments that just isn’t there. Yes they were running interference for a nazi (and not making a particularly compelling case) but there’s nothing to indicate it was intentional. (It’s not a strawman argument either btw, unless you’re claiming they intentionally ignored the boogaloo reference rather than just not knowing about them.)
Edit: Also I don’t think not making assumptions about someone’s motivations is the same thing as ‘putting faith’ in them.
Nah, I just saw two people arguing in a group chat once and felt an immediate need to block the one that sent that image.