Posts

The Story of Adam and Eve

 Hello to everyone who's reading this,  So I'm somewhat of a deep thinker when it comes to some things, at least I used be 😅. Anyways once I read the story of Adam and Eve I started to think that there could be something much more deeper than what is visible to the regular reader... Consider this, men and women are innately different. If you view it from a biological and anthropological perspective you can find out many different qualities and characteristics that differs men from women. Women for example have more sensitive skin than men, which could be an evolutionary trait as in the past women used to take care of the family while the men used to hunt/gather for food and supplies. A man with sensitive skin would actually have a very hard time getting accustomed to something like hunting an animal. I'm not trying to be sexist here, I'm just stating the fact that there are differences in male and female minds and bodies that have been proven scientifically. Now why a

Creating a JAR file using Command Prompt

Step 1 Compile your Java Code Step 2 Create a manifest file like the one below Main-Class: (Your Class name which has the main method) Double press "enter" So that you have 2 empty lines after typing the above. (Save with extension .txt not .mf) Step 3 run the following command on cmd jar cfm "Name You want for your JAR file".jar "name of mainfest".txt "name of all classes, or you can use '*' ".class (eg: jar cfm MyProgram.jar manifest.txt *.class) Press enter Now a JAR File will be created in the current directory Step 4 run your jar file by using the following command java -jar "JAR Name".jar