Skip to content

Instantly share code, notes, and snippets.

View neomatrix369's full-sized avatar
🎯
Focusing

mani neomatrix369

🎯
Focusing
View GitHub Profile
@neomatrix369
neomatrix369 / commonFolderDirStructure.txt
Last active December 15, 2015 17:18
OpenJDK folder structure for 'common'
Regex: \/?common(\/(\w*(-.*\w*)*))*
/common/
/common/autoconf/
/common/autoconf/build-aux/
/common/bin/
/common/makefiles/
/common/makefiles/javadoc/
/common/makefiles/support/
/common/src/
@neomatrix369
neomatrix369 / makeFolderDirStructure.txt and testFolderDirStructure.txt
Last active December 15, 2015 17:19
OpenJDK folder structure for 'make' and 'test'
Regex: \/?make(\/(\w*(-.*\w*)*))*
/make/
/make/scripts/
/make/templates/
Regex: \/?test(\/(\w*(-.*\w*)*))*
/test/
@neomatrix369
neomatrix369 / corbaRepoDirStructure.txt
Last active December 15, 2015 17:19
OpenJDK folder structure for repo 'corba'
Regex: \/?corba(\/(\w*(-.*\w*)*))*
corba
corba/make
corba/make/com
corba/make/com/sun
corba/make/com/sun/corba
corba/make/com/sun/corba/minclude
corba/make/com/sun/corba/se
corba/make/com/sun/corba/se/connection
@neomatrix369
neomatrix369 / hotspotRepoDirStructure.txt
Last active December 15, 2015 17:19
OpenJDK folder structure for repo 'hotspot'
Regex: \/?hotspot(\/(\w*(-.*\w*)*))*
hotspot
hotspot/agent
hotspot/agent/doc
hotspot/agent/make
hotspot/agent/src
hotspot/agent/src/os
hotspot/agent/src/os/bsd
hotspot/agent/src/os/linux
@neomatrix369
neomatrix369 / jaxpRepoDirStructure.txt
Last active December 15, 2015 17:19
OpenJDK folder structure for repo 'jaxp'
Regex: \/?jaxp(\/(\w*(-.*\w*)*))*
jaxp
jaxp/make
jaxp/make/scripts
jaxp/makefiles
jaxp/nbproject
jaxp/src
jaxp/src/com
jaxp/src/com/sun
@neomatrix369
neomatrix369 / jaxwsRepoDirStructure.txt
Last active December 15, 2015 17:19
OpenJDK folder structure for repo 'jaxws'
Regex: \/?jaxws(\/(\w*(-.*\w*)*))*
jaxws
jaxws/make
jaxws/make/scripts
jaxws/makefiles
jaxws/nbproject
jaxws/src
jaxws/src/share
jaxws/src/share/jaf_classes
@neomatrix369
neomatrix369 / jdkRepoDirStructure.txt
Last active December 15, 2015 17:19
OpenJDK folder structure for repo 'jdk'
Regex: \/?jdk(\/(\w*(-.*\w*)*))*
jdk
jdk/build
jdk/dist
jdk/make
jdk/make/altclasses
jdk/make/apple
jdk/make/apple/applescript
jdk/make/bridge
@neomatrix369
neomatrix369 / langtoolsRepoDirStructure.txt
Last active December 15, 2015 17:19
OpenJDK folder structure for repo 'langtools'
Regex: \/?langtools(\/(\w*(-.*\w*)*))*
langtools
langtools/build
langtools/make
langtools/make/conf
langtools/make/netbeans
langtools/make/netbeans/langtools
langtools/make/netbeans/langtools/nbproject
langtools/make/test
@neomatrix369
neomatrix369 / nashornRepoDirStructure.txt
Last active December 15, 2015 17:19
OpenJDK folder structure for repo 'nashorn'
Regex: \/?nashorn(\/(\w*(-.*\w*)*))*
nashorn
nashorn/bin
nashorn/build
nashorn/buildtools
nashorn/buildtools/nasgen
nashorn/buildtools/nasgen/build
nashorn/buildtools/nasgen/dist
nashorn/buildtools/nasgen/src
@neomatrix369
neomatrix369 / BST.java
Last active December 17, 2015 19:19
Binary Search Tree (BST) implementation that helps create a Binary search tree, add nodes to it and print it out (in order).
import java.lang.reflect.Array;
/**
* A binary search tree (BST) is a computer science terminology also called an
* ordered or sorted binary tree, it is a node-based binary tree data structure.
*
* This BST class consists of public, and private instance and static methods to
* facilitate creating, adding and printing a Binary Search Tree (in order).
*
* It can store generic values of type T (any type) to make the solution a bit