Howdy. 

-bash-4.2$ nano -w 0826a.phps
-bash-4.2$ date
Wed Aug 26 12:45:53 EDT 2020
-bash-4.2$

Java programs are made of classes. 

One class per file, class names are nouns start with uppercase. 

Files have extension .java here is an empty class: 

public class One {

}

In a program at least one class must have a special method, main, for the program to run. 

-bash-4.2$ ls -l
total 4
-rw-r--r-- 1 dgerman faculty 22 Aug 26 15:52 One.java
-bash-4.2$ cat One.java
public class One {

}
-bash-4.2$ pwd
/u/dgerman/c212-fall2020-workspace/week01
-bash-4.2$ nano -w One.java
-bash-4.2$ javac One.java
Picked up _JAVA_OPTIONS: -Xms512m -Xmx512m
-bash-4.2$ ls
One.class  One.java
-bash-4.2$ java One
Picked up _JAVA_OPTIONS: -Xms512m -Xmx512m
1
3
whatever
whatever
-bash-4.2$ cat One.java
public class One {
  public static void main(String[] args) {
    System.out.println( 1 );
    System.out.println( 1 + 2 );
    System.out.println( "whatever" );
    System.out.println( "what" + "ever" );
  }
}
-bash-4.2$

Now let's do some arithmetic: 

-bash-4.2$ ls -l One.java
-rw-r--r-- 1 dgerman faculty 298 Aug 26 16:10 One.java
-bash-4.2$ cat One.java
public class One {
  public static void main(String[] args) {
    System.out.println( 0.1 );                   // 0.1
    System.out.println( 0.1 + 0.1 );             // 0.2
    System.out.println( 0.1 + 0.1 + 0.1 );       // 0.3
    System.out.println( 0.1 + 0.1 + 0.1 + 0.1 ); // 0.4
  }
}
-bash-4.2$ javac One.java
Picked up _JAVA_OPTIONS: -Xms512m -Xmx512m
-bash-4.2$ java One
Picked up _JAVA_OPTIONS: -Xms512m -Xmx512m
0.1
0.2
0.30000000000000004
0.4
-bash-4.2$

Let's do some more more. 

-bash-4.2$ nano -w One.java
-bash-4.2$ cat One.java
public class One {
  public static void main(String[] args) {
    System.out.println( 0.1 );                         // 0.1  yes
    System.out.println( 0.1 + 0.1 );                   // 0.2  yes
    System.out.println( 0.1 + 0.1 + 0.1 );             // 0.3  no
    System.out.println( 0.1 + 0.1 + 0.1 + 0.1 );       // 0.4  yes
    System.out.println( 0.1 + 0.1 + 0.1 + 0.1 + 0.1 ); // 0.5  yes
    System.out.println( 0.1 + 0.1 + 0.1 + 0.1 + 0.1 + 0.1); // 0.6 yes
    System.out.println( 0.1 + 0.1 + 0.1 + 0.1 + 0.1 + 0.1 + 0.1); // 0.7 yes
    System.out.println( 0.1 + 0.1 + 0.1 + 0.1 + 0.1 + 0.1 + 0.1 + 0.1); // 0.8  no
    System.out.println( 0.1 + 0.1 + 0.1 + 0.1 + 0.1 + 0.1 + 0.1 + 0.1 + 0.1); // 0.9 no

  }
}
-bash-4.2$ javac One.java
Picked up _JAVA_OPTIONS: -Xms512m -Xmx512m
-bash-4.2$ java One
Picked up _JAVA_OPTIONS: -Xms512m -Xmx512m
0.1
0.2
0.30000000000000004
0.4
0.5
0.6
0.7
0.7999999999999999
0.8999999999999999
-bash-4.2$

Here's a simpler case:

