Deprecated Techniques - sgml/signature GitHub Wiki

Full Stack

  • IDE: Microsoft Frontpage
  • Front-end: ECMA-290
  • Authentication: Siteminder
  • Authorization: CHMOD
  • Data: CSV

Backend

Rank Language Description Popular Community URL Compiler/Interpreter Language Stack Overflow Questions
1 BrightScript Primarily used for Roku development, with limited adoption outside this niche. BrightScript GitHub Community C++ 433
2 ActionScript 2 An older version of ActionScript, largely obsolete after Flash's decline. ActionScript on Reddit C++ 1,964
3 ActionScript 3 More widely used than ActionScript 2 but still limited due to Flash's obsolescence. Awesome ActionScript 3 on GitHub C++ 41,095
4 M4 A macro processor with niche usage, mostly in build systems. M4 Steam Community C 219
5 SAS A statistical software suite widely used for data analysis, reporting, and predictive modeling. SAS Support Communities C 27,000+
6 R A programming language popular for statistical computing and data visualization, widely used in academia and industry. RStudio Community C, Fortran 275,000+
7 Haxe A cross-platform toolkit with moderate adoption, especially in game development. Haxe Community Forum OCaml 1,637
8 AWK A scripting language for text processing, still used but not as widely as modern alternatives. Awesome AWK on GitHub C 33,246
9 Tcl Used in scripting and embedded systems, with a steady but niche user base. Tcler's Wiki C 8,138
10 JCL A scripting language used to control batch jobs on IBM mainframes, often deployed in legacy enterprise systems. IBM JCL Reference Assembly, System Utilities 3,345
11 Erlang Known for its use in telecom and distributed systems, with a strong presence in specialized industries. Erlang Forums C 9,695
12 FoxPro A discontinued database development tool with niche adoption, primarily used for legacy systems. Foxite C++ 1,215

libxslt

#include <libxml/parser.h>
#include <libxslt/xslt.h>
#include <libxslt/transform.h>
#include <regex.h>

// Custom entity loader that restricts external entity resolution to [0-9a-zA-Z] set
xmlParserInputPtr myExternalEntityLoader(const char *URL, const char *ID, xmlParserCtxtPtr ctxt) {
    // Regex pattern for allowed entities: [0-9a-zA-Z]
    const char *pattern = "^[0-9a-zA-Z]+$";
    regex_t regex;
    int reti;

    // Compile regex
    reti = regcomp(&regex, pattern, 0);
    if (reti) {
        fprintf(stderr, "Could not compile regex\n");
        return NULL;
    }

    // Match URL against regex
    reti = regexec(&regex, URL, 0, NULL, 0);
    if (!reti) {
        // URL matches pattern, allow resolution
        fprintf(stderr, "Allowed external entity resolution: %s\n", URL);
        regfree(&regex);
        return xmlLoadExternalEntity(URL, ID, ctxt);
    } else {
        // URL does not match pattern, block resolution
        fprintf(stderr, "Blocked external entity resolution: %s\n", URL);
        regfree(&regex);
        return NULL;
    }
}

// Function to set the custom entity loader
void setCustomEntityLoader() {
    // Save the original loader
    xmlExternalEntityLoader originalLoader = xmlGetExternalEntityLoader();

    // Set the custom loader
    xmlSetExternalEntityLoader(myExternalEntityLoader);
}

int main(int argc, char **argv) {
    if (argc != 3) {
        fprintf(stderr, "Usage: %s stylesheet.xml document.xml\n", argv[0]);
        return 1;
    }

    // Initialize libxml and libxslt libraries
    xmlInitParser();
    xsltInit();

    // Set the custom entity loader to restrict external entity resolution
    setCustomEntityLoader();

    // Parse the XSLT stylesheet
    const char *stylesheetFilename = argv[1];
    xsltStylesheetPtr stylesheet = xsltParseStylesheetFile((const xmlChar *)stylesheetFilename);
    if (stylesheet == NULL) {
        fprintf(stderr, "Failed to parse stylesheet: %s\n", stylesheetFilename);
        return 1;
    }

    // Parse the XML document
    const char *documentFilename = argv[2];
    xmlDocPtr document = xmlParseFile(documentFilename);
    if (document == NULL) {
        fprintf(stderr, "Failed to parse document: %s\n", documentFilename);
        xsltFreeStylesheet(stylesheet);
        return 1;
    }

    // Apply the stylesheet to the document
    xmlDocPtr result = xsltApplyStylesheet(stylesheet, document, NULL);
    if (result == NULL) {
        fprintf(stderr, "Failed to apply stylesheet\n");
        xmlFreeDoc(document);
        xsltFreeStylesheet(stylesheet);
        return 1;
    }

    // Output the result
    xsltSaveResultToFile(stdout, result, stylesheet);

    // Clean up
    xmlFreeDoc(result);
    xmlFreeDoc(document);
    xsltFreeStylesheet(stylesheet);

    // Cleanup libxml and libxslt libraries
    xsltCleanupGlobals();
    xmlCleanupParser();

    return 0;
}

