@Deebster@programming.dev avatar

Deebster

@Deebster@programming.dev

New account since lemmyrs.org went down, other @Deebsters are available.

This profile is from a federated server and may be incomplete. Browse more on the original instance.

Deebster,
@Deebster@programming.dev avatar

Thanks for explaining it, not sure why you’ve collected those downvotes.

Deebster,
@Deebster@programming.dev avatar

Yeah, it’s probably shooting the messenger. Reminds me of once on Reddit where someone had asked a similar question and I’d replied with a sourced quote from the dictionary and got complaining replies and downvotes.

Deebster, (edited )
@Deebster@programming.dev avatar

Do you also attack dictionaries for explaining offensive words? The person I’m talking to never used the term, they merely explained the meaning behind the number.

What you are doing is shooting the messenger. Please target your outrage more carefully in future.

Deebster,
@Deebster@programming.dev avatar

I missed the news that K-9 was becoming Thunderbird for Android. I used to use it before switching to FairEmail, I think because development had stalled. It’s a solid choice, hopefully they don’t add too much in like they have with the desktop version.

Deebster,
@Deebster@programming.dev avatar

What’s this kind of thing called in linguistics? Where you parse the sentence wrong (for comedic effect in this case), something about dangling modifiers, maybe?

Belgian, Dutch university students join pro-Palestinian, anti-Israel protests (www.timesofisrael.com)

AMSTERDAM/BRUSSELS — Students in the Netherlands and Belgium occupied parts of the universities of Amsterdam and Ghent on Monday to protest against Israel’s war against Hamas, joining international student protests inspired by those on US campuses....

Deebster,
@Deebster@programming.dev avatar

I am pro both existing side by side, which is pro-Palestine and pro-Israel. Are you calling the many Israelis who would like to peacefully co-exist anti-Israel?

Deebster,
@Deebster@programming.dev avatar

I disagree that being in favour of something means you agree with everything they do, but for the record, I’ve been to Palestine several times and I didn’t liked what Israel was doing back then, let alone the current disgusting atrocities that Netanyahu’s currently perpetuating.

Deebster,
@Deebster@programming.dev avatar

Really I was arguing with the “anti-Israel” part, since I don’t think that’s merely interpreted as meaning you’re not in favour of Israeli policy. I was attempting to agree with the top of the thread’s implication that “anti-Israel” feels like it’s been used as a short step away from “antisemitic”, which Israel has a long history of using in the face of any criticism.

Deebster, (edited )
@Deebster@programming.dev avatar

CNLabelContactRelationYoungerCousinMothersSiblingsSonOrFathersSistersSon

The label for the contact’s mother’s sibling’s younger son or father’s sister’s younger son.

I thought it was just a male cousin, but it doesn’t include a cousin who’s your uncle’s son. Which culture needs this?

Deebster, (edited )
@Deebster@programming.dev avatar

Maybe his analysis considered this, but the article doesn’t mention real-world factors like the climate crisis, the cost of living crisis, and what feels like the resurgence of fascism and the spectre of World War 3. It’s noted that liberal families seem more susceptible - perhaps it’s because right-wing families are more likely to believe these things aren’t real, or aren’t a problem?

Deebster,
@Deebster@programming.dev avatar

The country

Which country?

aluminum

Never mind.

actually...I’ve just checked fact-checked myself and apparently Canada also says aluminum but 🤷

Deebster,
@Deebster@programming.dev avatar

My absolute favourite is when the examples say something like “production code should not be written like this, this is just for clarity” with no indication of what’s wrong with the code.

Is it just normal Rust stuff like there’s unwraps everywhere and it’s one big file? Does the example have security or performance problems? Is the example unidiomatic or over-verbose or is it ignoring features real-world code would use? EXPLAIN YOURSELF!

Deebster,
@Deebster@programming.dev avatar

Those photos really sell the value of those satellites. It seems ridiculous that we don’t have replacements up there given how many launches there’s been in recent years.

Deebster,
@Deebster@programming.dev avatar

You’re missing Windows 2000, but I guess you can argue that’s Windows NT not mainline Windows. That was definitely in the good camp, and I was not alone in sticking with it for many years (until XP got good).

Edit: I see @NickwithaC beat me to this point.

Deebster, (edited )
@Deebster@programming.dev avatar

Edit: I was describing Voyager, not Thunder.

Yes! It’s in a weird place, though.

Settings > Appearance > Themes > Device Mode
Set this to Android. It says it’s a beta option, but I’ve not had any problems.

This setting was very welcome to me, since I was forever triggering back when I meant to upvote a comment.

Deebster,
@Deebster@programming.dev avatar

Oops, you’re right, sorry. I used to use Thunder and got mixed up.

I can’t see how to do it in Thunder 0.3.0, although it’s way less easy to do accidentally, at least. I see version 0.4.0 is on its way but I don’t see any mention of what you want there either.

weiming, to Logseq
@weiming@mapstodon.space avatar
Deebster,
@Deebster@programming.dev avatar

I’m no expert in advanced queries, but just to note that you could make things simpler (well, shorter at least) by using a regex to handle all those starts-with lines.

This selects all pages that don’t start with 0-9 or @:


<span style="color:#323232;">#+BEGIN_QUERY
</span><span style="color:#323232;">{
</span><span style="color:#323232;">  :title [:h2 "Query Results"]
</span><span style="color:#323232;">  :query [
</span><span style="color:#323232;">    :find (pull ?p [</span><span style="font-weight:bold;color:#a71d5d;">*</span><span style="color:#323232;">])
</span><span style="color:#323232;">    :where
</span><span style="color:#323232;">    [?p :page/name ?page_name]
</span><span style="color:#323232;">    [(</span><span style="color:#62a35c;">re-pattern </span><span style="color:#183691;">"^[^0-9@].*"</span><span style="color:#323232;">) ?regex]
</span><span style="color:#323232;">    [(</span><span style="color:#62a35c;">re-matches </span><span style="color:#323232;">?regex ?page_name)]
</span><span style="color:#323232;">  ]
</span><span style="color:#323232;">}
</span><span style="color:#323232;">#+END_QUERY
</span>

You could also extend the regex to handle the “includes _ or -” bit too:


<span style="color:#323232;">    [(</span><span style="color:#62a35c;">re-pattern </span><span style="color:#183691;">"^[^0-9@_-][^_-]*"</span><span style="color:#323232;">) ?regex]
</span>
Deebster,
@Deebster@programming.dev avatar

@weiming looks good! I am fluent in regex and SQL and I know some Clojure, but these datalog queries are still a bit of mystery to me… that’s the thing I need to visualise!

Deebster,
@Deebster@programming.dev avatar

<span style="color:#323232;">function delete-branches() {
</span><span style="color:#323232;">  git branch |
</span><span style="color:#323232;">    grep --invert-match '*' |
</span><span style="color:#323232;">    cut -c 3- |
</span><span style="color:#323232;">    fzf --multi --preview="git log {} --" |
</span><span style="color:#323232;">    xargs --no-run-if-empty git branch --delete --force
</span><span style="color:#323232;">}
</span>

This is really slick.

Deebster,
@Deebster@programming.dev avatar

Yup, I noticed that no-Helix-inside-Helix comment too, but I don’t use my git tools to edit files anyway. I often stage only certain lines, so doing that interactively is 90% of why I’d use similar tools.

Deebster,
@Deebster@programming.dev avatar

I just now noticed it was gone. Did it just vanish one day, or did its users at least have some hint?

edit: looks like it was a surprise: lemmyverse.link/mander.xyz/post/12163154

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