University of Nevada, Reno Chapter
To enhance the computer science program at UNR by providing students with opportunities to learn valuable tech skills and network with tech companies in the area.
ACM is the world's largest educational and scientific computing society, delivering resources that advance computing as a science and a profession.
Our UNR chapter connects students with shared interests in technology, providing a supportive community to learn, grow, and collaborate together.
We bridge the gap between academia and industry through workshops, hackathons, networking events, and connections with tech companies.
Our annual Biggest Little Hackathon brings together hundreds of students for a weekend of coding, creativity, and competition.
Regular technical workshops covering Python, web development, Git, and emerging technologies taught by students and industry professionals.
Twice-weekly sessions to practice coding problems and prepare for technical interviews at top tech companies.
Annual competition with problems at beginner, intermediate, and advanced levels. Test your skills and win prizes!
Connect with tech professionals through company visits, speaker events, and career fairs hosted throughout the year.
Social events with food, board games, and video games. Because building friendships is just as important as building code!
The dedicated team leading ACM at UNR
Join the largest computer science community at UNR. Whether you're a beginner or an experienced developer, there's a place for you here.
// Your journey starts here
const student = {
university: "UNR",
interests: ["coding", "tech"],
member: false
};
function joinACM(student) {
student.member = true;
student.skills++;
student.friends++;
return "Welcome to ACM!";
}
joinACM(student);