r/countries
"countries": [
"guests": [{ | |
"name": "Gerald L. Coleman", | |
"guest_id": "gerald_l_coleman", | |
"bio": "" | |
}, { | |
"name": "Anna Grace Carpenter", | |
"guest_id": "anna_grace_carpenter", | |
"bio": "" | |
}, { | |
"name": "Mark McCray", |
Verifying my Blockstack ID is secured with the address 1GHxEYSA3gPktfuvm4ufZVBvPqys4oQMJf https://explorer.blockstack.org/address/1GHxEYSA3gPktfuvm4ufZVBvPqys4oQMJf |
["4WD, ATV & Off-Road Tours","Adrenaline & Extreme Tours","Afghan","Afghani","African","Air Tours","Airport Lounges","Airport Shops","Albanian","American","Amusement & Theme Parks","Ancient Ruins","Anhui","Antique Shops","Aquariums","Arab Baths","Archaeology Tours","Architectural Buildings","Arenas & Stadiums","Argentinean","Armenian","Art Galleries","Art Museums","Asian","Asian fusion","Australian","Austrian","Auto Racing Tracks","Bagels","Bahamian","Bakery","Ballets","Balloon Rides","Balti","Bangladeshi","Bar","Bar, Club & Pub Tours","Barbecue","Bars & Clubs","Basque","Battlefields","Beach & Pool Clubs","Beaches","Bed and Breakfast","Beer Tastings & Tours","Beijing Specialties","Belgian","Bike Tours","Biking Trails","Bistro","Blues Bars","Boat Rentals","Boat Tours","Bodies of Water","Bowling Alleys","Brasserie","Brazilian","Brew Pub","Breweries","Bridges","British","Burmese","Bus Services","Bus Tours","Cabarets","Café","Caf��","Cajun & Creole","Californian","Cambodian","Canadian","Cantonese","Canyoning & Ra |
For the things we have to learn before we can do them,
we learn by doing them. ― Aristotle
This exercise is a straightforward recipe for starting a new IntelliJ project, adding a code file, and marrying a local Git repository to a remote GitHub repository. Even if you are comfortable with your Git workflow, you should go through this and understand what is happening - and more specifically, where on your computer's hard drive and on GitHub it is happening.
Repeat this exercise a few times, until you're comfortable. You don't have to memorize each command - that's what cheat sheets are for! - but rather, focus on understanding their relationships to the files on your computer, your development environment (IntelliJ), and GitHub.
// Wallflower - a FightCodeGame.com robot by bgun | |
var Robot = function(robot) { | |
this.wallHugging = false; | |
this.gottaMove = false; | |
}; | |
Robot.prototype.onIdle = function(ev) { | |
var robot = ev.robot; | |
if(!this.wallHugging) { |
// Life Model Decoy - a FightCodeGame.com robot by bgun | |
function Robot(robot) { | |
this.myId = robot.id; | |
this.cloneId = 0; | |
this.hitCount = 0; | |
this.justCloned = false; | |
} | |
Robot.prototype.onIdle = function(ev) { |