I hereby claim:
- I am ndw on github.
- I am ndw (https://keybase.io/ndw) on keybase.
- I have a public key whose fingerprint is 645D 8055 B685 E0EC 3B0B B507 3B29 6D51 CC18 5A3B
To claim this, I am signing this object:
| Saxon 11.x produces: | |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <root a="b" | |
| c="d" | |
| h="e" | |
| f="g" | |
| a1="b" | |
| c1="d" | |
| h1="e" |
| import java.io.FileOutputStream; | |
| import java.nio.file.Files; | |
| import java.nio.file.Path; | |
| import java.nio.file.Paths; | |
| import java.nio.file.attribute.PosixFilePermission; | |
| import java.util.HashSet; | |
| import java.util.Set; | |
| public class NioTest { | |
| public static void main(String[] argv) throws Exception { |
| <?xml version="1.0" encoding="utf-8"?> | |
| <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" | |
| xmlns:array="http://www.w3.org/2005/xpath-functions/array" | |
| xmlns:f="https://nwalsh.com/ns/functions" | |
| xmlns:map="http://www.w3.org/2005/xpath-functions/map" | |
| xmlns:xs="http://www.w3.org/2001/XMLSchema" | |
| exclude-result-prefixes="array f map xs" | |
| version="3.0"> | |
| <xsl:output method="xml" encoding="utf-8" indent="no"/> |
| #!/usr/bin/env python | |
| import icalendar | |
| from icalevents.icalevents import events | |
| from datetime import datetime, timezone, timedelta | |
| from dateutil.tz import UTC, gettz | |
| import re | |
| import tzlocal | |
| import pytz | |
| import os |
| Verifying that +ndw is my blockchain ID. https://onename.com/ndw |
| XML Calabash 2.0.0 just successfully ran its first pipeline! | |
| <p:declare-step xmlns:p="http://www.w3.org/ns/xproc" version="1.0" | |
| xmlns:c="http://www.w3.org/ns/xproc-step" | |
| xmlns:cx="http://xmlcalabash.com/ns/extensions" | |
| xmlns:exf="http://exproc.org/standard/functions" | |
| xmlns:xs="http://www.w3.org/2001/XMLSchema" | |
| exclude-inline-prefixes="cx exf xs" | |
| name="main"> | |
| <p:output port="result"/> |
I hereby claim:
To claim this, I am signing this object:
| <p:declare-step xmlns:p="http://www.w3.org/ns/xproc" | |
| xmlns:cx="http://xmlcalabash.com/ns/extensions" | |
| xmlns:c="http://www.w3.org/ns/xproc-step" | |
| xmlns:pxp="http://exproc.org/proposed/steps" | |
| name="main" version="1.0"> | |
| <p:input port="parameters" kind="parameter"/> | |
| <p:output port="result"> | |
| <p:pipe step="zip" port="result"/> | |
| </p:output> | |
| <p:serialization port="result" indent="true"/> |
| <!DOCTYPE html> | |
| <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--> | |
| <!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]--> | |
| <!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]--> | |
| <!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]--> | |
| <head> | |
| ... | |
| </head> | |
| <body> | |
| ... |
| #!/usr/bin/perl -- # -*- Perl -*- | |
| # Fixes the bookid identifier in Linux Journal EPUB files. | |
| # No warranty. YMMV. etc. | |
| use strict; | |
| use English; | |
| use Cwd qw(abs_path); | |
| use File::Temp qw(tempdir); |