[-] [email protected] 9 points 16 hours ago

Korrekt waere eigentlich auf das Gas die Preise fuer CO2-Zertifikate vom freien Markt draufzuschlagen...

[-] [email protected] 3 points 2 days ago

Das wilde geparke wenn wir in Deutschland unterwegs sind nervt aber schon inzwischen - in der Stadt sollte man Strassenparken komplett verbieten, im Dorf nur fuer Besucher fuer maximal ein paar Tage. Dort geht das schon dass da mal ein paar Autos ein paar Tage zusaetzlich rumstehen (so war das damals in den 80ern auch), aber das heutige Autoaufkommen wo du dann fuer ein Haus mit drei Wohnungen 6+ Autos hast funktioniert nicht.

Das ist jetzt keine Zustimmung zu der "zwei Parkplaetze sind Pflicht"-Regel, sondern ein "wenn jemand mit zwei Autos das Haus kauft muss er halt ein Auto abgeben, oder sich woanders einen Parkplatz mieten".

[-] [email protected] 3 points 3 days ago

Haengt vom Alter ab - Grundschule bis eventuell Mittelstufe sind Arbeitshefte schon sinnvoll. Je weiter man dann vom spielerischen Lernen wegkommt desto weniger Sinn machen sie.

Das geht dann so weit dass man in der Grundschule fuer einige Faecher kein separates Schulbuch braucht. Also, ist schon ein Buch - aber zum durcharbeiten im Buch. Die Mathebuecher hier sind so aufgebaut, mit Fliesstext drumrum der mit dem Leselevel komplizierter wird.

[-] [email protected] 3 points 3 days ago* (last edited 3 days ago)

Es sollte auch Standard sein dass Arbeitshefte uebernommen werden. Ich ging in den 80ern/90ern in Baden-Wuerttemberg in die Schule - und hab spaeter dann bemerkt dass wir da wohl so ziemlich die beste Ausstattung hatten. Und mir ging damals schon nicht weit genug was von der Schule gestellt wird - und so um 2000 rum wurde da auch gekuerzt. Wir hatten zum Beispiel noch dass man Buecher kaufen konnte, und dann die Stadt 50% des Kaufpreises uebernommen hat (ansonsten gabs die natuerlich aus der Schulbuecherei) - der Diercke Weltatlas war eines der gekauften, und der wird immer noch ab und an benutzt.

Inzwischen bin ich in Finnland, das Lehrmittelfreiheit etwa so lebt wie ich mir das vorgestellt hatte - es wird alles gestellt, inclusive Heften, Stiften, Radiergummis, Lineal, ... - und natuerlich auch Computer, wenn die benutzt werden.

[-] [email protected] 3 points 3 days ago

In der Gegend um Pasila ist (zumindest fuer jemand der nur gelegentlich in die Gegend kommt) die Verkersfuehrung fuer Radfahrer teilweise eher schwer zu verstehen - ansonsten ist das aber ganz ordentlich, und neue Projekte sind dann oft fuer ohne Autos. Ich freu mich schon auf die Kruunusillat - nicht weil ich davon profitieren wuerde, sondern einfach weil niemand anderes solche Projekte macht.

[-] [email protected] 2 points 3 days ago

Koennte aber auch damit zusammenhaengen dass es ausserhalb davon ungleich schwerer ist sowas aufzuziehen. Ich kenn jetzt die Ferienlager nicht, aber bei anderen kirchlichen Traegerschaften ists halt oft so dass die Gemeinde oder Landkreis was haben will, und dann halt die Kontakte bei den Kirchen abklapperrt ob man da nicht was machen kann, Papierkram ist schon halb erledigt, Bundesfoerderung ist ohne Probleme machbar.

[-] [email protected] 17 points 4 days ago

Die Frage hier ist eher wie viel davon tatsaechlich von den religioesen Organisationen finanziert wird, und was davon - direkt oder indirekt - Steuergelder sind.

Ein guter Teil der kirchlichen Traegerschaften (gerade auch bei Kindergaerten oder Krankenhaeusern) ist nicht viel mehr als die Kosten in ein anderes, auch steuerfinanziertes Budget zu schieben. Und sowas kann man sich dann echt sparen, und das direkt ohne Indoktrination aufziehen.

[-] [email protected] 2 points 5 days ago

