I hereby claim:
- I am kurt-p on github.
- I am xero0042 (https://keybase.io/xero0042) on keybase.
- I have a public key ASB0Jz2W86hqU_V1byLDfkY0qu3LMWONwwekRFukZyn6Wgo
To claim this, I am signing this object:
| systemctl set-default graphical.target |
I hereby claim:
To claim this, I am signing this object:
| public class JavaHome { | |
| public static void main(String[] args) { | |
| String home = System.getProperty("user.home"); | |
| System.out.printf("%s\n", home); | |
| } | |
| } |
| import java.util.Scanner; | |
| public class CircleCalc { | |
| public static void main(String[] args) { | |
| Scanner scanner = new Scanner(System.in); | |
| double radius, area; | |
| System.out.print("Area of the circle: "); |
| hdiutil makehybrid -o ~/Desktop/image.iso ~/path/to/folder/to/be/converted -iso -joliet |
| import java.awt.*; | |
| import java.awt.event.*; | |
| import javax.media.opengl.*; | |
| import javax.media.opengl.awt.GLCanvas; | |
| import javax.media.opengl.fixedfunc.*; | |
| import com.jogamp.opengl.util.Animator; | |
| /** | |
| * Self-contained example (within a single class only to keep it simple) | |
| * displaying a rotating quad |
| import javax.media.opengl.GLAutoDrawable; | |
| import javax.media.opengl.GLEventListener; | |
| import javax.media.opengl.GLProfile; | |
| import javax.media.opengl.GLCapabilities; | |
| import javax.media.opengl.awt.GLJPanel; | |
| import javax.swing.JFrame; | |
| import java.awt.BorderLayout; | |
| import java.awt.event.WindowAdapter; | |
| import java.awt.event.WindowEvent; |
| ##This may require vbox in your PATH variable. | |
| VBoxManage startvm '$VirtualMachine' |
| public class jcopy { | |
| public static void main(String[] args) throws IOException { | |
| BufferedReader stdin = new BufferedReader( new InputStreamReader(System.in)); | |
| System.out.println("enter Input File Name: "); | |
| String InputFile = stdin.readLine(); | |
| File infile = new File(InputFile); | |
| InputStream fin = new FileInputStream(infile); |