Wordpress

add_action:
  initialization_actions:
    - init: "Fires after WordPress has finished loading but before any headers are sent."
    - wp_loaded: "Fires once WordPress, all plugins, and the theme are fully loaded and instantiated."
    - template_redirect: "Runs just before determining which template to load, allowing for redirection to another URL."
  admin_actions:
    - admin_init: "Fires as an early action after the WordPress admin has been initialized."
    - admin_menu: "Allows functions to be added to the admin menu."
    - admin_enqueue_scripts: "Enqueues scripts and styles for the admin area."
  theme_actions:
    - after_setup_theme: "Fires after the theme's functions.php file is loaded and the theme is set up."
    - wp_enqueue_scripts: "Enqueues scripts and styles for the front-end."
    - wp_head: "Allows functions to output data to the HTML head tag on the front-end."
    - wp_footer: "Allows functions to output data to the HTML footer tag on the front-end."
  content_actions:
    - the_content: "Filters the post content before displaying it."
    - the_post: "Runs whenever a post is set up in the global $post variable."
    - loop_start: "Fires before the start of the WordPress loop."
    - loop_end: "Fires after the end of the WordPress loop."
  user_actions:
    - user_register: "Fires after a new user has been registered."
    - profile_update: "Fires after a user's profile is updated."
    - password_reset: "Fires after a user's password has been reset."
  comment_actions:
    - comment_post: "Runs when a new comment is posted."
    - wp_set_comment_status: "Fires after the status of a comment is changed."
  post_actions:
    - save_post: "Runs when a post is saved."
    - publish_post: "Runs when a post is published."
    - delete_post: "Fires after a post is deleted from the database."
  widget_actions:
    - widgets_init: "Fires after all available widgets are registered."
    - dynamic_sidebar_before: "Fires before the dynamic sidebar is rendered."
    - dynamic_sidebar_after: "Fires after the dynamic sidebar is rendered."
  media_actions:
    - add_attachment: "Fires when an attachment is added to the database."
    - edit_attachment: "Fires when an attachment is updated in the database."
    - delete_attachment: "Fires after an attachment is deleted from the database."
  rest_api_actions:
    - rest_api_init: "Fires when the REST API is initialized."
    - rest_prepare_post: "Filters the prepared response for a post in the REST API."
    - rest_insert_post: "Fires after a post is inserted via the REST API."
  custom_actions:
    - your_custom_action: "A placeholder for user-defined actions, enabling custom functionality."

Web Apps

IE6_Technologies:
  XML_Data_Islands: 
    Modern_Equivalent: HTML5_Local_Storage
  UserData: 
    Modern_Equivalent: IndexedDB
  ActiveXObjects: 
    Modern_Equivalent: Web_Components
  CSS_2_1: 
    Modern_Equivalent: CSS3
  VML_Vector_Markup_Language: 
    Modern_Equivalent: SVG_Scalable_Vector_Graphics
  DHTML_Dynamic_HTML: 
    Modern_Equivalent: JavaScript_ES6+
  OLE_Automation: 
    Modern_Equivalent: WebAssembly

DHTML

PDF Conversion

Accessibility

Embedded Content

UI

CoffeeScript

XML

News

AI / Machine Learning

MathML

XSLT

Namespaces

Idioms

best_practices:
  - Avoid Unnecessary Functions: Minimize the use of functions, especially if they are called repeatedly. Instead, try to inline code directly into templates where possible.
  - Minimize Loops: Avoid nested loops and use XPath expressions or template matching to filter and select nodes directly. Use built-in functions like `xsl:for-each` or `xsl:apply-templates` for better performance.
  - Use Keys: Leverage `xsl:key` to improve lookup performance for repeated elements.
  - Optimize XPath Expressions: Write efficient XPath expressions to reduce the time taken to navigate the XML tree.
  - Test and Benchmark: Regularly test and benchmark your XSLT stylesheets to identify bottlenecks and areas for improvement.
  - Modularize Code: Use templates to modularize your code, making it easier to maintain and reuse.
  - Cache Results: Use caching strategies to store frequently accessed data and avoid redundant computations.
  - Profile Your Code: Use profiling tools to measure execution time and memory usage, helping you identify performance issues.

