RioTechriotech.hashnode.dev·Aug 16, 2024Data mapping in Visual Studio Code can be achieved by using a custom XSLT file.Did you know that you can perform data mapping in Visual Studio Code using a custom XSLT file? It’s a powerful technique that can help you streamline your workflow and make your development process much more efficient. With just a few simple steps, y...Discussdata mapping
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,...DiscussDatabases 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...DiscussFunctional 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...DiscussXSLT
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...DiscussFunctional 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...DiscussFunctional 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. ...DiscussFunctional idioms in XSLT/XPath/XQueryXSLT
Ricardo Lopesrplopes.hashnode.dev·May 30, 2024Styling Your RSS For a Better WebBefore we had the walled gardens of social media feeds, there was a wonderful time when sites published their feeds in an open format (RSS) that we could subscribe to, free from dopamine-inducing algorithms, creepy targeted ads, and privacy violation...Discussrss
Mark Nichollskookerella.com·May 8, 2024Producing JSON in XSLT, a simple walkthrough.XSLT isnt just for XML, it can, surprisingly transform from and to JSON, but simple tutorials seem thin on the ground, what follows is a walkthough of of how to generate a simple JSON output.Discussxsl
Mark Nichollskookerella.com·May 8, 2024Dependency injection in XSLT...or actually maybe notEver written two, three or more stylesheets that are almost the same, but not quite the same, maybe you've struggled with #import or #include to separate your core shared code from the bespoke specific code? Maybe you're an OO programmer steeped in t...DiscussXSLT