Skip to content

Instantly share code, notes, and snippets.

"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

Regions hierarchy

Endpoints

List of countries

r/countries

"countries": [
@bgun
bgun / gist:c7447ab0906517221b6b
Last active August 25, 2022 16:13
Practicing with IntelliJ and Git

Practicing with IntelliJ and Git

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.

Create a new IntelliJ project.

@bgun
bgun / robot.js
Created December 5, 2012 05:21
Wallflower
// 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) {
@bgun
bgun / robot.js
Created December 4, 2012 21:13
Life Model Decoy
// 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) {