#parse — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #parse, aggregated by home.social.
-
Parse, Don't Validate – In a Language That Doesn't Want You To
https://cekrem.github.io/posts/parse-dont-validate-typescript/
#HackerNews #parse #validation #typescript #programming #bestpractices #developer
-
"Parse, don't validate" through the years with C++
https://derekrodriguez.dev/parse-dont-validate-through-the-years-with-c-/
#HackerNews #Parse #C++ #programming #software #development #coding #bestpractices
-
CVE Alert: CVE-2026-32944 - parse-community - parse-server - https://www.redpacketsecurity.com/cve-alert-cve-2026-32944-parse-community-parse-server/
#OSINT #ThreatIntel #CyberSecurity #cve-2026-32944 #parse-community #parse-server
-
CVE Alert: CVE-2026-32886 - parse-community - parse-server - https://www.redpacketsecurity.com/cve-alert-cve-2026-32886-parse-community-parse-server/
#OSINT #ThreatIntel #CyberSecurity #cve-2026-32886 #parse-community #parse-server
-
CVE Alert: CVE-2026-32728 - parse-community - parse-server - https://www.redpacketsecurity.com/cve-alert-cve-2026-32728-parse-community-parse-server/
#OSINT #ThreatIntel #CyberSecurity #cve-2026-32728 #parse-community #parse-server
-
CVE Alert: CVE-2026-32770 - parse-community - parse-server - https://www.redpacketsecurity.com/cve-alert-cve-2026-32770-parse-community-parse-server/
#OSINT #ThreatIntel #CyberSecurity #cve-2026-32770 #parse-community #parse-server
-
CVE Alert: CVE-2026-32878 - parse-community - parse-server - https://www.redpacketsecurity.com/cve-alert-cve-2026-32878-parse-community-parse-server/
#OSINT #ThreatIntel #CyberSecurity #cve-2026-32878 #parse-community #parse-server
-
Parse, Don't Validate and Type-Driven Design in Rust
https://www.harudagondi.space/blog/parse-dont-validate-and-type-driven-design-in-rust/
-
I'm trying to #parse a string into an int in an #esphome lambda. I can use std::stoi() and it works, but I'm struggling at error management. It raises an #exception if the string is not parseable (i.e. "text" instead of "2"), but ESPHome disables the exceptions, so I can't simply try-catch it...
ATM the code is mostly working, but if the string isn't a valid int, the entire device crashes D:
How am I supposed to implement this? -
[PARSE] - Ransomware Victim: SystemExec Co[.], Ltd[.] - https://www.redpacketsecurity.com/parse-ransomware-victim-systemexec-co-ltd/
#parse #dark_web #data_breach #OSINT #ransomware #threatintel #tor
-
Unfortunately, I have to look for a new job.
I'm an #iOS and #macOS #software #developer, experienced in #UIKit, #AppKit, #ObjectiveC, #Swift and #SwiftUI, have worked with the #Parse framework as well as #Realm / #MongoDB and the whole toolchain around it. I have been working in software development for about 30 years and am looking for a remote position (permanent role, preferably in an AT/DE startup).
So if you know someone who knows someone. Thanks for sharing. 🙏🏻
-
Leider muss ich mir einen neuen Job suchen. Ich bin #iOS und #macOS #Software-#Entwickler, kenne #UIKit, #AppKit, #ObjectiveC, #Swift und #SwiftUI, hab Erfahrung mit dem #Parse-Framework sowie #Realm / #MongoDB und der ganzen Toolchain drumherum. Ich arbeite seit ca. 30 Jahren in der Software-Entwicklung und suche eine Remote-Anstellung (vorzugsw. in einem Startup).
Solltet ihr also jemanden kennen, der jemanden kennt… Danke fürs Teilen. 🙏🏻
:BoostOK:
-
Neuer Versuch.
Betriebsbedingt muss ich mir leider einen neuen Job suchen. Ich bin #iOS und #macOS #Entwickler, kenne #UIKit, #AppKit, #ObjectiveC, #Swift und #SwiftUI, hab Erfahrung mit dem #Parse-Framework sowie #Realm / #MongoDB und der ganzen Toolchain drumherum. Ich arbeite seit ca. 30 Jahren in der Software-Entwicklung und suche eine Remote-Anstellung (vorzugsw. in einem Startup).
Solltet ihr also jemanden kennen, der jemanden kennt… Danke fürs Teilen. 🙏🏻
:BoostOK:
-
Btw: Ich muss nicht unbedingt in diesem Bereich arbeiten. Es ist nur das, was ich schon lange mache und kann. Wenn mir die Moeglichkeit geboten wird, mich On-The-Fly in ein neues Gebiet einzuarbeiten, bitte gerne! Es sollte eben nur Remote sein.
#iOS #macOS #Software #Entwickler #UIKit #AppKit #ObjectiveC #Swift #SwiftUI #Parse #Realm #MongoDB #FediHire
-
Neuer Versuch.
Betriebsbedingt muss ich mir leider einen neuen Job suchen. Ich bin #iOS und #macOS #Software-#Entwickler, kenne #UIKit, #AppKit, #ObjectiveC, #Swift und #SwiftUI, hab Erfahrung mit dem #Parse-Framework sowie #Realm / #MongoDB und der ganzen Toolchain drumherum. Ich arbeite seit ca. 30 Jahren in der Software-Entwicklung und suche eine Remote-Anstellung (vorzugsw. in einem Startup).
Solltet ihr also jemanden kennen, der jemanden kennt… Danke fürs Teilen. 🙏🏻
:BoostOK:
-
@laurenshof Hoi Laurens. We zagen een vervelend probleem met parsen van de JSON van jouw blog AP nodeinfo API: https://browser.pub/https://fediversereport.com/wp-json/activitypub/1.0/nodeinfo
Zoals je ziet in de JSON output returneert deze API activeMonth & activeHalfyear als een string ("2") in plaats van een integer (2). Welke Wordpress plugin gebruik je? Dan meld ik dit probleem upstream.
-
Context free grammars (CFG) are better than parsing expression grammars (PEG), because CFGs represent how we think.
Parser combinators are similar to PEGs, so they are worse than CFGs, too.
So, don't use Rust libraries
nom,combine. Uselalrpop.Don't use Haskell libraries
parsec,gigaparsec,attoparsec,megaparsec,trifecta. UseEarley,happy.See more detailed story in my new article https://safinaskar.writeas.com/this-is-why-you-should-never-use-parser-combinators-and-peg .
The story also includes some cases, where PEG and parser combinators may still be useful. Also, the article gives links to my Haskell parsing libraries.
#haskell #rust #parsing #parse #cfg #peg #combinators #parsercombinators #parsingcombinators #nom #combine #lalrpop #parsec #earley #happy
-
#datarecovery experts, please can you help?
The #SD card in my #Android phone, decided to become unusable as extended storage recently. I removed it and cloned it using #ddrescue in Linux, and I've now got a 32G hex file ready to analyse.
I can't mount the SD card nor its cloned hex file, but I can see in the hex file what look like regular file structures.
Without being able to mount either the drive nor the clone file, how can I #parse the #hex file for recognisable files and #rescue them?
-
I'm pleased to announce Guile-PNG version 0.7.2:
https://github.com/artyom-poptsov/guile-png/releases/tag/v0.7.2Guile-PNG is a pure Scheme PNG (RFC 2083) format parser for GNU Guile.
The library allows to create, read process and write PNG images.
-
Republished "JsonHilo.js – ultra-fast lossless JSON parse event streaming" (2021)
https://xtao.org/blog/jsonhilo.html
#json #deno #javascript #parse #event #streaming #fast #lossless #parser #programming #efficient #memory
-
Does anyone know the technical details of "Parse dependent requests” in the Microsoft Azure Monitor availability test? It says:
"Test requests images, scripts, style files, and other files that are part of the webpage under test. The recorded response time includes the time taken to get these files. The test fails if any of these resources can't be successfully downloaded within the timeout for the whole test. If the option isn't selected, the test only requests the file at the URL you specified. Enabling this option results in a stricter check. The test could fail for cases, which might not be noticeable when you manually browse the site.”
What I'm wondering is whether all resources must be listed flat in the same HTML document, or whether Azure Monitor will traverse a hierarchy of links?
https://learn.microsoft.com/en-us/azure/azure-monitor/app/availability-standard-tests
#Microsoft #Azure #Monitor #ApplicationInsights #Availability #Test #URL #HTML #Parse
-
The lunatic, the lover, and and the poet are of imagination all compact. ~A Midsummer Night's Dream, Act 1, Scene 1. Doth it #parse?
lo dijrbasilika linuks .ije lo tercakyjme .ije lo jbobau cu se zdani lo zdani be lo sucta xanri je'e cu zdani be lo mucti xanri
#ArchLinux, #Perl, and #Lojban
reside in the House of Abstract Imagination. -
Epsilon is sometimes represented in #POBNF (Plain Old #BNF) as the Greek letter
itselff, the letter 'E' or 'e' or sometimes as '...' Different
BNF authors write it according to their own internal rules, apparently.
The fact of the symbol in BNF shows the rather tight coupling between a #grammar
notation and the underlying finite state machine tech used to actually #parse
the strings in the #language. Really, it is just multiple states returned from the delta function. #NFA #PDA #DFA -
Your request was heard. In the past couple of months, I published a #syslog_ng #tutorial series in #blog and #video format, which brings you from basic #logging #concepts to using syslog-ng to #collect, #parse, #enrich log messages and #store them to #Elasticsearch. This blog serves you as a kind of "Table Of Contents".
https://www.syslog-ng.com/community/b/blog/posts/learning-syslog-ng-the-easier-way