Come see the talk on Friday, 11am, in Lopata 101, by Alexis Battle, a faculty candidate for the Computer Science department. The talks called:
Unraveling the genetics of disease using structured probabilistic models
Come see the talk on Friday, 11am, in Lopata 101, by Alexis Battle, a faculty candidate for the Computer Science department. The talks called:
Unraveling the genetics of disease using structured probabilistic models
We received the following memo from Southwest Research Institute:
Good Afternoon!
I am a recruiter for Southwest Research Institute. We will be interviewing on campus on Monday, March 4th. I was hoping that you might be willing to let the ACM members know that we are currently looking for students interested in engineering job opportunities and would like to invite your members to submit their resumes for interview consideration. Students can do this through the CAREERlink online system until this Monday, February 18th. If you or any of your members have any questions about the Institute, please don’t hesitate to have them contact me. Thanks so much and have a great rest of the week!
Southwest Research Institute (SwRI®) is an independent, nonprofit, applied engineering and physical sciences research and development organization. A partial listing of research areas includes antennas and propagation; automation, robotics, and intelligent systems; avionics, chemistry and chemical engineering; corrosion and electrochemistry; emissions research; engineering mechanics; fire technology; and fuels and lubricants.
http://www.youtube.com/user/SwRItv
Come in and listen to WashU Alumni Gaurav Garg discuss his multiple start-up and his experience in venture capital and technology. Food from Noodles & Co and Dough to Door.
Monday, February 11th from 11:55 to 1:30 in Bryan 305.

During our tips and tricks sessions, you will have the opportunity to code your own solutions to the exercises we solve as a group. Follow these instructions to set up your workspace.
https://shell.cec.wustl.edu:8443/acm2013/svn/studio-######Then press “submit” and cross your fingers. To see your results, go to “My Submissions” on the left side of the page. You may need to refresh the page a few times before your solution has finished running.
There’s going to be a practice interview info session, this friday at 6:30pm – 8pm in Lopata 507. You’ll learn the basics of Technical Interviewing, and how to do practice interviews.
The brain computer interface club needs a programmer to code a very simple web app which can quickly display multiple strobes. I’ve already shown them this prototype and they need someone to expand it.
Contact Jenny Liu for more information yjialiu@gmail.com
Here’s the modified code:
<!DOCTYPE html>
<html>
<title>Flashing Page</title>
<script>
//Flashes Every 100 ms (0.1 seconds)
setInterval('flasher()', 100);
var flash = 0;
//Flash Function
function flasher(){
//Atomic Flash
if(flash == 0){
document.bgColor = '#FF0000';
flash = 1;
} else {
document.bgColor = '#FFFFFF';
flash = 0;
}
}
</script>
</html>
Meet the Company
Tuesday, January 29th, 6.30 pm
Mallinckrodt Multipurpose room (below Subway) Emily and I will talk about what’s new in the industry and at Microsoft, and how you can be a part of it. Dinner’s on us, plus we’ll have giveaways.
Tips and Tricks Session 1 will cover setting up your workspace for ICPC-like competitions, I/O in Java, and fundamental algebra and arithmetic problems.
Here is the skeleton that you should use for all ICPC-type problems from now through the end of the semester:
package _____;
import java.io.*;
import java.util.Scanner;
/**
* Problem ____: ________
*/
public class Main {
public static void main(String[] args) throws IOException {
// For STDIN, put two stars below.
// For File In, put one star below.
/*/
Scanner scanner = new Scanner(new BufferedReader(new InputStreamReader(System.in)));
/*/
Scanner scanner = new Scanner(new BufferedReader(new InputStreamReader(new FileInputStream("_______/sample.in"))));
/**/
while (scanner.hasNextInt()) {
// your solution goes here.
// Example line: int n = scanner.nextInt();
}
}
}
To copy the above code, press the “view source” button in the upper-right corner.
There are four fill-in-the-blanks: the package name, the problem ID, the problem name, and then the package name again (in the FileInputStream line).
Activities fair is from 5-7 Wednesday
RSVP here
https://docs.google.com/