Skip to content
View welblaud's full-sized avatar
🤔
solving something again
🤔
solving something again
  • Husinec-Řež (Czech Republic)
Block or Report

Block or report welblaud

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. tiny-bits-of-go tiny-bits-of-go Public

    GoLang training materials

    Go

  2. Quick Image Validator for checking t... Quick Image Validator for checking the quality of images
    1
    // imageValidator.js
    2
    
                  
    3
    'use-strict';
    4
    
                  
    5
    function handleFileSelect(evt) {
  3. A module for preparing TEI Simple XM... A module for preparing TEI Simple XML files stored in eXist-db for latter usage in InDesign
    1
    xquery version "3.0";
    2
    
                  
    3
    module namespace dtp-utils = 'http://46.28.111.241:8081/exist/db/apps/karolinum-x/modules/dtp-utils';
    4
    import module namespace cust-utils = 'http://46.28.111.241:8081/exist/db/apps/karolinum-x/modules/cust-utils' at 'cust-utils.xqm';
    5
    declare namespace tei = 'http://www.tei-c.org/ns/1.0';
  4. XSLT recursive template call – calcu... XSLT recursive template call – calculating factorial
    1
    <!-- Factorial calculated with XSLT recursion. -->
    2
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    3
                    version="1.0">
    4
    
                  
    5
    <xsl:output method="text"/>
  5. A script for turning in-text notes i... A script for turning in-text notes into footnotes in InDesign
    1
    Application.prototype.main = function(){
    2
      if (this.documents.length <= 0) return;
    3
      var tg = this.selection[0] || this.activeDocument;
    4
      if ('appliedFont' in tg) tg = tg.parent;
    5
      if (tg.constructor == TextFrame) { tg = tg.parentStory; }
  6. Simple replacement for DOCX nodes Simple replacement for DOCX nodes
    1
    <?xmlversion='1.0'?>
    2
    <xsl:stylesheet
    3
        xmlns:xsl='http://www.w3.org/1999/XSL/Transform'
    4
        xmlns:w='http://schemas.openxmlformats.org/wordprocessingml/2006/main'
    5
        version='1.0'>