ISO 8601

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:template match="/">
        <xsl:variable name="isoDate" select="'2023-12-31T23:59:59Z'" />
        
        <xsl:variable name="year" select="substring($isoDate, 1, 4)" />
        <xsl:variable name="month" select="substring($isoDate, 6, 2)" />
        <xsl:variable name="day" select="substring($isoDate, 9, 2)" />
        <xsl:variable name="hour" select="substring($isoDate, 12, 2)" />
        <xsl:variable name="minute" select="substring($isoDate, 15, 2)" />
        <xsl:variable name="second" select="substring($isoDate, 18, 2)" />
        <xsl:variable name="timezone" select="substring($isoDate, 20, 1)" />

        <xsl:variable name="isValid">
            <xsl:choose>
                <xsl:when test="string-length($isoDate) = 20 and $year >= 1000 and $year &lt;= 9999 and 
                    $month &gt;= 01 and $month &lt;= 12 and $day &gt;= 01 and $day &lt;= 31 and
                    $hour &gt;= 00 and $hour &lt;= 23 and $minute &gt;= 00 and $minute &lt;= 59 and
                    $second &gt;= 00 and $second &lt;= 59 and ($timezone = 'Z' or $timezone = '')">
                    <xsl:text>true</xsl:text>
                </xsl:when>
                <xsl:otherwise>
                    <xsl:text>false</xsl:text>
                </xsl:otherwise>
            </xsl:choose>
        </xsl:variable>

        <result>
            <xsl:value-of select="$isValid" />
        </result>
    </xsl:template>
</xsl:stylesheet>

Code Gen

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0"
            xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml"
            >
<xsl:template match="node()" mode="print">

        <xsl:choose>

            <!-- is it element? -->
            <xsl:when test="name()">
                <br />

                <!-- start tag -->
                <xsl:text>&lt;</xsl:text>
                <xsl:value-of select="name()" />

                <!-- attributes -->
                <xsl:apply-templates select="@*" mode="print" />

                <xsl:choose>

                    <!-- has children -->
                    <xsl:when test="node()">
                        <!-- closing bracket -->
                        <xsl:text>&gt;</xsl:text>

                        <!-- children -->
                        <xsl:apply-templates mode="print" />

                        <!-- end tag -->
                        <xsl:text>&lt;/</xsl:text>
                        <xsl:value-of select="name()" />
                        <xsl:text>&gt;</xsl:text>
                        <br />
                    </xsl:when>

                    <!-- is empty -->
                    <xsl:otherwise>

                        <!-- closing bracket -->
                      <xsl:text>/&gt;</xsl:text><br />

                      <br />
                    </xsl:otherwise>

                </xsl:choose>

            </xsl:when>

            <!-- text -->
            <xsl:otherwise>
                <xsl:copy />
            </xsl:otherwise>

        </xsl:choose>

</xsl:template>

<xsl:template match="@*" mode="print">
    <xsl:text> </xsl:text>
    <xsl:value-of select="name()" />
    <xsl:text>=&quot;</xsl:text>
    <xsl:value-of select="." />
    <xsl:text>&quot;</xsl:text>
</xsl:template>


<xsl:template match="text()" mode="print">
    <xsl:choose>

      <xsl:when test="contains(parent::node()/@key, 'Availability')">
        <xsl:value-of select="number(current()) + 1" />
      </xsl:when>

      <xsl:otherwise>
        <xsl:value-of select="." />
      </xsl:otherwise>
    </xsl:choose>
</xsl:template>

<xsl:template match="/">
  <xsl:apply-templates mode="print" />
</xsl:template>

</xsl:stylesheet>

RDF

ECMAScript 4

E4X

XQuery

JSONPath

Technical Documentation

  • wikibooks
  • slideshare
  • codeproject
  • codementor
  • LinkedIn Pulse

ANSI Terminal

C++

XForms

Microformats

UIML

Exception Hierarchy

Dependency Injection

duplicate bean annotation classpath circular exception definition collision injection autowire

Enterprise Architecture

Operating System Architecture

Design by Committee

Email

https://help.dreamhost.com/hc/en-us/articles/215035988-How-to-spoof-in-your-CMS-or-web-application

Coding

Architecture

Objective-C

C#

DLL

TCL

Literate Programming

Cookbooks

Symbian

DOS

VB/ASP

NIEM

