Login / Create an Account
CoRE (Computers, Robotics, and Engineering) is a Special Interest Housing Module located on campus at Binghamton University. With nearly 20 years of history and alumni, CoRE continues to motivate and encourage its members while maintaining its commitment to its community and Binghamton University as a whole.

Minutes 5/3/09

-Voting for new positions:
-President: Steve remains
-Vice President: Greg Stoddard is taking over for Joe
-Psudopod Manager: Greg Sawchuck is taking over for @
-System Admin: Dave is taking over for Josh
-Secretary: Gene is taking over for me, João
-Treasury: Aaron Milbury
-Website: I, João, will take over for Will.

-Fill out your CoRE wiki page, and have a nice summer

Minutes 4/19/09

-Maxover next weekend
-Bridge Building Contest at 8pm
-CoreBQ on Friday, need someone to help get supplies

Minutes 3/22/09

-Pseudopod passed fire inspection.
-CoRE shirt, right now is between @'s design and Joe's, also think about getting personalized backs.
-Steve will send an email out on core chat for alumni that want to buy shirts.
-Maxover will be on the weekend of April 25th.

Minutes 3/15/09

-Check out Joe's shirt design for CoRE, if you have any ideas bring them up before Steve.
-Maxover will be on April 25th
-If you need any help in choosing a CoRE project or have any questions about it, ask Steve.
-There will probably be a CoRE BBQ near the end of the semester.

Minutes

Hey guys,
-I wasn't able to post the minutes from last week because I had some trouble with my account that got settled sometime during the middle of the week, but the only big news from last week was that I (João) was elected as the new Core secretary.
-From the meeting today, keep in mind that there will be fire inspections tomorrow (the 9th) so make sure to prepare for that.
-Make sure the pseudopod remains in good condition and try your best to keep it clean.
-The date for Max Over is going to be April 25th.
-There will probably be a Core BBQ at the end of the semester.

Minutes

Steve is a douche. The CoRE e-board needs a new secretary. If you are interested, submit your letter of intent to Steve by next Sunday, 5 PM. Be creative with them and have fun.
Interested in the secretary position: John and Merrick.
CoRE applications: Fill them out, hand them to the Dickinson Community Office or Steve. Due date: March 3rd.
Maximum Overkill: Nate, where are you?
Some CoRE project ideas:
* IRC server
* spam filter (write a piece of code that will take in text as input and identify whether or not it's spam)
CoRE members: Make your own website and upload it on ziggy!

Minutes

#1, Greg: Annoying.
Pseudopod floor is clean, so we should be able to use it now.
Housing deposits: Pay up by the 20th. Also, fill out CoRE application by March 2nd.
Where's Nate?
Myth Busters are coming to Binghamton. March 31st. Events Center. Tickets cost $5. Go to the Box Office in the stacks to purchase 'em.
Jon Stewart is coming to Binghamton.
If you have friends interested in CoRE, forward the e-mail you received from Jeff so they are brought up to speed about how to proceed.

minutes

* Elections: VP - Adam, Joe. Webmaster - Wilfred.
* Letters of intent: Adam's: Bubble Tea business card, intent written on it. Joe's: Piece of paper w/ duct tape, containing intent.
* Q&A for the candidates
1. Faux hawk: Joe: Nay. Adam: Aye.
2. Recruitment for CoRE: Adam: Something along the lines of asking around. Joe: Public website, group tours.
3. Time management, time allocation for position: Adam: Will allocate time for all responsibilities. Joe: Did not catch what he said, if anything.

Old CoRE Constitution



CoRE Living Contract

CoRE is an acronym that stands for COmputers, Robotics and Engineering. Located in O'Connor hall in the Dickinson Community at SUNY-Binghamton, we are a Special Interest Housing (S.I.H.) group dedicated to learning and sharing knowledge in these subjects.

How to WebStart a Java Application

Make sure to have the latest Java Runtime Environment.

1) Create a JAR
2) Create JNLP file
3) Add JAR and JNLP to html or hotdocs folder
4) Add link to webpage

How I Created My JAR

A JAR is Java's version of an executable.

To create a JAR use the following commands:
Using a Windows command prompt:

jar cfm nameOfJAR.jar manifest.mft *.class

Manifest File

Main-Class: HighOrLow
Class-Path: .

Main-Class is the class that contains your method main.
Class-Path: . means that it is set to the current directory path