1
 
 

Trying to figure out how to best add text to an SVG, I thought maybe it doesn't show up because it's black-on-black, so I gave it stroke="white" before realizing I need to zoom out. Well, and stroke means the outline in SVG, so on the white background, it just makes the font look really thin.

This is the whole code:

<svg viewBox="0 -5 40 10" xmlns="http://www.w3.org/2000/svg">
  <text stroke="white">hello</text>
  <circle id="myCircle" cx="5" cy="5" r="4" />
  <use href="#myCircle" x="10" fill="blue" />
  <use href="#myCircle" x="20" fill="white" stroke="red" />
</svg>

And most of that is just this MDN example: https://developer.mozilla.org/en-US/docs/Web/SVG/Reference/Element/use#example

It does use my default font, which is Fira Sans. Will look different on other systems.

Screenshot of what looks like abstract art. The word "hello" is in thin, almost calligraphic letters at the top. Below it are three circles, spread out horizontally, in the colors black, blue and then red with white fill.
2
English ↔ Claudish Translator (programasweights.com)
submitted 3 weeks ago by to c/programmerhumor@lemmy.ml
3
Felony Bench: Be AI, Do Crime (www.felonybench.com)
submitted 4 weeks ago by to c/programmerhumor@lemmy.ml
4
5
BCP 177 aka RFC 6540 (thelemmy.club)
submitted 1 month ago by to c/programmerhumor@lemmy.ml
 
 

Alt text: Image macro: The world if the IESG had the same authority as the ISO. The background shows a futuristic landscape featuring green gras, glass towers, and flying cars and buses.

6
7
Real (thelemmy.club)
submitted 1 month ago by to c/programmerhumor@lemmy.ml
 
 
8
Forth (thelemmy.club)
submitted 1 month ago by to c/programmerhumor@lemmy.ml
9
 
 
10
11
Thank you IntelliJ (thelemmy.club)
submitted 1 month ago by to c/programmerhumor@lemmy.ml
 
 

I was just editing my Dockerfile and suddenly IntelliJ showed me the message "No" without any context.

12
Welp (thelemmy.club)
13
 
 
14
15
16
AI Worming through Word (enklypesalt.com)
submitted 1 month ago by to c/programmerhumor@lemmy.ml
17
18
19
98.css (jdan.github.io)
submitted 1 month ago by to c/programmerhumor@lemmy.ml
20
 
 

Hey Boss, look here!

I made a magical X-ray app that displays our code as wiring.

Here is the shiny, neat program that Bob wrote 15 years ago, right before he left us:

And here is what it is today, after Tom took it from Bob, and Jane from Tom, and Mick from Jane, and me from him, porting it to roughly four new platforms, and adding about 240 features from customer requests (150 of which were urgent):

21
22
 
 
23
Super Dario: One More Week (superdario.pawb.de)
submitted 2 months ago by to c/programmerhumor@lemmy.ml
24
 
 
25
 
 

SpaceXAI's AI coding tool Grok Build has been exposed for defaulting to uploading entire Git repositories, including code that the tool itself hasn't read or contextual calls, as well as the full Git commit history. A 12GB of repository data was sent to Google Cloud, where Grok Build uses Google GCP to store the collected data. If you run this on a sensitive stack, your entire repo is already compromised regardless if it's public or not. It's literal spyware.

Shipping source code to the cloud is bad enough, but blindly inhaling .env.local and .dev.vars in a background sync is absolute negligence. They are vacuuming up raw api keys, database credentials, and private nodes directly to GCP.

If you ran this locally, your private keys are now sitting on a remote server. consider every secret burned, treat your bare metal as completely compromised, and rotate your entire stack immediately.

Grok Build quietly adjusted its cloud strategy last night to stop uploading data, which further suggests that it was a conscious decision rather than a bug. The problem, however, is that development teams can re-enable data collection options from the cloud at any time, Grok Build is not open source and therefore nobody can do a code audit.

view more: next ›