Docbook

Alfresco

FoxPro

AutoIt/AutoHotKey

CoffeeScript

ES6 Subclasses

Solaris/Linux Library Linking

LAMP

Ada

Project File Structure

Architecture

Packaging

UTF-16

ORMs

XQuery

XPath

XHTML

SOAP/WSDL Web Services

Regexp

Spec Writing

Templating

Data Mining

Tooling

ActionScript

Developers

Apart from Adobe, several independent developers and contributors have created extensive documentation and resources for Adobe Flash. Some of these notable contributors include:

  1. Mochi Media: Known for providing a variety of resources, tutorials, and articles related to Flash game development. Mochi Media also hosted a large number of Flash games and offered monetization solutions for developers.

  2. Kirupa Chinnathambi: The author of several books on Flash and ActionScript, Kirupa has created numerous tutorials, articles, and resources available on his website, Kirupa.com. His work has helped many developers learn Flash and ActionScript.

  3. Chris Georgenes: A well-known Flash animator and author, Chris has published books and tutorials on Flash animation and design. His website, Mudbubble.com, offers various resources for Flash developers and animators.

  4. Grant Skinner: A renowned developer and creator of gskinner.com, Grant Skinner has contributed extensively to the Flash community through his tutorials, open-source projects, and libraries, such as CreateJS, which helps developers build rich interactive experiences.

  5. Lee Brimelow: A prominent Flash evangelist and developer, Lee has created many tutorials and resources for learning Flash and ActionScript. His website, gotoAndLearn.com, has been a valuable resource for developers looking to expand their skills.

Languages

Feature HyperCard EBNF Lingo EBNF ColdFusion EBNF
Syntax HyperCard uses a simple, English-like syntax for scripting. Lingo uses a more complex syntax with a focus on multimedia scripting. ColdFusion uses a tag-based syntax similar to HTML, with embedded scripting.
Control Structures Supports basic control structures like if, repeat, and while. Supports advanced control structures including if, repeat, and case. Supports control structures like if, cfloop, and cfcase.
Data Types Limited data types, primarily strings and numbers. Supports a variety of data types including strings, numbers, and lists. Supports a wide range of data types including strings, numbers, arrays, and structs.
Functions Basic function support with limited built-in functions. Extensive function support with many built-in functions for multimedia. Rich set of built-in functions for web development and data manipulation.
Error Handling Basic error handling using try and catch. Advanced error handling with detailed error messages. Comprehensive error handling with cftry, cfcatch, and cfthrow tags.
Event Handling Simple event handling for user interactions. Advanced event handling for multimedia events. Event handling primarily through server-side events and triggers.
Integration Limited integration capabilities. Strong integration with multimedia elements. Extensive integration with databases, web services, and other technologies.

Adobe Air

java_projects_targeted_adobe_air:
  - name: "Air Native Extensions (ANE)"
    description: "Bridges the gap between the Adobe AIR runtime and native code written in Java."
    url: "https://github.com/adobe/air-native-extensions"

  - name: "Tutorial ANE - Air Native Extension with Java as Native Language"
    description: "Step-by-step guide on developing an Air Native Extension (ANE) using Java as the native language."
    url: "https://github.com/devcodef1/tutorial-ane-air-native-extension-with-java"

  - name: "Java Adobe AIR Projects"
    description: "Collection of projects using Java for Adobe AIR development."
    url: "https://github.com/topics/adobe-air-java"

Flex

Flash

MHTML

IE 11

Content Tracking

Release Planning

Unit Testing

Integration Testing

Modeling

Logging

Scripting

GUI

Migration

Introspection

Perl + Emacs

  1. https://rachelandrew.co.uk/archives/2023/12/31/1996/
  2. https://alexschroeder.ch/wiki/Oddmuse

Naming Conventions

Changelog

Troubleshooting

OOP

JCL

IDE

Eclipse

  1. DockFX¹: A fully featured docking library for the JavaFX platform.
  2. Eclipse Corrosion¹: Rust edition in Eclipse IDE.
  3. Bazel Eclipse¹: This repo holds two IDE projects. One is the Eclipse Feature for developing Bazel projects in Eclipse. The other is the Bazel Java Language Server, which is a build integration for IDEs such as VS Code.
  4. KaiZen-OpenAPI-Editor¹: Eclipse Editor for the Swagger-OpenAPI Description Language.
  5. Google Cloud Eclipse¹: Google Cloud Platform plugin for Eclipse.
  6. Swing Paint Application¹: A Basic Paint Application based on Java Swing.
  7. Texlipse¹: Eclipse Texlipse.
  8. Pitclipse¹: Mutation testing for Java in Eclipse IDE. Based on PIT (Pitest).
  9. Eclipse Discord Integration¹: Discord's Rich Presence Integration within Eclipse IDE.

