This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"name": "Its in the Book", | |
"slug": "monday-dcdc", | |
"day": 1, | |
"time": "19:30", | |
"location": "DC DC Divine Center", | |
"updated": "2019-05-04 14:32:23", | |
"url": "http://greenbayaa.org/meetings.html", | |
"types": [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"name": "Its in the Book", | |
"slug": "monday-dcdc", | |
"day": 1, | |
"time": "19:30", | |
"location": "DC DC Divine Center", | |
"updated": "2019-05-04 14:32:23", | |
"url": "http://greenbayaa.org/meetings.html", | |
"types": [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
If you have a Lynda.com account, this video provides a lightweight overview of Git and GitHub. | |
- https://www.lynda.com/GitHub-tutorials/GitHub-Web-Designers/162276-2.html | |
Don't have a Lynda account? You can use your Brown County Library card to get free access! | |
- https://www.lynda.com/portal/sip?org=browncountylibrary.org | |
The (Optional) steps are helpful for Windows users who prefer a Unix style working environment. Note that Git is not a prerequestite for Cmder. I beleive Cmder will work just fine without installing Git First. I installed Cmder after installing Git so I cannot confirm. | |
Command Line Summary: | |
- Download and install Git https://git-scm.com/downloads |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class GrowingUp | |
{ | |
public static void main (String args[]) | |
{ | |
Infant newBorn = new Infant("Conrad"); | |
System.out.println("\nHere is what an Infant can do:"); | |
newBorn.crawl(); | |
Child aChild = new Child("Bryce"); |
NewerOlder