Michael Gehrmann

UI Designer und Humanist aus Köln. 
Mag , , , , , , modernen Pflanzenzucht, Future Food, und wissenschaftsbasierter Politik.

Michael Gehrmanng12n
2024-12-15

It's the time of fundraisers, when being a radio host means you really have to fulfill music requests, and the only revenge is knowing that "Dream a Little Dream of Me" was originally recorded by Ozzie Nelson and his orchestra in 1931

Michael Gehrmanng12n
2024-11-11

“Semi-Annual Reminder to Learn and Hire for Web Standards”

Core skills ensure adaptability and a better user experience, as frameworks come and go, but standards remain essential.

adrianroselli.com/2024/09/semi

Michael Gehrmanng12n
2024-11-09

The things RFK Jr is saying about his plans and ideas in the upcoming Trump administration must feel uncomfortably familiar to many Europeans, especially the Green parties, ecologists and proponents of organic farming.
I'm curious, but not optimistic, to see how they react.

Michael Gehrmanng12n
2024-11-09

"Painful intelligence: What AI can tell us about human suffering".
A book by Aapo Hyvärinen, available in PDF.

cs.helsinki.fi/u/ahyvarin/pain

Michael Gehrmanng12n
2024-11-04

Ich hab Käsekuchen, ihr könnt mir gar nix!

Gebackener Käsekuchen in einer Springform. Der Kuchen hat eine goldbraune Oberfläche mit leichten Bräunungsrändern an den Seiten. Die Mitte des Kuchens ist leicht heller, was typisch für einen Käsekuchen ist, der gerade aus dem Ofen genommen wurde.
Michael Gehrmanng12n
2024-11-01

I am concerned that, especially in politics, transparency is misunderstood as a value in itself. Transparency, e.g. in algorithms, is not synonymous with being easy to understand. That is why regulation in the EU is heading in the wrong direction.

Michael Gehrmanng12n
2024-11-01

Kevin Powell is such a great CSS expert and teacher. I always learn something from watching his videos, even though I consider myself advanced. And this one is a real treat.

”At Last! Simple details/summary animation with pure CSS“

youtu.be/Vzj3jSUbMtI

Michael Gehrmanng12n
2024-10-31

Training AI on Reddit data will - if at all - result in some pretty twisted artificial minds.

Michael Gehrmanng12n
2024-10-27

Over-regulation can be a way of discouraging or controlling certain behaviours without explicitly banning them, giving the illusion of freedom while subtly restricting choice. It can create a maze of rules that, while not technically prohibiting anything, are so difficult to navigate that they effectively have the same effect as a ban. This approach can shift responsibility, making it harder to hold any single entity accountable for the restriction.

Michael Gehrmanng12n
2024-10-27

We need to go back to Europe as a project of makers rather than the EU as a project of lawyers.

Michael Gehrmanng12n
2024-10-27

Unfortunately, politicians, especially in the EU, are not using a valuable tool: the standard. Real work in developing web and accessibility standards that can be used by all would be much more effective than excessive and vague regulations

Michael Gehrmanng12n
2024-10-26

AI Image. Wholesome SciFi.
Autumn 🍂
Halloween 🎃
Love 🏳️‍🌈

Two men sitting closely together, sharing a quiet, intimate moment. They are surrounded by warm autumn leaves, and a large orange pumpkin sits in front of them, enhancing the seasonal feel.

The man on the left is shirtless, with a short beard, and light brown hair styled in a rugged, tousled cut. His arms are fitted with futuristic, mechanical prosthetics, giving him a cybernetic look. The man on the right, dressed in a dark sleeveless tactical vest, has a well-groomed beard and short dark hair. He gently leans toward the other man, his expression soft and affectionate, while his gloved hands rest on the pumpkin.
Michael Gehrmanng12n
2024-10-26

Looking forward to seeing you all at @smashingconf in next week 🥰
Not just to look up to the giants of the industry, but to be carried on their shoulders.

