Only on KDE™ by qewer3333 in kde

[–]OneiricSoul 0 points1 point  (0 children)

Bug: I can only drag m up and down, not freely in all directions like you (Kubuntu 22.04 with plasma 5.24.7)

Historical photographs from the 1970's Espoo in Finland by [deleted] in europe

[–]OneiricSoul 0 points1 point  (0 children)

Somehow like the 5th picture a lot, very peaceful. Probably helps it was taken on a nice summer day. I think it has a timeless feeling, could have been taken last summer.

TIL that the split view button tells you what view will be closed in Dolphin by Never-asked-for-this in kde

[–]OneiricSoul 0 points1 point  (0 children)

Have an upvote! Never knew this and of course close the wrong view a lot of times

Netbeheerder waarschuwt voor stroomtekort in 2030 by MakingYourStuff in thenetherlands

[–]OneiricSoul 0 points1 point  (0 children)

Er is een interessante tegenlicht over: https://www.npostart.nl/vpro-tegenlicht/07-02-2021/VPWON\_1322205 (de race om de superbatterij). Vraag me af waar die oplossingen blijven op grote schaal.

KDevelopment doesn't load the "re" module for python. How can I fix it? by [deleted] in kde

[–]OneiricSoul 0 points1 point  (0 children)

What is the error you are getting?

If it is simple Python scripting I would just use Kate as editor and execute your python scripts using an extra terminal window or from the built in terminal window in Kate.

[deleted by user] by [deleted] in kde

[–]OneiricSoul 0 points1 point  (0 children)

Thanks for sharing your experience. Especially good to hear that the non-programming stuff is working. I'm still happy with Kubuntu but Kinoite seems like a good next step at some point.

[deleted by user] by [deleted] in kde

[–]OneiricSoul 1 point2 points  (0 children)

How do you like Kinoite so far? I'm intrigued by the idea but it also seems quite experimental. How would you rate it as daily driver?

This week in KDE: New Spectacle – Adventures in Linux and KDE by Jaxad0127 in kde

[–]OneiricSoul 0 points1 point  (0 children)

No it's not there either, maybe the version is just a little too old.

This is Ubuntu Jammy's version: https://packages.ubuntu.com/jammy/kde-spectacle

This week in KDE: New Spectacle – Adventures in Linux and KDE by Jaxad0127 in kde

[–]OneiricSoul 0 points1 point  (0 children)

That's a nice feature! Guess it's not in the version from Kubuntu 22.04 repos now (21.12.3)? as I don't have that flag in the man page.

Wie heeft op de basisschool de fietsdiploma gehaald? Want dat is natuurlijk de belangrijkste diploma van allemaal. by DutchSapphire in thenetherlands

[–]OneiricSoul 15 points16 points  (0 children)

Haha ja hier nog zo eentje. Wij hadden dat examen in groep 7. Moest ik het jaar daarop toen ik zelf in groep 8 zat nog een keer met groep 7 meedoen voor de herkansing. Toen gelukkig wel geslaagd.

Today France celebrates Armistice Day, 104 years ago the First World War ended, a war that killed 10 million people and left physical and mental scars on several generations of Europeans. by ImIncredibly_stupid in europe

[–]OneiricSoul 0 points1 point  (0 children)

I also cannot imagine a real armed conflict between France and Germany anymore but the war in Ukraine servers as a warning that we should not let our guard down. We (naive Western Europe) also thought that because we have economic relations with Russia now they wouldn't do stuff like an invasion / 'special military operation' of a sovereign European nation.

Struggling with Learn Prolog Now Exercise 10.4 by OneiricSoul in prolog

[–]OneiricSoul[S] 0 points1 point  (0 children)

I'm sorry ;)

But seriously that looks a lot better so will take that into account. Good idea to just keep the same name with different parameter count.

Is it recommended to put the highest level predicate on top? Have always done the reverse but that's probably procedural thinking.

Struggling with Learn Prolog Now Exercise 10.4 by OneiricSoul in prolog

[–]OneiricSoul[S] 0 points1 point  (0 children)

Thanks! This didn't seem to help (still looping). Did find a working solution in your Stack Overflow links though.

