Skip to content

Instantly share code, notes, and snippets.

View Tseberechts's full-sized avatar

Thomas Seberechts Tseberechts

View GitHub Profile
This file has been truncated, but you can view the full file.
error Failed to build iOS project. We ran "xcodebuild" command but it exited with error code 65. To debug build logs further, consider building your app with Xcode.app, by opening reactnative_brugge.xcworkspace.
Command line invocation:
/Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild -workspace reactnative_brugge.xcworkspace -configuration Debug -scheme reactnative_brugge -destination id=320AB6A4-C7DC-400E-A087-FD7E3D9BF608
User defaults from command line:
IDEPackageSupportUseBuiltinSCM = YES
Resolve Package Graph
Resolved source packages:
@Tseberechts
Tseberechts / index.js
Created February 2, 2021 09:31
robots vs aliens ES6
const canvas = document.getElementById('canvas1');
const ctx = canvas.getContext('2d');
canvas.width = 900;
canvas.height = 600;
// global variables
const cellSize = 100;
const cellGap = 3;
const gameGrid = [];
const defenders = [];