Compilers

Build Automation

MVVM

Annotations

Schema

Auth

Pattern Matching

Path Finding

Compression

Serial Ports

Data Modeling

Siteminder

MVC

MVVM

Configuration

WebFlux

Core Classes

  • Flux: Represents a stream of 0 or more elements.
  • Mono: Represents a stream of 0 or 1 element.
  • Publisher: The root interface for all reactive streams.
  • Subscriber: Represents a consumer of a reactive stream.
  • Processor: Represents a component that can both receive and send elements.

Key Methods

Functional Endpoints

WebClient

Servlets

Doclets

Bad Default Environment Variables

Documentation

Testing

Hardware Abstraction

TLS

Analysis

Visual Basic / VBA

APIs

Regedit

Certifications

Windows Batch

Stop Cortana

:loop
 taskkill /f /im SearchUI.exe
 timeout /t 1
 goto loop

Add this to the Task Scheduler to run after logon is successful

Ant

git:

<macrodef name = "git">
    <attribute name = "command" />
    <attribute name = "dir" default = "" />
    <element name = "args" optional = "true" />
    <sequential>
        <echo message = "git @{command}" />
        <exec executable = "git" dir = "@{dir}">
            <arg value = "@{command}" />
            <args/>
        </exec>
    </sequential>
</macrodef>

git clone/pull:
<macrodef name = "git-clone-pull">
    <attribute name = "repository" />
    <attribute name = "dest" />
    <sequential>
        <git command = "clone">
            <args>
                <arg value = "@{repository}" />
                <arg value = "@{dest}" />
            </args>
        </git>
        <git command = "pull" dir = "@{dest}" />
    </sequential>
</macrodef>

git clone:
<git command = "clone">
    <args>
        <arg value = "git://github.com/280north/ojunit.git" />
        <arg value = "ojunit" />
    </args>
</git>

git pull:
<git command = "pull" dir = "repository_path" />

Ant Config

jtidy

cp jtidy-r938.jar ~/jtidy.jar
Run the help file
java -jar jtidy.jar -h
Create an alias for it using xargs
vi ~/alias
alias jtidy='xargs | java -jar ~/jtidy.jar'
Run it on a file
cd html
jtidy foo.html
  • Create a config file
indent: auto
indent-spaces: 2
quiet: yes
tidy-mark: no
doctype: omit
new-blocklevel-tags: main
newline: LF
output-html: yes
show-body-only: yes
trim-empty-elements: no
drop-empty-paras: no
wrap: 148
input-encoding: UTF-8
output-encoding: UTF-8
char-encoding: UTF-8

Save it as config.txt

Run with a config file:

jtidy.jar -config config.txt foo.html

Hibernate, Spring, Struts, and other frameworks reveal Java's deficiencies rather than its strengths. A future platform shouldn't need a cacophony of frameworks just to do the basics.

SSI

Use FilesMatch and SetHandler and put this in .htaccess instead of httpd.conf:

# Enable server side includes
Options +Includes 

# Handle files ending in .php, .shtml, and .html using the PHP interpreter:

<FilesMatch "\.(php|shtml|html)$">
  SetHandler application/x-httpd-php
</FilesMatch>

# Filter .php, .shtml and .html files through mod_include first
AddOutputFilter INCLUDES .php .shtml .html

Flash Drawing API Animation

stage.frameRate = 31;

var currentDegrees:Number = 0;
var radius:Number = 40;
var satelliteRadius:Number = 6;

var container:Sprite = new Sprite();
container.x = stage.stageWidth / 2;
container.y = stage.stageHeight / 2;
addChild(container);
var satellite:Shape = new Shape();
container.addChild(satellite);

addEventListener(Event.ENTER_FRAME, doEveryFrame);

function doEveryFrame(event:Event):void
{
    currentDegrees += 4;
    var radians:Number = getRadians(currentDegrees);
    var posX:Number = Math.sin(radians) * radius;
    var posY:Number = Math.cos(radians) * radius;
    satellite.graphics.clear();
    satellite.graphics.beginFill(0);
    satellite.graphics.drawCircle(posX, posY, satelliteRadius);
}

function getRadians(degrees:Number):Number
{
    return degrees * Math.PI / 180;
}

References:

⚠️ **GitHub.com Fallback** ⚠️