-bash-4.2$ pwd
/u/dgerman/c212-fall2020-workspace/week01
-bash-4.2$ nano -w One.java
-bash-4.2$ javac One.java
Picked up _JAVA_OPTIONS: -Xms512m -Xmx512m
-bash-4.2$ java One
Picked up _JAVA_OPTIONS: -Xms512m -Xmx512m
453.0
-bash-4.2$ cat One.java
public class One {
  public static void main(String[] args) {
    System.out.println( 4.53 * 100 );

  }
}
-bash-4.2$ nano -w One.java
-bash-4.2$ javac One.java
Picked up _JAVA_OPTIONS: -Xms512m -Xmx512m
-bash-4.2$ java One
Picked up _JAVA_OPTIONS: -Xms512m -Xmx512m
434.99999999999994
-bash-4.2$ cat One.java
public class One {
  public static void main(String[] args) {
    System.out.println( 4.35 * 100 );

  }
}
-bash-4.2$

Let's fix this: 

-bash-4.2$ nano -w One.java
-bash-4.2$ javac One.java
Picked up _JAVA_OPTIONS: -Xms512m -Xmx512m
-bash-4.2$ java One
Picked up _JAVA_OPTIONS: -Xms512m -Xmx512m
435.00
-bash-4.2$ cat One.java
import java.math.BigDecimal;

public class One {
  public static void main(String[] args) {
    BigDecimal a = new BigDecimal("4.35");
    BigDecimal b = new BigDecimal("100");
    System.out.println( a.multiply(b) );

  }
}
-bash-4.2$

I have introduced the object notation. 

-bash-4.2$ pwd
/u/dgerman/c212-fall2020-workspace/week01
-bash-4.2$ nano -w One.java
-bash-4.2$ javac One.java
Picked up _JAVA_OPTIONS: -Xms512m -Xmx512m
-bash-4.2$ java One
Picked up _JAVA_OPTIONS: -Xms512m -Xmx512m
453.0
-bash-4.2$ cat One.java
public class One {
  public static void main(String[] args) {
    System.out.println( 4.53 * 100 );

  }
}
-bash-4.2$ nano -w One.java
-bash-4.2$ javac One.java
Picked up _JAVA_OPTIONS: -Xms512m -Xmx512m
-bash-4.2$ java One
Picked up _JAVA_OPTIONS: -Xms512m -Xmx512m
434.99999999999994
-bash-4.2$ cat One.java
public class One {
  public static void main(String[] args) {
    System.out.println( 4.35 * 100 );

  }
}
-bash-4.2$ clear
-bash-4.2$ nano -w One.java
-bash-4.2$ javac One.java
Picked up _JAVA_OPTIONS: -Xms512m -Xmx512m
-bash-4.2$ java One
Picked up _JAVA_OPTIONS: -Xms512m -Xmx512m
435.00
-bash-4.2$ cat One.java
import java.math.BigDecimal;

public class One {
  public static void main(String[] args) {
    BigDecimal a = new BigDecimal("4.35");
    BigDecimal b = new BigDecimal("100");
    System.out.println( a.multiply(b) );

  }
}
-bash-4.2$ nano -w One.java
-bash-4.2$ javac One.java
Picked up _JAVA_OPTIONS: -Xms512m -Xmx512m
-bash-4.2$ java One
Picked up _JAVA_OPTIONS: -Xms512m -Xmx512m
---------
---------
---------
---------
---------
-bash-4.2$ nano -w One.java
-bash-4.2$ cat One.java
import java.math.BigDecimal;

public class One {
  public static void main(String[] args) {
    System.out.println( "+------+" );
    System.out.println( "| o  o |" );
    System.out.println( "|  <   |" );
    System.out.println( "|  -   |" );
    System.out.println( "+------+" );

  }
}
-bash-4.2$ javac One.java
Picked up _JAVA_OPTIONS: -Xms512m -Xmx512m
-bash-4.2$ java One
Picked up _JAVA_OPTIONS: -Xms512m -Xmx512m
+------+
| o  o |
|  <   |
|  -   |
+------+
-bash-4.2$

--