Ich hab langsam Sorgen dass das mit Meeresstrand in Aachen bis zu meiner Rente nichts wird.

[-] [email protected] 3 points 6 days ago

Frueher war das ganz praktisch - da hatten sie noch Chemikalien zum Filmentwickeln und bisschen anderes Laborzubehoer. Und auch nicht wahnsinnig ueberteuert. Ist jetzt aber auch schon vermutlich 25 Jahre her.

7
submitted 1 month ago by [email protected] to c/[email protected]
35
submitted 2 months ago by [email protected] to c/[email protected]
1
submitted 2 months ago by [email protected] to c/[email protected]

This uses the tool support from gptel to let any LLM with tool support

  • search my bbdb for contact info
  • perform a bbdb search for all contacts with an anniversary field
  • use gnus to compose an email

plus a few helper functions to make it useful (like giving it the ability to query the current date).

The tool definition it used in the above screenshot are:

(defun gptel-tool--get-date ()
  "Return the current date"
  (format-time-string "%Y-%m-%d"))

(defun gptel-tool--compose-email (to-address subject text)
  "Open an email compose buffer '*new message*' to to-address with subject subject."
  (gnus-setup-message 'message (message-mail to-address subject))
  (insert (concat "\n" text)))

(defun gptel-tool--bbdb-search (name)
  "Search bbdb for NAME"
  (bbdb-search (bbdb-records) :name name))

(defun gptel-tool--bbdb-search-anniversary (anniversary-type)
  "Search bbdb for anniversary with ANNIVERSARY-TYPE"
  (let ((bbdb-default-xfield 'anniversary))
    (bbdb-search (bbdb-records) :xfield anniversary-type)))

And they get registered with the following code:

      (gptel-make-tool
       :function #'gptel-tool--get-date
       :name  "gptel-tool--get-date"
       :description "Use to get the current date in %Y-%m-%d format. After calling this tool, stop. Then continue fulfilling user's request."
       :category "emacs")

      (gptel-make-tool
       :function #'gptel-tool--compose-email
       :name  "gptel-tool--compose-email"
       :description "Open an email compose buffer and set subject, to-address and body. After calling this tool, stop. Then continue fulfilling user's request."
       :args (list '(:name "to-address"
                           :type string
                           :description "The address to send to")
                   '(:name "subject"
                           :type string
                           :description "The mail subject")
                   '(:name "body"
                           :type string
                           :description "The body text of the email"))
       :category "emacs")

      (gptel-make-tool
       :function #'gptel-tool--bbdb-search
       :name  "gptel-tool--bbdb-search"
       :description "Return a bbdb entry for name, or nil if not found. After calling this tool, stop. Then continue fulfilling user's request."
       :args (list '(:name "name"
                           :type string
                           :description "The name to search for"))
       :category "emacs")

      (gptel-make-tool
       :function #'gptel-tool--bbdb-search-anniversary
       :name  "gptel-tool--bbdb-search-anniversary"
       :description "Return or a specific anniversary type. After calling this tool, stop. Then continue fulfilling user's request."
       :args (list '(:name "anniversary-type"
                           :type string
                           :description "The anniversary to search for, for example 'birthday' for birthdays"))
       :category "emacs")
19
Miniontaur (kyu.de)
submitted 8 months ago by [email protected] to c/[email protected]
[-] [email protected] 184 points 1 year ago

The annoying aspect from somebody with decades of IT experience is - what should happen is that crowdstrike gets sued into oblivion, and people responsible for buying that shit should have an epihpany and properly look at how they are doing their infra.

But will happen is that they'll just buy a new crwodstrike product that promises to mitigate the fallout of them fucking up again.

28
submitted 1 year ago by [email protected] to c/[email protected]

Screenshots of the UI changes on the Mac - in my opinion it is now just wasting a lot of screen estate for zero benefit.

On non-Macs they're adding an extra usability issue by hiding the top menu bar. I've gove back to 2.7.4 for now - fortunately I had my configuration in git.

Up to 2.7.4:

2.8.4:

[-] [email protected] 190 points 1 year ago

Intel is well known for requiring a new board for each new CPU generation, even if it is the same socket. AMD on the other hand is known to push stuff to its physical limits before they break compatibility.

21
submitted 2 years ago by [email protected] to c/[email protected]
59
submitted 2 years ago by [email protected] to c/[email protected]

