Pedram Badakhchanipedbad.hashnode.dev·Jul 5, 2024Transforming XML: XML PipelinesXML transformations refer to the process of converting XML data from one format to another, typically for the purpose of presentation or integration with other systems. This transformation can involve converting XML into various formats such as HTML,...Databases and Advanced Data Techniquesxml
Mark Nichollskookerella.com·Jun 15, 2024Functional XSLT/XPath/XQuery - #4 Monad patternThe monad is probably the most written about functional pattern, it is famous for convoluted and obtuse explanations, but I will steal some of the better explanations and translate them into XSLT/XPath. (adapted directly from All About Monads - Haske...Functional idioms in XSLT/XPath/XQueryXSLT
Mark Nichollskookerella.com·Jun 9, 2024Functional XSLT/XPath/XQuery - #4 MonoidUsually in these sorts of tutorials Monoid comes first, its the simplest, easiest most familiar sort of thing, we don't really even need code to describe it, its loosely the theory of having something you can composing two things together and getting...XSLT
Mark Nichollskookerella.com·Jun 5, 2024Functional XSLT/XPath/XQuery - #3 Maybe data typeWe are now in a position to fill in a missing data type. Lets cover some XPath basics. Consider the following XSLT <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" exclude-result-prefixes="#all" version...Functional idioms in XSLT/XPath/XQueryXSLT
Mark Nichollskookerella.com·Jun 3, 2024Functional XSLT/XPath/XQuery - #1 IntroductionTo the modern programmer these languages appear strange beasts, born when the world was obsessed with XML, it is declarative, almost functional, but somehow missing some of the idioms of later more consciously functional languages. For a functional p...Functional idioms in XSLT/XPath/XQueryXSLT
Mark Nichollskookerella.com·Jun 3, 2024Functional XSLT/XPath/XQuery - #2 Functor patternIn the previous blog we introduced some machinery, the id function, and function composition, we talked about function types, and invented an informal notion of parametric types in order to aid our thinking. We now move onto the functional patterns. ...Functional idioms in XSLT/XPath/XQueryXSLT