diff --git a/README.md b/README.md new file mode 100644 index 0000000..b7a8d82 --- /dev/null +++ b/README.md @@ -0,0 +1,40 @@ +# WIZARD AMIGOS + +:turtle: Open source JavaScript e-learning for cyber nomads :sparkles: :watermelon: + +:ramen: This repo hosting is a landing page for our e-learning app for JS nomads :palm_tree: + + +### 24/7 Mentoring & Support Channel +> [Discord chat](https://discord.gg/8FzZPHkp44) +### Info +> **Page:** https://wizardamigos.com +> **App:** https://app.wizardamigos.com (130 learning videos for beginners) +> * from (lesson 1): ...what's a browser? ...how to make an email? +> * over (< lesson 105): ...how does javascript work? +> * to (> lesson 105): how to build and deploy your first web & iPhone apps +> **More:** https://github.com/wizardamigos/app/blob/master/skillTree.md +> Ask in the support channel how & where to start learning :-) +### Facebook Community Group +> [Facebook Community](https://www.facebook.com/groups/369246343421803) +### Meetups +> https://meetup.com/wizardamigos +> We have two regular meetups (one in berlin and one in taipei) +> ...but we have occasional meetups in slovenia and thailand +## About Us +We all try to work on becoming self employed and collaborate as partners and all this remote and with a lifestyle of traveling. + +## About Backends +The only thing that a backend is supposed to do (if clients cant do it without) is to connect clients to each other, so that they can communicate and exchange data. Our idea is, that apps connect p2p without servers... like as if desktop apps would connect directly to each other... In rare cases where this needs servers to make it work we will build them, but usually it works without. + +## About Frontends +* Frontend is the new FullStack. +* A traditional backend can be built into the client like https://github.com/mafintosh/browser-server +* not every app needs servers +* when app need servers, they might be existing ones (e.g. facebook, twitter, github, google drive, ...) +* sometimes you need generic ones, like databases or real time connection across different users (e.g. firebase, pusher, pubnub) +* sometimes you have clients that already have backends (e.g. written in PHP, Java, Ruby, Python, ....) that you can connect to via API +* Our way of thinking about apps is: + 1. you build an `index.html` which is like a traditional desktop app + 2. you start it by opning the `index.html` in your browser + 3. once the `index.html` app started, it might connect to one or more "backend servers" via API and send or receive data diff --git a/bundle.js b/bundle.js new file mode 100644 index 0000000..91ba414 --- /dev/null +++ b/bundle.js @@ -0,0 +1,23190 @@ +(function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i 2) { + var lastSlashIndex = res.lastIndexOf('/'); + if (lastSlashIndex !== res.length - 1) { + if (lastSlashIndex === -1) { + res = ''; + lastSegmentLength = 0; + } else { + res = res.slice(0, lastSlashIndex); + lastSegmentLength = res.length - 1 - res.lastIndexOf('/'); + } + lastSlash = i; + dots = 0; + continue; + } + } else if (res.length === 2 || res.length === 1) { + res = ''; + lastSegmentLength = 0; + lastSlash = i; + dots = 0; + continue; + } + } + if (allowAboveRoot) { + if (res.length > 0) + res += '/..'; + else + res = '..'; + lastSegmentLength = 2; + } + } else { + if (res.length > 0) + res += '/' + path.slice(lastSlash + 1, i); + else + res = path.slice(lastSlash + 1, i); + lastSegmentLength = i - lastSlash - 1; + } + lastSlash = i; + dots = 0; + } else if (code === 46 /*.*/ && dots !== -1) { + ++dots; + } else { + dots = -1; + } + } + return res; +} + +function _format(sep, pathObject) { + var dir = pathObject.dir || pathObject.root; + var base = pathObject.base || (pathObject.name || '') + (pathObject.ext || ''); + if (!dir) { + return base; + } + if (dir === pathObject.root) { + return dir + base; + } + return dir + sep + base; +} + +var posix = { + // path.resolve([from ...], to) + resolve: function resolve() { + var resolvedPath = ''; + var resolvedAbsolute = false; + var cwd; + + for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) { + var path; + if (i >= 0) + path = arguments[i]; + else { + if (cwd === undefined) + cwd = process.cwd(); + path = cwd; + } + + assertPath(path); + + // Skip empty entries + if (path.length === 0) { + continue; + } + + resolvedPath = path + '/' + resolvedPath; + resolvedAbsolute = path.charCodeAt(0) === 47 /*/*/; + } + + // At this point the path should be resolved to a full absolute path, but + // handle relative paths to be safe (might happen when process.cwd() fails) + + // Normalize the path + resolvedPath = normalizeStringPosix(resolvedPath, !resolvedAbsolute); + + if (resolvedAbsolute) { + if (resolvedPath.length > 0) + return '/' + resolvedPath; + else + return '/'; + } else if (resolvedPath.length > 0) { + return resolvedPath; + } else { + return '.'; + } + }, + + normalize: function normalize(path) { + assertPath(path); + + if (path.length === 0) return '.'; + + var isAbsolute = path.charCodeAt(0) === 47 /*/*/; + var trailingSeparator = path.charCodeAt(path.length - 1) === 47 /*/*/; + + // Normalize the path + path = normalizeStringPosix(path, !isAbsolute); + + if (path.length === 0 && !isAbsolute) path = '.'; + if (path.length > 0 && trailingSeparator) path += '/'; + + if (isAbsolute) return '/' + path; + return path; + }, + + isAbsolute: function isAbsolute(path) { + assertPath(path); + return path.length > 0 && path.charCodeAt(0) === 47 /*/*/; + }, + + join: function join() { + if (arguments.length === 0) + return '.'; + var joined; + for (var i = 0; i < arguments.length; ++i) { + var arg = arguments[i]; + assertPath(arg); + if (arg.length > 0) { + if (joined === undefined) + joined = arg; + else + joined += '/' + arg; + } + } + if (joined === undefined) + return '.'; + return posix.normalize(joined); + }, + + relative: function relative(from, to) { + assertPath(from); + assertPath(to); + + if (from === to) return ''; + + from = posix.resolve(from); + to = posix.resolve(to); + + if (from === to) return ''; + + // Trim any leading backslashes + var fromStart = 1; + for (; fromStart < from.length; ++fromStart) { + if (from.charCodeAt(fromStart) !== 47 /*/*/) + break; + } + var fromEnd = from.length; + var fromLen = fromEnd - fromStart; + + // Trim any leading backslashes + var toStart = 1; + for (; toStart < to.length; ++toStart) { + if (to.charCodeAt(toStart) !== 47 /*/*/) + break; + } + var toEnd = to.length; + var toLen = toEnd - toStart; + + // Compare paths to find the longest common path from root + var length = fromLen < toLen ? fromLen : toLen; + var lastCommonSep = -1; + var i = 0; + for (; i <= length; ++i) { + if (i === length) { + if (toLen > length) { + if (to.charCodeAt(toStart + i) === 47 /*/*/) { + // We get here if `from` is the exact base path for `to`. + // For example: from='/foo/bar'; to='/foo/bar/baz' + return to.slice(toStart + i + 1); + } else if (i === 0) { + // We get here if `from` is the root + // For example: from='/'; to='/foo' + return to.slice(toStart + i); + } + } else if (fromLen > length) { + if (from.charCodeAt(fromStart + i) === 47 /*/*/) { + // We get here if `to` is the exact base path for `from`. + // For example: from='/foo/bar/baz'; to='/foo/bar' + lastCommonSep = i; + } else if (i === 0) { + // We get here if `to` is the root. + // For example: from='/foo'; to='/' + lastCommonSep = 0; + } + } + break; + } + var fromCode = from.charCodeAt(fromStart + i); + var toCode = to.charCodeAt(toStart + i); + if (fromCode !== toCode) + break; + else if (fromCode === 47 /*/*/) + lastCommonSep = i; + } + + var out = ''; + // Generate the relative path based on the path difference between `to` + // and `from` + for (i = fromStart + lastCommonSep + 1; i <= fromEnd; ++i) { + if (i === fromEnd || from.charCodeAt(i) === 47 /*/*/) { + if (out.length === 0) + out += '..'; + else + out += '/..'; + } + } + + // Lastly, append the rest of the destination (`to`) path that comes after + // the common path parts + if (out.length > 0) + return out + to.slice(toStart + lastCommonSep); + else { + toStart += lastCommonSep; + if (to.charCodeAt(toStart) === 47 /*/*/) + ++toStart; + return to.slice(toStart); + } + }, + + _makeLong: function _makeLong(path) { + return path; + }, + + dirname: function dirname(path) { + assertPath(path); + if (path.length === 0) return '.'; + var code = path.charCodeAt(0); + var hasRoot = code === 47 /*/*/; + var end = -1; + var matchedSlash = true; + for (var i = path.length - 1; i >= 1; --i) { + code = path.charCodeAt(i); + if (code === 47 /*/*/) { + if (!matchedSlash) { + end = i; + break; + } + } else { + // We saw the first non-path separator + matchedSlash = false; + } + } + + if (end === -1) return hasRoot ? '/' : '.'; + if (hasRoot && end === 1) return '//'; + return path.slice(0, end); + }, + + basename: function basename(path, ext) { + if (ext !== undefined && typeof ext !== 'string') throw new TypeError('"ext" argument must be a string'); + assertPath(path); + + var start = 0; + var end = -1; + var matchedSlash = true; + var i; + + if (ext !== undefined && ext.length > 0 && ext.length <= path.length) { + if (ext.length === path.length && ext === path) return ''; + var extIdx = ext.length - 1; + var firstNonSlashEnd = -1; + for (i = path.length - 1; i >= 0; --i) { + var code = path.charCodeAt(i); + if (code === 47 /*/*/) { + // If we reached a path separator that was not part of a set of path + // separators at the end of the string, stop now + if (!matchedSlash) { + start = i + 1; + break; + } + } else { + if (firstNonSlashEnd === -1) { + // We saw the first non-path separator, remember this index in case + // we need it if the extension ends up not matching + matchedSlash = false; + firstNonSlashEnd = i + 1; + } + if (extIdx >= 0) { + // Try to match the explicit extension + if (code === ext.charCodeAt(extIdx)) { + if (--extIdx === -1) { + // We matched the extension, so mark this as the end of our path + // component + end = i; + } + } else { + // Extension does not match, so our result is the entire path + // component + extIdx = -1; + end = firstNonSlashEnd; + } + } + } + } + + if (start === end) end = firstNonSlashEnd;else if (end === -1) end = path.length; + return path.slice(start, end); + } else { + for (i = path.length - 1; i >= 0; --i) { + if (path.charCodeAt(i) === 47 /*/*/) { + // If we reached a path separator that was not part of a set of path + // separators at the end of the string, stop now + if (!matchedSlash) { + start = i + 1; + break; + } + } else if (end === -1) { + // We saw the first non-path separator, mark this as the end of our + // path component + matchedSlash = false; + end = i + 1; + } + } + + if (end === -1) return ''; + return path.slice(start, end); + } + }, + + extname: function extname(path) { + assertPath(path); + var startDot = -1; + var startPart = 0; + var end = -1; + var matchedSlash = true; + // Track the state of characters (if any) we see before our first dot and + // after any path separator we find + var preDotState = 0; + for (var i = path.length - 1; i >= 0; --i) { + var code = path.charCodeAt(i); + if (code === 47 /*/*/) { + // If we reached a path separator that was not part of a set of path + // separators at the end of the string, stop now + if (!matchedSlash) { + startPart = i + 1; + break; + } + continue; + } + if (end === -1) { + // We saw the first non-path separator, mark this as the end of our + // extension + matchedSlash = false; + end = i + 1; + } + if (code === 46 /*.*/) { + // If this is our first dot, mark it as the start of our extension + if (startDot === -1) + startDot = i; + else if (preDotState !== 1) + preDotState = 1; + } else if (startDot !== -1) { + // We saw a non-dot and non-path separator before our dot, so we should + // have a good chance at having a non-empty extension + preDotState = -1; + } + } + + if (startDot === -1 || end === -1 || + // We saw a non-dot character immediately before the dot + preDotState === 0 || + // The (right-most) trimmed path component is exactly '..' + preDotState === 1 && startDot === end - 1 && startDot === startPart + 1) { + return ''; + } + return path.slice(startDot, end); + }, + + format: function format(pathObject) { + if (pathObject === null || typeof pathObject !== 'object') { + throw new TypeError('The "pathObject" argument must be of type Object. Received type ' + typeof pathObject); + } + return _format('/', pathObject); + }, + + parse: function parse(path) { + assertPath(path); + + var ret = { root: '', dir: '', base: '', ext: '', name: '' }; + if (path.length === 0) return ret; + var code = path.charCodeAt(0); + var isAbsolute = code === 47 /*/*/; + var start; + if (isAbsolute) { + ret.root = '/'; + start = 1; + } else { + start = 0; + } + var startDot = -1; + var startPart = 0; + var end = -1; + var matchedSlash = true; + var i = path.length - 1; + + // Track the state of characters (if any) we see before our first dot and + // after any path separator we find + var preDotState = 0; + + // Get non-dir info + for (; i >= start; --i) { + code = path.charCodeAt(i); + if (code === 47 /*/*/) { + // If we reached a path separator that was not part of a set of path + // separators at the end of the string, stop now + if (!matchedSlash) { + startPart = i + 1; + break; + } + continue; + } + if (end === -1) { + // We saw the first non-path separator, mark this as the end of our + // extension + matchedSlash = false; + end = i + 1; + } + if (code === 46 /*.*/) { + // If this is our first dot, mark it as the start of our extension + if (startDot === -1) startDot = i;else if (preDotState !== 1) preDotState = 1; + } else if (startDot !== -1) { + // We saw a non-dot and non-path separator before our dot, so we should + // have a good chance at having a non-empty extension + preDotState = -1; + } + } + + if (startDot === -1 || end === -1 || + // We saw a non-dot character immediately before the dot + preDotState === 0 || + // The (right-most) trimmed path component is exactly '..' + preDotState === 1 && startDot === end - 1 && startDot === startPart + 1) { + if (end !== -1) { + if (startPart === 0 && isAbsolute) ret.base = ret.name = path.slice(1, end);else ret.base = ret.name = path.slice(startPart, end); + } + } else { + if (startPart === 0 && isAbsolute) { + ret.name = path.slice(1, startDot); + ret.base = path.slice(1, end); + } else { + ret.name = path.slice(startPart, startDot); + ret.base = path.slice(startPart, end); + } + ret.ext = path.slice(startDot, end); + } + + if (startPart > 0) ret.dir = path.slice(0, startPart - 1);else if (isAbsolute) ret.dir = '/'; + + return ret; + }, + + sep: '/', + delimiter: ':', + win32: null, + posix: null +}; + +posix.posix = posix; + +module.exports = posix; + +}).call(this)}).call(this,require('_process')) +},{"_process":2}],2:[function(require,module,exports){ +// shim for using process in browser +var process = module.exports = {}; + +// cached from whatever global is present so that test runners that stub it +// don't break things. But we need to wrap it in a try catch in case it is +// wrapped in strict mode code which doesn't define any globals. It's inside a +// function because try/catches deoptimize in certain engines. + +var cachedSetTimeout; +var cachedClearTimeout; + +function defaultSetTimout() { + throw new Error('setTimeout has not been defined'); +} +function defaultClearTimeout () { + throw new Error('clearTimeout has not been defined'); +} +(function () { + try { + if (typeof setTimeout === 'function') { + cachedSetTimeout = setTimeout; + } else { + cachedSetTimeout = defaultSetTimout; + } + } catch (e) { + cachedSetTimeout = defaultSetTimout; + } + try { + if (typeof clearTimeout === 'function') { + cachedClearTimeout = clearTimeout; + } else { + cachedClearTimeout = defaultClearTimeout; + } + } catch (e) { + cachedClearTimeout = defaultClearTimeout; + } +} ()) +function runTimeout(fun) { + if (cachedSetTimeout === setTimeout) { + //normal enviroments in sane situations + return setTimeout(fun, 0); + } + // if setTimeout wasn't available but was latter defined + if ((cachedSetTimeout === defaultSetTimout || !cachedSetTimeout) && setTimeout) { + cachedSetTimeout = setTimeout; + return setTimeout(fun, 0); + } + try { + // when when somebody has screwed with setTimeout but no I.E. maddness + return cachedSetTimeout(fun, 0); + } catch(e){ + try { + // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally + return cachedSetTimeout.call(null, fun, 0); + } catch(e){ + // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error + return cachedSetTimeout.call(this, fun, 0); + } + } + + +} +function runClearTimeout(marker) { + if (cachedClearTimeout === clearTimeout) { + //normal enviroments in sane situations + return clearTimeout(marker); + } + // if clearTimeout wasn't available but was latter defined + if ((cachedClearTimeout === defaultClearTimeout || !cachedClearTimeout) && clearTimeout) { + cachedClearTimeout = clearTimeout; + return clearTimeout(marker); + } + try { + // when when somebody has screwed with setTimeout but no I.E. maddness + return cachedClearTimeout(marker); + } catch (e){ + try { + // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally + return cachedClearTimeout.call(null, marker); + } catch (e){ + // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error. + // Some versions of I.E. have different rules for clearTimeout vs setTimeout + return cachedClearTimeout.call(this, marker); + } + } + + + +} +var queue = []; +var draining = false; +var currentQueue; +var queueIndex = -1; + +function cleanUpNextTick() { + if (!draining || !currentQueue) { + return; + } + draining = false; + if (currentQueue.length) { + queue = currentQueue.concat(queue); + } else { + queueIndex = -1; + } + if (queue.length) { + drainQueue(); + } +} + +function drainQueue() { + if (draining) { + return; + } + var timeout = runTimeout(cleanUpNextTick); + draining = true; + + var len = queue.length; + while(len) { + currentQueue = queue; + queue = []; + while (++queueIndex < len) { + if (currentQueue) { + currentQueue[queueIndex].run(); + } + } + queueIndex = -1; + len = queue.length; + } + currentQueue = null; + draining = false; + runClearTimeout(timeout); +} + +process.nextTick = function (fun) { + var args = new Array(arguments.length - 1); + if (arguments.length > 1) { + for (var i = 1; i < arguments.length; i++) { + args[i - 1] = arguments[i]; + } + } + queue.push(new Item(fun, args)); + if (queue.length === 1 && !draining) { + runTimeout(drainQueue); + } +}; + +// v8 likes predictible objects +function Item(fun, array) { + this.fun = fun; + this.array = array; +} +Item.prototype.run = function () { + this.fun.apply(null, this.array); +}; +process.title = 'browser'; +process.browser = true; +process.env = {}; +process.argv = []; +process.version = ''; // empty string to avoid regexp issues +process.versions = {}; + +function noop() {} + +process.on = noop; +process.addListener = noop; +process.once = noop; +process.off = noop; +process.removeListener = noop; +process.removeAllListeners = noop; +process.emit = noop; +process.prependListener = noop; +process.prependOnceListener = noop; + +process.listeners = function (name) { return [] } + +process.binding = function (name) { + throw new Error('process.binding is not supported'); +}; + +process.cwd = function () { return '/' }; +process.chdir = function (dir) { + throw new Error('process.chdir is not supported'); +}; +process.umask = function() { return 0; }; + +},{}],3:[function(require,module,exports){ +module.exports = require('../../../src/node_modules/theme/dark-theme') +},{"../../../src/node_modules/theme/dark-theme":19}],4:[function(require,module,exports){ +module.exports = require('../../../src/node_modules/theme/lite-theme') +},{"../../../src/node_modules/theme/lite-theme":20}],5:[function(require,module,exports){ +(function (process,__filename,__dirname){(function (){ +const desktop = require('..') +const light_theme = require('theme/lite-theme') +const dark_theme = require('theme/dark-theme') +/****************************************************************************** + INITIALIZE PAGE +******************************************************************************/ +// ---------------------------------------- +// MODULE STATE & ID +var count = 0 +const [cwd, dir] = [process.cwd(), __filename].map(x => new URL(x, 'file://').href) +const ID = dir.slice(cwd.length) +const STATE = { ids: {}, net: {} } // all state of component module +// ---------------------------------------- +let current_theme = light_theme +const sheet = new CSSStyleSheet() +sheet.replaceSync(get_theme(current_theme)) +// ---------------------------------------- +config().then(() => boot({ themes: { light_theme, dark_theme } })) +/****************************************************************************** + CSS & HTML Defaults +******************************************************************************/ +async function config () { + const path = path => new URL(`../src/node_modules/${path}`, `file://${__dirname}`).href.slice(8) + + const html = document.documentElement + const meta = document.createElement('meta') + const favicon = document.createElement('link') + html.setAttribute('lang', 'en') + favicon.setAttribute('rel', 'icon') + favicon.setAttribute('type', 'image/png') + favicon.setAttribute('href', path('theme/assets/images/logo.png')) + meta.setAttribute('name', 'viewport') + meta.setAttribute('content', 'width=device-width,initial-scale=1.0') + const fonts = new CSSStyleSheet() + // @TODO: use font api and cache to avoid re-downloading the font data every time + const font1_url = path('theme/assets/fonts/Silkscreen-Regular.ttf') + const font2_url = path('theme/assets/fonts/Silkscreen-Bold.ttf') + fonts.replaceSync(` + /* latin-ext */ + @font-face { + font-family: 'Silkscreen'; + font-style: normal; + font-weight: 400; + font-display: swap; + src: url(${font1_url}) format('truetype'); + unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; + } + /* latin */ + @font-face { + font-family: 'Silkscreen'; + font-style: normal; + font-weight: 400; + font-display: swap; + src: url(${font1_url}) format('truetype'); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; + } + /* latin-ext */ + @font-face { + font-family: 'Silkscreen'; + font-style: normal; + font-weight: 700; + font-display: swap; + src: url(${font2_url}) format('truetype'); + unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; + } + /* latin */ + @font-face { + font-family: 'Silkscreen'; + font-style: normal; + font-weight: 700; + font-display: swap; + src: url(${font2_url}) format('truetype'); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; + } + `) + const sheet = new CSSStyleSheet() + sheet.replaceSync(`html, body { padding:0px; margin: 0px; }`) + document.adoptedStyleSheets = [fonts, sheet] + document.head.append(meta, favicon) + await document.fonts.ready // @TODO: investigate why there is a FOUC +} +/****************************************************************************** + PAGE BOOT +******************************************************************************/ +async function boot (opts) { + // ---------------------------------------- + // ID + JSON STATE + // ---------------------------------------- + const id = `${ID}:${count++}` // assigns their own name + const status = {} + const state = STATE.ids[id] = { id, status, wait: {}, net: {}, aka: {} } // all state of component instance + const cache = resources({}) + // ---------------------------------------- + // OPTS + // ---------------------------------------- + const { page = 'TIMELINE', theme = 'dark_theme' } = opts + const { light_theme, dark_theme } = opts.themes + const themes = { light_theme, dark_theme } + // ---------------------------------------- + // TEMPLATE + // ---------------------------------------- + const el = document.body + const shopts = { mode: 'closed' } + const shadow = el.attachShadow(shopts) + shadow.adoptedStyleSheets = [sheet] + // ---------------------------------------- + // ELEMENTS + // ---------------------------------------- + { // desktop + const on = { 'theme_change': on_theme } + const protocol = use_protocol('desktop')({ state, on }) + const opts = { page, theme, themes } + const element = await desktop(opts, protocol) + shadow.append(element) + } + // ---------------------------------------- + // INIT + // ---------------------------------------- + + return + + function on_theme (message) { + ;current_theme = current_theme === light_theme ? dark_theme : light_theme + sheet.replaceSync(get_theme(current_theme)) + } +} +function get_theme (opts) { + return ` + :host { + --bg_color: ${opts.bg_color}; + --bg_color_2: ${opts.bg_color_2}; + --bg_color_3: ${opts.bg_color_3}; + --alt_color: ${opts.alt_color}; + --dark: #000; + --light:#fff; + --ac-1: ${opts.ac_1}; + --ac-2: ${opts.ac_2}; + --ac-3: ${opts.ac_3}; + --primary_color: ${opts.primary_color}; + --highlight_color: ${opts.highlight_color}; + --img_robot_3: url(${opts.img_src.img_robot_3}); + --img_robot_2: url(${opts.img_src.img_robot_2}); + }` +} +// ---------------------------------------------------------------------------- +function shadowfy (props = {}, sheets = []) { + return element => { + const el = Object.assign(document.createElement('div'), { ...props }) + const sh = el.attachShadow(shopts) + sh.adoptedStyleSheets = sheets + sh.append(element) + return el + } +} +function use_protocol (petname) { + return ({ protocol, state, on = { } }) => { + if (petname in state.aka) throw new Error('petname already initialized') + const { id } = state + const invalid = on[''] || (message => console.error('invalid type', message)) + if (protocol) return handshake(protocol(Object.assign(listen, { id }))) + else return handshake + // ---------------------------------------- + // @TODO: how to disconnect channel + // ---------------------------------------- + function handshake (send) { + state.aka[petname] = send.id + const channel = state.net[send.id] = { petname, mid: 0, send, on } + return protocol ? channel : Object.assign(listen, { id }) + } + function listen (message) { + const [from] = message.head + const by = state.aka[petname] + if (from !== by) return invalid(message) // @TODO: maybe forward + console.log(`[${id}]:${petname}>`, message) + const { on } = state.net[by] + const action = on[message.type] || invalid + action(message) + } + } +} +// ---------------------------------------------------------------------------- +function resources (pool) { + var num = 0 + return factory => { + const prefix = num++ + const get = name => { + const id = prefix + name + if (pool[id]) return pool[id] + const type = factory[name] + return pool[id] = type() + } + return Object.assign(get, factory) + } +} +}).call(this)}).call(this,require('_process'),"/page/page.js","/page") +},{"..":6,"_process":2,"theme/dark-theme":3,"theme/lite-theme":4}],6:[function(require,module,exports){ +(function (process,__filename){(function (){ +const timeline_page = require('timeline-page') +const sparkle_effect = require('sparkle-effect') +/****************************************************************************** + DESKTOP COMPONENT +******************************************************************************/ +// ---------------------------------------- +// MODULE STATE & ID +var count = 0 +const [cwd, dir] = [process.cwd(), __filename].map(x => new URL(x, 'file://').href) +const ID = dir.slice(cwd.length) +const STATE = { ids: {}, net: {} } // all state of component module +// ---------------------------------------- +const sheet = new CSSStyleSheet() +sheet.replaceSync(get_theme()) +const default_opts = { page: 'TIMELINE' } +const shopts = { mode: 'closed' } +// ---------------------------------------- +module.exports = desktop +// ---------------------------------------- +async function desktop (opts = default_opts, protocol) { + // ---------------------------------------- + // ID + JSON STATE + // ---------------------------------------- + const id = `${ID}:${count++}` // assigns their own name + const status = {} + const state = STATE.ids[id] = { id, status, wait: {}, net: {}, aka: {} } // all state of component instance + const cache = resources({}) + var current_theme + // ---------------------------------------- + // OPTS + // ---------------------------------------- + const { page, theme, themes } = opts + const { light_theme, dark_theme } = themes + current_theme = themes[theme] + // ---------------------------------------- + // PROTOCOL + // ---------------------------------------- + const on = {} + const channel = use_protocol('up')({ protocol, state, on }) + // ---------------------------------------- + // TEMPLATE + // ---------------------------------------- + const el = document.createElement('div') + const shadow = el.attachShadow(shopts) + shadow.adoptedStyleSheets = [sheet] + shadow.innerHTML = `
+
+
+
` + // ---------------------------------------- + const content_sh = shadow.querySelector('.content').attachShadow(shopts) + const desktop_el = shadow.querySelector('.desktop') + // ---------------------------------------- + // ELEMENTS + // ---------------------------------------- + {//sparkle effect + const element = sparkle_effect({colors: ["#8A2BE2", "#FFC0CB", "#808080", "#0000FF", "#FFFFE0", "#FFFF00", "#39FF14", "#FFFFFF"]}) + desktop_el.prepend(element) + } + // ---------------------------------------- + // RESOURCE POOL (can't be serialized) + // ---------------------------------------- + const navigate = cache({ + TIMELINE + }) + + // ---------------------------------------- + // INIT + // ---------------------------------------- + on_navigate_page({data: 'TIMELINE'}) + on_theme() + return el + + function on_social (message) { + console.log('@TODO: open ', message.data) + } + function on_navigate_page (msg) { + const { data: active_page } = msg + const page = navigate(active_page) + content_sh.replaceChildren(page) + } + function on_theme () { + current_theme = current_theme === light_theme ? dark_theme : light_theme + channel.send({ + head: [id, channel.send.id, channel.mid++], + type: 'theme_change', + data: current_theme + }) + } + function TIMELINE () { + const on = {} + const protocol = use_protocol('timeline_page')({ state, on }) + const opts = { data: current_theme } + const element = timeline_page(opts, protocol) + return element + } +} +function get_theme (opts) { + return` + * { box-sizing: border-box; } + :host { + display: flex; + flex-direction: column; + font-family: Arial; + color: var(--primary_color); + background-color: var(--bg_color_2); + background-size: 8px 8px; + height: 100vh; + } + svg { + fill: var(--bg_color_2); + } + .desktop { + display: flex; + flex-direction: column; + height: 100%; + } + .content { + height:100%; + overflow-x: scroll; + scrollbar-width: none; + } + ::-webkit-scrollbar { + display: none; + } + .shell { + flex-grow: 1; + } + ` +} +// ---------------------------------------------------------------------------- +function shadowfy (props = {}, sheets = []) { + return element => { + const el = Object.assign(document.createElement('div'), { ...props }) + const sh = el.attachShadow(shopts) + sh.adoptedStyleSheets = sheets + sh.append(element) + return el + } +} +function use_protocol (petname) { + return ({ protocol, state, on = { } }) => { + if (petname in state.aka) throw new Error('petname already initialized') + const { id } = state + const invalid = on[''] || (message => console.error('invalid type', message)) + if (protocol) return handshake(protocol(Object.assign(listen, { id }))) + else return handshake + // ---------------------------------------- + // @TODO: how to disconnect channel + // ---------------------------------------- + function handshake (send) { + state.aka[petname] = send.id + const channel = state.net[send.id] = { petname, mid: 0, send, on } + return protocol ? channel : Object.assign(listen, { id }) + } + function listen (message) { + const [from] = message.head + const by = state.aka[petname] + if (from !== by) return invalid(message) // @TODO: maybe forward + console.log(`[${id}]:${petname}>`, message) + const { on } = state.net[by] + const action = on[message.type] || invalid + action(message) + } + } +} +// ---------------------------------------------------------------------------- +function resources (pool) { + var num = 0 + return factory => { + const prefix = num++ + const get = name => { + const id = prefix + name + if (pool[id]) return pool[id] + const type = factory[name] + return pool[id] = type() + } + return Object.assign(get, factory) + } +} +}).call(this)}).call(this,require('_process'),"/src/desktop.js") +},{"_process":2,"sparkle-effect":17,"timeline-page":24}],7:[function(require,module,exports){ +(function (process,__filename){(function (){ +const timeline_filter = require('timeline-filter') +const year_filter = require('year-filter') +const month_filter = require('month-filter') +const timeline_cards = require('timeline-cards/timeline-cards.js') +/****************************************************************************** + APP TIMELINE COMPONENT +******************************************************************************/ +// ---------------------------------------- +// MODULE STATE & ID +var count = 0 +const [cwd, dir] = [process.cwd(), __filename].map(x => new URL(x, 'file://').href) +const ID = dir.slice(cwd.length) +const STATE = { ids: {}, net: {} } // all state of component module +// ---------------------------------------- +const sheet = new CSSStyleSheet +sheet.replaceSync(get_theme()) +const default_opts = { } +const shopts = { mode: 'closed' } +// ---------------------------------------- +module.exports = app_timeline +// ---------------------------------------- +function app_timeline (opts = default_opts, protocol) { + // ---------------------------------------- + // RESOURCE POOL (can't be serialized) + // ---------------------------------------- + const ro = new ResizeObserver(entries => { + console.log('ResizeObserver:terminal:resize') + // !sorting && set_scroll_top(timeline_wrapper.scrollHeight) + const scroll_channel = state.net[state.aka.scrollbar] + scroll_channel.send({ + head: [id, scroll_channel.send.id, scroll_channel.mid++], + refs: { }, + type: 'handle_scroll', + }) + }) + // ---------------------------------------- + // ID + JSON STATE + // ---------------------------------------- + const id = `${ID}:${count++}` // assigns their own name + const status = {} + const state = STATE.ids[id] = { id, status, wait: {}, net: {}, aka: {} } // all state of component instance + const cache = resources({}) + status.years = [] + let sorting = true // latest to oldest + let card_filter, prev_year + // ---------------------------------------- + // OPTS + // ---------------------------------------- + const { data } = opts + // Data preprocessing + let cards_data = require(`../data/data.json`)['timeline'] + cards_data = cards_data.map(card => { + const date = new Date(card.date) + if(!status.years.includes(date.getFullYear())) + status.years.push(date.getFullYear()) + card.date_raw = date.getTime() + card.data = data + return card + }).reverse() + status.years = status.years.filter((value) => { + return !isNaN(value) + }) + status.years_max = [...status.years] + card_filter = [...cards_data] + prev_year = new Date(cards_data[0].date_raw).getFullYear() + // ---------------------------------------- + // PROTOCOL + // ---------------------------------------- + const PROTOCOL = {} + const on = {} + const channel = use_protocol('app_timeline')({ protocol, state, on }) + // ---------------------------------------- + // TEMPLATE + // ---------------------------------------- + const el = document.createElement('div') + const shadow = el.attachShadow(shopts) + shadow.adoptedStyleSheets = [sheet] + shadow.innerHTML = ` +
+
+
+
+
+
+
` + const main_wrapper = shadow.querySelector('.main_wrapper') + const filter_wrapper = shadow.querySelector('.filter_wrapper') + const month_wrapper = shadow.querySelector('.month_wrapper') + // ---------------------------------------- + // ---------------------------------------- + // ELEMENTS + // ---------------------------------------- + { // timeline cards + const on = { + 'update_calendar': update_calendar, + 'update_timeline_filter': update_timeline_filter + } + const protocol = use_protocol('timeline_cards')({ state, on }) + const opts = { data, cards_data, years: status.years } + const element = shadowfy()(timeline_cards(opts, protocol)) + month_wrapper.append(element) + + } + { // timeline filter + const on = { + 'toggle_month_filter': toggle_month_filter, + 'toggle_year_filter': toggle_year_filter, + 'value': on_value, + 'set_filter': set_filter + } + const protocol = use_protocol('timeline_filter')({ state, on }) + const opts = { + data, tags: [], + latest_date: cards_data[0].date_raw + } + const element = shadowfy()(timeline_filter(opts, protocol)) + main_wrapper.append(element) + function on_value (message) { set_filter(message.data) } + async function toggle_month_filter (message) { + month_filter_wrapper.classList.toggle('show') + } + async function toggle_year_filter (message) { + year_filter_wrapper.classList.toggle('hide') + } + } + var year_filter_wrapper + { // year filter + const on = { 'set_scroll': on_set_scroll } + const protocol = use_protocol('year_filter')({ state, on }) + const opts = { + data, latest_year: Math.max(...status.years), oldest_year: Math.min(...status.years), sorting + } + year_filter_wrapper = shadowfy()(year_filter(opts, protocol)) + filter_wrapper.append(year_filter_wrapper) + if(screen.width < 510){ + year_filter_wrapper.classList.add('hide') + } + + async function on_set_scroll ({ data }) { + const channel = state.net[state.aka.timeline_cards] + channel.send({ + head: [id, channel.send.id, channel.mid++], + type: 'set_scroll', + data + }) + update_calendar({ data: { check: false, year: data.value }}) + } + } + year_filter_wrapper.classList.add('year_filter_wrapper') + var month_filter_wrapper + { // month filter + const on = { 'set_scroll': on_set_scroll, 'set_filter': set_filter } + const protocol = use_protocol('month_filter')({ state, on }) + const opts = { data } + month_filter_wrapper = shadowfy()(month_filter(opts, protocol)) + month_filter_wrapper.classList.add('month_filter_wrapper') + month_wrapper.append(month_filter_wrapper) + async function on_set_scroll ({ data }) { + const channel = state.net[state.aka.timeline_cards] + channel.send({ + head: [id, channel.send.id, channel.mid++], + type: 'set_scroll', + data + }) + update_calendar({ data: { check: false, year: prev_year }}) + } + } + // ---------------------------------------- + // INIT + // ---------------------------------------- + update_calendar({ data: { check: false, year: prev_year }}) + return el + + async function update_timeline_filter ({ data }) { + let channel = state.net[state.aka.timeline_filter] + channel.send({ + head: [id, channel.send.id, channel.mid++], + type: 'update_timeline_filter', + data + }) + channel = state.net[state.aka.year_filter] + channel.send({ + head: [id, channel.send.id, channel.mid++], + type: 'update_year_filter', + data: data.year + }) + } + async function set_filter (data) { + const channel = state.net[state.aka.timeline_cards] + channel.send({ + head: [id, channel.send.id, channel.mid++], + type: 'set_filter', + data + }) + } + async function update_calendar ({ data, head }) { + const { check, year } = data + let dates = [] + if (year) card_filter.forEach(card_data => { + if (card_data.date.includes(year)) dates.push(card_data.date) + }) + const channel = state.net[state.aka.month_filter] + if(prev_year !== String(year) || check){ + channel.send({ + head: [id, channel.send.id, channel.mid++], + type: 'update_calendar', + data: {dates, year: Number(year)} + }) + prev_year = String(year).slice(0) + if(status.cards){ + status.cards.forEach(status_card => { + status_card.classList.remove('active') + }) + status.cards = [] + } + } + + } +} +function get_theme () { + return` + .main_wrapper { + box-sizing: border-box; + display: flex; + flex-direction: column; + container-type: inline-size; + width: 100%; + height: 100%; + margin-bottom: 30px; + } + .main_wrapper * { + box-sizing: border-box; + } + .main_wrapper .filter_wrapper { + display: flex; + width: 100%; + height: 100%; + border : 2px solid var(--ac-3); + } + .main_wrapper .filter_wrapper .month_wrapper { + width: 100%; + height: 100%; + min-height: 500px; + overflow: hidden; + position: relative; + } + .main_wrapper .filter_wrapper > div:last-child{ + border-left: 1px solid var(--ac-3); + } + .main_wrapper .filter_wrapper .year_filter_wrapper{ + border-left:1px solid var(--ac-3); + padding: 1px; + } + .main_wrapper .filter_wrapper .year_filter_wrapper.hide{ + display: none; + } + .month_filter_wrapper{ + display: none; + z-index: 2; + height: 0; + top: -166px; + position: relative; + /*border: 1px solid var(--ac-3);*/ + } + .month_filter_wrapper.show{ + display: block; + } + ` +} +// ---------------------------------------------------------------------------- +function shadowfy (props = {}, sheets = []) { + return element => { + const el = Object.assign(document.createElement('div'), { ...props }) + const sh = el.attachShadow(shopts) + sh.adoptedStyleSheets = sheets + sh.append(element) + return el + } +} +function use_protocol (petname) { + return ({ protocol, state, on = { } }) => { + if (petname in state.aka) throw new Error('petname already initialized') + const { id } = state + const invalid = on[''] || (message => console.error('invalid type', message)) + if (protocol) return handshake(protocol(Object.assign(listen, { id }))) + else return handshake + // ---------------------------------------- + // @TODO: how to disconnect channel + // ---------------------------------------- + function handshake (send) { + state.aka[petname] = send.id + const channel = state.net[send.id] = { petname, mid: 0, send, on } + return protocol ? channel : Object.assign(listen, { id }) + } + function listen (message) { + const [from] = message.head + const by = state.aka[petname] + if (from !== by) return invalid(message) // @TODO: maybe forward + console.log(`[${id}]:${petname}>`, message) + const { on } = state.net[by] + const action = on[message.type] || invalid + action(message) + } + } +} +// ---------------------------------------------------------------------------- +function resources (pool) { + var num = 0 + return factory => { + const prefix = num++ + const get = name => { + const id = prefix + name + if (pool[id]) return pool[id] + const type = factory[name] + return pool[id] = type() + } + return Object.assign(get, factory) + } +} +}).call(this)}).call(this,require('_process'),"/src/node_modules/app-timeline/app-timeline.js") +},{"../data/data.json":12,"_process":2,"month-filter":14,"timeline-cards/timeline-cards.js":22,"timeline-filter":23,"year-filter":25}],8:[function(require,module,exports){ +(function (process,__filename){(function (){ +/****************************************************************************** + DAY BUTTON COMPONENT +******************************************************************************/ +// ---------------------------------------- +// MODULE STATE & ID +var count = 0 +const [cwd, dir] = [process.cwd(), __filename].map(x => new URL(x, 'file://').href) +const ID = dir.slice(cwd.length) +const STATE = { ids: {}, net: {} } // all state of component module +// ---------------------------------------- +const sheet = new CSSStyleSheet +sheet.replaceSync(get_theme()) +const default_opts = { } +const shopts = { mode: 'closed' } +// ---------------------------------------- +module.exports = day_button +// ---------------------------------------- +// Props - icon/img src +function day_button (opts = default_opts, protocol) { + // ---------------------------------------- + // ID + JSON STATE + // ---------------------------------------- + const id = `${ID}:${count++}` // assigns their own name + const status = {} + const state = STATE.ids[id] = { id, status, wait: {}, net: {}, aka: {} } // all state of component instance + const cache = resources({}) + // ---------------------------------------- + // OPTS + // ---------------------------------------- + const { i } = opts + // ---------------------------------------- + // PROTOCOL + // ---------------------------------------- + const on = { + toggle_active, + add_highlight, + remove_highlight, + toggle_visibility, + } + const up_channel = use_protocol('up')({ protocol, state, on }) + // const notify = protocol({ from: id }, listen) + // ---------------------------------------- + // TEMPLATE + // ---------------------------------------- + const el = document.createElement('div') + const shadow = el.attachShadow(shopts) + shadow.adoptedStyleSheets = [sheet] + shadow.innerHTML = `
` + const day_button = shadow.querySelector(".day_button") + // ---------------------------------------- + // ELEMENTS + // ---------------------------------------- + shadow.append(day_button) + // ---------------------------------------- + // INIT + // ---------------------------------------- + day_button.onclick = onclick + + return el + + function onclick (e) { + toggle_active() + up_channel.send({ + head: [id, up_channel.send.id, up_channel.mid++], + type: 'toggle_day_button', + }) + } + function toggle_active () { + day_button.classList.toggle('active') + } + function add_highlight () { + day_button.classList.add('highlight') + } + function remove_highlight () { + day_button.classList.remove('highlight') + } + function toggle_visibility ({ data }) { + ; data ? day_button.classList.remove('hide') : day_button.classList.add('hide') + } +} +function get_theme () { + return ` + .day_button { + display: flex; + justify-content: center; + align-items: center; + height: 20px; + box-sizing: border-box; + aspect-ratio: 1/1; + cursor: pointer; + border: 0px solid var(--primary_color); + border-width: 0px 1px 1px 0px; + background-color: var(--bg_color); + } + .day_button.highlight { + background-color: var(--ac-2) + } + .day_button.active { + background-color: var(--ac-1); + } + .day_button.hide{ + display: none; + } + ` +} +// ---------------------------------------------------------------------------- +function shadowfy (props = {}, sheets = []) { + return element => { + const el = Object.assign(document.createElement('div'), { ...props }) + const sh = el.attachShadow(shopts) + sh.adoptedStyleSheets = sheets + sh.append(element) + return el + } +} +function use_protocol (petname) { + return ({ protocol, state, on = { } }) => { + if (petname in state.aka) throw new Error('petname already initialized') + const { id } = state + const invalid = on[''] || (message => console.error('invalid type', message)) + if (protocol) return handshake(protocol(Object.assign(listen, { id }))) + else return handshake + // ---------------------------------------- + // @TODO: how to disconnect channel + // ---------------------------------------- + function handshake (send) { + state.aka[petname] = send.id + const channel = state.net[send.id] = { petname, mid: 0, send, on } + return protocol ? channel : Object.assign(listen, { id }) + } + function listen (message) { + const [from] = message.head + const by = state.aka[petname] + if (from !== by) return invalid(message) // @TODO: maybe forward + console.log(`[${id}]:${petname}>`, message) + const { on } = state.net[by] + const action = on[message.type] || invalid + action(message) + } + } +} +// ---------------------------------------------------------------------------- +function resources (pool) { + var num = 0 + return factory => { + const prefix = num++ + const get = name => { + const id = prefix + name + if (pool[id]) return pool[id] + const type = factory[name] + return pool[id] = type() + } + return Object.assign(get, factory) + } +} +}).call(this)}).call(this,require('_process'),"/src/node_modules/buttons/day-button.js") +},{"_process":2}],9:[function(require,module,exports){ +(function (process,__filename){(function (){ +const scrollbar = require('scrollbar') +/****************************************************************************** + SELECT BUTTON COMPONENT +******************************************************************************/ +// ---------------------------------------- +// MODULE STATE & ID +var count = 0 +const [cwd, dir] = [process.cwd(), __filename].map(x => new URL(x, 'file://').href) +const ID = dir.slice(cwd.length) +const STATE = { ids: {}, net: {} } // all state of component module +// ---------------------------------------- +const sheet = new CSSStyleSheet +sheet.replaceSync(get_theme()) +const default_opts = { } +const shopts = { mode: 'closed' } +// ---------------------------------------- +module.exports = select_button +// ---------------------------------------- +function select_button (opts = default_opts, protocol) { + // ---------------------------------------- + // RESOURCE POOL (can't be serialized) + // ---------------------------------------- + const ro = new ResizeObserver(entries => { + console.log('ResizeObserver:terminal:resize') + const scroll_channel = state.net[state.aka.scrollbar] + scroll_channel.send({ + head: [id, scroll_channel.send.id, scroll_channel.mid++], + refs: { }, + type: 'handle_scroll', + }) + }) + // ---------------------------------------- + // ID + JSON STATE + // ---------------------------------------- + const id = `${ID}:${count++}` // assigns their own name + const status = {} + const state = STATE.ids[id] = { id, status, wait: {}, net: {}, aka: {} } // all state of component instance + const cache = resources({}) + let active_option = '' + let active_state = true + // ---------------------------------------- + // OPTS + // ---------------------------------------- + const { data } = opts + // Assigning all the icons + const { img_src } = data + const { + icon_arrow_down, + icon_arrow_up + } = img_src + // ---------------------------------------- + // PROTOCOL + // ---------------------------------------- + const on = {} + const channel = use_protocol('up')({ protocol, state, on }) + // ---------------------------------------- + // TEMPLATE + // ---------------------------------------- + const el = document.createElement('div') + const shadow = el.attachShadow(shopts) + shadow.adoptedStyleSheets = [sheet] + shadow.innerHTML = `
+
+
+
ALL
+ ${opts.choices.map(choice => `
${choice}
`).join('')} +
+
+
+ ${opts.name}: + ${'ALL'} + + ${icon_arrow_up} + +
+
` + const select_button_wrapper = shadow.querySelector('.select_button_wrapper') + const select_toggle_btn = shadow.querySelector('.button_wrapper') + const options = shadow.querySelectorAll('.option') + const selected_option = shadow.querySelector('.selected_option') + const option_wrapper = shadow.querySelector('.option_wrapper') + const option_scrollbar_wrapper = shadow.querySelector('.option_scrollbar_wrapper') + // ---------------------------------------- + // ELEMENTS + // ---------------------------------------- + select_toggle_btn.onclick = (e) => { + select_button_wrapper.classList.toggle('active') + shadow.querySelector('.arrow_icon').innerHTML = active_state ? icon_arrow_down : icon_arrow_up + active_state = !active_state + } + select_button_wrapper.onblur = (e) => { + setTimeout(() => { + select_button_wrapper.classList.remove('active') + shadow.querySelector('.arrow_icon').innerHTML = icon_arrow_up + active_state = true + }, 200); + } + { // scrollbar + const on = { 'set_scroll': on_set_scroll, status: onstatus } + const protocol = use_protocol('scrollbar')({ state, on }) + opts.data.img_src.icon_arrow_start = opts.data.img_src.icon_arrow_up + opts.data.img_src.icon_arrow_end = opts.data.img_src.icon_arrow_down + const opts1 = { data } + const element = shadowfy()(scrollbar(opts1, protocol)) + option_wrapper.append(element) + option_scrollbar_wrapper.onscroll = on_scroll + } + // select_toggle_btn.addEventListener('click', function() { + // shadow.querySelector('.select_button_wrapper').classList.toggle('active') + // }) + // Use event delegation + // document.addEventListener('click', (e) => { + // console.log(e.target.className) + // }) + // Select all .option divs + // Attach click event listener to each .option div + options.forEach((option) => { + option.addEventListener('click', () => { + shadow.querySelector('.arrow_icon').innerHTML = active_state ? icon_arrow_down : icon_arrow_up + active_state = !active_state + + if (active_option) active_option.classList.remove('active') + if (active_option === option) { + selected_option.innerHTML = 'ALL' + active_option = options[0] + options[0].classList.add('active') + } + else { + option.classList.add('active') + selected_option.innerHTML = option.innerHTML + active_option = option + } + select_button_wrapper.classList.remove('active') + channel.send({ + head: [id, channel.send.id, channel.mid++], + type: 'value', + data: { filter: opts.name, value: selected_option.innerHTML } + }) + }) + }) + // ---------------------------------------- + // INIT + // ---------------------------------------- + active_option = options[0] + watch_scrollbar() + + return el + + function watch_scrollbar () { + const channel = state.net[state.aka.scrollbar] + ro.observe(option_scrollbar_wrapper) + } + function on_scroll (message) { + const channel = state.net[state.aka.scrollbar] + channel.send({ + head: [id, channel.send.id, channel.mid++], + refs: { }, + type: 'handle_scroll', + }) + } + function on_set_scroll (message) { + console.log('set_scroll', message) + setScrollTop(message.data) + } + function onstatus (message) { + const channel = state.net[state.aka.scrollbar] + channel.send({ + head: [id, channel.send.id, channel.mid++], + refs: { cause: message.head }, + type: 'update_size', + data: { + sh: option_scrollbar_wrapper.scrollHeight, + ch: option_scrollbar_wrapper.clientHeight, + st: option_scrollbar_wrapper.scrollTop + } + }) + } + async function setScrollTop (value) { + option_scrollbar_wrapper.scrollTop = value + } +} +function get_theme () { + return ` + .select_button_wrapper { + box-sizing: border-box; + position: relative; + z-index: 100; + width: 100%; + min-width:150px; + height: 42px; + font-size: 0.875em; + line-height: 1.5em; + background-color: var(--bg_color); + } + .select_button_wrapper.bottom .option_wrapper { + bottom: 42px; + left: 0px; + } + .select_button_wrapper.top .option_wrapper { + /* top: 40px; */ + left: 0px; + } + .select_button_wrapper.active .option_wrapper{ display: flex !important; } + .select_button_wrapper.active .option_wrapper .button_wrapper{ border: 2px solid var(--ac-1); } + .select_button_wrapper .option_wrapper { + position: absolute; + display: none; + box-sizing: border-box; + height: max-content; + max-height: 400px; + width: 100%; + background-color: var(--bg_color); + border: 1px solid var(--primary_color); + word-break: break-all; + } + + .select_button_wrapper .option_wrapper .option { + box-sizing: border-box; + display: flex; + gap: 5px; + align-items: center; + padding: 10px 5px; + cursor: pointer; + word-break: break-all; + background-color: var(--bg_color); + overflow: hidden; + } + .select_button_wrapper .option_wrapper .option.active { + background-color: var(--ac-1); + color: var(--primary_color); + } + .select_button_wrapper .option_wrapper .option:hover { + filter: brightness(0.8); + } + .select_button_wrapper .button_wrapper { + box-sizing: border-box; + display: flex; + align-items: center; + gap: 5px; + padding: 10px 20px; + cursor: pointer; + height: 42px; + background-color: var(--bg_color); + border: 1px solid var(--primary_color); + } + .select_button_wrapper .button_wrapper .button_name { + display: flex; + vertical-align: middle; + font-weight: 700; + line-height: 15px; + } + .select_button_wrapper .button_wrapper .selected_option { + display: flex; + vertical-align: middle; + font-weight: 300; + line-height: 15px; + word-break: normal; + } + .select_button_wrapper .button_wrapper .arrow_icon { + display: flex; + align-items: center; + margin-left: auto; + } + .select_button_wrapper .button_wrapper .arrow_icon svg * { + fill: var(--primary_color); + } + .option_scrollbar_wrapper{ + height: max-content; + max-height: 200px; + min-height: 100px; + overflow-y: scroll; + scrollbar-width: none; + width: 100%; + background-color: var(--bg_color); + border: 1px solid var(--primary_color); + } + .select_button_wrapper .option_scrollbar_wrapper::-webkit-scrollbar { + display: none; + } + ` +} +// ---------------------------------------------------------------------------- +function shadowfy (props = {}, sheets = []) { + return element => { + const el = Object.assign(document.createElement('div'), { ...props }) + const sh = el.attachShadow(shopts) + sh.adoptedStyleSheets = sheets + sh.append(element) + return el + } +} +function use_protocol (petname) { + return ({ protocol, state, on = { } }) => { + if (petname in state.aka) throw new Error('petname already initialized') + const { id } = state + const invalid = on[''] || (message => console.error('invalid type', message)) + if (protocol) return handshake(protocol(Object.assign(listen, { id }))) + else return handshake + // ---------------------------------------- + // @TODO: how to disconnect channel + // ---------------------------------------- + function handshake (send) { + state.aka[petname] = send.id + const channel = state.net[send.id] = { petname, mid: 0, send, on } + return protocol ? channel : Object.assign(listen, { id }) + } + function listen (message) { + const [from] = message.head + const by = state.aka[petname] + if (from !== by) return invalid(message) // @TODO: maybe forward + console.log(`[${id}]:${petname}>`, message) + const { on } = state.net[by] + const action = on[message.type] || invalid + action(message) + } + } +} +// ---------------------------------------------------------------------------- +function resources (pool) { + var num = 0 + return factory => { + const prefix = num++ + const get = name => { + const id = prefix + name + if (pool[id]) return pool[id] + const type = factory[name] + return pool[id] = type() + } + return Object.assign(get, factory) + } +} +}).call(this)}).call(this,require('_process'),"/src/node_modules/buttons/select-button.js") +},{"_process":2,"scrollbar":15}],10:[function(require,module,exports){ +(function (process,__filename){(function (){ +/****************************************************************************** + SM ICON BUTTON COMPONENT + ******************************************************************************/ + // ---------------------------------------- + // MODULE STATE & ID + var count = 0 + const [cwd, dir] = [process.cwd(), __filename].map(x => new URL(x, 'file://').href) + const ID = dir.slice(cwd.length) + const STATE = { ids: {}, net: {} } // all state of component module + // ---------------------------------------- + const sheet = new CSSStyleSheet + sheet.replaceSync(get_theme()) + const default_opts = { } + const shopts = { mode: 'closed' } + // ---------------------------------------- + module.exports = sm_icon_button + // ---------------------------------------- + function sm_icon_button (opts = default_opts, protocol) { + // ---------------------------------------- + // ID + JSON STATE + // ---------------------------------------- + const id = `${ID}:${count++}` // assigns their own name + const status = {} + const state = STATE.ids[id] = { id, status, wait: {}, net: {}, aka: {} } // all state of component instance + const cache = resources({}) + let activeState = true + // ---------------------------------------- + // OPTS + // ---------------------------------------- + let { src, src_active, activate, link } = opts + // ---------------------------------------- + // PROTOCOL + // ---------------------------------------- + const on = {} + const channel = use_protocol('up')({ protocol, state , on }) + // ---------------------------------------- + // TEMPLATE + // ---------------------------------------- + const el = document.createElement('div') + const shadow = el.attachShadow(shopts) + shadow.adoptedStyleSheets = [sheet] + ; link ? shadow.innerHTML = `
+ ${src} +
` : + shadow.innerHTML = `
${src}
` + const sm_icon_button = shadow.querySelector(".sm_icon_button") + // ---------------------------------------- + // ELEMENTS + // ---------------------------------------- + sm_icon_button.onclick = toggle_class + // ---------------------------------------- + // INIT + // ---------------------------------------- + + return el + + function toggle_class (e) { + if (activate) { + if (src_active) { + sm_icon_button.innerHTML = activeState ? src_active: src + activeState = !activeState + } + let selector = e.target.classList + selector.toggle('active', !selector.contains('active')) + } + channel.send({ + head: [id, channel.send.id, channel.mid++], + type: 'click' + }) + } + } + function get_theme () { + return ` + .sm_icon_button { + display: flex; + justify-content: center; + align-items: center; + height: 30px; + box-sizing: border-box; + aspect-ratio: 1/1; + cursor: pointer; + border: 1px solid var(--primary_color); + background-color: var(--bg_color); + } + .sm_icon_button.active { + background-color: var(--ac-2) + } + .sm_icon_button svg, .sm_icon_button svg * { + pointer-events:none; + fill: var(--primary_color); + } + ` + } + // ---------------------------------------------------------------------------- + function shadowfy (props = {}, sheets = []) { + return element => { + const el = Object.assign(document.createElement('div'), { ...props }) + const sh = el.attachShadow(shopts) + sh.adoptedStyleSheets = sheets + sh.append(element) + return el + } + } + function use_protocol (petname) { + return ({ protocol, state, on = { } }) => { + if (petname in state.aka) throw new Error('petname already initialized') + const { id } = state + const invalid = on[''] || (message => console.error('invalid type', message)) + if (protocol) return handshake(protocol(Object.assign(listen, { id }))) + else return handshake + // ---------------------------------------- + // @TODO: how to disconnect channel + // ---------------------------------------- + function handshake (send) { + state.aka[petname] = send.id + const channel = state.net[send.id] = { petname, mid: 0, send, on } + return protocol ? channel : Object.assign(listen, { id }) + } + function listen (message) { + const [from] = message.head + const by = state.aka[petname] + if (from !== by) return invalid(message) // @TODO: maybe forward + console.log(`[${id}]:${petname}>`, message) + const { on } = state.net[by] + const action = on[message.type] || invalid + action(message) + } + } + } + // ---------------------------------------------------------------------------- + function resources (pool) { + var num = 0 + return factory => { + const prefix = num++ + const get = name => { + const id = prefix + name + if (pool[id]) return pool[id] + const type = factory[name] + return pool[id] = type() + } + return Object.assign(get, factory) + } + } +}).call(this)}).call(this,require('_process'),"/src/node_modules/buttons/sm-icon-button.js") +},{"_process":2}],11:[function(require,module,exports){ +(function (process,__filename){(function (){ +/****************************************************************************** + WINDOW BAR COMPONENT +******************************************************************************/ +// ---------------------------------------- +// MODULE STATE & ID +var count = 0 +const [cwd, dir] = [process.cwd(), __filename].map(x => new URL(x, 'file://').href) +const ID = dir.slice(cwd.length) +const STATE = { ids: {}, net: {} } // all state of component module +// ---------------------------------------- +const sheet = new CSSStyleSheet +sheet.replaceSync(get_theme()) +const default_opts = { } +const shopts = { mode: 'closed' } +// ---------------------------------------- +module.exports = year_button +// ---------------------------------------- +function year_button (opts = default_opts, protocol) { + // ---------------------------------------- + // ID + JSON STATE + // ---------------------------------------- + const id = `${ID}:${count++}` // assigns their own name + const status = {} + const state = STATE.ids[id] = { id, status, wait: {}, net: {}, aka: {} } // all state of component instance + const cache = resources({}) + // ---------------------------------------- + // OPTS + // ---------------------------------------- + const { data, latest_date } = opts + const { img_src : { + icon_arrow_up= `${prefix}/icon_arrow_up.svg`, + }} = data + // ---------------------------------------- + // PROTOCOL + // ---------------------------------------- + const on = { 'update_label': on_update_label } + const channel = use_protocol('up')({ protocol, state, on }) + // ---------------------------------------- + // TEMPLATE + // ---------------------------------------- + const el = document.createElement('div') + const shadow = el.attachShadow(shopts) + const date = new Date(latest_date) + shadow.adoptedStyleSheets = [sheet] + shadow.innerHTML = `
+
${date.getFullYear()}
+ ${icon_arrow_up} +
` + const year_button = shadow.querySelector('.year_button') + const text_wrapper = shadow.querySelector('.text_wrapper') + // ---------------------------------------- + // ELEMENTS + // ---------------------------------------- + year_button.onclick = toggle_class + // ---------------------------------------- + // INIT + // ---------------------------------------- + + return el + + function toggle_class (e) { + const bool = year_button.classList.toggle('active') + channel.send({ + head: [id, channel.send.id, channel.mid++], + type: 'click', + data: bool + }) + } + function on_update_label (message) { + const { data } = message + // if (data.month || data.year) text_wrapper.innerHTML = `${data.month.slice(0,3)}${data.month && data.year && '/'}${data.year}` + // else text_wrapper.innerHTML = 'Select date' + text_wrapper.innerHTML = data.year + } +} +function get_theme () { + return ` + .year_button { + display: flex; + cursor: pointer; + box-sizing: border-box; + border: 1px solid var(--primary_color); + background-color: var(--bg_color); + color: var(--primary_color); + align-items: center; + justify-content: center; + padding: 0 4px; + height: 42px; + width: 100%; + } + .year_button svg *{ + fill: var(--primary_color); + } + .year_button.active{ + background-color:var(--ac-1); + } + .year_button.active svg { + rotate: 90deg; + } + .year_button .text_wrapper { + text-align: center; + font-size: 0.875em; + line-height: .5em; + padding: 11px 0; + height: 30px; + box-sizing: border-box; + width: 100px; + letter-spacing: -1px; + } + ` +} +// ---------------------------------------------------------------------------- +function shadowfy (props = {}, sheets = []) { + return element => { + const el = Object.assign(document.createElement('div'), { ...props }) + const sh = el.attachShadow(shopts) + sh.adoptedStyleSheets = sheets + sh.append(element) + return el + } +} +function use_protocol (petname) { + return ({ protocol, state, on = { } }) => { + if (petname in state.aka) throw new Error('petname already initialized') + const { id } = state + const invalid = on[''] || (message => console.error('invalid type', message)) + if (protocol) return handshake(protocol(Object.assign(listen, { id }))) + else return handshake + // ---------------------------------------- + // @TODO: how to disconnect channel + // ---------------------------------------- + function handshake (send) { + state.aka[petname] = send.id + const channel = state.net[send.id] = { petname, mid: 0, send, on } + return protocol ? channel : Object.assign(listen, { id }) + } + function listen (message) { + const [from] = message.head + const by = state.aka[petname] + if (from !== by) return invalid(message) // @TODO: maybe forward + console.log(`[${id}]:${petname}>`, message) + const { on } = state.net[by] + const action = on[message.type] || invalid + action(message) + } + } +} +// ---------------------------------------------------------------------------- +function resources (pool) { + var num = 0 + return factory => { + const prefix = num++ + const get = name => { + const id = prefix + name + if (pool[id]) return pool[id] + const type = factory[name] + return pool[id] = type() + } + return Object.assign(get, factory) + } +} +}).call(this)}).call(this,require('_process'),"/src/node_modules/buttons/year-button.js") +},{"_process":2}],12:[function(require,module,exports){ +module.exports={ + "timeline": [ + { + "title": "First ever Hackathon", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "We want to get together for the first time and hack on our crazy ideas. The idea is to create minimum viable product at the end of the day. And on the go we will also try to figure out the right format etc. for the next similar events. First Hackathon is by Invitation only. For Invitation please contact with current Atendees.

FAQ

Q: What type of things should we build?
A: The world is ours- let's think of something that annoy us. Harness that and build our (first) hack. Disrupting the current industry is highly encouraged, these are the best ideas!

Q: Do I have to be on a team? What if I don\u2019t have one?
A: No, but working in teams will typically allow us to get more done in the limited amount of time you'll have. If you don't have a team on the day of, you can easily create one.

Q: What language or platform can I use?
A: The choice is yours! As long as you are confident that you can come up with a working prototype by the end of the hackathon, you should be fine.

Q: What should I bring?

A: You should bring yourself, great ideas and a laptop. We plan to have a buffet, some kind of \"co-working picknic\" so try to bring some salads, fruits, snacks etc. with you to share with others.

Q: Is it okay to work on a project we've created in the past?
A: Yes, feel free to use an existing project as a starting point, or create something new out of it. You can also come armed with pieces of code you might have worked on in the past and use it to get your project off the ground faster.", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/166125412", + "date": "February 22, 2014", + "time": "11:30AM" + }, + { + "title": "2nd Hackathon", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": { + "photoCount": 1, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/6/c/0/highres_340658592.jpeg" + } + ] + }, + "desc": "Same place. We continue hacking on our projects and welcome new hackers with their stuff. Join & bring some goodies with you. Salads, fruits & other healthy stuff is more than welcome.", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/167957862", + "date": "March 08, 2014", + "time": "2:00PM" + }, + { + "title": "3rd Hackathon", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": { + "photoCount": 3, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/b/8/6/c/highres_344267212.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/b/8/7/6/highres_344267222.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/b/8/8/0/highres_344267232.jpeg" + } + ] + }, + "desc": "New place. We continue hacking on our projects and welcome new hackers with their stuff. Join & bring some goodies with you. Salads, fruits & other healthy stuff is more than welcome.", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/171837622", + "date": "March 22, 2014", + "time": "12:00PM" + }, + { + "title": "Regular Hackathon", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": { + "photoCount": 1, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/c/e/4/c/highres_348832812.jpeg" + } + ] + }, + "desc": "You will find us on 5th floor; ring at Co.Up coworking

We meet again & hack on our awesome stuff. Bring some fruits || veggies.

We want to connect all who want to hack on their stuff - developers, creatives, entrepreneurs so invite your friends to join;)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/175089542", + "date": "April 05, 2014", + "time": "1:00PM" + }, + { + "title": "Hack Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": { + "photoCount": 5, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/e/0/8/highres_361923592.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/6/b/3/c/highres_361947452.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/6/b/5/0/highres_361947472.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/9/f/4/e/highres_361960782.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/3/e/9/6/highres_362056022.jpeg" + } + ] + }, + "desc": "Another hack day in our series... since spring is back in town, we got some cool suggestions to try to make a hackathon more in the night time, so we can all enjoy our Saturdays out and then meet when the sun is down:)

So, let's try with evening/night hacking and see how it feels. f the format will suit us, we continue like that:))

Looking forward to see you this Saturday at Co.Up (5th floor) from 8pm on:)", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/181653532", + "date": "May 10, 2014", + "time": "10:00PM" + }, + { + "title": "Tuesday after work hacking", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": { + "photoCount": 1, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/d/6/e/4/highres_363295012.jpeg" + } + ] + }, + "desc": "From 7 to 11 pm. 5th floor.", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/182797472", + "date": "May 13, 2014", + "time": "9:00PM" + }, + { + "title": "Night Hacking", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": { + "photoCount": 3, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/2/3/c/0/highres_368649152.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/2/3/c/a/highres_368649162.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/2/3/d/e/highres_368649182.jpeg" + } + ] + }, + "desc": "Bring some nice food with you to share with others... Veggies, salad, fruits or some other healthy goodies.

Open for everyone who wants to work on her/his idea or learn something cool. So, developers, artist, academics, marketing people, entrepreneurs etc. come join us:)

Looking forward to see you!

Best,

-nin-", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/182901612", + "date": "May 17, 2014", + "time": "10:00PM" + }, + { + "title": "Tuesday Night Co-Hacking", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H", + "photoAlbum": { + "photoCount": 1, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/2/6/4/a/highres_368649802.jpeg" + } + ] + }, + "desc": "MeetupGroup: ' http://www.meetup.com/Berlin-Hackathon-Meetup ', HOME: ' http://titanpad.com/CodingAmigos ', Profiles: ' http://titanpad.com/coHackingProfiles ', Projects: ' http://titanpad.com/coHackingProjects ', Wiki: ' http://titanpad.com/coWiki '", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/183808672", + "date": "May 20, 2014", + "time": "9:00PM" + }, + { + "title": "Saturday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": { + "photoCount": 2, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/2/7/7/6/highres_368650102.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/2/7/c/6/highres_368650182.jpeg" + } + ] + }, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/184299812", + "date": "May 24, 2014", + "time": "10:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": { + "photoCount": 2, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/2/c/3/0/highres_368651312.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/2/c/5/8/highres_368651352.jpeg" + } + ] + }, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022

_. _ _|*._ _ _.._ _ * _ _ __ (_.(_)(_]|[ )(_] (_][ | )|(_](_)_) ._| ._| .___.__ ____ ____ __| _/|__| ____ ____ _/ ___\\/ _ \\ / __ | | |/ \\ / ___\\ \\ \\__( <_> ) /_/ | | | | \\/ /_/ > \\___ >____/\\____ | |__|___| /\\___ / \\/ \\/ \\//_____/ .__ _____ _____ |__| ____ ____ ______ \\__ \\ / \\| |/ ___\\ / _ \\/ ___/ / __ \\| Y Y \\ / /_/ > <_> )___ \\ (____ /__|_| /__\\___ / \\____/____ > \\/ \\/ /_____/ \\/ _ _/' _ _ _ '_ _ ( ()(///)(/ (///)/(/()_) _/ _/ __ /\\ \\ __ ___ ___ \\_\\ \\/\\_\\ ___ __ /'___\\ / __`\\ /'_` \\/\\ \\ /' _ `\\ /'_ `\\ /\\ \\__//\\ \\L\\ \\/\\ \\L\\ \\ \\ \\/\\ \\/\\ \\/\\ \\L\\ \\ \\ \\____\\ \\____/\\ \\___,_\\ \\_\\ \\_\\ \\_\\ \\____ \\ \\/____/\\/___/ \\/__,_ /\\/_/\\/_/\\/_/\\/___L\\ \\ /\\____/ \\_/__/ _ _ _/._ _ _ _ _ ._ _ _ /_ /_//_/// //_/ /_|/ / ///_//_/_\\ _/ _/ _ ( ) _ ___ _ _| |(_) ___ __ /'___) /'_`\\ /'_` || |/' _ `\\ /'_ `\\ ( (___ ( (_) )( (_| || || ( ) |( (_) | `\\____)`\\___/'`\\__,_)(_)(_) (_)`\\__ | ( )_) | \\___/' _ _ _ ___ ___ (_) __ _ ___ /'_` )/' _ ` _ `\\| | /'_ `\\ /'_`\\ /',__) ( (_| || ( ) ( ) || |( (_) |( (_) )\\__, \\ `\\__,_)(_) (_) (_)(_)`\\__ |`\\___/'(____/ ( )_) | \\___/' _ |.,_ ,_ . _ (_()(||||(| (|||||(|()_\\ _| _| _ _ _|. _ _ _ _ . _ _ _ (_(_)(_||| )(_) (_|||||(_)(_)_) _/ _/ _ _ _|. _ _ _ _ _ . _ _ _ (_(_)(_||| |(_| (_|| | ||(_|(_)_\\ _| _|
__ __ __ __ __ __ __ / ` / \\ | \\ | |\\ | / _` /\\ |\\/| | / _` / \\ /__` \\__, \\__/ |__/ | | \\| \\__> /~~\\ | | | \\__> \\__/ .__/", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/183818582", + "date": "May 27, 2014", + "time": "9:30PM" + }, + { + "title": "Saturday Spontaneous MidNight CoHacking", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/186349682", + "date": "June 01, 2014", + "time": "4:30AM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": { + "photoCount": 2, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/5/8/d/6/highres_371422742.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/5/8/f/e/highres_371422782.jpeg" + } + ] + }, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022

_. _ _|*._ _ _.._ _ * _ _ __ (_.(_)(_]|[ )(_] (_][ | )|(_](_)_) ._| ._| .___.__ ____ ____ __| _/|__| ____ ____ _/ ___\\/ _ \\ / __ | | |/ \\ / ___\\ \\ \\__( <_> ) /_/ | | | | \\/ /_/ > \\___ >____/\\____ | |__|___| /\\___ / \\/ \\/ \\//_____/ .__ _____ _____ |__| ____ ____ ______ \\__ \\ / \\| |/ ___\\ / _ \\/ ___/ / __ \\| Y Y \\ / /_/ > <_> )___ \\ (____ /__|_| /__\\___ / \\____/____ > \\/ \\/ /_____/ \\/ _ _/' _ _ _ '_ _ ( ()(///)(/ (///)/(/()_) _/ _/ __ /\\ \\ __ ___ ___ \\_\\ \\/\\_\\ ___ __ /'___\\ / __`\\ /'_` \\/\\ \\ /' _ `\\ /'_ `\\ /\\ \\__//\\ \\L\\ \\/\\ \\L\\ \\ \\ \\/\\ \\/\\ \\/\\ \\L\\ \\ \\ \\____\\ \\____/\\ \\___,_\\ \\_\\ \\_\\ \\_\\ \\____ \\ \\/____/\\/___/ \\/__,_ /\\/_/\\/_/\\/_/\\/___L\\ \\ /\\____/ \\_/__/ _ _ _/._ _ _ _ _ ._ _ _ /_ /_//_/// //_/ /_|/ / ///_//_/_\\ _/ _/ _ ( ) _ ___ _ _| |(_) ___ __ /'___) /'_`\\ /'_` || |/' _ `\\ /'_ `\\ ( (___ ( (_) )( (_| || || ( ) |( (_) | `\\____)`\\___/'`\\__,_)(_)(_) (_)`\\__ | ( )_) | \\___/' _ _ _ ___ ___ (_) __ _ ___ /'_` )/' _ ` _ `\\| | /'_ `\\ /'_`\\ /',__) ( (_| || ( ) ( ) || |( (_) |( (_) )\\__, \\ `\\__,_)(_) (_) (_)(_)`\\__ |`\\___/'(____/ ( )_) | \\___/' _ |.,_ ,_ . _ (_()(||||(| (|||||(|()_\\ _| _| _ _ _|. _ _ _ _ . _ _ _ (_(_)(_||| )(_) (_|||||(_)(_)_) _/ _/ _ _ _|. _ _ _ _ _ . _ _ _ (_(_)(_||| |(_| (_|| | ||(_|(_)_\\ _| _|
__ __ __ __ __ __ __ / ` / \\ | \\ | |\\ | / _` /\\ |\\/| | / _` / \\ /__` \\__, \\__/ |__/ | | \\| \\__> /~~\\ | | | \\__> \\__/ .__/", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/183818602", + "date": "June 03, 2014", + "time": "9:30PM" + }, + { + "title": "Saturday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": { + "photoCount": 3, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/7/9/6/a/highres_372391082.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/7/9/9/2/highres_372391122.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/d/b/4/e/highres_372476142.jpeg" + } + ] + }, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/186906422", + "date": "June 07, 2014", + "time": "10:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": { + "photoCount": 8, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/1/c/7/2/highres_374047282.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/1/c/7/c/highres_374047292.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/1/c/9/0/highres_374047312.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/1/c/a/e/highres_374047342.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/1/c/b/8/highres_374047352.jpeg" + } + ] + }, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022

_. _ _|*._ _ _.._ _ * _ _ __ (_.(_)(_]|[ )(_] (_][ | )|(_](_)_) ._| ._| .___.__ ____ ____ __| _/|__| ____ ____ _/ ___\\/ _ \\ / __ | | |/ \\ / ___\\ \\ \\__( <_> ) /_/ | | | | \\/ /_/ > \\___ >____/\\____ | |__|___| /\\___ / \\/ \\/ \\//_____/ .__ _____ _____ |__| ____ ____ ______ \\__ \\ / \\| |/ ___\\ / _ \\/ ___/ / __ \\| Y Y \\ / /_/ > <_> )___ \\ (____ /__|_| /__\\___ / \\____/____ > \\/ \\/ /_____/ \\/ _ _/' _ _ _ '_ _ ( ()(///)(/ (///)/(/()_) _/ _/ __ /\\ \\ __ ___ ___ \\_\\ \\/\\_\\ ___ __ /'___\\ / __`\\ /'_` \\/\\ \\ /' _ `\\ /'_ `\\ /\\ \\__//\\ \\L\\ \\/\\ \\L\\ \\ \\ \\/\\ \\/\\ \\/\\ \\L\\ \\ \\ \\____\\ \\____/\\ \\___,_\\ \\_\\ \\_\\ \\_\\ \\____ \\ \\/____/\\/___/ \\/__,_ /\\/_/\\/_/\\/_/\\/___L\\ \\ /\\____/ \\_/__/ _ _ _/._ _ _ _ _ ._ _ _ /_ /_//_/// //_/ /_|/ / ///_//_/_\\ _/ _/ _ ( ) _ ___ _ _| |(_) ___ __ /'___) /'_`\\ /'_` || |/' _ `\\ /'_ `\\ ( (___ ( (_) )( (_| || || ( ) |( (_) | `\\____)`\\___/'`\\__,_)(_)(_) (_)`\\__ | ( )_) | \\___/' _ _ _ ___ ___ (_) __ _ ___ /'_` )/' _ ` _ `\\| | /'_ `\\ /'_`\\ /',__) ( (_| || ( ) ( ) || |( (_) |( (_) )\\__, \\ `\\__,_)(_) (_) (_)(_)`\\__ |`\\___/'(____/ ( )_) | \\___/' _ |.,_ ,_ . _ (_()(||||(| (|||||(|()_\\ _| _| _ _ _|. _ _ _ _ . _ _ _ (_(_)(_||| )(_) (_|||||(_)(_)_) _/ _/ _ _ _|. _ _ _ _ _ . _ _ _ (_(_)(_||| |(_| (_|| | ||(_|(_)_\\ _| _|
__ __ __ __ __ __ __ / ` / \\ | \\ | |\\ | / _` /\\ |\\/| | / _` / \\ /__` \\__, \\__/ |__/ | | \\| \\__> /~~\\ | | | \\__> \\__/ .__/", + "participants": 11, + "link": "https://www.meetup.com/wizardamigos/events/184299652", + "date": "June 10, 2014", + "time": "9:30PM" + }, + { + "title": "Saturday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": { + "photoCount": 7, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/7/f/8/2/highres_375032642.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/7/f/9/6/highres_375032662.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/9/8/3/c/highres_375158972.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/9/8/7/8/highres_375159032.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/9/8/b/4/highres_375159092.jpeg" + } + ] + }, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 11, + "link": "https://www.meetup.com/wizardamigos/events/186351102", + "date": "June 14, 2014", + "time": "10:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022

_. _ _|*._ _ _.._ _ * _ _ __ (_.(_)(_]|[ )(_] (_][ | )|(_](_)_) ._| ._| .___.__ ____ ____ __| _/|__| ____ ____ _/ ___\\/ _ \\ / __ | | |/ \\ / ___\\ \\ \\__( <_> ) /_/ | | | | \\/ /_/ > \\___ >____/\\____ | |__|___| /\\___ / \\/ \\/ \\//_____/ .__ _____ _____ |__| ____ ____ ______ \\__ \\ / \\| |/ ___\\ / _ \\/ ___/ / __ \\| Y Y \\ / /_/ > <_> )___ \\ (____ /__|_| /__\\___ / \\____/____ > \\/ \\/ /_____/ \\/ _ _/' _ _ _ '_ _ ( ()(///)(/ (///)/(/()_) _/ _/ __ /\\ \\ __ ___ ___ \\_\\ \\/\\_\\ ___ __ /'___\\ / __`\\ /'_` \\/\\ \\ /' _ `\\ /'_ `\\ /\\ \\__//\\ \\L\\ \\/\\ \\L\\ \\ \\ \\/\\ \\/\\ \\/\\ \\L\\ \\ \\ \\____\\ \\____/\\ \\___,_\\ \\_\\ \\_\\ \\_\\ \\____ \\ \\/____/\\/___/ \\/__,_ /\\/_/\\/_/\\/_/\\/___L\\ \\ /\\____/ \\_/__/ _ _ _/._ _ _ _ _ ._ _ _ /_ /_//_/// //_/ /_|/ / ///_//_/_\\ _/ _/ _ ( ) _ ___ _ _| |(_) ___ __ /'___) /'_`\\ /'_` || |/' _ `\\ /'_ `\\ ( (___ ( (_) )( (_| || || ( ) |( (_) | `\\____)`\\___/'`\\__,_)(_)(_) (_)`\\__ | ( )_) | \\___/' _ _ _ ___ ___ (_) __ _ ___ /'_` )/' _ ` _ `\\| | /'_ `\\ /'_`\\ /',__) ( (_| || ( ) ( ) || |( (_) |( (_) )\\__, \\ `\\__,_)(_) (_) (_)(_)`\\__ |`\\___/'(____/ ( )_) | \\___/' _ |.,_ ,_ . _ (_()(||||(| (|||||(|()_\\ _| _| _ _ _|. _ _ _ _ . _ _ _ (_(_)(_||| )(_) (_|||||(_)(_)_) _/ _/ _ _ _|. _ _ _ _ _ . _ _ _ (_(_)(_||| |(_| (_|| | ||(_|(_)_\\ _| _|
__ __ __ __ __ __ __ / ` / \\ | \\ | |\\ | / _` /\\ |\\/| | / _` / \\ /__` \\__, \\__/ |__/ | | \\| \\__> /~~\\ | | | \\__> \\__/ .__/", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/188517322", + "date": "June 17, 2014", + "time": "9:30PM" + }, + { + "title": "Saturday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": { + "photoCount": 1, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/c/8/2/a/highres_377691242.jpeg" + } + ] + }, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/186906442", + "date": "June 21, 2014", + "time": "10:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": { + "photoCount": 4, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/e/0/f/8/highres_379497592.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/e/1/0/c/highres_379497612.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/e/1/2/a/highres_379497642.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/e/1/3/e/highres_379497662.jpeg" + } + ] + }, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022

_. _ _|*._ _ _.._ _ * _ _ __ (_.(_)(_]|[ )(_] (_][ | )|(_](_)_) ._| ._| .___.__ ____ ____ __| _/|__| ____ ____ _/ ___\\/ _ \\ / __ | | |/ \\ / ___\\ \\ \\__( <_> ) /_/ | | | | \\/ /_/ > \\___ >____/\\____ | |__|___| /\\___ / \\/ \\/ \\//_____/ .__ _____ _____ |__| ____ ____ ______ \\__ \\ / \\| |/ ___\\ / _ \\/ ___/ / __ \\| Y Y \\ / /_/ > <_> )___ \\ (____ /__|_| /__\\___ / \\____/____ > \\/ \\/ /_____/ \\/ _ _/' _ _ _ '_ _ ( ()(///)(/ (///)/(/()_) _/ _/ __ /\\ \\ __ ___ ___ \\_\\ \\/\\_\\ ___ __ /'___\\ / __`\\ /'_` \\/\\ \\ /' _ `\\ /'_ `\\ /\\ \\__//\\ \\L\\ \\/\\ \\L\\ \\ \\ \\/\\ \\/\\ \\/\\ \\L\\ \\ \\ \\____\\ \\____/\\ \\___,_\\ \\_\\ \\_\\ \\_\\ \\____ \\ \\/____/\\/___/ \\/__,_ /\\/_/\\/_/\\/_/\\/___L\\ \\ /\\____/ \\_/__/ _ _ _/._ _ _ _ _ ._ _ _ /_ /_//_/// //_/ /_|/ / ///_//_/_\\ _/ _/ _ ( ) _ ___ _ _| |(_) ___ __ /'___) /'_`\\ /'_` || |/' _ `\\ /'_ `\\ ( (___ ( (_) )( (_| || || ( ) |( (_) | `\\____)`\\___/'`\\__,_)(_)(_) (_)`\\__ | ( )_) | \\___/' _ _ _ ___ ___ (_) __ _ ___ /'_` )/' _ ` _ `\\| | /'_ `\\ /'_`\\ /',__) ( (_| || ( ) ( ) || |( (_) |( (_) )\\__, \\ `\\__,_)(_) (_) (_)(_)`\\__ |`\\___/'(____/ ( )_) | \\___/' _ |.,_ ,_ . _ (_()(||||(| (|||||(|()_\\ _| _| _ _ _|. _ _ _ _ . _ _ _ (_(_)(_||| )(_) (_|||||(_)(_)_) _/ _/ _ _ _|. _ _ _ _ _ . _ _ _ (_(_)(_||| |(_| (_|| | ||(_|(_)_\\ _| _|
__ __ __ __ __ __ __ / ` / \\ | \\ | |\\ | / _` /\\ |\\/| | / _` / \\ /__` \\__, \\__/ |__/ | | \\| \\__> /~~\\ | | | \\__> \\__/ .__/", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/189831802", + "date": "June 24, 2014", + "time": "9:30PM" + }, + { + "title": "Saturday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/190600612", + "date": "June 28, 2014", + "time": "12:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": { + "photoCount": 5, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/a/0/9/8/highres_382121112.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/a/4/e/4/highres_382122212.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/a/6/7/4/highres_382122612.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/a/d/5/e/highres_382124382.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/b/0/4/2/highres_382125122.jpeg" + } + ] + }, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022

_. _ _|*._ _ _.._ _ * _ _ __ (_.(_)(_]|[ )(_] (_][ | )|(_](_)_) ._| ._| .___.__ ____ ____ __| _/|__| ____ ____ _/ ___\\/ _ \\ / __ | | |/ \\ / ___\\ \\ \\__( <_> ) /_/ | | | | \\/ /_/ > \\___ >____/\\____ | |__|___| /\\___ / \\/ \\/ \\//_____/ .__ _____ _____ |__| ____ ____ ______ \\__ \\ / \\| |/ ___\\ / _ \\/ ___/ / __ \\| Y Y \\ / /_/ > <_> )___ \\ (____ /__|_| /__\\___ / \\____/____ > \\/ \\/ /_____/ \\/ _ _/' _ _ _ '_ _ ( ()(///)(/ (///)/(/()_) _/ _/ __ /\\ \\ __ ___ ___ \\_\\ \\/\\_\\ ___ __ /'___\\ / __`\\ /'_` \\/\\ \\ /' _ `\\ /'_ `\\ /\\ \\__//\\ \\L\\ \\/\\ \\L\\ \\ \\ \\/\\ \\/\\ \\/\\ \\L\\ \\ \\ \\____\\ \\____/\\ \\___,_\\ \\_\\ \\_\\ \\_\\ \\____ \\ \\/____/\\/___/ \\/__,_ /\\/_/\\/_/\\/_/\\/___L\\ \\ /\\____/ \\_/__/ _ _ _/._ _ _ _ _ ._ _ _ /_ /_//_/// //_/ /_|/ / ///_//_/_\\ _/ _/ _ ( ) _ ___ _ _| |(_) ___ __ /'___) /'_`\\ /'_` || |/' _ `\\ /'_ `\\ ( (___ ( (_) )( (_| || || ( ) |( (_) | `\\____)`\\___/'`\\__,_)(_)(_) (_)`\\__ | ( )_) | \\___/' _ _ _ ___ ___ (_) __ _ ___ /'_` )/' _ ` _ `\\| | /'_ `\\ /'_`\\ /',__) ( (_| || ( ) ( ) || |( (_) |( (_) )\\__, \\ `\\__,_)(_) (_) (_)(_)`\\__ |`\\___/'(____/ ( )_) | \\___/' _ |.,_ ,_ . _ (_()(||||(| (|||||(|()_\\ _| _| _ _ _|. _ _ _ _ . _ _ _ (_(_)(_||| )(_) (_|||||(_)(_)_) _/ _/ _ _ _|. _ _ _ _ _ . _ _ _ (_(_)(_||| |(_| (_|| | ||(_|(_)_\\ _| _|
__ __ __ __ __ __ __ / ` / \\ | \\ | |\\ | / _` /\\ |\\/| | / _` / \\ /__` \\__, \\__/ |__/ | | \\| \\__> /~~\\ | | | \\__> \\__/ .__/", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/191230312", + "date": "July 01, 2014", + "time": "9:30PM" + }, + { + "title": "Saturday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/190942792", + "date": "July 05, 2014", + "time": "10:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022

_. _ _|*._ _ _.._ _ * _ _ __ (_.(_)(_]|[ )(_] (_][ | )|(_](_)_) ._| ._| .___.__ ____ ____ __| _/|__| ____ ____ _/ ___\\/ _ \\ / __ | | |/ \\ / ___\\ \\ \\__( <_> ) /_/ | | | | \\/ /_/ > \\___ >____/\\____ | |__|___| /\\___ / \\/ \\/ \\//_____/ .__ _____ _____ |__| ____ ____ ______ \\__ \\ / \\| |/ ___\\ / _ \\/ ___/ / __ \\| Y Y \\ / /_/ > <_> )___ \\ (____ /__|_| /__\\___ / \\____/____ > \\/ \\/ /_____/ \\/ _ _/' _ _ _ '_ _ ( ()(///)(/ (///)/(/()_) _/ _/ __ /\\ \\ __ ___ ___ \\_\\ \\/\\_\\ ___ __ /'___\\ / __`\\ /'_` \\/\\ \\ /' _ `\\ /'_ `\\ /\\ \\__//\\ \\L\\ \\/\\ \\L\\ \\ \\ \\/\\ \\/\\ \\/\\ \\L\\ \\ \\ \\____\\ \\____/\\ \\___,_\\ \\_\\ \\_\\ \\_\\ \\____ \\ \\/____/\\/___/ \\/__,_ /\\/_/\\/_/\\/_/\\/___L\\ \\ /\\____/ \\_/__/ _ _ _/._ _ _ _ _ ._ _ _ /_ /_//_/// //_/ /_|/ / ///_//_/_\\ _/ _/ _ ( ) _ ___ _ _| |(_) ___ __ /'___) /'_`\\ /'_` || |/' _ `\\ /'_ `\\ ( (___ ( (_) )( (_| || || ( ) |( (_) | `\\____)`\\___/'`\\__,_)(_)(_) (_)`\\__ | ( )_) | \\___/' _ _ _ ___ ___ (_) __ _ ___ /'_` )/' _ ` _ `\\| | /'_ `\\ /'_`\\ /',__) ( (_| || ( ) ( ) || |( (_) |( (_) )\\__, \\ `\\__,_)(_) (_) (_)(_)`\\__ |`\\___/'(____/ ( )_) | \\___/' _ |.,_ ,_ . _ (_()(||||(| (|||||(|()_\\ _| _| _ _ _|. _ _ _ _ . _ _ _ (_(_)(_||| )(_) (_|||||(_)(_)_) _/ _/ _ _ _|. _ _ _ _ _ . _ _ _ (_(_)(_||| |(_| (_|| | ||(_|(_)_\\ _| _|
__ __ __ __ __ __ __ / ` / \\ | \\ | |\\ | / _` /\\ |\\/| | / _` / \\ /__` \\__, \\__/ |__/ | | \\| \\__> /~~\\ | | | \\__> \\__/ .__/", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/192648472", + "date": "July 08, 2014", + "time": "9:30PM" + }, + { + "title": "Saturday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT7H", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/190583282", + "date": "July 12, 2014", + "time": "7:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": { + "photoCount": 5, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/b/9/5/c/highres_387467452.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/b/9/6/6/highres_387467462.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/b/9/7/0/highres_387467472.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/b/9/7/a/highres_387467482.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/b/9/9/8/highres_387467512.jpeg" + } + ] + }, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022

_. _ _|*._ _ _.._ _ * _ _ __ (_.(_)(_]|[ )(_] (_][ | )|(_](_)_) ._| ._| .___.__ ____ ____ __| _/|__| ____ ____ _/ ___\\/ _ \\ / __ | | |/ \\ / ___\\ \\ \\__( <_> ) /_/ | | | | \\/ /_/ > \\___ >____/\\____ | |__|___| /\\___ / \\/ \\/ \\//_____/ .__ _____ _____ |__| ____ ____ ______ \\__ \\ / \\| |/ ___\\ / _ \\/ ___/ / __ \\| Y Y \\ / /_/ > <_> )___ \\ (____ /__|_| /__\\___ / \\____/____ > \\/ \\/ /_____/ \\/ _ _/' _ _ _ '_ _ ( ()(///)(/ (///)/(/()_) _/ _/ __ /\\ \\ __ ___ ___ \\_\\ \\/\\_\\ ___ __ /'___\\ / __`\\ /'_` \\/\\ \\ /' _ `\\ /'_ `\\ /\\ \\__//\\ \\L\\ \\/\\ \\L\\ \\ \\ \\/\\ \\/\\ \\/\\ \\L\\ \\ \\ \\____\\ \\____/\\ \\___,_\\ \\_\\ \\_\\ \\_\\ \\____ \\ \\/____/\\/___/ \\/__,_ /\\/_/\\/_/\\/_/\\/___L\\ \\ /\\____/ \\_/__/ _ _ _/._ _ _ _ _ ._ _ _ /_ /_//_/// //_/ /_|/ / ///_//_/_\\ _/ _/ _ ( ) _ ___ _ _| |(_) ___ __ /'___) /'_`\\ /'_` || |/' _ `\\ /'_ `\\ ( (___ ( (_) )( (_| || || ( ) |( (_) | `\\____)`\\___/'`\\__,_)(_)(_) (_)`\\__ | ( )_) | \\___/' _ _ _ ___ ___ (_) __ _ ___ /'_` )/' _ ` _ `\\| | /'_ `\\ /'_`\\ /',__) ( (_| || ( ) ( ) || |( (_) |( (_) )\\__, \\ `\\__,_)(_) (_) (_)(_)`\\__ |`\\___/'(____/ ( )_) | \\___/' _ |.,_ ,_ . _ (_()(||||(| (|||||(|()_\\ _| _| _ _ _|. _ _ _ _ . _ _ _ (_(_)(_||| )(_) (_|||||(_)(_)_) _/ _/ _ _ _|. _ _ _ _ _ . _ _ _ (_(_)(_||| |(_| (_|| | ||(_|(_)_\\ _| _|
__ __ __ __ __ __ __ / ` / \\ | \\ | |\\ | / _` /\\ |\\/| | / _` / \\ /__` \\__, \\__/ |__/ | | \\| \\__> /~~\\ | | | \\__> \\__/ .__/", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/193971232", + "date": "July 15, 2014", + "time": "9:30PM" + }, + { + "title": "Saturday CoHacking BBQ (Alex's Bday)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT12H", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/194699832", + "date": "July 19, 2014", + "time": "5:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": { + "photoCount": 5, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/d/a/e/highres_390123502.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/d/b/8/highres_390123512.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/d/c/2/highres_390123522.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/d/c/c/highres_390123532.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/d/e/0/highres_390123552.jpeg" + } + ] + }, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022

_. _ _|*._ _ _.._ _ * _ _ __ (_.(_)(_]|[ )(_] (_][ | )|(_](_)_) ._| ._| .___.__ ____ ____ __| _/|__| ____ ____ _/ ___\\/ _ \\ / __ | | |/ \\ / ___\\ \\ \\__( <_> ) /_/ | | | | \\/ /_/ > \\___ >____/\\____ | |__|___| /\\___ / \\/ \\/ \\//_____/ .__ _____ _____ |__| ____ ____ ______ \\__ \\ / \\| |/ ___\\ / _ \\/ ___/ / __ \\| Y Y \\ / /_/ > <_> )___ \\ (____ /__|_| /__\\___ / \\____/____ > \\/ \\/ /_____/ \\/ _ _/' _ _ _ '_ _ ( ()(///)(/ (///)/(/()_) _/ _/ __ /\\ \\ __ ___ ___ \\_\\ \\/\\_\\ ___ __ /'___\\ / __`\\ /'_` \\/\\ \\ /' _ `\\ /'_ `\\ /\\ \\__//\\ \\L\\ \\/\\ \\L\\ \\ \\ \\/\\ \\/\\ \\/\\ \\L\\ \\ \\ \\____\\ \\____/\\ \\___,_\\ \\_\\ \\_\\ \\_\\ \\____ \\ \\/____/\\/___/ \\/__,_ /\\/_/\\/_/\\/_/\\/___L\\ \\ /\\____/ \\_/__/ _ _ _/._ _ _ _ _ ._ _ _ /_ /_//_/// //_/ /_|/ / ///_//_/_\\ _/ _/ _ ( ) _ ___ _ _| |(_) ___ __ /'___) /'_`\\ /'_` || |/' _ `\\ /'_ `\\ ( (___ ( (_) )( (_| || || ( ) |( (_) | `\\____)`\\___/'`\\__,_)(_)(_) (_)`\\__ | ( )_) | \\___/' _ _ _ ___ ___ (_) __ _ ___ /'_` )/' _ ` _ `\\| | /'_ `\\ /'_`\\ /',__) ( (_| || ( ) ( ) || |( (_) |( (_) )\\__, \\ `\\__,_)(_) (_) (_)(_)`\\__ |`\\___/'(____/ ( )_) | \\___/' _ |.,_ ,_ . _ (_()(||||(| (|||||(|()_\\ _| _| _ _ _|. _ _ _ _ . _ _ _ (_(_)(_||| )(_) (_|||||(_)(_)_) _/ _/ _ _ _|. _ _ _ _ _ . _ _ _ (_(_)(_||| |(_| (_|| | ||(_|(_)_\\ _| _|
__ __ __ __ __ __ __ / ` / \\ | \\ | |\\ | / _` /\\ |\\/| | / _` / \\ /__` \\__, \\__/ |__/ | | \\| \\__> /~~\\ | | | \\__> \\__/ .__/", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/195312292", + "date": "July 22, 2014", + "time": "9:30PM" + }, + { + "title": "Saturday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": { + "photoCount": 10, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/d/a/e/0/highres_391016032.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/d/a/f/e/highres_391016062.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/d/b/2/6/highres_391016102.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/d/b/4/e/highres_391016142.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/d/b/6/c/highres_391016172.jpeg" + } + ] + }, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/195827912", + "date": "July 26, 2014", + "time": "10:00PM" + }, + { + "title": "This week only Wednesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT5H30M", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022

_. _ _|*._ _ _.._ _ * _ _ __ (_.(_)(_]|[ )(_] (_][ | )|(_](_)_) ._| ._| .___.__ ____ ____ __| _/|__| ____ ____ _/ ___\\/ _ \\ / __ | | |/ \\ / ___\\ \\ \\__( <_> ) /_/ | | | | \\/ /_/ > \\___ >____/\\____ | |__|___| /\\___ / \\/ \\/ \\//_____/ .__ _____ _____ |__| ____ ____ ______ \\__ \\ / \\| |/ ___\\ / _ \\/ ___/ / __ \\| Y Y \\ / /_/ > <_> )___ \\ (____ /__|_| /__\\___ / \\____/____ > \\/ \\/ /_____/ \\/ _ _/' _ _ _ '_ _ ( ()(///)(/ (///)/(/()_) _/ _/ __ /\\ \\ __ ___ ___ \\_\\ \\/\\_\\ ___ __ /'___\\ / __`\\ /'_` \\/\\ \\ /' _ `\\ /'_ `\\ /\\ \\__//\\ \\L\\ \\/\\ \\L\\ \\ \\ \\/\\ \\/\\ \\/\\ \\L\\ \\ \\ \\____\\ \\____/\\ \\___,_\\ \\_\\ \\_\\ \\_\\ \\____ \\ \\/____/\\/___/ \\/__,_ /\\/_/\\/_/\\/_/\\/___L\\ \\ /\\____/ \\_/__/ _ _ _/._ _ _ _ _ ._ _ _ /_ /_//_/// //_/ /_|/ / ///_//_/_\\ _/ _/ _ ( ) _ ___ _ _| |(_) ___ __ /'___) /'_`\\ /'_` || |/' _ `\\ /'_ `\\ ( (___ ( (_) )( (_| || || ( ) |( (_) | `\\____)`\\___/'`\\__,_)(_)(_) (_)`\\__ | ( )_) | \\___/' _ _ _ ___ ___ (_) __ _ ___ /'_` )/' _ ` _ `\\| | /'_ `\\ /'_`\\ /',__) ( (_| || ( ) ( ) || |( (_) |( (_) )\\__, \\ `\\__,_)(_) (_) (_)(_)`\\__ |`\\___/'(____/ ( )_) | \\___/' _ |.,_ ,_ . _ (_()(||||(| (|||||(|()_\\ _| _| _ _ _|. _ _ _ _ . _ _ _ (_(_)(_||| )(_) (_|||||(_)(_)_) _/ _/ _ _ _|. _ _ _ _ _ . _ _ _ (_(_)(_||| |(_| (_|| | ||(_|(_)_\\ _| _|
__ __ __ __ __ __ __ / ` / \\ | \\ | |\\ | / _` /\\ |\\/| | / _` / \\ /__` \\__, \\__/ |__/ | | \\| \\__> /~~\\ | | | \\__> \\__/ .__/", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/196648942", + "date": "July 30, 2014", + "time": "9:30PM" + }, + { + "title": "Saturday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": { + "photoCount": 3, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/5/1/1/0/highres_403760752.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/5/1/5/6/highres_403760822.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/5/2/1/e/highres_403761022.jpeg" + } + ] + }, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/195827922", + "date": "August 02, 2014", + "time": "10:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "www.codingamigos.com

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022

_. _ _|*._ _ _.._ _ * _ _ __ (_.(_)(_]|[ )(_] (_][ | )|(_](_)_) ._| ._| .___.__ ____ ____ __| _/|__| ____ ____ _/ ___\\/ _ \\ / __ | | |/ \\ / ___\\ \\ \\__( <_> ) /_/ | | | | \\/ /_/ > \\___ >____/\\____ | |__|___| /\\___ / \\/ \\/ \\//_____/ .__ _____ _____ |__| ____ ____ ______ \\__ \\ / \\| |/ ___\\ / _ \\/ ___/ / __ \\| Y Y \\ / /_/ > <_> )___ \\ (____ /__|_| /__\\___ / \\____/____ > \\/ \\/ /_____/ \\/ _ _/' _ _ _ '_ _ ( ()(///)(/ (///)/(/()_) _/ _/ __ /\\ \\ __ ___ ___ \\_\\ \\/\\_\\ ___ __ /'___\\ / __`\\ /'_` \\/\\ \\ /' _ `\\ /'_ `\\ /\\ \\__//\\ \\L\\ \\/\\ \\L\\ \\ \\ \\/\\ \\/\\ \\/\\ \\L\\ \\ \\ \\____\\ \\____/\\ \\___,_\\ \\_\\ \\_\\ \\_\\ \\____ \\ \\/____/\\/___/ \\/__,_ /\\/_/\\/_/\\/_/\\/___L\\ \\ /\\____/ \\_/__/ _ _ _/._ _ _ _ _ ._ _ _ /_ /_//_/// //_/ /_|/ / ///_//_/_\\ _/ _/ _ ( ) _ ___ _ _| |(_) ___ __ /'___) /'_`\\ /'_` || |/' _ `\\ /'_ `\\ ( (___ ( (_) )( (_| || || ( ) |( (_) | `\\____)`\\___/'`\\__,_)(_)(_) (_)`\\__ | ( )_) | \\___/' _ _ _ ___ ___ (_) __ _ ___ /'_` )/' _ ` _ `\\| | /'_ `\\ /'_`\\ /',__) ( (_| || ( ) ( ) || |( (_) |( (_) )\\__, \\ `\\__,_)(_) (_) (_)(_)`\\__ |`\\___/'(____/ ( )_) | \\___/' _ |.,_ ,_ . _ (_()(||||(| (|||||(|()_\\ _| _| _ _ _|. _ _ _ _ . _ _ _ (_(_)(_||| )(_) (_|||||(_)(_)_) _/ _/ _ _ _|. _ _ _ _ _ . _ _ _ (_(_)(_||| |(_| (_|| | ||(_|(_)_\\ _| _|
__ __ __ __ __ __ __ / ` / \\ | \\ | |\\ | / _` /\\ |\\/| | / _` / \\ /__` \\__, \\__/ |__/ | | \\| \\__> /~~\\ | | | \\__> \\__/ .__/", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/198009192", + "date": "August 05, 2014", + "time": "9:30PM" + }, + { + "title": "Saturday - Hacking for Gaza", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT9H", + "photoAlbum": null, + "desc": "This Saturday there will be no usual co-hacking. But you can join Hacking for Gaza event that will be on whole Saturday (from 10h to 19h) in Co.Up.

See you today or next Tuesday:)

More about Hacking for Gaza: http://attending.io/events/crisiscamp-berlin-hacking-4-gaza", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/198774712", + "date": "August 09, 2014", + "time": "12:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022

_. _ _|*._ _ _.._ _ * _ _ __ (_.(_)(_]|[ )(_] (_][ | )|(_](_)_) ._| ._| .___.__ ____ ____ __| _/|__| ____ ____ _/ ___\\/ _ \\ / __ | | |/ \\ / ___\\ \\ \\__( <_> ) /_/ | | | | \\/ /_/ > \\___ >____/\\____ | |__|___| /\\___ / \\/ \\/ \\//_____/ .__ _____ _____ |__| ____ ____ ______ \\__ \\ / \\| |/ ___\\ / _ \\/ ___/ / __ \\| Y Y \\ / /_/ > <_> )___ \\ (____ /__|_| /__\\___ / \\____/____ > \\/ \\/ /_____/ \\/ _ _/' _ _ _ '_ _ ( ()(///)(/ (///)/(/()_) _/ _/ __ /\\ \\ __ ___ ___ \\_\\ \\/\\_\\ ___ __ /'___\\ / __`\\ /'_` \\/\\ \\ /' _ `\\ /'_ `\\ /\\ \\__//\\ \\L\\ \\/\\ \\L\\ \\ \\ \\/\\ \\/\\ \\/\\ \\L\\ \\ \\ \\____\\ \\____/\\ \\___,_\\ \\_\\ \\_\\ \\_\\ \\____ \\ \\/____/\\/___/ \\/__,_ /\\/_/\\/_/\\/_/\\/___L\\ \\ /\\____/ \\_/__/ _ _ _/._ _ _ _ _ ._ _ _ /_ /_//_/// //_/ /_|/ / ///_//_/_\\ _/ _/ _ ( ) _ ___ _ _| |(_) ___ __ /'___) /'_`\\ /'_` || |/' _ `\\ /'_ `\\ ( (___ ( (_) )( (_| || || ( ) |( (_) | `\\____)`\\___/'`\\__,_)(_)(_) (_)`\\__ | ( )_) | \\___/' _ _ _ ___ ___ (_) __ _ ___ /'_` )/' _ ` _ `\\| | /'_ `\\ /'_`\\ /',__) ( (_| || ( ) ( ) || |( (_) |( (_) )\\__, \\ `\\__,_)(_) (_) (_)(_)`\\__ |`\\___/'(____/ ( )_) | \\___/' _ |.,_ ,_ . _ (_()(||||(| (|||||(|()_\\ _| _| _ _ _|. _ _ _ _ . _ _ _ (_(_)(_||| )(_) (_|||||(_)(_)_) _/ _/ _ _ _|. _ _ _ _ _ . _ _ _ (_(_)(_||| |(_| (_|| | ||(_|(_)_\\ _| _|
__ __ __ __ __ __ __ / ` / \\ | \\ | |\\ | / _` /\\ |\\/| | / _` / \\ /__` \\__, \\__/ |__/ | | \\| \\__> /~~\\ | | | \\__> \\__/ .__/", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/199021832", + "date": "August 12, 2014", + "time": "9:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "http://codingamigos.com

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/197354382", + "date": "August 15, 2014", + "time": "10:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": { + "photoCount": 3, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/4/d/6/e/highres_403759822.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/4/d/b/4/highres_403759892.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/4/d/f/a/highres_403759962.jpeg" + } + ] + }, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022

_. _ _|*._ _ _.._ _ * _ _ __ (_.(_)(_]|[ )(_] (_][ | )|(_](_)_) ._| ._| .___.__ ____ ____ __| _/|__| ____ ____ _/ ___\\/ _ \\ / __ | | |/ \\ / ___\\ \\ \\__( <_> ) /_/ | | | | \\/ /_/ > \\___ >____/\\____ | |__|___| /\\___ / \\/ \\/ \\//_____/ .__ _____ _____ |__| ____ ____ ______ \\__ \\ / \\| |/ ___\\ / _ \\/ ___/ / __ \\| Y Y \\ / /_/ > <_> )___ \\ (____ /__|_| /__\\___ / \\____/____ > \\/ \\/ /_____/ \\/ _ _/' _ _ _ '_ _ ( ()(///)(/ (///)/(/()_) _/ _/ __ /\\ \\ __ ___ ___ \\_\\ \\/\\_\\ ___ __ /'___\\ / __`\\ /'_` \\/\\ \\ /' _ `\\ /'_ `\\ /\\ \\__//\\ \\L\\ \\/\\ \\L\\ \\ \\ \\/\\ \\/\\ \\/\\ \\L\\ \\ \\ \\____\\ \\____/\\ \\___,_\\ \\_\\ \\_\\ \\_\\ \\____ \\ \\/____/\\/___/ \\/__,_ /\\/_/\\/_/\\/_/\\/___L\\ \\ /\\____/ \\_/__/ _ _ _/._ _ _ _ _ ._ _ _ /_ /_//_/// //_/ /_|/ / ///_//_/_\\ _/ _/ _ ( ) _ ___ _ _| |(_) ___ __ /'___) /'_`\\ /'_` || |/' _ `\\ /'_ `\\ ( (___ ( (_) )( (_| || || ( ) |( (_) | `\\____)`\\___/'`\\__,_)(_)(_) (_)`\\__ | ( )_) | \\___/' _ _ _ ___ ___ (_) __ _ ___ /'_` )/' _ ` _ `\\| | /'_ `\\ /'_`\\ /',__) ( (_| || ( ) ( ) || |( (_) |( (_) )\\__, \\ `\\__,_)(_) (_) (_)(_)`\\__ |`\\___/'(____/ ( )_) | \\___/' _ |.,_ ,_ . _ (_()(||||(| (|||||(|()_\\ _| _| _ _ _|. _ _ _ _ . _ _ _ (_(_)(_||| )(_) (_|||||(_)(_)_) _/ _/ _ _ _|. _ _ _ _ _ . _ _ _ (_(_)(_||| |(_| (_|| | ||(_|(_)_\\ _| _|
__ __ __ __ __ __ __ / ` / \\ | \\ | |\\ | / _` /\\ |\\/| | / _` / \\ /__` \\__, \\__/ |__/ | | \\| \\__> /~~\\ | | | \\__> \\__/ .__/", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/200759342", + "date": "August 19, 2014", + "time": "9:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": { + "photoCount": 1, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/4/d/1/e/highres_403759742.jpeg" + } + ] + }, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/200260192", + "date": "August 22, 2014", + "time": "10:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": { + "photoCount": 5, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/4/a/5/8/highres_403759032.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/4/b/8/e/highres_403759342.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/4/b/f/2/highres_403759442.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/4/c/4/c/highres_403759532.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/4/c/7/e/highres_403759582.jpeg" + } + ] + }, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022

_. _ _|*._ _ _.._ _ * _ _ __ (_.(_)(_]|[ )(_] (_][ | )|(_](_)_) ._| ._| .___.__ ____ ____ __| _/|__| ____ ____ _/ ___\\/ _ \\ / __ | | |/ \\ / ___\\ \\ \\__( <_> ) /_/ | | | | \\/ /_/ > \\___ >____/\\____ | |__|___| /\\___ / \\/ \\/ \\//_____/ .__ _____ _____ |__| ____ ____ ______ \\__ \\ / \\| |/ ___\\ / _ \\/ ___/ / __ \\| Y Y \\ / /_/ > <_> )___ \\ (____ /__|_| /__\\___ / \\____/____ > \\/ \\/ /_____/ \\/ _ _/' _ _ _ '_ _ ( ()(///)(/ (///)/(/()_) _/ _/ __ /\\ \\ __ ___ ___ \\_\\ \\/\\_\\ ___ __ /'___\\ / __`\\ /'_` \\/\\ \\ /' _ `\\ /'_ `\\ /\\ \\__//\\ \\L\\ \\/\\ \\L\\ \\ \\ \\/\\ \\/\\ \\/\\ \\L\\ \\ \\ \\____\\ \\____/\\ \\___,_\\ \\_\\ \\_\\ \\_\\ \\____ \\ \\/____/\\/___/ \\/__,_ /\\/_/\\/_/\\/_/\\/___L\\ \\ /\\____/ \\_/__/ _ _ _/._ _ _ _ _ ._ _ _ /_ /_//_/// //_/ /_|/ / ///_//_/_\\ _/ _/ _ ( ) _ ___ _ _| |(_) ___ __ /'___) /'_`\\ /'_` || |/' _ `\\ /'_ `\\ ( (___ ( (_) )( (_| || || ( ) |( (_) | `\\____)`\\___/'`\\__,_)(_)(_) (_)`\\__ | ( )_) | \\___/' _ _ _ ___ ___ (_) __ _ ___ /'_` )/' _ ` _ `\\| | /'_ `\\ /'_`\\ /',__) ( (_| || ( ) ( ) || |( (_) |( (_) )\\__, \\ `\\__,_)(_) (_) (_)(_)`\\__ |`\\___/'(____/ ( )_) | \\___/' _ |.,_ ,_ . _ (_()(||||(| (|||||(|()_\\ _| _| _ _ _|. _ _ _ _ . _ _ _ (_(_)(_||| )(_) (_|||||(_)(_)_) _/ _/ _ _ _|. _ _ _ _ _ . _ _ _ (_(_)(_||| |(_| (_|| | ||(_|(_)_\\ _| _|
__ __ __ __ __ __ __ / ` / \\ | \\ | |\\ | / _` /\\ |\\/| | / _` / \\ /__` \\__, \\__/ |__/ | | \\| \\__> /~~\\ | | | \\__> \\__/ .__/", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/202137742", + "date": "August 26, 2014", + "time": "9:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": { + "photoCount": 2, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/4/9/d/6/highres_403758902.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/4/9/f/e/highres_403758942.jpeg" + } + ] + }, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/200260272", + "date": "August 29, 2014", + "time": "10:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022

_. _ _|*._ _ _.._ _ * _ _ __ (_.(_)(_]|[ )(_] (_][ | )|(_](_)_) ._| ._| .___.__ ____ ____ __| _/|__| ____ ____ _/ ___\\/ _ \\ / __ | | |/ \\ / ___\\ \\ \\__( <_> ) /_/ | | | | \\/ /_/ > \\___ >____/\\____ | |__|___| /\\___ / \\/ \\/ \\//_____/ .__ _____ _____ |__| ____ ____ ______ \\__ \\ / \\| |/ ___\\ / _ \\/ ___/ / __ \\| Y Y \\ / /_/ > <_> )___ \\ (____ /__|_| /__\\___ / \\____/____ > \\/ \\/ /_____/ \\/ _ _/' _ _ _ '_ _ ( ()(///)(/ (///)/(/()_) _/ _/ __ /\\ \\ __ ___ ___ \\_\\ \\/\\_\\ ___ __ /'___\\ / __`\\ /'_` \\/\\ \\ /' _ `\\ /'_ `\\ /\\ \\__//\\ \\L\\ \\/\\ \\L\\ \\ \\ \\/\\ \\/\\ \\/\\ \\L\\ \\ \\ \\____\\ \\____/\\ \\___,_\\ \\_\\ \\_\\ \\_\\ \\____ \\ \\/____/\\/___/ \\/__,_ /\\/_/\\/_/\\/_/\\/___L\\ \\ /\\____/ \\_/__/ _ _ _/._ _ _ _ _ ._ _ _ /_ /_//_/// //_/ /_|/ / ///_//_/_\\ _/ _/ _ ( ) _ ___ _ _| |(_) ___ __ /'___) /'_`\\ /'_` || |/' _ `\\ /'_ `\\ ( (___ ( (_) )( (_| || || ( ) |( (_) | `\\____)`\\___/'`\\__,_)(_)(_) (_)`\\__ | ( )_) | \\___/' _ _ _ ___ ___ (_) __ _ ___ /'_` )/' _ ` _ `\\| | /'_ `\\ /'_`\\ /',__) ( (_| || ( ) ( ) || |( (_) |( (_) )\\__, \\ `\\__,_)(_) (_) (_)(_)`\\__ |`\\___/'(____/ ( )_) | \\___/' _ |.,_ ,_ . _ (_()(||||(| (|||||(|()_\\ _| _| _ _ _|. _ _ _ _ . _ _ _ (_(_)(_||| )(_) (_|||||(_)(_)_) _/ _/ _ _ _|. _ _ _ _ _ . _ _ _ (_(_)(_||| |(_| (_|| | ||(_|(_)_\\ _| _|
__ __ __ __ __ __ __ / ` / \\ | \\ | |\\ | / _` /\\ |\\/| | / _` / \\ /__` \\__, \\__/ |__/ | | \\| \\__> /~~\\ | | | \\__> \\__/ .__/", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/203525652", + "date": "September 02, 2014", + "time": "9:30PM" + }, + { + "title": "Saturday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/204314382", + "date": "September 06, 2014", + "time": "10:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT27H", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022

_. _ _|*._ _ _.._ _ * _ _ __ (_.(_)(_]|[ )(_] (_][ | )|(_](_)_) ._| ._| .___.__ ____ ____ __| _/|__| ____ ____ _/ ___\\/ _ \\ / __ | | |/ \\ / ___\\ \\ \\__( <_> ) /_/ | | | | \\/ /_/ > \\___ >____/\\____ | |__|___| /\\___ / \\/ \\/ \\//_____/ .__ _____ _____ |__| ____ ____ ______ \\__ \\ / \\| |/ ___\\ / _ \\/ ___/ / __ \\| Y Y \\ / /_/ > <_> )___ \\ (____ /__|_| /__\\___ / \\____/____ > \\/ \\/ /_____/ \\/ _ _/' _ _ _ '_ _ ( ()(///)(/ (///)/(/()_) _/ _/ __ /\\ \\ __ ___ ___ \\_\\ \\/\\_\\ ___ __ /'___\\ / __`\\ /'_` \\/\\ \\ /' _ `\\ /'_ `\\ /\\ \\__//\\ \\L\\ \\/\\ \\L\\ \\ \\ \\/\\ \\/\\ \\/\\ \\L\\ \\ \\ \\____\\ \\____/\\ \\___,_\\ \\_\\ \\_\\ \\_\\ \\____ \\ \\/____/\\/___/ \\/__,_ /\\/_/\\/_/\\/_/\\/___L\\ \\ /\\____/ \\_/__/ _ _ _/._ _ _ _ _ ._ _ _ /_ /_//_/// //_/ /_|/ / ///_//_/_\\ _/ _/ _ ( ) _ ___ _ _| |(_) ___ __ /'___) /'_`\\ /'_` || |/' _ `\\ /'_ `\\ ( (___ ( (_) )( (_| || || ( ) |( (_) | `\\____)`\\___/'`\\__,_)(_)(_) (_)`\\__ | ( )_) | \\___/' _ _ _ ___ ___ (_) __ _ ___ /'_` )/' _ ` _ `\\| | /'_ `\\ /'_`\\ /',__) ( (_| || ( ) ( ) || |( (_) |( (_) )\\__, \\ `\\__,_)(_) (_) (_)(_)`\\__ |`\\___/'(____/ ( )_) | \\___/' _ |.,_ ,_ . _ (_()(||||(| (|||||(|()_\\ _| _| _ _ _|. _ _ _ _ . _ _ _ (_(_)(_||| )(_) (_|||||(_)(_)_) _/ _/ _ _ _|. _ _ _ _ _ . _ _ _ (_(_)(_||| |(_| (_|| | ||(_|(_)_\\ _| _|
__ __ __ __ __ __ __ / ` / \\ | \\ | |\\ | / _` /\\ |\\/| | / _` / \\ /__` \\__, \\__/ |__/ | | \\| \\__> /~~\\ | | | \\__> \\__/ .__/", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/204973412", + "date": "September 09, 2014", + "time": "10:00PM" + }, + { + "title": "Saturday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/205802522", + "date": "September 13, 2014", + "time": "10:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022

_. _ _|*._ _ _.._ _ * _ _ __ (_.(_)(_]|[ )(_] (_][ | )|(_](_)_) ._| ._| .___.__ ____ ____ __| _/|__| ____ ____ _/ ___\\/ _ \\ / __ | | |/ \\ / ___\\ \\ \\__( <_> ) /_/ | | | | \\/ /_/ > \\___ >____/\\____ | |__|___| /\\___ / \\/ \\/ \\//_____/ .__ _____ _____ |__| ____ ____ ______ \\__ \\ / \\| |/ ___\\ / _ \\/ ___/ / __ \\| Y Y \\ / /_/ > <_> )___ \\ (____ /__|_| /__\\___ / \\____/____ > \\/ \\/ /_____/ \\/ _ _/' _ _ _ '_ _ ( ()(///)(/ (///)/(/()_) _/ _/ __ /\\ \\ __ ___ ___ \\_\\ \\/\\_\\ ___ __ /'___\\ / __`\\ /'_` \\/\\ \\ /' _ `\\ /'_ `\\ /\\ \\__//\\ \\L\\ \\/\\ \\L\\ \\ \\ \\/\\ \\/\\ \\/\\ \\L\\ \\ \\ \\____\\ \\____/\\ \\___,_\\ \\_\\ \\_\\ \\_\\ \\____ \\ \\/____/\\/___/ \\/__,_ /\\/_/\\/_/\\/_/\\/___L\\ \\ /\\____/ \\_/__/ _ _ _/._ _ _ _ _ ._ _ _ /_ /_//_/// //_/ /_|/ / ///_//_/_\\ _/ _/ _ ( ) _ ___ _ _| |(_) ___ __ /'___) /'_`\\ /'_` || |/' _ `\\ /'_ `\\ ( (___ ( (_) )( (_| || || ( ) |( (_) | `\\____)`\\___/'`\\__,_)(_)(_) (_)`\\__ | ( )_) | \\___/' _ _ _ ___ ___ (_) __ _ ___ /'_` )/' _ ` _ `\\| | /'_ `\\ /'_`\\ /',__) ( (_| || ( ) ( ) || |( (_) |( (_) )\\__, \\ `\\__,_)(_) (_) (_)(_)`\\__ |`\\___/'(____/ ( )_) | \\___/' _ |.,_ ,_ . _ (_()(||||(| (|||||(|()_\\ _| _| _ _ _|. _ _ _ _ . _ _ _ (_(_)(_||| )(_) (_|||||(_)(_)_) _/ _/ _ _ _|. _ _ _ _ _ . _ _ _ (_(_)(_||| |(_| (_|| | ||(_|(_)_\\ _| _|
__ __ __ __ __ __ __ / ` / \\ | \\ | |\\ | / _` /\\ |\\/| | / _` / \\ /__` \\__, \\__/ |__/ | | \\| \\__> /~~\\ | | | \\__> \\__/ .__/", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/206442852", + "date": "September 16, 2014", + "time": "9:30PM" + }, + { + "title": "Saturday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/207234592", + "date": "September 20, 2014", + "time": "10:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022

_. _ _|*._ _ _.._ _ * _ _ __ (_.(_)(_]|[ )(_] (_][ | )|(_](_)_) ._| ._| .___.__ ____ ____ __| _/|__| ____ ____ _/ ___\\/ _ \\ / __ | | |/ \\ / ___\\ \\ \\__( <_> ) /_/ | | | | \\/ /_/ > \\___ >____/\\____ | |__|___| /\\___ / \\/ \\/ \\//_____/ .__ _____ _____ |__| ____ ____ ______ \\__ \\ / \\| |/ ___\\ / _ \\/ ___/ / __ \\| Y Y \\ / /_/ > <_> )___ \\ (____ /__|_| /__\\___ / \\____/____ > \\/ \\/ /_____/ \\/ _ _/' _ _ _ '_ _ ( ()(///)(/ (///)/(/()_) _/ _/ __ /\\ \\ __ ___ ___ \\_\\ \\/\\_\\ ___ __ /'___\\ / __`\\ /'_` \\/\\ \\ /' _ `\\ /'_ `\\ /\\ \\__//\\ \\L\\ \\/\\ \\L\\ \\ \\ \\/\\ \\/\\ \\/\\ \\L\\ \\ \\ \\____\\ \\____/\\ \\___,_\\ \\_\\ \\_\\ \\_\\ \\____ \\ \\/____/\\/___/ \\/__,_ /\\/_/\\/_/\\/_/\\/___L\\ \\ /\\____/ \\_/__/ _ _ _/._ _ _ _ _ ._ _ _ /_ /_//_/// //_/ /_|/ / ///_//_/_\\ _/ _/ _ ( ) _ ___ _ _| |(_) ___ __ /'___) /'_`\\ /'_` || |/' _ `\\ /'_ `\\ ( (___ ( (_) )( (_| || || ( ) |( (_) | `\\____)`\\___/'`\\__,_)(_)(_) (_)`\\__ | ( )_) | \\___/' _ _ _ ___ ___ (_) __ _ ___ /'_` )/' _ ` _ `\\| | /'_ `\\ /'_`\\ /',__) ( (_| || ( ) ( ) || |( (_) |( (_) )\\__, \\ `\\__,_)(_) (_) (_)(_)`\\__ |`\\___/'(____/ ( )_) | \\___/' _ |.,_ ,_ . _ (_()(||||(| (|||||(|()_\\ _| _| _ _ _|. _ _ _ _ . _ _ _ (_(_)(_||| )(_) (_|||||(_)(_)_) _/ _/ _ _ _|. _ _ _ _ _ . _ _ _ (_(_)(_||| |(_| (_|| | ||(_|(_)_\\ _| _|
__ __ __ __ __ __ __ / ` / \\ | \\ | |\\ | / _` /\\ |\\/| | / _` / \\ /__` \\__, \\__/ |__/ | | \\| \\__> /~~\\ | | | \\__> \\__/ .__/", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/207789552", + "date": "September 23, 2014", + "time": "9:30PM" + }, + { + "title": "Saturday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/208633602", + "date": "September 27, 2014", + "time": "10:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022

_. _ _|*._ _ _.._ _ * _ _ __ (_.(_)(_]|[ )(_] (_][ | )|(_](_)_) ._| ._| .___.__ ____ ____ __| _/|__| ____ ____ _/ ___\\/ _ \\ / __ | | |/ \\ / ___\\ \\ \\__( <_> ) /_/ | | | | \\/ /_/ > \\___ >____/\\____ | |__|___| /\\___ / \\/ \\/ \\//_____/ .__ _____ _____ |__| ____ ____ ______ \\__ \\ / \\| |/ ___\\ / _ \\/ ___/ / __ \\| Y Y \\ / /_/ > <_> )___ \\ (____ /__|_| /__\\___ / \\____/____ > \\/ \\/ /_____/ \\/ _ _/' _ _ _ '_ _ ( ()(///)(/ (///)/(/()_) _/ _/ __ /\\ \\ __ ___ ___ \\_\\ \\/\\_\\ ___ __ /'___\\ / __`\\ /'_` \\/\\ \\ /' _ `\\ /'_ `\\ /\\ \\__//\\ \\L\\ \\/\\ \\L\\ \\ \\ \\/\\ \\/\\ \\/\\ \\L\\ \\ \\ \\____\\ \\____/\\ \\___,_\\ \\_\\ \\_\\ \\_\\ \\____ \\ \\/____/\\/___/ \\/__,_ /\\/_/\\/_/\\/_/\\/___L\\ \\ /\\____/ \\_/__/ _ _ _/._ _ _ _ _ ._ _ _ /_ /_//_/// //_/ /_|/ / ///_//_/_\\ _/ _/ _ ( ) _ ___ _ _| |(_) ___ __ /'___) /'_`\\ /'_` || |/' _ `\\ /'_ `\\ ( (___ ( (_) )( (_| || || ( ) |( (_) | `\\____)`\\___/'`\\__,_)(_)(_) (_)`\\__ | ( )_) | \\___/' _ _ _ ___ ___ (_) __ _ ___ /'_` )/' _ ` _ `\\| | /'_ `\\ /'_`\\ /',__) ( (_| || ( ) ( ) || |( (_) |( (_) )\\__, \\ `\\__,_)(_) (_) (_)(_)`\\__ |`\\___/'(____/ ( )_) | \\___/' _ |.,_ ,_ . _ (_()(||||(| (|||||(|()_\\ _| _| _ _ _|. _ _ _ _ . _ _ _ (_(_)(_||| )(_) (_|||||(_)(_)_) _/ _/ _ _ _|. _ _ _ _ _ . _ _ _ (_(_)(_||| |(_| (_|| | ||(_|(_)_\\ _| _|
__ __ __ __ __ __ __ / ` / \\ | \\ | |\\ | / _` /\\ |\\/| | / _` / \\ /__` \\__, \\__/ |__/ | | \\| \\__> /~~\\ | | | \\__> \\__/ .__/", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/210203332", + "date": "September 30, 2014", + "time": "9:30PM" + }, + { + "title": "Saturday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/210080202", + "date": "October 04, 2014", + "time": "10:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022

_. _ _|*._ _ _.._ _ * _ _ __ (_.(_)(_]|[ )(_] (_][ | )|(_](_)_) ._| ._| .___.__ ____ ____ __| _/|__| ____ ____ _/ ___\\/ _ \\ / __ | | |/ \\ / ___\\ \\ \\__( <_> ) /_/ | | | | \\/ /_/ > \\___ >____/\\____ | |__|___| /\\___ / \\/ \\/ \\//_____/ .__ _____ _____ |__| ____ ____ ______ \\__ \\ / \\| |/ ___\\ / _ \\/ ___/ / __ \\| Y Y \\ / /_/ > <_> )___ \\ (____ /__|_| /__\\___ / \\____/____ > \\/ \\/ /_____/ \\/ _ _/' _ _ _ '_ _ ( ()(///)(/ (///)/(/()_) _/ _/ __ /\\ \\ __ ___ ___ \\_\\ \\/\\_\\ ___ __ /'___\\ / __`\\ /'_` \\/\\ \\ /' _ `\\ /'_ `\\ /\\ \\__//\\ \\L\\ \\/\\ \\L\\ \\ \\ \\/\\ \\/\\ \\/\\ \\L\\ \\ \\ \\____\\ \\____/\\ \\___,_\\ \\_\\ \\_\\ \\_\\ \\____ \\ \\/____/\\/___/ \\/__,_ /\\/_/\\/_/\\/_/\\/___L\\ \\ /\\____/ \\_/__/ _ _ _/._ _ _ _ _ ._ _ _ /_ /_//_/// //_/ /_|/ / ///_//_/_\\ _/ _/ _ ( ) _ ___ _ _| |(_) ___ __ /'___) /'_`\\ /'_` || |/' _ `\\ /'_ `\\ ( (___ ( (_) )( (_| || || ( ) |( (_) | `\\____)`\\___/'`\\__,_)(_)(_) (_)`\\__ | ( )_) | \\___/' _ _ _ ___ ___ (_) __ _ ___ /'_` )/' _ ` _ `\\| | /'_ `\\ /'_`\\ /',__) ( (_| || ( ) ( ) || |( (_) |( (_) )\\__, \\ `\\__,_)(_) (_) (_)(_)`\\__ |`\\___/'(____/ ( )_) | \\___/' _ |.,_ ,_ . _ (_()(||||(| (|||||(|()_\\ _| _| _ _ _|. _ _ _ _ . _ _ _ (_(_)(_||| )(_) (_|||||(_)(_)_) _/ _/ _ _ _|. _ _ _ _ _ . _ _ _ (_(_)(_||| |(_| (_|| | ||(_|(_)_\\ _| _|
__ __ __ __ __ __ __ / ` / \\ | \\ | |\\ | / _` /\\ |\\/| | / _` / \\ /__` \\__, \\__/ |__/ | | \\| \\__> /~~\\ | | | \\__> \\__/ .__/", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/210787232", + "date": "October 07, 2014", + "time": "9:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT32H", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/186906412", + "date": "October 10, 2014", + "time": "10:00PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/211594982", + "date": "October 10, 2014", + "time": "10:00PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT32H", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/212249882", + "date": "October 10, 2014", + "time": "10:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": { + "photoCount": 3, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/2/b/0/e/highres_421571022.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/2/b/2/c/highres_421571052.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/2/b/4/0/highres_421571072.jpeg" + } + ] + }, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022

_. _ _|*._ _ _.._ _ * _ _ __ (_.(_)(_]|[ )(_] (_][ | )|(_](_)_) ._| ._| .___.__ ____ ____ __| _/|__| ____ ____ _/ ___\\/ _ \\ / __ | | |/ \\ / ___\\ \\ \\__( <_> ) /_/ | | | | \\/ /_/ > \\___ >____/\\____ | |__|___| /\\___ / \\/ \\/ \\//_____/ .__ _____ _____ |__| ____ ____ ______ \\__ \\ / \\| |/ ___\\ / _ \\/ ___/ / __ \\| Y Y \\ / /_/ > <_> )___ \\ (____ /__|_| /__\\___ / \\____/____ > \\/ \\/ /_____/ \\/ _ _/' _ _ _ '_ _ ( ()(///)(/ (///)/(/()_) _/ _/ __ /\\ \\ __ ___ ___ \\_\\ \\/\\_\\ ___ __ /'___\\ / __`\\ /'_` \\/\\ \\ /' _ `\\ /'_ `\\ /\\ \\__//\\ \\L\\ \\/\\ \\L\\ \\ \\ \\/\\ \\/\\ \\/\\ \\L\\ \\ \\ \\____\\ \\____/\\ \\___,_\\ \\_\\ \\_\\ \\_\\ \\____ \\ \\/____/\\/___/ \\/__,_ /\\/_/\\/_/\\/_/\\/___L\\ \\ /\\____/ \\_/__/ _ _ _/._ _ _ _ _ ._ _ _ /_ /_//_/// //_/ /_|/ / ///_//_/_\\ _/ _/ _ ( ) _ ___ _ _| |(_) ___ __ /'___) /'_`\\ /'_` || |/' _ `\\ /'_ `\\ ( (___ ( (_) )( (_| || || ( ) |( (_) | `\\____)`\\___/'`\\__,_)(_)(_) (_)`\\__ | ( )_) | \\___/' _ _ _ ___ ___ (_) __ _ ___ /'_` )/' _ ` _ `\\| | /'_ `\\ /'_`\\ /',__) ( (_| || ( ) ( ) || |( (_) |( (_) )\\__, \\ `\\__,_)(_) (_) (_)(_)`\\__ |`\\___/'(____/ ( )_) | \\___/' _ |.,_ ,_ . _ (_()(||||(| (|||||(|()_\\ _| _| _ _ _|. _ _ _ _ . _ _ _ (_(_)(_||| )(_) (_|||||(_)(_)_) _/ _/ _ _ _|. _ _ _ _ _ . _ _ _ (_(_)(_||| |(_| (_|| | ||(_|(_)_\\ _| _|
__ __ __ __ __ __ __ / ` / \\ | \\ | |\\ | / _` /\\ |\\/| | / _` / \\ /__` \\__, \\__/ |__/ | | \\| \\__> /~~\\ | | | \\__> \\__/ .__/", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/212256392", + "date": "October 14, 2014", + "time": "9:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT32H", + "photoAlbum": { + "photoCount": 4, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/1/2/e/a/highres_422104842.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/1/3/3/a/highres_422104922.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/1/4/2/0/highres_422105152.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/1/5/c/e/highres_422105582.jpeg" + } + ] + }, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/212249902", + "date": "October 17, 2014", + "time": "10:00PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT32H", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/212249922", + "date": "October 18, 2014", + "time": "10:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022

_. _ _|*._ _ _.._ _ * _ _ __ (_.(_)(_]|[ )(_] (_][ | )|(_](_)_) ._| ._| .___.__ ____ ____ __| _/|__| ____ ____ _/ ___\\/ _ \\ / __ | | |/ \\ / ___\\ \\ \\__( <_> ) /_/ | | | | \\/ /_/ > \\___ >____/\\____ | |__|___| /\\___ / \\/ \\/ \\//_____/ .__ _____ _____ |__| ____ ____ ______ \\__ \\ / \\| |/ ___\\ / _ \\/ ___/ / __ \\| Y Y \\ / /_/ > <_> )___ \\ (____ /__|_| /__\\___ / \\____/____ > \\/ \\/ /_____/ \\/ _ _/' _ _ _ '_ _ ( ()(///)(/ (///)/(/()_) _/ _/ __ /\\ \\ __ ___ ___ \\_\\ \\/\\_\\ ___ __ /'___\\ / __`\\ /'_` \\/\\ \\ /' _ `\\ /'_ `\\ /\\ \\__//\\ \\L\\ \\/\\ \\L\\ \\ \\ \\/\\ \\/\\ \\/\\ \\L\\ \\ \\ \\____\\ \\____/\\ \\___,_\\ \\_\\ \\_\\ \\_\\ \\____ \\ \\/____/\\/___/ \\/__,_ /\\/_/\\/_/\\/_/\\/___L\\ \\ /\\____/ \\_/__/ _ _ _/._ _ _ _ _ ._ _ _ /_ /_//_/// //_/ /_|/ / ///_//_/_\\ _/ _/ _ ( ) _ ___ _ _| |(_) ___ __ /'___) /'_`\\ /'_` || |/' _ `\\ /'_ `\\ ( (___ ( (_) )( (_| || || ( ) |( (_) | `\\____)`\\___/'`\\__,_)(_)(_) (_)`\\__ | ( )_) | \\___/' _ _ _ ___ ___ (_) __ _ ___ /'_` )/' _ ` _ `\\| | /'_ `\\ /'_`\\ /',__) ( (_| || ( ) ( ) || |( (_) |( (_) )\\__, \\ `\\__,_)(_) (_) (_)(_)`\\__ |`\\___/'(____/ ( )_) | \\___/' _ |.,_ ,_ . _ (_()(||||(| (|||||(|()_\\ _| _| _ _ _|. _ _ _ _ . _ _ _ (_(_)(_||| )(_) (_|||||(_)(_)_) _/ _/ _ _ _|. _ _ _ _ _ . _ _ _ (_(_)(_||| |(_| (_|| | ||(_|(_)_\\ _| _|
__ __ __ __ __ __ __ / ` / \\ | \\ | |\\ | / _` /\\ |\\/| | / _` / \\ /__` \\__, \\__/ |__/ | | \\| \\__> /~~\\ | | | \\__> \\__/ .__/", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/213637642", + "date": "October 21, 2014", + "time": "9:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT32H", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/212249952", + "date": "October 24, 2014", + "time": "10:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022

_. _ _|*._ _ _.._ _ * _ _ __ (_.(_)(_]|[ )(_] (_][ | )|(_](_)_) ._| ._| .___.__ ____ ____ __| _/|__| ____ ____ _/ ___\\/ _ \\ / __ | | |/ \\ / ___\\ \\ \\__( <_> ) /_/ | | | | \\/ /_/ > \\___ >____/\\____ | |__|___| /\\___ / \\/ \\/ \\//_____/ .__ _____ _____ |__| ____ ____ ______ \\__ \\ / \\| |/ ___\\ / _ \\/ ___/ / __ \\| Y Y \\ / /_/ > <_> )___ \\ (____ /__|_| /__\\___ / \\____/____ > \\/ \\/ /_____/ \\/ _ _/' _ _ _ '_ _ ( ()(///)(/ (///)/(/()_) _/ _/ __ /\\ \\ __ ___ ___ \\_\\ \\/\\_\\ ___ __ /'___\\ / __`\\ /'_` \\/\\ \\ /' _ `\\ /'_ `\\ /\\ \\__//\\ \\L\\ \\/\\ \\L\\ \\ \\ \\/\\ \\/\\ \\/\\ \\L\\ \\ \\ \\____\\ \\____/\\ \\___,_\\ \\_\\ \\_\\ \\_\\ \\____ \\ \\/____/\\/___/ \\/__,_ /\\/_/\\/_/\\/_/\\/___L\\ \\ /\\____/ \\_/__/ _ _ _/._ _ _ _ _ ._ _ _ /_ /_//_/// //_/ /_|/ / ///_//_/_\\ _/ _/ _ ( ) _ ___ _ _| |(_) ___ __ /'___) /'_`\\ /'_` || |/' _ `\\ /'_ `\\ ( (___ ( (_) )( (_| || || ( ) |( (_) | `\\____)`\\___/'`\\__,_)(_)(_) (_)`\\__ | ( )_) | \\___/' _ _ _ ___ ___ (_) __ _ ___ /'_` )/' _ ` _ `\\| | /'_ `\\ /'_`\\ /',__) ( (_| || ( ) ( ) || |( (_) |( (_) )\\__, \\ `\\__,_)(_) (_) (_)(_)`\\__ |`\\___/'(____/ ( )_) | \\___/' _ |.,_ ,_ . _ (_()(||||(| (|||||(|()_\\ _| _| _ _ _|. _ _ _ _ . _ _ _ (_(_)(_||| )(_) (_|||||(_)(_)_) _/ _/ _ _ _|. _ _ _ _ _ . _ _ _ (_(_)(_||| |(_| (_|| | ||(_|(_)_\\ _| _|
__ __ __ __ __ __ __ / ` / \\ | \\ | |\\ | / _` /\\ |\\/| | / _` / \\ /__` \\__, \\__/ |__/ | | \\| \\__> /~~\\ | | | \\__> \\__/ .__/", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/215852042", + "date": "October 28, 2014", + "time": "8:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT3H45M", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/212995092", + "date": "October 31, 2014", + "time": "9:00PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/215052902", + "date": "October 31, 2014", + "time": "9:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": { + "photoCount": 6, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/5/9/6/2/highres_429982882.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/5/9/d/a/highres_429983002.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/5/a/a/c/highres_429983212.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/5/a/f/c/highres_429983292.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/c/b/f/e/highres_430012222.jpeg" + } + ] + }, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022

_. _ _|*._ _ _.._ _ * _ _ __ (_.(_)(_]|[ )(_] (_][ | )|(_](_)_) ._| ._| .___.__ ____ ____ __| _/|__| ____ ____ _/ ___\\/ _ \\ / __ | | |/ \\ / ___\\ \\ \\__( <_> ) /_/ | | | | \\/ /_/ > \\___ >____/\\____ | |__|___| /\\___ / \\/ \\/ \\//_____/ .__ _____ _____ |__| ____ ____ ______ \\__ \\ / \\| |/ ___\\ / _ \\/ ___/ / __ \\| Y Y \\ / /_/ > <_> )___ \\ (____ /__|_| /__\\___ / \\____/____ > \\/ \\/ /_____/ \\/ _ _/' _ _ _ '_ _ ( ()(///)(/ (///)/(/()_) _/ _/ __ /\\ \\ __ ___ ___ \\_\\ \\/\\_\\ ___ __ /'___\\ / __`\\ /'_` \\/\\ \\ /' _ `\\ /'_ `\\ /\\ \\__//\\ \\L\\ \\/\\ \\L\\ \\ \\ \\/\\ \\/\\ \\/\\ \\L\\ \\ \\ \\____\\ \\____/\\ \\___,_\\ \\_\\ \\_\\ \\_\\ \\____ \\ \\/____/\\/___/ \\/__,_ /\\/_/\\/_/\\/_/\\/___L\\ \\ /\\____/ \\_/__/ _ _ _/._ _ _ _ _ ._ _ _ /_ /_//_/// //_/ /_|/ / ///_//_/_\\ _/ _/ _ ( ) _ ___ _ _| |(_) ___ __ /'___) /'_`\\ /'_` || |/' _ `\\ /'_ `\\ ( (___ ( (_) )( (_| || || ( ) |( (_) | `\\____)`\\___/'`\\__,_)(_)(_) (_)`\\__ | ( )_) | \\___/' _ _ _ ___ ___ (_) __ _ ___ /'_` )/' _ ` _ `\\| | /'_ `\\ /'_`\\ /',__) ( (_| || ( ) ( ) || |( (_) |( (_) )\\__, \\ `\\__,_)(_) (_) (_)(_)`\\__ |`\\___/'(____/ ( )_) | \\___/' _ |.,_ ,_ . _ (_()(||||(| (|||||(|()_\\ _| _| _ _ _|. _ _ _ _ . _ _ _ (_(_)(_||| )(_) (_|||||(_)(_)_) _/ _/ _ _ _|. _ _ _ _ _ . _ _ _ (_(_)(_||| |(_| (_|| | ||(_|(_)_\\ _| _|
__ __ __ __ __ __ __ / ` / \\ | \\ | |\\ | / _` /\\ |\\/| | / _` / \\ /__` \\__, \\__/ |__/ | | \\| \\__> /~~\\ | | | \\__> \\__/ .__/", + "participants": 10, + "link": "https://www.meetup.com/wizardamigos/events/216408702", + "date": "November 04, 2014", + "time": "8:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/215052932", + "date": "November 07, 2014", + "time": "9:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": { + "photoCount": 4, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/2/1/c/highres_431460540.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/2/2/3/highres_431460547.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/2/3/6/highres_431460566.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/2/5/7/highres_431460599.jpeg" + } + ] + }, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022

_. _ _|*._ _ _.._ _ * _ _ __ (_.(_)(_]|[ )(_] (_][ | )|(_](_)_) ._| ._| .___.__ ____ ____ __| _/|__| ____ ____ _/ ___\\/ _ \\ / __ | | |/ \\ / ___\\ \\ \\__( <_> ) /_/ | | | | \\/ /_/ > \\___ >____/\\____ | |__|___| /\\___ / \\/ \\/ \\//_____/ .__ _____ _____ |__| ____ ____ ______ \\__ \\ / \\| |/ ___\\ / _ \\/ ___/ / __ \\| Y Y \\ / /_/ > <_> )___ \\ (____ /__|_| /__\\___ / \\____/____ > \\/ \\/ /_____/ \\/ _ _/' _ _ _ '_ _ ( ()(///)(/ (///)/(/()_) _/ _/ __ /\\ \\ __ ___ ___ \\_\\ \\/\\_\\ ___ __ /'___\\ / __`\\ /'_` \\/\\ \\ /' _ `\\ /'_ `\\ /\\ \\__//\\ \\L\\ \\/\\ \\L\\ \\ \\ \\/\\ \\/\\ \\/\\ \\L\\ \\ \\ \\____\\ \\____/\\ \\___,_\\ \\_\\ \\_\\ \\_\\ \\____ \\ \\/____/\\/___/ \\/__,_ /\\/_/\\/_/\\/_/\\/___L\\ \\ /\\____/ \\_/__/ _ _ _/._ _ _ _ _ ._ _ _ /_ /_//_/// //_/ /_|/ / ///_//_/_\\ _/ _/ _ ( ) _ ___ _ _| |(_) ___ __ /'___) /'_`\\ /'_` || |/' _ `\\ /'_ `\\ ( (___ ( (_) )( (_| || || ( ) |( (_) | `\\____)`\\___/'`\\__,_)(_)(_) (_)`\\__ | ( )_) | \\___/' _ _ _ ___ ___ (_) __ _ ___ /'_` )/' _ ` _ `\\| | /'_ `\\ /'_`\\ /',__) ( (_| || ( ) ( ) || |( (_) |( (_) )\\__, \\ `\\__,_)(_) (_) (_)(_)`\\__ |`\\___/'(____/ ( )_) | \\___/' _ |.,_ ,_ . _ (_()(||||(| (|||||(|()_\\ _| _| _ _ _|. _ _ _ _ . _ _ _ (_(_)(_||| )(_) (_|||||(_)(_)_) _/ _/ _ _ _|. _ _ _ _ _ . _ _ _ (_(_)(_||| |(_| (_|| | ||(_|(_)_\\ _| _|
__ __ __ __ __ __ __ / ` / \\ | \\ | |\\ | / _` /\\ |\\/| | / _` / \\ /__` \\__, \\__/ |__/ | | \\| \\__> /~~\\ | | | \\__> \\__/ .__/", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/217862972", + "date": "November 11, 2014", + "time": "8:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/218475082", + "date": "November 14, 2014", + "time": "9:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": { + "photoCount": 8, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/a/b/3/b/highres_431683835.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/a/b/5/2/highres_431683858.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/a/b/6/f/highres_431683887.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/a/b/8/4/highres_431683908.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/a/b/9/4/highres_431683924.jpeg" + } + ] + }, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022

_. _ _|*._ _ _.._ _ * _ _ __ (_.(_)(_]|[ )(_] (_][ | )|(_](_)_) ._| ._| .___.__ ____ ____ __| _/|__| ____ ____ _/ ___\\/ _ \\ / __ | | |/ \\ / ___\\ \\ \\__( <_> ) /_/ | | | | \\/ /_/ > \\___ >____/\\____ | |__|___| /\\___ / \\/ \\/ \\//_____/ .__ _____ _____ |__| ____ ____ ______ \\__ \\ / \\| |/ ___\\ / _ \\/ ___/ / __ \\| Y Y \\ / /_/ > <_> )___ \\ (____ /__|_| /__\\___ / \\____/____ > \\/ \\/ /_____/ \\/ _ _/' _ _ _ '_ _ ( ()(///)(/ (///)/(/()_) _/ _/ __ /\\ \\ __ ___ ___ \\_\\ \\/\\_\\ ___ __ /'___\\ / __`\\ /'_` \\/\\ \\ /' _ `\\ /'_ `\\ /\\ \\__//\\ \\L\\ \\/\\ \\L\\ \\ \\ \\/\\ \\/\\ \\/\\ \\L\\ \\ \\ \\____\\ \\____/\\ \\___,_\\ \\_\\ \\_\\ \\_\\ \\____ \\ \\/____/\\/___/ \\/__,_ /\\/_/\\/_/\\/_/\\/___L\\ \\ /\\____/ \\_/__/ _ _ _/._ _ _ _ _ ._ _ _ /_ /_//_/// //_/ /_|/ / ///_//_/_\\ _/ _/ _ ( ) _ ___ _ _| |(_) ___ __ /'___) /'_`\\ /'_` || |/' _ `\\ /'_ `\\ ( (___ ( (_) )( (_| || || ( ) |( (_) | `\\____)`\\___/'`\\__,_)(_)(_) (_)`\\__ | ( )_) | \\___/' _ _ _ ___ ___ (_) __ _ ___ /'_` )/' _ ` _ `\\| | /'_ `\\ /'_`\\ /',__) ( (_| || ( ) ( ) || |( (_) |( (_) )\\__, \\ `\\__,_)(_) (_) (_)(_)`\\__ |`\\___/'(____/ ( )_) | \\___/' _ |.,_ ,_ . _ (_()(||||(| (|||||(|()_\\ _| _| _ _ _|. _ _ _ _ . _ _ _ (_(_)(_||| )(_) (_|||||(_)(_)_) _/ _/ _ _ _|. _ _ _ _ _ . _ _ _ (_(_)(_||| |(_| (_|| | ||(_|(_)_\\ _| _|
__ __ __ __ __ __ __ / ` / \\ | \\ | |\\ | / _` /\\ |\\/| | / _` / \\ /__` \\__, \\__/ |__/ | | \\| \\__> /~~\\ | | | \\__> \\__/ .__/", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/218644793", + "date": "November 18, 2014", + "time": "8:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/218703926", + "date": "November 21, 2014", + "time": "9:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022

_. _ _|*._ _ _.._ _ * _ _ __ (_.(_)(_]|[ )(_] (_][ | )|(_](_)_) ._| ._| .___.__ ____ ____ __| _/|__| ____ ____ _/ ___\\/ _ \\ / __ | | |/ \\ / ___\\ \\ \\__( <_> ) /_/ | | | | \\/ /_/ > \\___ >____/\\____ | |__|___| /\\___ / \\/ \\/ \\//_____/ .__ _____ _____ |__| ____ ____ ______ \\__ \\ / \\| |/ ___\\ / _ \\/ ___/ / __ \\| Y Y \\ / /_/ > <_> )___ \\ (____ /__|_| /__\\___ / \\____/____ > \\/ \\/ /_____/ \\/ _ _/' _ _ _ '_ _ ( ()(///)(/ (///)/(/()_) _/ _/ __ /\\ \\ __ ___ ___ \\_\\ \\/\\_\\ ___ __ /'___\\ / __`\\ /'_` \\/\\ \\ /' _ `\\ /'_ `\\ /\\ \\__//\\ \\L\\ \\/\\ \\L\\ \\ \\ \\/\\ \\/\\ \\/\\ \\L\\ \\ \\ \\____\\ \\____/\\ \\___,_\\ \\_\\ \\_\\ \\_\\ \\____ \\ \\/____/\\/___/ \\/__,_ /\\/_/\\/_/\\/_/\\/___L\\ \\ /\\____/ \\_/__/ _ _ _/._ _ _ _ _ ._ _ _ /_ /_//_/// //_/ /_|/ / ///_//_/_\\ _/ _/ _ ( ) _ ___ _ _| |(_) ___ __ /'___) /'_`\\ /'_` || |/' _ `\\ /'_ `\\ ( (___ ( (_) )( (_| || || ( ) |( (_) | `\\____)`\\___/'`\\__,_)(_)(_) (_)`\\__ | ( )_) | \\___/' _ _ _ ___ ___ (_) __ _ ___ /'_` )/' _ ` _ `\\| | /'_ `\\ /'_`\\ /',__) ( (_| || ( ) ( ) || |( (_) |( (_) )\\__, \\ `\\__,_)(_) (_) (_)(_)`\\__ |`\\___/'(____/ ( )_) | \\___/' _ |.,_ ,_ . _ (_()(||||(| (|||||(|()_\\ _| _| _ _ _|. _ _ _ _ . _ _ _ (_(_)(_||| )(_) (_|||||(_)(_)_) _/ _/ _ _ _|. _ _ _ _ _ . _ _ _ (_(_)(_||| |(_| (_|| | ||(_|(_)_\\ _| _|
__ __ __ __ __ __ __ / ` / \\ | \\ | |\\ | / _` /\\ |\\/| | / _` / \\ /__` \\__, \\__/ |__/ | | \\| \\__> /~~\\ | | | \\__> \\__/ .__/", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/218783795", + "date": "November 25, 2014", + "time": "8:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/218842262", + "date": "November 28, 2014", + "time": "9:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022

_. _ _|*._ _ _.._ _ * _ _ __ (_.(_)(_]|[ )(_] (_][ | )|(_](_)_) ._| ._| .___.__ ____ ____ __| _/|__| ____ ____ _/ ___\\/ _ \\ / __ | | |/ \\ / ___\\ \\ \\__( <_> ) /_/ | | | | \\/ /_/ > \\___ >____/\\____ | |__|___| /\\___ / \\/ \\/ \\//_____/ .__ _____ _____ |__| ____ ____ ______ \\__ \\ / \\| |/ ___\\ / _ \\/ ___/ / __ \\| Y Y \\ / /_/ > <_> )___ \\ (____ /__|_| /__\\___ / \\____/____ > \\/ \\/ /_____/ \\/ _ _/' _ _ _ '_ _ ( ()(///)(/ (///)/(/()_) _/ _/ __ /\\ \\ __ ___ ___ \\_\\ \\/\\_\\ ___ __ /'___\\ / __`\\ /'_` \\/\\ \\ /' _ `\\ /'_ `\\ /\\ \\__//\\ \\L\\ \\/\\ \\L\\ \\ \\ \\/\\ \\/\\ \\/\\ \\L\\ \\ \\ \\____\\ \\____/\\ \\___,_\\ \\_\\ \\_\\ \\_\\ \\____ \\ \\/____/\\/___/ \\/__,_ /\\/_/\\/_/\\/_/\\/___L\\ \\ /\\____/ \\_/__/ _ _ _/._ _ _ _ _ ._ _ _ /_ /_//_/// //_/ /_|/ / ///_//_/_\\ _/ _/ _ ( ) _ ___ _ _| |(_) ___ __ /'___) /'_`\\ /'_` || |/' _ `\\ /'_ `\\ ( (___ ( (_) )( (_| || || ( ) |( (_) | `\\____)`\\___/'`\\__,_)(_)(_) (_)`\\__ | ( )_) | \\___/' _ _ _ ___ ___ (_) __ _ ___ /'_` )/' _ ` _ `\\| | /'_ `\\ /'_`\\ /',__) ( (_| || ( ) ( ) || |( (_) |( (_) )\\__, \\ `\\__,_)(_) (_) (_)(_)`\\__ |`\\___/'(____/ ( )_) | \\___/' _ |.,_ ,_ . _ (_()(||||(| (|||||(|()_\\ _| _| _ _ _|. _ _ _ _ . _ _ _ (_(_)(_||| )(_) (_|||||(_)(_)_) _/ _/ _ _ _|. _ _ _ _ _ . _ _ _ (_(_)(_||| |(_| (_|| | ||(_|(_)_\\ _| _|
__ __ __ __ __ __ __ / ` / \\ | \\ | |\\ | / _` /\\ |\\/| | / _` / \\ /__` \\__, \\__/ |__/ | | \\| \\__> /~~\\ | | | \\__> \\__/ .__/", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/218914710", + "date": "December 02, 2014", + "time": "8:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/218963708", + "date": "December 05, 2014", + "time": "9:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/183808622", + "date": "December 09, 2014", + "time": "8:30PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/218781613", + "date": "December 09, 2014", + "time": "8:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": { + "photoCount": 4, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/b/2/6/5/highres_432405669.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/b/2/7/0/highres_432405680.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/b/2/8/3/highres_432405699.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/b/2/9/1/highres_432405713.jpeg" + } + ] + }, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/219103240", + "date": "December 12, 2014", + "time": "9:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": { + "photoCount": 1, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/3/6/9/8/highres_432613976.jpeg" + } + ] + }, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022

_. _ _|*._ _ _.._ _ * _ _ __ (_.(_)(_]|[ )(_] (_][ | )|(_](_)_) ._| ._| .___.__ ____ ____ __| _/|__| ____ ____ _/ ___\\/ _ \\ / __ | | |/ \\ / ___\\ \\ \\__( <_> ) /_/ | | | | \\/ /_/ > \\___ >____/\\____ | |__|___| /\\___ / \\/ \\/ \\//_____/ .__ _____ _____ |__| ____ ____ ______ \\__ \\ / \\| |/ ___\\ / _ \\/ ___/ / __ \\| Y Y \\ / /_/ > <_> )___ \\ (____ /__|_| /__\\___ / \\____/____ > \\/ \\/ /_____/ \\/ _ _/' _ _ _ '_ _ ( ()(///)(/ (///)/(/()_) _/ _/ __ /\\ \\ __ ___ ___ \\_\\ \\/\\_\\ ___ __ /'___\\ / __`\\ /'_` \\/\\ \\ /' _ `\\ /'_ `\\ /\\ \\__//\\ \\L\\ \\/\\ \\L\\ \\ \\ \\/\\ \\/\\ \\/\\ \\L\\ \\ \\ \\____\\ \\____/\\ \\___,_\\ \\_\\ \\_\\ \\_\\ \\____ \\ \\/____/\\/___/ \\/__,_ /\\/_/\\/_/\\/_/\\/___L\\ \\ /\\____/ \\_/__/ _ _ _/._ _ _ _ _ ._ _ _ /_ /_//_/// //_/ /_|/ / ///_//_/_\\ _/ _/ _ ( ) _ ___ _ _| |(_) ___ __ /'___) /'_`\\ /'_` || |/' _ `\\ /'_ `\\ ( (___ ( (_) )( (_| || || ( ) |( (_) | `\\____)`\\___/'`\\__,_)(_)(_) (_)`\\__ | ( )_) | \\___/' _ _ _ ___ ___ (_) __ _ ___ /'_` )/' _ ` _ `\\| | /'_ `\\ /'_`\\ /',__) ( (_| || ( ) ( ) || |( (_) |( (_) )\\__, \\ `\\__,_)(_) (_) (_)(_)`\\__ |`\\___/'(____/ ( )_) | \\___/' _ |.,_ ,_ . _ (_()(||||(| (|||||(|()_\\ _| _| _ _ _|. _ _ _ _ . _ _ _ (_(_)(_||| )(_) (_|||||(_)(_)_) _/ _/ _ _ _|. _ _ _ _ _ . _ _ _ (_(_)(_||| |(_| (_|| | ||(_|(_)_\\ _| _|
__ __ __ __ __ __ __ / ` / \\ | \\ | |\\ | / _` /\\ |\\/| | / _` / \\ /__` \\__, \\__/ |__/ | | \\| \\__> /~~\\ | | | \\__> \\__/ .__/", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/202990362", + "date": "December 16, 2014", + "time": "8:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": { + "photoCount": 10, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/3/6/8/2/highres_432613954.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/3/6/8/4/highres_432613956.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/3/6/8/7/highres_432613959.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/3/6/8/d/highres_432613965.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/3/6/8/f/highres_432613967.jpeg" + } + ] + }, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/219229744", + "date": "December 19, 2014", + "time": "9:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": { + "photoCount": 4, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/d/5/a/highres_432760282.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/a/0/1/5/highres_432760981.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/a/0/2/f/highres_432761007.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/a/0/3/0/highres_432761008.jpeg" + } + ] + }, + "desc": "http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/219090933", + "date": "December 23, 2014", + "time": "8:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/219350342", + "date": "December 26, 2014", + "time": "9:00PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/219448990", + "date": "January 02, 2015", + "time": "9:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": { + "photoCount": 12, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/8/0/8/b/highres_433112907.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/8/0/9/6/highres_433112918.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/8/0/b/0/highres_433112944.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/8/0/b/4/highres_433112948.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/8/0/b/8/highres_433112952.jpeg" + } + ] + }, + "desc": "http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 11, + "link": "https://www.meetup.com/wizardamigos/events/219519476", + "date": "January 06, 2015", + "time": "8:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/219577901", + "date": "January 09, 2015", + "time": "9:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": { + "photoCount": 7, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/5/2/a/1/highres_433341153.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/5/2/a/5/highres_433341157.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/5/2/a/7/highres_433341159.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/5/2/a/a/highres_433341162.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/5/2/b/0/highres_433341168.jpeg" + } + ] + }, + "desc": "http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/219673737", + "date": "January 13, 2015", + "time": "8:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/219742999", + "date": "January 16, 2015", + "time": "9:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": { + "photoCount": 7, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/a/3/b/4/highres_433541908.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/a/3/c/7/highres_433541927.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/a/3/c/9/highres_433541929.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/a/3/c/f/highres_433541935.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/a/3/d/2/highres_433541938.jpeg" + } + ] + }, + "desc": "http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/219802189", + "date": "January 20, 2015", + "time": "8:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": { + "photoCount": 9, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/6/0/8/highres_433958408.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/9/6/0/e/highres_433958414.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/9/6/1/7/highres_433958423.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/9/6/1/f/highres_433958431.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/9/6/2/c/highres_433958444.jpeg" + } + ] + }, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/219802193", + "date": "January 23, 2015", + "time": "9:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": { + "photoCount": 5, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/6/5/c/highres_433958492.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/9/6/6/6/highres_433958502.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/9/6/8/0/highres_433958528.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/9/6/a/4/highres_433958564.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/9/6/c/f/highres_433958607.jpeg" + } + ] + }, + "desc": "http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/219988960", + "date": "January 27, 2015", + "time": "8:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": { + "photoCount": 4, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/5/e/6/highres_433958374.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/9/5/f/1/highres_433958385.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/9/5/f/4/highres_433958388.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/9/5/f/7/highres_433958391.jpeg" + } + ] + }, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/220054736", + "date": "January 30, 2015", + "time": "9:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": { + "photoCount": 6, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/1/b/5/0/highres_434286992.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/1/b/5/3/highres_434286995.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/1/b/5/4/highres_434286996.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/1/b/5/6/highres_434286998.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/1/b/5/d/highres_434287005.jpeg" + } + ] + }, + "desc": "http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/220145997", + "date": "February 03, 2015", + "time": "8:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": { + "photoCount": 5, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/b/2/9/c/highres_434205724.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/b/2/a/1/highres_434205729.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/b/2/a/a/highres_434205738.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/b/2/a/f/highres_434205743.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/b/2/b/2/highres_434205746.jpeg" + } + ] + }, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/220213261", + "date": "February 06, 2015", + "time": "9:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": { + "photoCount": 9, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/d/e/1/2/highres_434276850.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/d/e/1/4/highres_434276852.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/d/e/1/7/highres_434276855.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/d/e/1/c/highres_434276860.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/d/e/1/d/highres_434276861.jpeg" + } + ] + }, + "desc": "http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/220306046", + "date": "February 10, 2015", + "time": "8:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": { + "photoCount": 4, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/d/d/f/3/highres_434276819.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/d/d/f/6/highres_434276822.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/d/d/f/b/highres_434276827.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/d/d/f/f/highres_434276831.jpeg" + } + ] + }, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/220374734", + "date": "February 13, 2015", + "time": "9:00PM" + }, + { + "title": "Tuesday Night Co-Hacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/220143955", + "date": "February 17, 2015", + "time": "8:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": { + "photoCount": 6, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/8/3/6/6/highres_434493638.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/8/3/6/d/highres_434493645.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/8/3/7/a/highres_434493658.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/8/3/8/4/highres_434493668.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/8/3/8/9/highres_434493673.jpeg" + } + ] + }, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/220522944", + "date": "February 20, 2015", + "time": "9:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/220533043", + "date": "February 24, 2015", + "time": "8:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/220533052", + "date": "February 27, 2015", + "time": "9:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/220759745", + "date": "March 03, 2015", + "time": "8:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/220828080", + "date": "March 06, 2015", + "time": "9:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": { + "photoCount": 8, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/5/0/f/9/highres_435140729.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/5/0/f/c/highres_435140732.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/5/1/0/4/highres_435140740.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/5/1/0/c/highres_435140748.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/5/1/1/3/highres_435140755.jpeg" + } + ] + }, + "desc": "http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/220848806", + "date": "March 10, 2015", + "time": "8:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/220848821", + "date": "March 13, 2015", + "time": "9:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": { + "photoCount": 7, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/c/3/e/4/highres_435650148.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/c/3/e/5/highres_435650149.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/c/3/e/7/highres_435650151.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/c/3/e/9/highres_435650153.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/c/3/e/a/highres_435650154.jpeg" + } + ] + }, + "desc": "http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/220759807", + "date": "March 17, 2015", + "time": "8:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/220827616", + "date": "March 20, 2015", + "time": "9:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/221168130", + "date": "March 24, 2015", + "time": "8:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/221168138", + "date": "March 27, 2015", + "time": "9:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/221397349", + "date": "March 31, 2015", + "time": "9:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/221422419", + "date": "April 03, 2015", + "time": "10:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/221423124", + "date": "April 07, 2015", + "time": "9:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/221422436", + "date": "April 10, 2015", + "time": "10:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022

_. _ _|*._ _ _.._ _ * _ _ __ (_.(_)(_]|[ )(_] (_][ | )|(_](_)_) ._| ._| .___.__ ____ ____ __| _/|__| ____ ____ _/ ___\\/ _ \\ / __ | | |/ \\ / ___\\ \\ \\__( <_> ) /_/ | | | | \\/ /_/ > \\___ >____/\\____ | |__|___| /\\___ / \\/ \\/ \\//_____/ .__ _____ _____ |__| ____ ____ ______ \\__ \\ / \\| |/ ___\\ / _ \\/ ___/ / __ \\| Y Y \\ / /_/ > <_> )___ \\ (____ /__|_| /__\\___ / \\____/____ > \\/ \\/ /_____/ \\/ _ _/' _ _ _ '_ _ ( ()(///)(/ (///)/(/()_) _/ _/ __ /\\ \\ __ ___ ___ \\_\\ \\/\\_\\ ___ __ /'___\\ / __`\\ /'_` \\/\\ \\ /' _ `\\ /'_ `\\ /\\ \\__//\\ \\L\\ \\/\\ \\L\\ \\ \\ \\/\\ \\/\\ \\/\\ \\L\\ \\ \\ \\____\\ \\____/\\ \\___,_\\ \\_\\ \\_\\ \\_\\ \\____ \\ \\/____/\\/___/ \\/__,_ /\\/_/\\/_/\\/_/\\/___L\\ \\ /\\____/ \\_/__/ _ _ _/._ _ _ _ _ ._ _ _ /_ /_//_/// //_/ /_|/ / ///_//_/_\\ _/ _/ _ ( ) _ ___ _ _| |(_) ___ __ /'___) /'_`\\ /'_` || |/' _ `\\ /'_ `\\ ( (___ ( (_) )( (_| || || ( ) |( (_) | `\\____)`\\___/'`\\__,_)(_)(_) (_)`\\__ | ( )_) | \\___/' _ _ _ ___ ___ (_) __ _ ___ /'_` )/' _ ` _ `\\| | /'_ `\\ /'_`\\ /',__) ( (_| || ( ) ( ) || |( (_) |( (_) )\\__, \\ `\\__,_)(_) (_) (_)(_)`\\__ |`\\___/'(____/ ( )_) | \\___/' _ |.,_ ,_ . _ (_()(||||(| (|||||(|()_\\ _| _| _ _ _|. _ _ _ _ . _ _ _ (_(_)(_||| )(_) (_|||||(_)(_)_) _/ _/ _ _ _|. _ _ _ _ _ . _ _ _ (_(_)(_||| |(_| (_|| | ||(_|(_)_\\ _| _|
__ __ __ __ __ __ __ / ` / \\ | \\ | |\\ | / _` /\\ |\\/| | / _` / \\ /__` \\__, \\__/ |__/ | | \\| \\__> /~~\\ | | | \\__> \\__/ .__/", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/202990452", + "date": "April 14, 2015", + "time": "9:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/221422471", + "date": "April 17, 2015", + "time": "10:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/221423134", + "date": "April 21, 2015", + "time": "9:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/221520531", + "date": "April 24, 2015", + "time": "10:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/221953848", + "date": "April 28, 2015", + "time": "9:30PM" + }, + { + "title": "No Meetup this Friday - see you on Tuesday", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/221953876", + "date": "May 01, 2015", + "time": "10:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/221953855", + "date": "May 05, 2015", + "time": "9:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/221991727", + "date": "May 08, 2015", + "time": "10:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/221953867", + "date": "May 12, 2015", + "time": "9:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/222420353", + "date": "May 15, 2015", + "time": "10:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": { + "photoCount": 9, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/6/a/d/7/highres_437727351.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/6/a/e/0/highres_437727360.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/6/a/e/6/highres_437727366.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/6/b/0/2/highres_437727394.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/6/b/0/e/highres_437727406.jpeg" + } + ] + }, + "desc": "http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/222485763", + "date": "May 19, 2015", + "time": "9:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/222485787", + "date": "May 22, 2015", + "time": "10:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/222485774", + "date": "May 26, 2015", + "time": "9:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/222485798", + "date": "May 29, 2015", + "time": "10:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/222485779", + "date": "June 02, 2015", + "time": "9:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/222895384", + "date": "June 05, 2015", + "time": "10:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/222994036", + "date": "June 09, 2015", + "time": "9:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": null, + "desc": "http://titanpad.com/CodingAmigos

\u00b8\u201e.-\u2022~\u00b9\u00b0\u201d\u02c6\u02dc\u00a8 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u00a8\u02dc\u02c6\u201d\u00b0\u00b9~\u2022-.\u201e\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2022?((\u00af\u00b0\u00b7._.\u2022 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2022._.\u00b7\u00b0\u00af))\u061f\u2022", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/223064732", + "date": "June 12, 2015", + "time": "10:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": { + "photoCount": 4, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/6/e/d/d/highres_438748381.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/6/e/e/5/highres_438748389.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/6/e/e/b/highres_438748395.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/6/e/f/1/highres_438748401.jpeg" + } + ] + }, + "desc": "chat with us :-)

\u2022 https://gitter.im/codingamigos/chat

& check us out

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/223134225", + "date": "June 16, 2015", + "time": "9:30PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "chat with us :-)

\u2022 https://gitter.im/codingamigos/chat

& check us out

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/223285883", + "date": "June 16, 2015", + "time": "9:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": null, + "desc": "chat with us :-)

\u2022 https://gitter.im/codingamigos/chat

& check us out

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/223134244", + "date": "June 19, 2015", + "time": "10:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "chat with us :-)

\u2022 https://gitter.im/codingamigos/chat

& check us out

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/223134233", + "date": "June 23, 2015", + "time": "9:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": null, + "desc": "chat with us :-)

\u2022 https://gitter.im/codingamigos/chat

& check us out

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/223134252", + "date": "June 26, 2015", + "time": "10:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "chat with us :-)

\u2022 https://gitter.im/codingamigos/chat

& check us out

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/223134237", + "date": "June 30, 2015", + "time": "9:30PM" + }, + { + "title": "Friday Night CoHacking /check location", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT5H45M", + "photoAlbum": null, + "desc": "chat with us :-)

\u2022 https://gitter.im/codingamigos/chat

& check us out

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 9, + "link": "https://www.meetup.com/wizardamigos/events/223134259", + "date": "July 03, 2015", + "time": "8:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "chat with us & check our pages :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 https://plug.dj/codingamigos (https://gitter.im/codingamigos/chat)

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/223694231", + "date": "July 07, 2015", + "time": "9:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": null, + "desc": "chat with us & check our pages :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 https://plug.dj/codingamigos (https://gitter.im/codingamigos/chat)

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/223381366", + "date": "July 10, 2015", + "time": "10:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "chat with us & check our pages :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 https://plug.dj/codingamigos (https://gitter.im/codingamigos/chat)

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/223768304", + "date": "July 14, 2015", + "time": "9:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": null, + "desc": "CHAT with us & check our pages :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 https://plug.dj/codingamigos (https://gitter.im/codingamigos/chat)

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/223539582", + "date": "July 17, 2015", + "time": "10:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "chat with us & check our pages :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 https://plug.dj/codingamigos (https://gitter.im/codingamigos/chat)

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/223768305", + "date": "July 21, 2015", + "time": "9:30PM" + }, + { + "title": "DUE TO EVENT IN CO_UP THIS MEETUP IS CANCELLED", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": null, + "desc": "chat with us & check our pages :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 https://plug.dj/codingamigos (https://gitter.im/codingamigos/chat)

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/223768428", + "date": "July 24, 2015", + "time": "10:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "chat with us & check our pages :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 https://plug.dj/codingamigos (https://gitter.im/codingamigos/chat)

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/224043379", + "date": "July 28, 2015", + "time": "9:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": null, + "desc": "chat with us & check our pages :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 https://plug.dj/codingamigos (https://gitter.im/codingamigos/chat)

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/224116884", + "date": "July 31, 2015", + "time": "10:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "chat with us & check our pages :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 https://plug.dj/codingamigos (https://gitter.im/codingamigos/chat)

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/223944146", + "date": "August 04, 2015", + "time": "9:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": null, + "desc": "chat with us & check our pages :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 https://plug.dj/codingamigos (https://gitter.im/codingamigos/chat)

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/224335708", + "date": "August 07, 2015", + "time": "10:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "chat with us & check our pages :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 https://plug.dj/codingamigos (https://gitter.im/codingamigos/chat)

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/224101512", + "date": "August 11, 2015", + "time": "9:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": { + "photoCount": 4, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/1/e/c/3/highres_440887875.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/2/1/c/8/highres_440888648.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/3/6/7/6/highres_440893942.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/3/6/b/3/highres_440894003.jpeg" + } + ] + }, + "desc": "chat with us & check our pages :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 https://plug.dj/codingamigos (https://gitter.im/codingamigos/chat)

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 10, + "link": "https://www.meetup.com/wizardamigos/events/224498284", + "date": "August 14, 2015", + "time": "10:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": { + "photoCount": 6, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/c/e/1/2/highres_441472754.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/c/e/4/2/highres_441472802.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/c/e/6/a/highres_441472842.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/c/e/9/6/highres_441472886.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/c/e/c/3/highres_441472931.jpeg" + } + ] + }, + "desc": "chat with us & check our pages :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 https://plug.dj/codingamigos (https://gitter.im/codingamigos/chat)

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/224589425", + "date": "August 18, 2015", + "time": "9:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": { + "photoCount": 1, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/c/f/5/d/highres_441473085.jpeg" + } + ] + }, + "desc": "chat with us & check our pages :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 https://plug.dj/codingamigos (https://gitter.im/codingamigos/chat)

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/224334422", + "date": "August 21, 2015", + "time": "10:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "chat with us & check our pages :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 https://plug.dj/codingamigos (https://gitter.im/codingamigos/chat)

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/224746041", + "date": "August 25, 2015", + "time": "9:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": null, + "desc": "chat with us & check our pages :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 https://plug.dj/codingamigos (https://gitter.im/codingamigos/chat)

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/224813174", + "date": "August 28, 2015", + "time": "10:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "chat with us & check our pages :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 https://plug.dj/codingamigos (https://gitter.im/codingamigos/chat)

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/224905949", + "date": "September 01, 2015", + "time": "9:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": null, + "desc": "chat with us & check our pages :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 https://plug.dj/codingamigos (https://gitter.im/codingamigos/chat)

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/224973479", + "date": "September 04, 2015", + "time": "10:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "chat with us & check our pages :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 https://plug.dj/codingamigos (https://gitter.im/codingamigos/chat)

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/224746387", + "date": "September 08, 2015", + "time": "9:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": null, + "desc": "chat with us & check our pages :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 https://plug.dj/codingamigos (https://gitter.im/codingamigos/chat)

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/225145824", + "date": "September 11, 2015", + "time": "10:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "chat with us & check our pages :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 https://plug.dj/codingamigos (https://gitter.im/codingamigos/chat)

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/225236328", + "date": "September 15, 2015", + "time": "9:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": null, + "desc": "chat with us & check our pages :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 https://plug.dj/codingamigos (https://gitter.im/codingamigos/chat)

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/225188294", + "date": "September 18, 2015", + "time": "10:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "chat with us & check our pages :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 https://plug.dj/codingamigos (https://gitter.im/codingamigos/chat)

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/225401172", + "date": "September 22, 2015", + "time": "9:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": null, + "desc": "chat with us & check our pages :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 https://plug.dj/codingamigos (https://gitter.im/codingamigos/chat)

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/225144787", + "date": "September 25, 2015", + "time": "10:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "chat with us & check our pages :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 https://plug.dj/codingamigos (https://gitter.im/codingamigos/chat)

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/225565544", + "date": "September 29, 2015", + "time": "9:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": null, + "desc": "chat with us & check our pages :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 https://plug.dj/codingamigos (https://gitter.im/codingamigos/chat)

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/225307892", + "date": "October 02, 2015", + "time": "10:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "chat with us & check our pages :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 https://plug.dj/codingamigos (https://gitter.im/codingamigos/chat)

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/225402695", + "date": "October 06, 2015", + "time": "9:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": null, + "desc": "chat with us & check our pages :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 https://plug.dj/codingamigos (https://gitter.im/codingamigos/chat)

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/225471525", + "date": "October 09, 2015", + "time": "10:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "chat with us & check our pages :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 https://plug.dj/codingamigos (https://gitter.im/codingamigos/chat)

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/225902359", + "date": "October 13, 2015", + "time": "9:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": null, + "desc": "chat with us & check our pages :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 https://plug.dj/codingamigos (https://gitter.im/codingamigos/chat)

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/225971708", + "date": "October 16, 2015", + "time": "10:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "chat with us & check our pages :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 https://plug.dj/codingamigos (https://gitter.im/codingamigos/chat)

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/225730882", + "date": "October 20, 2015", + "time": "9:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": null, + "desc": "chat with us & check our pages :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 https://plug.dj/codingamigos (https://gitter.im/codingamigos/chat)

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/225417888", + "date": "October 23, 2015", + "time": "10:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "chat with us & check our pages :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 https://plug.dj/codingamigos (https://gitter.im/codingamigos/chat)

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/226171457", + "date": "October 27, 2015", + "time": "8:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": null, + "desc": "chat with us & check our pages :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 https://plug.dj/codingamigos (https://gitter.im/codingamigos/chat)

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/226352823", + "date": "October 30, 2015", + "time": "9:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "chat with us & check our pages :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 https://plug.dj/codingamigos (https://gitter.im/codingamigos/chat)

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/226296909", + "date": "November 03, 2015", + "time": "8:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT7H", + "photoAlbum": null, + "desc": "chat with us & check our pages :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 https://plug.dj/codingamigos (https://gitter.im/codingamigos/chat)

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/226446049", + "date": "November 06, 2015", + "time": "9:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": { + "photoCount": 5, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/2/c/2/highres_444060706.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/2/c/a/highres_444060714.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/2/c/f/highres_444060719.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/2/d/8/highres_444060728.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/2/e/7/highres_444060743.jpeg" + } + ] + }, + "desc": "chat with us & check our pages :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 https://plug.dj/codingamigos (https://gitter.im/codingamigos/chat)

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/226544953", + "date": "November 10, 2015", + "time": "8:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": null, + "desc": "chat with us & check our pages :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 https://plug.dj/codingamigos (https://gitter.im/codingamigos/chat)

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/226616056", + "date": "November 13, 2015", + "time": "9:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "chat with us & check our pages :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 https://plug.dj/codingamigos (https://gitter.im/codingamigos/chat)

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/226706482", + "date": "November 17, 2015", + "time": "8:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": null, + "desc": "chat with us & check our pages :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 https://plug.dj/codingamigos (https://gitter.im/codingamigos/chat)

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/226465100", + "date": "November 20, 2015", + "time": "9:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "chat with us & check our pages :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 https://plug.dj/codingamigos (https://gitter.im/codingamigos/chat)

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/226471363", + "date": "November 24, 2015", + "time": "8:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT33H", + "photoAlbum": null, + "desc": "chat with us & check our pages :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 https://plug.dj/codingamigos (https://gitter.im/codingamigos/chat)

\u2022 https://titanpad.com/coHackingProjects

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/226615439", + "date": "November 27, 2015", + "time": "9:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/223765531", + "date": "December 01, 2015", + "time": "8:30PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/227019314", + "date": "December 01, 2015", + "time": "9:00PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/226775413", + "date": "December 04, 2015", + "time": "9:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT5H30M", + "photoAlbum": null, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/227109715", + "date": "December 08, 2015", + "time": "9:00PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/226932799", + "date": "December 11, 2015", + "time": "9:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/227109716", + "date": "December 15, 2015", + "time": "8:30PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/227110555", + "date": "December 18, 2015", + "time": "9:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/227356493", + "date": "December 22, 2015", + "time": "9:00PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/227519908", + "date": "December 25, 2015", + "time": "9:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/227549360", + "date": "December 29, 2015", + "time": "9:00PM" + }, + { + "title": "Friday Night CoHacking oo00oo-_-oo00oo", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/227549355", + "date": "January 01, 2016", + "time": "9:00PM" + }, + { + "title": "Tuesday Night CoHacking :-)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 10, + "link": "https://www.meetup.com/wizardamigos/events/227723104", + "date": "January 05, 2016", + "time": "9:00PM" + }, + { + "title": "Friday Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/215052892", + "date": "January 08, 2016", + "time": "9:00PM" + }, + { + "title": "Friday Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/227519338", + "date": "January 08, 2016", + "time": "9:00PM" + }, + { + "title": "Tuesday Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/227139297", + "date": "January 12, 2016", + "time": "9:00PM" + }, + { + "title": "Tuesday Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/227594115", + "date": "January 12, 2016", + "time": "9:00PM" + }, + { + "title": "Friday Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/227640103", + "date": "January 15, 2016", + "time": "9:00PM" + }, + { + "title": "Tuesday Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/228235483", + "date": "January 26, 2016", + "time": "9:00PM" + }, + { + "title": "Friday Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/227967550", + "date": "January 29, 2016", + "time": "9:00PM" + }, + { + "title": "Tuesday Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/228407718", + "date": "February 02, 2016", + "time": "9:00PM" + }, + { + "title": "Friday Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/228138538", + "date": "February 05, 2016", + "time": "9:00PM" + }, + { + "title": "Tuesday Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/228587930", + "date": "February 09, 2016", + "time": "9:00PM" + }, + { + "title": "Friday Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/228309726", + "date": "February 12, 2016", + "time": "9:00PM" + }, + { + "title": "Tuesday Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/228406134", + "date": "February 16, 2016", + "time": "9:00PM" + }, + { + "title": "Friday Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/228483634", + "date": "February 19, 2016", + "time": "9:00PM" + }, + { + "title": "Tuesday Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": { + "photoCount": 1, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/1/0/4/b/highres_447184171.jpeg" + } + ] + }, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/228927863", + "date": "February 23, 2016", + "time": "9:00PM" + }, + { + "title": "Friday Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/229002593", + "date": "February 26, 2016", + "time": "9:00PM" + }, + { + "title": "Tuesday Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/229104438", + "date": "March 01, 2016", + "time": "9:00PM" + }, + { + "title": "Friday Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": { + "photoCount": 12, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/5/e/0/4/highres_447504068.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/5/e/1/0/highres_447504080.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/5/e/3/6/highres_447504118.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/5/e/5/a/highres_447504154.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/5/e/7/6/highres_447504182.jpeg" + } + ] + }, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/229183015", + "date": "March 04, 2016", + "time": "9:00PM" + }, + { + "title": "Tuesday Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/229294215", + "date": "March 08, 2016", + "time": "9:00PM" + }, + { + "title": "Friday Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/229371279", + "date": "March 11, 2016", + "time": "9:00PM" + }, + { + "title": "Tuesday Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/229456840", + "date": "March 15, 2016", + "time": "9:00PM" + }, + { + "title": "Friday Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/229601689", + "date": "March 18, 2016", + "time": "9:00PM" + }, + { + "title": "Tuesday Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/229662586", + "date": "March 22, 2016", + "time": "9:00PM" + }, + { + "title": "Friday Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/229373663", + "date": "March 25, 2016", + "time": "9:00PM" + }, + { + "title": "Tuesday Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/229820756", + "date": "March 29, 2016", + "time": "10:00PM" + }, + { + "title": "Friday Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/229540854", + "date": "April 01, 2016", + "time": "10:00PM" + }, + { + "title": "Tuesday Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/229996490", + "date": "April 05, 2016", + "time": "10:00PM" + }, + { + "title": "Friday Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 10, + "link": "https://www.meetup.com/wizardamigos/events/229970497", + "date": "April 08, 2016", + "time": "10:00PM" + }, + { + "title": "Tuesday Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 9, + "link": "https://www.meetup.com/wizardamigos/events/230178839", + "date": "April 12, 2016", + "time": "10:00PM" + }, + { + "title": "Friday Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "10439", + "country": "de" + }, + "images": [], + "duration": "PT3H45M", + "photoAlbum": { + "photoCount": 3, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/5/5/7/a/highres_449181882.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/5/5/8/e/highres_449181902.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/5/5/9/a/highres_449181914.jpeg" + } + ] + }, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/230407481", + "date": "April 22, 2016", + "time": "9:00PM" + }, + { + "title": "Tuesday Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/230523242", + "date": "April 26, 2016", + "time": "10:00PM" + }, + { + "title": "Friday Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/230210160", + "date": "April 29, 2016", + "time": "10:00PM" + }, + { + "title": "Tuesday Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/230695134", + "date": "May 03, 2016", + "time": "10:00PM" + }, + { + "title": "Friday Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/230424833", + "date": "May 06, 2016", + "time": "10:00PM" + }, + { + "title": "Tuesday Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/230877438", + "date": "May 10, 2016", + "time": "10:00PM" + }, + { + "title": "Friday Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": { + "photoCount": 2, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/c/9/5/f/highres_449931551.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/c/9/6/2/highres_449931554.jpeg" + } + ] + }, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/230595858", + "date": "May 13, 2016", + "time": "10:00PM" + }, + { + "title": "Tuesday Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/231050467", + "date": "May 17, 2016", + "time": "10:00PM" + }, + { + "title": "Friday Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/230772511", + "date": "May 20, 2016", + "time": "10:00PM" + }, + { + "title": "Friday Open Incubator for Hacktivists", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "If you want to join us, please check our projects :-)
Which of them and related issues do you want to work on during the event?

Please choose from:
https://waffle.io/Wasl-Open-Incubator-for-NewComers/roadmap

If you have an idea for something new that can be connected to our mission and existing projects, just drop us a manage and we can brainstorm :-)

Our mission:
https://github.com/Wasl-Open-Incubator-for-NewComers/roadmap

In general, feel free to join one of the projects as a volunteer and/or propose your own project that integrates with existing projects to help newcomers starting their own self employed business and life. We want to connect them with the local ChangeMakers that can Help you aquire new Skills, open your Company or start your career as a Freelancer. :-)", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/231257776", + "date": "May 27, 2016", + "time": "5:00AM" + }, + { + "title": "Transparently helping newcomers into self employment", + "shortDescription": null, + "venue": { + "city": "Lanikea", + "country": "aq" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "If you want to join us, please check our projects :-)
Which of them and related issues do you want to work on during the event?

Please choose from:
https://waffle.io/SquatUp/roadmap

If you have an idea for something new that can be connected to our mission and existing projects, just drop us a manage and we can brainstorm :-)

Our mission:
https://github.com/SquatUp/roadmap

In general, feel free to join one of the projects as a volunteer and/or propose your own project that integrates with existing projects to help newcomers starting their own self employed business and life. We want to connect them with the local ChangeMakers that can Help you aquire new Skills, open your Company or start your career as a Freelancer. :-)

Find us here:
https://gitter.im/SquatUp/roadmap", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/231270186", + "date": "May 27, 2016", + "time": "9:00PM" + }, + { + "title": "Transparently helping newcomers into self employment", + "shortDescription": null, + "venue": { + "city": "Lanikea", + "country": "aq" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "If you want to join us, please check our projects :-)
Which of them and related issues do you want to work on during the event?

Please choose from:
https://waffle.io/SquatUp/roadmap

If you have an idea for something new that can be connected to our mission and existing projects, just drop us a manage and we can brainstorm :-)

Our mission:
https://github.com/SquatUp/roadmap

In general, feel free to join one of the projects as a volunteer and/or propose your own project that integrates with existing projects to help newcomers starting their own self employed business and life. We want to connect them with the local ChangeMakers that can Help you aquire new Skills, open your Company or start your career as a Freelancer. :-)

Find us here:
https://gitter.im/SquatUp/roadmap", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/231299537", + "date": "May 27, 2016", + "time": "9:00PM" + }, + { + "title": "Transparently helping newcomers into self employment", + "shortDescription": null, + "venue": { + "city": "Lanikea", + "country": "aq" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "If you want to join us, please check our projects :-)
Which of them and related issues do you want to work on during the event?

Please choose from:
https://waffle.io/SquatUp/roadmap

If you have an idea for something new that can be connected to our mission and existing projects, just drop us a manage and we can brainstorm :-)

Our mission:
https://github.com/SquatUp/roadmap

In general, feel free to join one of the projects as a volunteer and/or propose your own project that integrates with existing projects to help newcomers starting their own self employed business and life. We want to connect them with the local ChangeMakers that can Help you aquire new Skills, open your Company or start your career as a Freelancer. :-)

Find us here:
https://gitter.im/SquatUp/roadmap", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/231381118", + "date": "May 27, 2016", + "time": "9:00PM" + }, + { + "title": "Tuesday Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
If you already visited us a few times and feel like hosting the event once or more times, we created a doodle (http://doodle.com/poll/9gmu449v45sxm9c8) (http://doodle.com/poll/9gmu449v45sxm9c8)where you can apply when you have time to organize so that we can collaboratively continue with events without breaks.
GO GO Coding Amigos :-)

chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/231297668", + "date": "May 31, 2016", + "time": "9:00PM" + }, + { + "title": "Tuesday Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
If you already visited us a few times and feel like hosting the event once or more times, we created a doodle (http://doodle.com/poll/9gmu449v45sxm9c8) (http://doodle.com/poll/9gmu449v45sxm9c8)where you can apply when you have time to organize so that we can collaboratively continue with events without breaks.
GO GO Coding Amigos :-)

chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/231529163", + "date": "June 03, 2016", + "time": "9:00PM" + }, + { + "title": "Friday Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/231257208", + "date": "June 03, 2016", + "time": "10:00PM" + }, + { + "title": "Tuesday Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
If you already visited us a few times and feel like hosting the event once or more times, we created a doodle (http://doodle.com/poll/9gmu449v45sxm9c8) (http://doodle.com/poll/9gmu449v45sxm9c8)where you can apply when you have time to organize so that we can collaboratively continue with events without breaks.
GO GO Coding Amigos :-)

chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/231522725", + "date": "June 07, 2016", + "time": "9:00PM" + }, + { + "title": "Transparently helping newcomers into self employment", + "shortDescription": null, + "venue": { + "city": "Lanikea", + "country": "aq" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "If you want to join us, please check our projects :-)
Which of them and related issues do you want to work on during the event?

Please choose from:
https://waffle.io/SquatUp/roadmap
(same as: https://github.com/SquatUp/roadmap/issues )

If you have an idea for something new that can be connected to our mission and existing projects, just drop us a manage and we can brainstorm :-)

Our mission:
https://github.com/SquatUp/roadmap

In general, feel free to join one of the projects as a volunteer and/or propose your own project that integrates with existing projects to help newcomers starting their own self employed business and life. We want to connect them with the local ChangeMakers that can Help you aquire new Skills, open your Company or start your career as a Freelancer. :-)

Find us here:
https://gitter.im/SquatUp/roadmap", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/231301787", + "date": "June 10, 2016", + "time": "9:00PM" + }, + { + "title": "Tuesday Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
If you already visited us a few times and feel like hosting the event once or more times, we created a doodle (http://doodle.com/poll/9gmu449v45sxm9c8) (http://doodle.com/poll/9gmu449v45sxm9c8)where you can apply when you have time to organize so that we can collaboratively continue with events without breaks.
GO GO Coding Amigos :-)

chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/231522722", + "date": "June 10, 2016", + "time": "9:00PM" + }, + { + "title": "Tuesday Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
If you already visited us a few times and feel like hosting the event once or more times, we created a doodle (http://doodle.com/poll/9gmu449v45sxm9c8) (http://doodle.com/poll/9gmu449v45sxm9c8)where you can apply when you have time to organize so that we can collaboratively continue with events without breaks.
GO GO Coding Amigos :-)

chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/231522732", + "date": "June 14, 2016", + "time": "9:00PM" + }, + { + "title": "Tuesday Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
If you already visited us a few times and feel like hosting the event once or more times, we created a doodle (http://doodle.com/poll/9gmu449v45sxm9c8) (http://doodle.com/poll/9gmu449v45sxm9c8)where you can apply when you have time to organize so that we can collaboratively continue with events without breaks.
GO GO Coding Amigos :-)

chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/231529166", + "date": "June 17, 2016", + "time": "9:00PM" + }, + { + "title": "Transparently helping newcomers into self employment", + "shortDescription": null, + "venue": { + "city": "Lanikea", + "country": "aq" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "If you want to join us, please check our projects :-)
Which of them and related issues do you want to work on during the event?

Please choose from:
https://waffle.io/SquatUp/roadmap
(same as: https://github.com/SquatUp/roadmap/issues )

If you have an idea for something new that can be connected to our mission and existing projects, just drop us a manage and we can brainstorm :-)

Our mission:
https://github.com/SquatUp/roadmap

In general, feel free to join one of the projects as a volunteer and/or propose your own project that integrates with existing projects to help newcomers starting their own self employed business and life. We want to connect them with the local ChangeMakers that can Help you aquire new Skills, open your Company or start your career as a Freelancer. :-)

Find us here:
https://gitter.im/SquatUp/roadmap", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/231822441", + "date": "June 17, 2016", + "time": "9:00PM" + }, + { + "title": "Tuesday Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
If you already visited us a few times and feel like hosting the event once or more times, we created a doodle (http://doodle.com/poll/9gmu449v45sxm9c8) (http://doodle.com/poll/9gmu449v45sxm9c8)where you can apply when you have time to organize so that we can collaboratively continue with events without breaks.
GO GO Coding Amigos :-)

chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/231814797", + "date": "June 21, 2016", + "time": "9:00PM" + }, + { + "title": "Transparently helping newcomers into self employment", + "shortDescription": null, + "venue": { + "city": "Lanikea", + "country": "aq" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "If you want to join us, please check our projects :-)
Which of them and related issues do you want to work on during the event?

Please choose from:
https://waffle.io/SquatUp/roadmap
(same as: https://github.com/SquatUp/roadmap/issues )

If you have an idea for something new that can be connected to our mission and existing projects, just drop us a manage and we can brainstorm :-)

Our mission:
https://github.com/SquatUp/roadmap

In general, feel free to join one of the projects as a volunteer and/or propose your own project that integrates with existing projects to help newcomers starting their own self employed business and life. We want to connect them with the local ChangeMakers that can Help you aquire new Skills, open your Company or start your career as a Freelancer. :-)

Find us here:
https://gitter.im/SquatUp/roadmap", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/231507368", + "date": "June 24, 2016", + "time": "9:00PM" + }, + { + "title": "Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
If you already visited us a few times and feel like hosting the event once or more times, we created a doodle (http://doodle.com/poll/9gmu449v45sxm9c8) (http://doodle.com/poll/9gmu449v45sxm9c8)where you can apply when you have time to organize so that we can collaboratively continue with events without breaks.
GO GO Coding Amigos :-)

chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/231990608", + "date": "June 24, 2016", + "time": "9:00PM" + }, + { + "title": "Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
If you already visited us a few times and feel like hosting the event once or more times, we created a doodle (http://doodle.com/poll/9gmu449v45sxm9c8) (http://doodle.com/poll/9gmu449v45sxm9c8)where you can apply when you have time to organize so that we can collaboratively continue with events without breaks.
GO GO Coding Amigos :-)

chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/232086209", + "date": "June 28, 2016", + "time": "9:00PM" + }, + { + "title": "Transparently helping newcomers into self employment", + "shortDescription": null, + "venue": { + "city": "Lanikea", + "country": "aq" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "If you want to join us, please check our projects :-)
Which of them and related issues do you want to work on during the event?

Please choose from:
https://waffle.io/SquatUp/roadmap
(same as: https://github.com/SquatUp/roadmap/issues )

If you have an idea for something new that can be connected to our mission and existing projects, just drop us a manage and we can brainstorm :-)

Our mission:
https://github.com/SquatUp/roadmap

In general, feel free to join one of the projects as a volunteer and/or propose your own project that integrates with existing projects to help newcomers starting their own self employed business and life. We want to connect them with the local ChangeMakers that can Help you aquire new Skills, open your Company or start your career as a Freelancer. :-)

Find us here:
https://gitter.im/SquatUp/roadmap", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/231921444", + "date": "July 01, 2016", + "time": "9:00PM" + }, + { + "title": "Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
If you already visited us a few times and feel like hosting the event once or more times, we created a doodle (http://doodle.com/poll/9gmu449v45sxm9c8) (http://doodle.com/poll/9gmu449v45sxm9c8)where you can apply when you have time to organize so that we can collaboratively continue with events without breaks.
GO GO Coding Amigos :-)

chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/232100025", + "date": "July 01, 2016", + "time": "9:00PM" + }, + { + "title": "Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
If you already visited us a few times and feel like hosting the event once or more times, we created a doodle (http://doodle.com/poll/9gmu449v45sxm9c8) (http://doodle.com/poll/9gmu449v45sxm9c8)where you can apply when you have time to organize so that we can collaboratively continue with events without breaks.
GO GO Coding Amigos :-)

chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/232100030", + "date": "July 05, 2016", + "time": "9:00PM" + }, + { + "title": "Transparently helping newcomers into self employment", + "shortDescription": null, + "venue": { + "city": "Lanikea", + "country": "aq" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "If you want to join us, please check our projects :-)
Which of them and related issues do you want to work on during the event?

Please choose from:
https://waffle.io/SquatUp/roadmap
(same as: https://github.com/SquatUp/roadmap/issues )

If you have an idea for something new that can be connected to our mission and existing projects, just drop us a manage and we can brainstorm :-)

Our mission:
https://github.com/SquatUp/roadmap

In general, feel free to join one of the projects as a volunteer and/or propose your own project that integrates with existing projects to help newcomers starting their own self employed business and life. We want to connect them with the local ChangeMakers that can Help you aquire new Skills, open your Company or start your career as a Freelancer. :-)

Find us here:
https://gitter.im/SquatUp/roadmap", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/231930660", + "date": "July 08, 2016", + "time": "9:00PM" + }, + { + "title": "Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
If you already visited us a few times and feel like hosting the event once or more times, we created a doodle (http://doodle.com/poll/9gmu449v45sxm9c8) (http://doodle.com/poll/9gmu449v45sxm9c8)where you can apply when you have time to organize so that we can collaboratively continue with events without breaks.
GO GO Coding Amigos :-)

chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/232100045", + "date": "July 08, 2016", + "time": "9:00PM" + }, + { + "title": "Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
If you already visited us a few times and feel like hosting the event once or more times, we created a doodle (http://doodle.com/poll/9gmu449v45sxm9c8) (http://doodle.com/poll/9gmu449v45sxm9c8)where you can apply when you have time to organize so that we can collaboratively continue with events without breaks.
GO GO Coding Amigos :-)

chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/232100055", + "date": "July 12, 2016", + "time": "9:00PM" + }, + { + "title": "Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
If you already visited us a few times and feel like hosting the event once or more times, we created a doodle (http://doodle.com/poll/9gmu449v45sxm9c8) (http://doodle.com/poll/9gmu449v45sxm9c8)where you can apply when you have time to organize so that we can collaboratively continue with events without breaks.
GO GO Coding Amigos :-)

chat with us & check our projects :-)

\u2022 https://gitter.im/codingamigos/chat

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/232491701", + "date": "July 15, 2016", + "time": "9:00PM" + }, + { + "title": "Transparently helping newcomers into self employment", + "shortDescription": null, + "venue": { + "city": "Lanikea", + "country": "aq" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "If you want to join us, please check our projects :-)
Which of them and related issues do you want to work on during the event?

Please choose from:
https://waffle.io/SquatUp/roadmap
(same as: https://github.com/SquatUp/roadmap/issues )

If you have an idea for something new that can be connected to our mission and existing projects, just drop us a manage and we can brainstorm :-)

Our mission:
https://github.com/SquatUp/roadmap

In general, feel free to join one of the projects as a volunteer and/or propose your own project that integrates with existing projects to help newcomers starting their own self employed business and life. We want to connect them with the local ChangeMakers that can Help you aquire new Skills, open your Company or start your career as a Freelancer. :-)

Find us here:
https://gitter.im/SquatUp/roadmap", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/232491703", + "date": "July 15, 2016", + "time": "9:00PM" + }, + { + "title": "Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.

Chat with us

\u2022 https://gitter.im/codingamigos/chat

Show, what you do

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/232491705", + "date": "July 19, 2016", + "time": "9:00PM" + }, + { + "title": "Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.

Chat with us

\u2022 https://gitter.im/codingamigos/chat

Show, what you do

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/232328869", + "date": "July 22, 2016", + "time": "9:00PM" + }, + { + "title": "Transparently helping newcomers into self employment", + "shortDescription": null, + "venue": { + "city": "Lanikea", + "country": "aq" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "If you want to join us, please check our projects :-)
Which of them and related issues do you want to work on during the event?

Please choose from:
https://waffle.io/SquatUp/roadmap
(same as: https://github.com/SquatUp/roadmap/issues )

If you have an idea for something new that can be connected to our mission and existing projects, just drop us a manage and we can brainstorm :-)

Our mission:
https://github.com/SquatUp/roadmap

In general, feel free to join one of the projects as a volunteer and/or propose your own project that integrates with existing projects to help newcomers starting their own self employed business and life. We want to connect them with the local ChangeMakers that can Help you aquire new Skills, open your Company or start your career as a Freelancer. :-)

Find us here:
https://gitter.im/SquatUp/roadmap", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/232665976", + "date": "July 22, 2016", + "time": "9:00PM" + }, + { + "title": "Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.

Chat with us

\u2022 https://gitter.im/codingamigos/chat

Show, what you do

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/232757954", + "date": "July 26, 2016", + "time": "9:00PM" + }, + { + "title": "Transparently helping newcomers into self employment", + "shortDescription": null, + "venue": { + "city": "Lanikea", + "country": "aq" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "If you want to join us, please check our projects :-)
Which of them and related issues do you want to work on during the event?

Please choose from:
https://waffle.io/SquatUp/roadmap
(same as: https://github.com/SquatUp/roadmap/issues )

If you have an idea for something new that can be connected to our mission and existing projects, just drop us a manage and we can brainstorm :-)

Our mission:
https://github.com/SquatUp/roadmap

In general, feel free to join one of the projects as a volunteer and/or propose your own project that integrates with existing projects to help newcomers starting their own self employed business and life. We want to connect them with the local ChangeMakers that can Help you aquire new Skills, open your Company or start your career as a Freelancer. :-)

Find us here:
https://gitter.im/SquatUp/roadmap", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/231971447", + "date": "July 29, 2016", + "time": "9:00PM" + }, + { + "title": "Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.

Chat with us

\u2022 https://gitter.im/codingamigos/chat

Show, what you do

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/232775553", + "date": "July 29, 2016", + "time": "9:00PM" + }, + { + "title": "Open Hacking Night", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.

Chat with us

\u2022 https://gitter.im/codingamigos/chat

Show, what you do

\u2022 http://codingamigos.com/

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/232924306", + "date": "August 02, 2016", + "time": "9:00PM" + }, + { + "title": "Friday open hacking", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.

Chat with us

\u2022 https://gitter.im/codingamigos/chat

Show, what you do

\u2022 http://codingamigos.com/

Collaborating with RefugeesWork project, supporting newcomers and new learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/231520360", + "date": "August 05, 2016", + "time": "9:00PM" + }, + { + "title": "Friday open hacking", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": { + "photoCount": 7, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/1/d/f/9/highres_452827673.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/1/e/0/7/highres_452827687.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/1/e/1/5/highres_452827701.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/1/e/3/1/highres_452827729.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/1/e/4/5/highres_452827749.jpeg" + } + ] + }, + "desc": "IMPORTANT NOTE:
If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.

Chat with us

\u2022 https://gitter.im/codingamigos/chat

Show, what you do

\u2022 http://codingamigos.com/

Collaborating with RefugeesWork project, supporting newcomers and new learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 9, + "link": "https://www.meetup.com/wizardamigos/events/232996322", + "date": "August 05, 2016", + "time": "9:00PM" + }, + { + "title": "Tuesday open hacking", + "shortDescription": null, + "venue": { + "city": "Lanikea", + "country": "aq" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.

Chat with us

\u2022 https://gitter.im/codingamigos/chat

Show, what you do

\u2022 http://codingamigos.com/

Supporting newcomers

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/231299757", + "date": "August 09, 2016", + "time": "9:00PM" + }, + { + "title": "Tuesday open hacking", + "shortDescription": null, + "venue": { + "city": "Lanikea", + "country": "aq" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.

Chat with us

\u2022 https://gitter.im/codingamigos/chat

Show, what you do

\u2022 http://codingamigos.com/

Collaborating with RefugeesWork project, supporting newcomers and new learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/233090560", + "date": "August 09, 2016", + "time": "9:00PM" + }, + { + "title": "Tuesday open hacking", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.

Chat with us

\u2022 https://gitter.im/codingamigos/chat

Show, what you do

\u2022 http://codingamigos.com/

Collaborating with RefugeesWork project, supporting newcomers and new learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/233094258", + "date": "August 09, 2016", + "time": "9:30PM" + }, + { + "title": "Tuesday open hacking", + "shortDescription": null, + "venue": { + "city": "Lanikea", + "country": "aq" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.

Chat with us

\u2022 https://gitter.im/codingamigos/chat

Show, what you do

\u2022 http://codingamigos.com/

Collaborating with RefugeesWork project, supporting newcomers and new learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/233218257", + "date": "August 09, 2016", + "time": "9:30PM" + }, + { + "title": "Tuesday open hacking", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.

Chat with us

\u2022 https://gitter.im/codingamigos/chat

Show, what you do

\u2022 http://codingamigos.com/

Collaborating with RefugeesWork project, supporting newcomers and new learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/233218354", + "date": "August 09, 2016", + "time": "9:30PM" + }, + { + "title": "Friday open hacking", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.

Chat with us

\u2022 https://gitter.im/codingamigos/chat

Show, what you do

\u2022 http://codingamigos.com/

Collaborating with RefugeesWork project, supporting newcomers and new learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/233096173", + "date": "August 12, 2016", + "time": "9:30PM" + }, + { + "title": "Tuesday open hacking", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.

Chat with us

\u2022 https://gitter.im/codingamigos/chat

Show, what you do

\u2022 http://codingamigos.com/

Collaborating with RefugeesWork project, supporting newcomers and new learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/233096224", + "date": "August 16, 2016", + "time": "9:30PM" + }, + { + "title": "Friday open hacking", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.

Chat with us

\u2022 https://gitter.im/codingamigos/chat

Show, what you do

\u2022 http://codingamigos.com/

Collaborating with RefugeesWork project, supporting newcomers and new learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/233096175", + "date": "August 19, 2016", + "time": "9:30PM" + }, + { + "title": "Tuesday open hacking", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.

Chat with us

\u2022 https://gitter.im/codingamigos/chat

Show, what you do

\u2022 http://codingamigos.com/

Collaborating with RefugeesWork project, supporting newcomers and new learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/233096225", + "date": "August 23, 2016", + "time": "9:30PM" + }, + { + "title": "Tuesday open hacking", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.

Chat with us

\u2022 https://gitter.im/codingamigos/chat

Show, what you do

\u2022 http://codingamigos.com/

Collaborating with RefugeesWork project, supporting newcomers and new learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/233039506", + "date": "August 26, 2016", + "time": "9:30PM" + }, + { + "title": "Friday open hacking", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.

Chat with us

\u2022 https://gitter.im/codingamigos/chat

Show, what you do

\u2022 http://codingamigos.com/

Collaborating with RefugeesWork project, supporting newcomers and new learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/233227089", + "date": "August 26, 2016", + "time": "9:30PM" + }, + { + "title": "Tuesday open hacking", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.

Chat with us

\u2022 https://gitter.im/codingamigos/chat

Show, what you do

\u2022 http://codingamigos.com/

Collaborating with RefugeesWork project, supporting newcomers and new learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/233268473", + "date": "August 30, 2016", + "time": "9:30PM" + }, + { + "title": "Friday open hacking", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": { + "photoCount": 6, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/8/b/0/6/highres_453815590.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/8/b/0/b/highres_453815595.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/8/b/0/d/highres_453815597.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/8/b/1/2/highres_453815602.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/8/b/2/0/highres_453815616.jpeg" + } + ] + }, + "desc": "IMPORTANT NOTE:
If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.

Chat with us

\u2022 https://gitter.im/codingamigos/chat

Show, what you do

\u2022 http://codingamigos.com/

Collaborating with RefugeesWork project, supporting newcomers and new learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/233667711", + "date": "September 02, 2016", + "time": "9:30PM" + }, + { + "title": "Tuesday open hacking", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.

Chat with us

\u2022 https://gitter.im/codingamigos/chat

Show, what you do

\u2022 http://codingamigos.com/

Collaborating with RefugeesWork project, supporting newcomers and new learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/233427149", + "date": "September 06, 2016", + "time": "9:30PM" + }, + { + "title": "Friday open hacking", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.

Chat with us

\u2022 https://gitter.im/codingamigos/chat

Show, what you do

\u2022 http://codingamigos.com/

Collaborating with RefugeesWork project, supporting newcomers and new learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/233849768", + "date": "September 09, 2016", + "time": "9:30PM" + }, + { + "title": "Tuesday open hacking", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.

Chat with us

\u2022 https://gitter.im/codingamigos/chat

Show, what you do

\u2022 http://codingamigos.com/

Collaborating with RefugeesWork project, supporting newcomers and new learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/233946752", + "date": "September 13, 2016", + "time": "9:30PM" + }, + { + "title": "Friday open hacking", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.

Chat with us

\u2022 https://gitter.im/codingamigos/chat

Show, what you do

\u2022 http://codingamigos.com/

Collaborating with RefugeesWork project, supporting newcomers and new learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 13, + "link": "https://www.meetup.com/wizardamigos/events/234019088", + "date": "September 16, 2016", + "time": "9:30PM" + }, + { + "title": "Tuesday open hacking", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
We do the meetup regular and hosts are volunteers. It might not always start on time. If you wanna know more, please join and ask us on the gitter chat.

\u2022 https://gitter.im/codingamigos/chat

Show, what you do

\u2022 http://codingamigos.com/

Collaborating with RefugeesWork project, supporting newcomers and new learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/234125997", + "date": "September 20, 2016", + "time": "9:30PM" + }, + { + "title": "Tuesday open hacking", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
We do the meetup regular and hosts are volunteers. It might not always start on time. If you wanna know more, please join and ask us on the gitter chat.

\u2022 https://gitter.im/codingamigos/chat

Show, what you do

\u2022 http://codingamigos.com/

Collaborating with RefugeesWork project, supporting newcomers and new learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/234270144", + "date": "September 20, 2016", + "time": "9:30PM" + }, + { + "title": "Friday open hacking", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
We do the meetup regular and hosts are volunteers. It might not always start on time. If you wanna know more, please join and ask us on the gitter chat.

\u2022 https://gitter.im/codingamigos/chat

Show, what you do

\u2022 http://codingamigos.com/

Collaborating with RefugeesWork project, supporting newcomers and new learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/234018006", + "date": "September 23, 2016", + "time": "9:30PM" + }, + { + "title": "Tuesday open hacking", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
We do the meetup regular and hosts are volunteers. It might not always start on time. If you wanna know more, please join and ask us on the gitter chat.

\u2022 https://gitter.im/codingamigos/chat

Show, what you do

\u2022 http://codingamigos.com/

Collaborating with RefugeesWork project, supporting newcomers and new learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/234199241", + "date": "September 27, 2016", + "time": "9:30PM" + }, + { + "title": "Friday open hacking", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
We do the meetup regular and hosts are volunteers. It might not always start on time. If you wanna know more, please join and ask us on the gitter chat.

\u2022 https://gitter.im/codingamigos/chat

Show, what you do

\u2022 http://codingamigos.com/

Collaborating with RefugeesWork project, supporting newcomers and new learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/234025909", + "date": "September 30, 2016", + "time": "9:30PM" + }, + { + "title": "Tuesday open hacking", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
We do the meetup regular and hosts are volunteers. It might not always start on time. If you wanna know more, please join and ask us on the gitter chat.

\u2022 https://gitter.im/codingamigos/chat

Show, what you do

\u2022 http://codingamigos.com/

Collaborating with RefugeesWork project, supporting newcomers and new learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/234270850", + "date": "October 04, 2016", + "time": "9:30PM" + }, + { + "title": "Coding for Change ", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT29H", + "photoAlbum": null, + "desc": "A hackathon dedicated to prevent waste and to expand the movement of sharing!
https://project.yunity.org/blog/post/coding-change", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/234641276", + "date": "October 07, 2016", + "time": "9:00PM" + }, + { + "title": "Co-working/co-learn\u00ading events for freelance developers (www.codingamigos.c\u00adom)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": { + "photoCount": 5, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/7/f/4/8/highres_454892584.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/7/f/5/a/highres_454892602.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/7/f/6/b/highres_454892619.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/7/f/7/6/highres_454892630.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/7/f/8/3/highres_454892643.jpeg" + } + ] + }, + "desc": "\u2022 https://project.yunity.org/blog/post/coding-change

\u2022 https://gitter.im/codingamigos/chat

Show, what you do

\u2022 http://codingamigos.com/

Collaborating with RefugeesWork project, supporting newcomers and new learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/234270905", + "date": "October 07, 2016", + "time": "9:30PM" + }, + { + "title": "Tuesday open hacking", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": { + "photoCount": 5, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/7/4/b/8/highres_455009880.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/7/4/c/a/highres_455009898.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/7/4/f/1/highres_455009937.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/7/5/0/b/highres_455009963.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/7/5/1/7/highres_455009975.jpeg" + } + ] + }, + "desc": "IMPORTANT NOTE:
We do the meetup regular and hosts are volunteers. It might not always start on time. If you wanna know more, please join and ask us on the gitter chat.

\u2022 https://gitter.im/codingamigos/chat

Show, what you do

\u2022 http://codingamigos.com/

Collaborating with RefugeesWork project, supporting newcomers and new learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 9, + "link": "https://www.meetup.com/wizardamigos/events/234482488", + "date": "October 11, 2016", + "time": "9:30PM" + }, + { + "title": "Friday open hacking", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
We do the meetup regular and hosts are volunteers. It might not always start on time. If you wanna know more, please join and ask us on the gitter chat.

\u2022 https://gitter.im/codingamigos/chat

Show, what you do

\u2022 http://codingamigos.com/

Collaborating with RefugeesWork project, supporting newcomers and new learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/234345107", + "date": "October 14, 2016", + "time": "9:30PM" + }, + { + "title": "Tuesday open hacking", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
We do the meetup regular and hosts are volunteers. It might not always start on time. If you wanna know more, please join and ask us on the gitter chat.

\u2022 https://gitter.im/codingamigos/chat

Show, what you do

\u2022 http://codingamigos.com/

Collaborating with RefugeesWork project, supporting newcomers and new learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/234478386", + "date": "October 18, 2016", + "time": "9:30PM" + }, + { + "title": "Friday open hacking", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
We do the meetup regular and hosts are volunteers. It might not always start on time. If you wanna know more, please join and ask us on the gitter chat.

\u2022 https://gitter.im/codingamigos/chat

Show, what you do

\u2022 http://codingamigos.com/

Collaborating with RefugeesWork project, supporting newcomers and new learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/234553841", + "date": "October 21, 2016", + "time": "9:30PM" + }, + { + "title": "Tuesday open hacking", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
We do the meetup regular and hosts are volunteers. It might not always start on time. If you wanna know more, please join and ask us on the gitter chat.

\u2022 https://gitter.im/codingamigos/chat

Show, what you do

\u2022 http://codingamigos.com/

Collaborating with RefugeesWork project, supporting newcomers and new learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/234973177", + "date": "October 25, 2016", + "time": "9:30PM" + }, + { + "title": "Friday open hacking", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
We do the meetup regular and hosts are volunteers. It might not always start on time. If you wanna know more, please join and ask us on the gitter chat.

\u2022 https://gitter.im/codingamigos/chat

Show, what you do

\u2022 http://codingamigos.com/

Collaborating with RefugeesWork project, supporting newcomers and new learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/235043802", + "date": "October 28, 2016", + "time": "9:30PM" + }, + { + "title": "Tuesday open hacking", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
We do the meetup regular and hosts are volunteers. It might not always start on time. If you wanna know more, please join and ask us on the gitter chat.

\u2022 https://gitter.im/codingamigos/chat

Show, what you do

\u2022 http://codingamigos.com/

Collaborating with RefugeesWork project, supporting newcomers and new learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/235219426", + "date": "November 01, 2016", + "time": "8:30PM" + }, + { + "title": "Friday open hacking", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
We do the meetup regular and hosts are volunteers. It might not always start on time. If you wanna know more, please join and ask us on the gitter chat.

\u2022 https://gitter.im/codingamigos/chat

Show, what you do

\u2022 http://codingamigos.com/

Collaborating with RefugeesWork project, supporting newcomers and new learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/235223435", + "date": "November 04, 2016", + "time": "8:30PM" + }, + { + "title": "Tuesday open hacking", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
We do the meetup regular and hosts are volunteers. It might not always start on time. If you wanna know more, please join and ask us on the gitter chat.

\u2022 https://gitter.im/codingamigos/chat

Show, what you do

\u2022 http://codingamigos.com/

Collaborating with RefugeesWork project, supporting newcomers and new learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 9, + "link": "https://www.meetup.com/wizardamigos/events/234572783", + "date": "November 08, 2016", + "time": "8:30PM" + }, + { + "title": "Friday open hacking", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "IMPORTANT NOTE:
We do the meetup regular and hosts are volunteers. It might not always start on time. If you wanna know more, please join and ask us on the gitter chat.

\u2022 https://gitter.im/codingamigos/chat

Show, what you do

\u2022 http://codingamigos.com/

Collaborating with RefugeesWork project, supporting newcomers and new learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581

\u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2605\u00b7.\u00b7\u00b4\u00af`\u00b7.\u00b7\u2605

\u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8 \u24d2\u24de\u24d3\u24d8\u24dd\u24d6 \u24d0\u24dc\u24d8\u24d6\u24de\u24e2 \u00b8,\u00f8\u00a4\u00ba\u00b0`\u00b0\u00ba\u00a4\u00f8,\u00b8

\u2581 \u2582 \u2584 \u2585 \u2586 \u2587 \u2588 \u023c\u0e4f\u010f\u0268\u0272\u01e5 \u0105\u028d\u0268\u01e5\u0e4f$ \u2588 \u2587 \u2586 \u2585 \u2584 \u2582 \u2581", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/235043036", + "date": "November 11, 2016", + "time": "8:30PM" + }, + { + "title": "CodingAmigos - Open Hacking Hangout", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, and much more like a hangout to get to know interesting people, collaborate, work on your own projects and chat about tech and the world.

---

\u2022 We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 We talk english or code

\u2022 We aim to support each other

\u2022 We encourage equal amount of sharing and listening

\u2022 We promote inclusiveness regardless of gender, age, skill,...

\u2022 We try to make everyone feel welcome :)

---

Get to know us, and chat:
https://gitter.im/codingamigos/chat

Show off what you're working on:
http://codingamigos.com/

Collaborate with the RefugeesWork project:
http://refugeeswork.com (http://www.refugeeswork.com/)

---

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/234759248", + "date": "November 15, 2016", + "time": "8:30PM" + }, + { + "title": "Friday open hacking", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat

Show off what you're working on:

\u2022 http://codingamigos.com/

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 11, + "link": "https://www.meetup.com/wizardamigos/events/235538086", + "date": "November 18, 2016", + "time": "8:30PM" + }, + { + "title": "CodingAmigos - Open Hacking Hangout", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 We only talk in english or code

\u2022 We aim to support each otherWe encourage equal amount of sharing and talking in our meetups

\u2022 We promote inclusiveness regardless of gender, age, skill or anything at all

\u2022 We try to make everyone feel welcome

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat

Show off what you're working on:

\u2022 http://codingamigos.com/

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 10, + "link": "https://www.meetup.com/wizardamigos/events/235628113", + "date": "November 22, 2016", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish] (every Tuesday, every Friday)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H", + "photoAlbum": { + "photoCount": 9, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/6/3/9/highres_456338457.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/9/6/4/1/highres_456338465.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/a/9/e/e/highres_456343502.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/a/9/f/0/highres_456343504.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/a/9/f/1/highres_456343505.jpeg" + } + ] + }, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us at DigiQuarters (near Dongmen MRT station)
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github

and

twitter

Feel free to Join us:

http://gitter.im/codingamigos/learners

Who are we?
People from different professional backgrounds (e.g. translators, scientists, journalists, designers, students, backend developers - to name only a few) who want to learn JavaScript... practically anyone from complete beginners to folks with jobs in the industry. It's a great opportunity to meet like minded people, to co-learn, help each other or just build new connections.

We believe programming is the literacy of the future and we curate our own curriculum and make use of many existing online learning resources to bring coding to as many people as possible :-)

The current state of our curriculum:http://wizardamigos.com

Our goal is to stay close to the cutting edge of how to develop in JavaScript and utilizing http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)

If this is unfamiliar to you, maybe go and watch this talk:

https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones
\u2022 (optional) bring a friend :-)

CURRENT LOCATION (https://www.google.com/maps/place/Lane+143,+Section+1,+Hangzhou+S+Rd,+Zhongzheng+District,+Taipei+City,+Taiwan+100/@25.038893,121.529824,15z/data=!4m5!3m4!1s0x3442a978045bcea5:0xb7c932a913c5fde7!8m2!3d25.0359576!4d121.5256393?hl=en-US): Taipei DigiQuarters ( http://www.digiquarters.com/ )
Lane 143, Section 1, Hangzhou S Rd, Zhongzheng District
Taipei City, Taiwan 100 (MRT Dongmen Station Exit 1)
\u2022 AC & WIFI (260 Mbps down, 230 Mbps up)
\u2022 Unlimited free coffee supply
\u2022 glass walls to write on with markers

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 9, + "link": "https://www.meetup.com/wizardamigos/events/235780996", + "date": "November 25, 2016", + "time": "8:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish] (every Tuesday, every Friday)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us at DigiQuarters (near Dongmen MRT station)
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github

and

twitter

Feel free to Join us:

http://gitter.im/codingamigos/learners

Who are we?
People from different professional backgrounds (e.g. translators, scientists, journalists, designers, students, backend developers - to name only a few) who want to learn JavaScript... practically anyone from complete beginners to folks with jobs in the industry. It's a great opportunity to meet like minded people, to co-learn, help each other or just build new connections.

We believe programming is the literacy of the future and we curate our own curriculum and make use of many existing online learning resources to bring coding to as many people as possible :-)

The current state of our curriculum:http://wizardamigos.com

Our goal is to stay close to the cutting edge of how to develop in JavaScript and utilizing http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)

If this is unfamiliar to you, maybe go and watch this talk:

https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones
\u2022 (optional) bring a friend :-)

CURRENT LOCATION (https://www.google.com/maps/place/Lane+143,+Section+1,+Hangzhou+S+Rd,+Zhongzheng+District,+Taipei+City,+Taiwan+100/@25.038893,121.529824,15z/data=!4m5!3m4!1s0x3442a978045bcea5:0xb7c932a913c5fde7!8m2!3d25.0359576!4d121.5256393?hl=en-US): Taipei DigiQuarters ( http://www.digiquarters.com/ )
Lane 143, Section 1, Hangzhou S Rd, Zhongzheng District
Taipei City, Taiwan 100 (MRT Dongmen Station Exit 1)
\u2022 AC & WIFI (260 Mbps down, 230 Mbps up)
\u2022 Unlimited free coffee supply
\u2022 glass walls to write on with markers

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/235782348", + "date": "November 25, 2016", + "time": "8:00PM" + }, + { + "title": "Friday open hacking", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat

Show off what you're working on:

\u2022 http://codingamigos.com/

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/235696745", + "date": "November 25, 2016", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish] (every Tuesday, every Friday)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us at DigiQuarters (near Dongmen MRT station)
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github

and

twitter

Feel free to Join us:

http://gitter.im/codingamigos/learners

Who are we?
People from different professional backgrounds (e.g. translators, scientists, journalists, designers, students, backend developers - to name only a few) who want to learn JavaScript... practically anyone from complete beginners to folks with jobs in the industry. It's a great opportunity to meet like minded people, to co-learn, help each other or just build new connections.

We believe programming is the literacy of the future and we curate our own curriculum and make use of many existing online learning resources to bring coding to as many people as possible :-)

The current state of our curriculum:http://wizardamigos.com

Our goal is to stay close to the cutting edge of how to develop in JavaScript and utilizing http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)

If this is unfamiliar to you, maybe go and watch this talk:

https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones
\u2022 (optional) bring a friend :-)

CURRENT LOCATION (https://www.google.com/maps/place/Lane+143,+Section+1,+Hangzhou+S+Rd,+Zhongzheng+District,+Taipei+City,+Taiwan+100/@25.038893,121.529824,15z/data=!4m5!3m4!1s0x3442a978045bcea5:0xb7c932a913c5fde7!8m2!3d25.0359576!4d121.5256393?hl=en-US): Taipei DigiQuarters ( http://www.digiquarters.com/ )
Lane 143, Section 1, Hangzhou S Rd, Zhongzheng District
Taipei City, Taiwan 100 (MRT Dongmen Station Exit 1)
\u2022 AC & WIFI (260 Mbps down, 230 Mbps up)
\u2022 Unlimited free coffee supply
\u2022 glass walls to write on with markers

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/235787811", + "date": "November 29, 2016", + "time": "8:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish] (every Tuesday, every Friday)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us at DigiQuarters (near Dongmen MRT station)
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github

and

twitter

Feel free to Join us:

http://gitter.im/codingamigos/learners

Who are we?
People from different professional backgrounds (e.g. translators, scientists, journalists, designers, students, backend developers - to name only a few) who want to learn JavaScript... practically anyone from complete beginners to folks with jobs in the industry. It's a great opportunity to meet like minded people, to co-learn, help each other or just build new connections.

We believe programming is the literacy of the future and we curate our own curriculum and make use of many existing online learning resources to bring coding to as many people as possible :-)

The current state of our curriculum:http://wizardamigos.com

Our goal is to stay close to the cutting edge of how to develop in JavaScript and utilizing http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)

If this is unfamiliar to you, maybe go and watch this talk:

https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones
\u2022 (optional) bring a friend :-)

CURRENT LOCATION (https://www.google.com/maps/place/Lane+143,+Section+1,+Hangzhou+S+Rd,+Zhongzheng+District,+Taipei+City,+Taiwan+100/@25.038893,121.529824,15z/data=!4m5!3m4!1s0x3442a978045bcea5:0xb7c932a913c5fde7!8m2!3d25.0359576!4d121.5256393?hl=en-US): Taipei DigiQuarters ( http://www.digiquarters.com/ )
Lane 143, Section 1, Hangzhou S Rd, Zhongzheng District
Taipei City, Taiwan 100 (MRT Dongmen Station Exit 1)
\u2022 AC & WIFI (260 Mbps down, 230 Mbps up)
\u2022 Unlimited free coffee supply
\u2022 glass walls to write on with markers

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/235835519", + "date": "November 29, 2016", + "time": "8:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish] (every Tuesday, every Friday)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H", + "photoAlbum": { + "photoCount": 7, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/7/e/1/6/highres_456452278.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/7/e/1/8/highres_456452280.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/7/e/1/b/highres_456452283.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/7/e/1/c/highres_456452284.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/7/e/2/8/highres_456452296.jpeg" + } + ] + }, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us at DigiQuarters (near Dongmen MRT station)
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github

and

twitter

Feel free to Join us:

http://gitter.im/codingamigos/learners

Who are we?
People from different professional backgrounds (e.g. translators, scientists, journalists, designers, students, backend developers - to name only a few) who want to learn JavaScript... practically anyone from complete beginners to folks with jobs in the industry. It's a great opportunity to meet like minded people, to co-learn, help each other or just build new connections.

We believe programming is the literacy of the future and we curate our own curriculum and make use of many existing online learning resources to bring coding to as many people as possible :-)

The current state of our curriculum:http://wizardamigos.com

Our goal is to stay close to the cutting edge of how to develop in JavaScript and utilizing http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)

If this is unfamiliar to you, maybe go and watch this talk:

https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones
\u2022 (optional) bring a friend :-)

CURRENT LOCATION (https://www.google.com/maps/place/Lane+143,+Section+1,+Hangzhou+S+Rd,+Zhongzheng+District,+Taipei+City,+Taiwan+100/@25.038893,121.529824,15z/data=!4m5!3m4!1s0x3442a978045bcea5:0xb7c932a913c5fde7!8m2!3d25.0359576!4d121.5256393?hl=en-US): Taipei DigiQuarters ( http://www.digiquarters.com/ )
Lane 143, Section 1, Hangzhou S Rd, Zhongzheng District
Taipei City, Taiwan 100 (MRT Dongmen Station Exit 1)
\u2022 AC & WIFI (260 Mbps down, 230 Mbps up)
\u2022 Unlimited free coffee supply
\u2022 glass walls to write on with markers

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/235839259", + "date": "November 29, 2016", + "time": "8:00PM" + }, + { + "title": "CodingAmigos - Open Hacking Hangout", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat

Show off what you're working on:

\u2022 http://codingamigos.com/

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/235470416", + "date": "November 29, 2016", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish] (every Tuesday, every Friday)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H", + "photoAlbum": { + "photoCount": 3, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/a/b/1/3/highres_456523795.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/a/b/1/8/highres_456523800.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/a/b/1/c/highres_456523804.jpeg" + } + ] + }, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us at DigiQuarters (near Dongmen MRT station)
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github

and

twitter

Feel free to Join us:

http://gitter.im/codingamigos/learners

Who are we?
People from different professional backgrounds (e.g. translators, scientists, journalists, designers, students, backend developers - to name only a few) who want to learn JavaScript... practically anyone from complete beginners to folks with jobs in the industry. It's a great opportunity to meet like minded people, to co-learn, help each other or just build new connections.

We believe programming is the literacy of the future and we curate our own curriculum and make use of many existing online learning resources to bring coding to as many people as possible :-)

The current state of our curriculum:http://wizardamigos.com

Our goal is to stay close to the cutting edge of how to develop in JavaScript and utilizing http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)

If this is unfamiliar to you, maybe go and watch this talk:

https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones
\u2022 (optional) bring a friend :-)

CURRENT LOCATION (https://www.google.com/maps/place/Lane+143,+Section+1,+Hangzhou+S+Rd,+Zhongzheng+District,+Taipei+City,+Taiwan+100/@25.038893,121.529824,15z/data=!4m5!3m4!1s0x3442a978045bcea5:0xb7c932a913c5fde7!8m2!3d25.0359576!4d121.5256393?hl=en-US): Taipei DigiQuarters ( http://www.digiquarters.com/ )
Lane 143, Section 1, Hangzhou S Rd, Zhongzheng District
Taipei City, Taiwan 100 (MRT Dongmen Station Exit 1)
\u2022 AC & WIFI (260 Mbps down, 230 Mbps up)
\u2022 Unlimited free coffee supply
\u2022 glass walls to write on with markers

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/235839260", + "date": "December 02, 2016", + "time": "8:00PM" + }, + { + "title": "Friday open hacking", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat

Show off what you're working on:

\u2022 http://codingamigos.com/

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/235845075", + "date": "December 02, 2016", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github

and

twitter

Feel free to Join us:

http://gitter.im/codingamigos/learners

Who are we?
People from different professional backgrounds (e.g. translators, scientists, journalists, designers, students, backend developers - to name only a few) who want to learn JavaScript... practically anyone from complete beginners to folks with jobs in the industry. It's a great opportunity to meet like minded people, to co-learn, help each other or just build new connections.

We believe programming is the literacy of the future and we curate our own curriculum and make use of many existing online learning resources to bring coding to as many people as possible :-)

The current state of our curriculum:http://wizardamigos.com

Our goal is to stay close to the cutting edge of how to develop in JavaScript and utilizing http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)

If this is unfamiliar to you, maybe go and watch this talk:

https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/236018718", + "date": "December 05, 2016", + "time": "8:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": { + "photoCount": 7, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/b/1/a/8/highres_456645480.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/b/1/a/e/highres_456645486.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/b/1/b/3/highres_456645491.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/b/1/b/8/highres_456645496.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/b/1/b/f/highres_456645503.jpeg" + } + ] + }, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github

and

twitter

Feel free to Join us:

http://gitter.im/codingamigos/learners

Who are we?
People from different professional backgrounds (e.g. translators, scientists, journalists, designers, students, backend developers - to name only a few) who want to learn JavaScript... practically anyone from complete beginners to folks with jobs in the industry. It's a great opportunity to meet like minded people, to co-learn, help each other or just build new connections.

We believe programming is the literacy of the future and we curate our own curriculum and make use of many existing online learning resources to bring coding to as many people as possible :-)

The current state of our curriculum:http://wizardamigos.com

Our goal is to stay close to the cutting edge of how to develop in JavaScript and utilizing http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)

If this is unfamiliar to you, maybe go and watch this talk:

https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/236018722", + "date": "December 05, 2016", + "time": "8:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H", + "photoAlbum": { + "photoCount": 6, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/c/7/7/2/highres_456651058.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/c/7/7/3/highres_456651059.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/c/7/7/7/highres_456651063.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/c/7/7/8/highres_456651064.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/c/7/7/a/highres_456651066.jpeg" + } + ] + }, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us at DigiQuarters (near Dongmen MRT station)
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github

and

twitter

Feel free to Join us:

http://gitter.im/codingamigos/learners

Who are we?
People from different professional backgrounds (e.g. translators, scientists, journalists, designers, students, backend developers - to name only a few) who want to learn JavaScript... practically anyone from complete beginners to folks with jobs in the industry. It's a great opportunity to meet like minded people, to co-learn, help each other or just build new connections.

We believe programming is the literacy of the future and we curate our own curriculum and make use of many existing online learning resources to bring coding to as many people as possible :-)

The current state of our curriculum:http://app.wizardamigos.com

Our goal is to stay close to the cutting edge of how to develop in JavaScript and utilizing http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)

If this is unfamiliar to you, maybe go and watch this talk:

https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones
\u2022 (optional) bring a friend :-)

CURRENT LOCATION (https://www.google.com/maps/place/Lane+143,+Section+1,+Hangzhou+S+Rd,+Zhongzheng+District,+Taipei+City,+Taiwan+100/@25.038893,121.529824,15z/data=!4m5!3m4!1s0x3442a978045bcea5:0xb7c932a913c5fde7!8m2!3d25.0359576!4d121.5256393?hl=en-US): Taipei DigiQuarters ( http://www.digiquarters.com/ )
Lane 143, Section 1, Hangzhou S Rd, Zhongzheng District
Taipei City, Taiwan 100 (MRT Dongmen Station Exit 1)
\u2022 AC & WIFI (260 Mbps down, 230 Mbps up)
\u2022 Unlimited free coffee supply
\u2022 glass walls to write on with markers

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/235839261", + "date": "December 06, 2016", + "time": "8:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish] (every Tuesday, every Friday)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us at DigiQuarters (near Dongmen MRT station)
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github

and

twitter

Feel free to Join us:

http://gitter.im/codingamigos/learners

Who are we?
People from different professional backgrounds (e.g. translators, scientists, journalists, designers, students, backend developers - to name only a few) who want to learn JavaScript... practically anyone from complete beginners to folks with jobs in the industry. It's a great opportunity to meet like minded people, to co-learn, help each other or just build new connections.

We believe programming is the literacy of the future and we curate our own curriculum and make use of many existing online learning resources to bring coding to as many people as possible :-)

The current state of our curriculum:http://wizardamigos.com

Our goal is to stay close to the cutting edge of how to develop in JavaScript and utilizing http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)

If this is unfamiliar to you, maybe go and watch this talk:

https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones
\u2022 (optional) bring a friend :-)

CURRENT LOCATION (https://www.google.com/maps/place/Lane+143,+Section+1,+Hangzhou+S+Rd,+Zhongzheng+District,+Taipei+City,+Taiwan+100/@25.038893,121.529824,15z/data=!4m5!3m4!1s0x3442a978045bcea5:0xb7c932a913c5fde7!8m2!3d25.0359576!4d121.5256393?hl=en-US): Taipei DigiQuarters ( http://www.digiquarters.com/ )
Lane 143, Section 1, Hangzhou S Rd, Zhongzheng District
Taipei City, Taiwan 100 (MRT Dongmen Station Exit 1)
\u2022 AC & WIFI (260 Mbps down, 230 Mbps up)
\u2022 Unlimited free coffee supply
\u2022 glass walls to write on with markers

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/236064321", + "date": "December 06, 2016", + "time": "8:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us at DigiQuarters (near Dongmen MRT station)
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github

and

twitter

Feel free to Join us:

http://gitter.im/codingamigos/learners

Who are we?
People from different professional backgrounds (e.g. translators, scientists, journalists, designers, students, backend developers - to name only a few) who want to learn JavaScript... practically anyone from complete beginners to folks with jobs in the industry. It's a great opportunity to meet like minded people, to co-learn, help each other or just build new connections.

We believe programming is the literacy of the future and we curate our own curriculum and make use of many existing online learning resources to bring coding to as many people as possible :-)

The current state of our curriculum:http://app.wizardamigos.com

Our goal is to stay close to the cutting edge of how to develop in JavaScript and utilizing http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)

If this is unfamiliar to you, maybe go and watch this talk:

https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones
\u2022 (optional) bring a friend :-)

CURRENT LOCATION (https://www.google.com/maps/place/Lane+143,+Section+1,+Hangzhou+S+Rd,+Zhongzheng+District,+Taipei+City,+Taiwan+100/@25.038893,121.529824,15z/data=!4m5!3m4!1s0x3442a978045bcea5:0xb7c932a913c5fde7!8m2!3d25.0359576!4d121.5256393?hl=en-US): Taipei DigiQuarters ( http://www.digiquarters.com/ )
Lane 143, Section 1, Hangzhou S Rd, Zhongzheng District
Taipei City, Taiwan 100 (MRT Dongmen Station Exit 1)
\u2022 AC & WIFI (260 Mbps down, 230 Mbps up)
\u2022 Unlimited free coffee supply
\u2022 glass walls to write on with markers

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/236065119", + "date": "December 06, 2016", + "time": "8:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat

Show off what you're working on:

\u2022 http://codingamigos.com/

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/234270167", + "date": "December 06, 2016", + "time": "8:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat

Show off what you're working on:

\u2022 http://codingamigos.com/

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/235937540", + "date": "December 06, 2016", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github

and

twitter

Feel free to Join us:

http://gitter.im/codingamigos/learners

Who are we?
People from different professional backgrounds (e.g. translators, scientists, journalists, designers, students, backend developers - to name only a few) who want to learn JavaScript... practically anyone from complete beginners to folks with jobs in the industry. It's a great opportunity to meet like minded people, to co-learn, help each other or just build new connections.

We believe programming is the literacy of the future and we curate our own curriculum and make use of many existing online learning resources to bring coding to as many people as possible :-)

The current state of our curriculum:http://wizardamigos.com

Our goal is to stay close to the cutting edge of how to develop in JavaScript and utilizing http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)

If this is unfamiliar to you, maybe go and watch this talk:

https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/236018727", + "date": "December 07, 2016", + "time": "8:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H", + "photoAlbum": { + "photoCount": 3, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/3/2/e/d/highres_456733037.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/3/2/f/e/highres_456733054.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/3/3/1/2/highres_456733074.jpeg" + } + ] + }, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us at DigiQuarters (near Dongmen MRT station)
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github

and

twitter

Feel free to Join us:

http://gitter.im/codingamigos/learners

Who are we?
People from different professional backgrounds (e.g. translators, scientists, journalists, designers, students, backend developers - to name only a few) who want to learn JavaScript... practically anyone from complete beginners to folks with jobs in the industry. It's a great opportunity to meet like minded people, to co-learn, help each other or just build new connections.

We believe programming is the literacy of the future and we curate our own curriculum and make use of many existing online learning resources to bring coding to as many people as possible :-)

The current state of our curriculum:http://app.wizardamigos.com

Our goal is to stay close to the cutting edge of how to develop in JavaScript and utilizing http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)

If this is unfamiliar to you, maybe go and watch this talk:

https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones
\u2022 (optional) bring a friend :-)

CURRENT LOCATION (https://www.google.com/maps/place/Lane+143,+Section+1,+Hangzhou+S+Rd,+Zhongzheng+District,+Taipei+City,+Taiwan+100/@25.038893,121.529824,15z/data=!4m5!3m4!1s0x3442a978045bcea5:0xb7c932a913c5fde7!8m2!3d25.0359576!4d121.5256393?hl=en-US): Taipei DigiQuarters ( http://www.digiquarters.com/ )
Lane 143, Section 1, Hangzhou S Rd, Zhongzheng District
Taipei City, Taiwan 100 (MRT Dongmen Station Exit 1)
\u2022 AC & WIFI (260 Mbps down, 230 Mbps up)
\u2022 Unlimited free coffee supply
\u2022 glass walls to write on with markers

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/235839262", + "date": "December 09, 2016", + "time": "8:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat

Show off what you're working on:

\u2022 http://codingamigos.com/

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/233218307", + "date": "December 09, 2016", + "time": "8:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat

Show off what you're working on:

\u2022 http://codingamigos.com/

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/236009313", + "date": "December 09, 2016", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": { + "photoCount": 4, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/a/2/b/5/highres_456821653.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/a/2/b/a/highres_456821658.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/a/2/c/7/highres_456821671.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/a/2/d/9/highres_456821689.jpeg" + } + ] + }, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github

and

twitter

Feel free to Join us:

http://gitter.im/codingamigos/learners

Who are we?
People from different professional backgrounds (e.g. translators, scientists, journalists, designers, students, backend developers - to name only a few) who want to learn JavaScript... practically anyone from complete beginners to folks with jobs in the industry. It's a great opportunity to meet like minded people, to co-learn, help each other or just build new connections.

We believe programming is the literacy of the future and we curate our own curriculum and make use of many existing online learning resources to bring coding to as many people as possible :-)

The current state of our curriculum:http://wizardamigos.com

Our goal is to stay close to the cutting edge of how to develop in JavaScript and utilizing http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)

If this is unfamiliar to you, maybe go and watch this talk:

https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/236018728", + "date": "December 12, 2016", + "time": "8:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us at DigiQuarters (near Dongmen MRT station)
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github

and

twitter

Feel free to Join us:

http://gitter.im/codingamigos/learners

Who are we?
People from different professional backgrounds (e.g. translators, scientists, journalists, designers, students, backend developers - to name only a few) who want to learn JavaScript... practically anyone from complete beginners to folks with jobs in the industry. It's a great opportunity to meet like minded people, to co-learn, help each other or just build new connections.

We believe programming is the literacy of the future and we curate our own curriculum and make use of many existing online learning resources to bring coding to as many people as possible :-)

The current state of our curriculum:http://app.wizardamigos.com

Our goal is to stay close to the cutting edge of how to develop in JavaScript and utilizing http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)

If this is unfamiliar to you, maybe go and watch this talk:

https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones
\u2022 (optional) bring a friend :-)

CURRENT LOCATION (https://www.google.com/maps/place/Lane+143,+Section+1,+Hangzhou+S+Rd,+Zhongzheng+District,+Taipei+City,+Taiwan+100/@25.038893,121.529824,15z/data=!4m5!3m4!1s0x3442a978045bcea5:0xb7c932a913c5fde7!8m2!3d25.0359576!4d121.5256393?hl=en-US): Taipei DigiQuarters ( http://www.digiquarters.com/ )
Lane 143, Section 1, Hangzhou S Rd, Zhongzheng District
Taipei City, Taiwan 100 (MRT Dongmen Station Exit 1)
\u2022 AC & WIFI (260 Mbps down, 230 Mbps up)
\u2022 Unlimited free coffee supply
\u2022 glass walls to write on with markers

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/235839263", + "date": "December 13, 2016", + "time": "8:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat

Show off what you're working on:

\u2022 http://codingamigos.com/

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/236097183", + "date": "December 13, 2016", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github

and

twitter

Feel free to Join us:

http://gitter.im/codingamigos/learners

Who are we?
People from different professional backgrounds (e.g. translators, scientists, journalists, designers, students, backend developers - to name only a few) who want to learn JavaScript... practically anyone from complete beginners to folks with jobs in the industry. It's a great opportunity to meet like minded people, to co-learn, help each other or just build new connections.

We believe programming is the literacy of the future and we curate our own curriculum and make use of many existing online learning resources to bring coding to as many people as possible :-)

The current state of our curriculum:http://wizardamigos.com

Our goal is to stay close to the cutting edge of how to develop in JavaScript and utilizing http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)

If this is unfamiliar to you, maybe go and watch this talk:

https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/236018731", + "date": "December 14, 2016", + "time": "8:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H", + "photoAlbum": { + "photoCount": 3, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/2/5/a/3/highres_456909635.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/2/5/a/9/highres_456909641.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/2/5/a/e/highres_456909646.jpeg" + } + ] + }, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us at DigiQuarters (near Dongmen MRT station)
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github

and

twitter

Feel free to Join us:

http://gitter.im/codingamigos/learners

Who are we?
People from different professional backgrounds (e.g. translators, scientists, journalists, designers, students, backend developers - to name only a few) who want to learn JavaScript... practically anyone from complete beginners to folks with jobs in the industry. It's a great opportunity to meet like minded people, to co-learn, help each other or just build new connections.

We believe programming is the literacy of the future and we curate our own curriculum and make use of many existing online learning resources to bring coding to as many people as possible :-)

The current state of our curriculum:http://app.wizardamigos.com

Our goal is to stay close to the cutting edge of how to develop in JavaScript and utilizing http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)

If this is unfamiliar to you, maybe go and watch this talk:

https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones
\u2022 (optional) bring a friend :-)

CURRENT LOCATION (https://www.google.com/maps/place/Lane+143,+Section+1,+Hangzhou+S+Rd,+Zhongzheng+District,+Taipei+City,+Taiwan+100/@25.038893,121.529824,15z/data=!4m5!3m4!1s0x3442a978045bcea5:0xb7c932a913c5fde7!8m2!3d25.0359576!4d121.5256393?hl=en-US): Taipei DigiQuarters ( http://www.digiquarters.com/ )
Lane 143, Section 1, Hangzhou S Rd, Zhongzheng District
Taipei City, Taiwan 100 (MRT Dongmen Station Exit 1)
\u2022 AC & WIFI (260 Mbps down, 230 Mbps up)
\u2022 Unlimited free coffee supply
\u2022 glass walls to write on with markers

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/235839264", + "date": "December 16, 2016", + "time": "8:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat

Show off what you're working on:

\u2022 http://codingamigos.com/

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/235844432", + "date": "December 16, 2016", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github

and

twitter

Feel free to Join us:

http://gitter.im/codingamigos/learners

Who are we?
People from different professional backgrounds (e.g. translators, scientists, journalists, designers, students, backend developers - to name only a few) who want to learn JavaScript... practically anyone from complete beginners to folks with jobs in the industry. It's a great opportunity to meet like minded people, to co-learn, help each other or just build new connections.

We believe programming is the literacy of the future and we curate our own curriculum and make use of many existing online learning resources to bring coding to as many people as possible :-)

The current state of our curriculum:http://wizardamigos.com

Our goal is to stay close to the cutting edge of how to develop in JavaScript and utilizing http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)

If this is unfamiliar to you, maybe go and watch this talk:

https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/236018735", + "date": "December 19, 2016", + "time": "8:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat

Show off what you're working on:

\u2022 http://codingamigos.com/

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 11, + "link": "https://www.meetup.com/wizardamigos/events/236241949", + "date": "December 20, 2016", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github

and

twitter

Feel free to Join us:

http://gitter.im/codingamigos/learners

Who are we?
People from different professional backgrounds (e.g. translators, scientists, journalists, designers, students, backend developers - to name only a few) who want to learn JavaScript... practically anyone from complete beginners to folks with jobs in the industry. It's a great opportunity to meet like minded people, to co-learn, help each other or just build new connections.

We believe programming is the literacy of the future and we curate our own curriculum and make use of many existing online learning resources to bring coding to as many people as possible :-)

The current state of our curriculum:http://wizardamigos.com

Our goal is to stay close to the cutting edge of how to develop in JavaScript and utilizing http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)

If this is unfamiliar to you, maybe go and watch this talk:

https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/236018739", + "date": "December 22, 2016", + "time": "8:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat

Show off what you're working on:

\u2022 http://codingamigos.com/

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/236018876", + "date": "December 23, 2016", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github

and

twitter

Feel free to Join us:

http://gitter.im/codingamigos/learners

Who are we?
People from different professional backgrounds (e.g. translators, scientists, journalists, designers, students, backend developers - to name only a few) who want to learn JavaScript... practically anyone from complete beginners to folks with jobs in the industry. It's a great opportunity to meet like minded people, to co-learn, help each other or just build new connections.

We believe programming is the literacy of the future and we curate our own curriculum and make use of many existing online learning resources to bring coding to as many people as possible :-)

The current state of our curriculum:http://wizardamigos.com

Our goal is to stay close to the cutting edge of how to develop in JavaScript and utilizing http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)

If this is unfamiliar to you, maybe go and watch this talk:

https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/236358989", + "date": "December 26, 2016", + "time": "8:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github

and

twitter

Feel free to Join us:

http://gitter.im/codingamigos/learners

Who are we?
People from different professional backgrounds (e.g. translators, scientists, journalists, designers, students, backend developers - to name only a few) who want to learn JavaScript... practically anyone from complete beginners to folks with jobs in the industry. It's a great opportunity to meet like minded people, to co-learn, help each other or just build new connections.

We believe programming is the literacy of the future and we curate our own curriculum and make use of many existing online learning resources to bring coding to as many people as possible :-)

The current state of our curriculum:http://wizardamigos.com

Our goal is to stay close to the cutting edge of how to develop in JavaScript and utilizing http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)

If this is unfamiliar to you, maybe go and watch this talk:

https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/236353818", + "date": "December 29, 2016", + "time": "8:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT3H", + "photoAlbum": { + "photoCount": 1, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/b/5/e/d/highres_457306573.jpeg" + } + ] + }, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github

and

twitter

Feel free to Join us:

http://gitter.im/codingamigos/learners

Who are we?
People from different professional backgrounds (e.g. translators, scientists, journalists, designers, students, backend developers - to name only a few) who want to learn JavaScript... practically anyone from complete beginners to folks with jobs in the industry. It's a great opportunity to meet like minded people, to co-learn, help each other or just build new connections.

We believe programming is the literacy of the future and we curate our own curriculum and make use of many existing online learning resources to bring coding to as many people as possible :-)

The current state of our curriculum:http://wizardamigos.com

Our goal is to stay close to the cutting edge of how to develop in JavaScript and utilizing http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)

If this is unfamiliar to you, maybe go and watch this talk:

https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/236174382", + "date": "January 02, 2017", + "time": "8:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/236552361", + "date": "January 05, 2017", + "time": "8:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know like-minded people, work on your own projects and chat about tech and the world.

\u2022 We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 We usually talk only english or code :)

\u2022 We aim to support each other

\u2022 We encourage equal amount of sharing and talking in our meetups

\u2022 We promote inclusiveness regardless of gender, age, skill, or anything at all

\u2022 We try to make everyone feel welcome

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat

Show off what you're working on:

\u2022 http://codingamigos.com/

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/236518585", + "date": "January 06, 2017", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/236635890", + "date": "January 09, 2017", + "time": "8:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat

Show off what you're working on:

\u2022 http://codingamigos.com/

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/236085520", + "date": "January 10, 2017", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/236635892", + "date": "January 12, 2017", + "time": "8:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat

Show off what you're working on:

\u2022 http://codingamigos.com/

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 11, + "link": "https://www.meetup.com/wizardamigos/events/236518649", + "date": "January 13, 2017", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/236501256", + "date": "January 16, 2017", + "time": "8:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/236635904", + "date": "January 16, 2017", + "time": "8:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat

Show off what you're working on:

\u2022 http://codingamigos.com/

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/236518669", + "date": "January 17, 2017", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/236635911", + "date": "January 19, 2017", + "time": "8:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/236635919", + "date": "January 19, 2017", + "time": "8:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat

Show off what you're working on:

\u2022 http://codingamigos.com/

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/236727491", + "date": "January 20, 2017", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/236635935", + "date": "January 23, 2017", + "time": "8:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/236939840", + "date": "January 23, 2017", + "time": "8:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat

Show off what you're working on:

\u2022 http://codingamigos.com/

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/236518690", + "date": "January 24, 2017", + "time": "8:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, we usually talk english or code :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat

Show off what you're working on:

\u2022 http://codingamigos.com/

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/236518699", + "date": "January 27, 2017", + "time": "8:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat

Show off what you're working on:

\u2022 http://codingamigos.com/

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/236518702", + "date": "January 31, 2017", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/236995418", + "date": "February 02, 2017", + "time": "8:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat

Show off what you're working on:

\u2022 http://codingamigos.com/

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/237273941", + "date": "February 03, 2017", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/237346917", + "date": "February 06, 2017", + "time": "8:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat

Show off what you're working on:

\u2022 http://codingamigos.com/

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 12, + "link": "https://www.meetup.com/wizardamigos/events/237376312", + "date": "February 07, 2017", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/237494058", + "date": "February 09, 2017", + "time": "8:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat

Show off what you're working on:

\u2022 http://codingamigos.com/

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/237457781", + "date": "February 10, 2017", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "TW" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": { + "photoCount": 3, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/4/b/2/0/highres_458899232.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/4/b/2/1/highres_458899233.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/4/b/2/2/highres_458899234.jpeg" + } + ] + }, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 9, + "link": "https://www.meetup.com/wizardamigos/events/237529322", + "date": "February 13, 2017", + "time": "8:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat

Show off what you're working on:

\u2022 http://codingamigos.com/

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/237638925", + "date": "February 17, 2017", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/237707350", + "date": "February 20, 2017", + "time": "8:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat

Show off what you're working on:

\u2022 http://codingamigos.com/

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/237734838", + "date": "February 21, 2017", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat

Show off what you're working on:

\u2022 http://codingamigos.com/

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/237456534", + "date": "February 24, 2017", + "time": "8:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat

Show off what you're working on:

\u2022 http://codingamigos.com/

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 9, + "link": "https://www.meetup.com/wizardamigos/events/237787603", + "date": "February 28, 2017", + "time": "8:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat

Show off what you're working on:

\u2022 http://codingamigos.com/

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/237640570", + "date": "March 03, 2017", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": { + "photoCount": 2, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/4/b/0/f/highres_458899215.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/4/b/1/0/highres_458899216.jpeg" + } + ] + }, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/238061945", + "date": "March 06, 2017", + "time": "8:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Zasavje - Slovenia, JavaScript]", + "shortDescription": null, + "venue": { + "city": "Zagorje ob Savi", + "country": "si" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": { + "photoCount": 3, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/6/5/8/d/highres_458905997.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/6/5/8/b/highres_458905995.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/6/5/8/c/highres_458905996.jpeg" + } + ] + }, + "desc": "V ponedeljek, 6.marca, se za\u010denja WizardAmigos Codecamp Zasavje, skupinsko u\u010denje (co-learning) programskega jezika Java Script. Z uporabo spletne platforme bomo \u010disti za\u010detniki, poznavalci in pa \u010disto naklju\u010dni entuziasti zavihali rokave in izzvali mo\u017eganje. Nov jezik? Programski jezik!

U\u010dimo se skupaj, a vsak po svoji poti.
Kaj potrebuje\u0161?
- prenosnik
- slu\u0161alke

Cena?
Neprecenljivo. Pridru\u017ei se!

Mimogrede - ste \u017ee kdaj sli\u0161ali za brezposelnega programerja? Ali pa da je danes na trgu dela programiranje \u0161kodljiva ve\u0161\u010dina? Mi tudi ne. ///////////////////////////////////////////////////////////////////////////////////////

WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Zasavje, Slovenia. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using
Gitter chat and Facebook.
Feel free to Join us:
https://www.facebook.com/groups/369246343421803/
https://gitter.im/wizardamigosinstitute/program

http://npmjs.org and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/238211510", + "date": "March 06, 2017", + "time": "8:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Zasavje - Slovenia, JavaScript]", + "shortDescription": null, + "venue": null, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "V ponedeljek, 6.marca, se za\u010denja WizardAmigos Codecamp Zasavje, skupinsko u\u010denje (co-learning) programskega jezika Java Script. Z uporabo spletne platforme bomo \u010disti za\u010detniki, poznavalci in pa \u010disto naklju\u010dni entuziasti zavihali rokave in izzvali mo\u017eganje. Nov jezik? Programski jezik!

U\u010dimo se skupaj, a vsak po svoji poti.
Kaj potrebuje\u0161?
- prenosnik
- slu\u0161alke

Cena?
Neprecenljivo. Pridru\u017ei se!

Mimogrede - ste \u017ee kdaj sli\u0161ali za brezposelnega programerja? Ali pa da je danes na trgu dela programiranje \u0161kodljiva ve\u0161\u010dina? Mi tudi ne. ///////////////////////////////////////////////////////////////////////////////////////

WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Zasavje, Slovenia. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using
Gitter chat and Facebook.
Feel free to Join us:
https://www.facebook.com/groups/369246343421803/
https://gitter.im/wizardamigosinstitute/program

http://npmjs.org and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/238211717", + "date": "March 06, 2017", + "time": "8:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Zasavje - Slovenia, JavaScript]", + "shortDescription": null, + "venue": { + "city": "Zagorje ob Savi", + "country": "si" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "V ponedeljek, 6.marca, se za\u010denja WizardAmigos Codecamp Zasavje, skupinsko u\u010denje (co-learning) programskega jezika Java Script. Z uporabo spletne platforme bomo \u010disti za\u010detniki, poznavalci in pa \u010disto naklju\u010dni entuziasti zavihali rokave in izzvali mo\u017eganje. Nov jezik? Programski jezik!

U\u010dimo se skupaj, a vsak po svoji poti.
Kaj potrebuje\u0161?
- prenosnik
- slu\u0161alke

Cena?
Neprecenljivo. Pridru\u017ei se!

Mimogrede - ste \u017ee kdaj sli\u0161ali za brezposelnega programerja? Ali pa da je danes na trgu dela programiranje \u0161kodljiva ve\u0161\u010dina? Mi tudi ne. ///////////////////////////////////////////////////////////////////////////////////////

WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Zasavje, Slovenia. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using
Gitter chat and Facebook.
Feel free to Join us:
https://www.facebook.com/groups/369246343421803/
https://gitter.im/wizardamigosinstitute/program

http://npmjs.org and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/238211885", + "date": "March 06, 2017", + "time": "8:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat

Show off what you're working on:

\u2022 http://codingamigos.com/

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/238085513", + "date": "March 07, 2017", + "time": "8:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat

Show off what you're working on:

\u2022 http://codingamigos.com/

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 9, + "link": "https://www.meetup.com/wizardamigos/events/238085467", + "date": "March 10, 2017", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Zasavje - Slovenia, JavaScript]", + "shortDescription": null, + "venue": { + "city": "Zagorje ob Savi", + "country": "si" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "V ponedeljek, 6.marca, smo pri\u010deli z WizardAmigos Codecamp Zasavje, skupinskim u\u010denjem (co-learning) programskega jezika Java Script. Z uporabo spletne platforme bomo \u010disti za\u010detniki, poznavalci in pa \u010disto naklju\u010dni entuziasti zavihali rokave in izzvali mo\u017eganje. Nov jezik? Programski jezik!

U\u010dimo se skupaj, a vsak po svoji poti.
Kaj potrebuje\u0161?
- prenosnik
- slu\u0161alke

Cena?
Neprecenljivo. Pridru\u017ei se!

Mimogrede - ste \u017ee kdaj sli\u0161ali za brezposelnega programerja? Ali pa da je danes na trgu dela programiranje \u0161kodljiva ve\u0161\u010dina? Mi tudi ne. ///////////////////////////////////////////////////////////////////////////////////////

WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Zasavje, Slovenia. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using
Gitter chat and Facebook.
Feel free to Join us:
https://www.facebook.com/groups/369246343421803/
https://gitter.im/wizardamigosinstitute/program

http://npmjs.org and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/238223170", + "date": "March 13, 2017", + "time": "8:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Zasavje - Slovenia, JavaScript]", + "shortDescription": null, + "venue": { + "city": "Zagorje ob Savi", + "country": "si" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "V ponedeljek, 6.marca, smo pri\u010deli z WizardAmigos Codecamp Zasavje, skupinskim u\u010denjem (co-learning) programskega jezika Java Script. Z uporabo spletne platforme bomo \u010disti za\u010detniki, poznavalci in pa \u010disto naklju\u010dni entuziasti zavihali rokave in izzvali mo\u017eganje. Nov jezik? Programski jezik!

U\u010dimo se skupaj, a vsak po svoji poti.
Kaj potrebuje\u0161?
- prenosnik
- slu\u0161alke

Cena?
Neprecenljivo. Pridru\u017ei se!

Mimogrede - ste \u017ee kdaj sli\u0161ali za brezposelnega programerja? Ali pa da je danes na trgu dela programiranje \u0161kodljiva ve\u0161\u010dina? Mi tudi ne. ///////////////////////////////////////////////////////////////////////////////////////

WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Zasavje, Slovenia. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using
Gitter chat and Facebook.
Feel free to Join us:
https://www.facebook.com/groups/369246343421803/
https://gitter.im/wizardamigosinstitute/program

http://npmjs.org and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/238223174", + "date": "March 13, 2017", + "time": "8:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/238316104", + "date": "March 13, 2017", + "time": "8:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Phuket, JavaScript, English]", + "shortDescription": null, + "venue": { + "city": "Phuket ", + "country": "th" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Phuket. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

gitter
https://gitter.im/wizardamigosinstitute/program

and

facebook https://www.facebook.com/groups/369246343421803/

Feel free to Join us:
http://app.wizardamigos.com

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/238316956", + "date": "March 13, 2017", + "time": "8:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat Show off what you're working on:

\u2022 http://codingamigos.com/ Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/238417428", + "date": "March 14, 2017", + "time": "9:45PM" + }, + { + "title": "WizardAmigos CodeCamp [Phuket, JavaScript, English]", + "shortDescription": null, + "venue": { + "city": "Phuket ", + "country": "th" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Phuket. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

gitter
https://gitter.im/wizardamigosinstitute/program

and

facebook https://www.facebook.com/groups/369246343421803/

Feel free to Join us:
http://app.wizardamigos.com

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/238317595", + "date": "March 15, 2017", + "time": "8:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat

Show off what you're working on:

\u2022 http://codingamigos.com/

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/238166920", + "date": "March 17, 2017", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/238316110", + "date": "March 20, 2017", + "time": "8:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Phuket, JavaScript, English]", + "shortDescription": null, + "venue": { + "city": "Phuket ", + "country": "th" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Phuket. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

gitter
https://gitter.im/wizardamigosinstitute/program

and

facebook https://www.facebook.com/groups/369246343421803/

Feel free to Join us:
http://app.wizardamigos.com

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/238317597", + "date": "March 20, 2017", + "time": "8:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Zasavje - Slovenia, JavaScript]", + "shortDescription": null, + "venue": { + "city": "Zagorje ob Savi", + "country": "si" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": { + "photoCount": 1, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/e/5/5/1/highres_459298705.jpeg" + } + ] + }, + "desc": "V ponedeljek, 6.marca, smo pri\u010deli z WizardAmigos Codecamp Zasavje, skupinskim u\u010denjem (co-learning) programskega jezika Java Script. Z uporabo spletne platforme bomo \u010disti za\u010detniki, poznavalci in pa \u010disto naklju\u010dni entuziasti zavihali rokave in izzvali mo\u017eganje. Nov jezik? Programski jezik!

U\u010dimo se skupaj, a vsak po svoji poti.
Kaj potrebuje\u0161?
- prenosnik
- slu\u0161alke

Cena?
Neprecenljivo. Pridru\u017ei se!

Mimogrede - ste \u017ee kdaj sli\u0161ali za brezposelnega programerja? Ali pa da je danes na trgu dela programiranje \u0161kodljiva ve\u0161\u010dina? Mi tudi ne. ///////////////////////////////////////////////////////////////////////////////////////

WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Zasavje, Slovenia. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using
Gitter chat and Facebook.
Feel free to Join us:
https://www.facebook.com/groups/369246343421803/
https://gitter.im/wizardamigosinstitute/program

http://npmjs.org and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/238417747", + "date": "March 20, 2017", + "time": "8:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 11, + "link": "https://www.meetup.com/wizardamigos/events/238038279", + "date": "March 21, 2017", + "time": "8:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/238417251", + "date": "March 21, 2017", + "time": "8:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/238444539", + "date": "March 21, 2017", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Phuket, JavaScript, English]", + "shortDescription": null, + "venue": { + "city": "Phuket ", + "country": "th" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Phuket. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

gitter
https://gitter.im/wizardamigosinstitute/program

and

facebook https://www.facebook.com/groups/369246343421803/

Feel free to Join us:
http://app.wizardamigos.com

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/238317598", + "date": "March 22, 2017", + "time": "8:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/238520105", + "date": "March 24, 2017", + "time": "8:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat

Show off what you're working on:

\u2022 http://codingamigos.com/

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/238642728", + "date": "March 24, 2017", + "time": "8:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat

Show off what you're working on:

\u2022 http://codingamigos.com/

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/238677756", + "date": "March 24, 2017", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/238484347", + "date": "March 27, 2017", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Zasavje - Slovenia, JavaScript]", + "shortDescription": null, + "venue": { + "city": "Zagorje ob Savi", + "country": "si" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "V ponedeljek, 6.marca, smo pri\u010deli z WizardAmigos Codecamp Zasavje, skupinskim u\u010denjem (co-learning) programskega jezika Java Script. Z uporabo spletne platforme bomo \u010disti za\u010detniki, poznavalci in pa \u010disto naklju\u010dni entuziasti zavihali rokave in izzvali mo\u017eganje. Nov jezik? Programski jezik!

U\u010dimo se skupaj, a vsak po svoji poti.
Kaj potrebuje\u0161?
- prenosnik
- slu\u0161alke

Cena?
Neprecenljivo. Pridru\u017ei se!

Mimogrede - ste \u017ee kdaj sli\u0161ali za brezposelnega programerja? Ali pa da je danes na trgu dela programiranje \u0161kodljiva ve\u0161\u010dina? Mi tudi ne. ///////////////////////////////////////////////////////////////////////////////////////

WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Zasavje, Slovenia. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using
Gitter chat and Facebook.
Feel free to Join us:
https://www.facebook.com/groups/369246343421803/
https://gitter.im/wizardamigosinstitute/program

http://npmjs.org and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/238593874", + "date": "March 27, 2017", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/238625380", + "date": "March 28, 2017", + "time": "9:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/238701755", + "date": "March 31, 2017", + "time": "9:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Phuket, JavaScript, English]", + "shortDescription": null, + "venue": { + "city": "Phuket ", + "country": "th" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Phuket. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

gitter
https://gitter.im/wizardamigosinstitute/program

and

facebook https://www.facebook.com/groups/369246343421803/

Feel free to Join us:
http://app.wizardamigos.com

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/238716649", + "date": "April 02, 2017", + "time": "8:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Zasavje - Slovenia, JavaScript]", + "shortDescription": null, + "venue": { + "city": "Zagorje ob Savi", + "country": "si" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "V ponedeljek, 6.marca, smo pri\u010deli z WizardAmigos Codecamp Zasavje, skupinskim u\u010denjem (co-learning) programskega jezika Java Script. Z uporabo spletne platforme bomo \u010disti za\u010detniki, poznavalci in pa \u010disto naklju\u010dni entuziasti zavihali rokave in izzvali mo\u017eganje. Nov jezik? Programski jezik!

U\u010dimo se skupaj, a vsak po svoji poti.
Kaj potrebuje\u0161?
- prenosnik
- slu\u0161alke

Cena?
Neprecenljivo. Pridru\u017ei se!

Mimogrede - ste \u017ee kdaj sli\u0161ali za brezposelnega programerja? Ali pa da je danes na trgu dela programiranje \u0161kodljiva ve\u0161\u010dina? Mi tudi ne. ///////////////////////////////////////////////////////////////////////////////////////

WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Zasavje, Slovenia. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using
Gitter chat and Facebook.
Feel free to Join us:
https://www.facebook.com/groups/369246343421803/
https://gitter.im/wizardamigosinstitute/program

http://npmjs.org and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/238776788", + "date": "April 03, 2017", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/238805215", + "date": "April 04, 2017", + "time": "9:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/238885482", + "date": "April 07, 2017", + "time": "9:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Phuket, JavaScript, English]", + "shortDescription": null, + "venue": { + "city": "Phuket ", + "country": "th" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Phuket. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

gitter
https://gitter.im/wizardamigosinstitute/program

and

facebook https://www.facebook.com/groups/369246343421803/

Feel free to Join us:
http://app.wizardamigos.com

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/238716651", + "date": "April 09, 2017", + "time": "8:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": { + "photoCount": 1, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/c/e/2/highres_459963298.jpeg" + } + ] + }, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/238960123", + "date": "April 10, 2017", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Zasavje - Slovenia, JavaScript]", + "shortDescription": null, + "venue": { + "city": "Zagorje ob Savi", + "country": "si" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": { + "photoCount": 1, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/c/e/4/highres_459963300.jpeg" + } + ] + }, + "desc": "V ponedeljek, 6.marca, smo pri\u010deli z WizardAmigos Codecamp Zasavje, skupinskim u\u010denjem (co-learning) programskega jezika Java Script. Z uporabo spletne platforme bomo \u010disti za\u010detniki, poznavalci in pa \u010disto naklju\u010dni entuziasti zavihali rokave in izzvali mo\u017eganje. Nov jezik? Programski jezik!

U\u010dimo se skupaj, a vsak po svoji poti.
Kaj potrebuje\u0161?
- prenosnik
- slu\u0161alke

Cena?
Neprecenljivo. Pridru\u017ei se!

Mimogrede - ste \u017ee kdaj sli\u0161ali za brezposelnega programerja? Ali pa da je danes na trgu dela programiranje \u0161kodljiva ve\u0161\u010dina? Mi tudi ne. ///////////////////////////////////////////////////////////////////////////////////////

WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Zasavje, Slovenia. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using
Gitter chat and Facebook.
Feel free to Join us:
https://www.facebook.com/groups/369246343421803/
https://gitter.im/wizardamigosinstitute/program

http://npmjs.org and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/238960195", + "date": "April 10, 2017", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/238988978", + "date": "April 11, 2017", + "time": "9:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 9, + "link": "https://www.meetup.com/wizardamigos/events/239066925", + "date": "April 14, 2017", + "time": "9:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Phuket, JavaScript, English]", + "shortDescription": null, + "venue": { + "city": "Phuket ", + "country": "th" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Phuket. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

gitter
https://gitter.im/wizardamigosinstitute/program

and

facebook https://www.facebook.com/groups/369246343421803/

Feel free to Join us:
http://app.wizardamigos.com

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/239109464", + "date": "April 16, 2017", + "time": "8:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/239135577", + "date": "April 17, 2017", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Zasavje - Slovenia, JavaScript]", + "shortDescription": null, + "venue": { + "city": "Zagorje ob Savi", + "country": "si" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "V ponedeljek, 6.marca, smo pri\u010deli z WizardAmigos Codecamp Zasavje, skupinskim u\u010denjem (co-learning) programskega jezika Java Script. Z uporabo spletne platforme bomo \u010disti za\u010detniki, poznavalci in pa \u010disto naklju\u010dni entuziasti zavihali rokave in izzvali mo\u017eganje. Nov jezik? Programski jezik!

U\u010dimo se skupaj, a vsak po svoji poti.
Kaj potrebuje\u0161?
- prenosnik
- slu\u0161alke

Cena?
Neprecenljivo. Pridru\u017ei se!

Mimogrede - ste \u017ee kdaj sli\u0161ali za brezposelnega programerja? Ali pa da je danes na trgu dela programiranje \u0161kodljiva ve\u0161\u010dina? Mi tudi ne. ///////////////////////////////////////////////////////////////////////////////////////

WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Zasavje, Slovenia. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using
Gitter chat and Facebook.
Feel free to Join us:
https://www.facebook.com/groups/369246343421803/
https://gitter.im/wizardamigosinstitute/program

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

How the last meetup looked like ;) https://secure.meetupstatic.com/photos/event/3/d/b/0/600_459975792.jpeg", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/239135663", + "date": "April 17, 2017", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/239126962", + "date": "April 18, 2017", + "time": "9:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Phuket, JavaScript, English]", + "shortDescription": null, + "venue": { + "city": "Phuket ", + "country": "th" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Phuket. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

gitter
https://gitter.im/wizardamigosinstitute/program

and

facebook https://www.facebook.com/groups/369246343421803/

Feel free to Join us:
http://app.wizardamigos.com

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/239277316", + "date": "April 23, 2017", + "time": "8:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/239304288", + "date": "April 24, 2017", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Zasavje - Slovenia, JavaScript]", + "shortDescription": null, + "venue": { + "city": "Zagorje ob Savi", + "country": "si" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "V ponedeljek, 6.marca, smo pri\u010deli z WizardAmigos Codecamp Zasavje, skupinskim u\u010denjem (co-learning) programskega jezika Java Script. Z uporabo spletne platforme bomo \u010disti za\u010detniki, poznavalci in pa \u010disto naklju\u010dni entuziasti zavihali rokave in izzvali mo\u017eganje. Nov jezik? Programski jezik!

U\u010dimo se skupaj, a vsak po svoji poti.
Kaj potrebuje\u0161?
- prenosnik
- slu\u0161alke

Cena?
Neprecenljivo. Pridru\u017ei se!

Mimogrede - ste \u017ee kdaj sli\u0161ali za brezposelnega programerja? Ali pa da je danes na trgu dela programiranje \u0161kodljiva ve\u0161\u010dina? Mi tudi ne. ///////////////////////////////////////////////////////////////////////////////////////

WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Zasavje, Slovenia. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using
Gitter chat and Facebook.
Feel free to Join us:
https://www.facebook.com/groups/369246343421803/
https://gitter.im/wizardamigosinstitute/program

http://npmjs.org and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/239304391", + "date": "April 24, 2017", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/239333955", + "date": "April 25, 2017", + "time": "9:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT3H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/239413172", + "date": "April 28, 2017", + "time": "9:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Phuket, JavaScript, English]", + "shortDescription": null, + "venue": { + "city": "Phuket", + "country": "th" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Phuket. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

gitter
https://gitter.im/wizardamigosinstitute/program

and

facebook https://www.facebook.com/groups/369246343421803/

Feel free to Join us:
http://app.wizardamigos.com

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/238317114", + "date": "April 30, 2017", + "time": "8:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Phuket, JavaScript, English]", + "shortDescription": null, + "venue": { + "city": "Phuket", + "country": "th" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Phuket. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

gitter
https://gitter.im/wizardamigosinstitute/program

and

facebook https://www.facebook.com/groups/369246343421803/

Feel free to Join us:
http://app.wizardamigos.com

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/239457674", + "date": "April 30, 2017", + "time": "8:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Zasavje - Slovenia, JavaScript]", + "shortDescription": null, + "venue": { + "city": "Zagorje ob Savi", + "country": "si" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "V ponedeljek, 6.marca, smo pri\u010deli z WizardAmigos Codecamp Zasavje, skupinskim u\u010denjem (co-learning) programskega jezika Java Script. Z uporabo spletne platforme bomo \u010disti za\u010detniki, poznavalci in pa \u010disto naklju\u010dni entuziasti zavihali rokave in izzvali mo\u017eganje. Nov jezik? Programski jezik!

U\u010dimo se skupaj, a vsak po svoji poti.
Kaj potrebuje\u0161?
- prenosnik
- slu\u0161alke

Cena?
Neprecenljivo. Pridru\u017ei se!

Mimogrede - ste \u017ee kdaj sli\u0161ali za brezposelnega programerja? Ali pa da je danes na trgu dela programiranje \u0161kodljiva ve\u0161\u010dina? Mi tudi ne. ///////////////////////////////////////////////////////////////////////////////////////

WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Zasavje, Slovenia. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using
Gitter chat and Facebook.
Feel free to Join us:
https://www.facebook.com/groups/369246343421803/
https://gitter.im/wizardamigosinstitute/program

http://npmjs.org and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/239487246", + "date": "May 01, 2017", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/239517617", + "date": "May 02, 2017", + "time": "9:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Phuket, JavaScript, English]", + "shortDescription": null, + "venue": { + "city": "Phuket", + "country": "th" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Phuket. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

gitter
https://gitter.im/wizardamigosinstitute/program

and

facebook https://www.facebook.com/groups/369246343421803/

Feel free to Join us:
http://app.wizardamigos.com

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/239558409", + "date": "May 07, 2017", + "time": "8:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/239658324", + "date": "May 08, 2017", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Zasavje - Slovenia, JavaScript]", + "shortDescription": null, + "venue": { + "city": "Zagorje ob Savi", + "country": "si" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "V ponedeljek, 6.marca, smo pri\u010deli z WizardAmigos Codecamp Zasavje, skupinskim u\u010denjem (co-learning) programskega jezika Java Script. Z uporabo spletne platforme bomo \u010disti za\u010detniki, poznavalci in pa \u010disto naklju\u010dni entuziasti zavihali rokave in izzvali mo\u017eganje. Nov jezik? Programski jezik!

U\u010dimo se skupaj, a vsak po svoji poti.
Kaj potrebuje\u0161?
- prenosnik
- slu\u0161alke

Cena?
Neprecenljivo. Pridru\u017ei se!

Mimogrede - ste \u017ee kdaj sli\u0161ali za brezposelnega programerja? Ali pa da je danes na trgu dela programiranje \u0161kodljiva ve\u0161\u010dina? Mi tudi ne. ///////////////////////////////////////////////////////////////////////////////////////

WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Zasavje, Slovenia. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using
Gitter chat and Facebook.
Feel free to Join us:
https://www.facebook.com/groups/369246343421803/
https://gitter.im/wizardamigosinstitute/program

http://npmjs.org and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/239671455", + "date": "May 08, 2017", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/239701800", + "date": "May 09, 2017", + "time": "9:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Phuket, JavaScript, English]", + "shortDescription": null, + "venue": { + "city": "Phuket", + "country": "th" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Phuket. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

gitter
https://gitter.im/wizardamigosinstitute/program

and

facebook https://www.facebook.com/groups/369246343421803/

Feel free to Join us:
http://app.wizardamigos.com

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/239455617", + "date": "May 14, 2017", + "time": "8:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/239854277", + "date": "May 15, 2017", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Zasavje - Slovenia, JavaScript]", + "shortDescription": null, + "venue": { + "city": "Zagorje ob Savi", + "country": "si" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "V ponedeljek, 6.marca, smo pri\u010deli z WizardAmigos Codecamp Zasavje, skupinskim u\u010denjem (co-learning) programskega jezika Java Script. Z uporabo spletne platforme bomo \u010disti za\u010detniki, poznavalci in pa \u010disto naklju\u010dni entuziasti zavihali rokave in izzvali mo\u017eganje. Nov jezik? Programski jezik!

U\u010dimo se skupaj, a vsak po svoji poti.
Kaj potrebuje\u0161?
- prenosnik
- slu\u0161alke

Cena?
Neprecenljivo. Pridru\u017ei se!

Mimogrede - ste \u017ee kdaj sli\u0161ali za brezposelnega programerja? Ali pa da je danes na trgu dela programiranje \u0161kodljiva ve\u0161\u010dina? Mi tudi ne. ///////////////////////////////////////////////////////////////////////////////////////

WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Zasavje, Slovenia. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using
Gitter chat and Facebook.
Feel free to Join us:
https://www.facebook.com/groups/369246343421803/
https://gitter.im/wizardamigosinstitute/program

http://npmjs.org and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/239854366", + "date": "May 15, 2017", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT3H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 9, + "link": "https://www.meetup.com/wizardamigos/events/239883964", + "date": "May 16, 2017", + "time": "9:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/239962929", + "date": "May 19, 2017", + "time": "9:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Phuket, JavaScript, English]", + "shortDescription": null, + "venue": { + "city": "Phuket", + "country": "th" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Phuket. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

gitter
https://gitter.im/wizardamigosinstitute/program

and

facebook https://www.facebook.com/groups/369246343421803/

Feel free to Join us:
http://app.wizardamigos.com

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/240006072", + "date": "May 21, 2017", + "time": "8:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/239669202", + "date": "May 22, 2017", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Zasavje - Slovenia, JavaScript]", + "shortDescription": null, + "venue": { + "city": "Zagorje ob Savi", + "country": "si" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "V ponedeljek, 6.marca, smo pri\u010deli z WizardAmigos Codecamp Zasavje, skupinskim u\u010denjem (co-learning) programskega jezika Java Script. Z uporabo spletne platforme bomo \u010disti za\u010detniki, poznavalci in pa \u010disto naklju\u010dni entuziasti zavihali rokave in izzvali mo\u017eganje. Nov jezik? Programski jezik!

U\u010dimo se skupaj, a vsak po svoji poti.
Kaj potrebuje\u0161?
- prenosnik
- slu\u0161alke

Cena?
Neprecenljivo. Pridru\u017ei se!

Mimogrede - ste \u017ee kdaj sli\u0161ali za brezposelnega programerja? Ali pa da je danes na trgu dela programiranje \u0161kodljiva ve\u0161\u010dina? Mi tudi ne. ///////////////////////////////////////////////////////////////////////////////////////

WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Zasavje, Slovenia. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using
Gitter chat and Facebook.
Feel free to Join us:
https://www.facebook.com/groups/369246343421803/
https://gitter.im/wizardamigosinstitute/program

http://npmjs.org and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/240034169", + "date": "May 22, 2017", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/240062753", + "date": "May 23, 2017", + "time": "9:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/240141427", + "date": "May 26, 2017", + "time": "9:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Zasavje - Slovenia, JavaScript]", + "shortDescription": null, + "venue": { + "city": "Zagorje ob Savi", + "country": "si" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "V ponedeljek, 6.marca, smo pri\u010deli z WizardAmigos Codecamp Zasavje, skupinskim u\u010denjem (co-learning) programskega jezika Java Script. Z uporabo spletne platforme bomo \u010disti za\u010detniki, poznavalci in pa \u010disto naklju\u010dni entuziasti zavihali rokave in izzvali mo\u017eganje. Nov jezik? Programski jezik!

U\u010dimo se skupaj, a vsak po svoji poti.
Kaj potrebuje\u0161?
- prenosnik
- slu\u0161alke

Cena?
Neprecenljivo. Pridru\u017ei se!

Mimogrede - ste \u017ee kdaj sli\u0161ali za brezposelnega programerja? Ali pa da je danes na trgu dela programiranje \u0161kodljiva ve\u0161\u010dina? Mi tudi ne. ///////////////////////////////////////////////////////////////////////////////////////

WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Zasavje, Slovenia. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using
Gitter chat and Facebook.
Feel free to Join us:
https://www.facebook.com/groups/369246343421803/
https://gitter.im/wizardamigosinstitute/program

http://npmjs.org and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/240214552", + "date": "May 29, 2017", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/240204543", + "date": "May 30, 2017", + "time": "9:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/240288183", + "date": "June 02, 2017", + "time": "9:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/240384377", + "date": "June 05, 2017", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Zasavje - Slovenia, JavaScript]", + "shortDescription": null, + "venue": { + "city": "Zagorje ob Savi", + "country": "si" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "V ponedeljek, 6.marca, smo pri\u010deli z WizardAmigos Codecamp Zasavje, skupinskim u\u010denjem (co-learning) programskega jezika Java Script. Z uporabo spletne platforme bomo \u010disti za\u010detniki, poznavalci in pa \u010disto naklju\u010dni entuziasti zavihali rokave in izzvali mo\u017eganje. Nov jezik? Programski jezik!

U\u010dimo se skupaj, a vsak po svoji poti.
Kaj potrebuje\u0161?
- prenosnik
- slu\u0161alke

Cena?
Neprecenljivo. Pridru\u017ei se!

Mimogrede - ste \u017ee kdaj sli\u0161ali za brezposelnega programerja? Ali pa da je danes na trgu dela programiranje \u0161kodljiva ve\u0161\u010dina? Mi tudi ne. ///////////////////////////////////////////////////////////////////////////////////////

WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Zasavje, Slovenia. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using
Gitter chat and Facebook.
Feel free to Join us:
https://www.facebook.com/groups/369246343421803/
https://gitter.im/wizardamigosinstitute/program

http://npmjs.org and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/240395179", + "date": "June 05, 2017", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": { + "photoCount": 4, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/4/4/d/a/highres_462317626.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/4/4/d/e/highres_462317630.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/4/4/e/0/highres_462317632.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/4/4/e/3/highres_462317635.jpeg" + } + ] + }, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/240288188", + "date": "June 06, 2017", + "time": "9:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/240511183", + "date": "June 09, 2017", + "time": "9:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/240585346", + "date": "June 12, 2017", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Zasavje - Slovenia, JavaScript]", + "shortDescription": null, + "venue": { + "city": "Zagorje ob Savi", + "country": "si" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "V ponedeljek, 6.marca, smo pri\u010deli z WizardAmigos Codecamp Zasavje, skupinskim u\u010denjem (co-learning) programskega jezika Java Script. Z uporabo spletne platforme bomo \u010disti za\u010detniki, poznavalci in pa \u010disto naklju\u010dni entuziasti zavihali rokave in izzvali mo\u017eganje. Nov jezik? Programski jezik!

U\u010dimo se skupaj, a vsak po svoji poti.
Kaj potrebuje\u0161?
- prenosnik
- slu\u0161alke

Cena?
Neprecenljivo. Pridru\u017ei se!

Mimogrede - ste \u017ee kdaj sli\u0161ali za brezposelnega programerja? Ali pa da je danes na trgu dela programiranje \u0161kodljiva ve\u0161\u010dina? Mi tudi ne. ///////////////////////////////////////////////////////////////////////////////////////

WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Zasavje, Slovenia. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using
Gitter chat and Facebook.
Feel free to Join us:
https://www.facebook.com/groups/369246343421803/
https://gitter.im/wizardamigosinstitute/program

http://npmjs.org and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/240585430", + "date": "June 12, 2017", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/240615918", + "date": "June 13, 2017", + "time": "9:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/240693827", + "date": "June 16, 2017", + "time": "9:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/240763550", + "date": "June 19, 2017", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Zasavje - Slovenia, JavaScript]", + "shortDescription": null, + "venue": { + "city": "Zagorje ob Savi", + "country": "si" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "V ponedeljek, 6.marca, smo pri\u010deli z WizardAmigos Codecamp Zasavje, skupinskim u\u010denjem (co-learning) programskega jezika Java Script. Z uporabo spletne platforme bomo \u010disti za\u010detniki, poznavalci in pa \u010disto naklju\u010dni entuziasti zavihali rokave in izzvali mo\u017eganje. Nov jezik? Programski jezik!

U\u010dimo se skupaj, a vsak po svoji poti.
Kaj potrebuje\u0161?
- prenosnik
- slu\u0161alke

Cena?
Neprecenljivo. Pridru\u017ei se!

Mimogrede - ste \u017ee kdaj sli\u0161ali za brezposelnega programerja? Ali pa da je danes na trgu dela programiranje \u0161kodljiva ve\u0161\u010dina? Mi tudi ne. ///////////////////////////////////////////////////////////////////////////////////////

WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Zasavje, Slovenia. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using
Gitter chat and Facebook.
Feel free to Join us:
https://www.facebook.com/groups/369246343421803/
https://gitter.im/wizardamigosinstitute/program

http://npmjs.org and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/240763643", + "date": "June 19, 2017", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/240793671", + "date": "June 20, 2017", + "time": "9:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/240870923", + "date": "June 23, 2017", + "time": "9:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/240941235", + "date": "June 26, 2017", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Zasavje - Slovenia, JavaScript]", + "shortDescription": null, + "venue": { + "city": "Zagorje ob Savi", + "country": "si" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "V ponedeljek, 6.marca, smo pri\u010deli z WizardAmigos Codecamp Zasavje, skupinskim u\u010denjem (co-learning) programskega jezika Java Script. Z uporabo spletne platforme bomo \u010disti za\u010detniki, poznavalci in pa \u010disto naklju\u010dni entuziasti zavihali rokave in izzvali mo\u017eganje. Nov jezik? Programski jezik!

U\u010dimo se skupaj, a vsak po svoji poti.
Kaj potrebuje\u0161?
- prenosnik
- slu\u0161alke

Cena?
Neprecenljivo. Pridru\u017ei se!

Mimogrede - ste \u017ee kdaj sli\u0161ali za brezposelnega programerja? Ali pa da je danes na trgu dela programiranje \u0161kodljiva ve\u0161\u010dina? Mi tudi ne. ///////////////////////////////////////////////////////////////////////////////////////

WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Zasavje, Slovenia. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using
Gitter chat and Facebook.
Feel free to Join us:
https://www.facebook.com/groups/369246343421803/
https://gitter.im/wizardamigosinstitute/program

http://npmjs.org and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/240941327", + "date": "June 26, 2017", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/240971239", + "date": "June 27, 2017", + "time": "9:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/241047734", + "date": "June 30, 2017", + "time": "9:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/241121053", + "date": "July 03, 2017", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Zasavje - Slovenia, JavaScript]", + "shortDescription": null, + "venue": { + "city": "Zagorje ob Savi", + "country": "si" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "V ponedeljek, 6.marca, smo pri\u010deli z WizardAmigos Codecamp Zasavje, skupinskim u\u010denjem (co-learning) programskega jezika Java Script. Z uporabo spletne platforme bomo \u010disti za\u010detniki, poznavalci in pa \u010disto naklju\u010dni entuziasti zavihali rokave in izzvali mo\u017eganje. Nov jezik? Programski jezik!

U\u010dimo se skupaj, a vsak po svoji poti.
Kaj potrebuje\u0161?
- prenosnik
- slu\u0161alke

Cena?
Neprecenljivo. Pridru\u017ei se!

Mimogrede - ste \u017ee kdaj sli\u0161ali za brezposelnega programerja? Ali pa da je danes na trgu dela programiranje \u0161kodljiva ve\u0161\u010dina? Mi tudi ne. ///////////////////////////////////////////////////////////////////////////////////////

WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Zasavje, Slovenia. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using
Gitter chat and Facebook.
Feel free to Join us:
https://www.facebook.com/groups/369246343421803/
https://gitter.im/wizardamigosinstitute/program

http://npmjs.org and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/241121145", + "date": "July 03, 2017", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/241150511", + "date": "July 04, 2017", + "time": "9:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/241196951", + "date": "July 07, 2017", + "time": "9:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 9, + "link": "https://www.meetup.com/wizardamigos/events/239179713", + "date": "July 10, 2017", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Zasavje - Slovenia, JavaScript]", + "shortDescription": null, + "venue": { + "city": "Zagorje ob Savi", + "country": "si" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "V ponedeljek, 6.marca, smo pri\u010deli z WizardAmigos Codecamp Zasavje, skupinskim u\u010denjem (co-learning) programskega jezika Java Script. Z uporabo spletne platforme bomo \u010disti za\u010detniki, poznavalci in pa \u010disto naklju\u010dni entuziasti zavihali rokave in izzvali mo\u017eganje. Nov jezik? Programski jezik!

U\u010dimo se skupaj, a vsak po svoji poti.
Kaj potrebuje\u0161?
- prenosnik
- slu\u0161alke

Cena?
Neprecenljivo. Pridru\u017ei se!

Mimogrede - ste \u017ee kdaj sli\u0161ali za brezposelnega programerja? Ali pa da je danes na trgu dela programiranje \u0161kodljiva ve\u0161\u010dina? Mi tudi ne. ///////////////////////////////////////////////////////////////////////////////////////

WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Zasavje, Slovenia. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using
Gitter chat and Facebook.
Feel free to Join us:
https://www.facebook.com/groups/369246343421803/
https://gitter.im/wizardamigosinstitute/program

http://npmjs.org and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/241312302", + "date": "July 10, 2017", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 9, + "link": "https://www.meetup.com/wizardamigos/events/241306092", + "date": "July 11, 2017", + "time": "9:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": { + "photoCount": 6, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/7/3/4/7/highres_463709511.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/7/3/4/c/highres_463709516.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/7/3/5/4/highres_463709524.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/7/3/5/9/highres_463709529.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/7/3/5/d/highres_463709533.jpeg" + } + ] + }, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 10, + "link": "https://www.meetup.com/wizardamigos/events/241459744", + "date": "July 14, 2017", + "time": "9:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/241606940", + "date": "July 17, 2017", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Zasavje - Slovenia, JavaScript]", + "shortDescription": null, + "venue": { + "city": "Zagorje ob Savi", + "country": "si" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "V ponedeljek, 6.marca, smo pri\u010deli z WizardAmigos Codecamp Zasavje, skupinskim u\u010denjem (co-learning) programskega jezika Java Script. Z uporabo spletne platforme bomo \u010disti za\u010detniki, poznavalci in pa \u010disto naklju\u010dni entuziasti zavihali rokave in izzvali mo\u017eganje. Nov jezik? Programski jezik!

U\u010dimo se skupaj, a vsak po svoji poti.
Kaj potrebuje\u0161?
- prenosnik
- slu\u0161alke

Cena?
Neprecenljivo. Pridru\u017ei se!

Mimogrede - ste \u017ee kdaj sli\u0161ali za brezposelnega programerja? Ali pa da je danes na trgu dela programiranje \u0161kodljiva ve\u0161\u010dina? Mi tudi ne. ///////////////////////////////////////////////////////////////////////////////////////

WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Zasavje, Slovenia. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using
Gitter chat and Facebook.
Feel free to Join us:
https://www.facebook.com/groups/369246343421803/
https://gitter.im/wizardamigosinstitute/program

http://npmjs.org and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/241607051", + "date": "July 17, 2017", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": { + "photoCount": 1, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/7/3/2/0/highres_463709472.jpeg" + } + ] + }, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/241654204", + "date": "July 18, 2017", + "time": "9:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/241750360", + "date": "July 21, 2017", + "time": "9:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/241820968", + "date": "July 24, 2017", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Zasavje - Slovenia, JavaScript]", + "shortDescription": null, + "venue": { + "city": "Zagorje ob Savi", + "country": "si" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "V ponedeljek, 6.marca, smo pri\u010deli z WizardAmigos Codecamp Zasavje, skupinskim u\u010denjem (co-learning) programskega jezika Java Script. Z uporabo spletne platforme bomo \u010disti za\u010detniki, poznavalci in pa \u010disto naklju\u010dni entuziasti zavihali rokave in izzvali mo\u017eganje. Nov jezik? Programski jezik!

U\u010dimo se skupaj, a vsak po svoji poti.
Kaj potrebuje\u0161?
- prenosnik
- slu\u0161alke

Cena?
Neprecenljivo. Pridru\u017ei se!

Mimogrede - ste \u017ee kdaj sli\u0161ali za brezposelnega programerja? Ali pa da je danes na trgu dela programiranje \u0161kodljiva ve\u0161\u010dina? Mi tudi ne. ///////////////////////////////////////////////////////////////////////////////////////

WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Zasavje, Slovenia. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using
Gitter chat and Facebook.
Feel free to Join us:
https://www.facebook.com/groups/369246343421803/
https://gitter.im/wizardamigosinstitute/program

http://npmjs.org and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/241821117", + "date": "July 24, 2017", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": { + "photoCount": 5, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/4/8/f/a/highres_463158682.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/4/8/f/d/highres_463158685.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/4/9/0/1/highres_463158689.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/4/9/0/7/highres_463158695.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/4/9/0/d/highres_463158701.jpeg" + } + ] + }, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/241852540", + "date": "July 25, 2017", + "time": "9:30PM" + }, + { + "title": "WizardAmigos WorkingAmigos", + "shortDescription": null, + "venue": { + "city": "Internet", + "country": "gb" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "We are self employed JavaScript engineers who work remote our have our own app based businesses.

We meet online every week to learn and apply dynamic scraping on order to scrape remote JavaScript gigs that fit our preferences.

If this is interesting for you, please join.
If you would like to learn JavaScript, checkout our free open source elearning app http://wizardamigos.com

Otherwise, feel free to join us in our chat: https://gitter.im/wizardamigosinstitute/program

More Specific Information about our next online meeting and also previous ones: https://hackmd.io/GYTmHYA4FMDYEMC0AjaBWAxogLAJmLoiMpOIpAAy6zLbDTQbYZA=?view", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/241847215", + "date": "July 26, 2017", + "time": "5:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/241854895", + "date": "July 28, 2017", + "time": "9:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/242009775", + "date": "July 31, 2017", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Zasavje - Slovenia, JavaScript]", + "shortDescription": null, + "venue": { + "city": "Zagorje ob Savi", + "country": "si" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "V ponedeljek, 6.marca, smo pri\u010deli z WizardAmigos Codecamp Zasavje, skupinskim u\u010denjem (co-learning) programskega jezika Java Script. Z uporabo spletne platforme bomo \u010disti za\u010detniki, poznavalci in pa \u010disto naklju\u010dni entuziasti zavihali rokave in izzvali mo\u017eganje. Nov jezik? Programski jezik!

U\u010dimo se skupaj, a vsak po svoji poti.
Kaj potrebuje\u0161?
- prenosnik
- slu\u0161alke

Cena?
Neprecenljivo. Pridru\u017ei se!

Mimogrede - ste \u017ee kdaj sli\u0161ali za brezposelnega programerja? Ali pa da je danes na trgu dela programiranje \u0161kodljiva ve\u0161\u010dina? Mi tudi ne. ///////////////////////////////////////////////////////////////////////////////////////

WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Zasavje, Slovenia. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using
Gitter chat and Facebook.
Feel free to Join us:
https://www.facebook.com/groups/369246343421803/
https://gitter.im/wizardamigosinstitute/program

http://npmjs.org and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/242009855", + "date": "July 31, 2017", + "time": "9:00PM" + }, + { + "title": "WizardAmigos WorkingAmigos", + "shortDescription": null, + "venue": { + "city": "Internet", + "country": "gb" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "We are self employed JavaScript engineers who work remote our have our own app based businesses.

We meet online every week to learn and apply dynamic scraping on order to scrape remote JavaScript gigs that fit our preferences.

If this is interesting for you, please join.
If you would like to learn JavaScript, checkout our free open source elearning app http://wizardamigos.com

Otherwise, feel free to join us in our chat: https://gitter.im/wizardamigosinstitute/program

More Specific Information about our next online meeting and also previous ones: https://hackmd.io/GYTmHYA4FMDYEMC0AjaBWAxogLAJmLoiMpOIpAAy6zLbDTQbYZA=?view", + "participants": 9, + "link": "https://www.meetup.com/wizardamigos/events/242062299", + "date": "August 03, 2017", + "time": "5:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/242123591", + "date": "August 04, 2017", + "time": "9:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/242198107", + "date": "August 07, 2017", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Zasavje - Slovenia, JavaScript]", + "shortDescription": null, + "venue": { + "city": "Zagorje ob Savi", + "country": "si" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "V ponedeljek, 6.marca, smo pri\u010deli z WizardAmigos Codecamp Zasavje, skupinskim u\u010denjem (co-learning) programskega jezika Java Script. Z uporabo spletne platforme bomo \u010disti za\u010detniki, poznavalci in pa \u010disto naklju\u010dni entuziasti zavihali rokave in izzvali mo\u017eganje. Nov jezik? Programski jezik!

U\u010dimo se skupaj, a vsak po svoji poti.
Kaj potrebuje\u0161?
- prenosnik
- slu\u0161alke

Cena?
Neprecenljivo. Pridru\u017ei se!

Mimogrede - ste \u017ee kdaj sli\u0161ali za brezposelnega programerja? Ali pa da je danes na trgu dela programiranje \u0161kodljiva ve\u0161\u010dina? Mi tudi ne. ///////////////////////////////////////////////////////////////////////////////////////

WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Zasavje, Slovenia. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using
Gitter chat and Facebook.
Feel free to Join us:
https://www.facebook.com/groups/369246343421803/
https://gitter.im/wizardamigosinstitute/program

http://npmjs.org and a hyper modular style of programming, so that building apps becomes like plugging together legos :-)https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/242198210", + "date": "August 07, 2017", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/242230005", + "date": "August 08, 2017", + "time": "9:30PM" + }, + { + "title": "WizardAmigos WorkingAmigos", + "shortDescription": null, + "venue": { + "city": "Internet", + "country": "gb" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "We are self employed JavaScript engineers who work remote our have our own app based businesses.

We meet online every week to learn and apply dynamic scraping on order to scrape remote JavaScript gigs that fit our preferences.

If this is interesting for you, please join.
If you would like to learn JavaScript, checkout our free open source elearning app http://wizardamigos.com

Otherwise, feel free to join us in our chat: https://gitter.im/wizardamigosinstitute/program

More Specific Information about our next online meeting and also previous ones: https://hackmd.io/GYTmHYA4FMDYEMC0AjaBWAxogLAJmLoiMpOIpAAy6zLbDTQbYZA=?view", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/242252540", + "date": "August 10, 2017", + "time": "5:00PM" + }, + { + "title": "WizardAmigos WorkingAmigos", + "shortDescription": null, + "venue": { + "city": "Internet", + "country": "gb" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "We are self employed JavaScript engineers who work remote our have our own app based businesses.

We meet online every week to learn and apply dynamic scraping on order to scrape remote JavaScript gigs that fit our preferences.

If this is interesting for you, please join.
If you would like to learn JavaScript, checkout our free open source elearning app http://wizardamigos.com

Otherwise, feel free to join us in our chat: https://gitter.im/wizardamigosinstitute/program

More Specific Information about our next online meeting and also previous ones: https://hackmd.io/GYTmHYA4FMDYEMC0AjaBWAxogLAJmLoiMpOIpAAy6zLbDTQbYZA=?view", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/242280663", + "date": "August 10, 2017", + "time": "5:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/242315585", + "date": "August 11, 2017", + "time": "9:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": { + "photoCount": 1, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/6/f/f/6/highres_463708662.jpeg" + } + ] + }, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/242192736", + "date": "August 14, 2017", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 9, + "link": "https://www.meetup.com/wizardamigos/events/242278891", + "date": "August 15, 2017", + "time": "9:30PM" + }, + { + "title": "WorkingAmigos [weekly online hangout]", + "shortDescription": null, + "venue": { + "city": "Internet", + "country": "gb" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "We are self employed JavaScript engineers who work remote our have our own app based businesses.

We meet online every week to learn and apply dynamic scraping on order to scrape remote JavaScript gigs that fit our preferences.

If this is interesting for you, please join.
If you would like to learn JavaScript, checkout our free open source elearning app http://wizardamigos.com

Otherwise, feel free to join us in our chat: https://gitter.im/wizardamigosinstitute/program

More Specific Information about our next online meeting and also previous ones: https://hackmd.io/GYTmHYA4FMDYEMC0AjaBWAxogLAJmLoiMpOIpAAy6zLbDTQbYZA=?view", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/241847435", + "date": "August 17, 2017", + "time": "5:00PM" + }, + { + "title": "WorkingAmigos [weekly online hangout]", + "shortDescription": null, + "venue": { + "city": "Internet", + "country": "gb" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "We are self employed JavaScript engineers who work remote our have our own app based businesses.

We meet online every week to learn and apply dynamic scraping on order to scrape remote JavaScript gigs that fit our preferences.

If this is interesting for you, please join.
If you would like to learn JavaScript, checkout our free open source elearning app http://wizardamigos.com

Otherwise, feel free to join us in our chat: https://gitter.im/wizardamigosinstitute/program

More Specific Information about our next online meeting and also previous ones: https://hackmd.io/GYTmHYA4FMDYEMC0AjaBWAxogLAJmLoiMpOIpAAy6zLbDTQbYZA=?view", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/242466603", + "date": "August 17, 2017", + "time": "5:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/242495967", + "date": "August 18, 2017", + "time": "9:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is an open, collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/242567140", + "date": "August 21, 2017", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/242569212", + "date": "August 22, 2017", + "time": "9:30PM" + }, + { + "title": "WorkingAmigos [weekly online hangout]", + "shortDescription": null, + "venue": { + "city": "Internet", + "country": "gb" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "We are self employed JavaScript engineers who work remote our have our own app based businesses.

We meet online every week to learn and apply dynamic scraping on order to scrape remote JavaScript gigs that fit our preferences.

If this is interesting for you, please join.
If you would like to learn JavaScript, checkout our free open source elearning app http://wizardamigos.com

Otherwise, feel free to join us in our chat: https://gitter.im/wizardamigosinstitute/program

More Specific Information about our next online meeting and also previous ones: https://hackmd.io/GYTmHYA4FMDYEMC0AjaBWAxogLAJmLoiMpOIpAAy6zLbDTQbYZA=?view", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/242531747", + "date": "August 24, 2017", + "time": "5:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT3H45M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 11, + "link": "https://www.meetup.com/wizardamigos/events/241752268", + "date": "August 25, 2017", + "time": "10:15PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/237651102", + "date": "August 28, 2017", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/242734276", + "date": "August 28, 2017", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/242774983", + "date": "August 29, 2017", + "time": "9:30PM" + }, + { + "title": "WorkingAmigos [weekly online hangout]", + "shortDescription": null, + "venue": { + "city": "Internet", + "country": "gb" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "We are self employed JavaScript engineers who work remote our have our own app based businesses.

We meet online every week to learn and apply dynamic scraping on order to scrape remote JavaScript gigs that fit our preferences.

If this is interesting for you, please join.
If you would like to learn JavaScript, checkout our free open source elearning app http://wizardamigos.com

Otherwise, feel free to join us in our chat: https://gitter.im/wizardamigosinstitute/program

More Specific Information about our next online meeting and also previous ones: https://hackmd.io/GYTmHYA4FMDYEMC0AjaBWAxogLAJmLoiMpOIpAAy6zLbDTQbYZA=?view", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/242531748", + "date": "August 31, 2017", + "time": "5:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/242930652", + "date": "September 04, 2017", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT7H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/242962013", + "date": "September 05, 2017", + "time": "10:30PM" + }, + { + "title": "WorkingAmigos [weekly online hangout]", + "shortDescription": null, + "venue": { + "city": "Internet", + "country": "gb" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "We are self employed JavaScript engineers who work remote our have our own app based businesses.

We meet online every week to learn and apply dynamic scraping on order to scrape remote JavaScript gigs that fit our preferences.

If this is interesting for you, please join.
If you would like to learn JavaScript, checkout our free open source elearning app http://wizardamigos.com

Otherwise, feel free to join us in our chat: https://gitter.im/wizardamigosinstitute/program

More Specific Information about our next online meeting and also previous ones: https://hackmd.io/GYTmHYA4FMDYEMC0AjaBWAxogLAJmLoiMpOIpAAy6zLbDTQbYZA=?view", + "participants": 9, + "link": "https://www.meetup.com/wizardamigos/events/243013759", + "date": "September 07, 2017", + "time": "5:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/242769632", + "date": "September 08, 2017", + "time": "9:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/243119410", + "date": "September 11, 2017", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/243152078", + "date": "September 13, 2017", + "time": "12:30AM" + }, + { + "title": "WorkingAmigos [weekly online hangout]", + "shortDescription": null, + "venue": { + "city": "Internet", + "country": "gb" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "We are self employed JavaScript engineers who work remote our have our own app based businesses.

We meet online every week to learn and apply dynamic scraping on order to scrape remote JavaScript gigs that fit our preferences.

If this is interesting for you, please join.
If you would like to learn JavaScript, checkout our free open source elearning app http://wizardamigos.com

Otherwise, feel free to join us in our chat: https://gitter.im/wizardamigosinstitute/program

More Specific Information about our next online meeting and also previous ones: https://hackmd.io/GYTmHYA4FMDYEMC0AjaBWAxogLAJmLoiMpOIpAAy6zLbDTQbYZA=?view", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/243137251", + "date": "September 14, 2017", + "time": "5:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/243137255", + "date": "September 15, 2017", + "time": "9:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/243137262", + "date": "September 18, 2017", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/243137272", + "date": "September 19, 2017", + "time": "9:30PM" + }, + { + "title": "WorkingAmigos [weekly online hangout]", + "shortDescription": null, + "venue": { + "city": "Internet", + "country": "gb" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "We are self employed JavaScript engineers who work remote our have our own app based businesses.

We meet online every week to learn and apply dynamic scraping on order to scrape remote JavaScript gigs that fit our preferences.

If this is interesting for you, please join.
If you would like to learn JavaScript, checkout our free open source elearning app http://wizardamigos.com

Otherwise, feel free to join us in our chat: https://gitter.im/wizardamigosinstitute/program

More Specific Information about our next online meeting and also previous ones: https://hackmd.io/GYTmHYA4FMDYEMC0AjaBWAxogLAJmLoiMpOIpAAy6zLbDTQbYZA=?view", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/243391258", + "date": "September 21, 2017", + "time": "5:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/243422278", + "date": "September 22, 2017", + "time": "9:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/243496733", + "date": "September 25, 2017", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/243494867", + "date": "September 26, 2017", + "time": "9:30PM" + }, + { + "title": "WorkingAmigos [weekly online hangout]", + "shortDescription": null, + "venue": { + "city": "Internet", + "country": "gb" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "We are self employed JavaScript engineers who work remote our have our own app based businesses.

We meet online every week to learn and apply dynamic scraping on order to scrape remote JavaScript gigs that fit our preferences.

If this is interesting for you, please join.
If you would like to learn JavaScript, checkout our free open source elearning app http://wizardamigos.com

Otherwise, feel free to join us in our chat: https://gitter.im/wizardamigosinstitute/program

More Specific Information about our next online meeting and also previous ones: https://hackmd.io/GYTmHYA4FMDYEMC0AjaBWAxogLAJmLoiMpOIpAAy6zLbDTQbYZA=?view", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/243202317", + "date": "September 28, 2017", + "time": "5:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/243530663", + "date": "September 29, 2017", + "time": "9:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/243686393", + "date": "October 02, 2017", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 9, + "link": "https://www.meetup.com/wizardamigos/events/243719030", + "date": "October 03, 2017", + "time": "9:30PM" + }, + { + "title": "WorkingAmigos [weekly online hangout]", + "shortDescription": null, + "venue": { + "city": "Internet", + "country": "gb" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "We are self employed JavaScript engineers who work remote our have our own app based businesses.

We meet online every week to learn and apply dynamic scraping on order to scrape remote JavaScript gigs that fit our preferences.

If this is interesting for you, please join.
If you would like to learn JavaScript, checkout our free open source elearning app http://wizardamigos.com

Otherwise, feel free to join us in our chat: https://gitter.im/wizardamigosinstitute/program

More Specific Information about our next online meeting and also previous ones: https://hackmd.io/GYTmHYA4FMDYEMC0AjaBWAxogLAJmLoiMpOIpAAy6zLbDTQbYZA=?view", + "participants": 9, + "link": "https://www.meetup.com/wizardamigos/events/243775248", + "date": "October 05, 2017", + "time": "5:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/243808164", + "date": "October 06, 2017", + "time": "9:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/243924945", + "date": "October 10, 2017", + "time": "9:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/244010574", + "date": "October 13, 2017", + "time": "9:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/244089325", + "date": "October 16, 2017", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/244120316", + "date": "October 17, 2017", + "time": "9:30PM" + }, + { + "title": "CCN CodeCamp [Lagos/Nigeria, JavaScript, English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "Once a week, bring your laptop and learn JavaScript with us.
We help each other to stay motivating and discuss.
If you want to already get started, check: http://wizardamigos.com/workshop_app/", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/244267426", + "date": "October 19, 2017", + "time": "11:00AM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/244206529", + "date": "October 20, 2017", + "time": "9:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/244287129", + "date": "October 23, 2017", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 9, + "link": "https://www.meetup.com/wizardamigos/events/244278694", + "date": "October 24, 2017", + "time": "9:30PM" + }, + { + "title": "CCN CodeCamp [Lagos/Nigeria, JavaScript, English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "Once a week, bring your laptop and learn JavaScript with us.
We help each other to stay motivating and discuss.
If you want to already get started, check: http://wizardamigos.com/workshop_app/", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/244267646", + "date": "October 26, 2017", + "time": "11:00AM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

\u2022 1. We follow the berlin code of conduct (http://berlincodeofconduct.org/)

\u2022 2. In order not to exclude anyone, english or code are the mandatory languages :)

\u2022 3. We aim to support each other

\u2022 4. We try to encourage equal amount of sharing and talking in our meetups

\u2022 5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

\u2022 6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

\u2022 7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/244410595", + "date": "October 27, 2017", + "time": "9:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/244661377", + "date": "October 30, 2017", + "time": "8:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/244664897", + "date": "October 31, 2017", + "time": "8:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/244687124", + "date": "October 31, 2017", + "time": "8:30PM" + }, + { + "title": "CCN CodeCamp [Lagos/Nigeria, JavaScript, English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "Once a week, bring your laptop and learn JavaScript with us.
We help each other to stay motivating and discuss.
If you want to already get started, check: http://wizardamigos.com/workshop_app/", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/244267420", + "date": "November 02, 2017", + "time": "10:00AM" + }, + { + "title": "CCN CodeCamp [Lagos/Nigeria, JavaScript, English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "Once a week, bring your laptop and learn JavaScript with us.
We help each other to stay motivating and discuss.
If you want to already get started, check: http://wizardamigos.com/workshop_app/

+234-803-2972-057", + "participants": 11, + "link": "https://www.meetup.com/wizardamigos/events/244267650", + "date": "November 02, 2017", + "time": "10:00AM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "10999 Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

We follow the Berlin Code of Conduct (http://berlincodeofconduct.org/) In order not to exclude anyone, English or code are the mandatory languages :) We aim to support each other We try to encourage equal amount of sharing and talking in our meetups Everyone tries to help shy people get introduced to others and to include everyone in the conversations We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is Everyone tries to be a person who makes other people around her/him feel nice Get to know us, and chat:
https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat) Show off what you're working on:
http://codingamigos.com/ (http://codingamigos.com/) Collaborate with the RefugeesWork project, supporting newcomers and learners
http://refugeeswork.com (http://www.refugeeswork.com/) If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/244664430", + "date": "November 03, 2017", + "time": "8:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "10999 Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": { + "photoCount": 0, + "photoSample": [] + }, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

We follow the Berlin Code of Conduct (http://berlincodeofconduct.org/) In order not to exclude anyone, English or code are the mandatory languages :) We aim to support each other We try to encourage equal amount of sharing and talking in our meetups Everyone tries to help shy people get introduced to others and to include everyone in the conversations We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is Everyone tries to be a person who makes other people around her/him feel nice Get to know us, and chat:
https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat) Show off what you're working on:
http://codingamigos.com/ (http://codingamigos.com/) Collaborate with the RefugeesWork project, supporting newcomers and learners
http://refugeeswork.com (http://www.refugeeswork.com/) If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/244664434", + "date": "November 03, 2017", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/244694570", + "date": "November 06, 2017", + "time": "8:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/244725659", + "date": "November 07, 2017", + "time": "8:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "10999 Berlin", + "country": "de" + }, + "images": [], + "duration": "PT9H", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

We follow the Berlin Code of Conduct (http://berlincodeofconduct.org/) In order not to exclude anyone, English or code are the mandatory languages :) We aim to support each other We try to encourage equal amount of sharing and talking in our meetups Everyone tries to help shy people get introduced to others and to include everyone in the conversations We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is Everyone tries to be a person who makes other people around her/him feel nice Get to know us, and chat:
https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat) Show off what you're working on:
http://codingamigos.com/ (http://codingamigos.com/) Collaborate with the RefugeesWork project, supporting newcomers and learners
http://refugeeswork.com (http://www.refugeeswork.com/) If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/244664963", + "date": "November 10, 2017", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/244905653", + "date": "November 13, 2017", + "time": "8:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/244940360", + "date": "November 14, 2017", + "time": "8:30PM" + }, + { + "title": "CCN CodeCamp [Lagos/Nigeria, JavaScript, English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "Once a week, bring your laptop and learn JavaScript with us.
We help each other to stay motivating and discuss.
If you want to already get started, check: http://wizardamigos.com/workshop_app/", + "participants": 18, + "link": "https://www.meetup.com/wizardamigos/events/244748714", + "date": "November 16, 2017", + "time": "10:00AM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "10999 Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": { + "photoCount": 0, + "photoSample": [] + }, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

We follow the Berlin Code of Conduct (http://berlincodeofconduct.org/) In order not to exclude anyone, English or code are the mandatory languages :) We aim to support each other We try to encourage equal amount of sharing and talking in our meetups Everyone tries to help shy people get introduced to others and to include everyone in the conversations We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is Everyone tries to be a person who makes other people around her/him feel nice Get to know us, and chat:
https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat) Show off what you're working on:
http://codingamigos.com/ (http://codingamigos.com/) Collaborate with the RefugeesWork project, supporting newcomers and learners
http://refugeeswork.com (http://www.refugeeswork.com/) If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/244664968", + "date": "November 17, 2017", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": { + "photoCount": 0, + "photoSample": [] + }, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/245112268", + "date": "November 20, 2017", + "time": "8:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": { + "photoCount": 0, + "photoSample": [] + }, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/245060597", + "date": "November 21, 2017", + "time": "8:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "10999 Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": { + "photoCount": 9, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/5/b/e/a/highres_466403530.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/5/c/9/0/highres_466403696.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/5/c/9/4/highres_466403700.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/5/c/9/c/highres_466403708.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/6/5/2/3/highres_466405891.jpeg" + } + ] + }, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

We follow the Berlin Code of Conduct (http://berlincodeofconduct.org/) In order not to exclude anyone, English or code are the mandatory languages :) We aim to support each other We try to encourage equal amount of sharing and talking in our meetups Everyone tries to help shy people get introduced to others and to include everyone in the conversations We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is Everyone tries to be a person who makes other people around her/him feel nice Get to know us, and chat:
https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat) Show off what you're working on:
http://codingamigos.com/ (http://codingamigos.com/) Collaborate with the RefugeesWork project, supporting newcomers and learners
http://refugeeswork.com (http://www.refugeeswork.com/) If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/245215789", + "date": "November 24, 2017", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/245288785", + "date": "November 27, 2017", + "time": "8:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/245317141", + "date": "November 28, 2017", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/245475509", + "date": "December 04, 2017", + "time": "8:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/245506191", + "date": "December 05, 2017", + "time": "8:30PM" + }, + { + "title": "CCN CodeCamp [Lagos/Nigeria, JavaScript, English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "Once a week, bring your laptop and learn JavaScript with us.
We help each other to stay motivating and discuss.
If you want to already get started, check: http://wizardamigos.com/workshop_app/", + "participants": 0, + "link": "https://www.meetup.com/wizardamigos/events/245185152", + "date": "December 07, 2017", + "time": "10:00AM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "10999 Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

We follow the Berlin Code of Conduct (http://berlincodeofconduct.org/) In order not to exclude anyone, English or code are the mandatory languages :) We aim to support each other We try to encourage equal amount of sharing and talking in our meetups Everyone tries to help shy people get introduced to others and to include everyone in the conversations We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is Everyone tries to be a person who makes other people around her/him feel nice Get to know us, and chat:
https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat) Show off what you're working on:
http://codingamigos.com/ (http://codingamigos.com/) Collaborate with the RefugeesWork project, supporting newcomers and learners
http://refugeeswork.com (http://www.refugeeswork.com/) If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/245593626", + "date": "December 08, 2017", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/245675077", + "date": "December 11, 2017", + "time": "8:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/245228951", + "date": "December 12, 2017", + "time": "8:30PM" + }, + { + "title": "CCN CodeCamp [Lagos/Nigeria, JavaScript, English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "Once a week, bring your laptop and learn JavaScript with us.
We help each other to stay motivating and discuss.
If you want to already get started, check: http://wizardamigos.com/workshop_app/", + "participants": 10, + "link": "https://www.meetup.com/wizardamigos/events/244809149", + "date": "December 14, 2017", + "time": "10:00AM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "10999 Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

We follow the Berlin Code of Conduct (http://berlincodeofconduct.org/) In order not to exclude anyone, English or code are the mandatory languages :) We aim to support each other We try to encourage equal amount of sharing and talking in our meetups Everyone tries to help shy people get introduced to others and to include everyone in the conversations We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is Everyone tries to be a person who makes other people around her/him feel nice Get to know us, and chat:
https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat) Show off what you're working on:
http://codingamigos.com/ (http://codingamigos.com/) Collaborate with the RefugeesWork project, supporting newcomers and learners
http://refugeeswork.com (http://www.refugeeswork.com/) If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/245787761", + "date": "December 15, 2017", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/245821983", + "date": "December 18, 2017", + "time": "8:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/245892000", + "date": "December 19, 2017", + "time": "8:30PM" + }, + { + "title": "CCN CodeCamp [Lagos/Nigeria, JavaScript, English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "Once a week, bring your laptop and learn JavaScript with us.
We help each other to stay motivating and discuss.
If you want to already get started, check: http://wizardamigos.com/workshop_app/", + "participants": 18, + "link": "https://www.meetup.com/wizardamigos/events/245936967", + "date": "December 21, 2017", + "time": "10:00AM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "10999 Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

We follow the Berlin Code of Conduct (http://berlincodeofconduct.org/) In order not to exclude anyone, English or code are the mandatory languages :) We aim to support each other We try to encourage equal amount of sharing and talking in our meetups Everyone tries to help shy people get introduced to others and to include everyone in the conversations We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is Everyone tries to be a person who makes other people around her/him feel nice Get to know us, and chat:
https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat) Show off what you're working on:
http://codingamigos.com/ (http://codingamigos.com/) Collaborate with the RefugeesWork project, supporting newcomers and learners
http://refugeeswork.com (http://www.refugeeswork.com/) If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/245973335", + "date": "December 22, 2017", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "TW" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/246044174", + "date": "December 25, 2017", + "time": "8:00PM" + }, + { + "title": "CCN CodeCamp [Lagos/Nigeria, JavaScript, English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "Once a week, bring your laptop and learn JavaScript with us.
We help each other to stay motivating and discuss.
If you want to already get started, check: http://wizardamigos.com/workshop_app/", + "participants": 11, + "link": "https://www.meetup.com/wizardamigos/events/246115169", + "date": "December 28, 2017", + "time": "10:00AM" + }, + { + "title": "CCN CodeCamp [Lagos/Nigeria, JavaScript, English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": null, + "desc": "Once a week, bring your laptop and learn JavaScript with us.
We help each other to stay motivating and discuss.
If you want to already get started, check: http://wizardamigos.com/workshop_app/", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/246261776", + "date": "January 04, 2018", + "time": "10:00AM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT5H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/246261694", + "date": "January 09, 2018", + "time": "8:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/246630009", + "date": "January 09, 2018", + "time": "8:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/246689812", + "date": "January 16, 2018", + "time": "8:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "10999 Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

We follow the Berlin Code of Conduct (http://berlincodeofconduct.org/) In order not to exclude anyone, English or code are the mandatory languages :) We aim to support each other We try to encourage equal amount of sharing and talking in our meetups Everyone tries to help shy people get introduced to others and to include everyone in the conversations We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is Everyone tries to be a person who makes other people around her/him feel nice Get to know us, and chat:
https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat) Show off what you're working on:
http://codingamigos.com/ (http://codingamigos.com/) Collaborate with the RefugeesWork project, supporting newcomers and learners
http://refugeeswork.com (http://www.refugeeswork.com/) If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/246723093", + "date": "January 19, 2018", + "time": "8:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/246909681", + "date": "January 23, 2018", + "time": "8:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "10999 Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

We follow the Berlin Code of Conduct (http://berlincodeofconduct.org/) In order not to exclude anyone, English or code are the mandatory languages :) We aim to support each other We try to encourage equal amount of sharing and talking in our meetups Everyone tries to help shy people get introduced to others and to include everyone in the conversations We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is Everyone tries to be a person who makes other people around her/him feel nice Get to know us, and chat:
https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat) Show off what you're working on:
http://codingamigos.com/ (http://codingamigos.com/) Collaborate with the RefugeesWork project, supporting newcomers and learners
http://refugeeswork.com (http://www.refugeeswork.com/) If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/246829378", + "date": "January 26, 2018", + "time": "8:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/247128771", + "date": "January 30, 2018", + "time": "8:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "10999 Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

We follow the Berlin Code of Conduct (http://berlincodeofconduct.org/) In order not to exclude anyone, English or code are the mandatory languages :) We aim to support each other We try to encourage equal amount of sharing and talking in our meetups Everyone tries to help shy people get introduced to others and to include everyone in the conversations We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is Everyone tries to be a person who makes other people around her/him feel nice Get to know us, and chat:
https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat) Show off what you're working on:
http://codingamigos.com/ (http://codingamigos.com/) Collaborate with the RefugeesWork project, supporting newcomers and learners
http://refugeeswork.com (http://www.refugeeswork.com/) If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/247227702", + "date": "February 02, 2018", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/247322574", + "date": "February 05, 2018", + "time": "8:00PM" + }, + { + "title": "CodingAmigos [New Taipei Tamsui : new year fireside gather]", + "shortDescription": null, + "venue": { + "city": "New Taipei City", + "country": "tw" + }, + "images": [], + "duration": "PT8H", + "photoAlbum": { + "photoCount": 4, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/d/d/f/8/highres_468236824.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/d/d/f/e/highres_468236830.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/d/e/0/1/highres_468236833.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/d/e/0/2/highres_468236834.jpeg" + } + ] + }, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 0, + "link": "https://www.meetup.com/wizardamigos/events/247305065", + "date": "February 06, 2018", + "time": "3:00PM" + }, + { + "title": "CodingAmigos [New Taipei Tamsui : fireside gather]", + "shortDescription": null, + "venue": { + "city": "New Taipei City", + "country": "tw" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/247377752", + "date": "February 06, 2018", + "time": "8:00PM" + }, + { + "title": "CodingAmigos [New Taipei Tamsui : fireside gather]", + "shortDescription": null, + "venue": { + "city": "New Taipei City", + "country": "tw" + }, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/247503241", + "date": "February 06, 2018", + "time": "8:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "10999 Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

We follow the Berlin Code of Conduct (http://berlincodeofconduct.org/) In order not to exclude anyone, English or code are the mandatory languages :) We aim to support each other We try to encourage equal amount of sharing and talking in our meetups Everyone tries to help shy people get introduced to others and to include everyone in the conversations We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is Everyone tries to be a person who makes other people around her/him feel nice Get to know us, and chat:
https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat) Show off what you're working on:
http://codingamigos.com/ (http://codingamigos.com/) Collaborate with the RefugeesWork project, supporting newcomers and learners
http://refugeeswork.com (http://www.refugeeswork.com/) If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/246829537", + "date": "February 09, 2018", + "time": "8:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/246829561", + "date": "February 13, 2018", + "time": "8:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "10999 Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

We follow the Berlin Code of Conduct (http://berlincodeofconduct.org/) In order not to exclude anyone, English or code are the mandatory languages :) We aim to support each other We try to encourage equal amount of sharing and talking in our meetups Everyone tries to help shy people get introduced to others and to include everyone in the conversations We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is Everyone tries to be a person who makes other people around her/him feel nice Get to know us, and chat:
https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat) Show off what you're working on:
http://codingamigos.com/ (http://codingamigos.com/) Collaborate with the RefugeesWork project, supporting newcomers and learners
http://refugeeswork.com (http://www.refugeeswork.com/) If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/247687845", + "date": "February 16, 2018", + "time": "8:30PM" + }, + { + "title": "CodingAmigos [New Taipei Tamsui : fireside gather]", + "shortDescription": null, + "venue": { + "city": "New Taipei City", + "country": "tw" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/247726398", + "date": "February 20, 2018", + "time": "8:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/247812635", + "date": "February 20, 2018", + "time": "8:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "10999 Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

We follow the Berlin Code of Conduct (http://berlincodeofconduct.org/) In order not to exclude anyone, English or code are the mandatory languages :) We aim to support each other We try to encourage equal amount of sharing and talking in our meetups Everyone tries to help shy people get introduced to others and to include everyone in the conversations We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is Everyone tries to be a person who makes other people around her/him feel nice Get to know us, and chat:
https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat) Show off what you're working on:
http://codingamigos.com/ (http://codingamigos.com/) Collaborate with the RefugeesWork project, supporting newcomers and learners
http://refugeeswork.com (http://www.refugeeswork.com/) If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/247907771", + "date": "February 23, 2018", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/247998800", + "date": "February 26, 2018", + "time": "8:00PM" + }, + { + "title": "CodingAmigos [New Taipei Tamsui : fireside gather]", + "shortDescription": null, + "venue": { + "city": "New Taipei City", + "country": "tw" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/248034094", + "date": "February 27, 2018", + "time": "8:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "10999 Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

We follow the Berlin Code of Conduct (http://berlincodeofconduct.org/) In order not to exclude anyone, English or code are the mandatory languages :) We aim to support each other We try to encourage equal amount of sharing and talking in our meetups Everyone tries to help shy people get introduced to others and to include everyone in the conversations We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is Everyone tries to be a person who makes other people around her/him feel nice Get to know us, and chat:
https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat) Show off what you're working on:
http://codingamigos.com/ (http://codingamigos.com/) Collaborate with the RefugeesWork project, supporting newcomers and learners
http://refugeeswork.com (http://www.refugeeswork.com/) If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/248139386", + "date": "March 02, 2018", + "time": "8:30PM" + }, + { + "title": "CodingAmigos [New Taipei Tamsui : fireside gather]", + "shortDescription": null, + "venue": { + "city": "New Taipei City", + "country": "tw" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/248271027", + "date": "March 06, 2018", + "time": "8:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/248430191", + "date": "March 06, 2018", + "time": "8:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/248430207", + "date": "March 06, 2018", + "time": "8:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/248275662", + "date": "March 06, 2018", + "time": "8:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "10999 Berlin", + "country": "de" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

We follow the Berlin Code of Conduct (http://berlincodeofconduct.org/) In order not to exclude anyone, English or code are the mandatory languages :) We aim to support each other We try to encourage equal amount of sharing and talking in our meetups Everyone tries to help shy people get introduced to others and to include everyone in the conversations We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is Everyone tries to be a person who makes other people around her/him feel nice Get to know us, and chat:
https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat) Show off what you're working on:
http://codingamigos.com/ (http://codingamigos.com/) Collaborate with the RefugeesWork project, supporting newcomers and learners
http://refugeeswork.com (http://www.refugeeswork.com/) If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/248380591", + "date": "March 09, 2018", + "time": "9:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/248257051", + "date": "March 12, 2018", + "time": "8:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/248641046", + "date": "March 12, 2018", + "time": "8:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/248652301", + "date": "March 12, 2018", + "time": "8:00PM" + }, + { + "title": "CodingAmigos [New Taipei Tamsui : fireside gather]", + "shortDescription": null, + "venue": { + "city": "New Taipei City", + "country": "tw" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/248641021", + "date": "March 13, 2018", + "time": "8:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/248660213", + "date": "March 13, 2018", + "time": "8:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/248593878", + "date": "March 13, 2018", + "time": "9:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/248652309", + "date": "March 19, 2018", + "time": "8:00PM" + }, + { + "title": "CodingAmigos [New Taipei Tamsui : fireside gather]", + "shortDescription": null, + "venue": { + "city": "New Taipei City", + "country": "tw" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/248743821", + "date": "March 20, 2018", + "time": "8:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/248660257", + "date": "March 20, 2018", + "time": "8:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/248660264", + "date": "March 20, 2018", + "time": "8:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/248660328", + "date": "March 20, 2018", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/248652312", + "date": "March 26, 2018", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [New Taipei Tamsui : fireside gather]", + "shortDescription": null, + "venue": { + "city": "New Taipei City", + "country": "tw" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/248965728", + "date": "March 27, 2018", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT4H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/248660478", + "date": "March 27, 2018", + "time": "9:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT5H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/248660794", + "date": "March 30, 2018", + "time": "9:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/249166192", + "date": "April 02, 2018", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [New Taipei Tamsui : fireside gather]", + "shortDescription": null, + "venue": { + "city": "New Taipei City", + "country": "tw" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/249199182", + "date": "April 03, 2018", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/249199060", + "date": "April 03, 2018", + "time": "10:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [], + "duration": "PT6H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/249302599", + "date": "April 06, 2018", + "time": "9:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/249396219", + "date": "April 09, 2018", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [New Taipei Tamsui : fireside gather]", + "shortDescription": null, + "venue": { + "city": "New Taipei City", + "country": "tw" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/249431622", + "date": "April 10, 2018", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "DE" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/249431503", + "date": "April 10, 2018", + "time": "9:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin ", + "country": "DE" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/249628082", + "date": "April 10, 2018", + "time": "9:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "DE" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/249628093", + "date": "April 10, 2018", + "time": "9:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "DE" + }, + "images": [], + "duration": "PT6H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/249428892", + "date": "April 13, 2018", + "time": "9:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/249644996", + "date": "April 16, 2018", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [New Taipei Tamsui : fireside gather]", + "shortDescription": null, + "venue": { + "city": "New Taipei City", + "country": "tw" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/249511352", + "date": "April 17, 2018", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "DE" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/249628109", + "date": "April 17, 2018", + "time": "9:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "DE" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/249628106", + "date": "April 20, 2018", + "time": "9:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/249876719", + "date": "April 23, 2018", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/250027992", + "date": "April 23, 2018", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/250028104", + "date": "April 23, 2018", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [New Taipei Tamsui : fireside gather]", + "shortDescription": null, + "venue": { + "city": "New Taipei City", + "country": "tw" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/249511350", + "date": "April 24, 2018", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "DE" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/249628107", + "date": "April 24, 2018", + "time": "9:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "DE" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/249628108", + "date": "April 27, 2018", + "time": "9:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 10, + "link": "https://www.meetup.com/wizardamigos/events/249863483", + "date": "April 30, 2018", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/250270888", + "date": "April 30, 2018", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/250271068", + "date": "April 30, 2018", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/250271305", + "date": "April 30, 2018", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/250271614", + "date": "April 30, 2018", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [New Taipei Tamsui : fireside gather]", + "shortDescription": null, + "venue": { + "city": "New Taipei City", + "country": "tw" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/250145169", + "date": "May 01, 2018", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/250028056", + "date": "May 07, 2018", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [New Taipei Tamsui : fireside gather]", + "shortDescription": null, + "venue": { + "city": "New Taipei City", + "country": "tw" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/250386691", + "date": "May 08, 2018", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "DE" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/249255791", + "date": "May 11, 2018", + "time": "9:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/250270955", + "date": "May 14, 2018", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [New Taipei Tamsui : fireside gather]", + "shortDescription": null, + "venue": { + "city": "New Taipei City", + "country": "tw" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/250622165", + "date": "May 15, 2018", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "DE" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 10, + "link": "https://www.meetup.com/wizardamigos/events/250627821", + "date": "May 15, 2018", + "time": "9:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "DE" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 10, + "link": "https://www.meetup.com/wizardamigos/events/250725440", + "date": "May 18, 2018", + "time": "9:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/250775128", + "date": "May 21, 2018", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [New Taipei Tamsui : fireside gather]", + "shortDescription": null, + "venue": { + "city": "New Taipei City", + "country": "tw" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/250850886", + "date": "May 22, 2018", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "DE" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/250381379", + "date": "May 22, 2018", + "time": "9:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "DE" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/250944102", + "date": "May 25, 2018", + "time": "9:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/251022334", + "date": "May 28, 2018", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [New Taipei Tamsui : fireside gather]", + "shortDescription": null, + "venue": { + "city": "New Taipei City", + "country": "tw" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/251073120", + "date": "May 29, 2018", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "DE" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/251069651", + "date": "May 29, 2018", + "time": "9:30PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "DE" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/250722809", + "date": "June 01, 2018", + "time": "9:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/251209648", + "date": "June 04, 2018", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [New Taipei Tamsui : fireside gather]", + "shortDescription": null, + "venue": { + "city": "New Taipei City", + "country": "tw" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/251243443", + "date": "June 05, 2018", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [Berlin: Open Hacking Hangout]", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "DE" + }, + "images": [], + "duration": "PT8H30M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/251242822", + "date": "June 05, 2018", + "time": "9:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 12, + "link": "https://www.meetup.com/wizardamigos/events/251446570", + "date": "June 11, 2018", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [New Taipei Tamsui : fireside gather]", + "shortDescription": null, + "venue": { + "city": "New Taipei City", + "country": "tw" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/251484033", + "date": "June 12, 2018", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/251674464", + "date": "June 18, 2018", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [New Taipei Tamsui : fireside gather]", + "shortDescription": null, + "venue": { + "city": "New Taipei City", + "country": "tw" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/251726431", + "date": "June 19, 2018", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 11:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/251443729", + "date": "June 25, 2018", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [New Taipei Tamsui : fireside gather]", + "shortDescription": null, + "venue": { + "city": "New Taipei City", + "country": "tw" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/251960162", + "date": "June 26, 2018", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 10, + "link": "https://www.meetup.com/wizardamigos/events/251742813", + "date": "July 02, 2018", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/252304743", + "date": "July 02, 2018", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [New Taipei Tamsui : fireside gather]", + "shortDescription": null, + "venue": { + "city": "New Taipei City", + "country": "tw" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/252201301", + "date": "July 03, 2018", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/c/1/e/highres_472719966.jpeg" + } + ], + "duration": "PT3H", + "photoAlbum": null, + "desc": "Tomorrow topic: Review remix code && What is UX
Facebook event: https://www.facebook.com/events/2080076525538445/
Live stream: https://meet.jit.si/wizardamigos ( 8pm GMT+8)
Chat: https://gitter.im/wizardamigosinstitute/program

WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/252304844", + "date": "July 09, 2018", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [New Taipei Tamsui : fireside gather]", + "shortDescription": null, + "venue": { + "city": "New Taipei City", + "country": "tw" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/252442572", + "date": "July 10, 2018", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/252304845", + "date": "July 16, 2018", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [New Taipei Tamsui : fireside gather]", + "shortDescription": null, + "venue": { + "city": "New Taipei City", + "country": "tw" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/252198219", + "date": "July 17, 2018", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/252661505", + "date": "July 23, 2018", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [New Taipei Tamsui : fireside gather]", + "shortDescription": null, + "venue": { + "city": "New Taipei City", + "country": "tw" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/252913809", + "date": "July 24, 2018", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/253105308", + "date": "July 30, 2018", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [New Taipei Tamsui : fireside gather]", + "shortDescription": null, + "venue": { + "city": "New Taipei City", + "country": "tw" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/253144447", + "date": "July 31, 2018", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/252874496", + "date": "August 06, 2018", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 9, + "link": "https://www.meetup.com/wizardamigos/events/253101126", + "date": "August 13, 2018", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/253727537", + "date": "August 13, 2018", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": null, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/253748176", + "date": "August 13, 2018", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/253748182", + "date": "August 13, 2018", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/253748764", + "date": "August 13, 2018", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [New Taipei Tamsui : fireside gather]", + "shortDescription": null, + "venue": { + "city": "New Taipei City", + "country": "tw" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/253481076", + "date": "August 14, 2018", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 10, + "link": "https://www.meetup.com/wizardamigos/events/253727878", + "date": "August 20, 2018", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "TW" + }, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/253915570", + "date": "August 20, 2018", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": null, + "images": [], + "duration": "PT3H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/253924066", + "date": "August 20, 2018", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [New Taipei Tamsui : fireside gather]", + "shortDescription": null, + "venue": { + "city": "New Taipei City", + "country": "tw" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/253819969", + "date": "August 21, 2018", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "Starting from this Monday, August 27th. We have to flat share venue fee.

WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 12, + "link": "https://www.meetup.com/wizardamigos/events/253727879", + "date": "August 27, 2018", + "time": "10:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "Starting from this Monday, August 27th. We have to flat share venue fee.

WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/254092686", + "date": "August 27, 2018", + "time": "10:00PM" + }, + { + "title": "CodingAmigos [New Taipei Tamsui : fireside gather]", + "shortDescription": null, + "venue": { + "city": "New Taipei City", + "country": "tw" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/254013977", + "date": "August 28, 2018", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": { + "photoCount": 2, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/1/a/3/9/highres_474246713.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/1/a/5/b/highres_474246747.jpeg" + } + ] + }, + "desc": "Starting from this Monday, August 27th. We have to flat share venue fee.

WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (8:00pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 11, + "link": "https://www.meetup.com/wizardamigos/events/253915651", + "date": "September 03, 2018", + "time": "10:00PM" + }, + { + "title": "CodingAmigos [New Taipei Tamsui : fireside gather]", + "shortDescription": null, + "venue": { + "city": "New Taipei City", + "country": "tw" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/254214006", + "date": "September 04, 2018", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "Starting from this Monday, August 27th. We have to flat share venue fee.

WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 10, + "link": "https://www.meetup.com/wizardamigos/events/254092741", + "date": "September 10, 2018", + "time": "10:00PM" + }, + { + "title": "CodingAmigos [New Taipei Tamsui : fireside gather]", + "shortDescription": null, + "venue": { + "city": "New Taipei City", + "country": "tw" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/254419061", + "date": "September 11, 2018", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "Starting from this Monday, August 27th. We have to flat share venue fee.

WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 10, + "link": "https://www.meetup.com/wizardamigos/events/254180516", + "date": "September 17, 2018", + "time": "10:00PM" + }, + { + "title": "CodingAmigos [New Taipei Tamsui : fireside gather]", + "shortDescription": null, + "venue": { + "city": "New Taipei City", + "country": "tw" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/254622407", + "date": "September 18, 2018", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "Starting from this Monday, August 27th. We have to flat share venue fee.

WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:00pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/254797582", + "date": "September 24, 2018", + "time": "10:00PM" + }, + { + "title": "CodingAmigos [New Taipei Tamsui : fireside gather]", + "shortDescription": null, + "venue": { + "city": "New Taipei City", + "country": "tw" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/254826684", + "date": "September 25, 2018", + "time": "9:00PM" + }, + { + "title": "CodingAmigos [New Taipei Tamsui : fireside gather]", + "shortDescription": null, + "venue": { + "city": "New Taipei City", + "country": "tw" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/255033326", + "date": "October 02, 2018", + "time": "9:00PM" + }, + { + "title": "Wizard Amigos Code Camp (Berlin)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/b/c/0/f/highres_474948143.jpeg" + } + ], + "duration": "PT3H", + "photoAlbum": null, + "desc": "Wizard Amigos Code Camp is finally here!

Apply here, it's free! And if you have friends who are interested, invite them to join and play along!

http://wizardamigos.com/chapter-berlin/", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/255061982", + "date": "October 02, 2018", + "time": "10:00PM" + }, + { + "title": "Wizard Amigos Code Camp (Berlin)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/b/c/0/f/highres_474948143.jpeg" + } + ], + "duration": "PT3H", + "photoAlbum": { + "photoCount": 4, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/2/8/5/3/highres_475150323.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/2/8/5/7/highres_475150327.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/2/8/5/9/highres_475150329.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/2/8/6/6/highres_475150342.jpeg" + } + ] + }, + "desc": "Wizard Amigos Code Camp is finally here!

Apply here, it's free! And if you have friends who are interested, invite them to join and play along!

http://wizardamigos.com/chapter-berlin/", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/255061985", + "date": "October 02, 2018", + "time": "10:00PM" + }, + { + "title": "Wizard Amigos Code Camp (Berlin)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/b/c/0/f/highres_474948143.jpeg" + } + ], + "duration": "PT3H", + "photoAlbum": { + "photoCount": 7, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/c/6/1/e/highres_475190718.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/c/6/2/6/highres_475190726.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/c/6/4/9/highres_475190761.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/c/6/6/8/highres_475190792.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/c/6/7/5/highres_475190805.jpeg" + } + ] + }, + "desc": "Wizard Amigos Code Camp is finally here!

Apply here, it's free! And if you have friends who are interested, invite them to join and play along!

http://wizardamigos.com/chapter-berlin/", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/255124541", + "date": "October 05, 2018", + "time": "10:00PM" + }, + { + "title": "CodingAmigos [New Taipei Tamsui : fireside gather]", + "shortDescription": null, + "venue": { + "city": "New Taipei City", + "country": "tw" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/255240247", + "date": "October 09, 2018", + "time": "9:00PM" + }, + { + "title": "Wizard Amigos Code Camp (Berlin)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/b/c/0/f/highres_474948143.jpeg" + } + ], + "duration": "PT3H", + "photoAlbum": null, + "desc": "Wizard Amigos Code Camp is finally here!

Apply here, it's free! And if you have friends who are interested, invite them to join and play along!

http://wizardamigos.com/chapter-berlin/", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/255230537", + "date": "October 09, 2018", + "time": "10:00PM" + }, + { + "title": "Wizard Amigos Code Camp (Berlin)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/b/c/0/f/highres_474948143.jpeg" + } + ], + "duration": "PT3H", + "photoAlbum": null, + "desc": "Wizard Amigos Code Camp is finally here!

Until 23.10. we organize a code camp where you can learn all about smart contracts, javascript and decentralized web.

Join us!

For more info, visit:
http://wizardamigos.com/chapter-berlin/
http://wizardamigos.com", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/255231127", + "date": "October 12, 2018", + "time": "10:00PM" + }, + { + "title": "Wizard Amigos Code Camp (Berlin)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/b/c/0/f/highres_474948143.jpeg" + } + ], + "duration": "PT3H", + "photoAlbum": null, + "desc": "Wizard Amigos Code Camp is finally here!

Until 23.10. we organize a code camp where you can learn all about smart contracts, javascript and decentralized web.

Join us!

For more info, visit:
http://wizardamigos.com/chapter-berlin/
http://wizardamigos.com", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/255468699", + "date": "October 12, 2018", + "time": "10:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT2H30M", + "photoAlbum": null, + "desc": "Starting from this Monday, August 27th. We have to flat share venue fee.

WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/255358805", + "date": "October 15, 2018", + "time": "9:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT2H30M", + "photoAlbum": null, + "desc": "Starting from this Monday, August 27th. We have to flat share venue fee.

WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/255522789", + "date": "October 15, 2018", + "time": "9:30PM" + }, + { + "title": "CodingAmigos [New Taipei Tamsui : fireside gather]", + "shortDescription": null, + "venue": { + "city": "New Taipei City", + "country": "tw" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/255028766", + "date": "October 16, 2018", + "time": "9:00PM" + }, + { + "title": "Wizard Amigos Code Camp (Berlin)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/b/c/0/f/highres_474948143.jpeg" + } + ], + "duration": "PT3H", + "photoAlbum": null, + "desc": "Wizard Amigos Code Camp is finally here!

Until 23.10. we organize a code camp where you can learn all about smart contracts, javascript and decentralized web.

Join us!

For more info, visit:
http://wizardamigos.com/chapter-berlin/
http://wizardamigos.com", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/255432621", + "date": "October 16, 2018", + "time": "10:00PM" + }, + { + "title": "Wizard Amigos Code Camp (Berlin)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/b/c/0/f/highres_474948143.jpeg" + } + ], + "duration": "PT3H", + "photoAlbum": null, + "desc": "Wizard Amigos Code Camp is finally here!

Until 23.10. we organize a code camp where you can learn all about smart contracts, javascript and decentralized web.

Join us!

For more info, visit:
http://wizardamigos.com/chapter-berlin/
http://wizardamigos.com", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/255512092", + "date": "October 19, 2018", + "time": "10:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT2H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/255203956", + "date": "October 22, 2018", + "time": "9:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT2H30M", + "photoAlbum": null, + "desc": "Starting from this Monday, August 27th. We have to flat share venue fee.

WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/255710816", + "date": "October 22, 2018", + "time": "9:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT2H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/255711000", + "date": "October 22, 2018", + "time": "9:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT2H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/255738938", + "date": "October 22, 2018", + "time": "9:30PM" + }, + { + "title": "CodingAmigos [New Taipei Tamsui : fireside gather]", + "shortDescription": null, + "venue": { + "city": "New Taipei City", + "country": "tw" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/255615850", + "date": "October 23, 2018", + "time": "9:00PM" + }, + { + "title": "Wizard Amigos Code Camp (Berlin)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/b/c/0/f/highres_474948143.jpeg" + } + ], + "duration": "PT3H", + "photoAlbum": null, + "desc": "Wizard Amigos Code Camp is finally here!

Until 23.10. we organize a code camp where you can learn all about smart contracts, javascript and decentralized web.

Join us!

For more info, visit:
http://wizardamigos.com/chapter-berlin/
http://wizardamigos.com", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/255615725", + "date": "October 23, 2018", + "time": "10:00PM" + }, + { + "title": "Open Javascript Hacking Night (Berlin)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/b/c/0/f/highres_474948143.jpeg" + } + ], + "duration": "PT6H30M", + "photoAlbum": null, + "desc": "Building a community of people interested in the following topics:

+ JavaScript, node.js
+ open source, building your own projects
+ open data / open government
+ peer-to-peer web
+ smart contracts in social projects
+ self-employment

Meetup restarted from scratch in October 2018, new people are always warmly invited!

For more info, visit:
* http://wizardamigos.com/chapter-berlin/
* http://wizardamigos.com", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/255699848", + "date": "October 26, 2018", + "time": "9:30PM" + }, + { + "title": "Open Javascript Hacking Night (Berlin)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/b/c/0/f/highres_474948143.jpeg" + } + ], + "duration": "PT6H30M", + "photoAlbum": null, + "desc": "CodingAmigos Restart

For more info, visit:
http://wizardamigos.com/chapter-berlin/
http://wizardamigos.com", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/255776099", + "date": "October 26, 2018", + "time": "9:30PM" + }, + { + "title": "Open Javascript Hacking Night (Berlin)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/b/c/0/f/highres_474948143.jpeg" + } + ], + "duration": "PT6H30M", + "photoAlbum": null, + "desc": "CodingAmigos Restart

+ JavaScript
+ open source
+ peer-to-peer web
+ smart contracts

For more info, visit:
* http://wizardamigos.com/chapter-berlin/
* http://wizardamigos.com", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/255776330", + "date": "October 26, 2018", + "time": "9:30PM" + }, + { + "title": "Open Javascript Hacking Night (Berlin)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/b/c/0/f/highres_474948143.jpeg" + } + ], + "duration": "PT6H30M", + "photoAlbum": null, + "desc": "CodingAmigos Restart

+ JavaScript
+ open source
+ peer-to-peer web
+ smart contracts

For more info, visit:
* http://wizardamigos.com/chapter-berlin/
* http://wizardamigos.com", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/255776354", + "date": "October 26, 2018", + "time": "9:30PM" + }, + { + "title": "Open Javascript Hacking Night (Berlin)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/b/c/0/f/highres_474948143.jpeg" + } + ], + "duration": "PT6H30M", + "photoAlbum": null, + "desc": "CodingAmigos Restart

+ JavaScript
+ open source
+ open data / open government
+ peer-to-peer web
+ smart contracts in social projects

For more info, visit:
* http://wizardamigos.com/chapter-berlin/
* http://wizardamigos.com", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/255776444", + "date": "October 26, 2018", + "time": "9:30PM" + }, + { + "title": "Open Javascript Hacking Night (Berlin)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/b/c/0/f/highres_474948143.jpeg" + } + ], + "duration": "PT6H30M", + "photoAlbum": null, + "desc": "Building a community of people interested in the following topics:

+ JavaScript, node.js
+ open source, building your own projects
+ open data / open government
+ peer-to-peer web
+ smart contracts in social projects
+ self-employment

Meetup restarted from scratch in October 2018, new people are always warmly invited!

For more info, visit:
* http://wizardamigos.com/chapter-berlin/
* http://wizardamigos.com", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/255776927", + "date": "October 26, 2018", + "time": "9:30PM" + }, + { + "title": "Open Javascript Hacking Night (Berlin)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/b/c/0/f/highres_474948143.jpeg" + } + ], + "duration": "PT6H30M", + "photoAlbum": null, + "desc": "Building a community of people interested in the following topics:

+ JavaScript, node.js
+ open source, building your own projects
+ open data / open government
+ peer-to-peer web
+ smart contracts in social projects
+ self-employment

Meetup restarted from scratch in October 2018, new people are always warmly invited!

For more info, visit:
* http://wizardamigos.com/chapter-berlin/
* http://wizardamigos.com", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/255784607", + "date": "October 26, 2018", + "time": "9:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT2H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 12, + "link": "https://www.meetup.com/wizardamigos/events/255336115", + "date": "October 29, 2018", + "time": "8:30PM" + }, + { + "title": "CodingAmigos [New Taipei Tamsui : fireside gather]", + "shortDescription": null, + "venue": { + "city": "New Taipei City", + "country": "tw" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/255915594", + "date": "October 30, 2018", + "time": "8:00PM" + }, + { + "title": "Open Javascript Hacking Night (Berlin)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/b/c/0/f/highres_474948143.jpeg" + } + ], + "duration": "PT6H30M", + "photoAlbum": null, + "desc": "Building a community of people interested in the following topics:

+ JavaScript, node.js
+ open source, building your own projects
+ open data / open government
+ peer-to-peer web
+ smart contracts in social projects
+ self-employment

Meetup restarted from scratch in October 2018, new people are always warmly invited!

For more info, visit:
* http://wizardamigos.com/chapter-berlin/
* http://wizardamigos.com", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/255915703", + "date": "October 30, 2018", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT2H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/255974758", + "date": "November 05, 2018", + "time": "8:30PM" + }, + { + "title": "CodingAmigos [New Taipei Tamsui : fireside gather]", + "shortDescription": null, + "venue": { + "city": "New Taipei City", + "country": "tw" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/256008132", + "date": "November 06, 2018", + "time": "8:00PM" + }, + { + "title": "Open Javascript Hacking Night (Berlin)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/b/c/0/f/highres_474948143.jpeg" + } + ], + "duration": "PT6H30M", + "photoAlbum": null, + "desc": "Building a community of people interested in the following topics:

+ JavaScript, node.js
+ open source, building your own projects
+ open data / open government
+ peer-to-peer web
+ smart contracts in social projects
+ self-employment

Meetup restarted from scratch in October 2018, new people are always warmly invited!

For more info, visit:
* http://wizardamigos.com/chapter-berlin/
* http://wizardamigos.com", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/256101766", + "date": "November 09, 2018", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT2H30M", + "photoAlbum": null, + "desc": "***ADDRESS is \u81fa\u5317\u5e02\u6cf0\u9806\u885750\u5df728\u865f\u4e4b3\u865f. No. 28-3 is interpreted incorrectly as 3F, no. 28
on google map.

WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 10, + "link": "https://www.meetup.com/wizardamigos/events/256183670", + "date": "November 12, 2018", + "time": "8:30PM" + }, + { + "title": "CodingAmigos [New Taipei Tamsui : fireside gather]", + "shortDescription": null, + "venue": { + "city": "New Taipei City", + "country": "tw" + }, + "images": [], + "duration": "PT15M", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/256214628", + "date": "November 13, 2018", + "time": "8:00PM" + }, + { + "title": "Open Javascript Hacking Night (Berlin)", + "shortDescription": null, + "venue": { + "city": "Berlin", + "country": "de" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/b/c/0/f/highres_474948143.jpeg" + } + ], + "duration": "PT6H30M", + "photoAlbum": null, + "desc": "Building a community of people interested in the following topics:

+ JavaScript, node.js
+ open source, building your own projects
+ open data / open government
+ peer-to-peer web
+ smart contracts in social projects
+ self-employment

Meetup restarted from scratch in October 2018, new people are always warmly invited!

For more info, visit:
* http://wizardamigos.com/chapter-berlin/
* http://wizardamigos.com", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/256170233", + "date": "November 13, 2018", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT2H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/256373594", + "date": "November 19, 2018", + "time": "8:30PM" + }, + { + "title": "CodingAmigos [New Taipei Tamsui : fireside gather]", + "shortDescription": null, + "venue": { + "city": "New Taipei City", + "country": "tw" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/256414502", + "date": "November 20, 2018", + "time": "8:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT2H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 9, + "link": "https://www.meetup.com/wizardamigos/events/256578204", + "date": "November 26, 2018", + "time": "8:30PM" + }, + { + "title": "CodingAmigos [New Taipei Tamsui : fireside gather]", + "shortDescription": null, + "venue": { + "city": "New Taipei City", + "country": "tw" + }, + "images": [], + "duration": "PT0S", + "photoAlbum": null, + "desc": "The CodingAmigos are a loose bunch of coders, activists, creators and anything in between. The meetup is less of a formal meeting, more like a hangout to get to know interesting people, work on your own projects and chat about tech and the world.

1. We follow the Berlin code of conduct (http://berlincodeofconduct.org/)

2. In order not to exclude anyone, english or code are the mandatory languages :)

3. We aim to support each other

4. We try to encourage equal amount of sharing and talking in our meetups

5. Everyone tries to help shy people get introduced to others and to include everyone in the conversations

6. We promote inclusiveness no matter what gender, age, knowledge level or any other background a person is

7. Everyone tries to be a person who makes other people around her/him feel nice

Get to know us, and chat:

\u2022 https://gitter.im/codingamigos/chat (https://gitter.im/codingamigos/chat)

Show off what you're working on:

\u2022 http://codingamigos.com/ (http://codingamigos.com/)

Collaborate with the RefugeesWork project, supporting newcomers and learners

\u2022 http://refugeeswork.com (http://www.refugeeswork.com/)

If you already visited us a few times and feel like hosting the event, let us know and we will help you get started.", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/256605124", + "date": "November 27, 2018", + "time": "8:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT2H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 10, + "link": "https://www.meetup.com/wizardamigos/events/256705171", + "date": "December 03, 2018", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "**10/10 location will be in \u7f85\u65af\u798f\u8def\u4e09\u6bb5125\u865f3\u6a13-A\u5ba4**

WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/256878581", + "date": "December 10, 2018", + "time": "9:00AM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT2H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 11, + "link": "https://www.meetup.com/wizardamigos/events/257046491", + "date": "December 17, 2018", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT2H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/257279084", + "date": "December 17, 2018", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT2H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 11, + "link": "https://www.meetup.com/wizardamigos/events/257317693", + "date": "December 24, 2018", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT2H30M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/257474879", + "date": "December 24, 2018", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "TW" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 14, + "link": "https://www.meetup.com/wizardamigos/events/257498018", + "date": "January 07, 2019", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "TW" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 12, + "link": "https://www.meetup.com/wizardamigos/events/257516696", + "date": "January 14, 2019", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "TW" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/258059617", + "date": "January 14, 2019", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "TW" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 12, + "link": "https://www.meetup.com/wizardamigos/events/257616213", + "date": "January 21, 2019", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 12, + "link": "https://www.meetup.com/wizardamigos/events/257901238", + "date": "January 28, 2019", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 12, + "link": "https://www.meetup.com/wizardamigos/events/258695490", + "date": "February 11, 2019", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 15, + "link": "https://www.meetup.com/wizardamigos/events/258866680", + "date": "February 18, 2019", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "TW" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/258921636", + "date": "February 18, 2019", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "TW" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 15, + "link": "https://www.meetup.com/wizardamigos/events/258916261", + "date": "February 25, 2019", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "TW" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 15, + "link": "https://www.meetup.com/wizardamigos/events/258926664", + "date": "March 04, 2019", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "TW" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 11, + "link": "https://www.meetup.com/wizardamigos/events/259114304", + "date": "March 11, 2019", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "TW" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 11, + "link": "https://www.meetup.com/wizardamigos/events/259673175", + "date": "March 18, 2019", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "TW" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 15, + "link": "https://www.meetup.com/wizardamigos/events/259510758", + "date": "March 25, 2019", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/a/2/d/a/highres_479681690.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": { + "photoCount": 1, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/a/2/e/e/highres_479681710.jpeg" + } + ] + }, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/259884207", + "date": "March 26, 2019", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": null, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/259884251", + "date": "March 26, 2019", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 0, + "link": "https://www.meetup.com/wizardamigos/events/259884308", + "date": "March 26, 2019", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "TW" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 14, + "link": "https://www.meetup.com/wizardamigos/events/260053371", + "date": "April 01, 2019", + "time": "10:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 15, + "link": "https://www.meetup.com/wizardamigos/events/259884396", + "date": "April 02, 2019", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "TW" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 15, + "link": "https://www.meetup.com/wizardamigos/events/260287144", + "date": "April 08, 2019", + "time": "10:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": { + "photoCount": 1, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/4/1/e/1/highres_480196865.jpeg" + } + ] + }, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 12, + "link": "https://www.meetup.com/wizardamigos/events/260079757", + "date": "April 09, 2019", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "tw" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 12, + "link": "https://www.meetup.com/wizardamigos/events/260437507", + "date": "April 15, 2019", + "time": "10:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 9, + "link": "https://www.meetup.com/wizardamigos/events/260484311", + "date": "April 16, 2019", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "TW" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 13, + "link": "https://www.meetup.com/wizardamigos/events/260680277", + "date": "April 22, 2019", + "time": "10:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 10, + "link": "https://www.meetup.com/wizardamigos/events/260622457", + "date": "April 23, 2019", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "TW" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 11, + "link": "https://www.meetup.com/wizardamigos/events/260862825", + "date": "April 29, 2019", + "time": "10:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/260879529", + "date": "April 30, 2019", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "TW" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 12, + "link": "https://www.meetup.com/wizardamigos/events/261054044", + "date": "May 06, 2019", + "time": "10:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/261071763", + "date": "May 07, 2019", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "TW" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 12, + "link": "https://www.meetup.com/wizardamigos/events/261267819", + "date": "May 13, 2019", + "time": "10:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "TW" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/261422355", + "date": "May 13, 2019", + "time": "10:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/261219133", + "date": "May 14, 2019", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 9, + "link": "https://www.meetup.com/wizardamigos/events/261219325", + "date": "May 21, 2019", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "TW" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 10, + "link": "https://www.meetup.com/wizardamigos/events/261422478", + "date": "May 27, 2019", + "time": "10:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 9, + "link": "https://www.meetup.com/wizardamigos/events/261156053", + "date": "May 28, 2019", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/261862636", + "date": "June 04, 2019", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "TW" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 12, + "link": "https://www.meetup.com/wizardamigos/events/261895711", + "date": "June 10, 2019", + "time": "10:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/262062078", + "date": "June 11, 2019", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 15, + "link": "https://www.meetup.com/wizardamigos/events/262089977", + "date": "June 18, 2019", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "TW" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 10, + "link": "https://www.meetup.com/wizardamigos/events/262377096", + "date": "June 24, 2019", + "time": "10:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": { + "photoCount": 2, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/c/1/9/2/highres_482569554.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/c/1/9/5/highres_482569557.jpeg" + } + ] + }, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 12, + "link": "https://www.meetup.com/wizardamigos/events/262162690", + "date": "June 25, 2019", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 13, + "link": "https://www.meetup.com/wizardamigos/events/262628087", + "date": "July 02, 2019", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "TW" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/262820033", + "date": "July 08, 2019", + "time": "10:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/262838990", + "date": "July 09, 2019", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 9, + "link": "https://www.meetup.com/wizardamigos/events/263027660", + "date": "July 16, 2019", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "TW" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/263204576", + "date": "July 22, 2019", + "time": "10:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 12, + "link": "https://www.meetup.com/wizardamigos/events/263098079", + "date": "July 23, 2019", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 15, + "link": "https://www.meetup.com/wizardamigos/events/262124846", + "date": "July 30, 2019", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "TW" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": { + "photoCount": 1, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/c/f/1/b/highres_483653019.jpeg" + } + ] + }, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 10, + "link": "https://www.meetup.com/wizardamigos/events/263363103", + "date": "August 05, 2019", + "time": "10:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 14, + "link": "https://www.meetup.com/wizardamigos/events/263578417", + "date": "August 06, 2019", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/263788649", + "date": "August 13, 2019", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "TW" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 10, + "link": "https://www.meetup.com/wizardamigos/events/263582705", + "date": "August 19, 2019", + "time": "10:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 15, + "link": "https://www.meetup.com/wizardamigos/events/263966277", + "date": "August 20, 2019", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT7H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 15, + "link": "https://www.meetup.com/wizardamigos/events/263733622", + "date": "August 27, 2019", + "time": "12:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "TW" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 12, + "link": "https://www.meetup.com/wizardamigos/events/264348602", + "date": "September 02, 2019", + "time": "10:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/264027900", + "date": "September 03, 2019", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/264550211", + "date": "September 10, 2019", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "TW" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to Join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 12, + "link": "https://www.meetup.com/wizardamigos/events/264491786", + "date": "September 16, 2019", + "time": "10:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 17, + "link": "https://www.meetup.com/wizardamigos/events/262712092", + "date": "September 17, 2019", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 14, + "link": "https://www.meetup.com/wizardamigos/events/264879032", + "date": "September 24, 2019", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "TW" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (8:00pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/265260477", + "date": "September 30, 2019", + "time": "10:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/265137197", + "date": "October 01, 2019", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": { + "photoCount": 3, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/b/4/c/9/highres_485566281.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/b/4/f/a/highres_485566330.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/b/5/1/0/highres_485566352.jpeg" + } + ] + }, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 10, + "link": "https://www.meetup.com/wizardamigos/events/265311398", + "date": "October 08, 2019", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

https://wizardamigos.com/chapter-lagos/
Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/265481205", + "date": "October 08, 2019", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/265481234", + "date": "October 08, 2019", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Taipei", + "country": "TW" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to join us:

http://npmjs.org (http://npmjs.org/) and a hyper modular style of programming, so that building apps becomes like plugging together legos :-) https://opbeat.com/community/posts/hypermodular-development-by-mathias-buus/

----------------------------------------------------------------------------

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (8:00pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)", + "participants": 10, + "link": "https://www.meetup.com/wizardamigos/events/265394398", + "date": "October 14, 2019", + "time": "10:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 12, + "link": "https://www.meetup.com/wizardamigos/events/265529072", + "date": "October 15, 2019", + "time": "3:00PM" + }, + { + "title": "Free code camp in Thailand", + "shortDescription": null, + "venue": { + "city": "Mueang Chiang Mai District", + "country": "th" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/7/e/1/highres_484418881.jpeg" + } + ], + "duration": "PT10H", + "photoAlbum": null, + "desc": "OCT 20 - NOV 20 2019

We are looking for Volunteers :-)
Please contact us.

-------------------------------------------------------------------------------------
APPROXIMATED MONTHLY COSTS (in USD):

1. I assume coworking is ~ 250 per month

2. The apartement (+gym, +pool) is another ~250 per month

3. I guess you can survive buying for not more than ~150 per month

4. Also a scooter to get around the island is ~150 per month, but we might not need it that often, so maybe only sometimes...

5. I assume if we check a bit, we might get a flight from taiwan to thailand and back for ~200 (so 100 each)

----------------------------------------------------------------------
So that is: 250 + 250 + 150 + 150 + 200 = 1000 USD

1. Now we might drive less scooter
2. We might decide to work more from the apartment and not have 3. a dedicated room for us to work from and meet.
4. Also maybe somebody can find an even cheaper flight ticket
5. Some people might want to share a room (they are big)
6. Regarding food - if you stick to absolute basics its probably cheaper

So lets try to figure out what could be the cheapest under which circumstances", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/264399534", + "date": "October 20, 2019", + "time": "12:00PM" + }, + { + "title": "Free code camp in Thailand", + "shortDescription": null, + "venue": { + "city": "Mueang Chiang Mai District", + "country": "th" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/7/e/1/highres_484418881.jpeg" + } + ], + "duration": "PT10H", + "photoAlbum": null, + "desc": "OCT 20 - NOV 20 2019

We are looking for Volunteers :-)
Please contact us.

-------------------------------------------------------------------------------------
APPROXIMATED MONTHLY COSTS (in USD):

1. I assume coworking is ~ 250 per month

2. The apartement (+gym, +pool) is another ~250 per month

3. I guess you can survive buying for not more than ~150 per month

4. Also a scooter to get around the island is ~150 per month, but we might not need it that often, so maybe only sometimes...

5. I assume if we check a bit, we might get a flight from taiwan to thailand and back for ~200 (so 100 each)

----------------------------------------------------------------------
So that is: 250 + 250 + 150 + 150 + 200 = 1000 USD

1. Now we might drive less scooter
2. We might decide to work more from the apartment and not have 3. a dedicated room for us to work from and meet.
4. Also maybe somebody can find an even cheaper flight ticket
5. Some people might want to share a room (they are big)
6. Regarding food - if you stick to absolute basics its probably cheaper

So lets try to figure out what could be the cheapest under which circumstances", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/264399752", + "date": "October 20, 2019", + "time": "12:00PM" + }, + { + "title": "Free code camp in Thailand", + "shortDescription": null, + "venue": { + "city": "Mueang Chiang Mai District", + "country": "th" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/7/e/1/highres_484418881.jpeg" + } + ], + "duration": "PT10H", + "photoAlbum": null, + "desc": "OCT 20 - NOV 20 2019

We are looking for Volunteers :-)
Please contact us.

-------------------------------------------------------------------------------------
APPROXIMATED MONTHLY COSTS (in USD):

1. I assume coworking is ~ 250 per month

2. The apartement (+gym, +pool) is another ~250 per month

3. I guess you can survive buying for not more than ~150 per month

4. Also a scooter to get around the island is ~150 per month, but we might not need it that often, so maybe only sometimes...

5. I assume if we check a bit, we might get a flight from taiwan to thailand and back for ~200 (so 100 each)

----------------------------------------------------------------------
So that is: 250 + 250 + 150 + 150 + 200 = 1000 USD

1. Now we might drive less scooter
2. We might decide to work more from the apartment and not have 3. a dedicated room for us to work from and meet.
4. Also maybe somebody can find an even cheaper flight ticket
5. Some people might want to share a room (they are big)
6. Regarding food - if you stick to absolute basics its probably cheaper

So lets try to figure out what could be the cheapest under which circumstances", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/265681223", + "date": "October 21, 2019", + "time": "12:00PM" + }, + { + "title": "Free code camp in Thailand", + "shortDescription": null, + "venue": { + "city": "Mueang Chiang Mai District", + "country": "th" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/7/e/1/highres_484418881.jpeg" + } + ], + "duration": "PT10H", + "photoAlbum": null, + "desc": "OCT 20 - NOV 20 2019

We are looking for Volunteers :-)
Please contact us.

-------------------------------------------------------------------------------------
APPROXIMATED MONTHLY COSTS (in USD):

1. I assume coworking is ~ 250 per month

2. The apartement (+gym, +pool) is another ~250 per month

3. I guess you can survive buying for not more than ~150 per month

4. Also a scooter to get around the island is ~150 per month, but we might not need it that often, so maybe only sometimes...

5. I assume if we check a bit, we might get a flight from taiwan to thailand and back for ~200 (so 100 each)

----------------------------------------------------------------------
So that is: 250 + 250 + 150 + 150 + 200 = 1000 USD

1. Now we might drive less scooter
2. We might decide to work more from the apartment and not have 3. a dedicated room for us to work from and meet.
4. Also maybe somebody can find an even cheaper flight ticket
5. Some people might want to share a room (they are big)
6. Regarding food - if you stick to absolute basics its probably cheaper

So lets try to figure out what could be the cheapest under which circumstances", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/265708288", + "date": "October 22, 2019", + "time": "12:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 14, + "link": "https://www.meetup.com/wizardamigos/events/265136546", + "date": "October 22, 2019", + "time": "3:00PM" + }, + { + "title": "WizardAmigos & community friends share & meet", + "shortDescription": null, + "venue": { + "city": "Zhongzheng District", + "country": "tw" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/6/3/7/5/highres_485845461.jpeg" + } + ], + "duration": "PT3H45M", + "photoAlbum": null, + "desc": "1. Lightning talks (5min) -feel free to share what you are passionate about
https://hackmd.io/LgmcrC17Tjq-lGn_G2Qw8Q?both
2. Party time

Wizard Amigos is a community with events in Berlin, Chiang Mai, Taipei and Lagos and this time Alex and Nina, who kickstarted the community in Berlin in 2013 are in Taipei and would like to meet with communities from Mozilla, P2P web, g0v.tw, Ethereum and local Wizard Amigos to enable sharing between the communities in a one-time-event.

---

We're the community, promoting free co-learning coding events, teaching how to contribute to open source and how to work on making society better by creating solutions for more inclusive, open world.

We won't most likely work on a concrete code this time, but more to share ideas within different communities and to share open licence (MIT, Creative commons) code we've been producing lately and to help other communities learn about it and how to use it.

Event is free of charge and we'll provide some free snacks and drinks too BUT it's a potluck style of get together so you're also welcome to bring something to share", + "participants": 22, + "link": "https://www.meetup.com/wizardamigos/events/265764758", + "date": "October 22, 2019", + "time": "9:15PM" + }, + { + "title": "Free code camp in Thailand", + "shortDescription": null, + "venue": { + "city": "Mueang Chiang Mai District", + "country": "th" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/7/e/1/highres_484418881.jpeg" + } + ], + "duration": "PT10H", + "photoAlbum": null, + "desc": "OCT 20 - NOV 20 2019

We are looking for Volunteers :-)
Please contact us.

-------------------------------------------------------------------------------------
APPROXIMATED MONTHLY COSTS (in USD):

1. I assume coworking is ~ 250 per month

2. The apartement (+gym, +pool) is another ~250 per month

3. I guess you can survive buying for not more than ~150 per month

4. Also a scooter to get around the island is ~150 per month, but we might not need it that often, so maybe only sometimes...

5. I assume if we check a bit, we might get a flight from taiwan to thailand and back for ~200 (so 100 each)

----------------------------------------------------------------------
So that is: 250 + 250 + 150 + 150 + 200 = 1000 USD

1. Now we might drive less scooter
2. We might decide to work more from the apartment and not have 3. a dedicated room for us to work from and meet.
4. Also maybe somebody can find an even cheaper flight ticket
5. Some people might want to share a room (they are big)
6. Regarding food - if you stick to absolute basics its probably cheaper

So lets try to figure out what could be the cheapest under which circumstances", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/265737679", + "date": "October 23, 2019", + "time": "12:00PM" + }, + { + "title": "Free code camp in Thailand", + "shortDescription": null, + "venue": { + "city": "Mueang Chiang Mai District", + "country": "th" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/7/e/1/highres_484418881.jpeg" + } + ], + "duration": "PT10H", + "photoAlbum": null, + "desc": "OCT 20 - NOV 20 2019

We are looking for Volunteers :-)
Please contact us.

-------------------------------------------------------------------------------------
APPROXIMATED MONTHLY COSTS (in USD):

1. I assume coworking is ~ 250 per month

2. The apartement (+gym, +pool) is another ~250 per month

3. I guess you can survive buying for not more than ~150 per month

4. Also a scooter to get around the island is ~150 per month, but we might not need it that often, so maybe only sometimes...

5. I assume if we check a bit, we might get a flight from taiwan to thailand and back for ~200 (so 100 each)

----------------------------------------------------------------------
So that is: 250 + 250 + 150 + 150 + 200 = 1000 USD

1. Now we might drive less scooter
2. We might decide to work more from the apartment and not have 3. a dedicated room for us to work from and meet.
4. Also maybe somebody can find an even cheaper flight ticket
5. Some people might want to share a room (they are big)
6. Regarding food - if you stick to absolute basics its probably cheaper

So lets try to figure out what could be the cheapest under which circumstances", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/265767263", + "date": "October 24, 2019", + "time": "12:00PM" + }, + { + "title": "Free code camp in Thailand", + "shortDescription": null, + "venue": { + "city": "Mueang Chiang Mai District", + "country": "th" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/7/e/1/highres_484418881.jpeg" + } + ], + "duration": "PT10H", + "photoAlbum": null, + "desc": "OCT 20 - NOV 20 2019

We are looking for Volunteers :-)
Please contact us.

-------------------------------------------------------------------------------------
APPROXIMATED MONTHLY COSTS (in USD):

1. I assume coworking is ~ 250 per month

2. The apartement (+gym, +pool) is another ~250 per month

3. I guess you can survive buying for not more than ~150 per month

4. Also a scooter to get around the island is ~150 per month, but we might not need it that often, so maybe only sometimes...

5. I assume if we check a bit, we might get a flight from taiwan to thailand and back for ~200 (so 100 each)

----------------------------------------------------------------------
So that is: 250 + 250 + 150 + 150 + 200 = 1000 USD

1. Now we might drive less scooter
2. We might decide to work more from the apartment and not have 3. a dedicated room for us to work from and meet.
4. Also maybe somebody can find an even cheaper flight ticket
5. Some people might want to share a room (they are big)
6. Regarding food - if you stick to absolute basics its probably cheaper

So lets try to figure out what could be the cheapest under which circumstances", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/265792479", + "date": "October 25, 2019", + "time": "12:00PM" + }, + { + "title": "Free code camp in Thailand", + "shortDescription": null, + "venue": { + "city": "Mueang Chiang Mai District", + "country": "th" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/7/e/1/highres_484418881.jpeg" + } + ], + "duration": "PT10H", + "photoAlbum": null, + "desc": "OCT 20 - NOV 20 2019

We are looking for Volunteers :-)
Please contact us.

-------------------------------------------------------------------------------------
APPROXIMATED MONTHLY COSTS (in USD):

1. I assume coworking is ~ 250 per month

2. The apartement (+gym, +pool) is another ~250 per month

3. I guess you can survive buying for not more than ~150 per month

4. Also a scooter to get around the island is ~150 per month, but we might not need it that often, so maybe only sometimes...

5. I assume if we check a bit, we might get a flight from taiwan to thailand and back for ~200 (so 100 each)

----------------------------------------------------------------------
So that is: 250 + 250 + 150 + 150 + 200 = 1000 USD

1. Now we might drive less scooter
2. We might decide to work more from the apartment and not have 3. a dedicated room for us to work from and meet.
4. Also maybe somebody can find an even cheaper flight ticket
5. Some people might want to share a room (they are big)
6. Regarding food - if you stick to absolute basics its probably cheaper

So lets try to figure out what could be the cheapest under which circumstances", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/265811381", + "date": "October 26, 2019", + "time": "12:00PM" + }, + { + "title": "Free code camp in Thailand", + "shortDescription": null, + "venue": { + "city": "Mueang Chiang Mai District", + "country": "th" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/7/e/1/highres_484418881.jpeg" + } + ], + "duration": "PT10H", + "photoAlbum": { + "photoCount": 4, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/a/7/d/highres_486459549.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/9/a/7/f/highres_486459551.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/9/a/8/2/highres_486459554.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/9/a/8/6/highres_486459558.jpeg" + } + ] + }, + "desc": "OCT 20 - NOV 20 2019

We are looking for Volunteers :-)
Please contact us.

-------------------------------------------------------------------------------------
APPROXIMATED MONTHLY COSTS (in USD):

1. I assume coworking is ~ 250 per month

2. The apartement (+gym, +pool) is another ~250 per month

3. I guess you can survive buying for not more than ~150 per month

4. Also a scooter to get around the island is ~150 per month, but we might not need it that often, so maybe only sometimes...

5. I assume if we check a bit, we might get a flight from taiwan to thailand and back for ~200 (so 100 each)

----------------------------------------------------------------------
So that is: 250 + 250 + 150 + 150 + 200 = 1000 USD

1. Now we might drive less scooter
2. We might decide to work more from the apartment and not have 3. a dedicated room for us to work from and meet.
4. Also maybe somebody can find an even cheaper flight ticket
5. Some people might want to share a room (they are big)
6. Regarding food - if you stick to absolute basics its probably cheaper

So lets try to figure out what could be the cheapest under which circumstances", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/265948201", + "date": "October 27, 2019", + "time": "11:00AM" + }, + { + "title": "Free code camp in Thailand", + "shortDescription": null, + "venue": { + "city": "Mueang Chiang Mai District", + "country": "th" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/7/e/1/highres_484418881.jpeg" + } + ], + "duration": "PT10H", + "photoAlbum": null, + "desc": "OCT 25 - NOV 24 2019
Details and tips: https://hackmd.io/oZ_RERTrTp2hBypEZ6E2tQ

SCHEDULE:
- we meet every day from around 2pm until 8pm in C.A.M.P. Library Cafe in Maya (Nimman)
- 2x a week we'll try to organize some lessons/lightning talks (depending on when mentors are available, will announce it)

COMMUNICATION:
- for communication we use Telegram and/or Gitter chat https://t.me/joinchat/CgTftxVXA-NuDYvJqgsJig
https://gitter.im/wizardamigosinstitute/program

HOW DOES IT WORK:
- learner/attendee should pick the topic of their interest and we'll try hard to help you find good learning resources and support you with your learning efforts. Everyone, including you can ask questions and try to answer questions of others on our gitter community chat.
- attendees make their own plan on what they want to learn/work on projects/meet with to collaborate on projects together

BENEFIT:
- you get a community of like minded people that also learn/work
- you get a time frame in which you can set yourself on a mission to learn something
- you can ask for help on a chat (people will be coming and going and as there is no strict structure, you should not depend on physically meet to be able to get started/continue with your work)
- @serapath (Alex) and @ninabreznik (Nina) will be here every day in approximately this time frame so we can help out, although we have work we need to do, so prepare for self directed learning

ABOUT:
- Wizard Amigos is a grass root community and operates with zero budget and on purely voluntary basis, so don't expect strict schedule
- everyone is welcome
- remote work demands a lot of self organization so this whole process also helps you learn how to gain that skill

ABSOLUTE BEGINNERS?
- if you are completely new to coding, don't worry, we have a list of resources to help you get started
- we recommend you: Javascript (for any kind of web development) or Solidity (if you are interested in Ethereum ecosystem and in building smart contracts)

C.A.M.P. Library Cafe (Maya mall, 5th floor)
- if you use AIS mobile internet, you can use the space for free (connect to AIS super wifi)
- if you don't use AIS, consider getting a monthly sim card and enjoy free space
- if you don't have AIS and don't plan to get it, you can buy a drink and get 2h free internet (2 cappuchinos are 150 THB and get you 6h of free internet) OR you can also connect to your mobile internet)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/265992051", + "date": "October 28, 2019", + "time": "11:00AM" + }, + { + "title": "Free code camp in Thailand", + "shortDescription": null, + "venue": { + "city": "Amphoe Mueang Chiang Mai", + "country": "th" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/7/e/1/highres_484418881.jpeg" + } + ], + "duration": "PT6H", + "photoAlbum": null, + "desc": "OCT 25 - NOV 24 2019
Details and tips: https://hackmd.io/oZ_RERTrTp2hBypEZ6E2tQ

SCHEDULE:
- we meet every day from around 2pm until 8pm in C.A.M.P. Library Cafe in Maya (Nimman)
- 2x a week we'll try to organize some lessons/lightning talks (depending on when mentors are available, will announce it)

COMMUNICATION:
- for communication we use Telegram and/or Gitter chat https://t.me/joinchat/CgTftxVXA-NuDYvJqgsJig
https://gitter.im/wizardamigosinstitute/program

HOW DOES IT WORK:
- learner/attendee should pick the topic of their interest and we'll try hard to help you find good learning resources and support you with your learning efforts. Everyone, including you can ask questions and try to answer questions of others on our gitter community chat.
- attendees make their own plan on what they want to learn/work on projects/meet with to collaborate on projects together

BENEFIT:
- you get a community of like minded people that also learn/work
- you get a time frame in which you can set yourself on a mission to learn something
- you can ask for help on a chat (people will be coming and going and as there is no strict structure, you should not depend on physically meet to be able to get started/continue with your work)
- @serapath (Alex) and @ninabreznik (Nina) will be here every day in approximately this time frame so we can help out, although we have work we need to do, so prepare for self directed learning

ABOUT:
- Wizard Amigos is a grass root community and operates with zero budget and on purely voluntary basis, so don't expect strict schedule
- everyone is welcome
- remote work demands a lot of self organization so this whole process also helps you learn how to gain that skill

ABSOLUTE BEGINNERS?
- if you are completely new to coding, don't worry, we have a list of resources to help you get started
- we recommend you: Javascript (for any kind of web development) or Solidity (if you are interested in Ethereum ecosystem and in building smart contracts)

C.A.M.P. Library Cafe (Maya mall, 5th floor)
- if you use AIS mobile internet, you can use the space for free (connect to AIS super wifi)
- if you don't use AIS, consider getting a monthly sim card and enjoy free space
- if you don't have AIS and don't plan to get it, you can buy a drink and get 2h free internet (2 cappuchinos are 150 THB and get you 6h of free internet) OR you can also connect to your mobile internet)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/265953774", + "date": "October 28, 2019", + "time": "3:00PM" + }, + { + "title": "Free code camp in Thailand", + "shortDescription": null, + "venue": { + "city": "Amphoe Mueang Chiang Mai", + "country": "th" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/7/e/1/highres_484418881.jpeg" + } + ], + "duration": "PT6H", + "photoAlbum": null, + "desc": "OCT 25 - NOV 24 2019
Details and tips: https://hackmd.io/oZ_RERTrTp2hBypEZ6E2tQ

SCHEDULE:
- we meet every day from around 2pm until 8pm in C.A.M.P. Library Cafe in Maya (Nimman)
- 2x a week we'll try to organize some lessons/lightning talks (depending on when mentors are available, will announce it)

COMMUNICATION:
- for communication we use Telegram and/or Gitter chat https://t.me/joinchat/CgTftxVXA-NuDYvJqgsJig
https://gitter.im/wizardamigosinstitute/program

HOW DOES IT WORK:
- learner/attendee should pick the topic of their interest and we'll try hard to help you find good learning resources and support you with your learning efforts. Everyone, including you can ask questions and try to answer questions of others on our gitter community chat.
- attendees make their own plan on what they want to learn/work on projects/meet with to collaborate on projects together

BENEFIT:
- you get a community of like minded people that also learn/work
- you get a time frame in which you can set yourself on a mission to learn something
- you can ask for help on a chat (people will be coming and going and as there is no strict structure, you should not depend on physically meet to be able to get started/continue with your work)
- @serapath (Alex) and @ninabreznik (Nina) will be here every day in approximately this time frame so we can help out, although we have work we need to do, so prepare for self directed learning

ABOUT:
- Wizard Amigos is a grass root community and operates with zero budget and on purely voluntary basis, so don't expect strict schedule
- everyone is welcome
- remote work demands a lot of self organization so this whole process also helps you learn how to gain that skill

ABSOLUTE BEGINNERS?
- if you are completely new to coding, don't worry, we have a list of resources to help you get started
- we recommend you: Javascript (for any kind of web development) or Solidity (if you are interested in Ethereum ecosystem and in building smart contracts)

C.A.M.P. Library Cafe (Maya mall, 5th floor)
- if you use AIS mobile internet, you can use the space for free (connect to AIS super wifi)
- if you don't use AIS, consider getting a monthly sim card and enjoy free space
- if you don't have AIS and don't plan to get it, you can buy a drink and get 2h free internet (2 cappuchinos are 150 THB and get you 6h of free internet) OR you can also connect to your mobile internet)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/265992118", + "date": "October 28, 2019", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Zhongzheng District", + "country": "tw" + }, + "images": [], + "duration": "PT2H15M", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to join us:

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (8:00pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/265946948", + "date": "October 28, 2019", + "time": "8:45PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Zhongzheng District", + "country": "tw" + }, + "images": [], + "duration": "PT2H15M", + "photoAlbum": { + "photoCount": 6, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/a/2/f/highres_486459471.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/9/a/3/3/highres_486459475.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/9/a/3/9/highres_486459481.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/9/a/3/f/highres_486459487.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/9/a/4/3/highres_486459491.jpeg" + } + ] + }, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to join us:

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (8:00pm ~ 10:00pm)
Venue: MaiCoin HQ (Thanks for MaiCoin HQ sponsored the venue)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum", + "participants": 17, + "link": "https://www.meetup.com/wizardamigos/events/265946949", + "date": "October 28, 2019", + "time": "8:45PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/265992112", + "date": "October 29, 2019", + "time": "2:00PM" + }, + { + "title": "Free code camp in Thailand", + "shortDescription": null, + "venue": { + "city": "Amphoe Mueang Chiang Mai", + "country": "th" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/7/e/1/highres_484418881.jpeg" + } + ], + "duration": "PT6H", + "photoAlbum": { + "photoCount": 8, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/a/4/8/highres_486459496.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/9/a/4/b/highres_486459499.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/9/a/5/1/highres_486459505.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/9/a/5/4/highres_486459508.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/9/a/5/8/highres_486459512.jpeg" + } + ] + }, + "desc": "OCT 25 - NOV 24 2019
Details and tips: https://hackmd.io/oZ_RERTrTp2hBypEZ6E2tQ

SCHEDULE:
- we meet every day from around 2pm until 8pm in C.A.M.P. Library Cafe in Maya (Nimman)
- 2x a week we'll try to organize some lessons/lightning talks (depending on when mentors are available, will announce it)

COMMUNICATION:
- for communication we use Telegram and/or Gitter chat https://t.me/joinchat/CgTftxVXA-NuDYvJqgsJig
https://gitter.im/wizardamigosinstitute/program

HOW DOES IT WORK:
- learner/attendee should pick the topic of their interest and we'll try hard to help you find good learning resources and support you with your learning efforts. Everyone, including you can ask questions and try to answer questions of others on our gitter community chat.
- attendees make their own plan on what they want to learn/work on projects/meet with to collaborate on projects together

BENEFIT:
- you get a community of like minded people that also learn/work
- you get a time frame in which you can set yourself on a mission to learn something
- you can ask for help on a chat (people will be coming and going and as there is no strict structure, you should not depend on physically meet to be able to get started/continue with your work)
- @serapath (Alex) and @ninabreznik (Nina) will be here every day in approximately this time frame so we can help out, although we have work we need to do, so prepare for self directed learning

ABOUT:
- Wizard Amigos is a grass root community and operates with zero budget and on purely voluntary basis, so don't expect strict schedule
- everyone is welcome
- remote work demands a lot of self organization so this whole process also helps you learn how to gain that skill

ABSOLUTE BEGINNERS?
- if you are completely new to coding, don't worry, we have a list of resources to help you get started
- we recommend you: Javascript (for any kind of web development) or Solidity (if you are interested in Ethereum ecosystem and in building smart contracts)

C.A.M.P. Library Cafe (Maya mall, 5th floor)
- if you use AIS mobile internet, you can use the space for free (connect to AIS super wifi)
- if you don't use AIS, consider getting a monthly sim card and enjoy free space
- if you don't have AIS and don't plan to get it, you can buy a drink and get 2h free internet (2 cappuchinos are 150 THB and get you 6h of free internet) OR you can also connect to your mobile internet)", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/265895934", + "date": "October 29, 2019", + "time": "3:00PM" + }, + { + "title": "Free code camp in Thailand", + "shortDescription": null, + "venue": { + "city": "Amphoe Mueang Chiang Mai", + "country": "th" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/7/e/1/highres_484418881.jpeg" + } + ], + "duration": "PT6H", + "photoAlbum": null, + "desc": "OCT 25 - NOV 24 2019
Details and tips: https://hackmd.io/oZ_RERTrTp2hBypEZ6E2tQ

SCHEDULE:
- we meet every day from around 2pm until 8pm in C.A.M.P. Library Cafe in Maya (Nimman)
- 2x a week we'll try to organize some lessons/lightning talks (depending on when mentors are available, will announce it)

COMMUNICATION:
- for communication we use Telegram and/or Gitter chat https://t.me/joinchat/CgTftxVXA-NuDYvJqgsJig
https://gitter.im/wizardamigosinstitute/program

HOW DOES IT WORK:
- learner/attendee should pick the topic of their interest and we'll try hard to help you find good learning resources and support you with your learning efforts. Everyone, including you can ask questions and try to answer questions of others on our gitter community chat.
- attendees make their own plan on what they want to learn/work on projects/meet with to collaborate on projects together

BENEFIT:
- you get a community of like minded people that also learn/work
- you get a time frame in which you can set yourself on a mission to learn something
- you can ask for help on a chat (people will be coming and going and as there is no strict structure, you should not depend on physically meet to be able to get started/continue with your work)
- @serapath (Alex) and @ninabreznik (Nina) will be here every day in approximately this time frame so we can help out, although we have work we need to do, so prepare for self directed learning

ABOUT:
- Wizard Amigos is a grass root community and operates with zero budget and on purely voluntary basis, so don't expect strict schedule
- everyone is welcome
- remote work demands a lot of self organization so this whole process also helps you learn how to gain that skill

ABSOLUTE BEGINNERS?
- if you are completely new to coding, don't worry, we have a list of resources to help you get started
- we recommend you: Javascript (for any kind of web development) or Solidity (if you are interested in Ethereum ecosystem and in building smart contracts)

C.A.M.P. Library Cafe (Maya mall, 5th floor)
- if you use AIS mobile internet, you can use the space for free (connect to AIS super wifi)
- if you don't use AIS, consider getting a monthly sim card and enjoy free space
- if you don't have AIS and don't plan to get it, you can buy a drink and get 2h free internet (2 cappuchinos are 150 THB and get you 6h of free internet) OR you can also connect to your mobile internet)", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/266018605", + "date": "October 30, 2019", + "time": "3:00PM" + }, + { + "title": "Free code camp in Thailand", + "shortDescription": null, + "venue": { + "city": "Amphoe Mueang Chiang Mai", + "country": "th" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/7/e/1/highres_484418881.jpeg" + } + ], + "duration": "PT6H", + "photoAlbum": null, + "desc": "OCT 25 - NOV 24 2019
Details and tips: https://hackmd.io/oZ_RERTrTp2hBypEZ6E2tQ

SCHEDULE:
- we meet every day from around 2pm until 8pm in C.A.M.P. Library Cafe in Maya (Nimman)
- 2x a week we'll try to organize some lessons/lightning talks (depending on when mentors are available, will announce it)

COMMUNICATION:
- for communication we use Telegram and/or Gitter chat https://t.me/joinchat/CgTftxVXA-NuDYvJqgsJig
https://gitter.im/wizardamigosinstitute/program

HOW DOES IT WORK:
- learner/attendee should pick the topic of their interest and we'll try hard to help you find good learning resources and support you with your learning efforts. Everyone, including you can ask questions and try to answer questions of others on our gitter community chat.
- attendees make their own plan on what they want to learn/work on projects/meet with to collaborate on projects together

BENEFIT:
- you get a community of like minded people that also learn/work
- you get a time frame in which you can set yourself on a mission to learn something
- you can ask for help on a chat (people will be coming and going and as there is no strict structure, you should not depend on physically meet to be able to get started/continue with your work)
- @serapath (Alex) and @ninabreznik (Nina) will be here every day in approximately this time frame so we can help out, although we have work we need to do, so prepare for self directed learning

ABOUT:
- Wizard Amigos is a grass root community and operates with zero budget and on purely voluntary basis, so don't expect strict schedule
- everyone is welcome
- remote work demands a lot of self organization so this whole process also helps you learn how to gain that skill

ABSOLUTE BEGINNERS?
- if you are completely new to coding, don't worry, we have a list of resources to help you get started
- we recommend you: Javascript (for any kind of web development) or Solidity (if you are interested in Ethereum ecosystem and in building smart contracts)

C.A.M.P. Library Cafe (Maya mall, 5th floor)
- if you use AIS mobile internet, you can use the space for free (connect to AIS super wifi)
- if you don't use AIS, consider getting a monthly sim card and enjoy free space
- if you don't have AIS and don't plan to get it, you can buy a drink and get 2h free internet (2 cappuchinos are 150 THB and get you 6h of free internet) OR you can also connect to your mobile internet)", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/266045463", + "date": "October 31, 2019", + "time": "3:00PM" + }, + { + "title": "Free code camp in Thailand", + "shortDescription": null, + "venue": { + "city": "Amphoe Mueang Chiang Mai", + "country": "th" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/7/e/1/highres_484418881.jpeg" + } + ], + "duration": "PT6H", + "photoAlbum": null, + "desc": "OCT 25 - NOV 24 2019
Details and tips: https://hackmd.io/oZ_RERTrTp2hBypEZ6E2tQ

SCHEDULE:
- we meet every day from around 2pm until 8pm in C.A.M.P. Library Cafe in Maya (Nimman)
- 2x a week we'll try to organize some lessons/lightning talks (depending on when mentors are available, will announce it)

COMMUNICATION:
- for communication we use Telegram and/or Gitter chat https://t.me/joinchat/CgTftxVXA-NuDYvJqgsJig
https://gitter.im/wizardamigosinstitute/program

HOW DOES IT WORK:
- learner/attendee should pick the topic of their interest and we'll try hard to help you find good learning resources and support you with your learning efforts. Everyone, including you can ask questions and try to answer questions of others on our gitter community chat.
- attendees make their own plan on what they want to learn/work on projects/meet with to collaborate on projects together

BENEFIT:
- you get a community of like minded people that also learn/work
- you get a time frame in which you can set yourself on a mission to learn something
- you can ask for help on a chat (people will be coming and going and as there is no strict structure, you should not depend on physically meet to be able to get started/continue with your work)
- @serapath (Alex) and @ninabreznik (Nina) will be here every day in approximately this time frame so we can help out, although we have work we need to do, so prepare for self directed learning

ABOUT:
- Wizard Amigos is a grass root community and operates with zero budget and on purely voluntary basis, so don't expect strict schedule
- everyone is welcome
- remote work demands a lot of self organization so this whole process also helps you learn how to gain that skill

ABSOLUTE BEGINNERS?
- if you are completely new to coding, don't worry, we have a list of resources to help you get started
- we recommend you: Javascript (for any kind of web development) or Solidity (if you are interested in Ethereum ecosystem and in building smart contracts)

C.A.M.P. Library Cafe (Maya mall, 5th floor)
- if you use AIS mobile internet, you can use the space for free (connect to AIS super wifi)
- if you don't use AIS, consider getting a monthly sim card and enjoy free space
- if you don't have AIS and don't plan to get it, you can buy a drink and get 2h free internet (2 cappuchinos are 150 THB and get you 6h of free internet) OR you can also connect to your mobile internet)", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/266075482", + "date": "November 01, 2019", + "time": "3:00PM" + }, + { + "title": "Free code camp in Thailand", + "shortDescription": null, + "venue": { + "city": "Amphoe Mueang Chiang Mai", + "country": "th" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/7/e/1/highres_484418881.jpeg" + } + ], + "duration": "PT6H", + "photoAlbum": { + "photoCount": 1, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/a/2/b/highres_486459467.jpeg" + } + ] + }, + "desc": "OCT 25 - NOV 24 2019
Details and tips: https://hackmd.io/oZ_RERTrTp2hBypEZ6E2tQ

SCHEDULE:
- we meet every day from around 2pm until 8pm in C.A.M.P. Library Cafe in Maya (Nimman)
- 2x a week we'll try to organize some lessons/lightning talks (depending on when mentors are available, will announce it)

COMMUNICATION:
- for communication we use Telegram and/or Gitter chat https://t.me/joinchat/CgTftxVXA-NuDYvJqgsJig
https://gitter.im/wizardamigosinstitute/program

HOW DOES IT WORK:
- learner/attendee should pick the topic of their interest and we'll try hard to help you find good learning resources and support you with your learning efforts. Everyone, including you can ask questions and try to answer questions of others on our gitter community chat.
- attendees make their own plan on what they want to learn/work on projects/meet with to collaborate on projects together

BENEFIT:
- you get a community of like minded people that also learn/work
- you get a time frame in which you can set yourself on a mission to learn something
- you can ask for help on a chat (people will be coming and going and as there is no strict structure, you should not depend on physically meet to be able to get started/continue with your work)
- @serapath (Alex) and @ninabreznik (Nina) will be here every day in approximately this time frame so we can help out, although we have work we need to do, so prepare for self directed learning

ABOUT:
- Wizard Amigos is a grass root community and operates with zero budget and on purely voluntary basis, so don't expect strict schedule
- everyone is welcome
- remote work demands a lot of self organization so this whole process also helps you learn how to gain that skill

ABSOLUTE BEGINNERS?
- if you are completely new to coding, don't worry, we have a list of resources to help you get started
- we recommend you: Javascript (for any kind of web development) or Solidity (if you are interested in Ethereum ecosystem and in building smart contracts)

C.A.M.P. Library Cafe (Maya mall, 5th floor)
- if you use AIS mobile internet, you can use the space for free (connect to AIS super wifi)
- if you don't use AIS, consider getting a monthly sim card and enjoy free space
- if you don't have AIS and don't plan to get it, you can buy a drink and get 2h free internet (2 cappuchinos are 150 THB and get you 6h of free internet) OR you can also connect to your mobile internet)", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/265994527", + "date": "November 02, 2019", + "time": "3:00PM" + }, + { + "title": "Free code camp in Thailand", + "shortDescription": null, + "venue": { + "city": "Amphoe Mueang Chiang Mai", + "country": "th" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/7/e/1/highres_484418881.jpeg" + } + ], + "duration": "PT6H", + "photoAlbum": { + "photoCount": 2, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/a/1/2/highres_486459442.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/9/a/2/9/highres_486459465.jpeg" + } + ] + }, + "desc": "OCT 25 - NOV 24 2019
Details and tips: https://hackmd.io/oZ_RERTrTp2hBypEZ6E2tQ

SCHEDULE:
- we meet every day from around 2pm until 8pm in C.A.M.P. Library Cafe in Maya (Nimman)
- 2x a week we'll try to organize some lessons/lightning talks (depending on when mentors are available, will announce it)

COMMUNICATION:
- for communication we use Telegram and/or Gitter chat https://t.me/joinchat/CgTftxVXA-NuDYvJqgsJig
https://gitter.im/wizardamigosinstitute/program

HOW DOES IT WORK:
- learner/attendee should pick the topic of their interest and we'll try hard to help you find good learning resources and support you with your learning efforts. Everyone, including you can ask questions and try to answer questions of others on our gitter community chat.
- attendees make their own plan on what they want to learn/work on projects/meet with to collaborate on projects together

BENEFIT:
- you get a community of like minded people that also learn/work
- you get a time frame in which you can set yourself on a mission to learn something
- you can ask for help on a chat (people will be coming and going and as there is no strict structure, you should not depend on physically meet to be able to get started/continue with your work)
- @serapath (Alex) and @ninabreznik (Nina) will be here every day in approximately this time frame so we can help out, although we have work we need to do, so prepare for self directed learning

ABOUT:
- Wizard Amigos is a grass root community and operates with zero budget and on purely voluntary basis, so don't expect strict schedule
- everyone is welcome
- remote work demands a lot of self organization so this whole process also helps you learn how to gain that skill

ABSOLUTE BEGINNERS?
- if you are completely new to coding, don't worry, we have a list of resources to help you get started
- we recommend you: Javascript (for any kind of web development) or Solidity (if you are interested in Ethereum ecosystem and in building smart contracts)

C.A.M.P. Library Cafe (Maya mall, 5th floor)
- if you use AIS mobile internet, you can use the space for free (connect to AIS super wifi)
- if you don't use AIS, consider getting a monthly sim card and enjoy free space
- if you don't have AIS and don't plan to get it, you can buy a drink and get 2h free internet (2 cappuchinos are 150 THB and get you 6h of free internet) OR you can also connect to your mobile internet)", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/266018606", + "date": "November 03, 2019", + "time": "3:00PM" + }, + { + "title": "Free code camp in Thailand", + "shortDescription": null, + "venue": { + "city": "Amphoe Mueang Chiang Mai", + "country": "th" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/7/e/1/highres_484418881.jpeg" + } + ], + "duration": "PT6H", + "photoAlbum": { + "photoCount": 2, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/a/0/c/highres_486459436.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/9/a/0/e/highres_486459438.jpeg" + } + ] + }, + "desc": "OCT 25 - NOV 24 2019
Details and tips: https://hackmd.io/oZ_RERTrTp2hBypEZ6E2tQ

SCHEDULE:
- we meet every day from around 2pm until 8pm in C.A.M.P. Library Cafe in Maya (Nimman)
- 2x a week we'll try to organize some lessons/lightning talks (depending on when mentors are available, will announce it)

COMMUNICATION:
- for communication we use Telegram and/or Gitter chat https://t.me/joinchat/CgTftxVXA-NuDYvJqgsJig
https://gitter.im/wizardamigosinstitute/program

HOW DOES IT WORK:
- learner/attendee should pick the topic of their interest and we'll try hard to help you find good learning resources and support you with your learning efforts. Everyone, including you can ask questions and try to answer questions of others on our gitter community chat.
- attendees make their own plan on what they want to learn/work on projects/meet with to collaborate on projects together

BENEFIT:
- you get a community of like minded people that also learn/work
- you get a time frame in which you can set yourself on a mission to learn something
- you can ask for help on a chat (people will be coming and going and as there is no strict structure, you should not depend on physically meet to be able to get started/continue with your work)
- @serapath (Alex) and @ninabreznik (Nina) will be here every day in approximately this time frame so we can help out, although we have work we need to do, so prepare for self directed learning

ABOUT:
- Wizard Amigos is a grass root community and operates with zero budget and on purely voluntary basis, so don't expect strict schedule
- everyone is welcome
- remote work demands a lot of self organization so this whole process also helps you learn how to gain that skill

ABSOLUTE BEGINNERS?
- if you are completely new to coding, don't worry, we have a list of resources to help you get started
- we recommend you: Javascript (for any kind of web development) or Solidity (if you are interested in Ethereum ecosystem and in building smart contracts)

C.A.M.P. Library Cafe (Maya mall, 5th floor)
- if you use AIS mobile internet, you can use the space for free (connect to AIS super wifi)
- if you don't use AIS, consider getting a monthly sim card and enjoy free space
- if you don't have AIS and don't plan to get it, you can buy a drink and get 2h free internet (2 cappuchinos are 150 THB and get you 6h of free internet) OR you can also connect to your mobile internet)", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/265894831", + "date": "November 04, 2019", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 9, + "link": "https://www.meetup.com/wizardamigos/events/266046996", + "date": "November 05, 2019", + "time": "2:00PM" + }, + { + "title": "Free code camp in Thailand", + "shortDescription": null, + "venue": { + "city": "Amphoe Mueang Chiang Mai", + "country": "th" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/7/e/1/highres_484418881.jpeg" + } + ], + "duration": "PT6H", + "photoAlbum": { + "photoCount": 4, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/8/highres_486459416.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/d/highres_486459421.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/9/a/0/1/highres_486459425.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/9/a/0/7/highres_486459431.jpeg" + } + ] + }, + "desc": "OCT 25 - NOV 24 2019
Details and tips: https://hackmd.io/oZ_RERTrTp2hBypEZ6E2tQ

SCHEDULE:
- we meet every day from around 2pm until 8pm in C.A.M.P. Library Cafe in Maya (Nimman)
- 2x a week we'll try to organize some lessons/lightning talks (depending on when mentors are available, will announce it)

COMMUNICATION:
- for communication we use Telegram and/or Gitter chat https://t.me/joinchat/CgTftxVXA-NuDYvJqgsJig
https://gitter.im/wizardamigosinstitute/program

HOW DOES IT WORK:
- learner/attendee should pick the topic of their interest and we'll try hard to help you find good learning resources and support you with your learning efforts. Everyone, including you can ask questions and try to answer questions of others on our gitter community chat.
- attendees make their own plan on what they want to learn/work on projects/meet with to collaborate on projects together

BENEFIT:
- you get a community of like minded people that also learn/work
- you get a time frame in which you can set yourself on a mission to learn something
- you can ask for help on a chat (people will be coming and going and as there is no strict structure, you should not depend on physically meet to be able to get started/continue with your work)
- @serapath (Alex) and @ninabreznik (Nina) will be here every day in approximately this time frame so we can help out, although we have work we need to do, so prepare for self directed learning

ABOUT:
- Wizard Amigos is a grass root community and operates with zero budget and on purely voluntary basis, so don't expect strict schedule
- everyone is welcome
- remote work demands a lot of self organization so this whole process also helps you learn how to gain that skill

ABSOLUTE BEGINNERS?
- if you are completely new to coding, don't worry, we have a list of resources to help you get started
- we recommend you: Javascript (for any kind of web development) or Solidity (if you are interested in Ethereum ecosystem and in building smart contracts)

C.A.M.P. Library Cafe (Maya mall, 5th floor)
- if you use AIS mobile internet, you can use the space for free (connect to AIS super wifi)
- if you don't use AIS, consider getting a monthly sim card and enjoy free space
- if you don't have AIS and don't plan to get it, you can buy a drink and get 2h free internet (2 cappuchinos are 150 THB and get you 6h of free internet) OR you can also connect to your mobile internet)", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/265894835", + "date": "November 05, 2019", + "time": "3:00PM" + }, + { + "title": "Free code camp in Thailand", + "shortDescription": null, + "venue": { + "city": "Amphoe Mueang Chiang Mai", + "country": "th" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/7/e/1/highres_484418881.jpeg" + } + ], + "duration": "PT6H", + "photoAlbum": { + "photoCount": 2, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/e/3/highres_486459395.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/e/9/highres_486459401.jpeg" + } + ] + }, + "desc": "OCT 25 - NOV 24 2019
Details and tips: https://hackmd.io/oZ_RERTrTp2hBypEZ6E2tQ

SCHEDULE:
- we meet every day from around 2pm until 8pm in C.A.M.P. Library Cafe in Maya (Nimman)
- 2x a week we'll try to organize some lessons/lightning talks (depending on when mentors are available, will announce it)

COMMUNICATION:
- for communication we use Telegram and/or Gitter chat https://t.me/joinchat/CgTftxVXA-NuDYvJqgsJig
https://gitter.im/wizardamigosinstitute/program

HOW DOES IT WORK:
- learner/attendee should pick the topic of their interest and we'll try hard to help you find good learning resources and support you with your learning efforts. Everyone, including you can ask questions and try to answer questions of others on our gitter community chat.
- attendees make their own plan on what they want to learn/work on projects/meet with to collaborate on projects together

BENEFIT:
- you get a community of like minded people that also learn/work
- you get a time frame in which you can set yourself on a mission to learn something
- you can ask for help on a chat (people will be coming and going and as there is no strict structure, you should not depend on physically meet to be able to get started/continue with your work)
- @serapath (Alex) and @ninabreznik (Nina) will be here every day in approximately this time frame so we can help out, although we have work we need to do, so prepare for self directed learning

ABOUT:
- Wizard Amigos is a grass root community and operates with zero budget and on purely voluntary basis, so don't expect strict schedule
- everyone is welcome
- remote work demands a lot of self organization so this whole process also helps you learn how to gain that skill

ABSOLUTE BEGINNERS?
- if you are completely new to coding, don't worry, we have a list of resources to help you get started
- we recommend you: Javascript (for any kind of web development) or Solidity (if you are interested in Ethereum ecosystem and in building smart contracts)

C.A.M.P. Library Cafe (Maya mall, 5th floor)
- if you use AIS mobile internet, you can use the space for free (connect to AIS super wifi)
- if you don't use AIS, consider getting a monthly sim card and enjoy free space
- if you don't have AIS and don't plan to get it, you can buy a drink and get 2h free internet (2 cappuchinos are 150 THB and get you 6h of free internet) OR you can also connect to your mobile internet)", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/265894839", + "date": "November 06, 2019", + "time": "3:00PM" + }, + { + "title": "Free code camp in Thailand", + "shortDescription": null, + "venue": { + "city": "Amphoe Mueang Chiang Mai", + "country": "th" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/7/e/1/highres_484418881.jpeg" + } + ], + "duration": "PT6H", + "photoAlbum": { + "photoCount": 37, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/3/e/highres_486459230.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/4/0/highres_486459232.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/4/9/highres_486459241.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/5/0/highres_486459248.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/5/4/highres_486459252.jpeg" + } + ] + }, + "desc": "LIGHTNING TALKS: 2pm -5pm

2.00 - 2.30 Meeting in Camp & Welcome

2.30 - 3.00 Alex: Future of work

3.00 - 3.30 Fred: Encryption history and Blockchain concepts - a review

3.30 - 4.00 Berndt: Building supply chain for precious metals

4.00 - 4.30 Griff: Realigning Incentives around Open Source and Public Goods

4.30 - 5.00 Martin R.: Entrepreneurship for Nerds & Project: How make bus rides in Taipei safer with the help of public APIs

HACKING TIME/DISCUSSIONS/GROUP WORK: 5pm - 8pm

About the speakers:

Martin R.: Project Manager in Telecom Software Solutions industry from Germany. 2010-2017 Philippines. 2017-2019 MBA Student in Taiwan.

Alex: open source dev, currently working with the Ethereum Foundation on play.ethereum.org project

Fred: PM at Otonomos, Bitcoin maximalist / technologist. Prior work on hardware wallets, compliance and protocol design.

Griff: Founder at Giveth, Commons Stack, White Hat Group, DAppNode, iden3 and Community Manager for Slock.it & TheDAO

Berndt: Swiss based developer with years of experiences working in the IT/finance sector. Sharing his experience with the new project he is involved in as a CTO. His team is also hiring!

---

Future sessions (live document)
https://hackmd.io/ygtDXOIJQSmRqlp8mIW3mg", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/265894841", + "date": "November 07, 2019", + "time": "3:00PM" + }, + { + "title": "Free code camp in Thailand", + "shortDescription": null, + "venue": { + "city": "Amphoe Mueang Chiang Mai", + "country": "th" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/7/e/1/highres_484418881.jpeg" + } + ], + "duration": "PT6H", + "photoAlbum": null, + "desc": "OCT 25 - NOV 24 2019
Details and tips: https://hackmd.io/oZ_RERTrTp2hBypEZ6E2tQ

SCHEDULE:
- we meet every day from around 2pm until 8pm in C.A.M.P. Library Cafe in Maya (Nimman)
- 2x a week we'll try to organize some lessons/lightning talks (depending on when mentors are available, will announce it)

COMMUNICATION:
- for communication we use Telegram and/or Gitter chat https://t.me/joinchat/CgTftxVXA-NuDYvJqgsJig
https://gitter.im/wizardamigosinstitute/program

HOW DOES IT WORK:
- learner/attendee should pick the topic of their interest and we'll try hard to help you find good learning resources and support you with your learning efforts. Everyone, including you can ask questions and try to answer questions of others on our gitter community chat.
- attendees make their own plan on what they want to learn/work on projects/meet with to collaborate on projects together

BENEFIT:
- you get a community of like minded people that also learn/work
- you get a time frame in which you can set yourself on a mission to learn something
- you can ask for help on a chat (people will be coming and going and as there is no strict structure, you should not depend on physically meet to be able to get started/continue with your work)
- @serapath (Alex) and @ninabreznik (Nina) will be here every day in approximately this time frame so we can help out, although we have work we need to do, so prepare for self directed learning

ABOUT:
- Wizard Amigos is a grass root community and operates with zero budget and on purely voluntary basis, so don't expect strict schedule
- everyone is welcome
- remote work demands a lot of self organization so this whole process also helps you learn how to gain that skill

ABSOLUTE BEGINNERS?
- if you are completely new to coding, don't worry, we have a list of resources to help you get started
- we recommend you: Javascript (for any kind of web development) or Solidity (if you are interested in Ethereum ecosystem and in building smart contracts)

C.A.M.P. Library Cafe (Maya mall, 5th floor)
- if you use AIS mobile internet, you can use the space for free (connect to AIS super wifi)
- if you don't use AIS, consider getting a monthly sim card and enjoy free space
- if you don't have AIS and don't plan to get it, you can buy a drink and get 2h free internet (2 cappuchinos are 150 THB and get you 6h of free internet) OR you can also connect to your mobile internet)", + "participants": 7, + "link": "https://www.meetup.com/wizardamigos/events/265894844", + "date": "November 08, 2019", + "time": "3:00PM" + }, + { + "title": "Free code camp in Thailand", + "shortDescription": null, + "venue": { + "city": "Amphoe Mueang Chiang Mai", + "country": "th" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/7/e/1/highres_484418881.jpeg" + } + ], + "duration": "PT6H", + "photoAlbum": null, + "desc": "OCT 25 - NOV 24 2019
Details and tips: https://hackmd.io/oZ_RERTrTp2hBypEZ6E2tQ

SCHEDULE:
- we meet every day from around 2pm until 8pm in C.A.M.P. Library Cafe in Maya (Nimman)
- 2x a week we'll try to organize some lessons/lightning talks (depending on when mentors are available, will announce it)

COMMUNICATION:
- for communication we use Telegram and/or Gitter chat https://t.me/joinchat/CgTftxVXA-NuDYvJqgsJig
https://gitter.im/wizardamigosinstitute/program

HOW DOES IT WORK:
- learner/attendee should pick the topic of their interest and we'll try hard to help you find good learning resources and support you with your learning efforts. Everyone, including you can ask questions and try to answer questions of others on our gitter community chat.
- attendees make their own plan on what they want to learn/work on projects/meet with to collaborate on projects together

BENEFIT:
- you get a community of like minded people that also learn/work
- you get a time frame in which you can set yourself on a mission to learn something
- you can ask for help on a chat (people will be coming and going and as there is no strict structure, you should not depend on physically meet to be able to get started/continue with your work)
- @serapath (Alex) and @ninabreznik (Nina) will be here every day in approximately this time frame so we can help out, although we have work we need to do, so prepare for self directed learning

ABOUT:
- Wizard Amigos is a grass root community and operates with zero budget and on purely voluntary basis, so don't expect strict schedule
- everyone is welcome
- remote work demands a lot of self organization so this whole process also helps you learn how to gain that skill

ABSOLUTE BEGINNERS?
- if you are completely new to coding, don't worry, we have a list of resources to help you get started
- we recommend you: Javascript (for any kind of web development) or Solidity (if you are interested in Ethereum ecosystem and in building smart contracts)

C.A.M.P. Library Cafe (Maya mall, 5th floor)
- if you use AIS mobile internet, you can use the space for free (connect to AIS super wifi)
- if you don't use AIS, consider getting a monthly sim card and enjoy free space
- if you don't have AIS and don't plan to get it, you can buy a drink and get 2h free internet (2 cappuchinos are 150 THB and get you 6h of free internet) OR you can also connect to your mobile internet)", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/266180100", + "date": "November 09, 2019", + "time": "3:00PM" + }, + { + "title": "Free code camp in Thailand", + "shortDescription": null, + "venue": { + "city": "Amphoe Mueang Chiang Mai", + "country": "th" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/7/e/1/highres_484418881.jpeg" + } + ], + "duration": "PT6H", + "photoAlbum": null, + "desc": "OCT 25 - NOV 24 2019
Details and tips: https://hackmd.io/oZ_RERTrTp2hBypEZ6E2tQ

SCHEDULE:
- we meet every day from around 2pm until 8pm in C.A.M.P. Library Cafe in Maya (Nimman)
- 2x a week we'll try to organize some lessons/lightning talks (depending on when mentors are available, will announce it)

COMMUNICATION:
- for communication we use Telegram and/or Gitter chat https://t.me/joinchat/CgTftxVXA-NuDYvJqgsJig
https://gitter.im/wizardamigosinstitute/program

HOW DOES IT WORK:
- learner/attendee should pick the topic of their interest and we'll try hard to help you find good learning resources and support you with your learning efforts. Everyone, including you can ask questions and try to answer questions of others on our gitter community chat.
- attendees make their own plan on what they want to learn/work on projects/meet with to collaborate on projects together

BENEFIT:
- you get a community of like minded people that also learn/work
- you get a time frame in which you can set yourself on a mission to learn something
- you can ask for help on a chat (people will be coming and going and as there is no strict structure, you should not depend on physically meet to be able to get started/continue with your work)
- @serapath (Alex) and @ninabreznik (Nina) will be here every day in approximately this time frame so we can help out, although we have work we need to do, so prepare for self directed learning

ABOUT:
- Wizard Amigos is a grass root community and operates with zero budget and on purely voluntary basis, so don't expect strict schedule
- everyone is welcome
- remote work demands a lot of self organization so this whole process also helps you learn how to gain that skill

ABSOLUTE BEGINNERS?
- if you are completely new to coding, don't worry, we have a list of resources to help you get started
- we recommend you: Javascript (for any kind of web development) or Solidity (if you are interested in Ethereum ecosystem and in building smart contracts)

C.A.M.P. Library Cafe (Maya mall, 5th floor)
- if you use AIS mobile internet, you can use the space for free (connect to AIS super wifi)
- if you don't use AIS, consider getting a monthly sim card and enjoy free space
- if you don't have AIS and don't plan to get it, you can buy a drink and get 2h free internet (2 cappuchinos are 150 THB and get you 6h of free internet) OR you can also connect to your mobile internet)", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/266159241", + "date": "November 10, 2019", + "time": "3:00PM" + }, + { + "title": "Free code camp in Thailand", + "shortDescription": null, + "venue": { + "city": "Amphoe Mueang Chiang Mai", + "country": "th" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/7/e/1/highres_484418881.jpeg" + } + ], + "duration": "PT6H", + "photoAlbum": null, + "desc": "OCT 25 - NOV 24 2019
Details and tips: https://hackmd.io/oZ_RERTrTp2hBypEZ6E2tQ

SCHEDULE:
- we meet every day from around 2pm until 8pm in C.A.M.P. Library Cafe in Maya (Nimman)
- 2x a week we'll try to organize some lessons/lightning talks (depending on when mentors are available, will announce it)

COMMUNICATION:
- for communication we use Telegram and/or Gitter chat https://t.me/joinchat/CgTftxVXA-NuDYvJqgsJig
https://gitter.im/wizardamigosinstitute/program

HOW DOES IT WORK:
- learner/attendee should pick the topic of their interest and we'll try hard to help you find good learning resources and support you with your learning efforts. Everyone, including you can ask questions and try to answer questions of others on our gitter community chat.
- attendees make their own plan on what they want to learn/work on projects/meet with to collaborate on projects together

BENEFIT:
- you get a community of like minded people that also learn/work
- you get a time frame in which you can set yourself on a mission to learn something
- you can ask for help on a chat (people will be coming and going and as there is no strict structure, you should not depend on physically meet to be able to get started/continue with your work)
- @serapath (Alex) and @ninabreznik (Nina) will be here every day in approximately this time frame so we can help out, although we have work we need to do, so prepare for self directed learning

ABOUT:
- Wizard Amigos is a grass root community and operates with zero budget and on purely voluntary basis, so don't expect strict schedule
- everyone is welcome
- remote work demands a lot of self organization so this whole process also helps you learn how to gain that skill

ABSOLUTE BEGINNERS?
- if you are completely new to coding, don't worry, we have a list of resources to help you get started
- we recommend you: Javascript (for any kind of web development) or Solidity (if you are interested in Ethereum ecosystem and in building smart contracts)

C.A.M.P. Library Cafe (Maya mall, 5th floor)
- if you use AIS mobile internet, you can use the space for free (connect to AIS super wifi)
- if you don't use AIS, consider getting a monthly sim card and enjoy free space
- if you don't have AIS and don't plan to get it, you can buy a drink and get 2h free internet (2 cappuchinos are 150 THB and get you 6h of free internet) OR you can also connect to your mobile internet)", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/266194954", + "date": "November 11, 2019", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Zhongzheng District", + "country": "tw" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to join us:

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm - 9:30pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum", + "participants": 11, + "link": "https://www.meetup.com/wizardamigos/events/266012964", + "date": "November 11, 2019", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Zhongzheng District", + "country": "tw" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to join us:

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm - 9:30pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/266381931", + "date": "November 11, 2019", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Zhongzheng District", + "country": "tw" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to join us:

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm - 9:30pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/266389582", + "date": "November 11, 2019", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Zhongzheng District", + "country": "tw" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to join us:

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (8:00pm ~ 10:00pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/266177679", + "date": "November 11, 2019", + "time": "9:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 12, + "link": "https://www.meetup.com/wizardamigos/events/266156513", + "date": "November 12, 2019", + "time": "2:00PM" + }, + { + "title": "Free code camp in Thailand", + "shortDescription": null, + "venue": { + "city": "Amphoe Mueang Chiang Mai", + "country": "th" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/7/e/1/highres_484418881.jpeg" + } + ], + "duration": "PT6H", + "photoAlbum": null, + "desc": "OCT 25 - NOV 24 2019
Details and tips: https://hackmd.io/oZ_RERTrTp2hBypEZ6E2tQ

SCHEDULE:
- we meet every day from around 2pm until 8pm in C.A.M.P. Library Cafe in Maya (Nimman)
- 2x a week we'll try to organize some lessons/lightning talks (depending on when mentors are available, will announce it)

COMMUNICATION:
- for communication we use Telegram and/or Gitter chat https://t.me/joinchat/CgTftxVXA-NuDYvJqgsJig
https://gitter.im/wizardamigosinstitute/program

HOW DOES IT WORK:
- learner/attendee should pick the topic of their interest and we'll try hard to help you find good learning resources and support you with your learning efforts. Everyone, including you can ask questions and try to answer questions of others on our gitter community chat.
- attendees make their own plan on what they want to learn/work on projects/meet with to collaborate on projects together

BENEFIT:
- you get a community of like minded people that also learn/work
- you get a time frame in which you can set yourself on a mission to learn something
- you can ask for help on a chat (people will be coming and going and as there is no strict structure, you should not depend on physically meet to be able to get started/continue with your work)
- @serapath (Alex) and @ninabreznik (Nina) will be here every day in approximately this time frame so we can help out, although we have work we need to do, so prepare for self directed learning

ABOUT:
- Wizard Amigos is a grass root community and operates with zero budget and on purely voluntary basis, so don't expect strict schedule
- everyone is welcome
- remote work demands a lot of self organization so this whole process also helps you learn how to gain that skill

ABSOLUTE BEGINNERS?
- if you are completely new to coding, don't worry, we have a list of resources to help you get started
- we recommend you: Javascript (for any kind of web development) or Solidity (if you are interested in Ethereum ecosystem and in building smart contracts)

C.A.M.P. Library Cafe (Maya mall, 5th floor)
- if you use AIS mobile internet, you can use the space for free (connect to AIS super wifi)
- if you don't use AIS, consider getting a monthly sim card and enjoy free space
- if you don't have AIS and don't plan to get it, you can buy a drink and get 2h free internet (2 cappuchinos are 150 THB and get you 6h of free internet) OR you can also connect to your mobile internet)", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/266194962", + "date": "November 12, 2019", + "time": "3:00PM" + }, + { + "title": "Free code camp in Thailand", + "shortDescription": null, + "venue": { + "city": "Amphoe Mueang Chiang Mai", + "country": "th" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/7/e/1/highres_484418881.jpeg" + } + ], + "duration": "PT6H", + "photoAlbum": null, + "desc": "OCT 25 - NOV 24 2019
Details and tips: https://hackmd.io/oZ_RERTrTp2hBypEZ6E2tQ

SCHEDULE:
- we meet every day from around 2pm until 8pm in C.A.M.P. Library Cafe in Maya (Nimman)
- 2x a week we'll try to organize some lessons/lightning talks (depending on when mentors are available, will announce it)

COMMUNICATION:
- for communication we use Telegram and/or Gitter chat https://t.me/joinchat/CgTftxVXA-NuDYvJqgsJig
https://gitter.im/wizardamigosinstitute/program

HOW DOES IT WORK:
- learner/attendee should pick the topic of their interest and we'll try hard to help you find good learning resources and support you with your learning efforts. Everyone, including you can ask questions and try to answer questions of others on our gitter community chat.
- attendees make their own plan on what they want to learn/work on projects/meet with to collaborate on projects together

BENEFIT:
- you get a community of like minded people that also learn/work
- you get a time frame in which you can set yourself on a mission to learn something
- you can ask for help on a chat (people will be coming and going and as there is no strict structure, you should not depend on physically meet to be able to get started/continue with your work)
- @serapath (Alex) and @ninabreznik (Nina) will be here every day in approximately this time frame so we can help out, although we have work we need to do, so prepare for self directed learning

ABOUT:
- Wizard Amigos is a grass root community and operates with zero budget and on purely voluntary basis, so don't expect strict schedule
- everyone is welcome
- remote work demands a lot of self organization so this whole process also helps you learn how to gain that skill

ABSOLUTE BEGINNERS?
- if you are completely new to coding, don't worry, we have a list of resources to help you get started
- we recommend you: Javascript (for any kind of web development) or Solidity (if you are interested in Ethereum ecosystem and in building smart contracts)

C.A.M.P. Library Cafe (Maya mall, 5th floor)
- if you use AIS mobile internet, you can use the space for free (connect to AIS super wifi)
- if you don't use AIS, consider getting a monthly sim card and enjoy free space
- if you don't have AIS and don't plan to get it, you can buy a drink and get 2h free internet (2 cappuchinos are 150 THB and get you 6h of free internet) OR you can also connect to your mobile internet)", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/266194965", + "date": "November 13, 2019", + "time": "3:00PM" + }, + { + "title": "Talks & workshops - special session!!!", + "shortDescription": null, + "venue": { + "city": "Amphoe Mueang Chiang Mai", + "country": "th" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/7/e/1/highres_484418881.jpeg" + } + ], + "duration": "PT6H", + "photoAlbum": null, + "desc": "SESSION 2 (location is kindly sponsored by Punspace and ChiangMai&Co. Thank you <3)

When: Nov 14th (Thursday)

Where: Punspace Wiang Kaew

Time: 2pm - 8pm

SCHEDULE
LIGHTNING TALKS: 2pm -6pm

2.00 - 2.30 Nina & Alex: Wizard Amigos introduction
2.30 - 3.00 Nora: CoolBitX, TokenSwap on 0x protocol.
3.00 - 3.30 Anton: CoolWalletS sdk hands-on workshop
3.30 - 4.00 Nina & Alex - Play editor & Solidity smart contracts
4.30 - 5.00 Nina & Alex - Play editor & Solidity smart contracts
5.00 - 5.30 Nina & Alex - Play editor & Solidity smart contracts
5.30 - 6.00 ?? Want to share a talk, get in touch

HACKING TIME/DISCUSSIONS/GROUP WORK: 6pm - 8pm

About the speakers:

Nora: Organizer of Wizard Amigos taipei for 2+ years/Full stack developer at Coolbitx

Anton: Full stack developer at Coolbitx

Nina: co-founder of Wizard Amigos, open source dev, currently working with the Ethereum Foundation on play.ethereum.org project

Alex: co-founder of Wizard Amigos, open source dev, currently working with the Ethereum Foundation on play.ethereum.org project

---

QUESTIONS: Join our Telegram chat https://t.me/joinchat/CgTftxVXA-NuDYvJqgsJig", + "participants": 9, + "link": "https://www.meetup.com/wizardamigos/events/266194967", + "date": "November 14, 2019", + "time": "3:00PM" + }, + { + "title": "Free code camp in Thailand", + "shortDescription": null, + "venue": { + "city": "Amphoe Mueang Chiang Mai", + "country": "th" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/7/e/1/highres_484418881.jpeg" + } + ], + "duration": "PT6H", + "photoAlbum": null, + "desc": "OCT 25 - NOV 24 2019
Details and tips: https://hackmd.io/oZ_RERTrTp2hBypEZ6E2tQ

SCHEDULE:
- we meet every day from around 2pm until 8pm in C.A.M.P. Library Cafe in Maya (Nimman)
- 2x a week we'll try to organize some lessons/lightning talks (depending on when mentors are available, will announce it)

COMMUNICATION:
- for communication we use Telegram and/or Gitter chat https://t.me/joinchat/CgTftxVXA-NuDYvJqgsJig
https://gitter.im/wizardamigosinstitute/program

HOW DOES IT WORK:
- learner/attendee should pick the topic of their interest and we'll try hard to help you find good learning resources and support you with your learning efforts. Everyone, including you can ask questions and try to answer questions of others on our gitter community chat.
- attendees make their own plan on what they want to learn/work on projects/meet with to collaborate on projects together

BENEFIT:
- you get a community of like minded people that also learn/work
- you get a time frame in which you can set yourself on a mission to learn something
- you can ask for help on a chat (people will be coming and going and as there is no strict structure, you should not depend on physically meet to be able to get started/continue with your work)
- @serapath (Alex) and @ninabreznik (Nina) will be here every day in approximately this time frame so we can help out, although we have work we need to do, so prepare for self directed learning

ABOUT:
- Wizard Amigos is a grass root community and operates with zero budget and on purely voluntary basis, so don't expect strict schedule
- everyone is welcome
- remote work demands a lot of self organization so this whole process also helps you learn how to gain that skill

ABSOLUTE BEGINNERS?
- if you are completely new to coding, don't worry, we have a list of resources to help you get started
- we recommend you: Javascript (for any kind of web development) or Solidity (if you are interested in Ethereum ecosystem and in building smart contracts)

C.A.M.P. Library Cafe (Maya mall, 5th floor)
- if you use AIS mobile internet, you can use the space for free (connect to AIS super wifi)
- if you don't use AIS, consider getting a monthly sim card and enjoy free space
- if you don't have AIS and don't plan to get it, you can buy a drink and get 2h free internet (2 cappuchinos are 150 THB and get you 6h of free internet) OR you can also connect to your mobile internet)", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/266194971", + "date": "November 15, 2019", + "time": "3:00PM" + }, + { + "title": "Free code camp in Thailand", + "shortDescription": null, + "venue": { + "city": "Amphoe Mueang Chiang Mai", + "country": "th" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/7/e/1/highres_484418881.jpeg" + } + ], + "duration": "PT6H", + "photoAlbum": null, + "desc": "OCT 25 - NOV 24 2019
Details and tips: https://hackmd.io/oZ_RERTrTp2hBypEZ6E2tQ

SCHEDULE:
- we meet every day from around 2pm until 8pm in C.A.M.P. Library Cafe in Maya (Nimman)
- 2x a week we'll try to organize some lessons/lightning talks (depending on when mentors are available, will announce it)

COMMUNICATION:
- for communication we use Telegram and/or Gitter chat https://t.me/joinchat/CgTftxVXA-NuDYvJqgsJig
https://gitter.im/wizardamigosinstitute/program

HOW DOES IT WORK:
- learner/attendee should pick the topic of their interest and we'll try hard to help you find good learning resources and support you with your learning efforts. Everyone, including you can ask questions and try to answer questions of others on our gitter community chat.
- attendees make their own plan on what they want to learn/work on projects/meet with to collaborate on projects together

BENEFIT:
- you get a community of like minded people that also learn/work
- you get a time frame in which you can set yourself on a mission to learn something
- you can ask for help on a chat (people will be coming and going and as there is no strict structure, you should not depend on physically meet to be able to get started/continue with your work)
- @serapath (Alex) and @ninabreznik (Nina) will be here every day in approximately this time frame so we can help out, although we have work we need to do, so prepare for self directed learning

ABOUT:
- Wizard Amigos is a grass root community and operates with zero budget and on purely voluntary basis, so don't expect strict schedule
- everyone is welcome
- remote work demands a lot of self organization so this whole process also helps you learn how to gain that skill

ABSOLUTE BEGINNERS?
- if you are completely new to coding, don't worry, we have a list of resources to help you get started
- we recommend you: Javascript (for any kind of web development) or Solidity (if you are interested in Ethereum ecosystem and in building smart contracts)

C.A.M.P. Library Cafe (Maya mall, 5th floor)
- if you use AIS mobile internet, you can use the space for free (connect to AIS super wifi)
- if you don't use AIS, consider getting a monthly sim card and enjoy free space
- if you don't have AIS and don't plan to get it, you can buy a drink and get 2h free internet (2 cappuchinos are 150 THB and get you 6h of free internet) OR you can also connect to your mobile internet)", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/266194975", + "date": "November 16, 2019", + "time": "3:00PM" + }, + { + "title": "Free code camp in Thailand", + "shortDescription": null, + "venue": { + "city": "Amphoe Mueang Chiang Mai", + "country": "th" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/7/e/1/highres_484418881.jpeg" + } + ], + "duration": "PT6H", + "photoAlbum": null, + "desc": "OCT 25 - NOV 24 2019
Details and tips: https://hackmd.io/oZ_RERTrTp2hBypEZ6E2tQ

SCHEDULE:
- we meet every day from around 2pm until 8pm in C.A.M.P. Library Cafe in Maya (Nimman)
- 2x a week we'll try to organize some lessons/lightning talks (depending on when mentors are available, will announce it)

COMMUNICATION:
- for communication we use Telegram and/or Gitter chat https://t.me/joinchat/CgTftxVXA-NuDYvJqgsJig
https://gitter.im/wizardamigosinstitute/program

HOW DOES IT WORK:
- learner/attendee should pick the topic of their interest and we'll try hard to help you find good learning resources and support you with your learning efforts. Everyone, including you can ask questions and try to answer questions of others on our gitter community chat.
- attendees make their own plan on what they want to learn/work on projects/meet with to collaborate on projects together

BENEFIT:
- you get a community of like minded people that also learn/work
- you get a time frame in which you can set yourself on a mission to learn something
- you can ask for help on a chat (people will be coming and going and as there is no strict structure, you should not depend on physically meet to be able to get started/continue with your work)
- @serapath (Alex) and @ninabreznik (Nina) will be here every day in approximately this time frame so we can help out, although we have work we need to do, so prepare for self directed learning

ABOUT:
- Wizard Amigos is a grass root community and operates with zero budget and on purely voluntary basis, so don't expect strict schedule
- everyone is welcome
- remote work demands a lot of self organization so this whole process also helps you learn how to gain that skill

ABSOLUTE BEGINNERS?
- if you are completely new to coding, don't worry, we have a list of resources to help you get started
- we recommend you: Javascript (for any kind of web development) or Solidity (if you are interested in Ethereum ecosystem and in building smart contracts)

C.A.M.P. Library Cafe (Maya mall, 5th floor)
- if you use AIS mobile internet, you can use the space for free (connect to AIS super wifi)
- if you don't use AIS, consider getting a monthly sim card and enjoy free space
- if you don't have AIS and don't plan to get it, you can buy a drink and get 2h free internet (2 cappuchinos are 150 THB and get you 6h of free internet) OR you can also connect to your mobile internet)", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/266194977", + "date": "November 17, 2019", + "time": "3:00PM" + }, + { + "title": "Lightning talks and workshops", + "shortDescription": null, + "venue": { + "city": "Amphoe Mueang Chiang Mai", + "country": "th" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/7/e/1/highres_484418881.jpeg" + } + ], + "duration": "PT6H", + "photoAlbum": { + "photoCount": 10, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/7/5/f/4/highres_486810196.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/7/5/f/7/highres_486810199.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/7/5/f/8/highres_486810200.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/7/5/f/a/highres_486810202.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/7/5/f/b/highres_486810203.jpeg" + } + ] + }, + "desc": "2.00 - 2.30 Nora: WizardAmigos Taipei
2.30 - 3.00 Megan: Cryptocurency accounting and automated bookeeping (remote) (waiting for confirmation)
3.00 - 3.30 Jeff & Griff: Token Bonding Curves & Commons Stack
3.30 - 4.00 Jeff & Griff: Token Bonding Curves & Commons Stack
4.00 - 4.30 Dave: Tokin' on token (remote)
4.30 - 5.00 BokkyPooBah: Creating a VR space state server with ERC721 tokens (remote) or James: Alpha wallet
5.00 - 5.30 Alin: How to build a remote work culture", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/266159172", + "date": "November 18, 2019", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/266435423", + "date": "November 19, 2019", + "time": "2:00PM" + }, + { + "title": "Free code camp in Thailand", + "shortDescription": null, + "venue": { + "city": "Amphoe Mueang Chiang Mai", + "country": "th" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/7/e/1/highres_484418881.jpeg" + } + ], + "duration": "PT6H", + "photoAlbum": null, + "desc": "OCT 25 - NOV 24 2019
Details and tips: https://hackmd.io/oZ_RERTrTp2hBypEZ6E2tQ

SCHEDULE:
- we meet every day from around 2pm until 8pm in C.A.M.P. Library Cafe in Maya (Nimman)
- 2x a week we'll try to organize some lessons/lightning talks (depending on when mentors are available, will announce it)

COMMUNICATION:
- for communication we use Telegram and/or Gitter chat https://t.me/joinchat/CgTftxVXA-NuDYvJqgsJig
https://gitter.im/wizardamigosinstitute/program

HOW DOES IT WORK:
- learner/attendee should pick the topic of their interest and we'll try hard to help you find good learning resources and support you with your learning efforts. Everyone, including you can ask questions and try to answer questions of others on our gitter community chat.
- attendees make their own plan on what they want to learn/work on projects/meet with to collaborate on projects together

BENEFIT:
- you get a community of like minded people that also learn/work
- you get a time frame in which you can set yourself on a mission to learn something
- you can ask for help on a chat (people will be coming and going and as there is no strict structure, you should not depend on physically meet to be able to get started/continue with your work)
- @serapath (Alex) and @ninabreznik (Nina) will be here every day in approximately this time frame so we can help out, although we have work we need to do, so prepare for self directed learning

ABOUT:
- Wizard Amigos is a grass root community and operates with zero budget and on purely voluntary basis, so don't expect strict schedule
- everyone is welcome
- remote work demands a lot of self organization so this whole process also helps you learn how to gain that skill

ABSOLUTE BEGINNERS?
- if you are completely new to coding, don't worry, we have a list of resources to help you get started
- we recommend you: Javascript (for any kind of web development) or Solidity (if you are interested in Ethereum ecosystem and in building smart contracts)

C.A.M.P. Library Cafe (Maya mall, 5th floor)
- if you use AIS mobile internet, you can use the space for free (connect to AIS super wifi)
- if you don't use AIS, consider getting a monthly sim card and enjoy free space
- if you don't have AIS and don't plan to get it, you can buy a drink and get 2h free internet (2 cappuchinos are 150 THB and get you 6h of free internet) OR you can also connect to your mobile internet)", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/266194989", + "date": "November 19, 2019", + "time": "3:00PM" + }, + { + "title": "Free code camp in Thailand", + "shortDescription": null, + "venue": { + "city": "Amphoe Mueang Chiang Mai", + "country": "th" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/7/e/1/highres_484418881.jpeg" + } + ], + "duration": "PT6H", + "photoAlbum": null, + "desc": "OCT 25 - NOV 24 2019
Details and tips: https://hackmd.io/oZ_RERTrTp2hBypEZ6E2tQ

SCHEDULE:
- we meet every day from around 2pm until 8pm in C.A.M.P. Library Cafe in Maya (Nimman)
- 2x a week we'll try to organize some lessons/lightning talks (depending on when mentors are available, will announce it)

COMMUNICATION:
- for communication we use Telegram and/or Gitter chat https://t.me/joinchat/CgTftxVXA-NuDYvJqgsJig
https://gitter.im/wizardamigosinstitute/program

HOW DOES IT WORK:
- learner/attendee should pick the topic of their interest and we'll try hard to help you find good learning resources and support you with your learning efforts. Everyone, including you can ask questions and try to answer questions of others on our gitter community chat.
- attendees make their own plan on what they want to learn/work on projects/meet with to collaborate on projects together

BENEFIT:
- you get a community of like minded people that also learn/work
- you get a time frame in which you can set yourself on a mission to learn something
- you can ask for help on a chat (people will be coming and going and as there is no strict structure, you should not depend on physically meet to be able to get started/continue with your work)
- @serapath (Alex) and @ninabreznik (Nina) will be here every day in approximately this time frame so we can help out, although we have work we need to do, so prepare for self directed learning

ABOUT:
- Wizard Amigos is a grass root community and operates with zero budget and on purely voluntary basis, so don't expect strict schedule
- everyone is welcome
- remote work demands a lot of self organization so this whole process also helps you learn how to gain that skill

ABSOLUTE BEGINNERS?
- if you are completely new to coding, don't worry, we have a list of resources to help you get started
- we recommend you: Javascript (for any kind of web development) or Solidity (if you are interested in Ethereum ecosystem and in building smart contracts)

C.A.M.P. Library Cafe (Maya mall, 5th floor)
- if you use AIS mobile internet, you can use the space for free (connect to AIS super wifi)
- if you don't use AIS, consider getting a monthly sim card and enjoy free space
- if you don't have AIS and don't plan to get it, you can buy a drink and get 2h free internet (2 cappuchinos are 150 THB and get you 6h of free internet) OR you can also connect to your mobile internet)", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/266194993", + "date": "November 20, 2019", + "time": "3:00PM" + }, + { + "title": "Dat protocol - talks and workshops", + "shortDescription": null, + "venue": { + "city": "Amphoe Mueang Chiang Mai", + "country": "th" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/7/e/1/highres_484418881.jpeg" + } + ], + "duration": "PT6H", + "photoAlbum": null, + "desc": "2.00 - 2.30 Mauve - Getting into the internals of Dat protocol
2.30 - 3.00 Mauve - Dat in the browser (SDK)
3.00 - 3.30 Noffle (Kappa DB & Cabal chat)
3.30 - 4.00 Alex and Nina (Getting started with Dat workshop & how we use Dat in SmartContract.Codes)
4.00 - 4.30 Joshua (DatDot - pinnig service for hypercores)
4.30 - 5.00 Mark (Jscad & Dat)
5.00 - 5.30 Dan_mi_sun(Cobox Coop) (not confirmed yet)

Some links to get started:
https://dat.foundation/
https://www.youtube.com/watch?v=7tf14VpeHlE", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/266195001", + "date": "November 21, 2019", + "time": "3:00PM" + }, + { + "title": "Free code camp in Thailand", + "shortDescription": null, + "venue": { + "city": "Amphoe Mueang Chiang Mai", + "country": "th" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/7/e/1/highres_484418881.jpeg" + } + ], + "duration": "PT6H", + "photoAlbum": null, + "desc": "OCT 25 - NOV 24 2019
Details and tips: https://hackmd.io/oZ_RERTrTp2hBypEZ6E2tQ

SCHEDULE:
- we meet every day from around 2pm until 8pm in C.A.M.P. Library Cafe in Maya (Nimman)
- 2x a week we'll try to organize some lessons/lightning talks (depending on when mentors are available, will announce it)

COMMUNICATION:
- for communication we use Telegram and/or Gitter chat https://t.me/joinchat/CgTftxVXA-NuDYvJqgsJig
https://gitter.im/wizardamigosinstitute/program

HOW DOES IT WORK:
- learner/attendee should pick the topic of their interest and we'll try hard to help you find good learning resources and support you with your learning efforts. Everyone, including you can ask questions and try to answer questions of others on our gitter community chat.
- attendees make their own plan on what they want to learn/work on projects/meet with to collaborate on projects together

BENEFIT:
- you get a community of like minded people that also learn/work
- you get a time frame in which you can set yourself on a mission to learn something
- you can ask for help on a chat (people will be coming and going and as there is no strict structure, you should not depend on physically meet to be able to get started/continue with your work)
- @serapath (Alex) and @ninabreznik (Nina) will be here every day in approximately this time frame so we can help out, although we have work we need to do, so prepare for self directed learning

ABOUT:
- Wizard Amigos is a grass root community and operates with zero budget and on purely voluntary basis, so don't expect strict schedule
- everyone is welcome
- remote work demands a lot of self organization so this whole process also helps you learn how to gain that skill

ABSOLUTE BEGINNERS?
- if you are completely new to coding, don't worry, we have a list of resources to help you get started
- we recommend you: Javascript (for any kind of web development) or Solidity (if you are interested in Ethereum ecosystem and in building smart contracts)

C.A.M.P. Library Cafe (Maya mall, 5th floor)
- if you use AIS mobile internet, you can use the space for free (connect to AIS super wifi)
- if you don't use AIS, consider getting a monthly sim card and enjoy free space
- if you don't have AIS and don't plan to get it, you can buy a drink and get 2h free internet (2 cappuchinos are 150 THB and get you 6h of free internet) OR you can also connect to your mobile internet)", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/266159126", + "date": "November 22, 2019", + "time": "3:00PM" + }, + { + "title": "Free code camp in Thailand", + "shortDescription": null, + "venue": { + "city": "Amphoe Mueang Chiang Mai", + "country": "th" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/7/e/1/highres_484418881.jpeg" + } + ], + "duration": "PT6H", + "photoAlbum": null, + "desc": "OCT 25 - NOV 24 2019
Details and tips: https://hackmd.io/oZ_RERTrTp2hBypEZ6E2tQ

SCHEDULE:
- we meet every day from around 2pm until 8pm in C.A.M.P. Library Cafe in Maya (Nimman)
- 2x a week we'll try to organize some lessons/lightning talks (depending on when mentors are available, will announce it)

COMMUNICATION:
- for communication we use Telegram and/or Gitter chat https://t.me/joinchat/CgTftxVXA-NuDYvJqgsJig
https://gitter.im/wizardamigosinstitute/program

HOW DOES IT WORK:
- learner/attendee should pick the topic of their interest and we'll try hard to help you find good learning resources and support you with your learning efforts. Everyone, including you can ask questions and try to answer questions of others on our gitter community chat.
- attendees make their own plan on what they want to learn/work on projects/meet with to collaborate on projects together

BENEFIT:
- you get a community of like minded people that also learn/work
- you get a time frame in which you can set yourself on a mission to learn something
- you can ask for help on a chat (people will be coming and going and as there is no strict structure, you should not depend on physically meet to be able to get started/continue with your work)
- @serapath (Alex) and @ninabreznik (Nina) will be here every day in approximately this time frame so we can help out, although we have work we need to do, so prepare for self directed learning

ABOUT:
- Wizard Amigos is a grass root community and operates with zero budget and on purely voluntary basis, so don't expect strict schedule
- everyone is welcome
- remote work demands a lot of self organization so this whole process also helps you learn how to gain that skill

ABSOLUTE BEGINNERS?
- if you are completely new to coding, don't worry, we have a list of resources to help you get started
- we recommend you: Javascript (for any kind of web development) or Solidity (if you are interested in Ethereum ecosystem and in building smart contracts)

C.A.M.P. Library Cafe (Maya mall, 5th floor)
- if you use AIS mobile internet, you can use the space for free (connect to AIS super wifi)
- if you don't use AIS, consider getting a monthly sim card and enjoy free space
- if you don't have AIS and don't plan to get it, you can buy a drink and get 2h free internet (2 cappuchinos are 150 THB and get you 6h of free internet) OR you can also connect to your mobile internet)", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/266159160", + "date": "November 23, 2019", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Zhongzheng District", + "country": "tw" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to join us:

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm - 9:30pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum", + "participants": 10, + "link": "https://www.meetup.com/wizardamigos/events/266459518", + "date": "November 25, 2019", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/266607673", + "date": "November 26, 2019", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/266779956", + "date": "December 03, 2019", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Zhongzheng District", + "country": "tw" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to join us:

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm - 9:30pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum", + "participants": 13, + "link": "https://www.meetup.com/wizardamigos/events/266776553", + "date": "December 09, 2019", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 10, + "link": "https://www.meetup.com/wizardamigos/events/266852797", + "date": "December 10, 2019", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 9, + "link": "https://www.meetup.com/wizardamigos/events/267110333", + "date": "December 17, 2019", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Zhongzheng District", + "country": "tw" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

In our community of learners we stay connected using

Github (https://github.com/wizardamigos)

Gitter (https://gitter.im/wizardamigosinstitute/program)

Facebook (https://www.facebook.com/groups/369246343421803)

Feel free to join us:

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm - 9:30pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum", + "participants": 10, + "link": "https://www.meetup.com/wizardamigos/events/267199363", + "date": "December 23, 2019", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 15, + "link": "https://www.meetup.com/wizardamigos/events/266298084", + "date": "December 24, 2019", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 11, + "link": "https://www.meetup.com/wizardamigos/events/267373513", + "date": "December 31, 2019", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Zhongzheng District", + "country": "tw" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE** open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

FREE**: We have to shared the venue fees

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

* Github (https://github.com/wizardamigos)
* Gitter Chat(https://gitter.im/wizardamigosinstitute/program)
* Facebook (https://www.facebook.com/groups/369246343421803)", + "participants": 12, + "link": "https://www.meetup.com/wizardamigos/events/267468951", + "date": "January 06, 2020", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Zhongzheng District", + "country": "tw" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE** open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

FREE**: We have to shared the venue fees

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

github (https://github.com/wizardamigosinstitute)

and

facebook (https://www.facebook.com/groups/369246343421803)

Feel free to join us:

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

REQUIREMENTS:
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones

USUAL SCHEDULE: (7:30pm - 9:30pm)
\u2022 We start with a short round of introduction
\u2022 and then jump right into hands-on exercises from our curriculum", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/267639615", + "date": "January 06, 2020", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Zhongzheng District", + "country": "tw" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE** open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

FREE**: We have to shared the venue fees

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

* Github (https://github.com/wizardamigos)
* Gitter Chat(https://gitter.im/wizardamigosinstitute/program)
* Facebook (https://www.facebook.com/groups/369246343421803)", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/267639774", + "date": "January 06, 2020", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 11, + "link": "https://www.meetup.com/wizardamigos/events/267553649", + "date": "January 07, 2020", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 15, + "link": "https://www.meetup.com/wizardamigos/events/267732709", + "date": "January 14, 2020", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 11, + "link": "https://www.meetup.com/wizardamigos/events/267932981", + "date": "January 21, 2020", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 14, + "link": "https://www.meetup.com/wizardamigos/events/268111159", + "date": "January 28, 2020", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Zhongzheng District", + "country": "tw" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE** open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

FREE**: We have to shared the venue fees

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

* Github (https://github.com/wizardamigos)
* Gitter Chat(https://gitter.im/wizardamigosinstitute/program)
* Facebook (https://www.facebook.com/groups/369246343421803)", + "participants": 18, + "link": "https://www.meetup.com/wizardamigos/events/267446368", + "date": "February 03, 2020", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Zhongzheng District", + "country": "tw" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE** open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

FREE**: We have to shared the venue fees

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

* Github (https://github.com/wizardamigos)
* Gitter Chat(https://gitter.im/wizardamigosinstitute/program)
* Facebook (https://www.facebook.com/groups/369246343421803)", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/267828416", + "date": "February 03, 2020", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Zhongzheng District", + "country": "tw" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE** open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

FREE**: We have to shared the venue fees

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

* Github (https://github.com/wizardamigos)
* Gitter Chat(https://gitter.im/wizardamigosinstitute/program)
* Facebook (https://www.facebook.com/groups/369246343421803)", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/267828427", + "date": "February 03, 2020", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Zhongzheng District", + "country": "tw" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE** open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

FREE**: We have to shared the venue fees

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

* Github (https://github.com/wizardamigos)
* Gitter Chat(https://gitter.im/wizardamigosinstitute/program)
* Facebook (https://www.facebook.com/groups/369246343421803)", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/268078603", + "date": "February 03, 2020", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 15, + "link": "https://www.meetup.com/wizardamigos/events/268234708", + "date": "February 04, 2020", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/268476873", + "date": "February 11, 2020", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Zhongzheng District", + "country": "tw" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE** open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

FREE**: We have to shared the venue fees

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

* Github (https://github.com/wizardamigos)
* Gitter Chat(https://gitter.im/wizardamigosinstitute/program)
* Facebook (https://www.facebook.com/groups/369246343421803)", + "participants": 14, + "link": "https://www.meetup.com/wizardamigos/events/268012338", + "date": "February 17, 2020", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 10, + "link": "https://www.meetup.com/wizardamigos/events/268653866", + "date": "February 18, 2020", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/268801187", + "date": "February 25, 2020", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Zhongzheng District", + "country": "tw" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE** open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

FREE**: We have to shared the venue fees

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

* Github (https://github.com/wizardamigos)
* Gitter Chat(https://gitter.im/wizardamigosinstitute/program)
* Facebook (https://www.facebook.com/groups/369246343421803)", + "participants": 12, + "link": "https://www.meetup.com/wizardamigos/events/268769349", + "date": "March 02, 2020", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Zhongzheng District", + "country": "tw" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE** open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

FREE**: We have to shared the venue fees

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

* Github (https://github.com/wizardamigos)
* Gitter Chat(https://gitter.im/wizardamigosinstitute/program)
* Facebook (https://www.facebook.com/groups/369246343421803)", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/269105519", + "date": "March 02, 2020", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/269004422", + "date": "March 03, 2020", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/269274884", + "date": "March 10, 2020", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Taipei,JavaScript,\u00adEnglish]", + "shortDescription": null, + "venue": { + "city": "Zhongzheng District", + "country": "tw" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE** open source, open collaborative, and free DIY programming school from Berlin, now starting in Taipei. People of all skill levels and backgrounds are welcome to join and learn together :-)

FREE**: We have to shared the venue fees

Are you:
\u2022 complete computer beginner?
\u2022 already curious about programming JavaScript?
\u2022 already a developer?

How does it work?
\u2022 join us
\u2022 bring your laptop and a pair of headphones
\u2022 we make a short introduction and then sit around the table to learn together

FEATURES:
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find a job

We will help you with that!

In our community of learners we stay connected using

* Github (https://github.com/wizardamigos)
* Gitter Chat(https://gitter.im/wizardamigosinstitute/program)
* Facebook (https://www.facebook.com/groups/369246343421803)", + "participants": 9, + "link": "https://www.meetup.com/wizardamigos/events/269232465", + "date": "March 16, 2020", + "time": "8:30PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/269435185", + "date": "March 17, 2020", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/269581082", + "date": "March 24, 2020", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/269642884", + "date": "March 31, 2020", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 8, + "link": "https://www.meetup.com/wizardamigos/events/269786872", + "date": "April 07, 2020", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/269911881", + "date": "April 14, 2020", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/270059691", + "date": "April 21, 2020", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/269907296", + "date": "April 28, 2020", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/270333979", + "date": "May 05, 2020", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/270481263", + "date": "May 12, 2020", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/270623036", + "date": "May 19, 2020", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/270764146", + "date": "May 26, 2020", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/270902832", + "date": "June 02, 2020", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/271054132", + "date": "June 09, 2020", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/271202937", + "date": "June 16, 2020", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/271336687", + "date": "June 23, 2020", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/271494484", + "date": "June 30, 2020", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/271645343", + "date": "July 07, 2020", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/271793151", + "date": "July 14, 2020", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/271939168", + "date": "July 21, 2020", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/272079288", + "date": "July 28, 2020", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/272226088", + "date": "August 04, 2020", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/272376856", + "date": "August 11, 2020", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/272525364", + "date": "August 18, 2020", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/272672628", + "date": "August 25, 2020", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/272820787", + "date": "September 01, 2020", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/272979457", + "date": "September 08, 2020", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/273135239", + "date": "September 15, 2020", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/273293450", + "date": "September 22, 2020", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/273432078", + "date": "September 29, 2020", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/273612134", + "date": "October 06, 2020", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/273770384", + "date": "October 13, 2020", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/273923528", + "date": "October 20, 2020", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/274160668", + "date": "October 27, 2020", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/274229370", + "date": "November 03, 2020", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/274384384", + "date": "November 10, 2020", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/274529946", + "date": "November 17, 2020", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/274668751", + "date": "November 24, 2020", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/274804559", + "date": "December 01, 2020", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/274941803", + "date": "December 08, 2020", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/275079312", + "date": "December 15, 2020", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/275207515", + "date": "December 22, 2020", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/275330015", + "date": "December 29, 2020", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/275442985", + "date": "January 05, 2021", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/275581584", + "date": "January 12, 2021", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "Lagos", + "country": "ng" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/275723187", + "date": "January 19, 2021", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/275862870", + "date": "January 26, 2021", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/275909252", + "date": "January 26, 2021", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/276003367", + "date": "February 02, 2021", + "time": "2:00PM" + }, + { + "title": "Wizardamigos let's start with FOSDEM EUROPE hangouts ", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/a/9/b/a/highres_494623450.jpeg" + } + ], + "duration": "PT46H", + "photoAlbum": null, + "desc": "Two day online hangout with Wizard Amigos about coding and other related stuff while in the Europe @fosdem
conference is in progress!
this year it's all remote conference, open source online

check
FOSDEM:https://fosdem.org/2021/

and you can also hangout with wizard amogos on discord channel

wizardamigos
discord server link: https://discord.gg/F5SnRnGq7J

Wizardamigos let's start with FOSDEM EUROPE hangouts

if you'd like a physical place to hangout with friend during event
check this out
https://www.meetup.com/WizardAmigos/events/276189410/
-----------
\u8207 Wizardamigos FOSDEM \u958b\u6e90\u4e0b\u5348\u8336

\u9019\u5169\u5929\u548c Wizardamigos \u4e00\u8d77\u5728\u6b50\u6d32\u958b\u6e90\u805a\u6703 FOSDEM \u4f86\u9ede coding \uff0c\u958b\u6e90\u548c\u5176\u4ed6\u7684\u6709\u7684\u6c92\u7684\u6771\u897f\u5427\uff0c\u4eca\u5e74\u5404\u5927\u958b\u653e\u539f\u59cb\u78bc\u6280\u8853\u7814\u8a0e\u6703\u90fd\u5df2\u7d93\u9060\u7aef\u4e0a\u7dda\u4e86

\u770b\u9019\u88e1
FOSDEM:https://fosdem.org/2021/

\u4f60\u9084\u53ef\u4ee5\u4f86 wizardamigos \u7684\u7dda\u4e0a discord \u6643\u6643\u804a\u804a\u5427

wizardamigos
discord \u4f3a\u670d\u5668\u9023\u7d50 : https://discord.gg/F5SnRnGq7J

\u5982\u679c\u4f60\u60f3\u53c3\u52a0\u5be6\u9ad4\u7684\u805a\u6703\uff0c\u770b\u9019\u88e1
https://www.meetup.com/WizardAmigos/events/276189410/", + "participants": 6, + "link": "https://www.meetup.com/wizardamigos/events/276167612", + "date": "February 06, 2021", + "time": "5:00PM" + }, + { + "title": "Wizardamigos let's start with FOSDEM EUROPE hangouts at Tamsui ", + "shortDescription": null, + "venue": { + "city": "Tamsui District", + "country": "tw" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/a/9/b/a/highres_494623450.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "If you'd like a meetup physically at Taiwan discuss two day open source conference , the fosdem , here is your meetup!

hangout with Wizard Amigos about coding and other related stuff while in the Europe @fosdem
conference is in progress!
this year it's all remote conference, open source online

check
FOSDEM:https://fosdem.org/2021/

and you can also hangout with wizard amogos on discord channel

wizardamigos
discord server link: https://discord.gg/F5SnRnGq7J

Wizardamigos let's start with FOSDEM EUROPE hangouts

-----------
\u8207 Wizardamigos FOSDEM \u958b\u6e90\u4e0b\u5348\u8336

\u4eca\u5e74\u5404\u5927\u958b\u653e\u539f\u59cb\u78bc\u6280\u8853\u7814\u8a0e\u6703\u90fd\u5df2\u7d93\u9060\u7aef\u4e0a\u7dda\u4e86\uff0c\u5982\u679c\u9019\u5169\u5929\u60f3\u627e\u500b\u5730\u65b9\u8ddf\u4eba\u804a\u804a\u5728\u6b50\u6d32\u958b\u6e90\u805a\u6703 FOSDEM coding \uff0c\u958b\u6e90\u548c\u5176\u4ed6\u7684\u6709\u7684\u6c92\u7684\u6771\u897f\uff0c\u4f60\u53ef\u4ee5\u4f86\u9019\u5834 meetup

\u770b\u9019\u88e1
FOSDEM:https://fosdem.org/2021/

\u4f60\u9084\u53ef\u4ee5\u4f86 wizardamigos \u7684\u7dda\u4e0a discord \u6643\u6643\u804a\u804a\u5427

wizardamigos
discord \u4f3a\u670d\u5668\u9023\u7d50 : https://discord.gg/F5SnRnGq7J", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/276189410", + "date": "February 06, 2021", + "time": "5:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/276147041", + "date": "February 09, 2021", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/276285299", + "date": "February 16, 2021", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/276417375", + "date": "February 23, 2021", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/276559653", + "date": "March 02, 2021", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/276710232", + "date": "March 09, 2021", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/276925755", + "date": "March 16, 2021", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/277065595", + "date": "March 23, 2021", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/277130550", + "date": "March 30, 2021", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/277277689", + "date": "April 06, 2021", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/277418675", + "date": "April 13, 2021", + "time": "3:00PM" + }, + { + "title": "WizardAmigos coffee and chat", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/d/8/7/highres_495603463.jpeg" + } + ], + "duration": "PT1H", + "photoAlbum": null, + "desc": "Just an hour hanging out and talking with Wizard Amigos about coding and other related stuff.

More: https://github.com/wizardamigos/comm-comm/issues/2", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/277452382", + "date": "April 15, 2021", + "time": "4:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/277563927", + "date": "April 20, 2021", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/277706575", + "date": "April 27, 2021", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/277850920", + "date": "May 04, 2021", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/277998051", + "date": "May 11, 2021", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/278136602", + "date": "May 18, 2021", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/278276104", + "date": "May 25, 2021", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/278421826", + "date": "June 01, 2021", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/278569819", + "date": "June 08, 2021", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/278722639", + "date": "June 15, 2021", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/278872863", + "date": "June 22, 2021", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/279018675", + "date": "June 29, 2021", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/279168555", + "date": "July 06, 2021", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/279315196", + "date": "July 13, 2021", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/279463190", + "date": "July 20, 2021", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/279609022", + "date": "July 27, 2021", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/279755017", + "date": "August 03, 2021", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/279905877", + "date": "August 10, 2021", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/280049700", + "date": "August 17, 2021", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/280189348", + "date": "August 24, 2021", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/280334548", + "date": "August 31, 2021", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/280484865", + "date": "September 07, 2021", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/280636919", + "date": "September 14, 2021", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/280790417", + "date": "September 21, 2021", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/280938789", + "date": "September 28, 2021", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/280986262", + "date": "October 05, 2021", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/281246493", + "date": "October 12, 2021", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/281397411", + "date": "October 19, 2021", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/281522906", + "date": "October 26, 2021", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/281771696", + "date": "November 02, 2021", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/281840995", + "date": "November 09, 2021", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/281990919", + "date": "November 16, 2021", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/282140498", + "date": "November 23, 2021", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/282285165", + "date": "November 30, 2021", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/282423827", + "date": "December 07, 2021", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/282562292", + "date": "December 14, 2021", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/282695127", + "date": "December 21, 2021", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/282829841", + "date": "December 28, 2021", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/282933238", + "date": "January 04, 2022", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/283070464", + "date": "January 11, 2022", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/283217057", + "date": "January 18, 2022", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/283356969", + "date": "January 25, 2022", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/283501383", + "date": "February 01, 2022", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/283649445", + "date": "February 08, 2022", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/283849929", + "date": "February 15, 2022", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/284044263", + "date": "February 22, 2022", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/283848713", + "date": "March 01, 2022", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/284043702", + "date": "March 08, 2022", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/284198348", + "date": "March 15, 2022", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/284353791", + "date": "March 22, 2022", + "time": "2:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/284504239", + "date": "March 29, 2022", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/284649626", + "date": "April 05, 2022", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/284797585", + "date": "April 12, 2022", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/284942720", + "date": "April 19, 2022", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/285100080", + "date": "April 26, 2022", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/285246342", + "date": "May 03, 2022", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/285388856", + "date": "May 10, 2022", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/285540529", + "date": "May 17, 2022", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/285692229", + "date": "May 24, 2022", + "time": "3:00PM" + }, + { + "title": "WizardAmigos CodeCamp [Lagos, JavaScript,\u00ad English]", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/9/9/f/a/highres_479619418.jpeg" + } + ], + "duration": "PT5H", + "photoAlbum": null, + "desc": "WizardAmigos CodeCamp is a FREE open source, open collaborative, and free DIY (Do it yourself) programming school from all over the world. It exists in other locations like Taiwan/Taipei, Germany/Berlin, USA/Nashville and now starting in Nigeria/Lagos. People of all skill levels and backgrounds are welcome to join and learn together :-)

What is it?
\u2022 Free hands-on JavaScript study group
\u2022 Opportunity to practice English
\u2022 advanced coders are encouraged to mentor & contribute to the curriculum

For whom is it?
\u2022 a complete computer beginner? yes, perfect :-)
\u2022 already curious about programming JavaScript? thats good too :-)
\u2022 already a developer? awesome, hope you like to help others too :-)

How does it work?
\u2022 be nice to people
\u2022 bring a laptop
\u2022 bring headphones (so you can focus while others might talk/discuss)
\u2022 We start with a short round of introduction if somebody is new
\u2022 and then jump right into hands-on exercises from our curriculum

more information: https://wizardamigos.com/chapter-lagos
gitter chat: https://gitter.im/wizardamigosinstitute/program
facebook: https://www.facebook.com/groups/369246343421803

You start at the beginning or what feels appropriate to you and each time continue where you left of. We encourage everyone to do home works to progress faster. Everyone has their own pace and that's encouraged. We also encourage to help each other out - during the meetup and on the chat :-)

After you finish the course, you will be able to:
\u2022 continue to build your portfolio of apps (web or mobile)
\u2022 work on client projects
\u2022 build your startup
\u2022 find paid work - we help with that

Contact organizers:
+234(0)80-3297-2057
+234(0)81-2620-3069", + "participants": 5, + "link": "https://www.meetup.com/wizardamigos/events/285838959", + "date": "May 31, 2022", + "time": "3:00PM" + }, + { + "title": "Web course", + "shortDescription": null, + "venue": { + "city": "", + "country": "" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/b/5/4/3/highres_505906403.jpeg" + } + ], + "duration": "PT30M", + "photoAlbum": null, + "desc": "Are you a designer and want to learn csome basic web development skills? Or you alreayd knows some bits here and there and just want to learn the latest bleeding edge of building web components?

You are in the right place!

Web course has officially started. We had a gentle start, so you can easily catch up. But if you want, you can also just passivelly follow along.

Don't forget to join our Discord if you want to ask questions [https://discord.gg/8FzZPHkp44](https://t.co/9R4pQLhGlO)

Here's the playlist of the lessons we did so far
https://www.youtube.com/watch?v=4qyDYKscX84&list=PLubqJ-IuY27BQ7sDNZraRYcFWjmU3JABz", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/287514045", + "date": "July 30, 2022", + "time": "9:00PM" + }, + { + "title": "Basic Web component workshop", + "shortDescription": null, + "venue": null, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/b/5/4/3/highres_505906403.jpeg" + } + ], + "duration": "PT30M", + "photoAlbum": null, + "desc": "Are you a designer and want to learn csome basic web development skills? Or you alreayd knows some bits here and there and just want to learn the latest bleeding edge of building web components?

You are in the right place!

Web course has officially started. We had a gentle start, so you can easily catch up. But if you want, you can also just passivelly follow along.

Don't forget to join our Discord if you want to ask questions [https://discord.gg/8FzZPHkp44](https://t.co/9R4pQLhGlO)

Here's the playlist of the lessons we did so far
https://www.youtube.com/watch?v=4qyDYKscX84&list=PLubqJ-IuY27BQ7sDNZraRYcFWjmU3JABz", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/287515060", + "date": "July 31, 2022", + "time": "9:00PM" + }, + { + "title": "Basic Web component workshop", + "shortDescription": null, + "venue": null, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/b/5/4/3/highres_505906403.jpeg" + } + ], + "duration": "PT30M", + "photoAlbum": null, + "desc": "Are you a designer and want to learn csome basic web development skills? Or you alreayd knows some bits here and there and just want to learn the latest bleeding edge of building web components?

You are in the right place!

Web course has officially started. We had a gentle start, so you can easily catch up. But if you want, you can also just passivelly follow along.

Don't forget to join our Discord if you want to ask questions [https://discord.gg/8FzZPHkp44](https://t.co/9R4pQLhGlO)

Here's the playlist of the lessons we did so far
https://www.youtube.com/watch?v=4qyDYKscX84&list=PLubqJ-IuY27BQ7sDNZraRYcFWjmU3JABz", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/287515084", + "date": "August 01, 2022", + "time": "9:00PM" + }, + { + "title": "Basic Web component workshop", + "shortDescription": null, + "venue": null, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/b/5/4/3/highres_505906403.jpeg" + } + ], + "duration": "PT30M", + "photoAlbum": null, + "desc": "Are you a designer and want to learn csome basic web development skills? Or you alreayd knows some bits here and there and just want to learn the latest bleeding edge of building web components?

You are in the right place!

Web course has officially started. We had a gentle start, so you can easily catch up. But if you want, you can also just passivelly follow along.

Don't forget to join our Discord if you want to ask questions [https://discord.gg/8FzZPHkp44](https://t.co/9R4pQLhGlO)

Here's the playlist of the lessons we did so far
https://www.youtube.com/watch?v=4qyDYKscX84&list=PLubqJ-IuY27BQ7sDNZraRYcFWjmU3JABz", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/287515103", + "date": "August 02, 2022", + "time": "9:00PM" + }, + { + "title": "Basic Web component workshop", + "shortDescription": null, + "venue": null, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/b/5/4/3/highres_505906403.jpeg" + } + ], + "duration": "PT30M", + "photoAlbum": null, + "desc": "Are you a designer and want to learn csome basic web development skills? Or you alreayd knows some bits here and there and just want to learn the latest bleeding edge of building web components?

You are in the right place!

Web course has officially started. We had a gentle start, so you can easily catch up. But if you want, you can also just passivelly follow along.

Don't forget to join our Discord if you want to ask questions [https://discord.gg/8FzZPHkp44](https://t.co/9R4pQLhGlO)

Here's the playlist of the lessons we did so far
https://www.youtube.com/watch?v=4qyDYKscX84&list=PLubqJ-IuY27BQ7sDNZraRYcFWjmU3JABz", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/287515126", + "date": "August 03, 2022", + "time": "9:00PM" + }, + { + "title": "Wizard Amigos Code Camp", + "shortDescription": null, + "venue": null, + "images": [], + "duration": "PT98H", + "photoAlbum": null, + "desc": "We're planning a Wizard amigos Code Camp and would need your input.

Please help us choose the right topics and the location for the event!

https://forms.gle/qxYnZrjnP6qGdHE17", + "participants": 1, + "link": "https://www.meetup.com/wizardamigos/events/286288093", + "date": "September 08, 2022", + "time": "2:00PM" + }, + { + "title": "Code camp 2022 / Wales", + "shortDescription": null, + "venue": { + "city": "Caernarfon", + "country": "gb" + }, + "images": [], + "duration": "PT2H", + "photoAlbum": null, + "desc": "Codecamp talks live streamed over

Discord
https://discord.gg/WU29pgYQC3

and/or

Youtube https://youtube.com/channel/UC2Mqy2KDqpa1M1iZ_x_KiOQ", + "participants": 2, + "link": "https://www.meetup.com/wizardamigos/events/288918744", + "date": "October 05, 2022", + "time": "4:00PM" + }, + { + "title": "Wizard Amigos Code Camp", + "shortDescription": null, + "venue": { + "city": "Alvados", + "country": "pt" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/c/4/b/8/highres_516170360.jpeg" + } + ], + "duration": "PT168H", + "photoAlbum": null, + "desc": "Wizard Amigos code camp is a DIY gathering that will this year stretch over the whole October.

A full month of co-living, co-working and organizing an unconference (with remote guests) sharing knowledge about P2P / federated / co-governed tech, care for people & the future, sustainability and exploring pathways toward a real systemic change.

Are you thinking of joining? The camp starts very soon and there is still a few spots available :)

https://forms.zohopublic.com/virtualoffice22084/form/WizardAmigosCodeCamp1/formperma/D8aoqyrH9shhhLqNxLFWLczATUOBKHfmvTLJVvIOUs8", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/296387515", + "date": "October 01, 2023", + "time": "2:00AM" + }, + { + "title": "Wizard Amigos Code Camp", + "shortDescription": null, + "venue": { + "city": "Alvados", + "country": "pt" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/c/4/b/8/highres_516170360.jpeg" + } + ], + "duration": "PT168H", + "photoAlbum": null, + "desc": "Wizard Amigos code camp is a DIY gathering that will this year stretch over the whole October.

A full month of co-living, co-working and organizing an unconference (with remote guests) sharing knowledge about P2P / federated / co-governed tech, care for people & the future, sustainability and exploring pathways toward a real systemic change.

Are you thinking of joining? The camp starts very soon and there is still a few spots available :)

https://forms.zohopublic.com/virtualoffice22084/form/WizardAmigosCodeCamp1/formperma/D8aoqyrH9shhhLqNxLFWLczATUOBKHfmvTLJVvIOUs8", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/296387520", + "date": "October 01, 2023", + "time": "2:00AM" + }, + { + "title": "Wizard Amigos Code Camp", + "shortDescription": null, + "venue": { + "city": "Alvados", + "country": "pt" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/c/4/b/8/highres_516170360.jpeg" + } + ], + "duration": "PT168H", + "photoAlbum": { + "photoCount": 3, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/c/b/1/9/highres_516531993.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/c/b/1/a/highres_516531994.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/c/b/1/b/highres_516531995.jpeg" + } + ] + }, + "desc": "Wizard Amigos code camp is a DIY gathering that will this year stretch over the whole October.

A full month of co-living, co-working and organizing an unconference (with remote guests) sharing knowledge about P2P / federated / co-governed tech, care for people & the future, sustainability and exploring pathways toward a real systemic change.

Are you thinking of joining? The camp starts very soon and there is still a few spots available :)

https://forms.zohopublic.com/virtualoffice22084/form/WizardAmigosCodeCamp1/formperma/D8aoqyrH9shhhLqNxLFWLczATUOBKHfmvTLJVvIOUs8", + "participants": 4, + "link": "https://www.meetup.com/wizardamigos/events/296387530", + "date": "October 08, 2023", + "time": "2:00AM" + }, + { + "title": "Wizard Amigos Code Camp", + "shortDescription": null, + "venue": { + "city": "Alvados", + "country": "pt" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/c/4/b/8/highres_516170360.jpeg" + } + ], + "duration": "PT168H", + "photoAlbum": { + "photoCount": 2, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/5/6/4/highres_517021380.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/5/6/5/highres_517021381.jpeg" + } + ] + }, + "desc": "Wizard Amigos code camp is a DIY gathering that will this year stretch over the whole October.

A full month of co-living, co-working and organizing an unconference (with remote guests) sharing knowledge about P2P / federated / co-governed tech, care for people & the future, sustainability and exploring pathways toward a real systemic change.

Are you thinking of joining? The camp starts very soon and there is still a few spots available :)

https://forms.zohopublic.com/virtualoffice22084/form/WizardAmigosCodeCamp1/formperma/D8aoqyrH9shhhLqNxLFWLczATUOBKHfmvTLJVvIOUs8", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/296627936", + "date": "October 15, 2023", + "time": "2:00AM" + }, + { + "title": "Wizard Amigos Code Camp", + "shortDescription": null, + "venue": { + "city": "Alvados", + "country": "pt" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/c/4/b/8/highres_516170360.jpeg" + } + ], + "duration": "PT168H", + "photoAlbum": { + "photoCount": 7, + "photoSample": [ + { + "source": "https://secure.meetupstatic.com/photos/event/e/4/7/d/highres_516838493.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/e/4/7/e/highres_516838494.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/e/4/7/f/highres_516838495.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/e/4/c/b/highres_516838571.jpeg" + }, + { + "source": "https://secure.meetupstatic.com/photos/event/e/4/e/3/highres_516838595.jpeg" + } + ] + }, + "desc": "Wizard Amigos code camp is a DIY gathering that will this year stretch over the whole October.

A full month of co-living, co-working and organizing an unconference (with remote guests) sharing knowledge about P2P / federated / co-governed tech, care for people & the future, sustainability and exploring pathways toward a real systemic change.

Are you thinking of joining? The camp starts very soon and there is still a few spots available :)

https://forms.zohopublic.com/virtualoffice22084/form/WizardAmigosCodeCamp1/formperma/D8aoqyrH9shhhLqNxLFWLczATUOBKHfmvTLJVvIOUs8", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/296771496", + "date": "October 22, 2023", + "time": "2:00AM" + }, + { + "title": "Wizard Amigos Code Camp", + "shortDescription": null, + "venue": { + "city": "Alvados", + "country": "pt" + }, + "images": [ + { + "source": "https://secure.meetupstatic.com/photos/event/c/4/b/8/highres_516170360.jpeg" + } + ], + "duration": "PT168H", + "photoAlbum": null, + "desc": "Wizard Amigos code camp is a DIY gathering that will this year stretch over the whole October.

A full month of co-living, co-working and organizing an unconference (with remote guests) sharing knowledge about P2P / federated / co-governed tech, care for people & the future, sustainability and exploring pathways toward a real systemic change.

Are you thinking of joining? The camp starts very soon and there is still a few spots available :)

https://forms.zohopublic.com/virtualoffice22084/form/WizardAmigosCodeCamp1/formperma/D8aoqyrH9shhhLqNxLFWLczATUOBKHfmvTLJVvIOUs8", + "participants": 3, + "link": "https://www.meetup.com/wizardamigos/events/296901693", + "date": "October 29, 2023", + "time": "2:00AM" + } + ] +} +},{}],13:[function(require,module,exports){ +(function (process,__filename){(function (){ +const day_button = require('buttons/day-button') +/****************************************************************************** + MONTH CARD COMPONENT +******************************************************************************/ +// ---------------------------------------- +// MODULE STATE & ID +var count = 0 +const [cwd, dir] = [process.cwd(), __filename].map(x => new URL(x, 'file://').href) +const ID = dir.slice(cwd.length) +const STATE = { ids: {}, net: {} } // all state of component module +// ---------------------------------------- +const sheet = new CSSStyleSheet +sheet.replaceSync(get_theme()) +const default_opts = { } +const shopts = { mode: 'closed' } +// ---------------------------------------- +module.exports = month_card +// ---------------------------------------- +function month_card (opts = default_opts, protocol) { + // ---------------------------------------- + // ID + JSON STATE + // ---------------------------------------- + const id = `${ID}:${count++}` // assigns their own name + const status = {} + const state = STATE.ids[id] = { id, status, wait: {}, net: {}, aka: {} } // all state of component instance + const cache = resources({}) + // ---------------------------------------- + // OPTS + // ---------------------------------------- + const { name: label, days } = opts + // ---------------------------------------- + // PROTOCOL + // ---------------------------------------- + const on = { + toggle_month_button, + toggle_all_days, + toggle_day_highlight, + toggle_day_button_visibility, + } + const up_channel = use_protocol('up')({ protocol, state, on }) + // ---------------------------------------- + // TEMPLATE + // ---------------------------------------- + const el = document.createElement('div') + const shadow = el.attachShadow(shopts) + shadow.adoptedStyleSheets = [sheet] + shadow.innerHTML = `
+ ${label} +
+
` + const days_wrapper = shadow.querySelector('.days_wrapper') + const month_name = shadow.querySelector('.month_name') + // ---------------------------------------- + // ELEMENTS + // ---------------------------------------- + { // day buttons + const elements = [] + for (let i = 1; i <= days; i++) { + const petname = `day_${i}` + const on = { toggle_day_button } + const protocol = use_protocol(petname)({ state, on }) + const opts = { i } + const element = shadowfy()(day_button(opts, protocol)) + elements.push(element) + async function toggle_day_button ({ data }) { + up_channel.send({ + head: [id, up_channel.send.id, up_channel.mid++], + type: 'toggle_day_button', + data: label + ' ' + ('0' + i).slice(-2) + }) + } + } + days_wrapper.append(...elements) + } + // ---------------------------------------- + // INIT + // ---------------------------------------- + month_name.onclick = onclick + + return el + + function onclick (e) { + toggle_month_button() + up_channel.send({ + head: [id, up_channel.send.id, up_channel.mid++], + type: 'toggle_month_button', + data: label + }) + } + async function toggle_month_button () { + month_name.classList.toggle('active') + } + async function toggle_all_days ({ data }) { + let day = new Date(data).getDate() + if(!day){ + day = new Date(data + ', 2000').getDate() + } + const petname = `day_${day}` + const channel = state.net[state.aka[petname]] + channel.send({ + head: [id, channel.send.id, channel.mid++], + type: 'toggle_active', + data: '' + }) + } + async function toggle_day_highlight ({ data }) { + const { mode, date } = data + const day = new Date(date).getDate() + const petname = `day_${day}` + const channel = state.net[state.aka[petname]] + channel.send({ + head: [id, channel.send.id, channel.mid++], + type: mode, + data: '' + }) + } + + async function toggle_day_button_visibility ({ data }) { + const petname = 'day_29' + const channel = state.net[state.aka[petname]] + channel.send({ + head: [id, channel.send.id, channel.mid++], + type: 'toggle_visibility', + data + }) + } +} +function get_theme () { + return ` + .month_card { + width: 140px; + border: 1px solid var(--primary_color); + background-image: radial-gradient(var(--bg_color_3) 1px, var(--bg_color_2) 2px); + background-size: 8px 8px; + min-height:130px; + height:100%; + } + .month_card .month_name { + display: block; + text-align: center; + padding: 5px 0; + cursor: pointer; + box-size: border-box; + border: 0px solid var(--primary_color); + border-width: 0 1px 2px 0; + background-color:var(--bg_color); + } + .month_card .month_name.active { + background-color: var(--ac-1) + } + .month_card .days_wrapper { + display: flex; + flex-wrap: wrap; + } + ` +} +// ---------------------------------------------------------------------------- +function shadowfy (props = {}, sheets = []) { + return element => { + const el = Object.assign(document.createElement('div'), { ...props }) + const sh = el.attachShadow(shopts) + sh.adoptedStyleSheets = sheets + sh.append(element) + return el + } +} +function use_protocol (petname) { + return ({ protocol, state, on = { } }) => { + if (petname in state.aka) throw new Error('petname already initialized') + const { id } = state + const invalid = on[''] || (message => console.error('invalid type', message)) + if (protocol) return handshake(protocol(Object.assign(listen, { id }))) + else return handshake + // ---------------------------------------- + // @TODO: how to disconnect channel + // ---------------------------------------- + function handshake (send) { + state.aka[petname] = send.id + const channel = state.net[send.id] = { petname, mid: 0, send, on } + return protocol ? channel : Object.assign(listen, { id }) + } + function listen (message) { + const [from] = message.head + const by = state.aka[petname] + if (from !== by) return invalid(message) // @TODO: maybe forward + console.log(`[${id}]:${petname}>`, message) + const { on } = state.net[by] + const action = on[message.type] || invalid + action(message) + } + } +} +// ---------------------------------------------------------------------------- +function resources (pool) { + var num = 0 + return factory => { + const prefix = num++ + const get = name => { + const id = prefix + name + if (pool[id]) return pool[id] + const type = factory[name] + return pool[id] = type() + } + return Object.assign(get, factory) + } +} +}).call(this)}).call(this,require('_process'),"/src/node_modules/month-card/month-card.js") +},{"_process":2,"buttons/day-button":8}],14:[function(require,module,exports){ +(function (process,__filename){(function (){ +const month_card = require('month-card') +const scrollbar = require('scrollbar') +/****************************************************************************** + MONTH FILTER COMPONENT +******************************************************************************/ +// ---------------------------------------- +// MODULE STATE & ID +var count = 0 +const [cwd, dir] = [process.cwd(), __filename].map(x => new URL(x, 'file://').href) +const ID = dir.slice(cwd.length) +const STATE = { ids: {}, net: {} } // all state of component module +// ---------------------------------------- +const sheet = new CSSStyleSheet +sheet.replaceSync(get_theme()) +const default_opts = { } +const shopts = { mode: 'closed' } +// ---------------------------------------- +module.exports = month_filter +// ---------------------------------------- +function month_filter (opts = default_opts, protocol) { + // ---------------------------------------- + // RESOURCE POOL (can't be serialized) + // ---------------------------------------- + const ro = new ResizeObserver(entries => { + console.log('ResizeObserver:terminal:resize') + const scroll_channel = state.net[state.aka.scrollbar] + scroll_channel.send({ + head: [id, scroll_channel.send.id, scroll_channel.mid++], + refs: { }, + type: 'handle_scroll', + }) + }) + // ---------------------------------------- + // ID + JSON STATE + // ---------------------------------------- + const id = `${ID}:${count++}` // assigns their own name + const status = {} + const state = STATE.ids[id] = { id, status, wait: {}, net: {}, aka: {} } // all state of component instance + const cache = resources({}) + let active_month = '' + let active_day = '' + let active_date_prev = [] + let month_cards + const month_buttons = {} + // ---------------------------------------- + // OPTS + // ---------------------------------------- + const { data } = opts + let month_data = [ + { name: 'January', days: 31 }, + { name: 'February', days: 29 }, + { name: 'March', days: 31 }, + { name: 'April', days: 30 }, + { name: 'May', days: 31 }, + { name: 'June', days: 30 }, + { name: 'July', days: 31 }, + { name: 'August', days: 31 }, + { name: 'September', days: 30 }, + { name: 'October', days: 31 }, + { name: 'November', days: 30 }, + { name: 'December', days: 31 }, + ] + // ---------------------------------------- + // PROTOCOL + // ---------------------------------------- + const on = { + 'update_calendar': update_calendar, + 'flip': flip + } + const up_channel = use_protocol('up')({ protocol, state, on }) + // ---------------------------------------- + // TEMPLATE + // ---------------------------------------- + const el = document.createElement('div') + const shadow = el.attachShadow(shopts) + shadow.adoptedStyleSheets = [sheet] + shadow.innerHTML = `
+
+
+
` + const month_filter_wrapper = shadow.querySelector('.month_filter_wrapper') + const scrollbar_wrapper = shadow.querySelector('.scrollbar_wrapper') + // ---------------------------------------- + const scrollbar_wrapper_shadow = scrollbar_wrapper.attachShadow(shopts) + // ---------------------------------------- + // ELEMENTS + // ---------------------------------------- + { // month cards + function make_card (month, i) { + const on = { + 'toggle_month_button': toggle_month_button, + 'toggle_day_button': toggle_day_button + } + const petname = `month_${i}` + const protocol = use_protocol(petname)({ state, on }) + const opts = month + const element = shadowfy()(month_card(opts, protocol)) + const channel = state.net[state.aka[petname]] + return element + } + month_cards = month_data.map(make_card).reverse() + month_filter_wrapper.append(...month_cards) + async function toggle_month_button (message) { + const { data } = message + if (active_day) { + const key = `month_${new Date(active_day + ', 2000').getMonth()}` + const channel = state.net[state.aka[key]] + channel.send({ + head: [id, channel.send.id, channel.mid++], + type: 'toggle_all_days', + data: active_day + }) + active_day = '' + } + if (active_month && active_month !== data) { + const key = `month_${new Date('01 '+ active_month + ', 2000').getMonth()}` + const active_channel = state.net[state.aka[key]] + active_channel.send({ + head: [id, active_channel.send.id, active_channel.mid++], + type: 'toggle_month_button', + data: '' + }) + } + active_month = active_month === data ? '' : data + up_channel.send({ + head: [id, up_channel.send.id, up_channel.mid++], + type: 'set_scroll', + data: { filter: 'MONTH', value: active_month } + }) + } + async function toggle_day_button (message) { + const { data } = message + if (active_month) { + const key = `month_${new Date('01 '+ active_month + ', 2000').getMonth()}` + const active_channel = state.net[state.aka[key]] + active_channel.send({ + head: [id, active_channel.send.id, active_channel.mid++], + type: 'toggle_month_button', + data: '' + }) + active_month = '' + } + + if (active_day && active_day !== data) { + const key = `month_${new Date(active_day + ', 2000').getMonth()}` + const channel = state.net[state.aka[key]] + if (channel) + channel.send({ + head: [id, channel.send.id, channel.mid++], + type: 'toggle_all_days', + data: active_day + }) + } + active_day = active_day === data ? '' : data + + up_channel.send({ + head: [id, up_channel.send.id, up_channel.mid++], + type: 'set_scroll', + data: { filter: 'DATE', value: active_day } + }) + } + } + { // scrollbar + const on = { 'set_scroll': on_set_scroll, status: onstatus } + const protocol = use_protocol('scrollbar')({ state, on }) + opts.horizontal = true + opts.data.img_src.icon_arrow_start = data.img_src.icon_arrow_left + opts.data.img_src.icon_arrow_end = data.img_src.icon_arrow_right + const scroll_opts = opts + const element = scrollbar(scroll_opts, protocol) + + ro.observe(scrollbar_wrapper) + month_filter_wrapper.onscroll = onscroll + + scrollbar_wrapper_shadow.append(element) + + function onscroll (event) { + const scroll_channel = state.net[state.aka.scrollbar] + scroll_channel.send({ + head: [id, scroll_channel.send.id, scroll_channel.mid++], + refs: { }, + type: 'handle_scroll', + }) + } + function on_set_scroll (message) { + console.log('set_scroll', message) + setScrollLeft(message.data) + } + const channel = state.net[state.aka.scrollbar] + function onstatus (message) { + channel.send({ + head: [id, channel.send.id, channel.mid++], + refs: { cause: message.head }, + type: 'update_size', + data: { + sh: month_filter_wrapper.scrollWidth, + ch: month_filter_wrapper.clientWidth, + st: month_filter_wrapper.scrollLeft + } + }) + } + async function setScrollLeft (value) { + month_filter_wrapper.scrollLeft = value + } + } + // ---------------------------------------- + // INIT + // ---------------------------------------- + + return el + + async function flip () { + month_cards.reverse() + month_filter_wrapper.innerHTML = '' + month_filter_wrapper.append(...month_cards) + } + function update_calendar ({ data }) { + const {dates, year} = data + if (active_day) { + const key = `month_${new Date(active_day + ', 2000').getMonth()}` + const channel = state.net[state.aka[key]] + channel.send({ + head: [id, channel.send.id, channel.mid++], + type: 'toggle_all_days', + data: active_day + }) + active_day = '' + } + if (active_month) { + const key = `month_${new Date('01 '+ active_month + ', 2000').getMonth()}` + const active_channel = state.net[state.aka[key]] + active_channel.send({ + head: [id, active_channel.send.id, active_channel.mid++], + type: 'toggle_month_button', + data: '' + }) + active_month = '' + } + + active_date_prev.forEach(date => { + const petname = `month_${new Date(date).getMonth()}` + const channel = state.net[state.aka[petname]] + channel.send({ + head: [id, channel.send.id, channel.mid++], + type: 'toggle_day_highlight', + data: { mode: 'remove_highlight', date } + }) + }) + active_date_prev = dates + + //Leap year check + month_data[1] = ((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0) ? + { name: 'February', days: 29 } : { name: 'February', days: 28 } + const petname = 'month_1' + const channel = state.net[state.aka[petname]] + channel.send({ + head: [id, channel.send.id, channel.mid++], + type: 'toggle_day_button_visibility', + data: month_data[1].days === 29 ? true : false + }) + + dates.forEach(date => { + const petname = `month_${new Date(date).getMonth()}` + const channel = state.net[state.aka[petname]] + channel.send({ + head: [id, channel.send.id, channel.mid++], + type: 'toggle_day_highlight', + data: { mode: 'add_highlight', date } + }) + }) + } +} +function get_theme () { + return ` + .main_wrapper{ + display: flex; + flex-direction: column; + justify-content: end; + min-height: 165px; + } + .month_filter_wrapper { + display: flex; + height: 131px; + width: 100%; + border: 1px solid var(--ac-3); + border-width: 1px 1px 3px 1px; + overflow-x: scroll; + overflow-y: hidden; + scrollbar-width:none; + } + .scrollbar_wrapper{ + background-color: var(--bg_color_2); + } + ::-webkit-scrollbar { + display: none; + } + ` +} +// ---------------------------------------------------------------------------- +function shadowfy (props = {}, sheets = []) { + return element => { + const el = Object.assign(document.createElement('div'), { ...props }) + const sh = el.attachShadow(shopts) + sh.adoptedStyleSheets = sheets + sh.append(element) + return el + } +} +function use_protocol (petname) { + return ({ protocol, state, on = { } }) => { + if (petname in state.aka) throw new Error('petname already initialized') + const { id } = state + const invalid = on[''] || (message => console.error('invalid type', message)) + if (protocol) return handshake(protocol(Object.assign(listen, { id }))) + else return handshake + // ---------------------------------------- + // @TODO: how to disconnect channel + // ---------------------------------------- + function handshake (send) { + state.aka[petname] = send.id + const channel = state.net[send.id] = { petname, mid: 0, send, on } + return protocol ? channel : Object.assign(listen, { id }) + } + function listen (message) { + const [from] = message.head + const by = state.aka[petname] + if (from !== by) return invalid(message) // @TODO: maybe forward + console.log(`[${id}]:${petname}>`, message) + const { on } = state.net[by] + const action = on[message.type] || invalid + action(message) + } + } +} +// ---------------------------------------------------------------------------- +function resources (pool) { + var num = 0 + return factory => { + const prefix = num++ + const get = name => { + const id = prefix + name + if (pool[id]) return pool[id] + const type = factory[name] + return pool[id] = type() + } + return Object.assign(get, factory) + } +} +}).call(this)}).call(this,require('_process'),"/src/node_modules/month-filter/month-filter.js") +},{"_process":2,"month-card":13,"scrollbar":15}],15:[function(require,module,exports){ +(function (process,__filename){(function (){ +const sm_icon_button = require('buttons/sm-icon-button') +/****************************************************************************** + SCROLL COMPONENT +******************************************************************************/ +// ---------------------------------------- +// MODULE STATE & ID +var count = 0 +const [cwd, dir] = [process.cwd(), __filename].map(x => new URL(x, 'file://').href) +const ID = dir.slice(cwd.length) +const STATE = { ids: {}, net: {} } // all state of component module +// ---------------------------------------- +const sheet = new CSSStyleSheet +sheet.replaceSync(get_theme()) +const svgdot_datauri = ` + + + +` +const default_opts = { svgdot_datauri } +const shopts = { mode: 'closed' } +// ---------------------------------------- +module.exports = scrollbar +// ---------------------------------------- +function scrollbar (opts = default_opts, protocol) { + // ---------------------------------------- + // ID + JSON STATE + // ---------------------------------------- + const id = `${ID}:${count++}` // assigns their own name + const status = {} + const state = STATE.ids[id] = { id, status, wait: {}, net: {}, aka: {} } // all state of component instance + const cache = resources({}) + const size = { + content_scrollSize: null, // Width, Height + content_clientSize: null, // Width, Height + content_scrollStart: null, // Left, Top + } + let lastPage + let check = true + // ---------------------------------------- + // OPTS + // ---------------------------------------- + const { + horizontal = false, + data: { + img_src: { + icon_arrow_start = default_opts.svgdot_datauri, + icon_arrow_end = default_opts.svgdot_datauri, + } + } + } = opts + const direction = horizontal ? 'horizontal' : 'vertical' + // ---------------------------------------- + // PROTOCOL + // ---------------------------------------- + const on = { update_size, handle_scroll } + const up_channel= use_protocol('up')({ protocol, state, on }) + // ---------------------------------------- + // TEMPLATE + // ---------------------------------------- + const el = document.createElement('div') + const shadow = el.attachShadow(shopts) + shadow.adoptedStyleSheets = [sheet] + shadow.innerHTML = `
+
+
+
+
+
` + const scrollbar_wrapper = shadow.querySelector('.scrollbar_wrapper') + const bar = shadow.querySelector('.bar') + const bar_wrapper = shadow.querySelector(`.${direction}-bar-wrapper`) + // ---------------------------------------- + const controls_wrapper = shadow.querySelector('.controls') + const controls = controls_wrapper.attachShadow(shopts) + // ---------------------------------------- + // ELEMENTS + // ---------------------------------------- + { // bar + bar.onmousedown = handle_mousedown + } + { // arrow start + const on = { 'click': on_click } + const protocol = use_protocol('arrow_start')({ state, on }) + const opts = { src: icon_arrow_start, activate: false } + const element = shadowfy()(sm_icon_button(opts, protocol)) + controls.append(element) + function on_click (event) { + emit_status() + const ratio = size.content_clientSize / size.content_scrollSize + const data = size.content_scrollStart - 30 / ratio + up_channel.send({ + head: [id, up_channel.send.id, up_channel.mid++], + type: 'set_scroll', + data + }) + } + } + { // arrow end + const on = { 'click': on_click } + const protocol = use_protocol('arrow_end')({ state, on }) + const opts = { src: icon_arrow_end, activate: false } + const element = shadowfy()(sm_icon_button(opts, protocol)) + controls.append(element) + function on_click (event) { + emit_status() + const ratio = size.content_clientSize / size.content_scrollSize + const data = size.content_scrollStart + 30 / ratio + up_channel.send({ + head: [id, up_channel.send.id, up_channel.mid++], + type: 'set_scroll', + data + }) + } + } + // ---------------------------------------- + // INIT + // ---------------------------------------- + setTimeout(() => { + const observer = new IntersectionObserver((entries) => { + entries.forEach((entry) => { + if (entry.isIntersecting) { + handle_scroll() + observer.unobserve(entry.target) + } + }) + }) + observer.observe(scrollbar_wrapper) + }, 2000) + + return el + + function update_size ({ data }) { + const { sh, ch, st } = data + size.content_clientSize = ch + size.content_scrollSize = sh + size.content_scrollStart = st + } + function handle_scroll () { + emit_status() + const ratio = size.content_clientSize / size.content_scrollSize + if (ratio >= 1) el.style.cssText = 'display: none;' + else el.style.cssText = 'display: inline;' + const [prop1, prop2] = horizontal ? ['width', 'left'] : ['height', 'top'] + const percent1 = Math.max(ratio * 100, 10); + if(ratio * 100 < 10) + bar_wrapper.classList.add('shrink'); + else + bar_wrapper.classList.remove('shrink'); + + const percent2 = (size.content_scrollStart / size.content_scrollSize ) * 100 + bar.style.cssText = `${prop1}: ${percent1}%; ${prop2}: ${percent2}%;` + } + function emit_status () { + up_channel.send({ + head: [id, up_channel.send.id, up_channel.mid++], + type: 'status', + data: null + }) + } + function handle_mousedown (e) { + lastPage = horizontal ? e.pageX : e.pageY + // @TODO: + // => maybe refactor to use ELEMENT instead of WINDOW + // https://developer.mozilla.org/en-US/docs/Web/API/Element/mousemove_event + window.onmousemove = handle_mousemove + window.onmouseup = handle_mouseup + } + function handle_mouseup () { + window.onmousemove = null + window.onmouseup = null + } + function handle_mousemove (e) { + emit_status() + const nextPage = horizontal ? e.pageX : e.pageY + const delta = nextPage - lastPage + lastPage = nextPage + const ratio = size.content_clientSize / size.content_scrollSize + const data = size.content_scrollStart + delta / ratio + up_channel.send({ + head: [id, up_channel.send.id, up_channel.mid++], + type: 'set_scroll', + data + }) + } +} +function get_theme () { + return ` + .horizontal-wrapper { + height: 30px; + width: 100%; + flex-direction: row; + position: relative; + } + .horizontal-ctrls-wrapper { + display: flex; + } + .vertical-ctrls-wrapper { + display: flex; + flex-direction: column; + } + .vertical-wrapper { + width: 30px; + height: 100%; + flex-direction: column; + position: relative; + } + .scrollbar_wrapper { + box-sizing: border-box; + display: flex; + } + .scrollbar_wrapper .vertical-bar-wrapper { + flex-direction: column; + height: 88%; + } + .scrollbar_wrapper .vertical-bar-wrapper.shrink { + height: 80%; + } + .scrollbar_wrapper .horizontal-bar-wrapper { + width: 88%; + } + .scrollbar_wrapper .horizontal-bar-wrapper.shrink { + width: 80%; + } + .scrollbar_wrapper .controls { + display: flex; + position: absolute; + bottom: 0; + left: 0; + } + .scrollbar_wrapper .bar_wrapper { + display: flex; + } + .bar_wrapper .vertical-bar { + height: 30px; + } + .bar_wrapper .horizontal-bar { + width: 30px; + } + .bar_wrapper .bar { + position: relative; + background-color: var(--primary_color); + cursor: pointer; + transition: opacity 0.25s linear; + box-shadow:inset 0px 0px 0px 1px var(--bg_color); + } + .bar_wrapper .bar:hover { + cursor: pointer + } + .bar_wrapper .bar:active { + -o-user-select: none; + -ms-user-select: none; + -moz-user-select: none; + -webkit-user-select: none; + user-select: none; + } + ` +} +// ---------------------------------------------------------------------------- +function shadowfy (props = {}, sheets = []) { + return element => { + const el = Object.assign(document.createElement('div'), { ...props }) + const sh = el.attachShadow(shopts) + sh.adoptedStyleSheets = sheets + sh.append(element) + return el + } +} +function use_protocol (petname) { + return ({ protocol, state, on = { } }) => { + if (petname in state.aka) throw new Error('petname already initialized') + const { id } = state + const invalid = on[''] || (message => console.error('invalid type', message)) + if (protocol) return handshake(protocol(Object.assign(listen, { id }))) + else return handshake + // ---------------------------------------- + // @TODO: how to disconnect channel + // ---------------------------------------- + function handshake (send) { + state.aka[petname] = send.id + const channel = state.net[send.id] = { petname, mid: 0, send, on } + return protocol ? channel : Object.assign(listen, { id }) + } + function listen (message) { + const [from] = message.head + const by = state.aka[petname] + if (from !== by) return invalid(message) // @TODO: maybe forward + console.log(`[${id}]:${petname}>`, message) + const { on } = state.net[by] + const action = on[message.type] || invalid + action(message) + } + } +} +// ---------------------------------------------------------------------------- +function resources (pool) { + var num = 0 + return factory => { + const prefix = num++ + const get = name => { + const id = prefix + name + if (pool[id]) return pool[id] + const type = factory[name] + return pool[id] = type() + } + return Object.assign(get, factory) + } +} +}).call(this)}).call(this,require('_process'),"/src/node_modules/scrollbar/scrollbar.js") +},{"_process":2,"buttons/sm-icon-button":10}],16:[function(require,module,exports){ +(function (process,__filename){(function (){ +/****************************************************************************** + SEARCH INPUT COMPONENT +******************************************************************************/ +// ---------------------------------------- +// MODULE STATE & ID +var count = 0 +const [cwd, dir] = [process.cwd(), __filename].map(x => new URL(x, 'file://').href) +const ID = dir.slice(cwd.length) +const STATE = { ids: {}, net: {} } // all state of component module +// ---------------------------------------- +const sheet = new CSSStyleSheet +sheet.replaceSync(get_theme()) +const default_opts = { } +const shopts = { mode: 'closed' } +// ---------------------------------------- +module.exports = input_search +// ---------------------------------------- +function input_search (opts = default_opts, protocol) { + // ---------------------------------------- + // ID + JSON STATE + // ---------------------------------------- + const id = `${ID}:${count++}` // assigns their own name + const status = {} + const state = STATE.ids[id] = { id, status, wait: {}, net: {}, aka: {} } // all state of component instance + const cache = resources({}) + // ---------------------------------------- + // OPTS + // ---------------------------------------- + const { data } = opts + // Assigning all the icons + const { img_src: { + icon_search = `${prefix}/icon_search.svg`, + } } = data + // ---------------------------------------- + // PROTOCOL + // ---------------------------------------- + const on = {} + const channel = use_protocol('up')({ protocol, state, on }) + // ---------------------------------------- + // TEMPLATE + // ---------------------------------------- + const el = document.createElement('div') + const shadow = el.attachShadow(shopts) + shadow.adoptedStyleSheets = [sheet] + shadow.innerHTML = `
+ + ${icon_search} + +
` + const input = shadow.querySelector('.input') + // ---------------------------------------- + // ELEMENTS + // ---------------------------------------- + input.oninput = oninput + // ---------------------------------------- + // INIT + // ---------------------------------------- + + return el + + function oninput (e) { + const { value } = e.target + channel.send({ + head: [id, channel.send.id, channel.mid++], + type: 'value', + data: { filter: 'SEARCH', value } + }) + } +} +function get_theme () { + return ` + .search_input { + width: 100%; + min-width: 100% !important; + height: 30px; + max-height: 40px; + position: relative; + flex-grow: 1; + } + .search_input input { + box-sizing: border-box; + width: 100%; + height: 100%; + border: 2px solid var(--primary_color); + padding: 20px 40px 20px 20px; + outline: none; + font-family: Arial; + font-size: 18px; + letter-spacing: -1px; + background-color: var(--bg_color); + color: var(--primary-color); + } + .search_input input:focus { + border-color: var(--ac-1) !important; + } + .search_input svg { + position: absolute; + right: 10px; + top: 50%; + transform: translateY(-50%); + width: 20px; + height: auto; + } + .search_input svg * { + fill: var(--primary_color); + } + ` +} +// ---------------------------------------------------------------------------- +function shadowfy (props = {}, sheets = []) { + return element => { + const el = Object.assign(document.createElement('div'), { ...props }) + const sh = el.attachShadow(shopts) + sh.adoptedStyleSheets = sheets + sh.append(element) + return el + } +} +function use_protocol (petname) { + return ({ protocol, state, on = { } }) => { + if (petname in state.aka) throw new Error('petname already initialized') + const { id } = state + const invalid = on[''] || (message => console.error('invalid type', message)) + if (protocol) return handshake(protocol(Object.assign(listen, { id }))) + else return handshake + // ---------------------------------------- + // @TODO: how to disconnect channel + // ---------------------------------------- + function handshake (send) { + state.aka[petname] = send.id + const channel = state.net[send.id] = { petname, mid: 0, send, on } + return protocol ? channel : Object.assign(listen, { id }) + } + function listen (message) { + const [from] = message.head + const by = state.aka[petname] + if (from !== by) return invalid(message) // @TODO: maybe forward + console.log(`[${id}]:${petname}>`, message) + const { on } = state.net[by] + const action = on[message.type] || invalid + action(message) + } + } +} +// ---------------------------------------------------------------------------- +function resources (pool) { + var num = 0 + return factory => { + const prefix = num++ + const get = name => { + const id = prefix + name + if (pool[id]) return pool[id] + const type = factory[name] + return pool[id] = type() + } + return Object.assign(get, factory) + } +} +}).call(this)}).call(this,require('_process'),"/src/node_modules/search-input/search-input.js") +},{"_process":2}],17:[function(require,module,exports){ +const shopts = { mode: 'closed' } +// ---------------------------------------- +module.exports = sparkle_effect +// ---------------------------------------- +function sparkle_effect(opts) { + let possibleColors = (opts && opts.colors) || [ + "#D61C59", + "#E7D84B", + "#1B8798", + ]; + + let width = window.innerWidth; + let height = window.innerHeight; + const cursor = { x: width / 2, y: width / 2 }; + const lastPos = { x: width / 2, y: width / 2 }; + const particles = []; + const canvImages = []; + let canvas, context; + const char = "*"; + const el = document.createElement('div') + const shadow = el.attachShadow(shopts) + + function init() { + canvas = document.createElement("canvas"); + context = canvas.getContext("2d"); + canvas.style.top = "0px"; + canvas.style.left = "0px"; + canvas.style.pointerEvents = "none"; + canvas.style.position = "fixed"; + canvas.width = width; + canvas.height = height; + context.font = "21px serif"; + context.textBaseline = "middle"; + context.textAlign = "center"; + + possibleColors.forEach((color) => { + let measurements = context.measureText(char); + let bgCanvas = document.createElement("canvas"); + let bgContext = bgCanvas.getContext("2d"); + + bgCanvas.width = measurements.width; + bgCanvas.height = + measurements.actualBoundingBoxAscent + + measurements.actualBoundingBoxDescent; + + bgContext.fillStyle = color; + bgContext.textAlign = "center"; + bgContext.font = "21px serif"; + bgContext.textBaseline = "middle"; + bgContext.fillText( + char, + bgCanvas.width / 2, + measurements.actualBoundingBoxAscent + ); + + canvImages.push(bgCanvas); + }); + + bindEvents(); + loop(); + } + // Bind events that are needed + async function bindEvents() { + document.body.addEventListener("mousemove", onMouseMove); + document.body.addEventListener("touchmove", onTouchMove, { passive: true }); + document.body.addEventListener("touchstart", onTouchMove, { passive: true }); + window.addEventListener("resize", onWindowResize); + } + + async function onWindowResize(e) { + canvas.width = window.innerWidth; + canvas.height = window.innerHeight; + } + + async function onTouchMove(e) { + if (e.touches.length > 0) { + for (let i = 0; i < e.touches.length; i++) { + addParticle( + e.touches[i].clientX, + e.touches[i].clientY, + canvImages[Math.floor(Math.random() * canvImages.length)] + ); + } + } + } + + async function onMouseMove(e) { + window.requestAnimationFrame(() => { + cursor.x = e.clientX; + cursor.y = e.clientY; + + const distBetweenPoints = Math.hypot( + cursor.x - lastPos.x, + cursor.y - lastPos.y + ); + + if (distBetweenPoints > 1.5) { + addParticle( + cursor.x, + cursor.y, + canvImages[Math.floor(Math.random() * possibleColors.length)] + ); + + lastPos.x = cursor.x; + lastPos.y = cursor.y; + } + }); + } + async function addParticle(x, y, color) { + particles.push(new Particle(x, y, color)); + } + async function updateParticles() { + context.clearRect(0, 0, width, height); + + // Update + for (let i = 0; i < particles.length; i++) { + particles[i].update(context); + } + // Remove dead particles + for (let i = particles.length - 1; i >= 0; i--) { + if (particles[i].lifeSpan < 0) { + particles.splice(i, 1); + } + } + } + async function loop() { + updateParticles(); + requestAnimationFrame(loop); + } + + function Particle(x, y, canvasItem) { + const lifeSpan = Math.floor(Math.random() * 30 + 60); + this.initialLifeSpan = lifeSpan; // + this.lifeSpan = lifeSpan; //ms + this.velocity = { + x: (Math.random() < 0.5 ? -1 : 1) * (Math.random() / 2), + y: Math.random() * 0.7 + 0.9, + }; + this.position = { x: x, y: y }; + this.canv = canvasItem; + + this.update = function (context) { + this.position.x += this.velocity.x; + this.position.y += this.velocity.y; + this.lifeSpan--; + + this.velocity.y += 0.02; + + const scale = Math.max(this.lifeSpan / this.initialLifeSpan, 0); + + context.drawImage( + this.canv, + this.position.x - (this.canv.width / 2) * scale, + this.position.y - this.canv.height / 2, + this.canv.width * scale, + this.canv.height * scale + ); + }; + } + init(); + + shadow.append(canvas) + return el +} + +},{}],18:[function(require,module,exports){ +const white = {} // hsla(0, 0%, 100%, 1) +white.hue = 0 +white.saturation = '0%' +white.lightness = '100%' +white.opacity = 1 +white.color = `hsla(${white.hue}, ${white.saturation}, ${white.lightness}, ${white.opacity})` +const isabelline = {} //hsla(36, 13%, 92%, 1) +isabelline.hue = 36 +isabelline.saturation = '13%' +isabelline.lightness = '92%' +isabelline.opacity = 1 +isabelline.color = `hsla(${isabelline.hue}, ${isabelline.saturation}, ${isabelline.lightness}, ${isabelline.opacity})` +const gray = {} // hsla(40, 1%, 46%, 1) +gray.hue = 40 +gray.saturation = '1%' +gray.lightness = '46%' +gray.opacity = 1 +gray.color = `hsla(${gray.hue}, ${gray.saturation}, ${gray.lightness}, ${gray.opacity})` +const black = {} // hsla(0, 0%, 0%, 1) +black.hue = 0 +black.saturation = '0%' +black.lightness = '0%' +black.opacity = 1 +black.color = `hsla(${black.hue}, ${black.saturation}, ${black.lightness}, ${black.opacity})` +const eerie_black = {} // hsla(0, 0%, 9%, 1) +eerie_black.hue = 0 +eerie_black.saturation = '0%' +eerie_black.lightness = '15%' +eerie_black.opacity = 1 +eerie_black.color = `hsla(${eerie_black.hue}, ${eerie_black.saturation}, ${eerie_black.lightness}, ${eerie_black.opacity})` +const night_black = {} // hsla(0, 0%, 9%, 1) +night_black.hue = 0 +night_black.saturation = '0%' +night_black.lightness = '5%' +night_black.opacity = 1 +night_black.color = `hsla(${night_black.hue}, ${night_black.saturation}, ${night_black.lightness}, ${night_black.opacity})` +const darkblue = {} // hsla(215, 27%, 22%, 1)' +darkblue.hue = 215 +darkblue.saturation = '27%' +darkblue.lightness = '22%' +darkblue.opacity = 1 +darkblue.color = `hsla(${darkblue.hue}, ${darkblue.saturation}, ${darkblue.lightness}, ${darkblue.opacity})` +const green = {} // hsla(121, 97%, 65%, 1) +green.hue = 121 +green.saturation = '97%' +green.lightness = '65%' +green.opacity = 1 +green.color = `hsla(${green.hue}, ${green.saturation}, ${green.lightness}, ${green.opacity})` +const pink = {} // hsla(315, 88%, 81%, 1) +pink.hue = 315 +pink.saturation = '88%' +pink.lightness = '81%' +pink.opacity = 1 +pink.color = `hsla(${pink.hue}, ${pink.saturation}, ${pink.lightness}, ${pink.opacity})` +const purple = {} // hsla(245, 55%, 50%, 1) +purple.hue = 245 +purple.saturation = '55%' +purple.lightness = '50%' +purple.opacity = 1 +purple.color = `hsla(${purple.hue}, ${purple.saturation}, ${purple.lightness}, ${purple.opacity})` + +module.exports = { white, isabelline, gray, black, eerie_black, night_black, darkblue, green, pink, purple } +},{}],19:[function(require,module,exports){ +(function (process,__dirname){(function (){ +const brand = require('theme/brand') +const path = require('path') +const cwd = process.cwd() +const prefix = path.relative(cwd, __dirname) + +const {white, black, eerie_black, night_black, darkblue, green, pink, purple } = brand +const bg_color = night_black.color +const bg_color_2 = black.color +const bg_color_3 = eerie_black.color +const alt_color = white.color +const primary_color = green.color +const ac_1 = darkblue.color +const ac_2 = pink.color +const ac_3 = purple.color +const highlight_color = `hsla(${green.hue}, ${green.saturation}, ${green.lightness}, 0.5)` + +const dark_theme = { + bg_color, + bg_color_2, + bg_color_3, + alt_color, + primary_color, + ac_1, + ac_2, + ac_3, + highlight_color, + + img_src:{ + // social icons + icon_blogger: ``, + icon_discord: ``, + icon_twitter: ``, + icon_github: ``, + // social icons smooth + icon_mastodon:``, + icon_opencollective:``, + icon_matrix:``, + icon_twitter_smooth:``, + icon_github_smooth:``, + icon_cabal:``, + icon_jitsi:``, + icon_discord_smooth:``, + icon_bigbluebutton:``, + icon_youtube:``, + icon_hackmd:``, + icon_protonmail:``, + icon_reddit:``, + icon_keet:` `, + // terminal + icon_info: ``, + icon_terminal: ``, + icon_theme: ``, + // window icons + icon_close_dark: ``, + icon_close_light: ``, + icon_pdf_reader: ``, + icon_pdf_reader_solid:``, + icon_folder: ``, + icon_folder_solid:``, + // arrows + icon_arrow_down: ``, + icon_arrow_up: ``, + icon_arrow_down_light: ``, + icon_arrow_up_light: ``, + sort: ``, + sort_down: ``, + sort_up: ``, + // actions + icon_search : ``, + // images - @TODO: those images below should be svgs as well: + banner_cover : `${prefix}/../assets/images/banner_cover.svg`, + about_us_cover : `${prefix}/../assets/images/about_us_cover.png`, + tree_character : `${prefix}/../assets/images/tree_character.png`, + // others + icon_clock : ``, + icon_link : ``, + icon_calendar : ``, + project_logo_1 : `${prefix}/../assets/images/project_logo_1.png`, + img_robot_1 : `${prefix}/../assets/images/img_robot_1.png`, + img_robot_3 : `${prefix}/../assets/images/img_robot_1_dark.png`, + img_robot_2 : `${prefix}/../assets/images/img_robot_2_dark.png`, + pattern_img_1 : `${prefix}/../assets/images/pattern_img_1.png`, + logo: `${prefix}/../assets/images/logo.png`, + circle: ``, + tick: ``, + + icon_arrow_right: ``, + icon_arrow_left: ``, + icon_the_dat : ``, + + icon_vr: ``, + icon_full_screen: ``, + icon_plus: ``, + } +} + +module.exports = dark_theme +}).call(this)}).call(this,require('_process'),"/src/node_modules/theme/dark-theme") +},{"_process":2,"path":1,"theme/brand":18}],20:[function(require,module,exports){ +(function (process,__dirname){(function (){ +const brand = require('theme/brand') +const path = require('path') +const cwd = process.cwd() +const prefix = path.relative(cwd, __dirname) + +const { white, isabelline, gray, black, darkblue, green, pink, purple } = brand +const bg_color = white.color +const bg_color_2 = isabelline.color +const bg_color_3 = gray.color +const alt_color = black.color +const primary_color = darkblue.color +const ac_1 = green.color +const ac_2 = pink.color +const ac_3 = purple.color +const highlight_color = `hsla(${pink.hue}, ${pink.saturation}, ${pink.lightness}, 0.5)` + +const light_theme = { + bg_color, + alt_color, + bg_color_2, + bg_color_3, + primary_color, + ac_1, + ac_2, + ac_3, + highlight_color, + + img_src:{ + // social icons pixel + icon_blogger: ``, + icon_discord: ``, + icon_twitter: ``, + icon_github: ``, + // social icons smooth + icon_mastodon:``, + icon_opencollective:``, + icon_matrix:``, + icon_twitter_smooth:``, + icon_github_smooth:``, + icon_cabal:``, + icon_jitsi:``, + icon_discord_smooth:``, + icon_bigbluebutton:``, + icon_youtube:``, + icon_hackmd:``, + icon_protonmail:``, + icon_reddit:``, + icon_keet:``, + // terminal + icon_info: ``, + icon_terminal: ``, + icon_theme: ``, + // window icons + icon_close_dark: ``, + icon_close_light: ``, + icon_pdf_reader: ``, + icon_pdf_reader_solid:``, + icon_folder: ``, + icon_folder_solid:``, + // arrows + icon_arrow_down: ``, + icon_arrow_up: ``, + icon_arrow_down_light: ``, + icon_arrow_up_light: ``, + sort: ``, + sort_down: ``, + sort_up: ``, + // actions + icon_search : ``, + // images - @TODO: should be svgs as well + banner_cover : `${prefix}/../assets/images/banner_cover.svg`, + about_us_cover : `${prefix}/../assets/images/about_us_cover.png`, + tree_character : `${prefix}/../assets/images/tree_character.png`, + // others + icon_clock : ``, + icon_link : ``, + icon_calendar : ``, + project_logo_1 : `${prefix}/../assets/images/project_logo_1.png`, + img_robot_1 : `${prefix}/../assets/images/img_robot_1.png`, + img_robot_3 : `${prefix}/../assets/images/img_robot_1_light.png`, + img_robot_2 : `${prefix}/../assets/images/img_robot_2_light.png`, + pattern_img_1 : `${prefix}/../assets/images/pattern_img_1.png`, + logo: `${prefix}/../assets/images/logo.png`, + circle: ``, + tick: ``, + + icon_arrow_right: ``, + icon_arrow_left: ``, + icon_the_dat : ``, + + icon_vr: ``, + icon_full_screen: ``, + icon_plus: ``, + } +} + +module.exports = light_theme +}).call(this)}).call(this,require('_process'),"/src/node_modules/theme/lite-theme") +},{"_process":2,"path":1,"theme/brand":18}],21:[function(require,module,exports){ +(function (process,__filename){(function (){ +/****************************************************************************** + TIMELINE CARD COMPONENT +******************************************************************************/ +// ---------------------------------------- +// MODULE STATE & ID +var count = 0 +const [cwd, dir] = [process.cwd(), __filename].map(x => new URL(x, 'file://').href) +const ID = dir.slice(cwd.length) +const STATE = { ids: {}, net: {} } // all state of component module +// ---------------------------------------- +const sheet = new CSSStyleSheet +sheet.replaceSync(get_theme()) +const default_opts = { } +const shopts = { mode: 'closed' } +// ---------------------------------------- +module.exports = timeline_card +// ---------------------------------------- +function timeline_card (opts = default_opts) { + // ---------------------------------------- + // ID + JSON STATE + // ---------------------------------------- + const id = `${ID}:${count++}` // assigns their own name + const status = {} + const state = STATE.ids[id] = { id, status, wait: {}, net: {}, aka: {} } // all state of component instance + const cache = resources({}) + // ---------------------------------------- + // OPTS + // ---------------------------------------- + const { data, date, time, link, title, desc, tags} = opts + // Assigning all the icons + const { img_src } = data + const { + icon_clock, + icon_link, + icon_calendar, + } = img_src + // ---------------------------------------- + // PROTOCOL + // ---------------------------------------- + const on = {} + const channel = use_protocol('up')({ state, on }) + // ---------------------------------------- + // TEMPLATE + // ---------------------------------------- + const el = document.createElement('div') + el.style.height = "100%" + const shadow = el.attachShadow(shopts) + shadow.adoptedStyleSheets = [sheet] + shadow.innerHTML = `
+
+
+
${icon_calendar} ${date}
+
${time === '' ? '' : icon_clock } ${time}
+
${icon_link}
+
+
${title}
+
${desc}
+
+
` + // ---------------------------------------- + // INIT + // ---------------------------------------- + + return el +} +function get_theme () { + return ` + * { + box-sizing: border-box; + } + .timeline_card { + display: flex; + flex-direction:column; + justify-content:space-between; + height: 100%; + width: 100%; + line-height: normal; + background-color: var(--bg_color); + color: var(--primary_color) !important; + border: 1px solid var(--ac-3); + container-type: inline-size; + } + .content_wrapper { + padding: 20px; + } + .icon_wrapper { + display: flex; + gap: 20px; + } + .icon_wrapper div { + display: flex; + gap: 5px; + font-size: 16px; + align-items: center; + } + .icon_wrapper svg *{ + fill: var(--primary_color); + } + .icon_wrapper img { + width: 20px; + height: 20px; + } + .icon_wrapper div:nth-last-child(1) { + margin-left: auto; + } + .title { + margin-top: 20px; + margin-bottom: 5px; + font-size: 18px; + font-weight: 700; + line-height: 16px; + } + .desc { + display: flex; + font-size: 14px; + line-height: 16px; + max-height: 50px; + overflow: hidden; + text-overflow: ellipsis; + word-break: break-word; + } + .tags_wrapper { + display: flex; + flex-wrap: wrap; + } + .tag { + flex-grow: 1; + min-width: max-content; + padding: 5px 10px; + border: 1px solid var(--ac-3); + // line-height:0px; + text-align: center; + } + ` +} +// ---------------------------------------------------------------------------- +function shadowfy (props = {}, sheets = []) { + return element => { + const el = Object.assign(document.createElement('div'), { ...props }) + const sh = el.attachShadow(shopts) + sh.adoptedStyleSheets = sheets + sh.append(element) + return el + } +} +function use_protocol (petname) { + return ({ protocol, state, on = { } }) => { + if (petname in state.aka) throw new Error('petname already initialized') + const { id } = state + const invalid = on[''] || (message => console.error('invalid type', message)) + if (protocol) return handshake(protocol(Object.assign(listen, { id }))) + else return handshake + // ---------------------------------------- + // @TODO: how to disconnect channel + // ---------------------------------------- + function handshake (send) { + state.aka[petname] = send.id + const channel = state.net[send.id] = { petname, mid: 0, send, on } + return protocol ? channel : Object.assign(listen, { id }) + } + function listen (message) { + const [from] = message.head + const by = state.aka[petname] + if (from !== by) return invalid(message) // @TODO: maybe forward + console.log(`[${id}]:${petname}>`, message) + const { on } = state.net[by] + const action = on[message.type] || invalid + action(message) + } + } +} +// ---------------------------------------------------------------------------- +function resources (pool) { + var num = 0 + return factory => { + const prefix = num++ + const get = name => { + const id = prefix + name + if (pool[id]) return pool[id] + const type = factory[name] + return pool[id] = type() + } + return Object.assign(get, factory) + } +} +}).call(this)}).call(this,require('_process'),"/src/node_modules/timeline-card/timeline-card.js") +},{"_process":2}],22:[function(require,module,exports){ +(function (process,__filename){(function (){ +const timeline_card = require('timeline-card') +const scrollbar = require('scrollbar') +/****************************************************************************** + APP TIMELINE COMPONENT +******************************************************************************/ +// ---------------------------------------- +// MODULE STATE & ID +var count = 0 +const [cwd, dir] = [process.cwd(), __filename].map(x => new URL(x, 'file://').href) +const ID = dir.slice(cwd.length) +const STATE = { ids: {}, net: {} } // all state of component module +// ---------------------------------------- +const sheet = new CSSStyleSheet +sheet.replaceSync(get_theme()) +const default_opts = { } +const shopts = { mode: 'closed' } +// ---------------------------------------- +module.exports = timeline_cards +// ---------------------------------------- +function timeline_cards (opts = default_opts, protocol) { + // ---------------------------------------- + // RESOURCE POOL (can't be serialized) + // ---------------------------------------- + const ro = new ResizeObserver(entries => { + console.log('ResizeObserver:terminal:resize') + // !sorting && set_scroll_top(timeline_wrapper.scrollHeight) + const scroll_channel = state.net[state.aka.scrollbar] + scroll_channel.send({ + head: [id, scroll_channel.send.id, scroll_channel.mid++], + refs: { }, + type: 'handle_scroll', + }) + }) + // ---------------------------------------- + // ID + JSON STATE + // ---------------------------------------- + const id = `${ID}:${count++}` // assigns their own name + const status = {} + const state = STATE.ids[id] = { id, status, wait: {}, net: {}, aka: {} } // all state of component instance + const cache = resources({}) + status.separators = [] + status.years = [] + status.cards = [] + let sorting = true // latest to oldest + let card_group, card_group_rev, card_filter, fragment + let card_index = 0 + let card_index_rev = 0 + let scroll_dir = true + let timeline_container = [] + // ---------------------------------------- + // OPTS + // ---------------------------------------- + const { data, cards_data, years } = opts + // Data preprocessing + status.years = years + status.years_max = [...years] + card_filter = [...cards_data] + const tags = new Set(cards_data.flatMap(card => card.tags)) + status.YEAR = new Date(cards_data[0].date_raw).getFullYear() + // ---------------------------------------- + // PROTOCOL + // ---------------------------------------- + const PROTOCOL = {} + const on = { + 'set_scroll': set_scroll, + 'set_filter': set_filter + } + const up_channel = use_protocol('up')({ protocol, state, on }) + // ---------------------------------------- + // TEMPLATE + // ---------------------------------------- + const el = document.createElement('div') + const shadow = el.attachShadow(shopts) + shadow.adoptedStyleSheets = [sheet] + shadow.innerHTML = ` +
+
+
+
+
+
+ ` + const scrollbar_wrapper = shadow.querySelector('.scrollbar_wrapper') + const timeline_wrapper = shadow.querySelector('.timeline_wrapper') + const current_separator = shadow.querySelector('.current_separator') + // ---------------------------------------- + // ---------------------------------------- + // ELEMENTS + // ---------------------------------------- + { // timeline cards + const on = {} + append_cards(0, 10) + timeline_wrapper.onscroll = onscroll + } + { // scrollbar + const on = { 'set_scroll': on_set_scroll, status: onstatus } + const protocol = use_protocol('scrollbar')({ state, on }) + opts.data.img_src.icon_arrow_start = opts.data.img_src.icon_arrow_up + opts.data.img_src.icon_arrow_end = opts.data.img_src.icon_arrow_down + const scroll_opts = { data } + const element = shadowfy()(scrollbar(scroll_opts, protocol)) + scrollbar_wrapper.append(element) + + const channel = state.net[state.aka.scrollbar] + ro.observe(timeline_wrapper) + async function on_set_scroll (message) { set_scroll_top(message.data) } + async function onstatus (message) { + channel.send({ + head: [id, channel.send.id, channel.mid++], + refs: { cause: message.head }, + type: 'update_size', + data: { + sh: timeline_wrapper.scrollHeight, + ch: timeline_wrapper.clientHeight, + st: timeline_wrapper.scrollTop + } + }) + } + } + // ---------------------------------------- + // INIT + // ---------------------------------------- + current_separator.innerHTML = sorting ? Math.max(...status.years) : Math.min(...status.years) + return el + + async function make_card (card_data) { + const index = scroll_dir ? card_index : card_index_rev + const protocol = use_protocol(`card_${index}`)({ state, on }) + const opts = card_data + const element = shadowfy()(timeline_card(opts, protocol)) + const year = card_data.date.slice(-4) + let last_year + if(scroll_dir) + last_year = index == 0 ? undefined : card_filter[index - 1].date.slice(-4) + else + last_year = card_filter.length == index ? undefined : card_filter[index].date.slice(-4) + + if (last_year !== year) { + const separator = document.createElement('div') + separator.innerHTML = year + separator.classList.add('separator') + status.separators.push(separator) + fragment.appendChild(separator) + + if(scroll_dir){ + card_group = document.createElement('div') + card_group.classList.add('card_group') + fragment.appendChild(card_group) + } + else{ + card_group_rev = document.createElement('div') + card_group_rev.classList.add('card_group') + fragment.appendChild(card_group_rev) + } + } + element.idx = index + if(scroll_dir){ + card_group.append(element) + card_index++ + } + else{ + card_group_rev.prepend(element) + card_index_rev-- + } + timeline_container.push(element) + } + async function clear_timeline(){ + timeline_wrapper.innerHTML = '' + timeline_container = [] + status.separators = [] + } + async function append_cards(start, end){ + scroll_dir = true + fragment = document.createDocumentFragment() + card_filter.slice(start, end).map(make_card) + timeline_wrapper.appendChild(fragment) + } + async function prepend_cards(start, end){ + scroll_dir = false + fragment = document.createDocumentFragment() + card_filter.slice(start, end).reverse().map(make_card) + timeline_wrapper.prepend(fragment) + } + async function onscroll () { + const timeline_top = timeline_wrapper.getBoundingClientRect().top + const timeline_height = timeline_wrapper.scrollHeight + const timeline_scrollTop = timeline_wrapper.scrollTop + //Bottom or top has reached load more cards + if(0 < card_index_rev && timeline_scrollTop < timeline_height/10){ + set_scroll_top(timeline_height/10) + prepend_cards(card_index_rev < 10 ? 0 : card_index_rev - 10, card_index_rev) + } + else if(card_filter.length > card_index && timeline_height < timeline_scrollTop + 1000){ + append_cards(card_index, card_index+10) + } + + const scroll_channel = state.net[state.aka.scrollbar] + scroll_channel.send({ + head: [id, scroll_channel.send.id, scroll_channel.mid++], + type: 'handle_scroll' + }) + + let check = true //to check if scrolling was successful using separators + //scroll using separators as ref + status.separators.some(separator => { + const child_top = separator.getBoundingClientRect().top + if (child_top && child_top >= timeline_top && child_top < timeline_top + 10) { + const year = separator.innerHTML + status.YEAR = year + check = false + return true + } + }) + //else scroll using cards as ref + if (check) + timeline_container.some(card => { + const { idx } = card + const child_top = card.getBoundingClientRect().top + if (child_top && child_top >= timeline_top - 180 && child_top < timeline_top + 40) { + const year = cards_data[idx].date.slice(-4) + status.YEAR = year + return true + } + }) + // Update the year_button + up_channel.send({ + head: [id, up_channel.send.id, up_channel.mid++], + type: 'update_timeline_filter', + data: { month: status.MONTH , year: status.YEAR } + }) + up_channel.send({ + head: [id, up_channel.send.id, up_channel.mid++], + type: 'update_calendar', + data: { check: false, year: status.YEAR} + }) + current_separator.innerHTML = status.YEAR + } + async function set_scroll ({ data }) { + scroll_dir = true + //for scroll by year + if (data.filter === 'YEAR'){ + //Remove all cards + clear_timeline() + //Find the first card of the year + card_index = card_index < card_filter.length && Number(card_filter[card_index].date.slice(-5)) > data.value ? card_index : 0 + for (const card_data of card_filter.slice(card_index)){ + const temp = Number(card_data.date.slice(-5)) + if(temp <= data.value){ + card_index_rev = card_index + break + } + card_index++ + } + //Populate somecards cards around the first card + const scroll_index = card_index < 10 ? card_index : 10 + append_cards(card_index, card_index + 10) + //scroll to the first card + status[data.filter] = data.value + set_scroll_top(1) + current_separator.innerHTML = data.value + prepend_cards(card_index_rev - scroll_index, card_index_rev) + }//otherwise cards are needed + else if (data.value){ + //load the cards + const filter_date = new Date(data.value + ' ' + status.YEAR).getTime() + fragment = document.createDocumentFragment() + scroll_dir = false + for(i=card_index_rev; i >= 0 && card_filter[i].date_raw <= filter_date; i--){ + make_card(card_filter[i]) + } + scroll_dir = true + for(i=card_index; i < card_filter.length && card_filter[i].date_raw >= filter_date; i++){ + make_card(card_filter[i]) + } + timeline_wrapper.appendChild(fragment) + + //scroll to the cards + status[data.filter] = data.value + let check = true + timeline_container.some(card => { + const { idx } = card + const card_data = cards_data[idx] + const card_date = card_data.date_raw + if (card_date === filter_date) { + //remove highlight on previous cards + if(check && status.cards){ + set_scroll_top(card.getBoundingClientRect().top - timeline_wrapper.getBoundingClientRect().top + timeline_wrapper.scrollTop) + + check = false + status.cards.forEach(status_card => { + status_card.classList.remove('active') + }) + if(status.cards[0] === card){ + status.cards = [] + return true + } + status.cards = [] + } + //add highlight + if(data.filter === 'DATE'){ + card.classList.add('active') + status.cards.push(card) + } + } + else if(!check){ + return true + } + }) + }//otherwise it means we need to remove highlight + else if(status.cards){ + status.cards.forEach(status_card => { + status_card.classList.remove('active') + }) + status.cards = [] + return + } + + } + async function set_scroll_top (value) { + timeline_wrapper.scrollTop = value + } + async function set_filter ({ data }) { + //Store filter value + status[data.filter] = data.value + card_filter = [...cards_data] + //filter the json data + if (status.SEARCH) card_filter = card_filter.filter((card_data) => { + return card_data.title.toLowerCase().match(status.SEARCH.toLowerCase()) + }) + if (status.STATUS && status.STATUS !== 'ALL') card_filter = card_filter.filter((card_data) => { + return card_data.active_state === status.STATUS && card_data + }) + if (status.TAGS && status.TAGS !== 'ALL') { + card_filter = card_filter.filter((card_data) => { + return card_data.tags.includes(status.TAGS) && card_data + }) + } + //update timeline_cards + card_index = card_index_rev = 0 + clear_timeline() + append_cards(0, card_filter.length < 10 ? card_filter.length : 10) + //Update scrollbar and calendar + const channel = state.net[state.aka.scrollbar] + channel.send({ + head: [id, channel.send.id, channel.mid++], + type: 'handle_scroll' + }) + if (!card_filter[0]) return + + set_scroll_top(0) + up_channel.send({ + head: [id, up_channel.send.id, up_channel.mid++], + type: 'update_calendar', + data: { check: true, year: status.YEAR} + })//boolean argument indicates that this request is coming from set_filter + } +} +function get_theme () { + return` + *{ + box-sizing: border-box; + } + .timeline_wrapper { + display: flex; + flex-direction: column; + width: 100%; + height: 500px; + overflow: scroll; + gap: 20px; + scrollbar-width: none; /* For Firefox */ + } + .timeline_wrapper.hide { + display: none; + } + .timeline_wrapper .card_group { + width: 100%; + display: grid; + gap: 20px; + grid-template-columns: 12fr; + padding: 0 2px; + } + .timeline_wrapper .card_group > .active{ + outline: 4px solid var(--ac-1); + } + .timeline_wrapper .card_group > .hide{ + display: none; + } + .timeline_wrapper::-webkit-scrollbar { + display: none; + } + .timeline_wrapper .separator{ + background-color: var(--ac-1); + text-align: center; + margin: 0 4px; + border: 1px solid var(--ac-3); + position: relative; + z-index: 2; + } + > div:last-child{ + border-left: 1px solid var(--ac-3); + } + .current_separator{ + position: absolute; + display: block; + top: 0; + width: calc(100% - 39px); + background-color: var(--ac-1); + text-align: center; + margin: 0 4px; + border: 1px solid var(--ac-3); + z-index: 1; + } + .scrollbar_wrapper{ + display: flex; + } + @container(min-width: 400px) { + .timeline_wrapper .card_group:last-child, + .timeline_wrapper .separator:last-child{ + margin-bottom: 300px; + } + } + @container(min-width: 768px) { + .timeline_wrapper .card_group { + grid-template-columns: repeat(2, 6fr); + } + } + @container(min-width: 1200px) { + .timeline_wrapper .card_group { + grid-template-columns: repeat(3, 4fr); + } + } + ` +} +// ---------------------------------------------------------------------------- +function shadowfy (props = {}, sheets = []) { + return element => { + const el = Object.assign(document.createElement('div'), { ...props }) + const sh = el.attachShadow(shopts) + sh.adoptedStyleSheets = sheets + sh.append(element) + return el + } +} +function use_protocol (petname) { + return ({ protocol, state, on = { } }) => { + if (petname in state.aka) throw new Error('petname already initialized') + const { id } = state + const invalid = on[''] || (message => console.error('invalid type', message)) + if (protocol) return handshake(protocol(Object.assign(listen, { id }))) + else return handshake + // ---------------------------------------- + // @TODO: how to disconnect channel + // ---------------------------------------- + function handshake (send) { + state.aka[petname] = send.id + const channel = state.net[send.id] = { petname, mid: 0, send, on } + return protocol ? channel : Object.assign(listen, { id }) + } + function listen (message) { + const [from] = message.head + const by = state.aka[petname] + if (from !== by) return invalid(message) // @TODO: maybe forward + console.log(`[${id}]:${petname}>`, message) + const { on } = state.net[by] + const action = on[message.type] || invalid + action(message) + } + } +} +// ---------------------------------------------------------------------------- +function resources (pool) { + var num = 0 + return factory => { + const prefix = num++ + const get = name => { + const id = prefix + name + if (pool[id]) return pool[id] + const type = factory[name] + return pool[id] = type() + } + return Object.assign(get, factory) + } +} +}).call(this)}).call(this,require('_process'),"/src/node_modules/timeline-cards/timeline-cards.js") +},{"_process":2,"scrollbar":15,"timeline-card":21}],23:[function(require,module,exports){ +(function (process,__filename){(function (){ +const search_input = require('search-input') +const select_button = require('buttons/select-button') +const sm_icon_button = require('buttons/sm-icon-button') +const year_button = require('buttons/year-button') +/****************************************************************************** + TIMELINE FILTER COMPONENT +******************************************************************************/ +// ---------------------------------------- +// MODULE STATE & ID +var count = 0 +const [cwd, dir] = [process.cwd(), __filename].map(x => new URL(x, 'file://').href) +const ID = dir.slice(cwd.length) +const STATE = { ids: {}, net: {} } // all state of component module +// ---------------------------------------- +const sheet = new CSSStyleSheet +sheet.replaceSync(get_theme()) +const default_opts = { } +const shopts = { mode: 'closed' } +// ---------------------------------------- +module.exports = timeline_filter +// ---------------------------------------- +function timeline_filter (opts = default_opts, protocol) { + // ---------------------------------------- + // ID + JSON STATE + // ---------------------------------------- + const id = `${ID}:${count++}` // assigns their own name + const status = {} + const state = STATE.ids[id] = { id, status, wait: {}, net: {}, aka: {} } // all state of component instance + const cache = resources({}) + // ---------------------------------------- + // OPTS + // ---------------------------------------- + const { img_src : { icon_arrow_up = `${prefix}/icon_arrow_up.svg` }} = opts.data + // ---------------------------------------- + // PROTOCOL + // ---------------------------------------- + const on = { update_timeline_filter } + const up_channel = use_protocol('up')({ protocol, state, on }) + // ---------------------------------------- + // TEMPLATE + // ---------------------------------------- + const el = document.createElement('div') + const shadow = el.attachShadow(shopts) + shadow.adoptedStyleSheets = [sheet] + shadow.innerHTML = `
+
+
+
+
` + const timeline_filter = shadow.querySelector('.timeline_filter') + const date_wrapper = shadow.querySelector('.date_wrapper') + // ---------------------------------------- + // ELEMENTS + // ---------------------------------------- + { // search project + const on = { 'value': on_value } + const protocol = use_protocol('search_project')({ state, on }) + const search_opts = opts + const element = shadowfy()(search_input(search_opts, protocol)) + timeline_filter.prepend(element) + function on_value (message) { + up_channel.send({ + head: [id, up_channel.send.id, up_channel.mid++], + refs: { cause: message.head }, + type: 'value', + data: message.data + }) + } + } + { // tag button + const on = { 'value': on_value } + const protocol = use_protocol('tag_button')({ state, on }) + const tag_opts = { data: opts.data, name: 'EVENT TYPE', choices: opts.tags } + const element = shadowfy()(select_button(tag_opts, protocol)) + timeline_filter.prepend(element) + function on_value (message) { + up_channel.send({ + head: [id, up_channel.send.id, up_channel.mid++], + refs: { cause: message.head }, + type: 'value', + data: message.data + }) + } + } + { // status button + const on = { 'value': on_value } + const protocol = use_protocol('status_button')({ state, on }) + const status_opts = { data: opts.data, name: 'LOCATION', choices: ['ACTIVE', 'INACTIVE', 'PAUSED'] } + const element = shadowfy()(select_button(status_opts, protocol)) + timeline_filter.prepend(element) + function on_value (message) { + up_channel.send({ + head: [id, up_channel.send.id, up_channel.mid++], + refs: { cause: message.head }, + type: 'value', + data: message.data + }) + } + } + { // month button + const on = { 'click': on_click } + const protocol = use_protocol('month_button')({ state, on }) + const opts = { src: icon_arrow_up, activate: true } + const element = shadowfy()(sm_icon_button(opts, protocol)) + date_wrapper.append(element) + function on_click (message) { + up_channel.send({ + head: [id, up_channel.send.id, up_channel.mid++], + type: 'toggle_month_filter' + }) + } + } + { // year button + const on = { 'click': on_click } + const protocol = use_protocol('year_button')({ state, on }) + const year_opts = { data: opts.data, latest_date: opts.latest_date } + const element = shadowfy()(year_button(year_opts, protocol)) + date_wrapper.append(element) + function on_click (message) { + up_channel.send({ + head: [id, up_channel.send.id, up_channel.mid++], + refs: { cause: message.head }, + type: 'toggle_year_filter' + }) + } + } + // ---------------------------------------- + // INIT + // ---------------------------------------- + + return el + + function update_timeline_filter (message) { + const channel = state.net[state.aka.year_button] + channel.send({ + head: [id, channel.send.id, channel.mid++], + refs: { cause: message.head }, + type: 'update_label', + data: message.data + }) + } +} +function get_theme () { + return ` + .filter_wrapper { + container-type: inline-size; + position:relative; + z-index:4; + } + .timeline_filter { + display: grid; + grid-template-columns: 12fr; + align-items: flex-start; + } + .date_wrapper { + display: grid; + grid-template-columns: .5fr 12fr; + } + @container (min-width: 510px) { + .timeline_filter { + grid-template-columns: 1fr 1fr 9fr .5fr; + } + } + ` +} +// ---------------------------------------------------------------------------- +function shadowfy (props = {}, sheets = []) { + return element => { + const el = Object.assign(document.createElement('div'), { ...props }) + const sh = el.attachShadow(shopts) + sh.adoptedStyleSheets = sheets + sh.append(element) + return el + } +} +function use_protocol (petname) { + return ({ protocol, state, on = { } }) => { + if (petname in state.aka) throw new Error('petname already initialized') + const { id } = state + const invalid = on[''] || (message => console.error('invalid type', message)) + if (protocol) return handshake(protocol(Object.assign(listen, { id }))) + else return handshake + // ---------------------------------------- + // @TODO: how to disconnect channel + // ---------------------------------------- + function handshake (send) { + state.aka[petname] = send.id + const channel = state.net[send.id] = { petname, mid: 0, send, on } + return protocol ? channel : Object.assign(listen, { id }) + } + function listen (message) { + const [from] = message.head + const by = state.aka[petname] + if (from !== by) return invalid(message) // @TODO: maybe forward + console.log(`[${id}]:${petname}>`, message) + const { on } = state.net[by] + const action = on[message.type] || invalid + action(message) + } + } +} +// ---------------------------------------------------------------------------- +function resources (pool) { + var num = 0 + return factory => { + const prefix = num++ + const get = name => { + const id = prefix + name + if (pool[id]) return pool[id] + const type = factory[name] + return pool[id] = type() + } + return Object.assign(get, factory) + } +} +}).call(this)}).call(this,require('_process'),"/src/node_modules/timeline-filter/timeline-filter.js") +},{"_process":2,"buttons/select-button":9,"buttons/sm-icon-button":10,"buttons/year-button":11,"search-input":16}],24:[function(require,module,exports){ +(function (process,__filename){(function (){ +const app_timeline = require('app-timeline') +/****************************************************************************** + TIMELINE PAGE COMPONENT +******************************************************************************/ +// ---------------------------------------- +// MODULE STATE & ID +var count = 0 +const [cwd, dir] = [process.cwd(), __filename].map(x => new URL(x, 'file://').href) +const ID = dir.slice(cwd.length) +const STATE = { ids: {}, net: {} } // all state of component module +// ---------------------------------------- +const sheet = new CSSStyleSheet +sheet.replaceSync(get_theme()) +const default_opts = { } +const shopts = { mode: 'closed' } +// ---------------------------------------- +module.exports = timeline_page +// ---------------------------------------- +function timeline_page (opts = default_opts, protocol) { + // ---------------------------------------- + // ID + JSON STATE + // ---------------------------------------- + const id = `${ID}:${count++}` // assigns their own name + const status = {} + const state = STATE.ids[id] = { id, status, wait: {}, net: {}, aka: {} } // all state of component instance + const cache = resources({}) + // ---------------------------------------- + // OPTS + // ---------------------------------------- + const { data } = opts + // ---------------------------------------- + // PROTOCOL + // ---------------------------------------- + const on = {} + const up_channel = use_protocol('up')({ protocol, state, on }) + // ---------------------------------------- + // TEMPLATE + // ---------------------------------------- + const el = document.createElement('div') + const shadow = el.attachShadow(shopts) + shadow.adoptedStyleSheets = [sheet] + shadow.innerHTML = `
+
+
` + const main = shadow.querySelector('.main') + // ---------------------------------------- + // ELEMENTS + // ---------------------------------------- + { // app timeline + const on = {} + const protocol = use_protocol('app_timeline')({ state, on }) + const opts = { data } + const element = shadowfy()(app_timeline(opts, protocol)) + main.append(element) + } + // ---------------------------------------- + // INIT + // ---------------------------------------- + + return el +} +function get_theme () { + return ` + * { + box-sizing: border-box; + } + .main-wrapper { + container-type: inline-size; + } + .main { + margin: 0; + padding: 30px 10px; + opacity: 1; + background-size: 16px 16px; + } + @container (min-width: 856px) { + .main { + padding-inline: 20px !important; + } + } + ` +} +// ---------------------------------------------------------------------------- +function shadowfy (props = {}, sheets = []) { + return element => { + const el = Object.assign(document.createElement('div'), { ...props }) + const sh = el.attachShadow(shopts) + sh.adoptedStyleSheets = sheets + sh.append(element) + return el + } +} +function use_protocol (petname) { + return ({ protocol, state, on = { } }) => { + if (petname in state.aka) throw new Error('petname already initialized') + const { id } = state + const invalid = on[''] || (message => console.error('invalid type', message)) + if (protocol) return handshake(protocol(Object.assign(listen, { id }))) + else return handshake + // ---------------------------------------- + // @TODO: how to disconnect channel + // ---------------------------------------- + function handshake (send) { + state.aka[petname] = send.id + const channel = state.net[send.id] = { petname, mid: 0, send, on } + return protocol ? channel : Object.assign(listen, { id }) + } + function listen (message) { + const [from] = message.head + const by = state.aka[petname] + if (from !== by) return invalid(message) // @TODO: maybe forward + console.log(`[${id}]:${petname}>`, message) + const { on } = state.net[by] + const action = on[message.type] || invalid + action(message) + } + } +} +// ---------------------------------------------------------------------------- +function resources (pool) { + var num = 0 + return factory => { + const prefix = num++ + const get = name => { + const id = prefix + name + if (pool[id]) return pool[id] + const type = factory[name] + return pool[id] = type() + } + return Object.assign(get, factory) + } +} +}).call(this)}).call(this,require('_process'),"/src/node_modules/timeline-page/timeline-page.js") +},{"_process":2,"app-timeline":7}],25:[function(require,module,exports){ +(function (process,__filename){(function (){ +/****************************************************************************** + YEAR FILTER COMPONENT +******************************************************************************/ +// ---------------------------------------- +// MODULE STATE & ID +var count = 0 +const [cwd, dir] = [process.cwd(), __filename].map(x => new URL(x, 'file://').href) +const ID = dir.slice(cwd.length) +const STATE = { ids: {}, net: {} } // all state of component module +// ---------------------------------------- +const sheet = new CSSStyleSheet +sheet.replaceSync(get_theme()) +const default_opts = { } +const shopts = { mode: 'closed' } +// ---------------------------------------- +module.exports = year_filter +// ---------------------------------------- +function year_filter (opts = default_opts, protocol) { + // ---------------------------------------- + // ID + JSON STATE + // ---------------------------------------- + const id = `${ID}:${count++}` // assigns their own name + const status = {} + const state = STATE.ids[id] = { id, status, wait: {}, net: {}, aka: {} } // all state of component instance + const cache = resources({}) + // ---------------------------------------- + let active_state = '' + const year_buttons = {} + // ---------------------------------------- + // OPTS + // ---------------------------------------- + const { latest_year, oldest_year, visitor } = opts + // ---------------------------------------- + // PROTOCOL + // ---------------------------------------- + const on = { + 'update_year_filter': on_active_state, + 'flip': flip + } + const channel = use_protocol('up')({ protocol, state, on }) + // ---------------------------------------- + // TEMPLATE + // ---------------------------------------- + const el = document.createElement('div') + const shadow = el.attachShadow(shopts) + shadow.adoptedStyleSheets = [sheet] + shadow.innerHTML = `
` + const year_wrapper = shadow.querySelector('.year_wrapper') + // ---------------------------------------- + // ELEMENTS + // ---------------------------------------- + for (let i = oldest_year; i <= latest_year; i++) { + const year_button = document.createElement('span') + year_button.classList.add('year_button') + year_button.innerHTML = i.toString() + year_button.onclick = toggle_active_state + year_buttons[i.toString()] = year_button + year_wrapper.prepend(year_button) + } + // ---------------------------------------- + // INIT + // ---------------------------------------- + on_active_state({ data: latest_year }) + + return el + + function toggle_active_state (e) { + const selected_year = e.target.innerHTML + if (active_state) year_buttons[active_state].classList.toggle('active') + active_state = selected_year + e.target.classList.toggle('active') + channel.send({ + head: [id, channel.send.id, channel.mid++], + type: 'set_scroll', + data: { value: Number(active_state), filter: 'YEAR' } + }) + } + function on_active_state ({ data: year_button }) { + if (active_state) year_buttons[active_state].classList.remove('active') + year_buttons[year_button].classList.add('active') + active_state = year_button + } + function flip ({ data: sorting }) { + const action = sorting ? 'prepend' : 'append' + year_wrapper.innerHTML = '' + for (let i = oldest_year; i <= latest_year; i++) { + const year_button = document.createElement('span') + year_button.classList.add('year_button') + year_button.innerHTML = i.toString() + year_button.onclick = toggle_active_state + year_buttons[i.toString()] = year_button + year_wrapper[action](year_button) + } + } +} +function get_theme () { + return ` + .year_wrapper { + display: flex; + flex-direction: column; + justify-content: flex-end; + width: 91px; + height: 100%; + box-sizing: border-box; + } + .year_button { + display: block; + text-align: center; + background-color: var(--bg_color); + border: 1px solid var(--ac-3); + padding: 4px 10px; + margin-bottom: 1px; + cursor: pointer; + } + .year_button.active { + background-color: var(--ac-1); + color: var(--primary_color); + } + ` +} +// ---------------------------------------------------------------------------- +function shadowfy (props = {}, sheets = []) { + return element => { + const el = Object.assign(document.createElement('div'), { ...props }) + const sh = el.attachShadow(shopts) + sh.adoptedStyleSheets = sheets + sh.append(element) + return el + } +} +function use_protocol (petname) { + return ({ protocol, state, on = { } }) => { + if (petname in state.aka) throw new Error('petname already initialized') + const { id } = state + const invalid = on[''] || (message => console.error('invalid type', message)) + if (protocol) return handshake(protocol(Object.assign(listen, { id }))) + else return handshake + // ---------------------------------------- + // @TODO: how to disconnect channel + // ---------------------------------------- + function handshake (send) { + state.aka[petname] = send.id + const channel = state.net[send.id] = { petname, mid: 0, send, on } + return protocol ? channel : Object.assign(listen, { id }) + } + function listen (message) { + const [from] = message.head + const by = state.aka[petname] + if (from !== by) return invalid(message) // @TODO: maybe forward + console.log(`[${id}]:${petname}>`, message) + const { on } = state.net[by] + const action = on[message.type] || invalid + action(message) + } + } +} +// ---------------------------------------------------------------------------- +function resources (pool) { + var num = 0 + return factory => { + const prefix = num++ + const get = name => { + const id = prefix + name + if (pool[id]) return pool[id] + const type = factory[name] + return pool[id] = type() + } + return Object.assign(get, factory) + } +} +}).call(this)}).call(this,require('_process'),"/src/node_modules/year-filter/year-filter.js") +},{"_process":2}]},{},[5]); diff --git a/src/desktop.js b/src/desktop.js index 9d39b3f..0d79700 100644 --- a/src/desktop.js +++ b/src/desktop.js @@ -1,4 +1,5 @@ const timeline_page = require('timeline-page') +const sparkle_effect = require('sparkle-effect') /****************************************************************************** DESKTOP COMPONENT ******************************************************************************/ @@ -48,6 +49,14 @@ async function desktop (opts = default_opts, protocol) { ` // ---------------------------------------- const content_sh = shadow.querySelector('.content').attachShadow(shopts) + const desktop_el = shadow.querySelector('.desktop') + // ---------------------------------------- + // ELEMENTS + // ---------------------------------------- + {//sparkle effect + const element = sparkle_effect({colors: ["#8A2BE2", "#FFC0CB", "#808080", "#0000FF", "#FFFFE0", "#FFFF00", "#39FF14", "#FFFFFF"]}) + desktop_el.prepend(element) + } // ---------------------------------------- // RESOURCE POOL (can't be serialized) // ---------------------------------------- diff --git a/src/node_modules/app-timeline/app-timeline.js b/src/node_modules/app-timeline/app-timeline.js index 326bbb9..38b602c 100644 --- a/src/node_modules/app-timeline/app-timeline.js +++ b/src/node_modules/app-timeline/app-timeline.js @@ -1,8 +1,7 @@ -const timeline_card = require('timeline-card') const timeline_filter = require('timeline-filter') const year_filter = require('year-filter') const month_filter = require('month-filter') -const scrollbar = require('scrollbar') +const timeline_cards = require('timeline-cards/timeline-cards.js') /****************************************************************************** APP TIMELINE COMPONENT ******************************************************************************/ @@ -26,7 +25,7 @@ function app_timeline (opts = default_opts, protocol) { // ---------------------------------------- const ro = new ResizeObserver(entries => { console.log('ResizeObserver:terminal:resize') - // !sorting && setScrollTop(timeline_wrapper.scrollHeight) + // !sorting && set_scroll_top(timeline_wrapper.scrollHeight) const scroll_channel = state.net[state.aka.scrollbar] scroll_channel.send({ head: [id, scroll_channel.send.id, scroll_channel.mid++], @@ -41,60 +40,29 @@ function app_timeline (opts = default_opts, protocol) { const status = {} const state = STATE.ids[id] = { id, status, wait: {}, net: {}, aka: {} } // all state of component instance const cache = resources({}) - status.YEAR = '' - status.MONTH = '' - status.DATE = '' - status.cards = [] - status.separators = [] status.years = [] - let dates = [] let sorting = true // latest to oldest - let cardfilter - // ---------------------------------------- - // Local Storage - // ---------------------------------------- - if (localStorage.getItem('visitedBefore')) { - visitor = true // old - } else { - visitor = false // new - localStorage.setItem('visitedBefore', 'true') - } + let card_filter, prev_year // ---------------------------------------- // OPTS // ---------------------------------------- const { data } = opts - // Assigning all the icons - const { img_src: { - icon_folder_solid= `${prefix}/icon_folder_solid.svg`, - sort_down, - sort_up - } } = data - + // Data preprocessing let cards_data = require(`../data/data.json`)['timeline'] cards_data = cards_data.map(card => { - const date = new Date(card.date + ' ' + convert_time_format(card.time)) + const date = new Date(card.date) if(!status.years.includes(date.getFullYear())) status.years.push(date.getFullYear()) card.date_raw = date.getTime() card.data = data - dates.push(card.date_raw) return card - }).sort(function (a, b) { - const dateA = new Date(a.date_raw) - const dateB = new Date(b.date_raw) - // // Compare years in ascending/descending order - // if (dateA.getFullYear() !== dateB.getFullYear()) { - // return visitor ? dateB.getFullYear() - dateA.getFullYear() : dateA.getFullYear() - dateB.getFullYear() - // } - // If years are the same, compare dates in ascending/descending order - return dateB.getTime() - dateA.getTime() - }) + }).reverse() + status.years = status.years.filter((value) => { + return !isNaN(value) + }) status.years_max = [...status.years] - cardfilter = [...cards_data] - const tags = new Set(cards_data.flatMap(card => card.tags)) - const card_groups = [] - let year_cache, card_group, prev_year - status.YEAR = new Date(cards_data[0].date_raw).getFullYear() + card_filter = [...cards_data] + prev_year = new Date(cards_data[0].date_raw).getFullYear() // ---------------------------------------- // PROTOCOL // ---------------------------------------- @@ -108,81 +76,30 @@ function app_timeline (opts = default_opts, protocol) { const shadow = el.attachShadow(shopts) shadow.adoptedStyleSheets = [sheet] shadow.innerHTML = ` -
+
-
-
-
-
-
-
-
-
-
- No match found -
-
-
+
+
` const main_wrapper = shadow.querySelector('.main_wrapper') - const timeline_wrapper = shadow.querySelector('.timeline_wrapper') const filter_wrapper = shadow.querySelector('.filter_wrapper') const month_wrapper = shadow.querySelector('.month_wrapper') - const empty_wrapper = shadow.querySelector('.empty_wrapper') - const current_separator = shadow.querySelector('.current_separator') // ---------------------------------------- - const windowbar_shadow = shadow.querySelector('.windowbar').attachShadow(shopts) // ---------------------------------------- // ELEMENTS // ---------------------------------------- - var timeline_cards { // timeline cards - const on = {} - function make_card (card_data, i) { - const protocol = use_protocol(`card_${i}`)({ state, on }) - const opts = card_data - const element = shadowfy()(timeline_card(opts, protocol)) - const slice = card_data.date.slice(-4) - - // if(i === Object.keys(cards_data).length - 1){ - // const latest = visitor ? Math.min(...status.years) : Math.max(...status.years) - // let oldest = Number(year_cache) - 1 - - // while(visitor ? latest <= oldest : latest >= oldest){ - // const separator = document.createElement('div') - // separator.innerHTML = oldest - // separator.classList.add('separator') - // card_groups.push(separator) - // visitor ? oldest-- : oldest++ - // } - // } - if (year_cache !== slice) { - const latest = Number(slice) - let oldest = year_cache ? sorting ? Number(year_cache) - 1 : Number(year_cache) + 1 : Number(slice) - - while(sorting ? latest <= oldest : latest >= oldest){ - const separator = document.createElement('div') - separator.innerHTML = oldest - separator.classList.add('separator') - status.separators.push(separator) - card_groups.push(separator) - sorting ? oldest-- : oldest++ - } - - card_group = document.createElement('div') - card_group.classList.add('card_group') - card_groups.push(card_group) - year_cache = slice - } - card_group.append(element) - element.idx = i - return element + const on = { + 'update_calendar': update_calendar, + 'update_timeline_filter': update_timeline_filter } - timeline_cards = cards_data.map(make_card) - timeline_wrapper.append(...card_groups) - timeline_wrapper.onscroll = onscroll + const protocol = use_protocol('timeline_cards')({ state, on }) + const opts = { data, cards_data, years: status.years } + const element = shadowfy()(timeline_cards(opts, protocol)) + month_wrapper.append(element) + } { // timeline filter const on = { @@ -193,7 +110,7 @@ function app_timeline (opts = default_opts, protocol) { } const protocol = use_protocol('timeline_filter')({ state, on }) const opts = { - data, tags: Array.from(tags), + data, tags: [], latest_date: cards_data[0].date_raw } const element = shadowfy()(timeline_filter(opts, protocol)) @@ -210,7 +127,6 @@ function app_timeline (opts = default_opts, protocol) { { // year filter const on = { 'set_scroll': on_set_scroll } const protocol = use_protocol('year_filter')({ state, on }) - const opts = { data, latest_year: Math.max(...status.years), oldest_year: Math.min(...status.years), sorting } @@ -220,9 +136,14 @@ function app_timeline (opts = default_opts, protocol) { year_filter_wrapper.classList.add('hide') } - function on_set_scroll ({ data }) { - set_scroll(data) - updateCalendar() + async function on_set_scroll ({ data }) { + const channel = state.net[state.aka.timeline_cards] + channel.send({ + head: [id, channel.send.id, channel.mid++], + type: 'set_scroll', + data + }) + update_calendar({ data: { check: false, year: data.value }}) } } year_filter_wrapper.classList.add('year_filter_wrapper') @@ -234,266 +155,58 @@ function app_timeline (opts = default_opts, protocol) { month_filter_wrapper = shadowfy()(month_filter(opts, protocol)) month_filter_wrapper.classList.add('month_filter_wrapper') month_wrapper.append(month_filter_wrapper) - function on_set_scroll ({ data }) { - set_scroll(data) - updateCalendar() - } - } - { // scrollbar - const on = { 'set_scroll': on_set_scroll, status: onstatus } - const protocol = use_protocol('scrollbar')({ state, on }) - opts.data.img_src.icon_arrow_start = opts.data.img_src.icon_arrow_up - opts.data.img_src.icon_arrow_end = opts.data.img_src.icon_arrow_down - const scroll_opts = { data } - const element = shadowfy()(scrollbar(scroll_opts, protocol)) - filter_wrapper.append(element) - - const channel = state.net[state.aka.scrollbar] - ro.observe(timeline_wrapper) - function on_set_scroll (message) { setScrollTop(message.data) } - function onstatus (message) { + async function on_set_scroll ({ data }) { + const channel = state.net[state.aka.timeline_cards] channel.send({ head: [id, channel.send.id, channel.mid++], - refs: { cause: message.head }, - type: 'update_size', - data: { - sh: timeline_wrapper.scrollHeight, - ch: timeline_wrapper.clientHeight, - st: timeline_wrapper.scrollTop - } + type: 'set_scroll', + data }) + update_calendar({ data: { check: false, year: prev_year }}) } } // ---------------------------------------- // INIT // ---------------------------------------- - updateCalendar() - current_separator.innerHTML = sorting ? Math.max(...status.years) : Math.min(...status.years) + update_calendar({ data: { check: false, year: prev_year }}) return el - function onscroll (event) { - const scroll_channel = state.net[state.aka.scrollbar] - scroll_channel.send({ - head: [id, scroll_channel.send.id, scroll_channel.mid++], - type: 'handle_scroll' - }) - let check = true - const parent_top = timeline_wrapper.getBoundingClientRect().top - status.separators.some(separator => { - const child_top = separator.getBoundingClientRect().top - if (child_top && child_top >= parent_top && child_top < parent_top + 10) { - const year = separator.innerHTML - status.YEAR = year - updateCalendar() - const channel = state.net[state.aka.year_filter] - channel.send({ - head: [id, channel.send.id, channel.mid++], - type: 'update_year_filter', - data: year - }) - check = false - return true - } - }) - if (check) - timeline_cards.some(card => { - const { idx } = card - const child_top = card.getBoundingClientRect().top - if (child_top && child_top >= parent_top - 180 && child_top < parent_top + 40) { - const year = cards_data[idx].date.slice(-4) - status.YEAR = year - updateCalendar() - const channel = state.net[state.aka.year_filter] - channel.send({ - head: [id, channel.send.id, channel.mid++], - type: 'update_year_filter', - data: year - }) - return true - } - }) - const channel = state.net[state.aka.timeline_filter] + async function update_timeline_filter ({ data }) { + let channel = state.net[state.aka.timeline_filter] channel.send({ head: [id, channel.send.id, channel.mid++], type: 'update_timeline_filter', - data: { month: status.MONTH , year: status.YEAR } + data }) - current_separator.innerHTML = status.YEAR - } - function convert_time_format (time) { - let temp = time.slice(0, 2) - if (time.includes('PM')) { temp = parseInt(temp) + 12 } - return temp + time.slice(2, -2) - } - async function set_scroll (data) { - //for scroll by year we can use separators - if (data.filter === 'YEAR'){ - status[data.filter] = data.value - status.separators.some(separator => { - const year = separator.innerHTML - if(year.includes(data.value)){ - setScrollTop(separator.getBoundingClientRect().top - timeline_wrapper.getBoundingClientRect().top + timeline_wrapper.scrollTop) - return true - } - }) - }//otherwise we need to use the cards - else if (data.value){ - status[data.filter] = data.value - let check = true - timeline_cards.some(card => { - const { idx } = card - const card_data = cards_data[idx] - if(cardfilter.includes(card_data)){ - const card_date = card_data.date - - if (card_date.includes(data.value) && card_date.includes(status.YEAR)) { - if(check && status.cards){ - setScrollTop(card.getBoundingClientRect().top - timeline_wrapper.getBoundingClientRect().top + timeline_wrapper.scrollTop) - - check = false - status.cards.forEach(status_card => { - status_card.classList.remove('active') - }) - if(status.cards[0] === card){ - status.cards = [] - return true - } - status.cards = [] - } - if(data.filter === 'DATE'){ - card.classList.add('active') - status.cards.push(card) - } - } - else if(!check){ - return true - } - } - }) - const timeline_channel = state.net[state.aka.timeline_filter] - timeline_channel.send({ - head: [id, timeline_channel.send.id, timeline_channel.mid++], - type: 'update_timeline_filter', - data: { month: status.MONTH , year: status.YEAR } - }) - }//otherwise it means we need to remove highlight - else if(status.cards){ - status.cards.forEach(status_card => { - status_card.classList.remove('active') - }) - status.cards = [] - return - } - //update year_filter - const year_channel = state.net[state.aka.year_filter] - year_channel.send({ - head: [id, year_channel.send.id, year_channel.mid++], + channel = state.net[state.aka.year_filter] + channel.send({ + head: [id, channel.send.id, channel.mid++], type: 'update_year_filter', - data: status.YEAR + data: data.year }) - - } - async function setScrollTop (value) { - timeline_wrapper.scrollTop = value } async function set_filter (data) { - //Store filter value - status[data.filter] = data.value - timeline_wrapper.innerHTML = '' - cardfilter = [...cards_data] - if (status.SEARCH) cardfilter = cardfilter.filter((card_data) => { - return card_data.title.toLowerCase().match(status.SEARCH.toLowerCase()) - }) - if (status.STATUS && status.STATUS !== 'ALL') cardfilter = cardfilter.filter((card_data) => { - return card_data.active_state === status.STATUS && card_data - }) - if (status.TAGS && status.TAGS !== 'ALL') { - cardfilter = cardfilter.filter((card_data) => { - return card_data.tags.includes(status.TAGS) && card_data - }) - } - //update timeline_cards - status.separators = [] - status.years = [] - const card_groups = [] - let year_cache, card_group - - timeline_cards.forEach((card, i) => { - const { idx } = card - const card_data = cards_data[idx] - //if the main loop never runs or misses last iterations - if(i === Object.keys(cards_data).length - 1){ - const latest = sorting ? Math.min(...status.years_max) : Math.max(...status.years_max) - let oldest = year_cache ? sorting ? Number(year_cache) - 1 : Number(year_cache) + 1 : sorting ? Math.max(...status.years_max) : Math.min(...status.years_max) - while(sorting ? latest <= oldest : latest >= oldest){ - const separator = document.createElement('div') - separator.innerHTML = oldest - separator.classList.add('separator') - status.separators.push(separator) - card_groups.push(separator) - sorting ? oldest-- : oldest++ - } - } - if (cardfilter.includes(card_data)) { - const date = new Date(card_data.date) - if(!status.years.includes(date.getFullYear())) - status.years.push(date.getFullYear()) - const slice = card_data.date.slice(-4) - //main loop - if (year_cache !== slice) { - if(i < Object.keys(cards_data).length - 1){ - const latest = Number(slice) - let oldest = year_cache ? sorting ? Number(year_cache) - 1 : Number(year_cache) + 1 : sorting ? Math.max(...status.years_max) : Math.min(...status.years_max) - - while(sorting ? latest <= oldest : latest >= oldest){ - const separator = document.createElement('div') - separator.innerHTML = oldest - separator.classList.add('separator') - status.separators.push(separator) - card_groups.push(separator) - sorting ? oldest-- : oldest++ - } - } - - card_group = document.createElement('div') - card_group.classList.add('card_group') - card_groups.push(card_group) - year_cache = slice - } - card_group.append(card) - } - }) - card_groups.forEach((card_group) => { - timeline_wrapper.append(card_group) - }) - - //Update scrollbar and calendar - const channel = state.net[state.aka.scrollbar] + const channel = state.net[state.aka.timeline_cards] channel.send({ head: [id, channel.send.id, channel.mid++], - type: 'handle_scroll' + type: 'set_filter', + data }) - if (!cardfilter[0]) return - - set_scroll({ - filter: 'YEAR', - value: sorting ? Math.max(...status.years_max) : Math.min(...status.years_max) - }) - updateCalendar(true)//boolean argument indicates that this request is coming from set_filter } - async function updateCalendar (check = false) { + async function update_calendar ({ data, head }) { + const { check, year } = data let dates = [] - if (status.YEAR) cardfilter.forEach(card_data => { - if (card_data.date.includes(status.YEAR)) dates.push(card_data.date) + if (year) card_filter.forEach(card_data => { + if (card_data.date.includes(year)) dates.push(card_data.date) }) const channel = state.net[state.aka.month_filter] - if(prev_year !== String(status.YEAR) || check){ + if(prev_year !== String(year) || check){ channel.send({ head: [id, channel.send.id, channel.mid++], type: 'update_calendar', - data: {dates, year: Number(status.YEAR)} + data: {dates, year: Number(year)} }) - prev_year = String(status.YEAR).slice(0) + prev_year = String(year).slice(0) if(status.cards){ status.cards.forEach(status_card => { status_card.classList.remove('active') @@ -506,10 +219,6 @@ function app_timeline (opts = default_opts, protocol) { } function get_theme () { return` - .timeline_section { - display: flex; - flex-direction: column; - } .main_wrapper { box-sizing: border-box; display: flex; @@ -531,73 +240,13 @@ function get_theme () { .main_wrapper .filter_wrapper .month_wrapper { width: 100%; height: 100%; + min-height: 500px; overflow: hidden; position: relative; - margin: 0 20px; - } - .main_wrapper .filter_wrapper .timeline_wrapper { - display: flex; - flex-direction: column; - width: 100%; - height: 500px; - overflow: scroll; - gap: 20px; - scrollbar-width: none; /* For Firefox */ - } - .main_wrapper .filter_wrapper .timeline_wrapper.hide > div { - display: none; - } - .main_wrapper .filter_wrapper .empty_wrapper { - display: none; - position: absolute; - width: 100%; - height: 100%; - justify-content: center; - align-items: center; - top: 0; - } - .main_wrapper .filter_wrapper .empty_wrapper > div { - background-color: white; - } - .main_wrapper .filter_wrapper .empty_wrapper.active { - display: flex; - } - .main_wrapper .filter_wrapper .timeline_wrapper .card_group { - width: 100%; - padding: 0px; - display: grid; - gap: 20px; - grid-template-columns: 12fr; - border: 4px solid transparent; - } - .main_wrapper .filter_wrapper .timeline_wrapper .card_group > .active{ - outline: 4px solid var(--ac-1); - } - .main_wrapper .filter_wrapper .timeline_wrapper::-webkit-scrollbar { - display: none; - } - .main_wrapper .filter_wrapper .timeline_wrapper .separator{ - background-color: var(--ac-1); - text-align: center; - margin: 0 4px; - border: 1px solid var(--ac-3); - position: relative; - z-index: 2; } .main_wrapper .filter_wrapper > div:last-child{ border-left: 1px solid var(--ac-3); } - .main_wrapper .filter_wrapper .month_wrapper .current_separator{ - position: absolute; - display: block; - top: 0; - width: calc(100% - 9px); - background-color: var(--ac-1); - text-align: center; - margin: 0 4px; - border: 1px solid var(--ac-3); - z-index: 1; - } .main_wrapper .filter_wrapper .year_filter_wrapper{ border-left:1px solid var(--ac-3); padding: 1px; @@ -616,23 +265,6 @@ function get_theme () { .month_filter_wrapper.show{ display: block; } - @container(min-width: 400px) { - .main_wrapper .filter_wrapper .timeline_wrapper .card_group:last-child, - .main_wrapper .filter_wrapper .timeline_wrapper .separator:last-child{ - margin-bottom: 300px; - } - } - @container(min-width: 768px) { - .main_wrapper .filter_wrapper .timeline_wrapper .card_group { - grid-template-columns: repeat(2, 6fr); - } - } - @container(min-width: 1200px) { - .main_wrapper .filter_wrapper .timeline_wrapper .card_group { - grid-template-columns: repeat(3, 4fr); - } - } - ` } // ---------------------------------------------------------------------------- diff --git a/src/node_modules/scrollbar/scrollbar.js b/src/node_modules/scrollbar/scrollbar.js index bcc61d3..e65a2ed 100644 --- a/src/node_modules/scrollbar/scrollbar.js +++ b/src/node_modules/scrollbar/scrollbar.js @@ -142,11 +142,11 @@ function scrollbar (opts = default_opts, protocol) { else el.style.cssText = 'display: inline;' const [prop1, prop2] = horizontal ? ['width', 'left'] : ['height', 'top'] const percent1 = Math.max(ratio * 100, 10); - if(check){ - if(ratio * 100 < 10) - bar_wrapper.classList.add('shrink'); - check = false - } + if(ratio * 100 < 10) + bar_wrapper.classList.add('shrink'); + else + bar_wrapper.classList.remove('shrink'); + const percent2 = (size.content_scrollStart / size.content_scrollSize ) * 100 bar.style.cssText = `${prop1}: ${percent1}%; ${prop2}: ${percent2}%;` } @@ -210,13 +210,13 @@ function get_theme () { } .scrollbar_wrapper .vertical-bar-wrapper { flex-direction: column; - height: 100%; + height: 88%; } .scrollbar_wrapper .vertical-bar-wrapper.shrink { height: 80%; } .scrollbar_wrapper .horizontal-bar-wrapper { - width: 100%; + width: 88%; } .scrollbar_wrapper .horizontal-bar-wrapper.shrink { width: 80%; diff --git a/src/node_modules/sparkle-effect/package.json b/src/node_modules/sparkle-effect/package.json new file mode 100644 index 0000000..215afe7 --- /dev/null +++ b/src/node_modules/sparkle-effect/package.json @@ -0,0 +1,3 @@ +{ + "main": "./sparkle-effect.js" +} \ No newline at end of file diff --git a/src/node_modules/sparkle-effect/sparkle-effect.js b/src/node_modules/sparkle-effect/sparkle-effect.js new file mode 100644 index 0000000..4bf1ade --- /dev/null +++ b/src/node_modules/sparkle-effect/sparkle-effect.js @@ -0,0 +1,164 @@ +const shopts = { mode: 'closed' } +// ---------------------------------------- +module.exports = sparkle_effect +// ---------------------------------------- +function sparkle_effect(opts) { + let possibleColors = (opts && opts.colors) || [ + "#D61C59", + "#E7D84B", + "#1B8798", + ]; + + let width = window.innerWidth; + let height = window.innerHeight; + const cursor = { x: width / 2, y: width / 2 }; + const lastPos = { x: width / 2, y: width / 2 }; + const particles = []; + const canvImages = []; + let canvas, context; + const char = "*"; + const el = document.createElement('div') + const shadow = el.attachShadow(shopts) + + function init() { + canvas = document.createElement("canvas"); + context = canvas.getContext("2d"); + canvas.style.top = "0px"; + canvas.style.left = "0px"; + canvas.style.pointerEvents = "none"; + canvas.style.position = "fixed"; + canvas.width = width; + canvas.height = height; + context.font = "21px serif"; + context.textBaseline = "middle"; + context.textAlign = "center"; + + possibleColors.forEach((color) => { + let measurements = context.measureText(char); + let bgCanvas = document.createElement("canvas"); + let bgContext = bgCanvas.getContext("2d"); + + bgCanvas.width = measurements.width; + bgCanvas.height = + measurements.actualBoundingBoxAscent + + measurements.actualBoundingBoxDescent; + + bgContext.fillStyle = color; + bgContext.textAlign = "center"; + bgContext.font = "21px serif"; + bgContext.textBaseline = "middle"; + bgContext.fillText( + char, + bgCanvas.width / 2, + measurements.actualBoundingBoxAscent + ); + + canvImages.push(bgCanvas); + }); + + bindEvents(); + loop(); + } + // Bind events that are needed + async function bindEvents() { + document.body.addEventListener("mousemove", onMouseMove); + document.body.addEventListener("touchmove", onTouchMove, { passive: true }); + document.body.addEventListener("touchstart", onTouchMove, { passive: true }); + window.addEventListener("resize", onWindowResize); + } + + async function onWindowResize(e) { + canvas.width = window.innerWidth; + canvas.height = window.innerHeight; + } + + async function onTouchMove(e) { + if (e.touches.length > 0) { + for (let i = 0; i < e.touches.length; i++) { + addParticle( + e.touches[i].clientX, + e.touches[i].clientY, + canvImages[Math.floor(Math.random() * canvImages.length)] + ); + } + } + } + + async function onMouseMove(e) { + window.requestAnimationFrame(() => { + cursor.x = e.clientX; + cursor.y = e.clientY; + + const distBetweenPoints = Math.hypot( + cursor.x - lastPos.x, + cursor.y - lastPos.y + ); + + if (distBetweenPoints > 1.5) { + addParticle( + cursor.x, + cursor.y, + canvImages[Math.floor(Math.random() * possibleColors.length)] + ); + + lastPos.x = cursor.x; + lastPos.y = cursor.y; + } + }); + } + async function addParticle(x, y, color) { + particles.push(new Particle(x, y, color)); + } + async function updateParticles() { + context.clearRect(0, 0, width, height); + + // Update + for (let i = 0; i < particles.length; i++) { + particles[i].update(context); + } + // Remove dead particles + for (let i = particles.length - 1; i >= 0; i--) { + if (particles[i].lifeSpan < 0) { + particles.splice(i, 1); + } + } + } + async function loop() { + updateParticles(); + requestAnimationFrame(loop); + } + + function Particle(x, y, canvasItem) { + const lifeSpan = Math.floor(Math.random() * 30 + 60); + this.initialLifeSpan = lifeSpan; // + this.lifeSpan = lifeSpan; //ms + this.velocity = { + x: (Math.random() < 0.5 ? -1 : 1) * (Math.random() / 2), + y: Math.random() * 0.7 + 0.9, + }; + this.position = { x: x, y: y }; + this.canv = canvasItem; + + this.update = function (context) { + this.position.x += this.velocity.x; + this.position.y += this.velocity.y; + this.lifeSpan--; + + this.velocity.y += 0.02; + + const scale = Math.max(this.lifeSpan / this.initialLifeSpan, 0); + + context.drawImage( + this.canv, + this.position.x - (this.canv.width / 2) * scale, + this.position.y - this.canv.height / 2, + this.canv.width * scale, + this.canv.height * scale + ); + }; + } + init(); + + shadow.append(canvas) + return el +} diff --git a/src/node_modules/timeline-card/timeline-card.js b/src/node_modules/timeline-card/timeline-card.js index 0c3db30..d702b05 100644 --- a/src/node_modules/timeline-card/timeline-card.js +++ b/src/node_modules/timeline-card/timeline-card.js @@ -114,11 +114,10 @@ function get_theme () { display: flex; font-size: 14px; line-height: 16px; - max-height: 96px; + max-height: 50px; overflow: hidden; text-overflow: ellipsis; - -webkit-box-orient: vertical; - -webkit-line-clamp: 3; /* Limit the number of displayed lines */ + word-break: break-word; } .tags_wrapper { display: flex; diff --git a/src/node_modules/timeline-cards/timeline-cards.js b/src/node_modules/timeline-cards/timeline-cards.js new file mode 100644 index 0000000..324602b --- /dev/null +++ b/src/node_modules/timeline-cards/timeline-cards.js @@ -0,0 +1,483 @@ +const timeline_card = require('timeline-card') +const scrollbar = require('scrollbar') +/****************************************************************************** + APP TIMELINE COMPONENT +******************************************************************************/ +// ---------------------------------------- +// MODULE STATE & ID +var count = 0 +const [cwd, dir] = [process.cwd(), __filename].map(x => new URL(x, 'file://').href) +const ID = dir.slice(cwd.length) +const STATE = { ids: {}, net: {} } // all state of component module +// ---------------------------------------- +const sheet = new CSSStyleSheet +sheet.replaceSync(get_theme()) +const default_opts = { } +const shopts = { mode: 'closed' } +// ---------------------------------------- +module.exports = timeline_cards +// ---------------------------------------- +function timeline_cards (opts = default_opts, protocol) { + // ---------------------------------------- + // RESOURCE POOL (can't be serialized) + // ---------------------------------------- + const ro = new ResizeObserver(entries => { + console.log('ResizeObserver:terminal:resize') + // !sorting && set_scroll_top(timeline_wrapper.scrollHeight) + const scroll_channel = state.net[state.aka.scrollbar] + scroll_channel.send({ + head: [id, scroll_channel.send.id, scroll_channel.mid++], + refs: { }, + type: 'handle_scroll', + }) + }) + // ---------------------------------------- + // ID + JSON STATE + // ---------------------------------------- + const id = `${ID}:${count++}` // assigns their own name + const status = {} + const state = STATE.ids[id] = { id, status, wait: {}, net: {}, aka: {} } // all state of component instance + const cache = resources({}) + status.separators = [] + status.years = [] + status.cards = [] + let sorting = true // latest to oldest + let card_group, card_group_rev, card_filter, fragment + let card_index = 0 + let card_index_rev = 0 + let scroll_dir = true + let timeline_container = [] + // ---------------------------------------- + // OPTS + // ---------------------------------------- + const { data, cards_data, years } = opts + // Data preprocessing + status.years = years + status.years_max = [...years] + card_filter = [...cards_data] + const tags = new Set(cards_data.flatMap(card => card.tags)) + status.YEAR = new Date(cards_data[0].date_raw).getFullYear() + // ---------------------------------------- + // PROTOCOL + // ---------------------------------------- + const PROTOCOL = {} + const on = { + 'set_scroll': set_scroll, + 'set_filter': set_filter + } + const up_channel = use_protocol('up')({ protocol, state, on }) + // ---------------------------------------- + // TEMPLATE + // ---------------------------------------- + const el = document.createElement('div') + const shadow = el.attachShadow(shopts) + shadow.adoptedStyleSheets = [sheet] + shadow.innerHTML = ` +
+
+
+
+
+
+ ` + const scrollbar_wrapper = shadow.querySelector('.scrollbar_wrapper') + const timeline_wrapper = shadow.querySelector('.timeline_wrapper') + const current_separator = shadow.querySelector('.current_separator') + // ---------------------------------------- + // ---------------------------------------- + // ELEMENTS + // ---------------------------------------- + { // timeline cards + const on = {} + append_cards(0, 10) + timeline_wrapper.onscroll = onscroll + } + { // scrollbar + const on = { 'set_scroll': on_set_scroll, status: onstatus } + const protocol = use_protocol('scrollbar')({ state, on }) + opts.data.img_src.icon_arrow_start = opts.data.img_src.icon_arrow_up + opts.data.img_src.icon_arrow_end = opts.data.img_src.icon_arrow_down + const scroll_opts = { data } + const element = shadowfy()(scrollbar(scroll_opts, protocol)) + scrollbar_wrapper.append(element) + + const channel = state.net[state.aka.scrollbar] + ro.observe(timeline_wrapper) + async function on_set_scroll (message) { set_scroll_top(message.data) } + async function onstatus (message) { + channel.send({ + head: [id, channel.send.id, channel.mid++], + refs: { cause: message.head }, + type: 'update_size', + data: { + sh: timeline_wrapper.scrollHeight, + ch: timeline_wrapper.clientHeight, + st: timeline_wrapper.scrollTop + } + }) + } + } + // ---------------------------------------- + // INIT + // ---------------------------------------- + current_separator.innerHTML = sorting ? Math.max(...status.years) : Math.min(...status.years) + return el + + async function make_card (card_data) { + const index = scroll_dir ? card_index : card_index_rev + const protocol = use_protocol(`card_${index}`)({ state, on }) + const opts = card_data + const element = shadowfy()(timeline_card(opts, protocol)) + const year = card_data.date.slice(-4) + let last_year + if(scroll_dir) + last_year = index == 0 ? undefined : card_filter[index - 1].date.slice(-4) + else + last_year = card_filter.length == index ? undefined : card_filter[index].date.slice(-4) + + if (last_year !== year) { + const separator = document.createElement('div') + separator.innerHTML = year + separator.classList.add('separator') + status.separators.push(separator) + fragment.appendChild(separator) + + if(scroll_dir){ + card_group = document.createElement('div') + card_group.classList.add('card_group') + fragment.appendChild(card_group) + } + else{ + card_group_rev = document.createElement('div') + card_group_rev.classList.add('card_group') + fragment.appendChild(card_group_rev) + } + } + element.idx = index + if(scroll_dir){ + card_group.append(element) + card_index++ + } + else{ + card_group_rev.prepend(element) + card_index_rev-- + } + timeline_container.push(element) + } + async function clear_timeline(){ + timeline_wrapper.innerHTML = '' + timeline_container = [] + status.separators = [] + } + async function append_cards(start, end){ + scroll_dir = true + fragment = document.createDocumentFragment() + card_filter.slice(start, end).map(make_card) + timeline_wrapper.appendChild(fragment) + } + async function prepend_cards(start, end){ + scroll_dir = false + fragment = document.createDocumentFragment() + card_filter.slice(start, end).reverse().map(make_card) + timeline_wrapper.prepend(fragment) + } + async function onscroll () { + const timeline_top = timeline_wrapper.getBoundingClientRect().top + const timeline_height = timeline_wrapper.scrollHeight + const timeline_scrollTop = timeline_wrapper.scrollTop + //Bottom or top has reached load more cards + if(0 < card_index_rev && timeline_scrollTop < timeline_height/10){ + set_scroll_top(timeline_height/10) + prepend_cards(card_index_rev < 10 ? 0 : card_index_rev - 10, card_index_rev) + } + else if(card_filter.length > card_index && timeline_height < timeline_scrollTop + 1000){ + append_cards(card_index, card_index+10) + } + + const scroll_channel = state.net[state.aka.scrollbar] + scroll_channel.send({ + head: [id, scroll_channel.send.id, scroll_channel.mid++], + type: 'handle_scroll' + }) + + let check = true //to check if scrolling was successful using separators + //scroll using separators as ref + status.separators.some(separator => { + const child_top = separator.getBoundingClientRect().top + if (child_top && child_top >= timeline_top && child_top < timeline_top + 10) { + const year = separator.innerHTML + status.YEAR = year + check = false + return true + } + }) + //else scroll using cards as ref + if (check) + timeline_container.some(card => { + const { idx } = card + const child_top = card.getBoundingClientRect().top + if (child_top && child_top >= timeline_top - 180 && child_top < timeline_top + 40) { + const year = cards_data[idx].date.slice(-4) + status.YEAR = year + return true + } + }) + // Update the year_button + up_channel.send({ + head: [id, up_channel.send.id, up_channel.mid++], + type: 'update_timeline_filter', + data: { month: status.MONTH , year: status.YEAR } + }) + up_channel.send({ + head: [id, up_channel.send.id, up_channel.mid++], + type: 'update_calendar', + data: { check: false, year: status.YEAR} + }) + current_separator.innerHTML = status.YEAR + } + async function set_scroll ({ data }) { + scroll_dir = true + //for scroll by year + if (data.filter === 'YEAR'){ + //Remove all cards + clear_timeline() + //Find the first card of the year + card_index = card_index < card_filter.length && Number(card_filter[card_index].date.slice(-5)) > data.value ? card_index : 0 + for (const card_data of card_filter.slice(card_index)){ + const temp = Number(card_data.date.slice(-5)) + if(temp <= data.value){ + card_index_rev = card_index + break + } + card_index++ + } + //Populate somecards cards around the first card + const scroll_index = card_index < 10 ? card_index : 10 + append_cards(card_index, card_index + 10) + //scroll to the first card + status[data.filter] = data.value + set_scroll_top(1) + current_separator.innerHTML = data.value + prepend_cards(card_index_rev - scroll_index, card_index_rev) + }//otherwise cards are needed + else if (data.value){ + //load the cards + const filter_date = new Date(data.value + ' ' + status.YEAR).getTime() + fragment = document.createDocumentFragment() + scroll_dir = false + for(i=card_index_rev; i >= 0 && card_filter[i].date_raw <= filter_date; i--){ + make_card(card_filter[i]) + } + scroll_dir = true + for(i=card_index; i < card_filter.length && card_filter[i].date_raw >= filter_date; i++){ + make_card(card_filter[i]) + } + timeline_wrapper.appendChild(fragment) + + //scroll to the cards + status[data.filter] = data.value + let check = true + timeline_container.some(card => { + const { idx } = card + const card_data = cards_data[idx] + const card_date = card_data.date_raw + if (card_date === filter_date) { + //remove highlight on previous cards + if(check && status.cards){ + set_scroll_top(card.getBoundingClientRect().top - timeline_wrapper.getBoundingClientRect().top + timeline_wrapper.scrollTop) + + check = false + status.cards.forEach(status_card => { + status_card.classList.remove('active') + }) + if(status.cards[0] === card){ + status.cards = [] + return true + } + status.cards = [] + } + //add highlight + if(data.filter === 'DATE'){ + card.classList.add('active') + status.cards.push(card) + } + } + else if(!check){ + return true + } + }) + }//otherwise it means we need to remove highlight + else if(status.cards){ + status.cards.forEach(status_card => { + status_card.classList.remove('active') + }) + status.cards = [] + return + } + + } + async function set_scroll_top (value) { + timeline_wrapper.scrollTop = value + } + async function set_filter ({ data }) { + //Store filter value + status[data.filter] = data.value + card_filter = [...cards_data] + //filter the json data + if (status.SEARCH) card_filter = card_filter.filter((card_data) => { + return card_data.title.toLowerCase().match(status.SEARCH.toLowerCase()) + }) + if (status.STATUS && status.STATUS !== 'ALL') card_filter = card_filter.filter((card_data) => { + return card_data.active_state === status.STATUS && card_data + }) + if (status.TAGS && status.TAGS !== 'ALL') { + card_filter = card_filter.filter((card_data) => { + return card_data.tags.includes(status.TAGS) && card_data + }) + } + //update timeline_cards + card_index = card_index_rev = 0 + clear_timeline() + append_cards(0, card_filter.length < 10 ? card_filter.length : 10) + //Update scrollbar and calendar + const channel = state.net[state.aka.scrollbar] + channel.send({ + head: [id, channel.send.id, channel.mid++], + type: 'handle_scroll' + }) + if (!card_filter[0]) return + + set_scroll_top(0) + up_channel.send({ + head: [id, up_channel.send.id, up_channel.mid++], + type: 'update_calendar', + data: { check: true, year: status.YEAR} + })//boolean argument indicates that this request is coming from set_filter + } +} +function get_theme () { + return` + *{ + box-sizing: border-box; + } + .timeline_wrapper { + display: flex; + flex-direction: column; + width: 100%; + height: 500px; + overflow: scroll; + gap: 20px; + scrollbar-width: none; /* For Firefox */ + } + .timeline_wrapper.hide { + display: none; + } + .timeline_wrapper .card_group { + width: 100%; + display: grid; + gap: 20px; + grid-template-columns: 12fr; + padding: 0 2px; + } + .timeline_wrapper .card_group > .active{ + outline: 4px solid var(--ac-1); + } + .timeline_wrapper .card_group > .hide{ + display: none; + } + .timeline_wrapper::-webkit-scrollbar { + display: none; + } + .timeline_wrapper .separator{ + background-color: var(--ac-1); + text-align: center; + margin: 0 4px; + border: 1px solid var(--ac-3); + position: relative; + z-index: 2; + } + > div:last-child{ + border-left: 1px solid var(--ac-3); + } + .current_separator{ + position: absolute; + display: block; + top: 0; + width: calc(100% - 39px); + background-color: var(--ac-1); + text-align: center; + margin: 0 4px; + border: 1px solid var(--ac-3); + z-index: 1; + } + .scrollbar_wrapper{ + display: flex; + } + @container(min-width: 400px) { + .timeline_wrapper .card_group:last-child, + .timeline_wrapper .separator:last-child{ + margin-bottom: 300px; + } + } + @container(min-width: 768px) { + .timeline_wrapper .card_group { + grid-template-columns: repeat(2, 6fr); + } + } + @container(min-width: 1200px) { + .timeline_wrapper .card_group { + grid-template-columns: repeat(3, 4fr); + } + } + ` +} +// ---------------------------------------------------------------------------- +function shadowfy (props = {}, sheets = []) { + return element => { + const el = Object.assign(document.createElement('div'), { ...props }) + const sh = el.attachShadow(shopts) + sh.adoptedStyleSheets = sheets + sh.append(element) + return el + } +} +function use_protocol (petname) { + return ({ protocol, state, on = { } }) => { + if (petname in state.aka) throw new Error('petname already initialized') + const { id } = state + const invalid = on[''] || (message => console.error('invalid type', message)) + if (protocol) return handshake(protocol(Object.assign(listen, { id }))) + else return handshake + // ---------------------------------------- + // @TODO: how to disconnect channel + // ---------------------------------------- + function handshake (send) { + state.aka[petname] = send.id + const channel = state.net[send.id] = { petname, mid: 0, send, on } + return protocol ? channel : Object.assign(listen, { id }) + } + function listen (message) { + const [from] = message.head + const by = state.aka[petname] + if (from !== by) return invalid(message) // @TODO: maybe forward + console.log(`[${id}]:${petname}>`, message) + const { on } = state.net[by] + const action = on[message.type] || invalid + action(message) + } + } +} +// ---------------------------------------------------------------------------- +function resources (pool) { + var num = 0 + return factory => { + const prefix = num++ + const get = name => { + const id = prefix + name + if (pool[id]) return pool[id] + const type = factory[name] + return pool[id] = type() + } + return Object.assign(get, factory) + } +} \ No newline at end of file diff --git a/src/node_modules/year-filter/year-filter.js b/src/node_modules/year-filter/year-filter.js index 485536b..b85fffa 100644 --- a/src/node_modules/year-filter/year-filter.js +++ b/src/node_modules/year-filter/year-filter.js @@ -72,7 +72,7 @@ function year_filter (opts = default_opts, protocol) { channel.send({ head: [id, channel.send.id, channel.mid++], type: 'set_scroll', - data: { value: active_state, filter: 'YEAR' } + data: { value: Number(active_state), filter: 'YEAR' } }) } function on_active_state ({ data: year_button }) {