FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
🇭🇷 Hrvatska devs: Add OIB (Osobni Identifikacijski Broj) to the AI identity standard — Soulprint open source (30 min PR)
How-ToWeb Development

🇭🇷 Hrvatska devs: Add OIB (Osobni Identifikacijski Broj) to the AI identity standard — Soulprint open source (30 min PR)

via Dev.to WebdevManuel Felipe Arias Pineda1mo ago

AI agents make decisions without identity verification. Soulprint — privacy proofs, 100% local, MIT. 🇭🇷 Croatian OIB is not yet in Soulprint. Add it in 30 minutes. OIB format 11 digits. ISO 7064 MOD 11-10 check digit algorithm. const HR : CountryVerifier = { countryCode : " HR " , countryName : " Croatia " , documentTypes : [ " oib " ], parse ( ocrText : string ): DocumentResult { const oib = ocrText . match ( / (\d{11}) / )?.[ 1 ] ?? "" ; return { valid : !! oib , doc_number : oib , country : " HR " }; }, validate ( docNumber : string ): NumberValidation { if ( ! /^ \d{11} $/ . test ( docNumber )) return { valid : false }; let rem = 10 ; for ( let i = 0 ; i < 10 ; i ++ ){ rem = ( Number ( docNumber [ i ]) + rem ) % 10 || 10 ; rem = ( rem * 2 ) % 11 ;} return { valid : ( rem % 10 ) === Number ( docNumber [ 10 ]) }; }, }; export default HR ; 💻 GitHub · One PR. One country.

Continue reading on Dev.to Webdev

Opens in a new tab

Read Full Article
19 views

Related Articles

Week 6 — No New Problems. Just Me and Everything I Already Learned.
How-To

Week 6 — No New Problems. Just Me and Everything I Already Learned.

Medium Programming • 2d ago

What OpenClaw Gets Wrong Out of the Box (And How to Fix It)
How-To

What OpenClaw Gets Wrong Out of the Box (And How to Fix It)

Medium Programming • 2d ago

Android Remote Compose:讓 Android UI 不用發版也能更新
How-To

Android Remote Compose:讓 Android UI 不用發版也能更新

Medium Programming • 2d ago

How-To

Learn Something Old Every Day, Part XVIII: How Does FPU Detection Work?

Lobsters • 3d ago

“Learn to Code” Is Dead… Learn to Think Instead
How-To

“Learn to Code” Is Dead… Learn to Think Instead

Medium Programming • 3d ago

Discover More Articles