digitalcourage.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
Diese Instanz wird betrieben von Digitalcourage e.V. für die Allgemeinheit. Damit wir das nachhaltig tun können, erheben wir einen jährlichen Vorausbeitrag von 1€/Monat per SEPA-Lastschrifteinzug.

Server stats:

823
active users

#coding

76 posts60 participants8 posts today

"Microsoft has silently pushed an update back in April 2025 for Copilot Enterprise, enabling a live Python sandbox running Jupyter Notebook that can execute code in the backend. Well, that sounds like a terrific idea, let’s explore it for a bit!"

@internet

#ai #security #cybersecurity #coding
research.eye.security/how-we-r

Eye Research · How we Rooted Copilot - Eye ResearchAfter a long week, the Eye Security Research Team thought it was time for a small light-hearted distraction. So we rooted Copilot.

I just don't get why anyone would use:

```
display: flex;
flex-direction: column
```

when `display: grid` is supported, shorter to write and allows for a lot more flexibility if you want more from your layout.

#CSS#code#coding

Here’s a challenge to ethical programmers. I’m trying to implement a like function for my posts on my blog, but don’t want to store IPs, have cookies nor require registrations. How would one prevent likes getting spammed? Meaning one user can only like once?