Skip to content

Latest commit

 

History

History
87 lines (53 loc) · 3.85 KB

README.md

File metadata and controls

87 lines (53 loc) · 3.85 KB

Programming Notes

This repository is to take notes of my programming progress.

Table of Contents

  • Ubuntu

    • Software list -- [list found here] ubuntu01

    • Settings -- [list found here] ubuntu02

  • Java

    • Structured programming sample -- [MyJavaExample.java] java01

    • Secure hash of files or strings -- [SecureHash.java] java02

    • Customize event -- [CustomizedEvent] java03

    • Executable jar -- [ExecutableJar] java04 Readme document [here] java04readme

    • Jar class loader -- [JarClassLoader] java05

    • Invoke system command -- [RunCmd.java] java06 Readme document [here] java06readme

    • Testing with JUnit -- [JUnitTests] java07 Readme document [here] java07readme

  • JavaScript

    • HTML escape symbols -- [HtmlEscapeSymbols.html ] js01

    • Append jQuery -- [include_jQuery.js ] js02

    • Get CSS value -- [GetCssValue ] js03

    • DOM element visibility -- [DomVisibility.js] js04

    • Object oriented programming -- [JsClass] js05 Readme document [here] js05readme

    • Color implementation -- [JsColor] js06

    • Tree implementation -- [JsTree] js07

    • Wait-util-done procedure in loop recursion -- [WaitUtilDoneInLoopRecursion] js08

    • Firefox extension development (Deprecated) -- [FirefoxExtension_Deprecated] js09 Readme document [here] js09readme

  • Python

    • Put 1s into a binary number -- [BinaryNumberWithOnes] python01