About Me

Hi, I'm Arjun. I'm currently an undergraduate student at The George Washington University pursuing a Bachelor of Science in Computer Science and a Minor in Mind-Brain studies. While I enjoy learning about the many facets of computer science I am very interested in studying the learning patterns of the human brain and understanding how I can work to model and replicate those functions within technology.

Over the past few years, I've had the opportunity to be involved with a number of wonderful organizations and programs. In addition being a named a Clark Engineering Scholar and GWU Presidential Scholar, I've been involved with several organizations including Hackital, Special Olympics, Atoms to Astronauts, and the GW Chess Club. To learn more about me or my experiences, feel free to to leave a comment or reach out to me on social media.

Education

The George Washington University – May 2021

Bachelor of Science in Computer Science
Minor in Mind-Brain Studies
  • Honors: Clark Engineering Scholar, Presidential Scholar, Dean's Honor List,
  • Activities: Hackital, Association for Computing Machinary, Engineers Without Borders, Student Peer Advisory Network, Chess Club

Sherwood High School – June 2017

Advanced Honors Diploma
  • Honors: AP Scholar, Mayors Honors List(3x), Bowmen Service Award(2x), Tennis All-League Athlete
  • Activities: Student Government, National Honor Society, Varsity Tennis, Chess Club, Model United Nations

My Work

runOnUiThread{
 val alert = AlertDialog.Builder(this)
 alert.setTitle("You should take the " + " line ")
 alert.setMessage(R.string.AlertDirection)
 alert.setPositiveButton(R.string.AlertOK, { dialog, which ->
   dialog.dismiss()
 })

 recyclerView.adapter = LocationAdapter(locations)
}

DC Metro Navigator

Kotlin | Android Studio | WMATA API

  • Android app which provides metro directions to a metro station in the D.C/Maryland/Virginia area
  • Displays real-time updates of any metro alerts that the user may encounter during their ride

$query = "select * from rec_letters where uid='$uid'";
  $result = mysqli_query($conn,$query);
  if (mysqli_num_rows($result) > 0){
          while($row = mysqli_fetch_assoc($result)){
          $recComplete = $row['complete'];
          }
  }

Application Processing System

PHP | MySQL | HTML | CSS

  • Created an application processing system for Masters/PhD students. This system enables students to apply to graduate programs and adminstration to review, admit, and analyze data of Masters/PhD applicants.
  • Implemented database design of system, backend information processing for all applicants/faculty reviewers, and user interface for website pages.


private void move(City City) {
 int[] newPosition = {direction, xPosition, yPosition, 0};
 eatBrains(City);
 destroyWarrior(City);
 newPosition = followHuman(newPosition, City);
}

Zombie Simulator

Java | Swing API

  • A human-zombie game simulator in which the user plays as a zombie master to defeat the opposing humans/warriors
  • Features intelligent zombies/warriors capable of tracking the position of various characters
  • UI includes randomized game maps as well extended functionality through keyboard shortcuts