357 private links
Zahlungsystem:
- Revolut
- Wero, der Dienstleister der European Payments Initiative (EPI)
KI-Lösungen:
- Mistral AI entwickelt Open-Source-Sprzchmodellen und auf Privatsphäre achtet
- das deutsche Aleph Alpha fokussiert sich auf KI-Lösungen für Firmenkunden und öffentliche Auftraggeber
How to store the traits related to an object? Typetag use a type property in JSON format and integrates with serde.
The places are based on OpenStreetMap objects.
A good news
Alors que déjà il y a 18 ans https://sebsauvage.net/rhaa/index.php?2007/05/25/10/08/26-le-debut-de-la-fin-de-la-taxe-microsoft-
On peut se passer de Windows pour la majorité des usages maintenant.
Time management can be useful
Compare a slot machine to vibe coding. It matches.
Ils vont utiliser LibreOffice, avec des plugins ou extensions dédiée à la défense.
nous le faisons pour que l'armée fédérale, en tant qu'organisation qui est là pour fonctionner lorsque tout le reste est à terre, continue à disposer de produits qui fonctionnent dans notre sphère d'influence
La problématique majeure pour se soustraire de Microsoft réside dans les dépendances associées : la plupart de nos applications métiers dialoguent avec les outils Microsoft
Eh oui malheureusement. En revanche, avec des outils libres, il est possible de développer en interne pour que les applications métiers dialoguent avec ces logiciels libres.
All the forms are sent as PDF.
When the experience of clicking a link, waiting for a Javascript-heavy page to load and dismissing a thousand pop-ups has become the norm, it’s hardly surprising that a good many users would rather bypass that experience altogether and are turning to AI and chatbots to do the browsing for them.
The experience of browsing the web could be so much better than it is right now, without the huge social and environmental cost of AI. Perhaps there would be less demand for chatbots if the web itself was less hostile.
550 000 espaces personnels sur monlycée.net fournis par Leviia.
I was seized by the idea of combining two pre-existing computer technologies: the internet and hypertext, which takes an ordinary document and brings it to life by adding “links”. I believed that giving users such a simple way to navigate the internet would unlock creativity and collaboration on a global scale.
How to avoid AI enshittify similarly to the web?
First of all, we must ensure policymakers do not end up playing the same decade-long game of catchup they have done over social media.
Current development and governance of AI are dictated by companies.
The parsers are different in JS, Python, Go and Java.
Number are not precise:
- MAX_SAFE_INTEGER limits the number. Twitter had to use an `id_str.
- decimal precision is unreliable (in JS) --> always use dedicated decimal types (Python’s Decimal, Java’s BigDecimal, JavaScript’s decimal libraries)
- UTF-8 encoding in JSON allow single unicode code points or composed ones. Use
.normalize("NFC")for JS strings. - the object key order should be alphabetically in JSON.
- Different languages handle absence of values (
undefined,nullor a missing property) differently. - No time format is official, so it's always custom:
{ "iso_string": "2023-01-15T10:30:00.000Z", "unix_timestamp": 1673780200, "unix_milliseconds": 1673780200000, "date_only": "2023-01-15", "custom_format": "15/01/2023 10:30:00" } - Different parsers fail differently on malformed JSON.
The twitter example is only one. There is also postgres that stores the format as JSON and JSONB (normalized).
MongoDB uses an extended JSON format.
Workarounds:
- Use Schema Validation!
- custom normalisation function#:~:text=Normalize%20Data%20Types%3A%20Ender%E2%80%99s%20Data%20Normalization%20Game)
- Tests! Numeric Precision Tests, Unicode and String Handling, Date and Time Consistency, Error Handling Uniformity, Cryptographic Consistency, Performance and Memory Behavior