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
| # START | |
| # hit `enter` after below command | |
| nohup java -jar my.jar > my.out & | |
| # STOP | |
| ps -A |grep java | |
| kill -9 PID | |
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
| If you'd like to use a .jar file in your project, but it's not available in any Maven repository, | |
| you can get around this by creating your own local repository. This is done as follows: | |
| 1 - To configure the local repository, add the following section to your pom.xml (inside the <project> tag): | |
| <repositories> | |
| <repository> | |
| <id>in-project</id> | |
| <name>In Project Repo</name> | |
| <url>file://${project.basedir}/libs</url> |
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
| #!/bin/bash | |
| # | |
| # Public-Key Encryption and Decryption | |
| # * http://www.openssl.org/ | |
| # * http://barelyenough.org/blog/2008/04/fun-with-public-keys/ | |
| # | |
| # Mac OS X 10.6.4 | |
| # OpenSSL 0.9.8l 5 Nov 2009 | |
| # Generate keys |
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
| package dk.im2b | |
| import java.io.OutputStream | |
| import java.net.ServerSocket | |
| import java.net.Socket | |
| import java.nio.charset.Charset | |
| import java.util.* | |
| import kotlin.concurrent.thread | |
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
| 000000 Officially Xerox | |
| 000001 SuperLAN-2U | |
| 000002 BBN (was internal usage only, no longer used) | |
| 000003 XEROX CORPORATION | |
| 000004 XEROX CORPORATION | |
| 000005 XEROX CORPORATION | |
| 000006 XEROX CORPORATION | |
| 000007 XEROX CORPORATION | |
| 000008 XEROX CORPORATION | |
| 000009 powerpipes? |
OlderNewer