This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| try { | |
| // Get hostname of client | |
| String clientName = connection.getInetAddress().getHostName() | |
| + "[" + threadID + "]"; | |
| // Announce connection | |
| BizTrackMEServer.logEvent("event", clientName + " connected."); | |
| // This streams data FROM the client |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| alias gs='git status ' | |
| alias gd='git diff ' | |
| alias ga='git add ' | |
| alias gc='git commit ' | |
| alias glog="git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%Creset' --abbrev-commit --date=relative" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Pangram{ | |
| public static void main( String [] args ){ | |
| Pangram p = new Pangram(); | |
| p.pangramer("The quick brown fox jumps over the lazy dog."); | |
| p.pangramer("Pack my box with five dozen liquor jugs"); | |
| p.pangramer("Saxophones quickly blew over my jazzy hair"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| private void testIP3( int numOfAccounts ) { | |
| // How does 10,000 test accounts sound? | |
| Account [] accounts = new Account[numOfAccounts]; | |
| /* | |
| * In order to create a mix of the different subclasses, we'll use some | |
| * simple iteration logic to rotate what's instantiated for each position | |
| * in the array. | |
| */ |
NewerOlder