A large bronze statue of a tall man standing with his hands on his hips, looking down confidently. Below him, two smaller figures appear to be huddled together, almost in awe or fear of the large figure towering above them. The sculpture seems to convey a sense of dominance or protection by the larger figure. Behind the statue, there’s a stone building or castle with battlements and a tower, suggesting the statue is located in a historical setting. The sky above is partly cloudy.
Michael Gehrmanng12n
2024-10-25

Wir überziehen unser Land mit Abmahnfallen auf Kosten der Steuerzahler. Land und Kommunen müssen jetzt reagieren und diese auf Kosten der klagewütigen Künstler beseitigen. Der öffentliche Raum ist keine private Galerie für Abzocker.
tagesschau.de/inland/gesellsch

Michael Gehrmanng12n
2024-10-24

Habe ich schon erwähnt, dass ich nächste Woche in Belgien bin? Ich freue mich darauf.

Mit Midjourney schon mal vorausgeträumt.

Das Bild zeigt ein Glas Bier, das auf einem rustikalen Tisch steht. Das Bier ist hell und hat eine leichte Schaumkrone. Daneben befindet sich eine Vase mit getrockneten gelben und weißen Blumen. Im Hintergrund ist eine Straße oder ein Café mit unscharfem Fokus zu sehen, was eine ruhige, gemütliche Atmosphäre vermittelt. Die Beleuchtung ist warm und herbstlich.
Michael Gehrmanng12n
2024-10-24

Symbolbild aus Midjourney. Mit Bildbeschreibungsunterstützung von ChatGPT.

Das Bild zeigt einen grünen Filzhut, der auf einem hellen Holztisch liegt. Der Hut hat eine braune Ledergürtel-Dekoration um die Krone. Im Hintergrund sind unscharf verschiedene Gegenstände zu erkennen, möglicherweise Behälter oder Pinsel in einem rustikal eingerichteten Raum.
Michael Gehrmanng12n
2024-10-23

Warum bitte soll ein Drohnenfoto eines öffentlichen Kunstwerks anders behandelt werden als andere Bilder? So langsam verkommt der Kulturbetrieb zum kopflosen Luddismus.

„Urteil zu Drohnenaufnahmen und Urheberrecht erwartet“

www1.wdr.de/kultur/kulturnachr

Michael Gehrmann boosted:
Ana Tudor 🐯anatudor
2024-10-22

Simplest gradient border buttons (with border-radius) codepen.io/thebabydino/pen/vYo

Multiple cases, each just a few lines of code:
✨ solid background
✨ (semi)transparent background
✨ (semi)transparent background for input[type=button] (so no pseudos allowed)

Three buttons with the text "Boo!" and a gradient border. The first has a solid background, the others a semi-transparent one.The code for the first two cases.

```
/* ALL these methods work well with border-radius */
.opaque-background {
  	/* transparent, just reserves border space */
	border: solid 6px #0000;
	background: 
  		/* opaque background limited to padding-box */
		linear-gradient(silver, gainsboro) padding-box, 
    	/* border grad stretches across border-box */
    	var(--grad) border-box
}

.semi-transparent {
	position: relative;
	border: solid 6px #0000;
	
	&::after {
		--fill: conic-gradient(red 0 0);
		position: absolute;
		inset: -6px; /* cancel out parent border */
		border: inherit;
		border-radius: inherit;
		background: var(--grad) border-box;
		/* exclude padding-box out of border-box */
		mask: var(--fill) padding-box exclude, var(--fill);
		pointer-events: none;
		content: ''
	}
}
``
Michael Gehrmanng12n
2024-10-10

Ich bin im Büro angekommen und hasse Menschen. Nur ein klitzekleines bisschen mehr als vorher.

Jeden Tag ein kleines Erfolgserlebnis im .

Michael Gehrmanng12n
2024-10-09

Solidarität gibt es oft nur unter Vorbehalt. Das haben wir immer wieder erfahren.

Und wir erleben gerade eine Auffrischung.

Ist das schlecht?
Wahrscheinlich nicht.

Nur ein bisschen zu realistisch für das flauschige Gefühl.

Client Info

Server: https://mastodon.social
Version: 2025.04
Repository: https://github.com/cyevgeniy/lmst