Deprecated Techniques - sgml/signature GitHub Wiki
- IDE: Microsoft Frontpage
- Front-end: ECMA-290
- Authentication: Siteminder
- Authorization: CHMOD
- Data: CSV
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
- https://catdir.loc.gov/catdir/samples/cam051/2004045705.pdf
- https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5540228/
- https://techcrunch.com/2013/09/19/yahoo-resurrects-the-personalized-homepage-with-my-yahoo-revamp/
- https://qwipster.net/joeblack.htm
- https://celebritytv.mobi/
- https://blog.userland.tech/
- https://freepages.rootsweb.com/~joejkennedy/genealogy/kennedy/kennedy.html
- https://members.tripod.com/~borf_books/TabHeads/TH2202.html
- https://regimentalrogue.tripod.com/quotes/quotes_ncos6.htm
- https://www.w3.org/Talks/Tools/
- http://v3.jasonsantamaria.com/
- http://gnosis.org/welcome.html
- https://www.afrostylemag.com/
- https://www.espn.com/magazine/vol3no7gugliotta.html
- https://hollywoodreelindependentfilmfestival.com/main/archive.php
- http://rickybryant.com/
- https://www.spacejam.com/1996/
- https://foundation.mozilla.org/en/artifacts/
- https://www.npmjs.com/package/x-tag
- https://trends.builtwith.com/websitelist/Copyright-Year-1996
- https://24ways.org/2018/designing-your-site-like-its-1998/
- https://www.hover.com/blog/10-things-that-used-to-be-on-every-website-that-you-totally-forgot-about/
- https://www.otpastries.com/index.php/cupcakes/custom
- https://www.php.net/manual/en/funcref.php
- http://emacspeak.sourceforge.net/raman/
- http://www.peachpit.com/
- http://www.disney--games.com/
- https://www.tf.uni-kiel.de/matwis/amat/iss/
- https://www.brunildo.org/test/
- https://msdn.microsoft.com/en-us/ie/ms530764(v=vs.94)
- http://estelleweyl.com/portfolio/
- https://developers.google.com/web/updates/2016/04/keyboardevent-keys-codes
- https://www.smashingmagazine.com/2018/05/using-the-web-with-javascript-turned-off/
- https://nwalsh.com/docs/tutorials/extreme2006/plain.html
- https://old.lwn.net/archives/
- https://lists.w3.org/Archives/Public/www-style/
- https://www.jibbering.com/faq/
- https://simpl.info/websql/
- https://designingwebinterfaces.com/tag/yui
- https://liferay.dev/blogs/-/blogs/using-extjs-with-liferay
- https://dev.to/alexandras_dev/decaffeinating-2020-migrating-our-coffeescript-app-to-typescript-4lbo
- https://github.com/uhub/awesome-coffeescript
- http://exslt.org/
- http://xulfr.org/wiki/E4X
- http://web.mit.edu/ghudson/dev/nokrb/third/firefox/extensions/transformiix/docs/readme.html
- https://developers.google.com/search/blog/2014/10/best-practices-for-xml-sitemaps-rssatom
- https://martinfowler.com/bliki/MovingAwayFromXslt.html
- https://wiki.tcl-lang.org/page/XPath
- https://xbrl.us/home/use/xbrl-api-community/
- https://ec.europa.eu/isa2/news/akoma-ntoso-eu-akn4eu-version-30-has-been-published_en
- https://www.xml.com/pub/a/2004/03/31/barr.html
- http://xml.coverpages.org/legalXML-NCRA_Article.pdf
- http://xml.coverpages.org/legalXML-CourtFiling.html
- http://xml.coverpages.org/legalXMLWG.html
- https://www.pinsentmasons.com/out-law/news/is-iraq-really-playing-war-games-with-the-playstation-2
- https://www.copetti.org/writings/consoles/playstation-2/
- https://www.researchgate.net/publication/269231236_An_XML-based_Approach_for_Data_Preprocessing_of_Multi-Label_Classification_Problems
- https://moam.info/introduction-to-schematron-mulberry-technologies-inc_5a0ae2af1723dd4ab2069757.html
- https://www.balisage.net/Proceedings/vol10/html/Graham01/BalisageVol10-Graham01.html
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.
<?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 <= 9999 and
$month >= 01 and $month <= 12 and $day >= 01 and $day <= 31 and
$hour >= 00 and $hour <= 23 and $minute >= 00 and $minute <= 59 and
$second >= 00 and $second <= 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>
<?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><</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>></xsl:text>
<!-- children -->
<xsl:apply-templates mode="print" />
<!-- end tag -->
<xsl:text></</xsl:text>
<xsl:value-of select="name()" />
<xsl:text>></xsl:text>
<br />
</xsl:when>
<!-- is empty -->
<xsl:otherwise>
<!-- closing bracket -->
<xsl:text>/></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>="</xsl:text>
<xsl:value-of select="." />
<xsl:text>"</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>
- https://www.xml.com/pub/a/2007/07/26/xquery-libferris-and-virtual-filesystems.html
- https://gist.github.com/fghber/123998fdcdf00cd30fd552dc3494c831
- https://gist.github.com/fghber/123998fdcdf00cd30fd552dc3494c831
- https://dbpedia.org/page/JSONiq
- wikibooks
- slideshare
- codeproject
- codementor
- LinkedIn Pulse
- https://docs.aws.amazon.com/sdk-for-cpp/v1/developer-guide/aws-sdk-cpp-dg.pdf
- https://www.reddit.com/r/programming/comments/2rferc/admitting_defeat_on_kr_in_learn_c_the_hard_way/
- https://www.chegg.com/flashcards/c-955bf76d-63eb-49aa-b539-091ffc78570d/deck
- https://www.chegg.com/flashcards/c-70280efc-d560-47cc-bc7a-f37307672a4d/deck
- https://en.wikibooks.org/wiki/XForms/Validate_with_schema_types
- https://en.wikibooks.org/wiki/XForms/Read_Only
- https://github.com/betterFORM/betterFORM?tab=jinntec/fore
- http://xml.coverpages.org/userInterfaceXML.html#uiml
- https://www.slideshare.net/jozilla/how-to-survive-multidevice-user-interface-design-with-uiml
- https://cs.nju.edu.cn/changxu/2_seminar/papers/Paper_24.pdf
- https://www.hillside.net/plop/2018/papers/13.6.pdf
- http://www.softwaresummit.com/2004/speakers/SteltingExceptionHandling.pdf
- https://hal.inria.fr/hal-01093908/document
- https://www.javamex.com/tutorials/exceptions/exceptions_hierarchy.shtml
- https://dzone.com/articles/50-common-java-errors-and-how-to-avoid-them-part-2
- https://www.xml.com/axml/notes/Draconian.html
- https://www.w3.org/html/wg/wiki/DraconianErrorHandling
- https://flask.palletsprojects.com/en/1.1.x/htmlfaq/
duplicate bean annotation classpath circular exception definition collision injection autowire
- https://spicefactory.github.io/manual/toc.htm
- https://www.javatpoint.com/autowiring-in-spring
- http://modernperlbooks.com/mt/2011/08/youre-already-using-dependency-injection.html
- https://docs.spring.io/spring/docs/4.0.x/spring-framework-reference/html/beans.html#beans-factory-collaborators
- https://www.codebyamir.com/blog/spring-startup-exceptions-unsatisfieddependencyexception-nosuchbeandefinitionexception
- https://www.sourceallies.com/2011/06/testing-spring-wiring/
- https://www.baeldung.com/spring-autowire
- https://www.baeldung.com/spring-core-annotations
- https://www.baeldung.com/guice-spring-dependency-injection
- https://www.baeldung.com/circular-dependencies-in-spring
- https://www.baeldung.com/spring-beancreationexception
- https://dzone.com/articles/my-case-against-autowiring
- https://dzone.com/articles/what-is-jar-hell
- https://blog.ploeh.dk/2017/01/27/from-dependency-injection-to-dependency-rejection/
- https://dzone.com/articles/solving-dependency-conflicts-in-maven
- https://stackoverflow.com/questions/13801359/annotation-specified-bean-name-conflicts-with-existing-non-compatible-bean-def
- https://github.com/spring-projects/spring-framework/blob/master/src/docs/asciidoc/core/core-beans.adoc
- https://github.com/LinnykOleh/Spring/blob/master/Notes.md
- https://docs.spring.io/spring-javaconfig/docs/1.0.0.M4/reference/pdf/spring-javaconfig-reference.pdf
- https://medium.com/@shihab1511/communication-between-controllers-in-angularjs-using-broadcast-emit-and-on-6f3ff2b0239d
- https://msdn.microsoft.com/en-us/library/ms525913
- https://devcenter.heroku.com/articles/intro-for-java-developers
- https://devcenter.heroku.com/articles/java-webapp-runner
- https://devcenter.heroku.com/articles/create-a-java-web-application-using-embedded-tomcat
- https://devcenter.heroku.com/articles/war-deployment
- http://v1.uncontained.io/playbooks/app_dev/binary_deployment_howto.html
- https://blog.openshift.com/category/technologies/tomcat/
- https://www.torsten-horn.de/techdocs/jee-spring-mvc.htm
- https://manning-content.s3.amazonaws.com/download/9/fa540da-3ce5-4964-ba56-ecf6c72b68c9/Sample-Ch07.pdf
- http://www.ijettcs.org/Volume2Issue2/IJETTCS-2013-04-10-091.pdf
- https://media.techtarget.com/tss/static/articles/content/AgileJavaDev/SpringMVC.pdf
- https://www.springbyexample.org/static/1.03/pdf/SpringByExample.pdf
- https://resources.whitesourcesoftware.com/blog-whitesource/apache-struts-spring-vulnerabilities
- http://www.devx.com/print/Java/Article/29208
- https://www.codeproject.com/Articles/1239668/A-Note-on-Webpack-Maven
- https://medium.com/@jsilvax/introducing-webpack-into-an-existing-java-based-web-app-ff53f14d37ec
- https://auth0.com/blog/integrating-node-dot-js-build-tools-with-maven/
- https://guides.gradle.org/running-webpack-with-gradle/
- http://lvtutorial.com/spring-mvc/angularjs-spring-mvc-crud-example.html
- https://dzone.com/articles/hybrid-spring-boot-and-react-or-angular-a-better-w
- https://stackoverflow.com/questions/38532210/how-to-integrate-angular-2-java-maven-web-application
- https://www.methoda.co.il/wp-content/uploads/2016/07/jsd-5-signs-wp.pdf
- https://www.servicenow.com/content/dam/servicenow/other-documents/investor-relations/financial-analyst-day/servicenow-2018-financial-analyst-day.pdf
- https://workday.gcs-web.com/static-files/68bfe493-5b5f-4caa-ac23-cf937f4645c2
- https://www.servicenow.com/content/dam/servicenow-assets/public/en-us/doc-type/resource-center/white-paper/wp-data-encryption-with-servicenow.pdf
- https://www.workday.com/content/dam/web/en-us/documents/investor/fiscal-2015-annual-report-and-proxy-statement.pdf
- https://www.workday.com/content/dam/web/en-us/documents/datasheets/datasheet-workday-security.pdf
- https://docs.servicenow.com/bundle/helsinki-security-management/page/product/splunk-integration/reference/servicenow-eula.html
- https://blogs.workday.com/why-weve-moved-to-single-codeline-development-at-workday/
- https://www.servicenow.com/content/dam/servicenow-assets/public/en-us/doc-type/data-sheet/servicenow-dpa-with-sccs.pdf
- https://www.servicenow.com/content/dam/servicenow-assets/public/en-us/doc-type/resource-center/analyst-report/analyst-status-quo-creates-security-risk.pdf
- https://docs.microsoft.com/en-us/windows/win32/com/single-threaded-apartments
- https://chromium.googlesource.com/chromium/src/+/master/docs/threading_and_tasks.md
- https://docs.microsoft.com/en-us/windows/win32/com/processes--threads--and-apartments
- https://www.codeproject.com/articles/9190/understanding-the-com-single-threaded-apartment-pa
- https://stackoverflow.com/questions/485086/single-threaded-apartments-vs-multi-threaded-apartments
- http://www.opengroup.org/comsource/techref2/CHP06GDC.HTM
- https://support.microsoft.com/en-us/help/150777/info-descriptions-and-workings-of-ole-threading-models
- https://www.slideshare.net/SpringCentral/spring-and-big-data
- https://marionettejs.com/docs/v4.0.0/upgrade-v3-v4.html
- https://deprecations.emberjs.com/v3.x/#toc_ember-deprecate-globals-resolver
- https://ember-learn.github.io/ember-octane-vs-classic-cheat-sheet/
- http://rajatsingla.com/2017/12/22/clean-way-to-handle-scroll-events-in-emberjs-app-without-blocking-task-queue-and-runtime
- https://news.ycombinator.com/item?id=11708840
- https://webkit.org/blog/7536/jsc-loves-es6/
- https://node.green/nightly.html
- https://www.reddit.com/r/learnjavascript/comments/3abeqm/recursion_in_es6/
- https://media.datadirect.com/download/docs/xmlconverters/java/javadoc/com/ddtek/xmlconverter/SchemaGenerator.html
https://help.dreamhost.com/hc/en-us/articles/215035988-How-to-spoof-in-your-CMS-or-web-application
- https://hacks.mozilla.org/2017/10/saying-goodbye-to-firebug/
- https://docs.microsoft.com/en-us/troubleshoot/browsers/gpu-hardware-acceleration
- https://developer.mozilla.org/en-US/docs/Tools/Deprecated_tools
- https://developer.salesforce.com/page/S-Control_Deprecation
- https://help.salesforce.com/articleView?id=Retirement-of-Default-Certificate-affects-SAML-Single-Sign-On-into-Salesforce&language=en_US&type=1
- https://help.salesforce.com/articleView?id=Feature-Retirement-Philosophy&language=en_US&type=1
- https://www-01.ibm.com/support/docview.wss?uid=swg27045455&aid=5
- http://www.decosta.com/Nomad/library/nsp.html
- https://cwiki.apache.org/confluence/display/FLEX/Simulating+AS3+language+features+in+JavaScript+using+AMD+and+ES5
- https://medium.com/@ylerjen/migrating-angularjs-application-to-typescript-5230eb8c46e1
- https://developerhandbook.com/typescript/writing-angularjs-1-x-with-typescript/
- https://wiki.mozilla.org/Platform/XML_Rewrite
- https://wiki.mozilla.org/MOSS/Secure_Open_Source/Completed
- https://firefox-source-docs.mozilla.org/contributing/directory_structure.html
- https://github.com/google/google-api-objectivec-client-for-rest/wiki
- https://www.tutorialspoint.com/objective_c/index.htm
- https://www.xmlfiles.com/articles/xsl-transformations-in-net-2-0/
- https://www.xmlfiles.com/articles/transforming-xml-with-xslt-and-asp/
- http://www.dirigodev.com/blog/web-development-execution/your-first-xsl-transformation-in-aspnet-4/
- https://dcnrtelerikreports.ndep.nv.gov/api/reports/resources/templates/telerikReportViewerTemplate.html
- https://en.wikipedia.org/wiki/ArsDigita_Community_System
- https://openacs.org/forums/message-view?message_id=395016
- http://commons.apache.org/proper/commons-chain/cookbook.html
- https://maven.apache.org/plugin-developers/cookbook/generate-assembly.html
- https://developer.ibm.com/articles/j-5things16/
- https://www.baeldung.com/ant-maven-gradle
- https://www.baeldung.com/java-generalized-target-type-inference
- https://www.baeldung.com/java-10-local-variable-type-inference
- https://commandlinefanatic.com/cgi-bin/showarticle.cgi?article=art005
- https://www.labkey.org/Documentation/wiki-page.view?name=gradleBuild
- https://docs.gradle.org/current/userguide/migrating_from_ant.html
- https://en.wikipedia.org/wiki/Open_Programming_Language
- https://www.slideshare.net/prashanthgedde/developing-applications-with-nokia-wrt
- http://emulation.gametechwiki.com/index.php/Cellphone_emulators
- https://fms.komkon.org/Speccy/Speccy.html
- http://merwin.bespin.org/t4a/specs/nokia_rtttl.txt
- https://www.mobilefish.com/tutorials/rtttl/rtttl_quickguide_specification.html
- https://docs.microsoft.com/en-us/previous-versions/office/developer/server-technologies/aa286483(v=msdn.10)
- https://docs.microsoft.com/en-us/previous-versions//t0aew7h6(v=vs.85)
- https://docs.microsoft.com/en-us/previous-versions/aa730836(v=vs.80)
- https://www.codeproject.com/Articles/20125/Using-SOAP-With-Classic-ASP-VBScript
- https://www.codeproject.com/Articles/19359/Web-Service-Proxy-generator-using-XSLT-targeting-V
- https://gallery.technet.microsoft.com/scriptcenter/deed3efb-1e11-4e7e-8bfd-96a981de5c35
- https://blogs.msdn.microsoft.com/jpsanders/2007/06/14/how-to-send-soap-call-using-msxml-replace-stk/
- http://oakleafblog.blogspot.com/2006/04/almost-lifetime-of-basic.html
- https://bitbucket.org/DanRoberts/vbscripttranslator
- https://docs.servicenow.com/bundle/geneva-servicenow-platform/page/integrate/examples/concept/c_Insert.html
- http://gambaswiki.org/wiki/doc/object-model
- http://www.cocolab.com/parse_vbasic.html
- http://lambda-the-ultimate.org/node/295
- https://www.htmlgoodies.com/beyond/asp/vbs-ref/article.php/3458611/Key-Differences-Between-VB-and-VB-Script.htm
- https://www.mobilize.net/hubfs/Downloads/ROI%20of%20Eradicating%20VB6.pdf
- https://www.example-code.com/vb6/sharepoint_online_authentication.asp
- https://msdn.microsoft.com/en-us/library/aa730836(v=vs.80).aspx
- http://depressedpress.com/2014/04/05/accessing-sharepoint-lists-with-visual-basic-for-applications/
- https://social.technet.microsoft.com/wiki/contents/articles/36038.sharepoint-online-authentication-for-soap-service-calls.aspx
- https://blog.freedom-man.com/vba-salesforce-api/
- https://github.com/VBA-tools/VBA-Web/wiki/Url-Encoding
- https://azlav.wordpress.com/2012/05/22/project-vba-and-azure-better-together/
- https://posts.specterops.io/wsh-injection-a-case-study-fd35f79d29dd
- https://docs.microsoft.com/en-us/office/vba/language/reference/user-interface-help/security-dialog-box
- https://docs.microsoft.com/en-us/office/vba/outlook/how-to/security/security-behavior-of-the-outlook-object-model
- https://www.acf.hhs.gov/sites/default/files/assets/webservices_suite_roadmap_version_10.pdf
- https://it.ojp.gov/documents/Global_Justice_XML_Data_Model_Overview.pdf
- https://www.irs.gov/pub/irs-utl/mef_state_and_trading_partners_icd_ref_guide_-_1-7-11.pdf
- http://www.lionsgatesoft.com/understanding-alfresco-content-data-model/
- https://www.slideshare.net/jvonka/summit2014-core-repo/20
- https://soft-builder.com/en/docs/Alfresco/index.html
- https://hub.alfresco.com/t5/alfresco-content-services-forum/alfresco-database-schema-diagram-erd/td-p/134381
- https://servoy.com/blog/all-about-visual-foxpro-and-switching-to-modern-alternative
- https://west-wind.com/wconnect/weblog/ShowEntry.blog?id=9171
- https://community.fabric.microsoft.com/t5/Desktop/Accessing-data-in-Visual-FoxPro-database-from-64-bit-Power-BI/td-p/2954436
- https://en.wikipedia.org/wiki/Executable_and_Linkable_Format
- http://www.linker-aliens.org/blogs/ali/entry/ancillary_objects_separate_debug_elf/
- https://github.com/tuhdo/os01/files/776266/Operating_System_From_0_to_1.pdf
- https://perf.wiki.kernel.org/index.php/Tutorial
- https://www.redhat.com/en/blog/limits-compatibility-and-supportability-containers
- https://www.macieira.org/blog/2012/01/sorry-state-of-dynamic-libraries-on-linux/
- https://blogs.oracle.com/solaris/gnu-hash-elf-sections-v2
- http://blog.k3170makan.com/2018/10/introduction-to-elf-format-part-vi_18.html
-
https://cwiki.apache.org/confluence/display/MAVENOLD/Repository+Layout+-+Final
-
http://pages.cs.wisc.edu/~cs302/labs/EclipseTutorial/Step_04.html
-
https://techblog.bozho.net/runtime-classpath-vs-compile-time-classpath/
-
http://www.thinkmoore.net/papers/2009-PLAS-co-logic-verification.pdf
-
https://hiper.cis.udel.edu/lp/lib/exe/fetch.php/courses/cisc879/eclipse-platform-whitepaper.pdf
-
https://sites.google.com/a/athaydes.com/renato-athaydes/posts/guidetojava9-compilejarrun
-
https://www.balisage.net/Proceedings/vol13/html/Lumley01/BalisageVol13-Lumley01.html
-
sample-apps/example-java-jar-hello at master · apcera/sample-apps · GitHub
-
https://viralpatel.net/blogs/create-jar-file-in-java-eclipse/
-
https://web.stanford.edu/class/archive/cs/cs106a/cs106a.1178/handouts/5-JAR-Files.pdf
-
http://sonatype.github.io/nexus-presentations/nexus-introduction.pdf
-
http://sonatype.github.io/nexus-presentations/nexus-oss-advantages.pdf
-
https://nolanlawson.com/2016/08/15/the-cost-of-small-modules/
- https://knowledgebase.progress.com/articles/Article/P188708
- https://www.xml.com/pub/a/2005/06/15/py-xml.html
- https://blog.logrocket.com/why-you-should-avoid-orms-with-examples-in-node-js-e0baab73fa5/
- https://www.blinkingcaret.com/2018/04/25/orm-less-data-access-in-net-core/
- https://eli.thegreenplace.net/2019/to-orm-or-not-to-orm/
- https://www.progress.com/tutorials/xquery/learn-xquery-in-10-minutes
- https://www.progress.com/tutorials/xquery/working-with-other-data-sources
- https://www.progress.com/tutorials/xquery/using-the-data-integration-suite
- https://documentation.progress.com/output/rb/assets/lending-library_v7.xml
- https://www.progress.com/tutorials/xml-converters/converting-edi
- https://www.w3.org/TR/WD-wwwicn.html
- https://www.xml.com/pub/a/2003/05/21/deviant.html
- https://html.spec.whatwg.org/multipage/xhtml.html
- https://wiki.whatwg.org/wiki/W3C
- https://www.w3.org/blog/2007/06/fixing-the-web-together/
- https://lists.w3.org/Archives/Public/w3c-wai-ig/2022OctDec/0046.html
- https://www.w3.org/2000/xp/Group/xmlp-issues
- https://www.reddit.com/r/java/comments/5ilfe2/question_why_is_soap_always_spoken_about_with/
- https://www.somebits.com/weblog/tech/bad/whySoapSucks.html
- https://www.reddit.com/r/webdev/comments/3dloqk/soap_can_go_die_in_a_fire/
- https://www.w3.org/2005/06/21-xsd-user-minutes.html
- https://www.w3.org/2002/ws/desc/4/lc-issues/
- https://www.shlomifish.org/humour/by-others/s-stands-for-simple/
- https://www.sciencedirect.com/science/article/pii/S0167642314001646
- https://wiki.whatwg.org/wiki/W3C
- https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4403711/
- https://digital.gov/resources/federal-social-media-accessibility-toolkit-hackpad/
- https://macromedia.fandom.com/wiki/MXML
- https://airsdk.dev/docs/building/actionscript-compilers/application-compiler
- https://github.com/apache/royale-asjs/blob/develop/frameworks/mxml-2009-manifest.xml
- https://sourceforge.net/adobe/flexsdk/wiki/MXML%202009/
- https://apache.github.io/royale-docs/compiler/compiler-options
- https://programtalk.com/vs/?source=flex-falcon/compiler/src/main/java/org/apache/flex/compiler/mxml/IMXMLLanguageConstants.java
- https://programtalk.com/vs/?source=flex-falcon/compiler/src/test/java/org/apache/flex/compiler/internal/parsing/mxml/MXMLTokenizerTests.java
- https://www.baeldung.com/apache-velocity
- https://addons.palemoon.org/addon/extensiondev/
- http://www.balisage.net/Proceedings/vol8/html/Williams01/BalisageVol8-Williams01.html
- https://docs.spring.io/spring/docs/3.2.x/spring-framework-reference/html/expressions.html
- https://community.liferay.com/blogs/-/blogs/custom-velocity-tools-and-liferay-6-0
- https://extensions.xwiki.org/xwiki/bin/view/Extension/Velocity%20Module
- https://docs.atlassian.com/software/jira/docs/api/7.6.1/com/atlassian/jira/util/velocity/
- http://www.sergiy.ca/how-to-create-custom-tools-for-apache-velocity/
- https://github.com/facebook/react/blob/main/scripts/jest/TestFlags.js#L92
- https://www.baeldung.com/java-flight-recorder-monitoring
- https://medium.com/@igniteram/e2e-testing-with-protractor-cucumber-using-typescript-564575814e4a
- https://www.buraks.com/asv/5.html
- http://www.sociodox.com/theminer/faq.html
- https://github.com/as3lang/ActionScript3/wiki/Debug
- https://xoax.net/blog/declaring-and-using-vectors-in-actionscript-3-0/
- https://www.jacksondunstan.com/articles/702
- https://www.h3xed.com/programming/actionscript-3-array-vs-vector-performance
- https://gametuts.org/shufflerandomize-arrayvector-in-as3/
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"
- http://blogs.adobe.com/flashplayer/2015/10/flash-player-guidance-for-internet-explorer-11-and-microsoft-edge.html#sthash.JYi4Gtlb.leyHme55.dpbs
- https://www.adobe.com/devnet/flashplayer/articles/flash_player_admin_guide.html
- https://helpx.adobe.com/air/archived-docs-download.html
- https://github.com/airsdk/airsdk.dev/tree/4d27ea9286962e9c8cea5dcb7f9f2cd449d2813a
- https://blog.axway.com/learning-center/software-development/api-development/prepare-your-apps-for-appcelerator-end-of-support
- https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAA/Help/EloquaAsynchronousTrackingScripts/Tasks/FlashContentTracking.htm
- https://rometools.github.io/rome/
- https://docs.microsoft.com/en-us/previous-versions/windows/desktop/ms686420(v=vs.85)
-
https://www.slideshare.net/PankajBiswas3/uploading-files-using-selenium-web-driver
-
https://www.cpan.org/modules/by-module/HTML/WWW-Mechanize-Firefox-0.79.readme
- https://www.mkyong.com/spring-mvc/spring-mvc-log4j-integration-example/
- http://mrbool.com/integrating-log4j-spring-mvc/33464
- https://docs.microsoft.com/en-us/previous-versions/visualstudio/visual-studio-2010/fw8ace91(v=vs.100)
- https://docs.microsoft.com/en-us/dotnet/api/microsoft.jscript?redirectedfrom=MSDN&view=netframework-4.7.2
- https://blogs.msdn.microsoft.com/gauravseth/2007/08/16/difference-between-jscript-jscript-net-and-managed-jscript/
- https://blogs.msdn.microsoft.com/ericlippert/2003/11/14/the-jscript-type-system-part-six-even-more-on-arrays-in-jscript-net/
- https://blogs.msdn.microsoft.com/jscript/2008/04/02/reading-xml-file-with-jscript/
- https://www.angryadmin.co.uk/?p=936
- https://www.reddit.com/r/Windows10/comments/3hq6uv/how_do_i_edit_environment_variables_in_windows_10/
- https://serverfault.com/questions/33681/
- https://answers.microsoft.com/en-us/windows/forum/windows_10-other_settings/edit-environment-variables-of-standard-user/788f9195-1900-4553-ab84-bbc8eb3dce4f
- https://autohotkey.com/board/topic/68086-open-the-environment-variable-editing-window/
- https://serverfault.com/questions/351129/can-the-environment-variables-tool-in-windows-be-launched-directly
- https://docs.microsoft.com/en-us/aspnet/core/mvc/views/razor?view=aspnetcore-2.2
- https://docs.microsoft.com/en-us/aspnet/web-pages/overview/getting-started/introducing-razor-syntax-c
- https://angular.io/guide/ajs-quick-reference
- https://mgechev.github.io/angularjs-in-patterns/#command
- http://dl.icdst.org/pdfs/files/97d1ecb3fbedcc609c6f66fdb028de68.pdf
- https://www.labkey.org/Documentation/wiki-page.view?name=gradlebuild
- https://cwiki.apache.org/confluence/display/OFBIZ/From+Ant+to+Gradle+-+trunk+version
- https://holygradle.bitbucket.io/workflows.html
- https://decembersoft.com/posts/typescript-vs-csharp-linq/
- https://github.com/spring-projects/spring-boot/wiki/Spring-Boot-2.0-Migration-Guide
- http://edegier.nl/presentations/JavaEEvsSpring.pdf
- https://dzone.com/articles/an-opinionless-comparison-of-spring-and-guice
- https://github.com/google/guice/wiki/SpringComparison
- https://docs.jboss.org/seam/3/spring/latest/reference/en-US/html/spring-usage.html
- https://garywoodfine.com/get-c-classes-implementing-interface/
- https://www.dotnetperls.com/reflection
- https://stackoverflow.com/questions/358835/getproperties-to-return-all-properties-for-an-interface-inheritance-hierarchy
- http://www.blackwasp.co.uk/FindAllSubclasses.aspx
- https://www.jerf.org/iri/post/2950/
- https://maven.apache.org/plugins/maven-install-plugin/examples/specific-local-repo.html
- http://maven.apache.org/guides/mini/guide-3rd-party-jars-local.html
- https://maven.apache.org/guides/mini/guide-3rd-party-jars-remote.html
- http://maven.apache.org/ref/3.2.5/maven-repository-metadata/repository-metadata.html
- https://cwiki.apache.org/confluence/display/METAMODEL/Schema+and+table+semantics
- http://www.cs.otago.ac.nz/staffpriv/ok/Joe-Hates-OO.htm
- https://www.gamedev.net/articles/programming/general-and-gameplay-programming/the-faster-you-unlearn-oop-the-better-for-you-and-your-software-r5026/
- http://loup-vaillant.fr/articles/deaths-of-oop
- https://www.activestate.com/blog/activestate-komodo-ide-now-open-source/
- https://downloads.activestate.com/Komodo/releases/12.0.1/index.html
- https://developer.apple.com/library/archive/technotes/tn2339/_index.html
- https://dbeaver.com/docs/wiki/Localization/
- https://wiki.eclipse.org/Performance_Bloopers
- https://www.eclipse.org/articles/Article-Builders/builders.html
- https://wiki.eclipse.org/FAQ_How_do_I_implement_an_incremental_project_builder%3F
- https://projects.eclipse.org/projects/technology
- https://wiki.eclipse.org/Eclipse_Corner
- https://bugs.eclipse.org/bugs/show_bug.cgi?id=528725
- https://www.mankier.com/1/ecj
- http://www.eclipse.org/mylyn/
- http://blog.deepakazad.com/2010/05/ecj-eclipse-java-compiler.html
- https://wiki.eclipse.org/EclipseLink/UserGuide/JPA/Basic_JPA_Development/Querying/JPQL
- https://help.eclipse.org/neon/topic/org.eclipse.jdt.doc.user/tasks/task-using_batch_compiler.htm
- https://wiki.eclipse.org/Papyrus/Papyrus_Developer_Guide/How_To_Code_Examples
- https://wiki.eclipse.org/EMF/Recipes
- https://www.eclipse.org/swt/snippets/
- https://wiki.eclipse.org/EGit/User_Guide
- https://wiki.eclipse.org/Evolving_Java-based_APIs
- https://wiki.eclipse.org/Eclipse_Doc_Style_Guide
- http://rdf4j.eclipse.org/
- https://github.com/Komodo/KomodoEdit/pull/2656
- https://github.com/Komodo/KomodoEdit/issues/3127
- DockFX¹: A fully featured docking library for the JavaFX platform.
- Eclipse Corrosion¹: Rust edition in Eclipse IDE.
- 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.
- KaiZen-OpenAPI-Editor¹: Eclipse Editor for the Swagger-OpenAPI Description Language.
- Google Cloud Eclipse¹: Google Cloud Platform plugin for Eclipse.
- Swing Paint Application¹: A Basic Paint Application based on Java Swing.
- Texlipse¹: Eclipse Texlipse.
- Pitclipse¹: Mutation testing for Java in Eclipse IDE. Based on PIT (Pitest).
- Eclipse Discord Integration¹: Discord's Rich Presence Integration within Eclipse IDE.
- https://docs.oracle.com/cd/E13222_01/wls/docs81/perform/JVMTuning.html
- http://web.archive.org/web/20221226095339/http://venge.net/graydon/talks/CompilerTalk-2019.pdf
- https://www.oreilly.com/library/view/embedding-perl-in/0596002254/ch06.html
- https://www.oreilly.com/library/view/c-cookbook/0596007612/ch01s25.html
- https://www.oreilly.com/library/view/you-dont-know/9781449335571/ch01.html
- https://aosabook.org/en/v1/eclipse.html
- https://www.mkyong.com/ant/ant-spring-mvc-and-war-file-example/
- https://stackoverflow.com/questions/52472606/unable-to-clone-a-git-repository-using-ant-target
- https://maven.apache.org/plugins/maven-compiler-plugin/non-javac-compilers.html
- https://maven.apache.org/components/ref/3.5.0/maven-core/lifecycles.html
- https://maven.apache.org/ref/3.5.0/maven-model-builder/
- https://maven.apache.org/ref/3.5.4/maven-model/maven.html
- https://maven.apache.org/plugins/maven-site-plugin/jar-mojo.html
- https://maven.apache.org/guides/introduction/introduction-to-the-lifecycle.html
- https://maven.apache.org/ref/3.5.3/maven-core/lifecycles.html
- https://maven.apache.org/plugin-tools/maven-plugin-annotations/apidocs/org/apache/maven/plugins/annotations/LifecyclePhase.html
- https://viralpatel.net/blogs/introduction-apache-maven-build-framework-build-automation-tool/
- https://docs.mulesoft.com/mule-user-guide/v/3.7/maven-reference
- https://www.slideshare.net/ankitgubrani/build-automation-using-maven
- https://www.slideshare.net/ExigenServices/apache-maven-2-advanced-topics
- https://www.slideshare.net/ReturnOnIntelligence/apache-maven-2-advanced-topics-50709591
- https://maven.apache.org/shared/index.html
- https://maven.apache.org/shared/maven-dependency-tree/dependencies.html
- https://trepo.tuni.fi/bitstream/handle/10024/130986/LuojusTuomas.pdf?sequence=2
- https://github.com/facebook/react/issues/13029
- https://stackoverflow.com/questions/33043702/update-cachefactory-from-controller
- https://stackoverflow.com/questions/28949838/get-keys-from-angular-cachefactory
- https://docs.microsoft.com/en-us/sql/relational-databases/sqlxml/annotated-xsd-schemas/introduction-to-annotated-xsd-schemas-sqlxml-4-0?view=sql-server-2017
- https://github.com/spring-projects/spring-framework/blob/master/spring-context/src/main/java/org/springframework/context/annotation/Bean.java
- https://msdn.microsoft.com/en-us/library/aa468554.aspx
- https://stevedonovan.github.io/lua-5.1.4/
- https://github.com/google/closure-compiler/wiki/Annotating-JavaScript-for-the-Closure-Compiler
- https://marionettejs.com/annotated-src/backbone.marionette
- http://people.w3.org/mike/bugs/es5-spec/
- XML DTD Specs: https://www.jcp.org/dtd/
- Jax-B DTD Parser: https://github.com/eclipse-ee4j/jaxb-dtd-parser/tree/master/dtd-parser
- Standalone DTD Parser: https://github.com/ccodere/DTDParser
- XML Schema Visualization Tools: https://www.xml.com/articles/2023/03/06/visualising-xml-schemas/
- ObjectDB: https://en.wikipedia.org/wiki/ObjectDB
- https://rkeithhill.wordpress.com/2006/08/08/xml-pretty-print-in-powershell/
- http://www.nivot.org/blog/post/2013/05/07/PowerShell-Masochistic-Assembly-Patching-for-Guts-and-Glory
- https://en.wikipedia.org/wiki/Document_type_definition
- https://www.xmlfiles.com/dtd/dtd-validation/
- https://support.microsoft.com/en-us/help/315533/how-to-validate-an-xml-document-by-using-dtd-xdr-or-xsd-in-visual-basi
- http://www.mulesoft.org/schema/mule/oauth2/mule-oauth2.xsd
- https://docs.oracle.com/javase/8/docs/technotes/tools/findingclasses.html
- https://docs.oracle.com/javase/tutorial/getStarted/problems/index.html
- https://docs.oracle.com/javase/7/docs/technotes/tools/
- https://docs.oracle.com/javase/8/docs/technotes/tools/windows/classpath.html
- https://docs.oracle.com/javase/8/docs/technotes/guides/lang/resources.html
- https://docs.oracle.com/javase/7/docs/technotes/tools/share/unpack200.html
- https://wiki.eclipse.org/Pack200
- https://www.oracle.com/java/technologies/java-communications-api.html
- https://docs.microsoft.com/en-us/dotnet/api/system.io.ports.serialport?view=dotnet-plat-ext-5.0
- http://developer.classpath.org/doc/java/util/Properties-source.html
- http://www.docjar.com/html/api/java/util/Properties.java.html
- https://docs.oracle.com/javase/9/docs/api/java/util/package-use.html
- https://www.oracle.com/technetwork/java/javase/9-deprecated-features-3745636.html
- https://docs.oracle.com/javase/9/docs/api/jdk.javadoc-summary.html
- https://ftpdocs.broadcom.com/cadocs/0/CA%20SiteMinder%20r12%20SP3-ENU/Bookshelf_Files/programming-reference/javadoc-sm/index.html
- https://docs.oracle.com/cd/E19316-01/820-4729/ggplu/index.html
- https://nvd.nist.gov/vuln/detail/CVE-2007-5923
- https://www.nccoe.nist.gov/sites/default/files/2023-07/zta-nist-sp-1800-35b-preliminary-draft-3.pdf
- https://wiki.base22.com/btg/how-to-setup-spring-mvc-in-a-web-app-fast-47513699.html
- https://www.digitalocean.com/community/tutorials/spring-mvc-tutorial
- https://www.digitalocean.com/community/tutorials/spring-validation-example-mvc-validator
- https://www.tutorialspoint.com/spring/spring_web_mvc_framework.htm
- https://github.com/fernandospr/spring-jetty-example/search?q=RequestMapping&unscoped_q=RequestMapping
- https://www.in28minutes.com/spring-boot-maven-eclipse-troubleshooting-guide-and-faq#q---how-do-i-solve-errors-related-to-component-scan
- http://www.mkyong.com/spring-mvc/spring-mvc-hello-world-example/
- http://www.mkyong.com/spring3/spring-3-mvc-hello-world-example-annotation/
- https://www.slideshare.net/thymeleaf/spring-io-2012-natural-templating-in-spring-mvc-with-thymeleaf?qid=697bc3b6-6387-4b4b-b3cd-933be2316e4e&v=&b=&from_search=8
- https://www.slideshare.net/hujak/javantura-v4-freemarker-in-spring-web-marin-kalapa?qid=27d3ee07-5ced-49f4-9148-c442341c7588&v=&b=&from_search=3
- https://www.slideshare.net/jreijn/comparing-templateenginesjvm
- https://www.slideshare.net/SpringCentral/presentations/4
- http://www.programming-free.com/2013/07/crud-operations-using-servlet-and.html
- https://struts.apache.org/core-developers/freemarker-support.html
- https://struts.apache.org/tag-developers/velocity.html
- https://cwiki.apache.org/confluence/display/WW/FreeMarker
- https://blog.lanyonm.org/articles/2014/11/23/spring-4-sitemesh-java-config.html
- http://www.pointerunits.com/2012/11/simple-login-application-using-spring.html
- https://crunchify.com/simplest-spring-mvc-hello-world-example-tutorial-spring-model-view-controller-tips/
- https://blog.hubspot.com/website/vue-js
- https://product.hubspot.com/blog/5-rules-for-better-backbone-code
- https://github.com/wireapp/wire-webapp/wiki/Knockout-to-React-Migration
- https://bugzilla.mozilla.org/show_bug.cgi?id=1543752
- https://www.jenkins.io/blog/2018/04/25/configuring-jenkins-pipeline-with-yaml-file/
- https://docs.oracle.com/javase/7/docs/technotes/tools/windows/classpath.html
- https://maven.apache.org/examples/injecting-properties-via-settings.html
- https://maven.apache.org/guides/mini/guide-encryption.html
- https://www.ibm.com/developerworks/library/j-classpath-windows/
- https://www.computerperformance.co.uk/powershell/powershell_env_path.htm
- https://blogs.technet.microsoft.com/heyscriptingguy/2011/07/23/use-powershell-to-modify-your-environmental-path/
- https://superuser.com/questions/82053/setting-home-in-powershell
- https://jira.spring.io/browse/SPR-13912
- https://docs.spring.io/spring-python/1.2.x/sphinx/html/overview.html
- https://github.com/spring-projects/spring-boot/commit/ee62633e33b44356f14060fd920130c66d8c9e14
- https://javaee.github.io/servlet-spec/downloads/servlet-3.1/Proposed%20Final%20Draft/servlet-3_1-PFD-draft.pdf
- https://www.uml-diagrams.org/examples/java-servlet-30-api-package-diagram-example.html
- https://static.javadoc.io/javax.servlet/javax.servlet-api/3.1.0/index-all.html
- https://wiki.eclipse.org/Jetty/Tutorial/Jetty_and_Maven_HelloWorld
- https://www.eclipse.org/jetty/documentation/9.4.x/security-reports.html
- https://www.eclipse.org/jetty/documentation/current/override-web-xml.html
- https://blogs.msdn.microsoft.com/allthingscontainer/2016/08/25/building-a-java-based-restful-service-to-run-in-dcos/
- https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/java-tomcat-platform-directorystructure.html
- https://help.liferay.com/hc/en-us/articles/360028726992-Headless-REST-APIs
- https://www.sitepoint.com/jetty-60-to-provide-new-architecture-for-ajax-apps/
- https://docs.microsoft.com/ja-jp/previous-versions/technical-document/dd297652(v=msdn.10)
- https://cloud.google.com/appengine/docs/flexible/java/configuring-the-web-xml-deployment-descriptor
- https://www.vojtechruzicka.com/spring-get-rid-of-web-xml/
- https://openjdk.java.net/jeps/221
- https://openjdk.java.net/groups/compiler/using-new-doclet.html
- https://openjdk.java.net/groups/compiler/javadoc-architecture.html
- https://github.com/MarkusBernhardt/xml-doclet/issues/14
- https://github.com/asciidoctor/asciidoclet/issues/71
- https://github.com/eclipse/openj9-docs/issues/131
- https://ruby-doc.org/stdlib-trunk/libdoc/cgi/rdoc/CGI.html https://docs.oracle.com/javase/8/docs/technotes/guides/troubleshoot/envvars002.html
- https://stackoverflow.com/questions/17294382/how-to-add-more-than-one-parameter-to-java-tool-options
- https://www.oracle.com/technetwork/java/jdk50-ts-guide-149808.pdf
- https://docs.oracle.com/javase/7/docs/webnotes/tsg/TSG-VM/html/envvars.html
- http://svn.apache.org/repos/asf/jmeter/tags/v2_3_3_RC2/docs/usermanual/get-started.html
- https://bugs.eclipse.org/bugs/show_bug.cgi?id=321390
- https://ant.apache.org/manual/Tasks/java.html
- https://www.dynatrace.com/support/doc/appmon/installation/application-integration/java-applets/
- https://saucelabs.com/resources/articles/how-to-configure-webdriver-selenium-for-java-in-eclipse-on-windows
- https://www.ibm.com/blogs/bluemix/2014/07/debugging-java-applications-running-bluemix/
- https://cwiki.apache.org/confluence/display/IMPALA/Impala+Debugging+Tips
- Deprecation: https://www.drupal.org/core/deprecation
- Deprecation: https://www.mediawiki.org/wiki/Deprecation_policy
- Archive: http://www.oracle.com/technetwork/java/archive-139210.html
- Glossary: http://www.oracle.com/technetwork/java/glossary-135216.html
- Incompatibility: http://www.oracle.com/technetwork/java/javase/compatibility-137462.html
- Archive: https://docs.oracle.com/javase/7/docs/technotes/tools/windows/jar.html
- Test Suite: https://docs.oracle.com/javame/test-tools/jctt/testsuite_devguide.pdf
- Secure Coding: https://www.oracle.com/technetwork/java/seccodeguide-139067.html
- i18n: https://docs.oracle.com/javase/tutorial/i18n/serviceproviders/resourcebundlecontrolprovider.html
- Tools Reference: https://docs.oracle.com/javase/10/tools/JSWOR.pdf
- Migration Guide: http://www.oracle.com/technetwork/java/javase/community/jm-white-paper-r6a-149981.pdf
- Enhancements: https://docs.oracle.com/javase/7/docs/technotes/guides/lang/index.html
- Semantics: http://www.eclipse.org/community/eclipse_newsletter/2016/november/article3.php
- Standards: https://wiki.eclipse.org/Authoring_Eclipse_Help_Using_DITA
- https://en.wikipedia.org/wiki/Mockito
- https://www.slideshare.net/muanis/working-with-mockito-and-eclipse
- https://github.com/andirdju/spring-mvc-unit-test-sample/blob/develop/src/test/java/org/andird/controller/RestTimeControllerTest.java
- https://infinitescript.com/2014/05/unit-testing-of-spring-mvc-controllers/
- https://stackoverflow.com/questions/1401128/how-to-unit-test-a-spring-mvc-controller-using-pathvariable/2457902
- https://github.com/spring-projects/spring-framework/blob/master/src/docs/asciidoc/testing.adoc
- https://circleci.com/docs/2.0/java-oom/
- https://docs.oracle.com/cd/E17802_01/products/products/javacomm/reference/api/javax/comm/ParallelPort.html
- https://medium.com/@shehanb/java-code-snippets-send-receive-messages-using-a-hspa-dongle-thread-safe-21d702c56eec
- http://www.kuligowski.pl/java/rs232-in-java-for-windows,1
- http://userguide.icu-project.org/dev/sync
- https://cheatsheetseries.owasp.org/cheatsheets/Session_Management_Cheat_Sheet.html
- https://docs.oracle.com/cloud/latest/as111170/SCPRG/ssl_client.htm#SCPRG256
- https://docs.spring.io/spring-security/site/docs/3.0.x/reference/security-filter-chain.html
- https://stackoverflow.com/questions/41480102/how-spring-security-filter-chain-works
- https://bugs.openjdk.java.net/browse/JDK-4749531
- https://bugs.openjdk.java.net/browse/JDK-4792682
- https://bugs.openjdk.java.net/browse/JDK-8068373
- https://bugs.openjdk.java.net/browse/JDK-8145469
-
http://stacktips.com/tutorials/java/spring/how-spring-controller-request-mapping-works-in-spring-mvc
- https://www.salesforce.com/blog/2016/11/force-developer-retiring-certification.html #Sales https://www.salesforce.com/blog/2014/03/5-closing-techniques-that-are-obsolete-gp.html https://www.salesforce.com/blog/2014/12/traditional-sales-obsolete-shift-consultative-selling-gp.html
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
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" />
-
Get jtidy from maven central: http://central.maven.org/maven2/net/sf/jtidy/jtidy/r938/jtidy-r938.jar
-
Alias the file
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.
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
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; }
- https://en.wikibooks.org/wiki/Windows_Batch_Scripting
- https://devblogs.microsoft.com/commandline/windows-command-line-the-evolution-of-the-windows-command-line/
- https://ss64.com/nt/goto.html
- http://api.html-tidy.org/tidy/tidylib_api_5.2.0/tidy_config.html
- http://jtidy.sourceforge.net/howto.html
- https://stackoverflow.com/q/7151180/1113772
- http://www.oldversion.com/windows/foxit-pdf-reader/