Vor ein paar Tagen gabs hier ein Post zu Deutschlandwochen im Lidl in Italien, wo einer aus Schweden und ich mich ueber das Layout gewundert haben.

Jetzt sind auch hier Deutschlandwochen - und anscheinend wurde generell das Packungslayout geaendert - frueher war das alles "Alpenfest", jetzt "taste of deutschland".

Einige Produkte haben sich auch geaendert - z.b. waren die Apfel/Kirsch/Pflaumenkuchen frueher grosse runde Kuchen, jetzt sinds mehrere Teile.

Und Maultaschen sind wieder nicht dabei.

33
submitted 2 years ago by [email protected] to c/[email protected]

This is OpenDalle with img2img to make an existing picture into a futuristic city.

I took this picture at work a while ago, and it reminded me of cities with brutalist architecture we see in movies now and then, so I tried to get it made into one:

Other interesting attempts:

Forcing it to stay closer to the source made things look more like a highschool cardboard model:

117
submitted 2 years ago by [email protected] to c/[email protected]

I've finally found a bag which nicely fits almost everything I want to carry every day, and alos makes everything easily accessible - it is about the same size as what I used to carry, but now I no longer need to dump everything out to find what I neede, even with some lose parts still in there.

Contents:

Center:

  • 4 empty 64 microSD with SD adapter
  • one rpi 2040 with USB-A interface
  • headphones
  • bag of female jumper cables, with male-male adapters
  • a collection of the most used NFC keyfobs

Left side:

  • USB-C cable with attached USB-A adapter (USB3, missing on picture)
  • two USB-C to headphone adapters
  • satechi USB-C power meter
  • headphone splitter
  • USB-C to SATA adapter
  • USB-C smartcart reader
  • VGA to HDMI
  • USB Ninja (USB-C)
  • proxmark3 with battery/bt
  • collection of NFC magic cards

Right side:

  • USB-C hub with charging port
  • miniDP to HDMI
  • small USB-C dock
  • USB-C to whatever adapters (mini, micro, B, HDMI, ..)
  • Chameleon ultra
  • MPP pen
  • Ninja USB remote
  • USB-C to serial, connected via jumper cables

2
submitted 2 years ago by [email protected] to c/[email protected]

I recently had to add a Mac to my zoo of hardware I'm trying to do productive work on - which prompted me to clean up and document my environment variable importer, which had grown to platform specific functions with lots of code duplication.

On both Windows and MacOS I have properly configured shells with all relevant variables - so it makes sense to query them, instead of duplicating the logic how they create that configuration into Emacs.

On Linux that'd have worked too, but I also have the relevant variables in the systemd user session, and querying that is a tiny bit faster than launching a shell.

[-] [email protected] 252 points 2 years ago

This was just a matter of time - and there isn't really that much the affected can do (and in some cases, should do). Shutting down that service is the correct thing - but that'll only buy a short amount of time: Training custom models is trivial nowadays, and both the skill and hardware to do so is in reach of the age group in question.

So in the long term we'll see that shift to images generated at home, by kids often too young to be prosecuted - and you won't be able to stop that unless you start outlawing most of AI image generation tools.

At least in Germany the dealing with child/youth pornography got badly botched by incompetent populists in the government - which would send any of those parents to jail for at least a year, if they take possession of one of those generated pictures. Having it sent to their phone and going to police for a complaint would be sufficient to get prosecution against them started.

There's one blessing coming out of that mess, though: For girls who did take pictures, and had them leaked, saying "they're AI generated" is becoming a plausible way out.

574
submitted 2 years ago* (last edited 2 years ago) by [email protected] to c/[email protected]

I was thinking about that when I was dropping my 6 year old off at some hobbies earlier - it's pretty much expected to have learned how to ride a bicycle before starting school, and it massively expands the area you can go to by yourself. When she went to school by bicycle she can easily make a detour via a shop to spend some pocket money before coming home, while by foot that'd be rather time consuming.

Quite a lot of friends from outside of Europe either can't ride a bicycle, or were learning it as adult after moving here, though.

edit: the high number of replies mentioning "swimming" made me realize that I had that filed as a basic skill pretty much everybody has - probably due to swimming lessons being a mandatory part of school education here.

view more: next ›

aard

0 post score
0 comment score
joined 2 years ago