Senior Frontend Engineer (React Native) at Mindera

Mindera is hiring Senior Frontend Engineer (React Native)

🚨 CRITICAL: CVE-2026-32621 in @Apollo federation-internals enables prototype pollution β€” risking code execution & data compromise. Affects versions <2.9.6, <2.10.5, <2.11.6, <2.12.3, <2.13.2. Patch now! https://radar.offseq.com/threat/cve-2026-32621-cwe-1321-improperly-controlled-modi-1de28d7f #OffSeq #CVE202632621 #GraphQL #Security
Full-Stack Engineer, AI Data Platform at Labelbox

Labelbox is hiring Full-Stack Engineer, AI Data Platform

Did you know you can use #InQL to recreate #GraphQL schema even when the introspection query is disabled? Our Schema Bruteforcer ensures "hidden" doesn't actually mean "off-limits".

Find out more at:
https://blog.doyensec.com/2025/12/02/inql-v610.html
https://github.com/doyensec/inql

#doyensec #appsec #security

Senior Software Engineer - iOS at Blinq

Blinq is hiring Senior Software Engineer - iOS

Senior Full Stack Software Engineer - ClickPipes Platform at ClickHouse

ClickHouse is hiring Senior Full Stack Software Engineer - ClickPipes Platform

Software Engineer - Paris hybrid at Aircall

Aircall is hiring Software Engineer - Paris hybrid

Da jetzt anscheinend das neue #ARDSounds ausgerollt ist, hab ich mir mal die #Graphql Api angeguckt. Die ist ganz einfach erreichbar ΓΌber:

https://api.ardaudiothek.de/apollograph

Mann kann da ganz nett mit Abfragen rumprobieren.

In dem Zuge hab ich mir auch mal alle Sendungen gezogen die dort derzeit zu finden sind und hier reingedumpt:

https://gist.github.com/gboeer/242909e4959fd0b1b47c1a9e5529fea1

#ARD #ard_mediathek

Apollo Server

Apollo server landing page

#Emacs uses the Unicode Character Database (UCD) compiled into its binary. Every codepoint has properties β€” category, bidirectional class, case folding, combining class, etc. Emacs loads this at startup and uses it for rendering, input methods, and font selection. Agda goes further β€” it uses the UCD to determine which codepoints are valid identifiers, operators, or whitespace, since #Agda allows Unicode operators like βˆ€ β†’ ⊒ Ξ» directly in source.
Fontconfig then maps codepoints to glyphs via font lookup. If no font covers the codepoint you get a replacement box.
#GraphQL OTOH has no native binary or raw-text type β€” everything is a JSON string, so any unescaped byte that's invalid in JSON (control chars, malformed UTF-8 sequences like your 0xD6 case) breaks the entire response. Emacs and Agda never have this problem because they read bytes directly and interpret encoding explicitly β€” they don't depend on an intermediate serialization format like JSON that has strict validity rule
#til #git commits messages esp for #sourcehut need always be valid #ascii chars for its #graphql api
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xd6 in position 527572
0xd6 is a valid Latin-1 character (Γ–) but invalid as a UTF-8 continuation byte. That byte pattern β€” a single high byte that isn't a valid UTF-8 sequence β€” is the signature of Latin-1 or Windows-1252 encoded text leaking into what should be a UTF-8 response. Likely a commit author name with a non-ASCII character encoded in Latin-1 by their git client
but why
> GraphQL errors with non-ASCII or Latin characters in JSON usually stem from encoding mismatches or unescaped characters (like
\, ", or control codes
-
) causing jq to fail. To fix this, ensure the GraphQL server returns UTF-8, sanitize data for JSON-style escapes, or use --raw-output (-r) and --raw-input (-R) in jq
#jq #json
finally a case where i need #python as #bash gives up