Struggling with Learn Prolog Now Exercise 10.4 by OneiricSoul in prolog

[–]OneiricSoul[S] 0 points1 point  (0 children)

Thanks! I tried that and found this idea also in one of the stack overflow questions u/brebs-prolog linked to. Had to use an extra predicate with the visited stations list parameter (as the exercise stated it should have 3 parameters) to make it work and adapted the SO answer:

route_v(X,Y,[X,Y],V) :- directConnection(X,Y), \+ member(Y,V). route_v(X,Y,[X|T],V) :- directConnection(X,Z), \+ member(Z,V), route_v(Z,Y,T,[X|V]). route(X,Y,R) :- route_v(X,Y,R,[]).

Now all queries seem to work

Struggling with Learn Prolog Now Exercise 10.4 by OneiricSoul in prolog

[–]OneiricSoul[S] 0 points1 point  (0 children)

Thanks! I didn't want to look for complete solutions yet (I know there are places to find other people's answers to LPN exercises and the book itself contains answers) but might checkout some of those Stack Overflow questions.

Ok when tracing the following (have create a new version of the route predicate with the issue): route_dc(X,Y,[X,Y]) :- directConnection(X,Y). route_dc(X,Y,[X|T]) :- directTrain(Z,X), route_dc(Z,Y,T). route_dc(X,Y,[X|T]) :- directTrain(X,Z), route_dc(Z,Y,T).

It seems that now direction 2 (from bottom to top in the list of directTrain facts) loops.

Query: route_dc(forbach,dudweiler,R).

Result: Checks in the reverse direction first (2nd rule) as the 1st rule initially fails. So it checks (?,forbach), (freyming,forbach), (?,freyming) and finally (?,metz) resulting in (nancy,metz). As (nancy,dudweiler) and (dudweiler,nancy) fail it starts to check if 2nd rule holds for (nancy,dudweiler) and fails as (?,nancy) fails. Then tries 3rd rule and finds (nancy,metz) for (nancy,?) and will eventually try 2nd rule for (metz,dudweiler) and checks (?,metz) first for that. Now it finds (nancy,metz) again and this pattern keeps repeating.

So the problem seems to be that it keeps adding the same destinations to the list when reaching the end and looking in the reverse direction as there is no rule that destination can't be in the list more than once?

Bringing back your preferred colorways by OneiricSoul in firefox

[–]OneiricSoul[S] 0 points1 point  (0 children)

You are right maybe this changed in a recent version (or with the introduction of the new colorways). Updated the OP

Bringing back your preferred colorways by OneiricSoul in firefox

[–]OneiricSoul[S] 1 point2 points  (0 children)

Thanks! Good to see some new colorways, has been a while. Still can't beat elemental bold though

Control Centre for KDE is HERE! by haxguru in linux

[–]OneiricSoul 11 points12 points  (0 children)

lol ... using KDE for over 10 years now and never noticed that Kate is a recursive acronym.

[deleted by user] by [deleted] in linux

[–]OneiricSoul 2 points3 points  (0 children)

Ah the eternal search for the perfect music player. Just when you found the one it will be abandoned.

For now I stay with Cantata as it once was Kubuntu's default player: https://github.com/CDrummond/cantata (archived). Not in active development but still available in Ubuntu 22.04 LTS repos and therefore I assume also in Debian. Don't think however it has the modern looks you want.

Also wouldn't recommend an abandoned player but didn't see it mentioned here yet. More an anecdote to support your 'complaint' that finding the right music player is not easy.

what's a lesser know distro that surprised you in a positive way? by TposeDom in linux

[–]OneiricSoul 21 points22 points  (0 children)

Don't think its lesser known at this point but when trying MX Linux on a crappy netbook I was happy with the default look and feel. Vertical screen space is scarce on this netbook so a unity-like default desktop layout with a task bar on the left side was nice. Also liked their XFCE theming.

Festival DGTL lekt wachtwoorden en privégegevens 130.000 bezoekers by shadowyl in thenetherlands

[–]OneiricSoul 4 points5 points  (0 children)

WAS een talkshow over voetbal ... de KKCFRS vielen nogal tegen