15:09:39     From  Lizzy Gabel : maybe we should all double check out mics, lol
15:10:26     From  Thanh Thanh : Nah, that was funny lol
15:10:37     From  Lizzy Gabel : fair enough, XD
15:13:20     From  Tyler Keith : Anybody got a pencil I can borrow?
15:13:30     From  James Evans : Im dead
15:13:32     From  Dion Daggy : sure just be sure to give it back
15:13:56     From  Thanh Thanh : yeah sure, how do I put a pencil emoji in here?
15:14:26     From  JD Anderson : use windows key + . 
15:14:32     From  Garrett Bess : https://34t9wx3d3efh36333w49fxon-wpengine.netdna-ssl.com/wp-content/uploads/Single-Pencil-1-736x414.jpg
15:14:34     From  Noah Schenk : ✏️
15:14:49     From  leonardodilena : is that the only lab time this week?
15:14:52     From  Joey Brewington : Joey BRewington
15:14:55     From  Denzel Clark : Denzel Clark
15:14:56     From  MaxwellRodriguez : Max Rodrigues
15:14:56     From  Ismail Siddeeq : Ismail 
15:14:56     From  Colin Myers : Colin Myers
15:14:56     From  Sarah Robertson : Sarah
15:14:56     From  Marcus Webster : marcus
15:14:56     From  Alison Dwyer : Alison Dwyer
15:14:56     From  Chase Rivas : Chase Rivas
15:14:56     From  dgerman@iu.edu : Adrian German
15:14:56     From  Blake Hoekstra : Blake Hoekstra
15:14:56     From  Hallie Schmucker : Hallie
15:14:56     From  Garrett Bess : Garrett Bess
15:14:56     From  Ben Smith : Ben Smith
15:14:56     From  Tate Clendening : tate clendening
15:14:56     From  Jiahao Wu : Jiahao WU
15:14:56     From  Riley Campbell : Riley Campbell
15:14:57     From  Noah Schenk : Noah Schenk
15:14:57     From  Christopher Hill : Christopher Hill
15:14:57     From  colin : Colin Hans
15:14:57     From  Dilyar Muradil : Dilyar
15:14:57     From  Corey Hayne : Corey Hayne
15:14:57     From  Jarod Tonte : Jarod Tonte
15:14:57     From  James Evans : James Evans 
15:14:57     From  Joey Brewington : Brewington
15:14:57     From  Dustin Bucher : Dustin Bucher
15:14:57     From  Robert Kellems : Robert Kellems
15:14:57     From  Dion Daggy : Dion Daggy
15:14:57     From  Ben Waybright : Ben Waybright
15:14:57     From  Danny Kim : Danny Kim
15:14:57     From  Jill Grant : Jill Grant
15:14:57     From  Denys Moroz : denys
15:14:57     From  Daniel Ehrmann : Daniel Ehrmann
15:14:58     From  Destinee Fannin : Destinee Fannin
15:14:58     From  Tyler Keith : Tyler Keith
15:14:58     From  Daniel Skora : Daniel Skora
15:14:58     From  Alex Judd : Alex Judd
15:14:58     From  Marisa Patel Oconnor : Marisa
15:14:58     From  Abeer Zaib : Abeer Zaib
15:14:58     From  David Kohler : David Kohler
15:14:58     From  Austin Rettig : Austin Rettig
15:14:58     From  Meg Spence : Meg Spence
15:14:59     From  manas : manas
15:14:59     From  Dhruv Purohit : Dhruv Purohit
15:14:59     From  Austin Parkes : Austin Parkes
15:14:59     From  Anna Kim : Anna Kim
15:14:59     From  Noah Pujol : Noah Pujol
15:14:59     From  Tate McKenney : Tate McKenney
15:14:59     From  maxmolt : Max Molt
15:14:59     From  Thanh Thanh : Thanh Thanh Bui
15:14:59     From  Harumi Shimano : Harumi Shimano
15:14:59     From  Zach Ligue : Zach
15:14:59     From  Nicholas MacKinnon : Nicholas MacKinnon
15:14:59     From  Derly Jordan : Derly Jordan
15:14:59     From  Ploy Unchit : Ploy Unchit
15:14:59     From  Austin Slattery : Austin S.
15:14:59     From  Michael Peterson : Michael Peterson
15:14:59     From  Taylor Yang : Taylor Yang
15:15:00     From  agucwa@iu.edu : Amanda Gucwa
15:15:00     From  Trixie Abbott : Trixie Abbott
15:15:00     From  JD Anderson : JD Anderson 
15:15:00     From  Cara Merkel : Cara Merkel
15:15:00     From  Ethan Sanders : Ethan Sanders
15:15:00     From  MaxwellRodriguez : Max Rodriguez
15:15:00     From  Danny Reidinger : Danny Reidinger
15:15:00     From  pazalva@iu.edu : Paola Alvarez
15:15:00     From  Ryan McDonough : Ryan McDonough
15:15:00     From  Jack Kelly : Jack Kelly
15:15:01     From  Dayne Waldal : Dayne Waldal
15:15:01     From  Daniel Byun : Daniel Byun
15:15:01     From  Fairman Risch : Fairman Risch
15:15:01     From  Oscar Pullam : Oscar Pullam
15:15:01     From  Jackie Drs  : Jackie Drs
15:15:01     From  Xiaoran Cheng : xiaoran cheng
15:15:01     From  joslack@iu.edu : Jonah
15:15:01     From  Nicholas Stiner : Nicholas stiner
15:15:02     From  Lizzy Gabel : Lizzy Gabel
15:15:02     From  Colleen Lee : Colleen Lee
15:15:02     From  Luca Dixie : luca dixie
15:15:02     From  Eric Weeks : Eric Weeks
15:15:02     From  Luke Williams : Luke
15:15:02     From  Alexander Ausbrook : Alex Ausbrook
15:15:02     From  Drew Beasley : Drew Beasley
15:15:03     From  leonardodilena : Leonardo Di Lena
15:15:03     From  Tareq Hanania : Tareq Hanania
15:15:03     From  cchaput@iu.edu : Cassandra Chaput
15:15:03     From  Dillon Standifer : Dillon Standifer
15:15:03     From  joslack@iu.edu : Jonah Slack
15:15:03     From  Brandon Gorz : Brandon Gorz
15:15:04     From  Caiden Paauwe : Caiden Paauwe
15:15:04     From  tybmille@iu.edu : Tyson Miller
15:15:05     From  Palak Sheth : Palak Sheth
15:15:05     From  Michael Liu : Michael Liu
15:15:06     From  Katy Dickman : Katy Dickman
15:15:06     From  Sheng Hu : Sheng Hu
15:15:06     From  Yunping Wang : Yunping Wang
15:15:06     From  Yichen Gao : Yichen gao
15:15:06     From  Sean Mccleary : sean
15:15:07     From  Austin Bond : Austin Bond
15:15:07     From  LukaszRafalski : Lukasz rafalski
15:15:07     From  kevinrivera : Kevin Rivera
15:15:07     From  Caden Kline : Caden Kline
15:15:07     From  aiwalz@iu.edu : Aidan Walz
15:15:07     From  Spencer Flora : Spencer Flora
15:15:07     From  amsegyde : Augie Segyde
15:15:08     From  Nicholas Cooksey : Nicholas Cooksey
15:15:25     From  dgerman@iu.edu : 812 325 0985
15:15:28     From  Zachary Orth : My name is Zachary Orth
15:15:28     From  leonardodilena : is there another time for lab?
15:15:50     From  Kenna Edwards : Kenna Edwards
15:15:55     From  David Kohler : Yes there is one tomorrow too I think
15:16:16     From  Lizzy Gabel : one Wednesday, two Thursday, and one or two Friday, I believe
15:16:25     From  Blake Hoekstra : there are 4 labs or so (not on the page rn) if you check your schedule on one.iu.edu you can see what lab you're in
15:16:56     From  Lizzy Gabel : all of the labs and their instructors are now on the website under "What's new"
15:17:18     From  Chase Rivas : What zoom links do we use for our labs?
15:17:32     From  Jill Grant : my lab time shows up for me on Student Center in one.iu
15:17:32     From  Jack Kelly : same one 
15:17:33     From  Sarah Robertson : The same zoom link as the lecture for right now
15:20:01     From  Leonardo Di Lena : is intelliJ free?
15:20:10     From  David Kohler : Community Edition is
15:20:16     From  Trixie Abbott : Will there be office hours?
15:20:54     From  Tate McKenney : So each lab has two instructors
15:21:29     From  Katy Dickman : On the questions for lecture 1, where in the textbook do we need to read to answer the questions?
15:22:39     From  David Kohler : If you don't know them I would use Google, it would take you years to find it in the book!!!
15:22:47     From  Austin Parkes : answers are at the end of the chapter
15:23:03     From  David Kohler : Then I would use that because I didn't know that ^^^
15:23:24     From  Abeer Zaib : I am unsure what the homework is.
15:24:07     From  Lizzy Gabel : we're talking about the attendance verification
15:24:17     From  Lizzy Gabel : you can see the questions under "What's Due" on the website
15:24:19     From  Blake Hoekstra : the self-check questions are spread throughout each page on each chapter, there's normally like 2-3 on each page from what I saw on chapter one.
15:25:07     From  Caden Kline : They are due on friday at canvas but the questions are under what is due
15:25:37     From  Tareq Hanania : yes
15:29:11     From  Leonardo Di Lena : do we submit the attendance questions in canvas
15:29:19     From  David Kohler : Yes
15:30:59     From  Daniel Ehrmann : If we have already submitted the lecture 1 response but would like to change answers are we allowed to resubmit it before the due date?
15:31:03     From  joslack@iu.edu : kfc crocs
15:31:04     From  Daniel Skora : mmmm KFC
15:31:11     From  kevinrivera : lol
15:31:29     From  David Kohler : Yes Daniel Ehrmann
15:31:47     From  MaxwellRodriguez : Could’ve been worse
15:31:47     From  Alp Yurttutan : will the textbook help us solve the second attendance questions
15:31:49     From  JD Anderson : I submitted mine as a word doc should I re-submit it?
15:31:57     From  Daniel Ehrmann : ok, thank you
15:32:14     From  David Kohler : Alp it should help but he said he will explain it today
15:32:30     From  David Kohler : JD it doesn't matter it will still be graded the same!
15:32:43     From  Alp Yurttutan : thanks david
15:33:20     From  JD Anderson : ok thanks David
15:33:28     From  David Kohler : 👍
15:35:00     From  Garrett Bess : that's a long password professor
15:35:16     From  Joey Brewington : passwordpassword123
15:35:22     From  David Kohler : ^^^
15:35:26     From  Garrett Bess : javajavajavajavajavajava101
15:35:39     From  Blake Hoekstra : bruh what the heck, don't put my password in public chat ._.
15:35:45     From  colin : java>python212
15:35:52     From  David Kohler : Facts
15:36:23     From  Garrett Bess : scratch > anything
15:37:40     From  Tareq Hanania : me
15:37:44     From  Sean Mccleary : I dont
15:37:45     From  Leonardo Di Lena : i do not know
15:37:45     From  Tate McKenney : Sidle?
15:37:45     From  Noah Pujol : me
15:37:46     From  maxmolt : me
15:37:46     From  Dustin Bucher : me
15:37:46     From  Tareq Hanania : idk what is 
15:37:48     From  Katy Dickman : I don't know
15:37:49     From  Alexander Ausbrook : me
15:37:49     From  Garrett Bess : idk
15:37:50     From  Dilyar Muradil : I don't either
15:37:53     From  LukaszRafalski : me
15:37:54     From  Alex Chen : idk
15:38:02     From  Dillon Standifer : me
15:38:18     From  Abeer Zaib : Mac
15:38:23     From  Sean Mccleary : windows
15:40:28     From  Tyler Keith : Or you can get an SSH client from the Mac App Store
15:40:33     From  Jack Kelly  to  dgerman@iu.edu(Privately) : mine does not work, I was following along. I am still on the waitlist for the class still and not in the canvas class due to that, so I assume it is related to that?
15:40:42     From  Lizzy Gabel : so are we all required to get putty?
15:41:03     From  kevinrivera : Does that work Tyler?
15:41:17     From  Jack Kelly  to  dgerman@iu.edu(Privately) : My silo login did not work, I could connect to the login on SSH port 22 on hostname silo.cs.indiana.edu but the login was denied
15:41:49     From  Tyler Keith : I use Cyberduck it has a good GUI, regular SSH connection via Terminal on Mac works too
15:42:04     From  Sam Shi : wait is PuTTy the same as cyberduck
15:42:14     From  Tyler Keith : Same function
15:42:18     From  kevinrivera : cyberduck is nice
15:42:26     From  Sam Shi : ah ok thanks
15:42:29     From  Zachary Orth : For windows, I believe we used SCH in Info 101
15:42:32     From  Zachary Orth : for silo, that is
15:42:34     From  kevinrivera : I need to re download that
15:42:53     From  Jack Kelly : mobaXterm is nice it has a file browser and ssh terminal
15:42:56     From  Tyler Keith : SCH is just a different type of connection protocol from SSH
15:43:11     From  Zachary Orth : I could be misremembering it then
15:43:27     From  Zachary Orth : There was a specific program we downloaded for windows that wasn't cyberduck
15:43:33     From  Lizzy Gabel : Sorry, so we need to have putty downloaded by lab tonight?
15:44:03     From  Lizzy Gabel : no, pc
15:44:28     From  Corey Hayne : Can we use cyberduck?
15:44:30     From  Trixie Abbott : What would those commands look like on Mac
15:44:44     From  kevinrivera : ill be using Cyberduck I have mac
15:45:13     From  Caden Kline : you can use ssh in powershell now
15:45:20     From  Steve Komperda : On Mac: ssh user@ip
15:45:20     From  Daniel Skora : what does WinSCP do
15:45:35     From  Caden Kline : It migh require turning in on in features
15:45:36     From  Dhruv Purohit : Do we need to download Putty if we already have an IDE?
15:46:51     From  James Evans : emacs the best 
15:47:17     From  Aidan Walz : vim>emacs
15:47:19     From  joslack@iu.edu : vim is fine too
15:47:21     From  Tyler Keith : ^
15:47:32     From  Caden Kline : nano >vim>vi>pico>emacs
15:47:47     From  Sean Mccleary : does anyone want to start a groupme?
15:47:49     From  David Kohler : If you run windows 10, just use powershell. Its the same as the mac and you don't need to download putty
15:47:58     From  Leonardo Di Lena : im down sean
15:48:03     From  Sam Shi : im down too
15:48:03     From  Dillon Standifer : ^
15:48:06     From  Leonardo Di Lena : i need help with this
15:48:11     From  Andrew Fritz : ^
15:48:12     From  Jill Grant : ^
15:48:13     From  Ben Waybright : ^
15:48:17     From  kevinrivera : Sean yes
15:48:17     From  Ethan Sanders : ^
15:48:18     From  David Kohler : Just open it then do 'ssh YourUserNameHere@silo.cs.indiana.edu
15:48:25     From  David Kohler : Then follow the same stuff he showed us
15:48:26     From  Caden Kline : I guess but I would prefer a discord
15:48:30     From  colin : yes to the groupme
15:48:31     From  Danny Reidinger : ^
15:48:31     From  Spencer Flora : ^
15:48:33     From  David Kohler : Discord is <3
15:48:39     From  Tyler Keith : Discord > GroupMe
15:48:42     From  Zach Ligue : discord or groupme is fine
15:48:43     From  Kenna Edwards : ^
15:48:46     From  Leonardo Di Lena : either is fine
15:48:48     From  Danny Reidinger : discord is good
15:48:51     From  kevinrivera : groupme
15:48:54     From  Caden Kline : discord has code blocks 
15:48:58     From  Daniel Skora : group me
15:49:03     From  Lizzy Gabel : I defo prefer discord
15:49:03     From  David Kohler : Discord
15:49:03     From  Zachary Orth : same here
15:49:18     From  Spencer Flora : I am not in the textbook yet, what do I need to do for access? I know how to get to the login popup
15:49:21     From  Leonardo Di Lena : can someone make one and pm me please either disc or groupme
15:49:28     From  Kenna Edwards : Discord because we could get on an audio stream if we wanted to do a virtual study session
15:49:29     From  Sean Mccleary : send ur number if you want to be in a groupme
15:49:30     From  Joey Brewington : groupme
15:49:32     From  Zachary Orth : the textbook is on the website
15:49:33     From  Joey Brewington : definitely
15:49:34     From  Caiden Paauwe : discord
15:49:36     From  James Evans : Petition to live stream this class on twitch
15:49:48     From  colin : ^
15:49:48     From  David Kohler : I second that James
15:49:52     From  Joey Brewington : start with groupme and then use it to make a discord
15:49:54     From  Lizzy Gabel : 😂
15:50:00     From  Jack Kelly : make a change.org
15:50:07     From  Lizzy Gabel : that's valid
15:50:11     From  Jack Kelly : we need signs
15:50:13     From  MaxwellRodriguez : I need a groupme
15:50:16     From  Lizzy Gabel : so who are we PMing or numbers to?
15:50:22     From  Leonardo Di Lena : how do i pm on this
15:50:23     From  Jack Kelly : not it
15:50:24     From  LukaszRafalski : who’s making the groupie?
15:50:25     From  Alex Chen : just send a join link in here
15:50:29     From  Jill Grant : ^
15:50:29     From  Corey Hayne : cant pm in this class
15:50:31     From  Jack Kelly : group me it
15:50:36     From  MaxwellRodriguez : Yes text a join link so easy
15:50:37     From  cchaput@iu.edu : send the link for the chat
15:50:37     From  Jack Kelly : send a link
15:50:39     From  Dustin Bucher : Im pro discord
15:50:41     From  Tyler Keith : It was Sean’s idea
15:50:47     From  Danny Reidinger : link would be good
15:50:47     From  cchaput@iu.edu : Just pick and send it
15:50:59     From  Corey Hayne : Groupme > Discord
15:51:03     From  kevinrivera : ^
15:51:04     From  Leonardo Di Lena : yo sean j drop your #
15:51:13     From  Lizzy Gabel : sean j, don't do that
15:51:20     From  Lizzy Gabel : you'll get 130 messages
15:51:21     From  Sean Mccleary : https://groupme.com/join_group/61752615/I1Xg9Bm8
15:51:23     From  Sam Shi : not tryna send my number to everyone
15:51:27     From  Dustin Bucher : https://discord.gg/dnftYj
15:52:54     From  Zachary Orth : I can't get the book either
15:59:13     From  Blake Hoekstra : You're just using Putty instead of an IDE right? Do we have to use Putty or do we have the option to use IntelliJ as well?
15:59:51     From  David Kohler : I think putty would be temporary until an IDE is installed
16:14:36     From  Abeer Zaib : We are concaatonint here
16:14:40     From  Abeer Zaib : concatenating*
16:18:05     From  Vijay Adhithya : I like the mask
16:18:15     From  Daivik Sadashiva Shetty : zhenk u
16:18:20     From  David Kohler : The mask is <3
16:18:28     From  Tate McKenney : 0.999... = 1
16:22:40     From  Abeer Zaib : There is a rounding error because certain numbers can’t be exactly represented in binary. Use BigDecimal to fix it.
16:24:21     From  Zachary Orth : Any news on Assignment 1???
16:24:23     From  Leonardo Di Lena : when are office hours
16:24:54     From  Zachary Orth : @ Leonaredo Di Lena. You can schedule office hours anytime through his website
16:25:21     From  David Kohler : new DecimalFormat("#.#").format(double); works too
16:27:24     From  Steve Komperda : How do you log out of SIlo
16:27:44     From  Lizzy Gabel : Can we go? I have another class...
16:28:05     From  Nicholas Stiner : oh my
16:28:20     From  Blake Hoekstra : F
16:28:21     From  James Evans : I'm buying a casket for my manz
16:28:22     From  Dion Daggy : what on earth
16:28:24     From  Nicholas Stiner : ^
16:28:25     From  Daniel Skora : Noooooo
16:28:27     From  Daniel Skora : L
16:28:35     From  Vijay Adhithya : F
16:28:42     From  Daivik Sadashiva Shetty : ;(
16:28:52     From  Daivik Sadashiva Shetty : it is what is is
16:28:56     From  Ryan Head : that's why he wore the mask
16:29:07     From  Daivik Sadashiva Shetty : Try your luck lads she seems pretty tight 
16:29:32     From  James Evans : I respect the courage 

--