diff --git a/events/pull-meetup.js b/events/pull-meetup.js index 4d73bd024c911..8f8794994a404 100644 --- a/events/pull-meetup.js +++ b/events/pull-meetup.js @@ -12,15 +12,7 @@ const defaults = { } const results = [] -function clean (event) { - delete event.topics - delete event.urlname - delete event.category - delete event.id -} - function finish (events) { - // return console.log(JSON.stringify(events)) events.forEach((event) => { if (!countryMap[event.country]) { console.log(event) @@ -28,15 +20,12 @@ function finish (events) { } const region = yml.getRegion(countryMap[event.country]) if (!region.meetups) region.meetups = [] - clean(event) if (!yml.isSoT(region.meetups, event.city, event.name)) { yml.replace(region.meetups, 'name', event.name, event) } }) yml.save() } -// This is nice when testing if you cache the response -// finish(JSON.parse(require('fs').readFileSync('./meetup.json').toString())) function pull (opts) { request(opts, (err, resp, body) => { @@ -47,9 +36,12 @@ function pull (opts) { body.results.forEach((result) => { const title = result.name.toLowerCase() - if (title.includes('nodeschool')) return - if (title.includes('mongodb') && title.includes('node')) return - if (title.includes('find a tech job') && title.includes('node')) return + if ( + title.includes('find a tech job') || + title.includes('nodeschool') || + / mongodb (?:user group|meet ?up)$/.test(title) || + title.startsWith('mongodb ') + ) return results.push(result) }) @@ -65,9 +57,9 @@ function pull (opts) { pull(Object.assign({ url: 'https://api.meetup.com/2/groups', qs: { + only: 'city,country,description,group_photo.photo_link,lat,link,lon,name', key: process.env.MEETUP_TOKEN, - upcoming_events: true, - topic: 'nodejs', - category: 34 + topic: 'nodeJS', + category_id: 34 // tech } }, defaults)) diff --git a/events/pull-nodeschool.js b/events/pull-nodeschool.js index 97421d65cb55f..6631d1d171fc8 100644 --- a/events/pull-nodeschool.js +++ b/events/pull-nodeschool.js @@ -29,20 +29,30 @@ request({ } reg.chapters.forEach((chapter) => { - delete chapter.region - chapter.location = `${chapter.location}, ${chapter.country}` + if (chapter.country) { + chapter.location += `, ${chapter.country}` + } delete chapter.country + delete chapter.region yml.replace(store.nodeschools, 'name', chapter.name, chapter) chapters.push(chapter) }) }) function _geo () { - if (chapters.length === 0) { return yml.save() } + if (chapters.length === 0) { + return yml.save() + } + const chapter = chapters.shift() geocoder.geocode(chapter.location, (err, res) => { - console.log(err, res) - if (err || !res.length) { return _geo() } + if (err || !res.length) { + console.error( + err && err.message || `Could not geocode location: ${chapter.location}` + ) + return _geo() + } + chapter.lat = res[0].latitude chapter.lon = res[0].longitude _geo() diff --git a/events/yaml-sync.js b/events/yaml-sync.js index bb274a421086c..66dab4516d1ab 100644 --- a/events/yaml-sync.js +++ b/events/yaml-sync.js @@ -5,31 +5,35 @@ const fs = require('fs') const path = require('path') const p = path.join(__dirname, '..', 'locale', 'en', 'get-involved', 'events.md') -const lines = fs.readFileSync(p).toString().split('\n') -const begin = lines.indexOf('---') + 1 -const end = lines.indexOf('---', begin) -const store = yaml.safeLoad(lines.slice(begin, end).join('\n')) - -function getRegion (region) { - let reg - for (reg in store.regions) { - if (store.regions[reg].region === region) return store.regions[reg] + +// +// Slice the file contents to get the YAML source code. +// +const contents = fs.readFileSync(p, { encoding: 'utf8' }).trim().slice(4, -4) +const store = yaml.safeLoad(contents) + +store.regions || (store.regions = []) + +function getRegion (name) { + let region = store.regions.find((reg) => reg.region === name) + + if (!region) { + region = { region: name } + store.regions.push(region) } - reg = { region: region } - store.regions.push(reg) - return reg + + return region } +/** + * This function checks if an event has been manually edited to prevent it + * from being overwritten the next time event scripts are run. + * + * See https://github.com/nodejs/nodejs.org/pull/398. + */ function isSoT (meetups, city, name) { - for (let i = 0; i < meetups.length; i++) { - if (meetups[i].city === city && meetups[i].name === name) { - if (meetups[i].source_of_truth) { - return true - } - return false - } - } - return false + const meetup = meetups.find((evt) => evt.city === city && evt.name === name) + return meetup && meetup.source_of_truth } function removeEmpty (dict) { @@ -39,19 +43,23 @@ function removeEmpty (dict) { } function replace (list, key, keyValue, value) { + const index = list.findIndex((elem) => elem[key] === keyValue) + removeEmpty(value) - for (let i = 0; i < list.length; i++) { - if (list[i][key] === keyValue) { - list[i] = value - return - } + + if (index !== -1) { + list[index] = value + } else { + list.push(value) } - list.push(value) } function save () { - const str = ['---', yaml.dump(store), '---'].join('\n') - fs.writeFileSync(p, str) + fs.writeFileSync(p, [ + '---', + yaml.safeDump(store, { lineWidth: Infinity }), + '---' + ].join('\n')) } exports.removeEmpty = removeEmpty diff --git a/locale/en/get-involved/events.md b/locale/en/get-involved/events.md index d107a0e56010c..1a70ad2135ba9 100644 --- a/locale/en/get-involved/events.md +++ b/locale/en/get-involved/events.md @@ -3,1369 +3,191 @@ title: Events layout: events.hbs regions: - region: Africa - nodeschools: - - name: NodeSchool Algiers - location: 'Algiers, DZ' - organizers: - - ismnoiet - website: 'http://nodeschool.io/algiers' - repo: 'http://github.com/nodeschool/algiers' - lat: 36.752887 - lon: 3.042048 - - name: NodeSchool Cairo - location: 'Cairo, EG' - organizers: - - ahmdrefat - - Azzurrio - website: 'http://nodeschool.io/cairo' - repo: 'http://github.com/nodeschool/cairo' - lat: 30.0444196 - lon: 31.2357116 - - name: NodeSchool Hermanus - location: 'Hermanus, ZA' - organizers: - - andrenventer - - elsjelemmer - website: 'http://nodeschool.io/hermanus' - twitter: '@nodehermanus' - repo: 'http://github.com/nodeschool/hermanus' - lat: -34.4092004 - lon: 19.2504436 - - name: Johannesburg NodeSchool - location: 'Johannesburg, ZA' - organizers: - - StevenMcD - - johannds - website: 'http://nodeschool.io/johannesburg' - repo: 'http://github.com/nodeschool/johannesburg' - lat: -26.2041028 - lon: 28.0473051 - - name: Lagos NodeSchool - location: 'Lagos, NG' - organizers: - - dipolediamond - - 0101coding - website: 'http://nodeschool.io/lagos' - repo: 'http://github.com/nodeschool/lagos' - lat: 6.5243793 - lon: 3.3792057 - - name: Mombasa NodeSchool - location: 'Mombasa, KE' - organizers: - - huzeifa - repo: 'http://github.com/nodeschool/mombasa' - lat: -4.0434771 - lon: 39.6682065 meetups: - - utc_offset: 7200000 - country: ES - visibility: public - city: Madrid - timezone: Europe/Madrid - created: 1361713840000 - link: 'http://www.meetup.com/AngularJS_Madrid/' - rating: 4.58 - description: '

Grupo de interés sobre AngularJS localizado en Madrid

' - lon: -3.7100000381469727 - group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/7/7/4/9/highres_436590537.jpeg' - photo_id: 436590537 - photo_link: 'http://photos1.meetupstatic.com/photos/event/7/7/4/9/600_436590537.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/7/7/4/9/thumb_436590537.jpeg' - join_mode: open - organizer: - member_id: 77041332 - name: Juanfran - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/6/1/a/0/highres_93444992.jpeg' - photo_id: 93444992 - photo_link: 'http://photos4.meetupstatic.com/photos/member/6/1/a/0/member_93444992.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/6/1/a/0/thumb_93444992.jpeg' - members: 1931 - name: AngularJS Madrid - lat: 40.41999816894531 - who: Desarrolladores - - utc_offset: 7200000 - country: ZA - visibility: public + - country: ZA city: Cape Town - timezone: Africa/Johannesburg - created: 1369484830000 link: 'http://www.meetup.com/Code-Craftsmanship/' - rating: 4.52 + name: Code Craftsmanship description: 'Exploring the art of code craftsmanship. A collective that meets to discuss, challenge and explore opportunities in building progressive software. From front-end design and development through to NoSQL databases. Discussing tools, processes and learnings from realworld implementations. Design, UX, front-end, back-end and beyond all discussed.' lon: 18.459999084472656 - join_mode: open - organizer: - member_id: 93109162 - name: Samuel Goldenbaum - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/d/f/f/4/highres_116997332.jpeg' - photo_id: 116997332 - photo_link: 'http://photos1.meetupstatic.com/photos/member/d/f/f/4/member_116997332.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/d/f/f/4/thumb_116997332.jpeg' - members: 326 - name: Code Craftsmanship lat: -33.93000030517578 - who: Craftsmen - - utc_offset: 7200000 - country: ES - visibility: public - city: Madrid - timezone: Europe/Madrid - created: 1376009319000 - link: 'http://www.meetup.com/Node-js-Madrid/' - rating: 4.67 - description: >- -

En este grupo hablamos de Node.js y sus aplicaciones, siempre con un - enfoque práctico. Nos reunimos una vez al mes para vernos las caras, - y para escuchar charlas de alguien de la comunidad... por ejemplo tú. - Actualmente estamos enlazando una charla introductoria y otra avanzada, - para llegar a todos los públicos.

- -

Node.js es una plataforma robusta y escalable para servir - aplicaciones web, basada en JavaScript. Grandes empresas como Walmart, - PayPal o LinkedIn se han lanzado a la piscina y están migrando sus - webs; y muchas otras empresas (extranjeras y españolas) usan Node.js en - producción.

- -

¿Tienes algo que contar? ¡Estamos interesados! Aceptamos propuestas - en GitHub: https://github.com/NodeJsMadrid/talks. Nos - regimos por este código - de conducta.

- -

Síguenos en Twitter: https://twitter.com/NodeJsMadrid

- lon: -3.7100000381469727 - group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/1/4/7/0/highres_377645232.jpeg' - photo_id: 377645232 - photo_link: 'http://photos3.meetupstatic.com/photos/event/1/4/7/0/600_377645232.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/1/4/7/0/thumb_377645232.jpeg' - join_mode: open - organizer: - member_id: 24523552 - name: Ivan Perez - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/0/d/6/highres_92232502.jpeg' - photo_id: 92232502 - photo_link: 'http://photos2.meetupstatic.com/photos/member/3/0/d/6/member_92232502.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/3/0/d/6/thumb_92232502.jpeg' - members: 2016 - name: Node.js Madrid - lat: 40.41999816894531 - who: asíncronos - - utc_offset: 7200000 - country: ZA - visibility: public + - country: ZA city: Johannesburg - timezone: Africa/Johannesburg - created: 1376317478000 link: 'http://www.meetup.com/Jozi-Node-JS/' - rating: 4.57 + name: Jozi.Node.JS description: Come and find out about Node.js the awesome server side development environment. All welcome. lon: 28.040000915527344 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/e/7/6/highres_358623702.jpeg' - photo_id: 358623702 photo_link: 'http://photos3.meetupstatic.com/photos/event/e/7/6/600_358623702.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/e/7/6/thumb_358623702.jpeg' - join_mode: open - organizer: - member_id: 11298403 - name: Len Weincier - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/e/3/3/2/highres_139258162.jpeg' - photo_id: 139258162 - photo_link: 'http://photos2.meetupstatic.com/photos/member/e/3/3/2/member_139258162.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/e/3/3/2/thumb_139258162.jpeg' - members: 281 - name: Jozi.Node.JS lat: -26.190000534057617 - who: Coders - - utc_offset: 7200000 - country: ES - visibility: public - city: Barcelona - timezone: Europe/Madrid - created: 1378288829000 - link: 'http://www.meetup.com/AngularJS-Barcelona/' - rating: 4.53 - description: '

We love AngularJS, we love the way it helps us build better web applications with less effort and we would love to meet other AngularJS developers in the Barcelona area so that we can discuss our approaches, ways, etc. with them.

' - lon: 2.1700000762939453 - group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/c/f/a/a/highres_335273162.jpeg' - photo_id: 335273162 - photo_link: 'http://photos1.meetupstatic.com/photos/event/c/f/a/a/600_335273162.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/c/f/a/a/thumb_335273162.jpeg' - join_mode: open - organizer: - member_id: 194993837 - name: BarcelonaJS - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/3/6/c/1/highres_251054017.jpeg' - photo_id: 251054017 - photo_link: 'http://photos2.meetupstatic.com/photos/member/3/6/c/1/member_251054017.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/6/c/1/thumb_251054017.jpeg' - members: 796 - name: AngularJS Barcelona - lat: 41.400001525878906 - who: angularistas - - utc_offset: 3600000 - country: ES - visibility: public - city: Málaga - timezone: Europe/Madrid - created: 1378307285000 - link: 'http://www.meetup.com/web-sol/' - rating: 5 - description: "

Node Sol nacio con la mision de conectar apasionados del Node en Málaga. Hemos hecho varias charlas y workshops y constantemente planificamos nuevos eventos alrededor de las tendencias más innovadoras en la web: Node.js, Angular, Python, API's, Ruby on Rails, JavaScript, Erlang, Swift, socket.io, MongoDb, Redis, Cassandra, AWS y herramientas para desarrolladores.

" - lon: -4.420000076293945 - join_mode: open - organizer: - member_id: 52868752 - name: Leo Lara - photo: - photo_id: 60306722 - photo_link: 'http://photos4.meetupstatic.com/photos/member/1/a/4/2/member_60306722.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/1/a/4/2/thumb_60306722.jpeg' - members: 173 - name: Web Sol - lat: 36.720001220703125 - who: Coders - - utc_offset: 7200000 - country: ZA - visibility: public + - country: ZA city: Cape Town - timezone: Africa/Johannesburg - created: 1382646047000 link: 'http://www.meetup.com/nodecpt/' - rating: 4.58 - description: >- -

Thanks to the brilliant work of Ryan Dahl, we have node.js, - a beautiful and elegant server-side framework built on top of Google's - V8 Javascript engine. This opens up a whole new world of possibility - for developing web apps, APIs, and lightweight HTTP servers.

- -

We try to meet each month on the third week. Each month we'll have - a group discussion on a particular aspect of NodeJS, using it to build - apps and any tools or workflows based on it.

- -

If you'd like to present, please send a note with your topic. If you - have a suggestion for a topic, feel free to submit it.

- -

We are always looking for spaces to use for the meetups. If you'd - like to offer a space for us to use, please reach out to us.

+ name: NodeJS Cape Town + description: |- +

Thanks to the brilliant work of Ryan Dahl, we have node.js, a beautiful and elegant server-side framework built on top of Google's V8 Javascript engine. This opens up a whole new world of possibility for developing web apps, APIs, and lightweight HTTP servers.

+

We try to meet each month on the third week. Each month we'll have a group discussion on a particular aspect of NodeJS, using it to build apps and any tools or workflows based on it.

+

If you'd like to present, please send a note with your topic. If you have a suggestion for a topic, feel free to submit it.

+

We are always looking for spaces to use for the meetups. If you'd like to offer a space for us to use, please reach out to us.

lon: 18.459999084472656 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/e/3/8/c/highres_298438252.jpeg' - photo_id: 298438252 photo_link: 'http://photos4.meetupstatic.com/photos/event/e/3/8/c/600_298438252.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/e/3/8/c/thumb_298438252.jpeg' - join_mode: open - organizer: - member_id: 102778372 - name: Johann du Toit - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/5/8/f/1/highres_242002769.jpeg' - photo_id: 242002769 - photo_link: 'http://photos4.meetupstatic.com/photos/member/5/8/f/1/member_242002769.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/5/8/f/1/thumb_242002769.jpeg' - members: 371 - name: NodeJS Cape Town lat: -33.93000030517578 - who: Callbacks - - utc_offset: 7200000 - country: ES - visibility: public - city: Barcelona - timezone: Europe/Madrid - created: 1401354553000 - link: 'http://www.meetup.com/Bluemix-Barcelona/' - rating: 4.25 - description: >- -

¿Quieres conocer el entorno de ejecución de aplicaciones Cloud - de IBM? Si eres un creador de aplicaciones o un emprendedor con ideas, - este es tu grupo. Bluemix es una plataforma Cloud, con una entrada - gratuita, en la que puedes desplegar tus aplicaciones. Además está - basado en CloudFoundry, así que soporta casi todos los lenguajes de - programación.

- -

Vamos a darle a la tecla... pero con estilo

- -

- -


- -

¿Quieres saber qué es Bluemix ya? Aquí tenemos una comunidad - de IBM DeveloperWorks con información y tutoriales en - castellano:

- -

Comunidad - DeveloperWorks de Bluemix España (dentro está la Wiki, y materiales del - workshop que damos)

- -

Página de acceso - a Bluemix

- lon: 2.1700000762939453 - group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/b/8/a/8/highres_369167272.jpeg' - photo_id: 369167272 - photo_link: 'http://photos4.meetupstatic.com/photos/event/b/8/a/8/600_369167272.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/b/8/a/8/thumb_369167272.jpeg' - join_mode: open - organizer: - member_id: 195963530 - name: Bluemix Fan - members: 99 - name: Bluemix Barcelona - lat: 41.400001525878906 - who: Bluemixers locos - - utc_offset: 7200000 - country: ZA - visibility: public + - country: ZA city: Cape Town - timezone: Africa/Johannesburg - created: 1403298894000 link: 'http://www.meetup.com/Cape-Town-Nodebots/' - rating: 4.37 + name: Cape Town Nodebots description: "Calling all Cape Town (aspiring) hardware hackers! We use Javascript to move more than just DIVs. For those interested in hacking hardware using Javascript. If you want to built a robot, but don't know where to start, this is for you. Or maybe you are an old Arduino hand trying something new or want to teach others a few ticks. Alternatively you can just come to show off your latest bot..." lon: 18.459999084472656 - join_mode: open - organizer: - member_id: 151111552 - name: Andre Vermeulen - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/d/5/a/4/highres_207174692.jpeg' - photo_id: 207174692 - photo_link: 'http://photos4.meetupstatic.com/photos/member/d/5/a/4/member_207174692.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/d/5/a/4/thumb_207174692.jpeg' - members: 190 - name: Cape Town Nodebots lat: -33.93000030517578 - who: Nodebots - - utc_offset: 7200000 - country: ES - visibility: public - city: Palma - timezone: Europe/Madrid - created: 1406745692000 - link: 'http://www.meetup.com/MallorcaJS/' - rating: 4.97 - description: "

This is a group for people doing stuff with JavaScript.
If you are building rich Internet applications, working with libraries or crafting cool code, you'll find people to share your experiences with.
If you are just starting out, come and meet others who have been there. This is a place to share knowledge, ask questions, teach and meet new faces.
Everyone is welcome!

" - lon: 2.6500000953674316 - group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/d/d/b/0/highres_408536752.jpeg' - photo_id: 408536752 - photo_link: 'http://photos4.meetupstatic.com/photos/event/d/d/b/0/600_408536752.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/d/d/b/0/thumb_408536752.jpeg' - join_mode: open - organizer: - member_id: 89927962 - name: "Kevin O'Hagan" - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/c/1/f/4/highres_111769652.jpeg' - photo_id: 111769652 - photo_link: 'http://photos4.meetupstatic.com/photos/member/c/1/f/4/member_111769652.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/c/1/f/4/thumb_111769652.jpeg' - members: 402 - name: MallorcaJS - lat: 39.56999969482422 - who: JavaScripters - - utc_offset: 10800000 - country: KE - visibility: public + - country: KE city: Nairobi - timezone: Africa/Nairobi - created: 1413204985000 link: 'http://www.meetup.com/Nairobi-node-js-Meetup/' + name: Nairobi node.js Meetup description: 'Node Js is fast growing, lets learn and share' lon: 36.81999969482422 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/2/3/d/0/highres_437469168.jpeg' - photo_id: 437469168 photo_link: 'http://photos3.meetupstatic.com/photos/event/2/3/d/0/600_437469168.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/2/3/d/0/thumb_437469168.jpeg' - join_mode: open - organizer: - member_id: 177366692 - name: Geoffrey Mureithi - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/8/e/a/d/highres_248916525.jpeg' - photo_id: 248916525 - photo_link: 'http://photos2.meetupstatic.com/photos/member/8/e/a/d/member_248916525.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/8/e/a/d/thumb_248916525.jpeg' - members: 98 - name: Nairobi node.js Meetup lat: -1.2899999618530273 - who: Node Programmers - - utc_offset: 7200000 - country: EG - visibility: public + - country: EG city: Cairo - timezone: Africa/Cairo - created: 1414124330000 link: 'http://www.meetup.com/Meteor-Egypt/' + name: Meteor Egypt description: "

Meet other developers using Meteor. Share your knowledge, apps, and get feedback from others. Meteor is an open-source platform for building top-quality web apps in a fraction of the time, whether you're an expert developer or just getting started.

" lon: 31.25 - join_mode: open - organizer: - member_id: 81670332 - name: Nick Coe - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/highres_245331334.jpeg' - photo_id: 245331334 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/8/8/6/member_245331334.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/thumb_245331334.jpeg' - members: 550 - name: Meteor Egypt lat: 30.059999465942383 - who: Meteorites - - utc_offset: 7200000 - country: ES - visibility: public - city: Madrid - timezone: Europe/Madrid - created: 1415695375000 - link: 'http://www.meetup.com/Redradix-Weekends/' - rating: 4.94 - description: '

Los weekends de Redradix son charlas cortas y eminentemente prácticas, talleres o conferencias donde se habla de temas interesantes en el mundo de la tecnología web. Es un evento abierto y gratis, reuniéndonos en las oficinas de Redradix. Solemos hacer uno al mes.

' - lon: -3.7100000381469727 - group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/3/b/highres_448320059.jpeg' - photo_id: 448320059 - photo_link: 'http://photos4.meetupstatic.com/photos/event/3/b/600_448320059.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/3/b/thumb_448320059.jpeg' - join_mode: open - organizer: - member_id: 80500992 - name: Juan Marí - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/c/2/7/d/highres_241429789.jpeg' - photo_id: 241429789 - photo_link: 'http://photos4.meetupstatic.com/photos/member/c/2/7/d/member_241429789.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/c/2/7/d/thumb_241429789.jpeg' - members: 297 - name: Redradix Weekends - lat: 40.41999816894531 - who: Members - - utc_offset: 3600000 - country: ES - visibility: public - city: Barcelona - timezone: Europe/Madrid - created: 1417861594000 - link: 'http://www.meetup.com/NodeBCN/' - rating: 4.88 - description: '

Node.js Barcelona is organised by collaborators of BarcelonaJS. BarcelonaJS is a usergroup focused on JavaScript and related topics with regular meetings in Barcelona.

' - lon: 2.1700000762939453 - group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/7/d/4/6/highres_432152070.jpeg' - photo_id: 432152070 - photo_link: 'http://photos1.meetupstatic.com/photos/event/7/d/4/6/600_432152070.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/7/d/4/6/thumb_432152070.jpeg' - join_mode: open - organizer: - member_id: 91454402 - name: Patrick Heneise - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/4/3/8/0/highres_250697280.jpeg' - photo_id: 250697280 - photo_link: 'http://photos4.meetupstatic.com/photos/member/4/3/8/0/member_250697280.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/4/3/8/0/thumb_250697280.jpeg' - members: 620 - name: NodeBCN - lat: 41.400001525878906 - who: Enthusiasts - - utc_offset: 7200000 - country: ES - visibility: public - city: Barcelona - timezone: Europe/Madrid - created: 1417912554000 - link: 'http://www.meetup.com/Meteor-Barcelona/' - rating: 5 - description: >- -

Conoce a otros desarrolladores que utilizan Meteor. Comparte tus conocimientos, - aplicaciones, y aprende de ellos. Meteor es una plataforma de código - abierto para la creación de aplicaciones web de alta calidad en una - fracción del tiempo, tanto si eres un desarrollador experto o acabas de - empezar.

- -

Meet other developers using Meteor. - Share your knowledge, apps, and get feedback from others. Meteor is an - open-source platform for building top-quality web apps in a fraction of - the time, whether you're an expert developer or just getting - started.
- - - -

- lon: 2.1700000762939453 - group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/9/c/9/e/highres_432220094.jpeg' - photo_id: 432220094 - photo_link: 'http://photos4.meetupstatic.com/photos/event/9/c/9/e/600_432220094.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/9/c/9/e/thumb_432220094.jpeg' - join_mode: open - organizer: - member_id: 167620972 - name: Marc Polo - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/3/3/1/9/highres_246493081.jpeg' - photo_id: 246493081 - photo_link: 'http://photos3.meetupstatic.com/photos/member/3/3/1/9/member_246493081.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/3/3/1/9/thumb_246493081.jpeg' - members: 240 - name: Meteor Barcelona - lat: 41.400001525878906 - who: Meteorites - - utc_offset: 3600000 - country: MA - visibility: public + - country: MA city: Casablanca - timezone: Africa/Casablanca - created: 1419364731000 link: 'http://www.meetup.com/Meteor-Casablanca/' - rating: 4.84 + name: Meteor Casablanca description: "

a community gathering Meteor enthusiasts and passionate developpers to share knowledge in an inspiring way.

\n

Meteor is an open-source platform for building top-quality web apps in a fraction of the time, whether you're an expert developer or just getting started.

\n
\n\nBuilding web application is hard and time consuming and often an intimidating process , it was the right time to invent a new way to aproach building application by hiding irrelevant complexity and focus more on the core of the product. we believe this new aproach is championned by Meteor , and this deserves \_regular celebration \_meetings during which people can share their passion , in a human friendly way .
\n\nand also build things that can grow to be exciting !!\n


\n\n

" lon: -7.579999923706055 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/d/3/b/0/highres_432774192.jpeg' - photo_id: 432774192 photo_link: 'http://photos2.meetupstatic.com/photos/event/d/3/b/0/600_432774192.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/d/3/b/0/thumb_432774192.jpeg' - join_mode: open - organizer: - member_id: 81670332 - name: Nick Coe - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/highres_245331334.jpeg' - photo_id: 245331334 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/8/8/6/member_245331334.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/thumb_245331334.jpeg' - members: 719 - name: Meteor Casablanca lat: 33.529998779296875 - who: Meteorites - - utc_offset: 10800000 - country: KE - visibility: public + - country: KE city: Nairobi - timezone: Africa/Nairobi - created: 1425138105000 link: 'http://www.meetup.com/nairobi-js/' - rating: 4 - description: >- -

Community/user group focused on HTML5, CSS3, JavaScript - inclusive of Node.js and related web development topics. We meet - regularly on the 1st Saturday each month at 2 pm at iHub tech space.

- + name: Nairobi JavaScript Community + description: |- +

Community/user group focused on HTML5, CSS3, JavaScript inclusive of Node.js and related web development topics. We meet regularly on the 1st Saturday each month at 2 pm at iHub tech space.

Other channels

-

We have a Slack and thriving WhatsApp channel/groups:

- -

Slack: http://bit.ly/slack-nbi-js - (self-invite)

- -

WhatsApp: get in touch with me (email and twitter - handle at the bottom)

- +

Slack: http://bit.ly/slack-nbi-js (self-invite)

+

WhatsApp: get in touch with me (email and twitter handle at the bottom)


Introduction

- -

First of all, head over to Trippa, a speed typing testing - application, and check/test it out. When satisfied with what you see, - head over to it's repo -- http://github.com/kn9ts/trippa, - study the files and file structure while at it. Then check out the - project (link at the top of the repo).

- -

It was done in 3 days. Is this possible? - Yes. How?Using:

- +

First of all, head over to Trippa, a speed typing testing application, and check/test it out. When satisfied with what you see, head over to it's repo -- http://github.com/kn9ts/trippa, study the files and file structure while at it. Then check out the project (link at the top of the repo).

+

It was done in 3 days. Is this possible? Yes. How?Using:

- JavaScript Framework

-

- LESS, a CSS preprocessor

-

- JADE, a HTML5/Node.js templating engine

-

- Bower & NPM for efficient package management

- -

- Firebase, a cloud push service, database and static server - deployment

- +

- Firebase, a cloud push service, database and static server deployment

- Gulp.js, a task automation tool

- -

- Git & Github for version control and repo hosting - respectively

- -

- Jshint, a linting tool that automates syntax errors detection - and reporting

- +

- Git & Github for version control and repo hosting respectively

+

- Jshint, a linting tool that automates syntax errors detection and reporting

- Static file handling

- -

Now it's harder to believe it was done in 3 days. Since it just - seems I've cooked up all the above.

- -

If all the mentioned above were like "何とか何とか何とか..." to - you, then you have all the reasons to join this community and be - present in all meet-ups and understand how we are able to build complex - applications MVPs in mere days or hours. And find out what the "fudge" - all the above are.

- -

We look forward to hearing from you, and to seeing you at an - upcoming event. Get in touch at eugenemutai@gmail.com or - holla at me on twitter: @kn9ts

+

Now it's harder to believe it was done in 3 days. Since it just seems I've cooked up all the above.

+

If all the mentioned above were like "何とか何とか何とか..." to you, then you have all the reasons to join this community and be present in all meet-ups and understand how we are able to build complex applications MVPs in mere days or hours. And find out what the "fudge" all the above are.

+

We look forward to hearing from you, and to seeing you at an upcoming event. Get in touch at eugenemutai@gmail.com or holla at me on twitter: @kn9ts

lon: 36.81999969482422 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/7/9/e/a/highres_441871210.jpeg' - photo_id: 441871210 photo_link: 'http://photos2.meetupstatic.com/photos/event/7/9/e/a/600_441871210.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/7/9/e/a/thumb_441871210.jpeg' - join_mode: open - organizer: - member_id: 184620418 - name: Eugene Mutai - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/c/e/7/d/highres_251032861.jpeg' - photo_id: 251032861 - photo_link: 'http://photos3.meetupstatic.com/photos/member/c/e/7/d/member_251032861.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/c/e/7/d/thumb_251032861.jpeg' - members: 393 - name: Nairobi JavaScript Community lat: -1.2899999618530273 - who: Community Members - - utc_offset: 7200000 - country: ES - visibility: public - city: Valencia - timezone: Europe/Madrid - created: 1427323116000 - link: 'http://www.meetup.com/ValenciaJS/' - rating: 4.37 - description: '

A meetup in Valencia for people that hack JavaScript, previous talks. Join to our Slack channel.

' - lon: -0.38999998569488525 - group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/6/8/a/9/highres_435626793.jpeg' - photo_id: 435626793 - photo_link: 'http://photos3.meetupstatic.com/photos/event/6/8/a/9/600_435626793.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/6/8/a/9/thumb_435626793.jpeg' - join_mode: open - organizer: - member_id: 154704602 - name: David Bonet - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/8/c/6/6/highres_208895942.jpeg' - photo_id: 208895942 - photo_link: 'http://photos4.meetupstatic.com/photos/member/8/c/6/6/member_208895942.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/8/c/6/6/thumb_208895942.jpeg' - members: 401 - name: ValenciaJS - lat: 39.47999954223633 - who: Javascripters - - utc_offset: 7200000 - country: ZA - visibility: public + - country: ZA city: Johannesburg - timezone: Africa/Johannesburg - created: 1427702802000 link: 'http://www.meetup.com/Johannesburg-ReactJS-Meetup/' + name: Johannesburg ReactJS Meetup description: 'This group is for anyone looking to learn and use ReactJS in production. We will be covering the FLUX architecture, Functional Reactive Programming, and React Native. We also cover how to test React components properly. Finally we will learn Relay and the GraphQL once they have been released to the public.' lon: 28.040000915527344 - join_mode: open - organizer: - member_id: 100295292 - name: Tyrone Michael Avnit - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/5/a/8/6/highres_244943174.jpeg' - photo_id: 244943174 - photo_link: 'http://photos2.meetupstatic.com/photos/member/5/a/8/6/member_244943174.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/5/a/8/6/thumb_244943174.jpeg' - members: 50 - name: Johannesburg ReactJS Meetup lat: -26.190000534057617 - who: Engineers - - utc_offset: 7200000 - country: ES - visibility: public - city: Barcelona - timezone: Europe/Madrid - created: 1428321061000 - link: 'http://www.meetup.com/AngularJS-Beers/' - rating: 4.72 - description: >- -

- -

AngularJS - & Beers. Informal event to socialise with AngularJS - people. 
Express your motivations, share your ideas and - play together creating awesome things in team.

- -

We like to hack, learn, share and having fun in group while we - are using AngularJS. All experience levels and backgrounds - are welcome. We love get action doing things. Join us!

- -


- lon: 2.1700000762939453 - group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/9/2/4/b/highres_447577451.jpeg' - photo_id: 447577451 - photo_link: 'http://photos1.meetupstatic.com/photos/event/9/2/4/b/600_447577451.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/9/2/4/b/thumb_447577451.jpeg' - join_mode: open - organizer: - member_id: 107536792 - name: David Pich - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/7/3/d/e/highres_187889662.jpeg' - photo_id: 187889662 - photo_link: 'http://photos2.meetupstatic.com/photos/member/7/3/d/e/member_187889662.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/7/3/d/e/thumb_187889662.jpeg' - members: 1030 - name: 'AngularJS & Beers' - lat: 41.400001525878906 - who: Members - - utc_offset: 7200000 - country: ES - visibility: public - city: Sevilla - timezone: Europe/Madrid - created: 1430324549000 - link: 'http://www.meetup.com/Bitnami-Sevilla/' - rating: 4.89 - description: '

Desde Bitnami queremos contribuir al conocimiento de las nuevas tecnologías en Sevilla, organizando encuentros y talleres relacionados con las tecnologías del desarrollo software y de Cloud Computing.

' - lon: -5.980000019073486 - group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/6/7/3/7/highres_437006423.jpeg' - photo_id: 437006423 - photo_link: 'http://photos4.meetupstatic.com/photos/event/6/7/3/7/600_437006423.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/6/7/3/7/thumb_437006423.jpeg' - join_mode: open - organizer: - member_id: 151620792 - name: Beltran - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/b/6/7/5/highres_251986709.jpeg' - photo_id: 251986709 - photo_link: 'http://photos3.meetupstatic.com/photos/member/b/6/7/5/member_251986709.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/b/6/7/5/thumb_251986709.jpeg' - members: 482 - name: Bitnami Sevilla - lat: 37.400001525878906 - who: bitcoders - - utc_offset: 7200000 - country: ES - visibility: public - city: Barcelona - timezone: Europe/Madrid - created: 1431992316000 - link: 'http://www.meetup.com/ReactJS-Barcelona/' - rating: 5 - description: '

We are the first meetup group in Barcelona about Facebook React.Js. We aim to organize regular events talking about React.js, Flux and all other libraries related to it. We also want to participate to React and Javascript conferences together. Starting with ReactEurope on July 2-3, 2015 in Paris.

' - lon: 2.1700000762939453 - group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/b/c/6/8/highres_437628232.jpeg' - photo_id: 437628232 - photo_link: 'http://photos4.meetupstatic.com/photos/event/b/c/6/8/600_437628232.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/b/c/6/8/thumb_437628232.jpeg' - join_mode: open - organizer: - member_id: 18837071 - name: Marco De Gregorio - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/b/f/f/d/highres_246289149.jpeg' - photo_id: 246289149 - photo_link: 'http://photos1.meetupstatic.com/photos/member/b/f/f/d/member_246289149.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/b/f/f/d/thumb_246289149.jpeg' - members: 263 - name: ReactJS Barcelona - lat: 41.400001525878906 - who: Reactors - - utc_offset: 7200000 - country: ES - visibility: public - city: Palma - timezone: Europe/Madrid - created: 1432132571000 - link: 'http://www.meetup.com/Mallorca-Cassandra-Users/' - description: "

The Apache Cassandra Project develops a highly scalable second-generation distributed database, bringing together Dynamo's fully distributed design and Bigtable's ColumnFamily-based data model. This Apache Cassandra User Group is a highly awesome meetup group, bringing together cool people to talk about our favorite NoSQL implementation, Apache Cassandra.

" - lon: 2.6500000953674316 - group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/a/6/6/9/highres_437682601.jpeg' - photo_id: 437682601 - photo_link: 'http://photos3.meetupstatic.com/photos/event/a/6/6/9/600_437682601.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/a/6/6/9/thumb_437682601.jpeg' - join_mode: open - organizer: - member_id: 95402442 - name: DataStax - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/d/a/a/4/highres_120895972.jpeg' - photo_id: 120895972 - photo_link: 'http://photos1.meetupstatic.com/photos/member/d/a/a/4/member_120895972.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/d/a/a/4/thumb_120895972.jpeg' - members: 16 - name: Mallorca Cassandra Users - by DataStax - - lat: 39.56999969482422 - who: Cassandra Rebels - - utc_offset: 14400000 - country: MU - visibility: public + - country: MU city: Port Louis - timezone: Indian/Mauritius - created: 1434578707000 link: 'http://www.meetup.com/frontend-mauritius/' + name: Front-end Mauritius description: "

Front-end Mauritius is a free evening meetup that's dedicated to all aspects of front-end development.

" lon: 57.5099983215332 - join_mode: open - organizer: - member_id: 31664202 - name: David Dias - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/b/6/8/highres_46492072.jpeg' - photo_id: 46492072 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/b/6/8/member_46492072.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/b/6/8/thumb_46492072.jpeg' - members: 36 - name: Front-end Mauritius lat: -20.170000076293945 - who: front-end - - utc_offset: 7200000 - country: ZA - visibility: public + - country: ZA city: Johannesburg - timezone: Africa/Johannesburg - created: 1435002035000 link: 'http://www.meetup.com/Johannesburg-Ember-JS-Drinkup/' + name: Johannesburg Ember JS Drinkup description: "

A meetup group to meet ambitious Ember.js developers! Let's get together periodically to talk about code, eat, drink, and generally geek out. We welcome people ranging from EmberJs/JavaScript/HTML/CSS apprentices to card-holding category theorists.  In other words: if front end development, anything from the Ember technology stack, or JavaScript excite you -- check us out!

" lon: 28.040000915527344 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/8/c/f/d/highres_439176093.jpeg' - photo_id: 439176093 photo_link: 'http://photos3.meetupstatic.com/photos/event/8/c/f/d/600_439176093.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/8/c/f/d/thumb_439176093.jpeg' - join_mode: open - organizer: - member_id: 141006412 - name: Sanket Sharma - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/3/2/6/e/highres_247032910.jpeg' - photo_id: 247032910 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/2/6/e/member_247032910.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/3/2/6/e/thumb_247032910.jpeg' - members: 29 - name: Johannesburg Ember JS Drinkup lat: -26.190000534057617 - who: Tomsters - - utc_offset: 3600000 - country: ES - visibility: public - city: Las Palmas - timezone: Atlantic/Canary - created: 1436877222000 - link: 'http://www.meetup.com/Gran-Canaria-JavaScript-Community/' - rating: 4.33 - description: '

Grupo para los amantes de este lenguaje de programación que quieran compartir sus experiencias, reunirse, debatir y también aprender de otros compañeros o todos juntos ha hacer un mejor JavaScript.

' - lon: -15.430000305175781 + - country: MA + city: Casablanca + link: 'http://www.meetup.com/Casablanca-js/' + name: Casablanca.js + description: '

 Javascript has become prominent in the Technology ecosystem. so many great implementations of frameworks out there that unfold endless possibilities for futur systems and that also bring many challenges along the way, to step up in that ever growing worldwide competition and have what it takes to not only ensure survival but to achieve a top level of coding skills, full awareness of past/present and futur of Javascript and evolving in an inspiring local ecosystem,we are urged to build a solid community.

We think Casablanca /Morocco is challenged to produce highly skilled developers and that is only achievable through community involvement and knowledge sharing , this meetup has the ambition to be a rich platform committed to drive Javascript knowledge through organizing regular events during which we will talk about different themes related to Javascript ,Hack together ,share little stories,dream big and of course EAT :D .

stay tunned for the upcoming event :)

' + lon: -7.579999923706055 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/9/c/3/d/highres_439779997.jpeg' - photo_id: 439779997 - photo_link: 'http://photos1.meetupstatic.com/photos/event/9/c/3/d/600_439779997.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/9/c/3/d/thumb_439779997.jpeg' - join_mode: open - organizer: - member_id: 186332457 - name: Alberto D.Sosa - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/3/c/6/8/highres_245475464.jpeg' - photo_id: 245475464 - photo_link: 'http://photos3.meetupstatic.com/photos/member/3/c/6/8/member_245475464.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/3/c/6/8/thumb_245475464.jpeg' - members: 153 - name: Canarias JavaScript Community - lat: 28.100000381469727 - who: Hackers - - country: ES - visibility: public - city: Las Palmas - timezone: Atlantic/Canary - created: 1447951917000 - link: 'http://www.meetup.com/lpamean/' - description: >- -

Aprende, participa y asiste a eventos relacionados con MEAN - Framework: MongoDB, ExpressJS, AngularJS y NodeJS. Además Phonegap - y desarrollo móvil.

- -

=== NodeJS ===

- -

Javascript en el lado del servidor. Aprende a crear aplicaciones en - tiempo real con Socket.io. Crea juegos multijuador y chats. Backends - Flexibles en 5 minutos. Descubre la tecnología mejor pagada de Silicon - Valley. === AngularJS ===

- -

El mejor Framework JavaScript para desarrollar aplicaciones - Móviles y Web. Desarrollado por Google. 

- -

=== MongoDB ===

- -

La mejor Base de Datos NoSQL por excelencia. Con Mongo veremos - como construir aplicaciones y backends flexibles, para pivotar las - funcionalidades de nuestra aplicación adaptándolas a nuestros clientes. - Además veremos cómo utilizar Mongo para analizar BIGDATA.

- -

=== PhoneGap === 

- -

PhoneGap o mejor dicho Cordova nos permite empaquetar código - Web en aplicaciones nativas para iOS, Android, WindowsPhone, FirefoxOS, - etc. Discutiremos qué frameworks y cómo desarrollar aplicaciones - móviles híbridas de aspecto y performance nativo.

- -

=== En general === 

- -

Las últimas tecnologías para el desarrollo Web y Móvil, - siguiendo las filosofías Lean Startup, Mobile First, NoSQL, NoBackend, - Agile Development, Gamification.

- -

Si eres Entrepreneur / Emprendeodor, entonces necesitas - conocer los mejores entornos de desarrollo, y estar al día. Aprende, - Crece, Comparte

- -

Recursos: 
MongoDB (Mongoose)
mean.io 
AngularJS 
Node.js (Express )

- -

Build - a Real-time Polls Application with Node.js, Express, AngularJS and - MongoDB (IBM Tutorial)

- lon: -15.430000305175781 + photo_link: 'http://photos3.meetupstatic.com/photos/event/1/1/e/5/600_446344581.jpeg' + lat: 33.529998779296875 + - country: MA + city: Rabat + link: 'http://www.meetup.com/ngMorocco/' + name: ngMorocco - Moroccan AngularJS community + description: '

The Moroccan AngularJS Developer Community The main goal of ngMorocco is to share AngularJS knowledge and best-practices, to gather people who are passionate about AngularJS and enable them to talk, socialize and learn from the best, with delicious food and a friendly atmosphere no matter your gender, age, physical appearance, body size, race, or religion.

' + lon: -6.829999923706055 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/6/7/3/6/highres_444326422.jpeg' - photo_id: 444326422 - photo_link: 'http://photos1.meetupstatic.com/photos/event/6/7/3/6/600_444326422.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/6/7/3/6/thumb_444326422.jpeg' - join_mode: open - organizer: - member_id: 98763842 - name: Antonio Sejas - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/6/2/7/0/highres_245425200.jpeg' - photo_id: 245425200 - photo_link: 'http://photos3.meetupstatic.com/photos/member/6/2/7/0/member_245425200.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/6/2/7/0/thumb_245425200.jpeg' - members: 43 - name: 'LPA MEAN (MongoDB, Express, AngularJS, Node.js) & Phonegap' - lat: 28.100000381469727 - who: Mongo Angular Node Developers - - utc_offset: 7200000 - country: ES - visibility: public - city: La Rioja - timezone: Europe/Madrid - created: 1447963174000 - link: 'http://www.meetup.com/Angular-Hispano/' - description: '

Tú comunidad AngularJS en castellano. Tanto si has oído hablar de AngularJS pero aún no has tenido tiempo de probarlo, como si eres un usuario avanzado, este es el sitio para seguir aprendiendo.

' - lon: -2.440000057220459 - group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/6/6/d/e/highres_444326334.jpeg' - photo_id: 444326334 - photo_link: 'http://photos4.meetupstatic.com/photos/event/6/6/d/e/600_444326334.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/6/6/d/e/thumb_444326334.jpeg' - join_mode: approval - organizer: - member_id: 189058412 - name: José María Marcolain - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/b/1/b/f/highres_253185503.jpeg' - photo_id: 253185503 - photo_link: 'http://photos3.meetupstatic.com/photos/member/b/1/b/f/member_253185503.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/b/1/b/f/thumb_253185503.jpeg' - members: 18 - name: Angular Hispano - lat: 42.470001220703125 - who: angularistas - - utc_offset: 7200000 - country: ES - visibility: public - city: Madrid - timezone: Europe/Madrid - created: 1448358655000 - link: 'http://www.meetup.com/Tecnologias-para-la-Transformacion-Digital/' - rating: 4.5 - description: 'El grupo de usuarios de Tecnologías para la Transformación Digital pretende ser un punto de encuentro e intercambio de ideas acerca de tecnologías y metodologías que ayudan a los equipos IT a enfrentarse a los retos de la transformación digital, es decir, a desarrollar productos digitales con más foco en el usuario, más flexibilidad, mejor time to market, más escalabilidad, más disponibilidad y menos coste. Hablaremos por tanto de arquitecturas avanzadas con bajo acoplamiento, infraestructuras elásticas con escalado horizontal, tolerancia a fallos a nivel software, modelos de almacenamiento NoSQL, y de mejoras en el ciclo de vida del desarrollo software vía automatización de pruebas y continuous delivery.' - lon: -3.7100000381469727 - group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/a/0/f/b/highres_447641211.jpeg' - photo_id: 447641211 - photo_link: 'http://photos1.meetupstatic.com/photos/event/a/0/f/b/600_447641211.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/a/0/f/b/thumb_447641211.jpeg' - join_mode: open - organizer: - member_id: 193366971 - name: José Ruiz - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/2/9/8/5/highres_250090629.jpeg' - photo_id: 250090629 - photo_link: 'http://photos3.meetupstatic.com/photos/member/2/9/8/5/member_250090629.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/2/9/8/5/thumb_250090629.jpeg' - members: 259 - name: Tecnologías para la Transformación Digital - lat: 40.41999816894531 - who: Miembros - - utc_offset: 7200000 - country: ES - visibility: public - city: Barcelona - timezone: Europe/Madrid - created: 1448400459000 - link: 'http://www.meetup.com/React-Barcelona/' - description: >- -

React Barcelona nace con la intención de agrupar la - comunidad de desarrolladores de React en Barcelona, organizando eventos - del tipo Meetup y Workshops con la filosofía open source: libre - y gratuito para todo el mundo. 

- -

Próximamente en react.barcelona

- lon: 2.1700000762939453 - join_mode: open - organizer: - member_id: 51055632 - name: Joan Artés - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/a/3/f/2/highres_251081970.jpeg' - photo_id: 251081970 - photo_link: 'http://photos3.meetupstatic.com/photos/member/a/3/f/2/member_251081970.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/a/3/f/2/thumb_251081970.jpeg' - members: 174 - name: React Barcelona - lat: 41.400001525878906 - who: React Fans - - utc_offset: 7200000 - country: ES - visibility: public - city: Barcelona - timezone: Europe/Madrid - created: 1417712144000 - link: 'http://www.meetup.com/BarcelonaJS/' - rating: 4.2 - description: '

Barcelona.JS is a usergroup focused on JavaScript and related topics. We meet regularly at the Mobile World Centre, C/ de Fontanella, 2 in Barcelona.

' - lon: 2.1700000762939453 - group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/7/c/b/1/highres_432151921.jpeg' - photo_id: 432151921 - photo_link: 'http://photos1.meetupstatic.com/photos/event/7/c/b/1/600_432151921.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/7/c/b/1/thumb_432151921.jpeg' - join_mode: open - organizer: - member_id: 194993837 - name: BarcelonaJS - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/3/6/c/1/highres_251054017.jpeg' - photo_id: 251054017 - photo_link: 'http://photos2.meetupstatic.com/photos/member/3/6/c/1/member_251054017.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/6/c/1/thumb_251054017.jpeg' - members: 1328 - name: BarcelonaJS - lat: 41.400001525878906 - who: JavaScripters - - utc_offset: 7200000 - country: ES - visibility: public - city: Barcelona - timezone: Europe/Madrid - created: 1331568458000 - link: 'http://www.meetup.com/mongodb-spain/' - rating: 4.29 - description: "

Welcome to the Barcelona MongoDB User Group!\_ Once we were the sole forum for MongoDB users in Spain, and contained all meetings happening across the country for MongoDB. However, we are very pleased to now be one of several Spanish MongoDB User Groups -- including our friends in Madrid and Mallorca!

\n

You are welcome to join this group, even if you are not based in Barcelona -- however, if you are closer geographically to one of our other groups they might be more relevant for you.

\n

The purpose of the group is for users and people interested in using MongoDB to be able to meet up with like-minded people. Anything around MongoDB goes, even including using MongoDB other NoSQL solutions. Usually the meeting will have at least one presentation.

" - lon: 2.1700000762939453 - group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/2/e/5/6/highres_169931862.jpeg' - photo_id: 169931862 - photo_link: 'http://photos1.meetupstatic.com/photos/event/2/e/5/6/600_169931862.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/2/e/5/6/thumb_169931862.jpeg' - join_mode: open - organizer: - member_id: 47839632 - name: MongoDB - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/highres_243915101.jpeg' - photo_id: 243915101 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/a/f/d/member_243915101.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/thumb_243915101.jpeg' - members: 685 - name: Barcelona MongoDB User Group - lat: 41.400001525878906 - who: Members - - utc_offset: 7200000 - country: ES - visibility: public - city: Málaga - timezone: Europe/Madrid - created: 1378307285000 - link: 'http://www.meetup.com/techmalaga/' - rating: 5 - description: "

Node Sol nacio con la mision de conectar apasionados del Node en Málaga. Hemos hecho varias charlas y workshops y constantemente planificamos nuevos eventos alrededor de las tendencias más innovadoras en la web: Node.js, Angular, Python, API's, Ruby on Rails, JavaScript, Erlang, Swift, socket.io, MongoDb, Redis, Cassandra, AWS y herramientas para desarrolladores.

" - lon: -4.420000076293945 - join_mode: open - organizer: - member_id: 52868752 - name: Leo Lara - photo: - photo_id: 60306722 - photo_link: 'http://photos4.meetupstatic.com/photos/member/1/a/4/2/member_60306722.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/1/a/4/2/thumb_60306722.jpeg' - members: 299 - name: TechMalaga - lat: 36.720001220703125 - who: Coders - - utc_offset: 7200000 - country: ES - visibility: public - city: Sevilla - timezone: Europe/Madrid - created: 1390503983000 - link: 'http://www.meetup.com/Sevilla-MongoDB-User-Group/' - rating: 4.82 - description: '

We are a group dedicated to increasing knowledge and awareness about MongoDB, an Open Source, document-oriented, NoSQL database. Please join us for our monthly meetings to explore this flexible and scalable alternative to traditional relational databases like MySQL, Postgres, SQL Server and Oracle.

' - lon: -5.980000019073486 - group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/4/9/9/a/highres_326538842.jpeg' - photo_id: 326538842 - photo_link: 'http://photos2.meetupstatic.com/photos/event/4/9/9/a/600_326538842.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/4/9/9/a/thumb_326538842.jpeg' - join_mode: open - organizer: - member_id: 47839632 - name: MongoDB - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/highres_243915101.jpeg' - photo_id: 243915101 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/a/f/d/member_243915101.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/thumb_243915101.jpeg' - members: 289 - name: Sevilla MongoDB User Group - lat: 37.400001525878906 - who: Members - - utc_offset: 3600000 - country: MA - visibility: public - city: Casablanca - timezone: Africa/Casablanca - created: 1390504738000 - link: 'http://www.meetup.com/Casablanca-MongoDB-User-Group/' - description: '

We are a group dedicated to increasing knowledge and awareness about MongoDB, an Open Source, document-oriented, NoSQL database. Please join us for our monthly meetings to explore this flexible and scalable alternative to traditional relational databases like MySQL, Postgres, SQL Server and Oracle.

' - lon: -7.579999923706055 - group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/5/4/4/4/highres_326541572.jpeg' - photo_id: 326541572 - photo_link: 'http://photos2.meetupstatic.com/photos/event/5/4/4/4/600_326541572.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/5/4/4/4/thumb_326541572.jpeg' - join_mode: open - organizer: - member_id: 47839632 - name: MongoDB - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/highres_243915101.jpeg' - photo_id: 243915101 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/a/f/d/member_243915101.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/thumb_243915101.jpeg' - members: 610 - name: Casablanca MongoDB User Group - lat: 33.529998779296875 - who: Members - - utc_offset: 7200000 - country: EG - visibility: public - city: Cairo - timezone: Africa/Cairo - created: 1401978708000 - link: 'http://www.meetup.com/Cairo-MongoDB-Meet-up/' - description: '

This group is a place for developers to learn more about the non-relational, open source, document-oriented database MongoDB. So if you are facing challenges with MySQL or Postgres or Oracle and want to explore a more flexible, scalable alternative, please join us at one of our monthly sessions.

' - lon: 31.25 - group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/9/4/6/8/highres_371857992.jpeg' - photo_id: 371857992 - photo_link: 'http://photos2.meetupstatic.com/photos/event/9/4/6/8/600_371857992.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/9/4/6/8/thumb_371857992.jpeg' - join_mode: open - organizer: - member_id: 47839632 - name: MongoDB - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/highres_243915101.jpeg' - photo_id: 243915101 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/a/f/d/member_243915101.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/thumb_243915101.jpeg' - members: 44 - name: Cairo MongoDB Meet up - lat: 30.059999465942383 - who: Members - - utc_offset: 7200000 - country: ES - visibility: public - city: Barcelona - timezone: Europe/Madrid - created: 1446120508000 - link: 'http://www.meetup.com/Find-a-Tech-job-in-Barcelona/' - rating: 4.78 - description: >- -

Meetup for Barcelona Tech professionals interested in changing - job and share information about which of the many startups and tech - companies in the city are worth working for.

- -

We talk about salaries, work mates, programming practices - used, office atmosphere, (good/bad) bosses ...

- -

We also like to visit startups and meet their CTOs.

- -

This meetup is for technical people only: Developers, CTOs, - system administrators, UI/UX devs, testers - you're all - welcome. 

- -


- -

Company owner?

- -

Are you a tech company and want to host this meetup as a way to let - engineers know you? Let's get in touch at - info@jobsbcn.com

- -


- -

Slack

- -

Join our #Slack channel - to discuss about Salaries, Trending Industries, Jobs and Startups in - Barcelona. Request invite at info@jobsbcn.com

- -


- -


- -


- -


- -


- lon: 2.1700000762939453 - group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/b/1/9/c/highres_444105468.jpeg' - photo_id: 444105468 - photo_link: 'http://photos1.meetupstatic.com/photos/event/b/1/9/c/600_444105468.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/b/1/9/c/thumb_444105468.jpeg' - join_mode: approval - organizer: - member_id: 10636815 - name: Marc M. - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/9/1/8/e/highres_250957262.jpeg' - photo_id: 250957262 - photo_link: 'http://photos1.meetupstatic.com/photos/member/9/1/8/e/member_250957262.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/9/1/8/e/thumb_250957262.jpeg' - members: 81 - name: Find a Tech job in Barcelona - lat: 41.400001525878906 - who: Tech job seekers - - utc_offset: 7200000 - country: ES - visibility: public - city: Barcelona - timezone: Europe/Madrid - created: 1451912765000 - link: 'http://www.meetup.com/AulaW3/' - description: >- -

Un grupo para ponernos al día con talleres, seminarios y charlas - gratuitas en Barcelona para descubrir las últimas tendencias en - desarrollo web y mobile.

- -

Únete a nosotros, comparte tus conocimientos y encuentra otros en - nuestra comunidad!

- lon: 2.1700000762939453 - group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/4/a/b/5/highres_445639125.jpeg' - photo_id: 445639125 - photo_link: 'http://photos3.meetupstatic.com/photos/event/4/a/b/5/600_445639125.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/4/a/b/5/thumb_445639125.jpeg' - join_mode: open - organizer: - member_id: 197618125 - name: Karen - members: 56 - name: AulaW3 - lat: 41.400001525878906 - who: web-lovers - - utc_offset: 3600000 - country: MA - visibility: public - city: Casablanca - timezone: Africa/Casablanca - created: 1454111708000 - link: 'http://www.meetup.com/Casablanca-js/' - description: '

 Javascript has become prominent in the Technology ecosystem. so many great implementations of frameworks out there that unfold endless possibilities for futur systems and that also bring many challenges along the way, to step up in that ever growing worldwide competition and have what it takes to not only ensure survival but to achieve a top level of coding skills, full awareness of past/present and futur of Javascript and evolving in an inspiring local ecosystem,we are urged to build a solid community.

We think Casablanca /Morocco is challenged to produce highly skilled developers and that is only achievable through community involvement and knowledge sharing , this meetup has the ambition to be a rich platform committed to drive Javascript knowledge through organizing regular events during which we will talk about different themes related to Javascript ,Hack together ,share little stories,dream big and of course EAT :D .

stay tunned for the upcoming event :)

' - lon: -7.579999923706055 - group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/1/1/e/5/highres_446344581.jpeg' - photo_id: 446344581 - photo_link: 'http://photos3.meetupstatic.com/photos/event/1/1/e/5/600_446344581.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/1/1/e/5/thumb_446344581.jpeg' - join_mode: open - organizer: - member_id: 55730492 - name: Fadal Moncef - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/7/f/9/c/highres_242372668.jpeg' - photo_id: 242372668 - photo_link: 'http://photos1.meetupstatic.com/photos/member/7/f/9/c/member_242372668.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/7/f/9/c/thumb_242372668.jpeg' - members: 90 - name: Casablanca.js - lat: 33.529998779296875 - who: JS ninjas - - utc_offset: 3600000 - country: MA - visibility: public - city: Rabat - timezone: Africa/Casablanca - created: 1456326670000 - link: 'http://www.meetup.com/ngMorocco/' - rating: 5 - description: '

The Moroccan AngularJS Developer Community The main goal of ngMorocco is to share AngularJS knowledge and best-practices, to gather people who are passionate about AngularJS and enable them to talk, socialize and learn from the best, with delicious food and a friendly atmosphere no matter your gender, age, physical appearance, body size, race, or religion.

' - lon: -6.829999923706055 - group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/2/8/8/5/highres_447250373.jpeg' - photo_id: 447250373 photo_link: 'http://photos2.meetupstatic.com/photos/event/2/8/8/5/600_447250373.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/2/8/8/5/thumb_447250373.jpeg' - join_mode: approval - organizer: - member_id: 148771332 - name: Ouadie LAHDIOUI - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/9/c/e/f/highres_248620175.jpeg' - photo_id: 248620175 - photo_link: 'http://photos4.meetupstatic.com/photos/member/9/c/e/f/member_248620175.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/9/c/e/f/thumb_248620175.jpeg' - members: 208 - name: ngMorocco - Moroccan AngularJS community lat: 34.02000045776367 - who: Angularians + nodeschools: + - name: NodeSchool Algiers + location: 'Algiers, DZ' + organizers: + - ismnoiet + website: 'http://nodeschool.io/algiers' + repo: 'http://github.com/nodeschool/algiers' + lat: 36.7537703 + lon: 3.0587927 + - name: NodeSchool Cairo + location: 'Cairo, EG' + organizers: + - ahmdrefat + - Azzurrio + website: 'http://nodeschool.io/cairo' + repo: 'http://github.com/nodeschool/cairo' + lat: 30.0444196 + lon: 31.2357116 + - name: NodeSchool Hermanus + location: 'Hermanus, ZA' + organizers: + - andrenventer + - elsjelemmer + website: 'http://nodeschool.io/hermanus' + twitter: '@nodehermanus' + repo: 'http://github.com/nodeschool/hermanus' + lat: -34.4092004 + lon: 19.2504436 + - name: Johannesburg NodeSchool + location: 'Johannesburg, ZA' + organizers: + - StevenMcD + - johannds + website: 'http://nodeschool.io/johannesburg' + repo: 'http://github.com/nodeschool/johannesburg' + lat: -26.2041028 + lon: 28.0473051 + - name: Lagos NodeSchool + location: 'Lagos, NG' + organizers: + - dipolediamond + - 0101coding + website: 'http://nodeschool.io/lagos' + repo: 'http://github.com/nodeschool/lagos' + lat: 6.5243793 + lon: 3.3792057 + - name: Mombasa NodeSchool + location: 'Mombasa, KE' + organizers: + - huzeifa + repo: 'http://github.com/nodeschool/mombasa' + lat: -4.0434771 + lon: 39.6682065 - region: Asia conferences: - name: NodeFest (東京Node学園祭) @@ -1388,2417 +210,682 @@ regions: desc: Yearly JavaScript community conference. lat: 22.5341176 lon: 113.9064642 - nodeschools: - - name: Pune Nodeschool - location: 'Pune, IN' - organizers: - - adroittech - website: 'http://github.com/nodeschool/pune' - twitter: niravfaldu - repo: 'http://github.com/nodeschool/pune' - lat: 18.5204303 - lon: 73.8567437 - - name: Amman NodeSchool - location: 'Amman, JO' - organizers: - - samuraik - - rashad612 - repo: 'http://github.com/nodeschool/amman' - lat: 31.9565783 - lon: 35.9456951 - - name: NodeSchool Bali - location: 'Bali, ID' - organizers: - - LaughingSun - website: 'http://nodeschool.io/bali' - repo: 'http://github.com/nodeschool/bali' - lat: -8.4095178 - lon: 115.188916 - - name: Bangalore NodeSchool - location: 'Bangalore, IN' - organizers: - - abyv - - somesh123 - - somsharan - repo: 'http://github.com/nodeschool/bangalore' - lat: 12.9715987 - lon: 77.5945627 - - name: Chennai NodeSchool - location: 'Chennai, IN' - organizers: - - vikene - website: 'http://nodeschool.io/chennai' - twitter: chn_nodeschool - repo: 'http://github.com/nodeschool/chennai' - lat: 13.0826802 - lon: 80.2707184 - - name: NodeSchool Chiang Mai - location: 'Chiang Mai, Thailand' - organizers: - - RichardLitt - website: 'http://nodeschool.io/chiang-mai' - repo: 'http://github.com/nodeschool/chiang-mai' - lat: 18.787747 - lon: 98.99312839999999 - - name: 'NodeSchool Delhi-NCR ' - location: 'Delhi-NCR, IN' - organizers: - - avin45h - - VibhorKukreja - - manoj-nama - - kashishgupta1990 - - kushal-likhi - website: 'http://nodeschool.io/Delhi-NCR' - repo: 'http://github.com/nodeschool/delhi-ncr' - lat: 28.4179583 - lon: 76.9104653 - - name: Dhaka NodeSchool - location: 'Dhaka, BD' - organizers: - - az7arul - - zhdzmn - - riyadhalnur - - ishtiaque23 - website: 'http://nodeschool.io/dhaka' - repo: 'http://github.com/nodeschool/dhaka' - lat: 23.810332 - lon: 90.4125181 - - name: NodeSchool Hanoi - location: 'Hanoi, VN' - organizers: - - hainh - - dominhhai - website: 'http://nodeschool.io/hanoi' - repo: 'https://github.com/nodeschool/hanoi' - lat: 21.0277644 - lon: 105.8341598 - - name: NodeSchool Ho Chi Minh - Vietnam - location: 'Ho Chi Minh, VN' - organizers: - - okaiji - - fw1065 - website: 'http://nodeschool.io/hcmc-vietnam' - twitter: - - '@InnovQ' - - '@invisible_info' - repo: 'https://github.com/nodeschool/hcmc-saigon' - lat: 10.8230989 - lon: 106.6296638 - - name: NodeSchool Hong Kong - location: 'Hong Kong, HK' - organizers: - - neilnand - - rowlandwatkins - - hitchcott - website: 'http://www.meetup.com/HK-Web-Developers/' - repo: 'https://github.com/nodeschool/hong-kong' - lat: 22.396428 - lon: 114.109497 - - name: NodeSchool Hyderabad - location: 'Hyderabad, IN' - organizers: - - gmkr - website: 'http://nodeschool.io/hyderabad/' - repo: 'http://github.com/nodeschool/hyderabad' - lat: 17.385044 - lon: 78.486671 - - name: IEM Kolkata NodeSchool - location: 'IEM, Kolkata, IN' - organizers: - - koustuvsinha - repo: 'http://github.com/nodeschool/iem-kolkata' - lat: 22.5698662 - lon: 88.4295595 - - name: Isfahan NodeSchool - location: 'Isfahan,Isfahan, Iran' - organizers: - - ArianSotoudehMehr - website: 'http://nodeschools.ir' - repo: 'http://github.com/nodeschool/isfahan' - lat: 32.6546275 - lon: 51.66798259999999 - - name: IRN NodeSchool - location: 'Babol / Mazandaran, IR' - organizers: - - NIT - repo: 'http://github.com/nodeschool/iran' - lat: 36.5290861 - lon: 52.6707139 - - name: Jakarta NodeSchool - location: 'Jakarta, ID' - organizers: - - aredo - - giosakti - - hafizbadrie - - rbudiharso - website: 'http://nodeschool.io/jakarta' - twitter: 'https://twitter.com/jakartajs' - repo: 'http://github.com/nodeschool/jakarta' - lat: -6.2087634 - lon: 106.845599 - - name: NodeSchool Kanpur - location: 'Kanpur, IN' - organizers: - - abdulqabiz - website: 'http://nodeschool.io/kanpur' - repo: 'http://github.com/nodeschool/kanpur' - lat: 26.449923 - lon: 80.3318736 - - name: Karaj NodeSchool - location: 'Karaj,Alborz, Iran' - organizers: - - ArianSotoudehMehr - website: 'http://nodeschools.ir' - repo: 'http://github.com/nodeschool/karaj' - lat: 35.8400188 - lon: 50.9390906 - - name: NodeSchool Lahore - location: 'Lahore, PK' - organizers: - - usmantahirr - - sheharyarn - website: 'http://nodeschool.io/Lahore' - repo: 'http://github.com/nodeschool/lahore' - lat: 31.55460609999999 - lon: 74.3571581 - - name: Malang NodeSchool - location: 'Malang, ID' - organizers: - - krahman - website: 'http://nodeschool.io/malang' - twitter: mlgnodeschool - repo: 'http://github.com/nodeschool/malang' - lat: -7.9666204 - lon: 112.6326321 - - name: Osaka NodeSchool - location: 'Osaka, JP' - organizers: - - martinheidegger - - vanx2 - - kumatch - - kamiyam - - atuyl - website: 'http://nodeschool.io/osaka' - repo: 'http://github.com/nodeschool/osaka' - lat: 34.6937378 - lon: 135.5021651 - - name: NodeSchool Seoul - location: 'Seoul, KR' - organizers: - - xarus01 - website: 'http://nodeschool.io/seoul/' - repo: 'https://github.com/nodeschool/seoul' - gitter: 'https://gitter.im/nodeschool/nodeschool/seoul' - lat: 37.566535 - lon: 126.9779692 - - name: Shiraz NodeSchool - location: 'Shiraz,Fars, Iran' - organizers: - - ArianSotoudehMehr - website: 'http://nodeschools.ir' - repo: 'http://github.com/nodeschool/shiraz' - lat: 29.5917677 - lon: 52.5836982 - - name: Singapore NodeSchool - location: 'Singapore, SG' - organizers: - - timoxley - - weilu - - renettarenula - - hongkheng - - soareschen - - vissree - - apraditya - - shioju - - danielmahadi - - eihan - - yzdong - - andrewabogado - - sayanee - website: 'http://nodeschool.io/singapore' - repo: 'http://github.com/nodeschool/singapore' - lat: 1.3553794 - lon: 103.8677444 - - name: Tabriz NodeSchool - location: 'Tabriz,Azarbaijan, Iran' - organizers: - - ArianSotoudehMehr - website: 'http://nodeschools.ir' - repo: 'http://github.com/nodeschool/tabriz' - lat: 38.094313 - lon: 46.2614617 - - name: Taiwan Nodeschool - location: 'Taiwan, undefined' - organizers: - - leonlin14 - - cfsghost - - poying - website: 'http://nodeschool.io/taiwan' - repo: 'https://github.com/nodeschool/taiwan' - - name: Tehran NodeSchool - location: 'Tehran,Tehran, Iran' - organizers: - - ArianSotoudehMehr - website: 'http://nodeschools.ir' - repo: 'http://github.com/nodeschool/tehran' - lat: 35.6891975 - lon: 51.3889736 - - name: NodeSchool Tokyo - location: 'Tokyo, JP' - organizers: - - sota0805 - - tgfjt - - martinheidegger - website: 'http://nodeschool.io/tokyo/' - repo: 'https://github.com/nodeschool/tokyo' - gitter: 'https://gitter.im/nodeschool/nodeschool-japan' - lat: 35.6894875 - lon: 139.6917064 - - name: "Xi'an NodeSchool" - location: "Xi'an, Shaanxi, CN" - organizers: - - howiehu - website: 'http://nodeschool.io/xian' - repo: 'https://github.com/nodeschool/xian' - lat: 34.341568 - lon: 108.940175 - - name: Yazd NodeSchool - location: 'Yazd,Yazd, Iran' - organizers: - - ArianSotoudehMehr - website: 'http://nodeschools.ir' - repo: 'http://github.com/nodeschool/yazd' - lat: 31.8974232 - lon: 54.3568562 meetups: - - utc_offset: 28800000 - country: HK - visibility: public + - country: HK city: Hong Kong - timezone: Asia/Shanghai - created: 1283774732000 link: 'http://www.meetup.com/MobAppInnovation/' - rating: 4.17 - description: >- -

Experienced developers, novices, those keen to learn and - people with ideas (especially original ones) are all - welcome. 

- -

We will be arranging presentations from app developers , investors, - designers and innovators.

- + name: Mobile Application Innovation + description: |- +

Experienced developers, novices, those keen to learn and people with ideas (especially original ones) are all welcome. 

+

We will be arranging presentations from app developers , investors, designers and innovators.


lon: 114.13999938964844 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/3/7/4/d/highres_439514157.jpeg' - photo_id: 439514157 photo_link: 'http://photos1.meetupstatic.com/photos/event/3/7/4/d/600_439514157.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/3/7/4/d/thumb_439514157.jpeg' - join_mode: open - organizer: - member_id: 169455062 - name: Eureka - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/3/e/f/1/highres_251056113.jpeg' - photo_id: 251056113 - photo_link: 'http://photos1.meetupstatic.com/photos/member/3/e/f/1/member_251056113.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/3/e/f/1/thumb_251056113.jpeg' - members: 486 - name: Mobile Application Innovation lat: 22.270000457763672 - who: Innovators - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Pune - timezone: Asia/Calcutta - created: 1318266213000 link: 'http://www.meetup.com/PuneJS/' - rating: 4.43 + name: PuneJS description: "

This meetup was started to get the Javascript buzz going in Pune. Let's meet up and join hacking!

" lon: 73.83999633789062 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/c/c/5/8/highres_374632312.jpeg' - photo_id: 374632312 photo_link: 'http://photos4.meetupstatic.com/photos/event/c/c/5/8/600_374632312.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/c/c/5/8/thumb_374632312.jpeg' - join_mode: open - organizer: - member_id: 193028147 - name: PS - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/8/a/7/9/highres_250235449.jpeg' - photo_id: 250235449 - photo_link: 'http://photos1.meetupstatic.com/photos/member/8/a/7/9/member_250235449.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/8/a/7/9/thumb_250235449.jpeg' - members: 1065 - name: PuneJS lat: 18.530000686645508 - who: Javascripters - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Pune - timezone: Asia/Calcutta - created: 1335255100000 link: 'http://www.meetup.com/expertalks/' - rating: 4.4 - description: >- -

Launched and run by Equal - Experts, EXPERTALKS is - a community of software enthusiasts that - meets up frequently to share knowledge.

- -

With a keen focus on emerging practices, trends & - technologies in software development, EXPERTALKS meetups feature - hands-on workshops in which participants - code together to learn new concepts.

- -

Needless to say, this hands-on approach has gained EXPERTALKS - a lot of popularity with technologists.

- -

With relevant, and diverse workshops on Agile practices, Big - Data frameworks, evolving programming practices, JavaScript libraries, - Single Page Applications and so on... EXPERTALKS is fast emerging as - one of the most exciting meetups in Pune.

+ name: EXPERTALKS + description: |- +

Launched and run by Equal Experts, EXPERTALKS is a community of software enthusiasts that meets up frequently to share knowledge.

+

With a keen focus on emerging practices, trends & technologies in software development, EXPERTALKS meetups feature hands-on workshops in which participants code together to learn new concepts.

+

Needless to say, this hands-on approach has gained EXPERTALKS a lot of popularity with technologists.

+

With relevant, and diverse workshops on Agile practices, Big Data frameworks, evolving programming practices, JavaScript libraries, Single Page Applications and so on... EXPERTALKS is fast emerging as one of the most exciting meetups in Pune.

lon: 73.83999633789062 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/a/e/f/7/highres_441824791.jpeg' - photo_id: 441824791 photo_link: 'http://photos3.meetupstatic.com/photos/event/a/e/f/7/600_441824791.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/a/e/f/7/thumb_441824791.jpeg' - join_mode: open - organizer: - member_id: 14196782 - name: Ashish - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/c/d/1/f/highres_252112511.jpeg' - photo_id: 252112511 - photo_link: 'http://photos4.meetupstatic.com/photos/member/c/d/1/f/member_252112511.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/c/d/1/f/thumb_252112511.jpeg' - members: 2639 - name: EXPERTALKS lat: 18.530000686645508 - who: Tech Enthusiasts - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Delhi - timezone: Asia/Calcutta - created: 1335372798000 link: 'http://www.meetup.com/Node-js-Dilli/' - rating: 3.38 + name: Node.js Dilli description: "

Community for Node.js hackers and enthusiasts in and around New Delhi, Gurgaon, Noida and the greater NCR.

\n

Who should join?

\n

* Node.js and JavaScript programmers, enthusiasts and hackers
\n\n * Technologists interested in event based I/O
\n\n * Start-ups / organisations evaluating Node.js and related technologies

\n

What to expect?

\n

Monthly\_meet-ups, hackathons, demos, sessions, beer.

" lon: 77.20999908447266 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/3/e/9/6/highres_113656022.jpeg' - photo_id: 113656022 photo_link: 'http://photos1.meetupstatic.com/photos/event/3/e/9/6/600_113656022.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/3/e/9/6/thumb_113656022.jpeg' - join_mode: open - organizer: - member_id: 124136152 - name: Anup Bishnoi - photo: - photo_id: 164628662 - photo_link: 'http://photos3.meetupstatic.com/photos/member/b/e/1/6/member_164628662.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/b/e/1/6/thumb_164628662.jpeg' - members: 1715 - name: Node.js Dilli lat: 28.670000076293945 - who: Members - - utc_offset: 28800000 - country: CN - visibility: public + - country: CN city: Beijing - timezone: Asia/Shanghai - created: 1342567181000 link: 'http://www.meetup.com/developers/' + name: 'Web Design & Development' description: "

A community passionate about collaborative web development. Come learn about current technologies or just get some help with whatever you're building. Focusing on User Experience Design, Web Standards, XHTML, CSS, Javascript, PHP, Ruby on Rails, Node.js, Browser Support and anything else that's just as awesome.

" lon: 116.4000015258789 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/d/3/3/8/highres_140154072.jpeg' - photo_id: 140154072 photo_link: 'http://photos4.meetupstatic.com/photos/event/d/3/3/8/600_140154072.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/d/3/3/8/thumb_140154072.jpeg' - join_mode: open - organizer: - member_id: 27182792 - name: Farhad Ghayour - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/3/1/8/0/highres_229872672.jpeg' - photo_id: 229872672 - photo_link: 'http://photos3.meetupstatic.com/photos/member/3/1/8/0/member_229872672.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/3/1/8/0/thumb_229872672.jpeg' - members: 188 - name: 'Web Design & Development' lat: 39.93000030517578 - who: Developers - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Hyderabad - timezone: Asia/Calcutta - created: 1342803095000 link: 'http://www.meetup.com/hyderabad-javascript/' - rating: 4.81 - description: >- -

A meetup focused on JavaScript everywhere, including client side, - server side, browser, non-browser, etc.. Goals for the group are to - spread ideas about node.js, jQuery (including various open source - jQuery plugins), Jade, Express, Async.js, Less.js, Chai, Mocha, - RequireJS/AMD, EcmaScript 6, etc.

- + name: Hyderabad Javascript Group + description: |- +

A meetup focused on JavaScript everywhere, including client side, server side, browser, non-browser, etc.. Goals for the group are to spread ideas about node.js, jQuery (including various open source jQuery plugins), Jade, Express, Async.js, Less.js, Chai, Mocha, RequireJS/AMD, EcmaScript 6, etc.

Learn and Share.

lon: 78.4800033569336 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/9/1/9/c/highres_441397276.jpeg' - photo_id: 441397276 photo_link: 'http://photos1.meetupstatic.com/photos/event/9/1/9/c/600_441397276.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/9/1/9/c/thumb_441397276.jpeg' - join_mode: open - organizer: - member_id: 7942251 - name: Ran.ga.na.than - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/5/5/2/b/highres_252321803.jpeg' - photo_id: 252321803 - photo_link: 'http://photos2.meetupstatic.com/photos/member/5/5/2/b/member_252321803.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/5/5/2/b/thumb_252321803.jpeg' - members: 944 - name: Hyderabad Javascript Group lat: 17.399999618530273 - who: _javascripters - - utc_offset: 10800000 - country: IL - visibility: public + - country: IL city: Herzeliyya - timezone: Asia/Jerusalem - created: 1357102821000 link: 'http://www.meetup.com/NodeJS-Israel/' - rating: 4.59 + name: NodeJS Israel description: '

A group to discuss Node.js, its frameworks, and best practices.

' lon: 34.84000015258789 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/7/f/c/8/highres_192272712.jpeg' - photo_id: 192272712 photo_link: 'http://photos3.meetupstatic.com/photos/event/7/f/c/8/600_192272712.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/7/f/c/8/thumb_192272712.jpeg' - join_mode: open - organizer: - member_id: 10007949 - name: Lior Kesos - photo: - photo_id: 80469032 - photo_link: 'http://photos3.meetupstatic.com/photos/member/2/3/4/8/member_80469032.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/2/3/4/8/thumb_80469032.jpeg' - members: 1143 - name: NodeJS Israel lat: 32.16999816894531 - who: Noders - - utc_offset: 25200000 - country: VN - visibility: public + - country: VN city: Thanh Pho Ho Chi Minh - timezone: Asia/Saigon - created: 1358317842000 link: 'http://www.meetup.com/JavaScript-Ho-Chi-Minh-City/' - rating: 4.35 - description: >- -

You like Javascript, Ember.js, - Angular.js, Node.js, Vert.x, etc.?

- -

You like cutting-edge web - technologies?

- -

You want to learn, share and become - a master in Javascript and front-end development?

- -

Why don't you join us - - JavaScript Meetup Community to share your great ideas, learn from the - others, and widen your network?

- + name: JavaScript Ho Chi Minh City + description: |- +

You like Javascript, Ember.js, Angular.js, Node.js, Vert.x, etc.?

+

You like cutting-edge web technologies?

+

You want to learn, share and become a master in Javascript and front-end development?

+

Why don't you join us - JavaScript Meetup Community to share your great ideas, learn from the others, and widen your network?

------------------------------------------------------

- -

Facebook: https://www.facebook.com/JavaScriptHCMC

- -

G+: https://plus.google.com/u/0/communities/116105314977285194967

- +

Facebook: https://www.facebook.com/JavaScriptHCMC

+

G+: https://plus.google.com/u/0/communities/116105314977285194967

------------------------------------------------------

- -

Fee: To cover the venue cost, the - organizer would like to call for 50,000 VND/a person when attending - each meetup.

- -

Please register to Nicolas and do payment on the onsite - day.

+

Fee: To cover the venue cost, the organizer would like to call for 50,000 VND/a person when attending each meetup.

+

Please register to Nicolas and do payment on the onsite day.

lon: 106.69000244140625 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/8/7/d/4/highres_196174772.jpeg' - photo_id: 196174772 photo_link: 'http://photos3.meetupstatic.com/photos/event/8/7/d/4/600_196174772.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/8/7/d/4/thumb_196174772.jpeg' - join_mode: open - organizer: - member_id: 35835942 - name: Nicolas Embleton - photo: - photo_id: 70064102 - photo_link: 'http://photos4.meetupstatic.com/photos/member/a/c/4/6/member_70064102.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/a/c/4/6/thumb_70064102.jpeg' - members: 691 - name: JavaScript Ho Chi Minh City lat: 10.779999732971191 - who: Javascript Lovers - - utc_offset: 28800000 - country: CN - visibility: public + - country: CN city: Beijing - timezone: Asia/Shanghai - created: 1359016059000 link: 'http://www.meetup.com/HTML5Rocks-Beijing/' + name: HTML5Rocks@Beijing description: "

OUR MISSION:
\n\n Our intent is to:. gather developers,idea generators, project manager or any aspiring entrepreneur into a community upon which each one would find support,
\n\n . spread the words on HTML5,
\n\n . offer a space where one can learn & train himself or herself from a beginner perspective to an advanced level,
\n\n
\n\n
\n\n
\n\n
\n\n ************************* IMPORTANT *************************
\n\n Please note that for now the community is still being nurture .
\n\n What does it means exactly ?\_
\n\n In order to be able to organize a meet-up, we NEED :\_
\n\n . local co-organizer: that would represent the community, assure that the meet-up can take place into a venue in Beijing & coordinate with speakers\_
\n\n . speakers: you are a front-end developer, student, self-taught developer or expert with knowledge / experience on \_HTML5 \_ ?\_
\n\n Share your knowledge & experience and help us grow the community & spread the word!
\n\n
\n\n
\n\n Until then , please note that the meet-up will be broadcasted from Singapore via google+ hangout :\_
\n\n HOW TO CONNECT ?
\n\n Subscribe to the HTML5Rocks@SG YouTube channel to follow-up the live streaming.
\n\n
\n\n
\n\n In the meantime, please be considerate to us for the technica issues that can occur with the google+ hangout & help us build the commnity by stepping-up to set-up a strong local presence.

\n

\_

\n

Facebook: https://www.facebook.com/pages/HTML5RocksBeijing/361989453898466
\n\n Twitter:
https://twitter.com/HTML5RocksBeiji
\n\n Google+:

\n

https://plus.google.com/u/3/communities/115636832423784196952
\n\n

" lon: 116.4000015258789 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/7/8/c/a/highres_198450922.jpeg' - photo_id: 198450922 photo_link: 'http://photos3.meetupstatic.com/photos/event/7/8/c/a/600_198450922.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/7/8/c/a/thumb_198450922.jpeg' - join_mode: open - organizer: - member_id: 77624952 - name: Loretta TIOIELA - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/9/8/c/8/highres_93399112.jpeg' - photo_id: 93399112 - photo_link: 'http://photos3.meetupstatic.com/photos/member/9/8/c/8/member_93399112.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/9/8/c/8/thumb_93399112.jpeg' - members: 117 - name: HTML5Rocks@Beijing lat: 39.93000030517578 - who: HTML5Rockers@Beijing - - utc_offset: 10800000 - country: RU - visibility: public + - country: RU city: Moscow - timezone: Europe/Moscow - created: 1360958049000 link: 'http://www.meetup.com/Meteor-Moscow/' - rating: 4.96 + name: Meteor Moscow description: "

Meet other developers using Meteor. Share your knowledge, apps, and get feedback from others. Meteor is an open-source platform for building top-quality web apps in a fraction of the time, whether you're an expert developer or just getting started.

" lon: 37.619998931884766 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/a/2/1/e/highres_422021502.jpeg' - photo_id: 422021502 photo_link: 'http://photos3.meetupstatic.com/photos/event/a/2/1/e/600_422021502.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/a/2/1/e/thumb_422021502.jpeg' - join_mode: open - organizer: - member_id: 81670332 - name: Nick Coe - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/highres_245331334.jpeg' - photo_id: 245331334 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/8/8/6/member_245331334.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/thumb_245331334.jpeg' - members: 216 - name: Meteor Moscow lat: 55.75 - who: Meteorites - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Bangalore - timezone: Asia/Calcutta - created: 1363857239000 link: 'http://www.meetup.com/JavaScript-Ninjas-Bangalore/' - rating: 4.19 + name: JavaScript Ninjas @ Bangalore description: '

A meetup focused on JavaScript everywhere, including client side, server side, browser, non-browser, etc.. Goals for the group are to spread ideas about node.js, jQuery (including various open source jQuery plugins), Jade, Express, Async.js, Less.js, Chai, Mocha, RequireJS/AMD, EcmaScript 6, etc., to socialize projects, and discuss the technology, frameworks and best practices and have Javascript nirvana.........

' lon: 77.55999755859375 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/3/d/9/c/highres_250215772.jpeg' - photo_id: 250215772 photo_link: 'http://photos2.meetupstatic.com/photos/event/3/d/9/c/600_250215772.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/3/d/9/c/thumb_250215772.jpeg' - join_mode: approval - organizer: - member_id: 84498922 - name: Damayanti Ghosh - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/c/3/0/2/highres_106429922.jpeg' - photo_id: 106429922 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/3/0/2/member_106429922.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/c/3/0/2/thumb_106429922.jpeg' - members: 752 - name: JavaScript Ninjas @ Bangalore lat: 12.970000267028809 - who: JS Ninjas - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Bangalore - timezone: Asia/Calcutta - created: 1364320110000 link: 'http://www.meetup.com/Node-js-Explorers/' - rating: 4.4 + name: Node.js Explorers description: '

Calling all software developers who are interested in exploring JavaScript libraries, tools and frameworks for building rich internet applications in general and Node.js in particular.

' lon: 77.55999755859375 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/2/b/a/4/highres_218231172.jpeg' - photo_id: 218231172 photo_link: 'http://photos2.meetupstatic.com/photos/event/2/b/a/4/600_218231172.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/2/b/a/4/thumb_218231172.jpeg' - join_mode: approval - organizer: - member_id: 14633781 - name: Magesh - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/8/9/a/highres_106442202.jpeg' - photo_id: 106442202 - photo_link: 'http://photos2.meetupstatic.com/photos/member/8/9/a/member_106442202.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/8/9/a/thumb_106442202.jpeg' - members: 786 - name: Node.js Explorers lat: 12.970000267028809 - who: Members - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Delhi - timezone: Asia/Calcutta - created: 1364470071000 link: 'http://www.meetup.com/JSChannel-NCR/' - rating: 4.73 + name: JSChannel NCR description: '

This is a group for those who like to explore the javascript world, brainstorm different ideas with other js enthusiasts. We will sit together after office hours at coffee shop, in someones office or even it could be on a park bench :) and discuss trends, brainstorm ideas or collectively solve problems.

' lon: 77.20999908447266 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/a/4/a/8/highres_281982152.jpeg' - photo_id: 281982152 photo_link: 'http://photos4.meetupstatic.com/photos/event/a/4/a/8/600_281982152.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/a/4/a/8/thumb_281982152.jpeg' - join_mode: open - organizer: - member_id: 37114032 - name: Ganesh Gembali - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/d/3/6/0/highres_44634112.jpeg' - photo_id: 44634112 - photo_link: 'http://photos2.meetupstatic.com/photos/member/d/3/6/0/member_44634112.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/d/3/6/0/thumb_44634112.jpeg' - members: 735 - name: JSChannel NCR lat: 28.670000076293945 - who: jslovers - - utc_offset: 10800000 - country: IL - visibility: public + - country: IL city: Petakh Tiqwa - timezone: Asia/Jerusalem - created: 1364498448000 link: 'http://www.meetup.com/HTML-5-JavaScript-Development/' - rating: 4.75 + name: 'HTML 5 & JavaScript Development' description: '

קבוצה מיועדת לכל מפתחי הווב שמאמינים שאפשר לפתח בווב כל מה שמפתחים ב-Native App ואפילו יותר :-) העתיד שייך לפיתוח אפלקציות בווב...

' lon: 34.880001068115234 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/8/8/6/highres_347762182.jpeg' - photo_id: 347762182 photo_link: 'http://photos1.meetupstatic.com/photos/event/8/8/6/600_347762182.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/8/8/6/thumb_347762182.jpeg' - join_mode: open - organizer: - member_id: 85911102 - name: Eyal Vardi - photo: - photo_id: 105523222 - photo_link: 'http://photos3.meetupstatic.com/photos/member/a/8/d/6/member_105523222.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/a/8/d/6/thumb_105523222.jpeg' - members: 927 - name: 'HTML 5 & JavaScript Development' lat: 32.09000015258789 - who: JS Developers - - utc_offset: 28800000 - country: TW - visibility: public + - country: TW city: Taipei - timezone: Asia/Taipei - created: 1365035198000 link: 'http://www.meetup.com/javascript-enthusiasts/' - rating: 4.91 - description: >- -

This is a group for all things Javascript, front-end and - back-end. We invite Javascript newbies, enthusiasts and gurus to come - together to share their knowledge. Join this group to learn more about - Javascript and to meet other people interested in it.

- -

Youtube: Taipei - Javascript Enthusiasts

+ name: Taipei Javascript Enthusiasts + description: |- +

This is a group for all things Javascript, front-end and back-end. We invite Javascript newbies, enthusiasts and gurus to come together to share their knowledge. Join this group to learn more about Javascript and to meet other people interested in it.

+

Youtube: Taipei Javascript Enthusiasts

lon: 121.44999694824219 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/7/9/7/c/highres_446311100.jpeg' - photo_id: 446311100 photo_link: 'http://photos4.meetupstatic.com/photos/event/7/9/7/c/600_446311100.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/7/9/7/c/thumb_446311100.jpeg' - join_mode: open - organizer: - member_id: 108686412 - name: Phil Harton - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/4/8/0/7/highres_253338439.jpeg' - photo_id: 253338439 - photo_link: 'http://photos3.meetupstatic.com/photos/member/4/8/0/7/member_253338439.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/4/8/0/7/thumb_253338439.jpeg' - members: 650 - name: Taipei Javascript Enthusiasts lat: 25.020000457763672 - who: Hackers - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Bangalore - timezone: Asia/Calcutta - created: 1365142736000 link: 'http://www.meetup.com/JavaScript-Explorers/' - rating: 4.8 + name: JavaScript Explorers description: '

This group is for anyone interested in exploring the world of JavaScript and related frameworks and libraries for building Rich Internet Applications (RIA).

' lon: 77.55999755859375 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/b/5/a/6/highres_223066502.jpeg' - photo_id: 223066502 photo_link: 'http://photos4.meetupstatic.com/photos/event/b/5/a/6/600_223066502.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/b/5/a/6/thumb_223066502.jpeg' - join_mode: approval - organizer: - member_id: 14633781 - name: Magesh - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/a/0/5/6/highres_249521046.jpeg' - photo_id: 249521046 - photo_link: 'http://photos1.meetupstatic.com/photos/member/a/0/5/6/member_249521046.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/a/0/5/6/thumb_249521046.jpeg' - members: 709 - name: JavaScript Explorers lat: 12.970000267028809 - who: Explorers - - utc_offset: 25200000 - country: TH - visibility: public + - country: TH city: Bangkok - timezone: Asia/Bangkok - created: 1371374497000 link: 'http://www.meetup.com/BKK-Developers-and-Tech-lovers/' - rating: 4.65 - description: >- -

A group for anyone interested in Development. It can be System - Development, Web Development, Mobile Development or System - Administration. 

- -

Also CTOs, product owners and project managers involved in IT are - very welcomed to join us.

- -

The goal of the group is to exchange best practices, meet new people - and share ideas.

- + name: Dev Meetups hosted by HotelQuickly Engineers + description: |- +

A group for anyone interested in Development. It can be System Development, Web Development, Mobile Development or System Administration. 

+

Also CTOs, product owners and project managers involved in IT are very welcomed to join us.

+

The goal of the group is to exchange best practices, meet new people and share ideas.

HotelQuickly's Product & Engineering

- -

See more about our best - practices on Slideshare.

- +

See more about our best practices on Slideshare.

Topics covered include

-

• How to build an Apple Watch app?

- -

• Build your own scalable infrastructure on - Deis

- +

• Build your own scalable infrastructure on Deis

• What is Docker and how to use it?

-

• Building scalable APIs with Nodejs

-

• How to keep track of all the new cool & hot stuff?

-

• Android development best practices

-

• Agile software development

-

• How do we do continuous integration?

-

• How to organise a remote development team?

-

Sexy PHP frameworks

-

• Software design patterns and when to use them?

-

• Best practices from application deployments

-


lon: 100.5 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/3/f/8/6/highres_436816262.jpeg' - photo_id: 436816262 photo_link: 'http://photos1.meetupstatic.com/photos/event/3/f/8/6/600_436816262.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/3/f/8/6/thumb_436816262.jpeg' - join_mode: open - organizer: - member_id: 18959481 - name: Michal Juhas - photo: - photo_id: 80042732 - photo_link: 'http://photos2.meetupstatic.com/photos/member/a/a/c/member_80042732.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/a/a/c/thumb_80042732.jpeg' - members: 1032 - name: Dev Meetups hosted by HotelQuickly Engineers lat: 13.729999542236328 - who: Developers - - utc_offset: 25200000 - country: TH - visibility: public + - country: TH city: Bangkok - timezone: Asia/Bangkok - created: 1372834406000 link: 'http://www.meetup.com/Bangkok-Node-js/' - rating: 4.71 - description: >- -

This group is for people interested in learning and using Node.js, - the fastest-growing Internet and Web application framework.

- -

Node.js is similar Python, Java, or Ruby. It is a server-side - ("backend") software environment, using JavaScript as its language and - architecture (event-driven, callback-based programming). If you have - ever written JavaScript for a web browser, now you can write JavaScript - as a web server.

- -

Topics of discussion include open source projects, - architecture, development and maintenance, deployment, and Node.js - trends. If you use Node.js, or if you want to learn more about Node.js, - join us to learn all about it.

- lon: 100.5 - join_mode: open - organizer: - member_id: 52743922 - name: Carlos Herrera - photo: - photo_id: 85437522 - photo_link: 'http://photos1.meetupstatic.com/photos/member/e/0/b/2/member_85437522.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/e/0/b/2/thumb_85437522.jpeg' - members: 492 name: Bangkok Node.js + description: |- +

This group is for people interested in learning and using Node.js, the fastest-growing Internet and Web application framework.

+

Node.js is similar Python, Java, or Ruby. It is a server-side ("backend") software environment, using JavaScript as its language and architecture (event-driven, callback-based programming). If you have ever written JavaScript for a web browser, now you can write JavaScript as a web server.

+

Topics of discussion include open source projects, architecture, development and maintenance, deployment, and Node.js trends. If you use Node.js, or if you want to learn more about Node.js, join us to learn all about it.

+ lon: 100.5 lat: 13.729999542236328 - who: Members - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Bangalore - timezone: Asia/Calcutta - created: 1373559411000 link: 'http://www.meetup.com/Women-Who-Code-Bangalore/' - rating: 4.57 - description: >- + name: Women Who Code Bangalore + description: |-

Mission:

- -

Women Who Code is a global nonprofit organization dedicated to - inspiring women to excel in technology careers by creating a global, - connected community of women in technology. The organization tripled in - 2013 and has grown to be one of the largest communities of women - engineers in the world.

- +

Women Who Code is a global nonprofit organization dedicated to inspiring women to excel in technology careers by creating a global, connected community of women in technology. The organization tripled in 2013 and has grown to be one of the largest communities of women engineers in the world.

Empowerment:

- -

Women Who code is a professional community for women in - tech. We provide an avenue for women to pursue a career in - technology, help them gain new skills and hone existing skills for - professional advancement, and foster environments where networking and - mentorship are valued.

- +

Women Who code is a professional community for women in tech. We provide an avenue for women to pursue a career in technology, help them gain new skills and hone existing skills for professional advancement, and foster environments where networking and mentorship are valued.

Key Initiatives:

-

Free technical study groups

- -

Events featuring influential tech industry experts and - investors

- +

Events featuring influential tech industry experts and investors

Hack events

-

Career and leadership development

-

Current and aspiring coders are welcome. 

-

Bring your laptop and a friend! 

-

Support Women Who Code:

- -

Donating to Women Who - Code, Inc. (#46-4218859) directly impacts our ability to - efficiently run this growing organization, helps us produce new - programs that will increase our reach, and enables us to expand into - new cities around the world ensuring that women and girls everywhere - have the opportunity to pursue a career in technology.

- -

Women Who Code (WWCode) is dedicated to providing an empowering - experience for everyone who participates in or supports our community, - regardless of gender, gender identity and expression, sexual - orientation, ability, physical appearance, body size, race, ethnicity, - age, religion, or socioeconomic status. Because we value the safety and - security of our members and strive to have an inclusive community, we - do not tolerate harassment of members or event participants in any - form. Our Code - of Conduct applies to all events run by Women Who Code, Inc. - If you would like to report an incident or contact our leadership team, - please submit an incident - report form.

- +

Donating to Women Who Code, Inc. (#46-4218859) directly impacts our ability to efficiently run this growing organization, helps us produce new programs that will increase our reach, and enables us to expand into new cities around the world ensuring that women and girls everywhere have the opportunity to pursue a career in technology.

+

Women Who Code (WWCode) is dedicated to providing an empowering experience for everyone who participates in or supports our community, regardless of gender, gender identity and expression, sexual orientation, ability, physical appearance, body size, race, ethnicity, age, religion, or socioeconomic status. Because we value the safety and security of our members and strive to have an inclusive community, we do not tolerate harassment of members or event participants in any form. Our Code of Conduct applies to all events run by Women Who Code, Inc. If you would like to report an incident or contact our leadership team, please submit an incident report form.

WomenWhoCode.com

- -

Twitter | Facebook

- +

Twitter | Facebook

lon: 77.55999755859375 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/b/7/5/1/highres_431686929.jpeg' - photo_id: 431686929 photo_link: 'http://photos3.meetupstatic.com/photos/event/b/7/5/1/600_431686929.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/b/7/5/1/thumb_431686929.jpeg' - join_mode: open - organizer: - member_id: 129339582 - name: Women Who Code - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/8/5/c/2/highres_172594242.jpeg' - photo_id: 172594242 - photo_link: 'http://photos4.meetupstatic.com/photos/member/8/5/c/2/member_172594242.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/8/5/c/2/thumb_172594242.jpeg' - members: 803 - name: Women Who Code Bangalore lat: 12.970000267028809 - who: Coders - - utc_offset: 19800000 - country: LK - visibility: public + - country: LK city: Colombo - timezone: Asia/Colombo - created: 1373701222000 link: 'http://www.meetup.com/Colombo-JS-Meetup/' - rating: 4.63 + name: Colombo JS Meetup description: '

This group consist of enthusiastic JavaScript developers , we would talk about front end developments , tools, libraries , frameworks, front end testing , node js , meteor and many more. As we know JS is the future so why not learn about it. We hope to have interactive, fun and educational meetups.

' lon: 79.8499984741211 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/6/0/0/6/highres_434484582.jpeg' - photo_id: 434484582 photo_link: 'http://photos2.meetupstatic.com/photos/event/6/0/0/6/600_434484582.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/6/0/0/6/thumb_434484582.jpeg' - join_mode: open - organizer: - member_id: 76951912 - name: Pasindu De Silva - photo: - photo_id: 92403922 - photo_link: 'http://photos1.meetupstatic.com/photos/member/f/5/2/member_92403922.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/f/5/2/thumb_92403922.jpeg' - members: 1067 - name: Colombo JS Meetup lat: 6.929999828338623 - who: developers - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Bangalore - timezone: Asia/Calcutta - created: 1373868229000 link: 'http://www.meetup.com/JSChannel-Bengaluru/' - rating: 4.59 - description: >- -

This is a group of passionate Javascripters. We will get - together at a coffee shop, someone's office or any other interesting - place. The idea is to get excited by others experiences and excite - others with our learning. Our motto could be - 'enough with the - presentations... show me some code' :)

- -

You can join us and discuss on our - Slack, https://jschannel.slack.com/

- -

For invite, visithttp://jschannel-slack.herokuapp.com/

- -

For job related (looking for a job or looking for a candidate) - purpose, you can directly send a mail to the group. We are working with - couple of guys in the community to solve this recruitment demand & - supply.

+ name: JSChannel Bengaluru + description: |- +

This is a group of passionate Javascripters. We will get together at a coffee shop, someone's office or any other interesting place. The idea is to get excited by others experiences and excite others with our learning. Our motto could be - 'enough with the presentations... show me some code' :)

+

You can join us and discuss on our Slack, https://jschannel.slack.com/

+

For invite, visithttp://jschannel-slack.herokuapp.com/

+

For job related (looking for a job or looking for a candidate) purpose, you can directly send a mail to the group. We are working with couple of guys in the community to solve this recruitment demand & supply.

lon: 77.55999755859375 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/2/7/e/a/highres_446890218.jpeg' - photo_id: 446890218 photo_link: 'http://photos1.meetupstatic.com/photos/event/2/7/e/a/600_446890218.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/2/7/e/a/thumb_446890218.jpeg' - join_mode: open - organizer: - member_id: 96688582 - name: Naresh sharma - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/7/9/d/8/highres_123031192.jpeg' - photo_id: 123031192 - photo_link: 'http://photos2.meetupstatic.com/photos/member/7/9/d/8/member_123031192.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/7/9/d/8/thumb_123031192.jpeg' - members: 1997 - name: JSChannel Bengaluru lat: 12.970000267028809 - who: Javascripters - - utc_offset: 19800000 - country: IN - visibility: public_limited + - country: IN city: Bangalore - timezone: Asia/Calcutta - created: 1375267386000 link: 'http://www.meetup.com/mean-geeks/' - rating: 5 + name: 'Jnaapti- MEAN Stack (MongoDB, ExpressJS, AngularJS, NodeJS)' description: "

You love technologies? Then this is the place you must be in!

\n

We love to discuss about

\n\n

We can also discuss on Docker, Cloud, Virtualization and various open source technologies!

\n


\n

Disclaimer: This is an existing meetup group later acquired by jnaapti. All meetups happening here are organized and managed by jnaapti. Any Meetup announced before Feb 28th 2015 was not the responsibility of jnaapti and jnaapti doesn't vouch for any of the past meetups happened through this group.  

" lon: 77.55999755859375 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/2/5/c/8/highres_414729672.jpeg' - photo_id: 414729672 photo_link: 'http://photos2.meetupstatic.com/photos/event/2/5/c/8/600_414729672.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/2/5/c/8/thumb_414729672.jpeg' - join_mode: open - organizer: - member_id: 141109322 - name: Shreelaxmi Gautham - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/5/1/9/c/highres_195500892.jpeg' - photo_id: 195500892 - photo_link: 'http://photos3.meetupstatic.com/photos/member/5/1/9/c/member_195500892.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/5/1/9/c/thumb_195500892.jpeg' - members: 623 - name: 'Jnaapti- MEAN Stack (MongoDB, ExpressJS, AngularJS, NodeJS)' lat: 12.970000267028809 - who: MEAN Geeks - - utc_offset: 10800000 - country: RU - visibility: public + - country: RU city: Moscow - timezone: Europe/Moscow - created: 1375475330000 link: 'http://www.meetup.com/MoscowJS-Meetup/' - rating: 4.53 + name: MoscowJS Meetup description: |-

Group for people who interested in Javascript Web Development.

Official Site: www.moscowjs.ru

lon: 37.619998931884766 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/e/8/a/highres_373503722.jpeg' - photo_id: 373503722 photo_link: 'http://photos1.meetupstatic.com/photos/event/e/8/a/600_373503722.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/e/8/a/thumb_373503722.jpeg' - join_mode: open - organizer: - member_id: 69608732 - name: Mikhail Rozhkov - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/7/e/7/4/highres_120512372.jpeg' - photo_id: 120512372 - photo_link: 'http://photos2.meetupstatic.com/photos/member/7/e/7/4/member_120512372.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/7/e/7/4/thumb_120512372.jpeg' - members: 456 - name: MoscowJS Meetup lat: 55.75 - who: Javascript Ninjas - - utc_offset: 25200000 - country: TH - visibility: public + - country: TH city: Bangkok - timezone: Asia/Bangkok - created: 1378744009000 link: 'http://www.meetup.com/Bangkok-Javascript/' + name: Bangkok Javascript description: '

Community who live and fall in love with Javascript. Want to share what and why Javascript is awesome not just for fun but for long time relationship :)

' lon: 100.5 - join_mode: approval - organizer: - member_id: 89793942 - name: Sira Sujjinanont - photo: - photo_id: 111558152 - photo_link: 'http://photos2.meetupstatic.com/photos/member/4/6/e/8/member_111558152.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/4/6/e/8/thumb_111558152.jpeg' - members: 49 - name: Bangkok Javascript lat: 13.729999542236328 - who: Hackers - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Mumbai - timezone: Asia/Calcutta - created: 1381310936000 link: 'http://www.meetup.com/JSChannel-Mumbai/' - rating: 4.67 + name: JSChannel Mumbai description: "

This is a group of passionate Javascripters. We will get together at a coffee shop, someone's office or any other interesting place. The idea is to share and learn together. Our motto could be - 'enough with the presentations... show me some code' :)

" lon: 72.81999969482422 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/2/7/f/7/highres_446890231.jpeg' - photo_id: 446890231 photo_link: 'http://photos3.meetupstatic.com/photos/event/2/7/f/7/600_446890231.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/2/7/f/7/thumb_446890231.jpeg' - join_mode: open - organizer: - member_id: 37114032 - name: Ganesh Gembali - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/d/3/6/0/highres_44634112.jpeg' - photo_id: 44634112 - photo_link: 'http://photos2.meetupstatic.com/photos/member/d/3/6/0/member_44634112.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/d/3/6/0/thumb_44634112.jpeg' - members: 244 - name: JSChannel Mumbai lat: 18.959999084472656 - who: jslovers - - utc_offset: 28800000 - country: PH - visibility: public + - country: PH city: Manila - timezone: Asia/Manila - created: 1383541315000 link: 'http://www.meetup.com/Manila-AngularJS-Group/' - rating: 4.83 + name: Manila AngularJS Developers (ngManila) description: '

This is a group for anyone interested (experienced or new) in developing in AngularJS. Meet ups will be held with the primary goal of sharing knowledge and furthering the science of single-page app development using AngularJS. Expect speakers, networking, and fun!

' lon: 120.97000122070312 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/c/5/5/6/highres_440030518.jpeg' - photo_id: 440030518 photo_link: 'http://photos4.meetupstatic.com/photos/event/c/5/5/6/600_440030518.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/c/5/5/6/thumb_440030518.jpeg' - join_mode: open - organizer: - member_id: 59651842 - name: Jason X Bånd - photo: - photo_id: 69098182 - photo_link: 'http://photos3.meetupstatic.com/photos/member/9/5/2/6/member_69098182.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/9/5/2/6/thumb_69098182.jpeg' - members: 468 - name: Manila AngularJS Developers (ngManila) lat: 14.619999885559082 - who: Members - - utc_offset: 25200000 - country: ID - visibility: public + - country: ID city: Jakarta - timezone: Asia/Jakarta - created: 1384157718000 link: 'http://www.meetup.com/JakartaJS/' - rating: 4.84 - description: >- -

Come and meet other developers interested in the JavaScript and it's - library in the Greater Jakarta area.

- -

Twitter: @JakartaJS and we use the - hashtag #jakartajs

+ name: Jakarta Javascript User Group + description: |- +

Come and meet other developers interested in the JavaScript and it's library in the Greater Jakarta area.

+

Twitter: @JakartaJS and we use the hashtag #jakartajs

lon: 106.83000183105469 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/3/0/4/f/highres_444672367.jpeg' - photo_id: 444672367 photo_link: 'http://photos4.meetupstatic.com/photos/event/3/0/4/f/600_444672367.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/3/0/4/f/thumb_444672367.jpeg' - join_mode: open - organizer: - member_id: 91748212 - name: Hengki Sihombing - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/2/a/c/1/highres_251410945.jpeg' - photo_id: 251410945 - photo_link: 'http://photos4.meetupstatic.com/photos/member/2/a/c/1/member_251410945.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/2/a/c/1/thumb_251410945.jpeg' - members: 991 - name: Jakarta Javascript User Group lat: -6.179999828338623 - who: JavaScript Ninja - - utc_offset: 28800000 - country: PH - visibility: public + - country: PH city: Manila - timezone: Asia/Manila - created: 1384498444000 link: 'http://www.meetup.com/Node-js-Philippines/' + name: Node.js Philippines description: Meetup group for Node.js Philippines lon: 120.97000122070312 - join_mode: approval - organizer: - member_id: 28382362 - name: Leds Usop Jr. - photo: - photo_id: 158938962 - photo_link: 'http://photos1.meetupstatic.com/photos/member/e/6/5/2/member_158938962.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/e/6/5/2/thumb_158938962.jpeg' - members: 138 - name: Node.js Philippines lat: 14.619999885559082 - who: Members - - utc_offset: 10800000 - country: IL - visibility: public + - country: IL city: Tel Aviv-Yafo - timezone: Asia/Jerusalem - created: 1387210144000 link: 'http://www.meetup.com/Hackademy/' - rating: 4.83 + name: Hackademy description: '

Learning advanced Web and Mobile development frameworks and tools

' lon: 34.77000045776367 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/5/4/e/4/highres_316341732.jpeg' - photo_id: 316341732 photo_link: 'http://photos2.meetupstatic.com/photos/event/5/4/e/4/600_316341732.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/5/4/e/4/thumb_316341732.jpeg' - join_mode: open - organizer: - member_id: 123919242 - name: 500Tech - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/e/0/a/8/highres_164337512.jpeg' - photo_id: 164337512 - photo_link: 'http://photos4.meetupstatic.com/photos/member/e/0/a/8/member_164337512.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/e/0/a/8/thumb_164337512.jpeg' - members: 716 - name: Hackademy lat: 32.06999969482422 - who: Students - - utc_offset: 19800000 - country: IN - visibility: public - city: Gurgaon - timezone: Asia/Calcutta - created: 1388945769000 - link: 'http://www.meetup.com/MEAN-Group-Gurgaon/' - description: "

Community for MEAN and related technologies. like EmberJS, RaphaelJS, MarionetteJScan, Mocha, Chai, etc.

\n


\n\n

\n

Who should join?

\n

People who want to share their experiences and/or learn from other members experiences.\_

\n


\n\nWhat to expect?
\n\n

\n

Demos, Workshops, Helpathons, Hackathons, Pizza.

" - lon: 77.01000213623047 - group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/4/8/5/a/highres_322278522.jpeg' - photo_id: 322278522 - photo_link: 'http://photos1.meetupstatic.com/photos/event/4/8/5/a/600_322278522.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/4/8/5/a/thumb_322278522.jpeg' - join_mode: open - organizer: - member_id: 125843842 - name: Nitin Goel - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/d/4/6/4/highres_166794372.jpeg' - photo_id: 166794372 - photo_link: 'http://photos3.meetupstatic.com/photos/member/d/4/6/4/member_166794372.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/d/4/6/4/thumb_166794372.jpeg' - members: 91 - name: MEAN Group Gurgaon - lat: 28.469999313354492 - who: MEAN Stackers - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Delhi - timezone: Asia/Calcutta - created: 1390212056000 link: 'http://www.meetup.com/framework-architects/' - rating: 4.75 - description: >- -

Instead of simply USING an existing app framework like Backbone, - Durandal, express, etc, this is a meetup group for people interested in - MAKING application frameworks.

- -

So if you're developing a new application framework of your own then - this is the place to come discuss it, present it, and generally ideate - on it with other people genuinely interested in application - architecture.

- -

We discuss, collaborate on, and generally thrash about frameworks - both our own as well as the popular ones out there in the open. And we - intend to open up the members to each other's styles and strengths and - come out with multiple frameworks implemented in open - collaboration.

- + name: Framework Architects + description: |- +

Instead of simply USING an existing app framework like Backbone, Durandal, express, etc, this is a meetup group for people interested in MAKING application frameworks.

+

So if you're developing a new application framework of your own then this is the place to come discuss it, present it, and generally ideate on it with other people genuinely interested in application architecture.

+

We discuss, collaborate on, and generally thrash about frameworks both our own as well as the popular ones out there in the open. And we intend to open up the members to each other's styles and strengths and come out with multiple frameworks implemented in open collaboration.

See you here some time with your thinking hat on :)

lon: 77.20999908447266 - join_mode: open - organizer: - member_id: 124136152 - name: Anup Bishnoi - photo: - photo_id: 164628662 - photo_link: 'http://photos3.meetupstatic.com/photos/member/b/e/1/6/member_164628662.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/b/e/1/6/thumb_164628662.jpeg' - members: 125 - name: Framework Architects lat: 28.670000076293945 - who: Framework Architects - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Bangalore - timezone: Asia/Calcutta - created: 1390509915000 link: 'http://www.meetup.com/AngularJS-Bangalore/' - rating: 4.36 - description: >- -

Group for AngularJS Enthusiasts... who would love to meet / talk - / demo on AngularJS framework. Yes, the framework is vast / big enough - & deserves a community for itself!

- + name: AngularJS Bangalore + description: |- +

Group for AngularJS Enthusiasts... who would love to meet / talk / demo on AngularJS framework. Yes, the framework is vast / big enough & deserves a community for itself!

Join the fellow Anglars to meet up next time.

lon: 77.55999755859375 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/d/2/f/2/highres_326634002.jpeg' - photo_id: 326634002 photo_link: 'http://photos2.meetupstatic.com/photos/event/d/2/f/2/600_326634002.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/d/2/f/2/thumb_326634002.jpeg' - join_mode: open - organizer: - member_id: 129672752 - name: Bhaskara Kempaiah - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/8/b/9/e/highres_172415742.jpeg' - photo_id: 172415742 - photo_link: 'http://photos1.meetupstatic.com/photos/member/8/b/9/e/member_172415742.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/8/b/9/e/thumb_172415742.jpeg' - members: 1631 - name: AngularJS Bangalore lat: 12.970000267028809 - who: Anglars - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Bangalore - timezone: Asia/Calcutta - created: 1392224561000 link: 'http://www.meetup.com/Web-Developers-India/' + name: Web Developers India description: '

Web Developers India is a group covering all forms of Web Development and JS, Functional Programming, Scalability, Cloud Computing, Mobile and more for developers from India and Sri Lanka. We will host local meet ups, hackatons and opportunities to connect with successful international startups.

' lon: 77.55999755859375 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/b/7/4/highres_332822932.jpeg' - photo_id: 332822932 photo_link: 'http://photos2.meetupstatic.com/photos/event/b/7/4/600_332822932.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/b/7/4/thumb_332822932.jpeg' - join_mode: open - organizer: - member_id: 93876892 - name: Henrik JO Karlsson - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/9/e/f/e/highres_146200702.jpeg' - photo_id: 146200702 - photo_link: 'http://photos1.meetupstatic.com/photos/member/9/e/f/e/member_146200702.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/9/e/f/e/thumb_146200702.jpeg' - members: 116 - name: Web Developers India lat: 12.970000267028809 - who: Web Hackers - - utc_offset: 32400000 - country: JP - visibility: public + - country: JP city: Tokyo - timezone: Asia/Tokyo - created: 1392716245000 link: 'http://www.meetup.com/i-teach-you-programming-so-you-teach-me-english/' - rating: 4.74 + name: 'I Teach You Programming, So You Teach Me English!' description: "

〜 In return for learning programming, please teach me English 〜\_

\n


\n\n

\n

I think it would be good if we could form a group of these people\_

\n

• People interested in learning programming or design that can also speak English.\_

\n

•\_Designers or Programmers that want to learn English\_
\n\n

\n


\n\n
\n\n Things that I can teach

\n

my specialty is web based programming:\_

\n

Front-end(HTML/CSS,JavaScript,Flash)\_

\n

Back-end(Node.js,PHP,[Ruby, Python])\_

\n

I also have some skills in animation and 3D\_

\n

Also I'm writing a book on jQuery,\_

\n

and think I would be able to do a reasonable job teaching that.\_

\n

If our programmer and designer members increase\_

\n

we can also increase what we are able to teach\_
\n\n
\n\n

\n

translate by\_Lochran Huck

\n


\n\n

\n

〜 プログラミング教えるので、英語教えてください 〜

\n


\n\n

\n

こんな人たちがあつまるといいなぁ

\n

•\_プログラムやデザインを勉強したい英語ができる人

\n

•\_英語を勉強したいプログラマやデザイナ

\n


\n\n

\n

教えられる事

\n

自分が得意としているのはweb系のプログラムで、

\n

Front-end(HTML/CSS,JavaScript,Flash)も、

\n

Back-end(Node.js,PHP,[Ruby, Python])もできます。

\n

アニメーションや3Dなんかもできます。

\n

なにげにjQueryの本とか執筆しているので、

\n

そこそこ教えることができると思います。

\n

プログラマやデザイナのメンバーが増えたら、

\n

教えられる事の項目は増やしていきます。

\n


\n\n

\n

Lochran Huckさんが翻訳してくれました。
\n\n

\n

ありがとうございます。

" lon: 139.77000427246094 - join_mode: open - organizer: - member_id: 133734042 - name: Hiroaki Yasutomo - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/8/3/1/0/highres_178353552.jpeg' - photo_id: 178353552 - photo_link: 'http://photos3.meetupstatic.com/photos/member/8/3/1/0/member_178353552.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/8/3/1/0/thumb_178353552.jpeg' - members: 656 - name: 'I Teach You Programming, So You Teach Me English!' lat: 35.66999816894531 - who: Members - - utc_offset: 28800000 - country: HK - visibility: public + - country: HK city: Hong Kong - timezone: Asia/Shanghai - created: 1393432102000 link: 'http://www.meetup.com/hongkongjs/' - rating: 4.74 + name: Hong Kong JavaScript and Node.js description: "

Welcome to Hong Kong JavaScript and Node.js! Join us to share ideas, discuss trends, and assess the future of the ever ubiquitous language. Upcoming topics include Introduction to Node.js, Meteor, Client-Side Frameworks, and\_ECMAScript 6.

" lon: 114.13999938964844 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/2/a/8/2/highres_413710882.jpeg' - photo_id: 413710882 photo_link: 'http://photos1.meetupstatic.com/photos/event/2/a/8/2/600_413710882.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/2/a/8/2/thumb_413710882.jpeg' - join_mode: open - organizer: - member_id: 5317539 - name: Kevin Bluer - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/2/8/0/2/highres_2650242.jpeg' - photo_id: 2650242 - photo_link: 'http://photos1.meetupstatic.com/photos/member/2/8/0/2/member_2650242.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/2/8/0/2/thumb_2650242.jpeg' - members: 925 - name: Hong Kong JavaScript and Node.js lat: 22.270000457763672 - who: Developers - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Mumbai - timezone: Asia/Calcutta - created: 1393834377000 link: 'http://www.meetup.com/Mumbai-Technology-Meetup/' - rating: 4.65 + name: Mumbai Technology Meetup description: 'Bunch of technology enthusiasts who have been organizing various User Group Meetups for Linux, JavaScript and Python. We decided to collate our efforts and start Mumbai Technology Meetup. We have been having regular offline meetups since the past 1 year for all the above and now look forward to making it more exciting by having a mixed crowd sharing and creating new learning experiences.' lon: 72.81999969482422 - join_mode: open - organizer: - member_id: 12279837 - name: Mehul Ved - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/a/2/5/a/highres_181301562.jpeg' - photo_id: 181301562 - photo_link: 'http://photos4.meetupstatic.com/photos/member/a/2/5/a/member_181301562.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/a/2/5/a/thumb_181301562.jpeg' - members: 822 - name: Mumbai Technology Meetup lat: 18.959999084472656 - who: Mumbai Tech Enthusiasts - - utc_offset: 19800000 - country: IN - visibility: public_limited + - country: IN city: Hyderabad - timezone: Asia/Calcutta - created: 1395125379000 link: 'http://www.meetup.com/Hyderabad-Couchbase-Community/' + name: Hyderabad Couchbase Community description: '

Community for Couchbase & opensource technology in and around Hyderabad, India...

' lon: 78.4800033569336 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/4/5/8/highres_344761112.jpeg' - photo_id: 344761112 photo_link: 'http://photos1.meetupstatic.com/photos/event/4/5/8/600_344761112.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/4/5/8/thumb_344761112.jpeg' - join_mode: open - organizer: - member_id: 95817192 - name: Vijay Bhaskar - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/2/b/a/4/highres_184511172.jpeg' - photo_id: 184511172 - photo_link: 'http://photos3.meetupstatic.com/photos/member/2/b/a/4/member_184511172.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/2/b/a/4/thumb_184511172.jpeg' - members: 42 - name: Hyderabad Couchbase Community lat: 17.399999618530273 - who: Seekers - - utc_offset: 28800000 - country: CN - visibility: public + - country: CN city: Shanghai - timezone: Asia/Shanghai - created: 1396077506000 link: 'http://www.meetup.com/Shanghai-JavaScript-Meetup/' - rating: 4.62 + name: Shanghai JavaScript Meetup description: '

The Shanghai JavaScript Meetup provides a space for JavaScript enthusiasts to share and develop their skills within the JavaScript community. We welcome contributors of all levels to share their recent work with the community through presentations or shorter lightning talks at each talk/networking event. This community is open to everyone interested in developing the JavaScript community in Shanghai. 

' lon: 121.47000122070312 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/a/8/9/a/highres_420763162.jpeg' - photo_id: 420763162 photo_link: 'http://photos4.meetupstatic.com/photos/event/a/8/9/a/600_420763162.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/a/8/9/a/thumb_420763162.jpeg' - join_mode: open - organizer: - member_id: 146222772 - name: fraserxu - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/6/9/a/highres_197030842.jpeg' - photo_id: 197030842 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/6/9/a/member_197030842.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/6/9/a/thumb_197030842.jpeg' - members: 733 - name: Shanghai JavaScript Meetup lat: 31.229999542236328 - who: JS Ninjas - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Chandigarh - timezone: Asia/Calcutta - created: 1396352333000 link: 'http://www.meetup.com/Nodejs_chandigarh/' - rating: 5 + name: Chandigarh Nodejs Javascripters description: '

This group is about nodejs and various JavaScript frameworks for front end with some mongodb. New technologies that are changing the web as we consume and produce content, the opportunity is presents for start ups and platforms that can help nurture developers careers.

' lon: 76.77999877929688 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/2/9/e/2/highres_413170722.jpeg' - photo_id: 413170722 photo_link: 'http://photos3.meetupstatic.com/photos/event/2/9/e/2/600_413170722.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/2/9/e/2/thumb_413170722.jpeg' - join_mode: open - organizer: - member_id: 123263522 - name: Mandy Sidana - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/b/b/b/e/highres_188508062.jpeg' - photo_id: 188508062 - photo_link: 'http://photos1.meetupstatic.com/photos/member/b/b/b/e/member_188508062.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/b/b/b/e/thumb_188508062.jpeg' - members: 290 - name: Chandigarh Nodejs Javascripters lat: 30.75 - who: Scripters - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Hyderabad - timezone: Asia/Calcutta - created: 1398272837000 link: 'http://www.meetup.com/Hyderabad-JavaScript-Meetup/' - rating: 4.58 + name: Hyderabad JavaScript Meetup description: 'This group is about JavaScript and related technologies. All skill levels are welcome. I am starting this group to exchanging the ideas, views on JavaScript and related technologies.' lon: 78.4800033569336 - join_mode: open - organizer: - member_id: 113338572 - name: sudheer keesara - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/8/d/b/6/highres_252036278.jpeg' - photo_id: 252036278 - photo_link: 'http://photos3.meetupstatic.com/photos/member/8/d/b/6/member_252036278.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/8/d/b/6/thumb_252036278.jpeg' - members: 415 - name: Hyderabad JavaScript Meetup lat: 17.399999618530273 - who: JavaScripters - - utc_offset: 10800000 - country: RU - visibility: public - city: Moscow - timezone: Europe/Moscow - created: 1398972277000 - link: 'http://www.meetup.com/WeMakeWeb/' - rating: 5 - description: '

All the things about the WEB. Frontend, backend, whatever...

' - lon: 37.619998931884766 - group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/6/c/f/4/highres_405807892.jpeg' - photo_id: 405807892 - photo_link: 'http://photos4.meetupstatic.com/photos/event/6/c/f/4/600_405807892.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/6/c/f/4/thumb_405807892.jpeg' - join_mode: open - members: 147 - name: WeMakeWeb - lat: 55.75 - who: innovators - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Bangalore - timezone: Asia/Calcutta - created: 1400751463000 link: 'http://www.meetup.com/free-software-promoters-network/' - rating: 5 + name: Free Software Promoters Network - Jnaapti description: "

Jnaapti is a technical firm which provides training, but also is a free software promoter.\_

\n

•\_This meetup group is for all free and open source evangelists who promote open source software.\_

\n

•\_For people willing to attend sessions on using free software and open source software.\_
\n\n

\n

•\_For all like minded people who wish to be the technological change in the community.

\n

PS: This community is managed by \"http://jnaapti.com/\"

" lon: 77.55999755859375 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/e/8/b/e/highres_369179582.jpeg' - photo_id: 369179582 photo_link: 'http://photos2.meetupstatic.com/photos/event/e/8/b/e/600_369179582.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/e/8/b/e/thumb_369179582.jpeg' - join_mode: open - organizer: - member_id: 147838562 - name: Shreelaxmi Kamath - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/7/f/0/highres_199322032.jpeg' - photo_id: 199322032 - photo_link: 'http://photos1.meetupstatic.com/photos/member/7/f/0/member_199322032.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/7/f/0/thumb_199322032.jpeg' - members: 111 - name: Free Software Promoters Network - Jnaapti lat: 12.970000267028809 - who: 'Virtual Learners!' - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Mumbai - timezone: Asia/Calcutta - created: 1401270800000 link: 'http://www.meetup.com/Mumbai-Node-js-Meetup/' + name: Mumbai Node.js Meetup description: "Let's meet and share our experiences and help each other learn the spectacular Node.js and make it fun to work with!" lon: 72.81999969482422 - join_mode: open - organizer: - member_id: 82805702 - name: Bhoomi Desai - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/3/8/2/e/highres_134414382.jpeg' - photo_id: 134414382 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/8/2/e/member_134414382.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/3/8/2/e/thumb_134414382.jpeg' - members: 140 - name: Mumbai Node.js Meetup lat: 18.959999084472656 - who: Nodesters - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Bangalore - timezone: Asia/Calcutta - created: 1401365656000 link: 'http://www.meetup.com/www-gmail-com/' - lon: 77.55999755859375 - join_mode: open - organizer: - member_id: 148948872 - name: Akanksha - members: 79 name: Bangalore AngularJS Meetup + lon: 77.55999755859375 lat: 12.970000267028809 - who: Members - - utc_offset: 10800000 - country: IL - visibility: public + - country: IL city: Tel Aviv-Yafo - timezone: Asia/Jerusalem - created: 1401517391000 link: 'http://www.meetup.com/BigPanda-Israel/' - rating: 4.5 + name: BigPanda Israel description: "At BigPanda we work with cutting edge technologies to build our product and infrastructure. We think it's time we share our knowledge with the world through workshops, lectures and hackathons. So if you're looking for coding adventures, you're in the right place!" lon: 34.77000045776367 - join_mode: open - organizer: - member_id: 14243637 - name: Shahar Kedar - photo: - photo_id: 194349632 - photo_link: 'http://photos1.meetupstatic.com/photos/member/2/5/a/0/member_194349632.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/2/5/a/0/thumb_194349632.jpeg' - members: 129 - name: BigPanda Israel lat: 32.06999969482422 - who: 'Developers, DevOps, Ops' - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Mumbai - timezone: Asia/Calcutta - created: 1401633203000 link: 'http://www.meetup.com/docpad-mumbai/' + name: docpad-mumbai description: Docpad sets you free. DocPad removes limitations and closes the gap between experts and beginners. Designers and developers can create websites faster than ever before. lon: 72.81999969482422 - join_mode: open - organizer: - member_id: 120392822 - name: Abhishek Prabhu - photo: - photo_id: 201512632 - photo_link: 'http://photos4.meetupstatic.com/photos/member/7/f/7/8/member_201512632.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/7/f/7/8/thumb_201512632.jpeg' - members: 8 - name: docpad-mumbai lat: 18.959999084472656 - who: Hackers - - utc_offset: 10800000 - country: IL - visibility: public + - country: IL city: Tel Aviv-Yafo - timezone: Asia/Jerusalem - created: 1402498651000 link: 'http://www.meetup.com/Supersonic-developers/' - rating: 4.8 + name: Supersonic developers description: "

Once in a while we'll meet to share knowledge of the latest cutting edge open source web & mobile technologies. Come to learn new tricks and meet other enthusiastic developers like you at the SupersonicAds office.

" lon: 34.77000045776367 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/5/4/9/e/highres_394581662.jpeg' - photo_id: 394581662 photo_link: 'http://photos3.meetupstatic.com/photos/event/5/4/9/e/600_394581662.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/5/4/9/e/thumb_394581662.jpeg' - join_mode: open - organizer: - member_id: 36572952 - name: Amir Souchami - photo: - photo_id: 170275882 - photo_link: 'http://photos2.meetupstatic.com/photos/member/d/a/4/a/member_170275882.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/d/a/4/a/thumb_170275882.jpeg' - members: 161 - name: Supersonic developers lat: 32.06999969482422 - who: Developer - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Ahmedabad - timezone: Asia/Calcutta - created: 1402900235000 link: 'http://www.meetup.com/Ahmedabad-AngularJS/' - rating: 4.75 + name: Ahmedabad AngularJS description: 'This group is created to spread awareness about AnuglarJS, educating UI/UX developers, Web Developers to leverage the power of AngularJS in building marvellous web applications. Any one interested in this platform can join the group.' lon: 72.58000183105469 - join_mode: open - organizer: - member_id: 151753132 - name: Dipesh Patel - photo: - photo_id: 204767762 - photo_link: 'http://photos3.meetupstatic.com/photos/member/b/a/9/2/member_204767762.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/b/a/9/2/thumb_204767762.jpeg' - members: 898 - name: Ahmedabad AngularJS lat: 23.030000686645508 - who: Members - - utc_offset: 28800000 - country: TW - visibility: public + - country: TW city: Taipei - timezone: Asia/Taipei - created: 1403076120000 - link: 'http://www.meetup.com/startupcodecamp/' - rating: 4.88 - description: >- -

Startup Code Camp - 是免費的新創與程式教育,無需任何程式背景,透過8周學習4個全端網站專案。

- -

學習實作新創商業計劃,最後實作自己的想法,與國際新創投資人或工作機會連接。新成員或還不懂javascript的初學者也請直接從Projec - - - - 1 開始看,第一次請不需要跟著練習,第二次在開始實作練習coding。

- - - - - - - -

Meeting Room 310, or Lounge Bar 

- -

Startup Code Camp is free for everyone, no prior coding experience - required. Learn 4 projects in 8 Weeks to - be a fullstack developer and  entrepreneur with investor - networks or job opportunity. 

- -

for all beginners and new members, even if you don't know any - javascript. You can still start by just watching the first project -  (Contact App)  for the first time without working on the - code, just to get the feeling of what it is to build a web application. -  see open course links below. 

- -


- -

學習方法 Learning Method:  

- -

• build web project the first day

- -

• Learn in projects 

- -

• Do not code at first time, only watch and start to code the - second time.

- -

• Follow and finish all  projects and come back to - practice all project by yourself

- -

• Start your own idea, write business plan and build what - people need

- + link: 'http://www.meetup.com/tech-design/' + name: 'Startup Code Camp - connects Idea, Technology and Investor' + description: |- +

Startup Code Camp  is  free  startup and code education with prototyping solution and investment network. No matter you are interested in learning code  startup, or if you are engineer, designer , investors interested in partner with us. Feel free to join our

+

免費學習軟體開發與新創,提供快速開發服務與投資合作。無論你是想學習程式或新創,或是工程師,設計師,投資人希望參與專案合作,都會有一起參與我們的startup Code Camp。

+


+

Startup Code Camp Event Schedule 活動內容:

+

1. One- minute Pitch Time (30 min):

+

• Intro about you, idea or business 

+

• Your current problem or what you need 


- -

Fullstack Course : 
https://hackpad.com/Startup-Code-Camp-fullstack-entrepreneur-51fDlZLdbyo 

- -
- -

Topics of the weekly Events / 每週活動: 

- -


- -

Thursday: Startup Code Camp 

- -

https://www.facebook.com/groups/data.tw/  -

- -


- -

Tuesday: iOS APP  

- -

https://www.facebook.com/groups/ios.taipei/ -

- -


- -

Wednesday:Startup 創業 (English)

- -

https://www.facebook.com/groups/startup.tw/ -

- +

2. Trending Topic of the week (optional 30 min)

+

3. Free Network or Code Discussion Time


- +

Location 地點 :

+

Taipei Bridge Mrt 3F Innosquare , Bar area

+

台北橋捷運站 3F,新北創立坊,吧檯區


- +


Code & Startup Learning Material :

+

https://hackpad.com/Startup-Code-Camp-Workshop-51fDlZLdbyo 

+

Code Beginner please start with Codecademy angular Part 1: 

+

https://www.codecademy.com/learn/learn-angularjs


-
-


lon: 121.44999694824219 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/5/6/6/a/highres_444322122.jpeg' - photo_id: 444322122 photo_link: 'http://photos2.meetupstatic.com/photos/event/5/6/6/a/600_444322122.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/5/6/6/a/thumb_444322122.jpeg' - join_mode: open - organizer: - member_id: 135859812 - name: Richard Lin - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/2/a/6/b/highres_248170859.jpeg' - photo_id: 248170859 - photo_link: 'http://photos1.meetupstatic.com/photos/member/2/a/6/b/member_248170859.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/2/a/6/b/thumb_248170859.jpeg' - members: 1101 - name: 'Startup Code Camp: fullstack entrepreneur' lat: 25.020000457763672 - who: fullstack entrepreneur - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Hyderabad - timezone: Asia/Calcutta - created: 1403195167000 link: 'http://www.meetup.com/NodeJS-Hyderabad/' - rating: 5 + name: NodeJS Hyderabad description: '

Calling all NodeJS Developers in Hyderabad to brain storm how NodeJS is changing the world and breaking the principles.

' lon: 78.4800033569336 - join_mode: open - organizer: - member_id: 83276282 - name: Venkat Dulipalli - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/3/6/b/c/highres_239054012.jpeg' - photo_id: 239054012 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/6/b/c/member_239054012.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/6/b/c/thumb_239054012.jpeg' - members: 227 - name: NodeJS Hyderabad lat: 17.399999618530273 - who: Nodejs enthusiasts - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Delhi - timezone: Asia/Calcutta - created: 1403421414000 link: 'http://www.meetup.com/Web-Development-Meetup-Delhi-Chapter/' + name: Web Development Meetup - Delhi Chapter description: 'Calling all Web developers, calling all innovators, calling all who want to make internet a beautiful place making it the most dynamic platform for one and for all. Discuss your innovative ideas and let it be guided by industry experts and let it flourish. Discuss your problems, discuss new ideas. Let it all flow..' lon: 77.20999908447266 - join_mode: open - organizer: - member_id: 152620872 - name: Kumar Ravi - photo: - photo_id: 206116372 - photo_link: 'http://photos1.meetupstatic.com/photos/member/3/f/f/4/member_206116372.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/3/f/f/4/thumb_206116372.jpeg' - members: 106 - name: Web Development Meetup - Delhi Chapter lat: 28.670000076293945 - who: coding knights - - utc_offset: 28800000 - country: CN - visibility: public + - country: CN city: Shanghai - timezone: Asia/Shanghai - created: 1403702581000 link: 'http://www.meetup.com/efjsday/' - rating: 4.8 - description: >- -

An incredible JavaScript community built by EF Education First - and friends. We're the group of people behind the world's biggest - online English school built with JavaScript, we aim to connect more - developers around Shanghai speaking both English and JavaScript, - attending :

- + name: '#EFJS' + description: |- +

An incredible JavaScript community built by EF Education First and friends. We're the group of people behind the world's biggest online English school built with JavaScript, we aim to connect more developers around Shanghai speaking both English and JavaScript, attending :

• Meet new friends

-

• Great JavaScript topics

-

• Oral English Practice and improve presentation skills

-

• Get entertained ;)

- -

Think of this meet-up as an open events stream, we don't - really impose a fixed schedule, you subscribe to our calendar and pick - the event that suits you time and your taste , we will raise per event - as soon as we have a speech/session/workshop topic, so it doesn't have - to be a hundred ppls on the same track. 

- -

Our place offers spaces with different size, depending on how - many RSVPed in each event, you will be either sitting in small room - with tv,  or to stay in the stadium steps in - front of a projection wall. We offer free coffee and WIFI for - everybody.

- +

Think of this meet-up as an open events stream, we don't really impose a fixed schedule, you subscribe to our calendar and pick the event that suits you time and your taste , we will raise per event as soon as we have a speech/session/workshop topic, so it doesn't have to be a hundred ppls on the same track. 

+

Our place offers spaces with different size, depending on how many RSVPed in each event, you will be either sitting in small room with tv,  or to stay in the stadium steps in front of a projection wall. We offer free coffee and WIFI for everybody.


lon: 121.47000122070312 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/5/a/c/3/highres_439763235.jpeg' - photo_id: 439763235 photo_link: 'http://photos2.meetupstatic.com/photos/event/5/a/c/3/600_439763235.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/5/a/c/3/thumb_439763235.jpeg' - join_mode: open - organizer: - member_id: 137951122 - name: Garry Yao - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/2/6/5/4/highres_206889812.jpeg' - photo_id: 206889812 - photo_link: 'http://photos3.meetupstatic.com/photos/member/2/6/5/4/member_206889812.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/2/6/5/4/thumb_206889812.jpeg' - members: 203 - name: '#EFJS' lat: 31.229999542236328 - who: JS folks - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Kochi - timezone: Asia/Calcutta - created: 1404134773000 link: 'http://www.meetup.com/kochi-javascript/' + name: Kochi Javascript Ninjas description: '

People who loves to learn and explore Javascript!

' lon: 76.22000122070312 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/e/4/3/6/highres_381598422.jpeg' - photo_id: 381598422 photo_link: 'http://photos4.meetupstatic.com/photos/event/e/4/3/6/600_381598422.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/e/4/3/6/thumb_381598422.jpeg' - join_mode: open - organizer: - member_id: 154060822 - name: Renju Paul - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/e/6/f/2/highres_208019122.jpeg' - photo_id: 208019122 - photo_link: 'http://photos2.meetupstatic.com/photos/member/e/6/f/2/member_208019122.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/e/6/f/2/thumb_208019122.jpeg' - members: 60 - name: Kochi Javascript Ninjas lat: 10.020000457763672 - who: Ninjas - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Kochi - timezone: Asia/Calcutta - created: 1404393106000 link: 'http://www.meetup.com/Kochi-Noders/' - rating: 5 - description: '

People who interested in Node.JS development.

' + name: Kochi Noders + description: |- +

You want to learn or share anything regarding modern opensource technologies Node.js, Angular.js, React.js , Kochi Noders is the place!

+

Kochi Noders conducts seminars, workshops, discussions in and around Kochi on monthly basis. 

lon: 76.22000122070312 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/d/3/a/6/highres_382614182.jpeg' - photo_id: 382614182 photo_link: 'http://photos3.meetupstatic.com/photos/event/d/3/a/6/600_382614182.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/d/3/a/6/thumb_382614182.jpeg' - join_mode: open - organizer: - member_id: 154060822 - name: Renju Paul - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/e/6/f/2/highres_208019122.jpeg' - photo_id: 208019122 - photo_link: 'http://photos2.meetupstatic.com/photos/member/e/6/f/2/member_208019122.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/e/6/f/2/thumb_208019122.jpeg' - members: 142 - name: Kochi Noders lat: 10.020000457763672 - who: Noders - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Bangalore - timezone: Asia/Calcutta - created: 1404752170000 link: 'http://www.meetup.com/Node-js-and-BlueMix-Meetup/' - description: >- -

IBM® Bluemix™ provides a SDK for Node.js starter application that - you can use as a template. You can add your code to the starter - application, and then push the changes back to Bluemix.
- - + name: Node.js and Bluemix Meetup + description: |- +

IBM® Bluemix™ provides a SDK for Node.js starter application that you can use as a template. You can add your code to the starter application, and then push the changes back to Bluemix.

-

What is IBM Bluemix?
- - - Bluemix is an open-standard, cloud-based platform for building, - managing and running applications of all types (web, mobile, Big Data - Analytics, new smart devices, and so on). Capabilities include Java, - mobile back end development, application monitoring, as well as - capabilities from ecosystem partners and open source software all - through an as-a-service model in the cloud.With Bluemix, you can code - in your choice of language, such as Java, Python, Ruby, or Node, focus - on running your apps and not have to worry about getting servers or - installing software.

- -

This group is for those who are excited about connecting disparate - devices to one another via the IBM Bluemix. Subject Matter Experts, - Developers, Researchers, IT Consultants & Beginners who want to - learn what this is all about.....

- + Bluemix is an open-standard, cloud-based platform for building, managing and running applications of all types (web, mobile, Big Data Analytics, new smart devices, and so on). Capabilities include Java, mobile back end development, application monitoring, as well as capabilities from ecosystem partners and open source software all through an as-a-service model in the cloud.With Bluemix, you can code in your choice of language, such as Java, Python, Ruby, or Node, focus on running your apps and not have to worry about getting servers or installing software.

+

This group is for those who are excited about connecting disparate devices to one another via the IBM Bluemix. Subject Matter Experts, Developers, Researchers, IT Consultants & Beginners who want to learn what this is all about.....

All are welcome!

- -

we learn about Bluemix hands on with fellow developers and Bluemix - product architects(from IBM). Our meetups are free.

+

we learn about Bluemix hands on with fellow developers and Bluemix product architects(from IBM). Our meetups are free.

lon: 77.55999755859375 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/8/0/2/2/highres_392372802.jpeg' - photo_id: 392372802 photo_link: 'http://photos2.meetupstatic.com/photos/event/8/0/2/2/600_392372802.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/8/0/2/2/thumb_392372802.jpeg' - join_mode: open - organizer: - member_id: 87992452 - name: Param Rao - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/b/2/9/a/highres_210825722.jpeg' - photo_id: 210825722 - photo_link: 'http://photos3.meetupstatic.com/photos/member/b/2/9/a/member_210825722.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/b/2/9/a/thumb_210825722.jpeg' - members: 1028 - name: Node.js and Bluemix Meetup lat: 12.970000267028809 - who: Members - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Mumbai - timezone: Asia/Calcutta - created: 1405015358000 link: 'http://www.meetup.com/AngularJS-Mumbai/' - rating: 3.67 + name: AngularJS Mumbai description: 'This group is for people interesting in AngularJs. All skill levels are welcome. Motive of this group is to create a local community which can act a knowledge base and a great discussion group for all the angularjs things. be it a small application or a huge enterprise app built using angularjs , some one looking for a job or someone want to hire the talent. Welcome to AngularJs Mumbai.' lon: 72.81999969482422 - join_mode: open - organizer: - member_id: 64179752 - name: Anil Kumar Bhanushali - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/f/f/e/highres_210316382.jpeg' - photo_id: 210316382 - photo_link: 'http://photos2.meetupstatic.com/photos/member/3/f/f/e/member_210316382.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/3/f/f/e/thumb_210316382.jpeg' - members: 214 - name: AngularJS Mumbai lat: 18.959999084472656 - who: ng-models - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Kolkata - timezone: Asia/Calcutta - created: 1405322120000 link: 'http://www.meetup.com/Kolkata-AngularJS-Meetup/' - rating: 5 + name: Kolkata AngularJS Meetup description: This is a group for anyone interested in learning about AngularJS. It is also the first step in making a vibrant tech startup culture in Kolkata. Open to everyone without any bar of age or experience it is a place where we can all grow together and build great things. lon: 88.36000061035156 - join_mode: open - organizer: - member_id: 147530332 - name: Ishan Raychaudhuri - photo: - photo_id: 211095032 - photo_link: 'http://photos3.meetupstatic.com/photos/member/3/a/b/8/member_211095032.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/3/a/b/8/thumb_211095032.jpeg' - members: 202 - name: Kolkata AngularJS Meetup lat: 22.56999969482422 - who: Anglers - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Hyderabad - timezone: Asia/Calcutta - created: 1405397126000 link: 'http://www.meetup.com/JavaExperts/' + name: Java Meetup description: This is a group for developers interested in Spring Hibernate Javascript Angular Js Ext Js. lon: 78.4800033569336 - join_mode: open - organizer: - member_id: 156455862 - name: Tushar Saran - members: 78 - name: Java Meetup lat: 17.399999618530273 - who: Software Experts - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Bangalore - timezone: Asia/Calcutta - created: 1405412688000 link: 'http://www.meetup.com/Bangalore-Node-MongoDB-Meetup/' + name: Bangalore Node+MongoDB Meetup description: '“This is a group for anyone interested in NodeJs ,MongoDb. I started this group because to meet other NodeJs and MongoDB developer and we will learn from each other."' lon: 77.55999755859375 - join_mode: open - organizer: - member_id: 115162412 - name: Raj Patel - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/1/f/3/8/highres_221947992.jpeg' - photo_id: 221947992 - photo_link: 'http://photos1.meetupstatic.com/photos/member/1/f/3/8/member_221947992.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/1/f/3/8/thumb_221947992.jpeg' - members: 132 - name: Bangalore Node+MongoDB Meetup lat: 12.970000267028809 - who: Nodango - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Chennai - timezone: Asia/Calcutta - created: 1405438861000 link: 'http://www.meetup.com/Meteor-Chennai/' + name: Meteor Chennai description: '

This is a group for web developers who works on Meteor framework. Meteor is a complete web stack built on top of Node.js for building real time web applications.

' lon: 80.2699966430664 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/9/f/1/2/highres_428080722.jpeg' - photo_id: 428080722 photo_link: 'http://photos1.meetupstatic.com/photos/event/9/f/1/2/600_428080722.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/9/f/1/2/thumb_428080722.jpeg' - join_mode: open - organizer: - member_id: 94860152 - name: Raj Anand - photo: - photo_id: 211438992 - photo_link: 'http://photos1.meetupstatic.com/photos/member/e/6/7/0/member_211438992.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/e/6/7/0/thumb_211438992.jpeg' - members: 124 - name: Meteor Chennai lat: 13.09000015258789 - who: Meteorites - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Mumbai - timezone: Asia/Calcutta - created: 1405443406000 link: 'http://www.meetup.com/Mumbai-JS/' - rating: 3.5 + name: Mumbai JS Meetup description: '

This is for anyone who knows and wants to digg more in JS.

' lon: 72.81999969482422 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/3/1/e/2/highres_435252770.jpeg' - photo_id: 435252770 photo_link: 'http://photos4.meetupstatic.com/photos/event/3/1/e/2/600_435252770.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/3/1/e/2/thumb_435252770.jpeg' - join_mode: open - organizer: - member_id: 144745712 - name: Ashish Gaikwad - photo: - photo_id: 194879252 - photo_link: 'http://photos2.meetupstatic.com/photos/member/e/7/7/4/member_194879252.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/e/7/7/4/thumb_194879252.jpeg' - members: 96 - name: Mumbai JS Meetup lat: 18.959999084472656 - who: JS Coders - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Pune - timezone: Asia/Calcutta - created: 1405875477000 link: 'http://www.meetup.com/Pune-Node-js-User-Group/' + name: Pune Node.js User Group description: 'This meetup is focused on spreading knowledge and best practices for the use of Node.js. Topics of discussion include OSS projects, architectures, testing, devops, code management, deployment strategies, the future of Node and emerging trends.' lon: 73.83999633789062 - join_mode: open - organizer: - member_id: 77183032 - name: Arif Amirani - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/a/6/1/a/highres_92742522.jpeg' - photo_id: 92742522 - photo_link: 'http://photos4.meetupstatic.com/photos/member/a/6/1/a/member_92742522.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/a/6/1/a/thumb_92742522.jpeg' - members: 195 - name: Pune Node.js User Group lat: 18.530000686645508 - who: JS Hackers - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Ahmedabad - timezone: Asia/Calcutta - created: 1406129621000 link: 'http://www.meetup.com/meetup-group-iAIoTVuS/' - rating: 4.8 + name: Ahmedabad NodeJS description: A group to create awareness about NodeJS and educating developers in Node.js lon: 72.58000183105469 - join_mode: open - organizer: - member_id: 151753132 - name: Dipesh Patel - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/8/d/d/a/highres_252996314.jpeg' - photo_id: 252996314 - photo_link: 'http://photos4.meetupstatic.com/photos/member/8/d/d/a/member_252996314.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/8/d/d/a/thumb_252996314.jpeg' - members: 470 - name: Ahmedabad NodeJS lat: 23.030000686645508 - who: Node.js developers - - utc_offset: 28800000 - country: TW - visibility: public + - country: TW city: Taipei - timezone: Asia/Taipei - created: 1406651463000 link: 'http://www.meetup.com/Meteor-Taipei/' - rating: 4.83 + name: Meteor Taipei description: "

Meet other developers using Meteor. Share your knowledge, apps, and get feedback from others. Meteor is an open-source platform for building top-quality web apps in a fraction of the time, whether you're an expert developer or just getting started.

" lon: 121.44999694824219 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/4/0/a/c/highres_435796556.jpeg' - photo_id: 435796556 photo_link: 'http://photos2.meetupstatic.com/photos/event/4/0/a/c/600_435796556.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/4/0/a/c/thumb_435796556.jpeg' - join_mode: open - organizer: - member_id: 81670332 - name: Nick Coe - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/4/c/6/d/highres_245959565.jpeg' - photo_id: 245959565 - photo_link: 'http://photos1.meetupstatic.com/photos/member/4/c/6/d/member_245959565.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/4/c/6/d/thumb_245959565.jpeg' - members: 508 - name: Meteor Taipei lat: 25.020000457763672 - who: Meteorites - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Bhubaneswar - timezone: Asia/Calcutta - created: 1406989122000 link: 'http://www.meetup.com/Bhubaneswar-nodeJS-and-javascript-developers/' + name: Bhubaneswar nodeJS and javascript developers description: "

\n

This is a group for web developers who love opensource technologies particularly javascript in writing down both server side and client side code and \_developing hybrid mobile apps using web technologies.

" lon: 85.83999633789062 - join_mode: open - organizer: - member_id: 159524292 - name: Manas Tunga - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/1/7/6/8/highres_215585992.jpeg' - photo_id: 215585992 - photo_link: 'http://photos2.meetupstatic.com/photos/member/1/7/6/8/member_215585992.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/1/7/6/8/thumb_215585992.jpeg' - members: 92 - name: Bhubaneswar nodeJS and javascript developers lat: 20.270000457763672 - who: coders - - utc_offset: 10800000 - country: IL - visibility: public + - country: IL city: Rishon LeZiyyon - timezone: Asia/Jerusalem - created: 1408357582000 link: 'http://www.meetup.com/GDG-Rashlatz/' - rating: 4.9 - description: >- + name: GDG Rashlatz + description: |-

Google Developer Group - Rishon Le Zion

- -

In these meetups we'll talk about current and future web & - mobile technologies, entrepreneurship and other geeky stuff

- -

Finally, there is a group for all of the Rishon, Bat Yam, Holon, Nes - Ziona, Rehovot and the Sviva to meet without the traffic jams of Tel - Aviv :)

- +

In these meetups we'll talk about current and future web & mobile technologies, entrepreneurship and other geeky stuff

+

Finally, there is a group for all of the Rishon, Bat Yam, Holon, Nes Ziona, Rehovot and the Sviva to meet without the traffic jams of Tel Aviv :)


- -

- -

Also join our Google+ - Page

+

Also join our Google+ Page

lon: 34.79999923706055 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/6/3/b/2/highres_410125522.jpeg' - photo_id: 410125522 photo_link: 'http://photos3.meetupstatic.com/photos/event/6/3/b/2/600_410125522.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/6/3/b/2/thumb_410125522.jpeg' - join_mode: open - organizer: - member_id: 37252682 - name: Shai Reznik - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/f/9/6/highres_40013142.jpeg' - photo_id: 40013142 - photo_link: 'http://photos3.meetupstatic.com/photos/member/c/f/9/6/member_40013142.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/f/9/6/thumb_40013142.jpeg' - members: 677 - name: GDG Rashlatz lat: 31.959999084472656 - who: GDGers - - utc_offset: 14400000 - country: AE - visibility: public + - country: AE city: Dubai - timezone: Asia/Dubai - created: 1408450546000 link: 'http://www.meetup.com/JS-Dubai/' + name: JS Dubai description: '

Lectures and panels on topics concerning the JavaScript programming language.

' lon: 55.33000183105469 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/2/0/8/c/highres_400748332.jpeg' - photo_id: 400748332 photo_link: 'http://photos4.meetupstatic.com/photos/event/2/0/8/c/600_400748332.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/2/0/8/c/thumb_400748332.jpeg' - join_mode: open - organizer: - member_id: 162336822 - name: Chris - members: 90 - name: JS Dubai lat: 25.270000457763672 - who: Members - - utc_offset: 28800000 - country: PH - visibility: public + - country: PH city: Cebu - timezone: Asia/Manila - created: 1408496850000 link: 'http://www.meetup.com/Cebu-JavaScript-Meetup/' + name: Cebu JavaScript Meetup description: "Calling all JavaScript enthusiasts, from beginner to ninja! Let's get together to talk all about JS." lon: 123.9000015258789 - join_mode: open - organizer: - member_id: 137630562 - name: frozendry - members: 146 - name: Cebu JavaScript Meetup lat: 10.319999694824219 - who: JavaScript Ninjas - - utc_offset: 25200000 - country: ID - visibility: public + - country: ID city: Jakarta - timezone: Asia/Jakarta - created: 1408624435000 link: 'http://www.meetup.com/Jakarta-node-js-Meetup/' + name: Jakarta node.js Meetup description: |-


@@ -3806,1989 +893,587 @@ regions:

This is a group for anyone interested in nodejs

lon: 106.83000183105469 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/2/a/a/highres_403020682.jpeg' - photo_id: 403020682 photo_link: 'http://photos2.meetupstatic.com/photos/event/2/a/a/600_403020682.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/2/a/a/thumb_403020682.jpeg' - join_mode: open - organizer: - member_id: 13290151 - name: Jati - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/a/8/5/e/highres_221923102.jpeg' - photo_id: 221923102 - photo_link: 'http://photos3.meetupstatic.com/photos/member/a/8/5/e/member_221923102.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/a/8/5/e/thumb_221923102.jpeg' - members: 133 - name: Jakarta node.js Meetup lat: -6.179999828338623 - who: noders - - utc_offset: 25200000 - country: ID - visibility: public + - country: ID city: Jakarta - timezone: Asia/Jakarta - created: 1409398477000 link: 'http://www.meetup.com/Node-js-Workshop/' - rating: 4.75 + name: Node.js Jakarta description: '

Apa itu node js?, Platform yang mengunakan Chrome engine v8 , dalam perkembanganya node.js tidak hanya server side namun client side dan dapan berjalan di semua OS dan platform , distribusi nya dapat di deploy ke semua device (IOS, Android, Windows phone, Windows, Mac OS, Linux, etc), menggunakan bahasa javascript yang sama seperti implementasi dalam development web. Di Workshop ini kita akan belajar bagaimana mengembangkan applikasi menggunakan node.js dari awal sampe mahir. dengan konsep belajar berbagi ide dan sharing knowledge

' lon: 106.83000183105469 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/9/7/7/3/highres_432098771.jpeg' - photo_id: 432098771 photo_link: 'http://photos1.meetupstatic.com/photos/event/9/7/7/3/600_432098771.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/9/7/7/3/thumb_432098771.jpeg' - join_mode: open - organizer: - member_id: 153325592 - name: Lukluk Luhuring Santoso - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/9/5/3/highres_241622387.jpeg' - photo_id: 241622387 - photo_link: 'http://photos3.meetupstatic.com/photos/member/9/5/3/member_241622387.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/9/5/3/thumb_241622387.jpeg' - members: 393 - name: Node.js Jakarta lat: -6.179999828338623 - who: nodejs farmers - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Ni Dilli - timezone: Asia/Calcutta - created: 1409643097000 link: 'http://www.meetup.com/Ni-Dilli-AngularJS-Meetup/' + name: Ni Dilli AngularJS Meetup description: 'This group is to discuss Angular JS and stuff. How to proceed learning Angular, best methods, working on some project together.' lon: 77.22000122070312 - join_mode: open - organizer: - member_id: 165730422 - name: Kartik Asthana - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/4/6/8/4/highres_223458052.jpeg' - photo_id: 223458052 - photo_link: 'http://photos3.meetupstatic.com/photos/member/4/6/8/4/member_223458052.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/4/6/8/4/thumb_223458052.jpeg' - members: 118 - name: Ni Dilli AngularJS Meetup lat: 28.600000381469727 - who: angoors - - utc_offset: 28800000 - country: PH - visibility: public + - country: PH city: Cebu - timezone: Asia/Manila - created: 1410181572000 link: 'http://www.meetup.com/javascript-cebu/' - rating: 2.5 + name: Javascript Cebu description: '

Promote Javascript and other cutting edge web application development technology to Cebu

' lon: 123.9000015258789 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/3/8/c/c/highres_439094540.jpeg' - photo_id: 439094540 photo_link: 'http://photos3.meetupstatic.com/photos/event/3/8/c/c/600_439094540.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/3/8/c/c/thumb_439094540.jpeg' - join_mode: open - organizer: - member_id: 163236182 - name: Neil Paul Molina - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/8/5/5/e/highres_225094142.jpeg' - photo_id: 225094142 - photo_link: 'http://photos4.meetupstatic.com/photos/member/8/5/5/e/member_225094142.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/8/5/5/e/thumb_225094142.jpeg' - members: 294 - name: Javascript Cebu lat: 10.319999694824219 - who: nin.js - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Hyderabad - timezone: Asia/Calcutta - created: 1410503085000 link: 'http://www.meetup.com/Web-Mobile-Full-Stack-AngularJS-NodeJS-NoSQL-Meetup/' + name: Web/Mobile - Full Stack (AngularJS + NodeJS + NoSQL) Meetup description: 'This is a group for anyone interested to know about latest web / mobile technologies, either front-end, middleware or backend DBs. Its for full-stack engineers / architects, focused on developing apps using JavaScript (JSEverywhere). We will discuss about AngularJS, NodeJS and NoSQL DBs.' lon: 78.4800033569336 - join_mode: open - organizer: - member_id: 98041052 - name: Gaurav - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/d/3/1/a/highres_125274042.jpeg' - photo_id: 125274042 - photo_link: 'http://photos2.meetupstatic.com/photos/member/d/3/1/a/member_125274042.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/d/3/1/a/thumb_125274042.jpeg' - members: 293 - name: Web/Mobile - Full Stack (AngularJS + NodeJS + NoSQL) Meetup lat: 17.399999618530273 - who: Techies - - utc_offset: 28800000 - country: TW - visibility: public + - country: TW city: Taipei - timezone: Asia/Taipei - created: 1410551199000 link: 'http://www.meetup.com/Taipei-D3-js-Meetup/' - rating: 4.84 + name: Taipei D3.js description: "

D3.js 是目前被廣泛使用的前端可視化 Library,

\n

Taipei D3.js 期盼聚齊更多數據可視的愛好者,藉由難得相聚的機會,

\n

一起研究、學習與交流D3.js的應用與技術,並推廣與分享D3應用方法與繪圖模組。

\n

視覺化的目的想讓使用者更容易解讀數據後背後真正的意圖,讓數據更具體且靈活地呈現。

\n

先有 \"看得懂的數據\",才能解析 \"有價值的洞察\" ,最後才會產出 \"合理的決策行動\"

\n

-----
\n\n

\n

未來規劃在每個月月中,將定期舉辦交流聚會,

\n

期盼在學習與分享的過程中互相交流,加速大家的創新過程。

\n

[誠徵講者中...]
\n\n

\n

邀請D3同好、先進一起分享自己的學習經驗或應用模組\_

\n

Taipei D3.js Meetup 分享日程表\_ http://goo.gl/466UiS
\n\n

\n

歡迎來信分享 .. d3.meetup@gmail.com
\n\n

" lon: 121.44999694824219 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/9/5/4/e/highres_410618222.jpeg' - photo_id: 410618222 photo_link: 'http://photos1.meetupstatic.com/photos/event/9/5/4/e/600_410618222.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/9/5/4/e/thumb_410618222.jpeg' - join_mode: open - organizer: - member_id: 95555632 - name: Kimi Chen - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/a/8/4/e/highres_242563086.jpeg' - photo_id: 242563086 - photo_link: 'http://photos2.meetupstatic.com/photos/member/a/8/4/e/member_242563086.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/a/8/4/e/thumb_242563086.jpeg' - members: 806 - name: Taipei D3.js lat: 25.020000457763672 - who: Designer - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Chandigarh - timezone: Asia/Calcutta - created: 1410861959000 link: 'http://www.meetup.com/AngularJS-presentation/' + name: AngularJS presentation description: AngularJs is nex big thing. I have made an power point presentation of angular Basics. Hope this will useful for angyualrJs developer. lon: 76.77999877929688 - join_mode: open - organizer: - member_id: 59299032 - name: miraclestudios - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/b/2/4/highres_227162852.jpeg' - photo_id: 227162852 - photo_link: 'http://photos2.meetupstatic.com/photos/member/b/2/4/member_227162852.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/b/2/4/thumb_227162852.jpeg' - members: 98 - name: AngularJS presentation lat: 30.75 - who: Members - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Ahmedabad - timezone: Asia/Calcutta - created: 1411122411000 link: 'http://www.meetup.com/Ahmedabad-JavaScript-Enthusiasts/' + name: Ahmedabad JavaScript Enthusiasts description: 'This is a group for people interested in Javascript, JQuery, AngularJS, EmberJS, ReactJS, NodeJS, GruntJS, MeteorJS. Meetups will be focused on new cutting edge Javascript frameworks that are redefining web app development of this times. Aim is to leverage collaborative wisdom in context of Javascript technologies.' lon: 72.58000183105469 - join_mode: open - organizer: - member_id: 157845612 - name: Tanmay Desai - photo: - photo_id: 213230402 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/4/e/2/member_213230402.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/c/4/e/2/thumb_213230402.jpeg' - members: 261 - name: Ahmedabad JavaScript Enthusiasts lat: 23.030000686645508 - who: JStors - - utc_offset: 32400000 - country: JP - visibility: public + - country: JP city: Tokyo - timezone: Asia/Tokyo - created: 1412475046000 link: 'http://www.meetup.com/tokyojs/' - rating: 4.38 - description: >- -

This is a group for anyone interested in JavaScript, its good and - bad parts. Let's awe together in the beauty and quirkiness of this - language, that has stuck with us for almost two decades. Let's gather - to share, explore and learn about everything-JavaScript. 

- -

これはJavaScriptに興味をお持ちの方の新グループです。 - 特有なところも美しいところも、いずれにせよ唯一無二のJavaScriptを一緒に楽しみましょう。 - JavaScriptの全てを探検しながら、勉強したい方も、教えたい方も、皆さんどうぞをご参加ください。

- -

- + name: TokyoJS + description: |- +

This is a group for anyone interested in JavaScript, its good and bad parts. Let's awe together in the beauty and quirkiness of this language, that has stuck with us for almost two decades. Let's gather to share, explore and learn about everything-JavaScript. 

+

これはJavaScriptに興味をお持ちの方の新グループです。 特有なところも美しいところも、いずれにせよ唯一無二のJavaScriptを一緒に楽しみましょう。 JavaScriptの全てを探検しながら、勉強したい方も、教えたい方も、皆さんどうぞをご参加ください。

+


lon: 139.77000427246094 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/6/6/2/b/highres_444746155.jpeg' - photo_id: 444746155 photo_link: 'http://photos2.meetupstatic.com/photos/event/6/6/2/b/600_444746155.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/6/6/2/b/thumb_444746155.jpeg' - join_mode: open - organizer: - member_id: 4169679 - name: Jorge Bucaran - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/6/3/4/6/highres_251545414.jpeg' - photo_id: 251545414 - photo_link: 'http://photos2.meetupstatic.com/photos/member/6/3/4/6/member_251545414.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/6/3/4/6/thumb_251545414.jpeg' - members: 550 - name: TokyoJS lat: 35.66999816894531 - who: JSers - - utc_offset: 10800000 - country: IL - visibility: public + - country: IL city: Tel Aviv-Yafo - timezone: Asia/Jerusalem - created: 1412508554000 link: 'http://www.meetup.com/Joola-data-analytics-meetup/' + name: Joola data analytics meetup description: "

Joola is the easiest way to build data analytics applications. This group is for anyone interested in deploying data analytics &amp; visualization apps using Joola's opensource framework, or our PaaS solution.

" lon: 34.77000045776367 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/8/3/7/0/highres_431433648.jpeg' - photo_id: 431433648 photo_link: 'http://photos2.meetupstatic.com/photos/event/8/3/7/0/600_431433648.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/8/3/7/0/thumb_431433648.jpeg' - join_mode: open - organizer: - member_id: 118115992 - name: Or Weinberger - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/d/6/d/a/highres_231955002.jpeg' - photo_id: 231955002 - photo_link: 'http://photos4.meetupstatic.com/photos/member/d/6/d/a/member_231955002.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/d/6/d/a/thumb_231955002.jpeg' - members: 86 - name: Joola data analytics meetup lat: 32.06999969482422 - who: Devs - - utc_offset: 10800000 - country: IL - visibility: public + - country: IL city: Rishon LeZiyyon - timezone: Asia/Jerusalem - created: 1412663831000 link: 'http://www.meetup.com/Techome/' + name: Techome description: '

TECHOME was established for the benefit of encouraging entrepreneurship, and strengthening the culture of cooperation and knowledge sharing, and exposing the thelatest technologies to the people of Rishon Lezion ( Israel) and surrounding.

' lon: 34.79999923706055 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/4/7/9/2/highres_418518322.jpeg' - photo_id: 418518322 photo_link: 'http://photos4.meetupstatic.com/photos/event/4/7/9/2/600_418518322.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/4/7/9/2/thumb_418518322.jpeg' - join_mode: open - organizer: - member_id: 43319222 - name: Oshri - photo: - photo_id: 54004522 - photo_link: 'http://photos4.meetupstatic.com/photos/member/1/1/a/a/member_54004522.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/1/1/a/a/thumb_54004522.jpeg' - members: 59 - name: Techome lat: 31.959999084472656 - who: Members - - utc_offset: 28800000 - country: HK - visibility: public + - country: HK city: Hong Kong - timezone: Asia/Shanghai - created: 1413450763000 link: 'http://www.meetup.com/Hong-Kong-MEAN-Full-Stack-Developers/' - rating: 5 + name: Hong Kong MEAN Javascript Full Stack Development description: "

For Developers, Entrepreneurs and Designers who are interested in learning \_how

\n

MEAN (Mongo, Express, Angular, Node)\_stack and\_

\n

MISO (Micro Interoperable Services Oriented) architecture\_

\n

can help you work together to rapidly develop world class scalable web/mobile apps.\_

\n

Join to meet and learn from each other how to make the most out of MEAN and MISO.\_

\n

The group aims to provide talks, trainings, hackathons to bring up the MEAN and MISO community! If you are new to web development, this is a good starting point to learn a great development framework!
\n\n

" lon: 114.13999938964844 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/4/d/c/8/highres_421819912.jpeg' - photo_id: 421819912 photo_link: 'http://photos4.meetupstatic.com/photos/event/4/d/c/8/600_421819912.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/4/d/c/8/thumb_421819912.jpeg' - join_mode: open - organizer: - member_id: 170735502 - name: Edwin - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/c/7/1/2/highres_230690962.jpeg' - photo_id: 230690962 - photo_link: 'http://photos2.meetupstatic.com/photos/member/c/7/1/2/member_230690962.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/c/7/1/2/thumb_230690962.jpeg' - members: 132 - name: Hong Kong MEAN Javascript Full Stack Development lat: 22.270000457763672 - who: Meantor - - utc_offset: 28800000 - country: CN - visibility: public + - country: CN city: Shanghai - timezone: Asia/Shanghai - created: 1413512656000 link: 'http://www.meetup.com/Shanghai-Web-Dev-and-Design-Club/' - rating: 4.93 + name: Shanghai Web Dev and Design Club description: "

The Shanghai Web Dev & Design club is for anyone interested in learning and exchanging industry tips and trends in JavaScript, CSS, PHP, python, HTML5, responsive design, servers, node.js, APIs, or anything else people want to discuss. Let's make some sexy websites! Such code, much fun, Wow! All levels welcome.

" lon: 121.47000122070312 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/3/f/6/8/highres_421996232.jpeg' - photo_id: 421996232 photo_link: 'http://photos3.meetupstatic.com/photos/event/3/f/6/8/600_421996232.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/3/f/6/8/thumb_421996232.jpeg' - join_mode: open - organizer: - member_id: 119922532 - name: Eve Olynyk - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/2/e/2/4/highres_235211812.jpeg' - photo_id: 235211812 - photo_link: 'http://photos4.meetupstatic.com/photos/member/2/e/2/4/member_235211812.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/2/e/2/4/thumb_235211812.jpeg' - members: 731 - name: Shanghai Web Dev and Design Club lat: 31.229999542236328 - who: Hackers - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Thiruvananthapuram - timezone: Asia/Calcutta - created: 1414258555000 link: 'http://www.meetup.com/tvm-js/' + name: tvmJs description: '

Meet the other JavaScript developers in Trivandrum. Share your knowledge, apps and get feedback. No more presentations - "show me the code".

' lon: 76.94999694824219 - join_mode: approval - organizer: - member_id: 179880562 - name: Jamsheer Basheer - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/5/d/2/highres_237470642.jpeg' - photo_id: 237470642 - photo_link: 'http://photos3.meetupstatic.com/photos/member/c/5/d/2/member_237470642.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/5/d/2/thumb_237470642.jpeg' - members: 4 - name: tvmJs lat: 8.510000228881836 - who: Members - - utc_offset: 28800000 - country: CN - visibility: public + - country: CN city: Shanghai - timezone: Asia/Shanghai - created: 1414466688000 - link: 'http://www.meetup.com/Shanghai-JSer-Reunion-Teambition/' - rating: 3 - description: "

As an active Dev group in Javascript community, Teambition has been determined to contribute our experience and efforts to enrich the JS community in Shanghai. We envision a future that everyone gets benefits from communication and share. Thus, we would like to invite Shanghai JSers to Teambition's new office [2nd floor, Building 2, No. 888 Bibo Road, Shanghai /碧波路888号畅星大厦2号楼(圆楼)2层] for a tech-share night every month. Either you have any interesting JS trick to share, or you want to have your tech stack updated, SIGN UP NOW! We are going to provide foods and drinks for free from 6:00pm. The Session would be officially launched from 6:30pm. After session, we will also enjoy music/game together.

" + link: 'http://www.meetup.com/Shanghai-JSer-Reunion/' + name: Shanghai JSer Reunion + description: '

Either you have any interesting JS trick to share, or you want to have your tech stack updated, SIGN UP NOW! We are going to provide foods and drinks for free from 6:00pm. The Session would be officially launched from 6:30pm. After session, we will also enjoy music/game together.

' lon: 121.47000122070312 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/c/8/3/4/highres_427011252.jpeg' - photo_id: 427011252 photo_link: 'http://photos2.meetupstatic.com/photos/event/c/8/3/4/600_427011252.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/c/8/3/4/thumb_427011252.jpeg' - join_mode: open - organizer: - member_id: 65401862 - name: Jay Wang - photo: - photo_id: 76436412 - photo_link: 'http://photos2.meetupstatic.com/photos/member/d/c/5/c/member_76436412.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/d/c/5/c/thumb_76436412.jpeg' - members: 70 - name: Shanghai JSer Reunion @ Teambition lat: 31.229999542236328 - who: JSer - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Chennai - timezone: Asia/Calcutta - created: 1415403084000 link: 'http://www.meetup.com/Chennai-Angular-JS-Front-End-Meetup-by-Sciflare/' - rating: 5 + name: Chennai Angular JS / Front End Meetup by Sciflare description: 'We welcome ALL, who are interested in learning or mastering Full Stack JavaScript Application development using Angular JS, Backbone JS, Node JS, HTML5, CSS3, React JS, Ember JS, Express, Mongo DB, NoSQL. All skills levels are welcome. We (Sciflare Technologies) started this group because to meet other Tech enthusiasts to share our expertise & exchange ideas in solving real world problems in the Enterprise & User driven applications where best is just not enough :) Excited to meet you all at the Meetup !' lon: 80.2699966430664 - join_mode: open - organizer: - member_id: 148556312 - name: Shiva - members: 469 - name: Chennai Angular JS / Front End Meetup by Sciflare lat: 13.09000015258789 - who: ng Geeks - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Bangalore - timezone: Asia/Calcutta - created: 1416413957000 link: 'http://www.meetup.com/MEAN-stack-Developers/' + name: MEAN stack Developers description: 'MEAN stack is an open source stack which allows developers to build awesome and dynamic web applications!' lon: 77.55999755859375 - join_mode: open - organizer: - member_id: 182623144 - name: Karan Kyanam - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/7/0/b/e/highres_241648862.jpeg' - photo_id: 241648862 - photo_link: 'http://photos3.meetupstatic.com/photos/member/7/0/b/e/member_241648862.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/7/0/b/e/thumb_241648862.jpeg' - members: 97 - name: MEAN stack Developers lat: 12.970000267028809 - who: MeanDevs - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Chennai - timezone: Asia/Calcutta - created: 1416806902000 link: 'http://www.meetup.com/Javascript-G/' + name: Javascript-G description: This group is for anyone who what to share and learn best practices of javascript and related technologies lon: 80.2699966430664 - join_mode: open - organizer: - member_id: 60657132 - name: Anand Chitravelu - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/4/7/6/a/highres_241758282.jpeg' - photo_id: 241758282 - photo_link: 'http://photos3.meetupstatic.com/photos/member/4/7/6/a/member_241758282.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/4/7/6/a/thumb_241758282.jpeg' - members: 71 - name: Javascript-G lat: 13.09000015258789 - who: Javascript Freaks - - utc_offset: 28800000 - country: PH - visibility: public + - country: PH city: Pasig City - timezone: Asia/Manila - created: 1416990655000 link: 'http://www.meetup.com/Pasig-City-node-js-Meetup/' + name: Pasig City node.js Meetup description: All about programming and cloud computing with Node.JS lon: 121.08999633789062 - join_mode: open - organizer: - member_id: 182724746 - name: Reynold Lariza - members: 59 - name: Pasig City node.js Meetup lat: 14.579999923706055 - who: Noders - - utc_offset: 25200000 - country: ID - visibility: public + - country: ID city: Semarang - timezone: Asia/Jakarta - created: 1417648726000 link: 'http://www.meetup.com/Semarang-node-js-Meetup/' + name: node.js Semarang description: '

member of node.js indonesia nantikan workshop kami di semarang

' lon: 110.41999816894531 - join_mode: open - organizer: - member_id: 182761332 - name: Lukluk Santoso - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/c/1/9/c/highres_241969564.jpeg' - photo_id: 241969564 - photo_link: 'http://photos2.meetupstatic.com/photos/member/c/1/9/c/member_241969564.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/c/1/9/c/thumb_241969564.jpeg' - members: 113 - name: node.js Semarang lat: -6.96999979019165 - who: node.js farmers - - utc_offset: 25200000 - country: BD - visibility: public + - country: BD city: Dhaka - timezone: Asia/Dhaka - created: 1419269474000 link: 'http://www.meetup.com/Dhaka-JS/' - rating: 4.86 - description: >- -

Developers interested in sharing knowledge and growing their skills - around JavaScript and modern web technology: e.g. ES6, AltJS, NodeJS, - Angular, Ember, Browserify, Web Components, HTML5 - APIs, LevelDB, etc.

- + name: DhakaJS + description: |- +

Developers interested in sharing knowledge and growing their skills around JavaScript and modern web technology: e.g. ES6, AltJS, NodeJS, Angular, Ember, Browserify, Web Components, HTML5 APIs, LevelDB, etc.


- -

If you want to help out, sponsor, or have any suggestions or - feedback, just get in touch!

+

If you want to help out, sponsor, or have any suggestions or feedback, just get in touch!

lon: 90.38999938964844 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/3/c/2/e/highres_434895406.jpeg' - photo_id: 434895406 photo_link: 'http://photos2.meetupstatic.com/photos/event/3/c/2/e/600_434895406.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/3/c/2/e/thumb_434895406.jpeg' - join_mode: open - organizer: - member_id: 183085912 - name: Md. Azharul Islam - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/3/6/b/0/highres_242354000.jpeg' - photo_id: 242354000 - photo_link: 'http://photos3.meetupstatic.com/photos/member/3/6/b/0/member_242354000.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/3/6/b/0/thumb_242354000.jpeg' - members: 1042 - name: DhakaJS lat: 23.700000762939453 - who: Members - - utc_offset: 10800000 - country: IL - visibility: public + - country: IL city: "Ra'anana" - timezone: Asia/Jerusalem - created: 1419927201000 link: 'http://www.meetup.com/Web-Developers-Community/' - rating: 4.83 + name: Web Developers Community description: "The Web Developer Community is a group of developers that are interested in web technologies. We meet at Microsoft office at Ra'anana and discuss the latest web technologies like NodeJS, AngularJS and ASP.NET vNext." lon: 34.880001068115234 - join_mode: open - organizer: - member_id: 130509252 - name: Ori Calvo - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/3/3/6/0/highres_173593152.jpeg' - photo_id: 173593152 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/3/6/0/member_173593152.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/3/6/0/thumb_173593152.jpeg' - members: 1118 - name: Web Developers Community lat: 32.189998626708984 - who: Members - - utc_offset: 19800000 - country: IN - visibility: public_limited + - country: IN city: Delhi - timezone: Asia/Calcutta - created: 1420784492000 link: 'http://www.meetup.com/jslovers/' - rating: 4.88 - description: >- + name: Lets decode the Javascript + description: |-

Hello JavaScript Lovers,

- -

Are you passionate about Web Development, Javascript, HTML5, - CSS, JS Libraries & Frameworks? Do you love spending hours - talking about its fundamentals and functions? If yes, then welcome - to JSLovers- a community for the JavaScript - and Front-end technologists like you and me.

- +

Are you passionate about Web Development, Javascript, HTML5, CSS, JS Libraries & Frameworks? Do you love spending hours talking about its fundamentals and functions? If yes, then welcome to JSLovers- a community for the JavaScript and Front-end technologists like you and me.

We at JSLovers believe on - "Talk Less and Code More" approach.

-

Follow us @jslovers_del on twiiter 

- -

Love to be speaker or sponsor or want to post your project - requirement/job requirement contact :

- +

Love to be speaker or sponsor or want to post your project requirement/job requirement contact :

hello@jslovers.com

-


-

What is JSLovers?

- -

At JSLovers we follow the approach of "Talk Less and Code More" - approach. 

- -

It is a platform where you can attend sessions,meet and - interact with JavaScript fanatics like you and share - your knowledge with them. It also gives you a chance to share - your enthusiasm of front end developers in Front-end - field and apprise yourself of latest developments in - the field.

- +

At JSLovers we follow the approach of "Talk Less and Code More" approach. 

+

It is a platform where you can attend sessions,meet and interact with JavaScript fanatics like you and share your knowledge with them. It also gives you a chance to share your enthusiasm of front end developers in Front-end field and apprise yourself of latest developments in the field.


-

Who are the face of JSLovers?

- -

Currently, there are two of us  running the show and give our - best. We are looking for people who want to come forward and - share knowledge with the community.

- +

Currently, there are two of us  running the show and give our best. We are looking for people who want to come forward and share knowledge with the community.


-

What we have done so far?

- -

We have a strong community of 500+ JSLovers on - meetup

- -

On Facebook we - have 400+

- -

On our site we have 9000 - sessions so far.

- -

On our Facebook page - https://www.facebook.com/javascriptlovers - on we keep posting and sharing valuable information about - the technologies, meetups, Sessions and - also post questions related to - the JavaScript/Angular/Node/HTML, - etc.

- +

We have a strong community of 500+ JSLovers on meetup

+

On Facebook we have 400+

+

On our site we have 9000 sessions so far.

+

On our Facebook page - https://www.facebook.com/javascriptlovers on we keep posting and sharing valuable information about the technologies, meetups, Sessions and also post questions related to the JavaScript/Angular/Node/HTML, etc.


- -

We also have our website Jslovers.com , which we try to update on - regular basis.

- +

We also have our website Jslovers.com , which we try to update on regular basis.


-

Are these are paid or free?

- -

We know people LOVE FREE things, but in this world there is nothing - like "Free Lunches".

- -

Depends. Few are free and few are paid. If you are - serious learner you won't mind paying for the - knowledgeable sessions.

- +

We know people LOVE FREE things, but in this world there is nothing like "Free Lunches".

+

Depends. Few are free and few are paid. If you are serious learner you won't mind paying for the knowledgeable sessions.


-

What is in future?

- -

Our community is evolving and adapting to latest innovations - in technology and market demands. Join our Meetup - Group and FB page to know the latest of the industry - and sessions.

- +

Our community is evolving and adapting to latest innovations in technology and market demands. Join our Meetup Group and FB page to know the latest of the industry and sessions.


-

CODE OF CONDUCT

- -

If we find someone abusing or disrespecting the organizers, speakers - or audience. We hold the right to ask that person to leave the workshop - & community. We won't think once before blocking that - person. 

- +

If we find someone abusing or disrespecting the organizers, speakers or audience. We hold the right to ask that person to leave the workshop & community. We won't think once before blocking that person. 


-

Happy learning!!

-


-


-


-


lon: 77.20999908447266 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/8/0/4/8/highres_433592840.jpeg' - photo_id: 433592840 photo_link: 'http://photos4.meetupstatic.com/photos/event/8/0/4/8/600_433592840.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/8/0/4/8/thumb_433592840.jpeg' - join_mode: open - organizer: - member_id: 173481052 - name: Neha Sharma - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/5/c/0/b/highres_253463563.jpeg' - photo_id: 253463563 - photo_link: 'http://photos3.meetupstatic.com/photos/member/5/c/0/b/member_253463563.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/5/c/0/b/thumb_253463563.jpeg' - members: 642 - name: Lets decode the Javascript lat: 28.670000076293945 - who: JSLovers - - utc_offset: 28800000 - country: HK - visibility: public + - country: HK city: Hong Kong - timezone: Asia/Shanghai - created: 1421038603000 link: 'http://www.meetup.com/Hong-Kong-JavaScripter-Meetup/' + name: Hong Kong JavaScripter Meetup description: 'Javascripters in HK assemble! We love to rant about how hideous JQuery is and our glorious self-made homebrew framework is superior to React.js. We had heated discussion of FP vs OOP in Javascript and how AngularJS is destroying the only place where Java is not ruining a generation of programmers. All those are tea and coffee fueled. Hope everyone can achieve the "Tao" of Javascript!' lon: 114.13999938964844 - join_mode: open - organizer: - member_id: 99899192 - name: Wat Chun Pang Gilbert - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/6/c/1/5/highres_242847669.jpeg' - photo_id: 242847669 - photo_link: 'http://photos3.meetupstatic.com/photos/member/6/c/1/5/member_242847669.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/6/c/1/5/thumb_242847669.jpeg' - members: 77 - name: Hong Kong JavaScripter Meetup lat: 22.270000457763672 - who: Javascripter - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Bangalore - timezone: Asia/Calcutta - created: 1421505499000 link: 'http://www.meetup.com/Bangalore-WebRTC-Meetup/' - rating: 5 + name: Bangalore WebRTC Meetup description: This group is being created to find out all the people who are really excited about WebRTC and related real time communication techniques and imagine to change the world through such a technology. We strongly believe that WebRTC has the potential to change the world. We invite everyone to explore the fascinating world of real time communication technologies and to find out how everyone can build game changer products with the help of these. lon: 77.55999755859375 - join_mode: approval - organizer: - member_id: 146898332 - name: Saurav Panda - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/d/9/9/e/highres_254575710.jpeg' - photo_id: 254575710 - photo_link: 'http://photos1.meetupstatic.com/photos/member/d/9/9/e/member_254575710.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/d/9/9/e/thumb_254575710.jpeg' - members: 129 - name: Bangalore WebRTC Meetup lat: 12.970000267028809 - who: RTCers - - utc_offset: 25200000 - country: VN - visibility: public + - country: VN city: Ha Noi - timezone: Asia/Saigon - created: 1422288783000 link: 'http://www.meetup.com/Ha-Noi-JavaScript-Application-Meetup/' + name: Ha Noi JavaScript Meetup description: '

For local people who are interested in new developments of JavaScript in web application, desktop application, different front-end frameworks and tech startups. We have a Facebook group here https://www.facebook.com/groups/hanoiJS/

' lon: 105.83999633789062 - join_mode: open - organizer: - member_id: 182490867 - name: Long Vuong - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/7/c/c/b/highres_243271947.jpeg' - photo_id: 243271947 - photo_link: 'http://photos4.meetupstatic.com/photos/member/7/c/c/b/member_243271947.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/7/c/c/b/thumb_243271947.jpeg' - members: 399 - name: Ha Noi JavaScript Meetup lat: 21.030000686645508 - who: Javascript users - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Mumbai - timezone: Asia/Calcutta - created: 1425309868000 link: 'http://www.meetup.com/Mumbai-JavaScript-Meetup/' - rating: 4.5 + name: Mumbai JavaScript Meetup description: "Do you develop in AngularJS, Backbone, EmberJS, NodeJS, io.js or anything in JavaScript? If yes, then this meetup is for you. We'll be targeting talks on pure JavaScripts talks, Functional programming and latest trends in the community. Join us to keep yourself up to date. " lon: 72.81999969482422 - join_mode: open - organizer: - member_id: 12747789 - name: Bilal Budhani - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/d/f/5/4/highres_235557172.jpeg' - photo_id: 235557172 - photo_link: 'http://photos2.meetupstatic.com/photos/member/d/f/5/4/member_235557172.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/d/f/5/4/thumb_235557172.jpeg' - members: 415 - name: Mumbai JavaScript Meetup lat: 18.959999084472656 - who: Members - - utc_offset: 20700000 - country: NP - visibility: public + - country: NP city: Kathmandu - timezone: Asia/Katmandu - created: 1426839127000 link: 'http://www.meetup.com/KathmanduJS/' - rating: 4.84 + name: KTMJS description: '

Javascript is increasing in popularity but there are very few people writing frontend-heavy apps in javascript in Nepal. Let us meet and promote Javascript development.

' lon: 85.30999755859375 - join_mode: open - organizer: - member_id: 185399438 - name: Punit Jajodia - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/1/8/4/5/highres_244686213.jpeg' - photo_id: 244686213 - photo_link: 'http://photos4.meetupstatic.com/photos/member/1/8/4/5/member_244686213.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/1/8/4/5/thumb_244686213.jpeg' - members: 417 - name: KTMJS lat: 27.709999084472656 - who: JS lovers - - utc_offset: 28800000 - country: TW - visibility: public + - country: TW city: Taipei - timezone: Asia/Taipei - created: 1428232960000 link: 'http://www.meetup.com/Code-Coffee-Conquer/' + name: Code. Coffee. Conquer. description: "Let's meet at a coffee shop, grab coffee, write some code and conquer the world! In a positive way! :-)\n\nThe meetings will be very informal. Come share your experiences in technology, make a friend, find a mentor, coach a colleague and drink coffee! " lon: 121.44999694824219 - join_mode: open - organizer: - member_id: 185859928 - name: Robert Weaver - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/d/a/e/2/highres_245096034.jpeg' - photo_id: 245096034 - photo_link: 'http://photos3.meetupstatic.com/photos/member/d/a/e/2/member_245096034.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/d/a/e/2/thumb_245096034.jpeg' - members: 267 - name: Code. Coffee. Conquer. lat: 25.020000457763672 - who: 'Caffeinated Coders!' - - utc_offset: 7200000 - country: IL - visibility: public + - country: IL city: Tel Aviv-Yafo - timezone: Asia/Jerusalem - created: 1429148198000 link: 'http://www.meetup.com/ReactJS-Israel/' - rating: 4.67 + name: 'React & Redux Israel' description: '

Come and learn about the new disruptive technology from Facebook. Create Components and make your frontend blazing fast. We will focus on ReactJS and the supplemental infrastructure like Flux.

' lon: 34.77000045776367 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/7/d/4/2/highres_440492066.jpeg' - photo_id: 440492066 photo_link: 'http://photos2.meetupstatic.com/photos/event/7/d/4/2/600_440492066.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/7/d/4/2/thumb_440492066.jpeg' - join_mode: open - organizer: - member_id: 123919242 - name: 500Tech - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/e/0/a/8/highres_164337512.jpeg' - photo_id: 164337512 - photo_link: 'http://photos4.meetupstatic.com/photos/member/e/0/a/8/member_164337512.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/e/0/a/8/thumb_164337512.jpeg' - members: 562 - name: React JS Israel lat: 32.06999969482422 - who: Developers - - utc_offset: 10800000 - country: IL - visibility: public + - country: IL city: Herzeliyya - timezone: Asia/Jerusalem - created: 1429191980000 link: 'http://www.meetup.com/IsraeliAzureDevelopers/' - rating: 5 - description: >- -

The Israeli Azure Developer Community meets approximately once every - two months at the Microsoft offices at Ra'anana to discuss all things - related to Azure... Everything goes!

- -

Learn - More

- lon: 34.84000015258789 - join_mode: open - organizer: - member_id: 13700196 - name: Eran Stiller - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/6/6/5/3/highres_245426195.jpeg' - photo_id: 245426195 - photo_link: 'http://photos4.meetupstatic.com/photos/member/6/6/5/3/member_245426195.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/6/6/5/3/thumb_245426195.jpeg' - members: 336 name: Israeli Azure Developer Community + description: |- +

The Israeli Azure Developer Community meets approximately once every two months at the Microsoft offices at Ra'anana to discuss all things related to Azure... Everything goes!

+

Learn More

+ lon: 34.84000015258789 lat: 32.16999816894531 - who: Azure Developers - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Pune - timezone: Asia/Calcutta - created: 1429615424000 link: 'http://www.meetup.com/JavaScripters/' - rating: 4.62 + name: JavaScripters description: "

Let's get together for affordable activities on javascript knowledge sharing, training, discussions , job referrals network.

" lon: 73.83999633789062 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/2/7/8/7/highres_443710119.jpeg' - photo_id: 443710119 photo_link: 'http://photos4.meetupstatic.com/photos/event/2/7/8/7/600_443710119.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/2/7/8/7/thumb_443710119.jpeg' - join_mode: approval - organizer: - member_id: 186406048 - name: Imran Shaikh - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/5/f/6/d/highres_251004429.jpeg' - photo_id: 251004429 - photo_link: 'http://photos2.meetupstatic.com/photos/member/5/f/6/d/member_251004429.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/5/f/6/d/thumb_251004429.jpeg' - members: 263 - name: JavaScripters lat: 18.530000686645508 - who: JavaScripters - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Delhi - timezone: Asia/Calcutta - created: 1429791324000 link: 'http://www.meetup.com/ionic-meetup/' + name: Ionic Meetup description: 'A meetup for all the AngularJS lovers to share their experiences, skill-sets and application ideas.' lon: 77.20999908447266 - join_mode: open - organizer: - member_id: 94652942 - name: Dheeraj Kaushik - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/3/1/2/2/highres_245592578.jpeg' - photo_id: 245592578 - photo_link: 'http://photos3.meetupstatic.com/photos/member/3/1/2/2/member_245592578.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/3/1/2/2/thumb_245592578.jpeg' - members: 60 - name: Ionic Meetup lat: 28.670000076293945 - who: ions - - utc_offset: 10800000 - country: IL - visibility: public + - country: IL city: "Modi'in" - timezone: Asia/Jerusalem - created: 1432647444000 link: 'http://www.meetup.com/Modiin-Tech-Talks/' - rating: 4.93 - description: >- -

Modiin Tech Talks is a meeting place for people interested in all - areas for development. We give presentations, run Hackathons, and - discuss relevant topics.

- + name: Modiin Tech Talks + description: |- +

Modiin Tech Talks is a meeting place for people interested in all areas for development. We give presentations, run Hackathons, and discuss relevant topics.


- -

The group had a few meetings in 2014, but we started to use Meetup - only in May 2015.

- -

Our primary location for meetings is going to be at MESH in Modiin

+

The group had a few meetings in 2014, but we started to use Meetup only in May 2015.

+

Our primary location for meetings is going to be at MESH in Modiin

lon: 35.0099983215332 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/7/8/1/highres_438961921.jpeg' - photo_id: 438961921 photo_link: 'http://photos4.meetupstatic.com/photos/event/7/8/1/600_438961921.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/7/8/1/thumb_438961921.jpeg' - join_mode: open - organizer: - member_id: 10241201 - name: Gabor Szabo - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/9/b/5/c/highres_7599772.jpeg' - photo_id: 7599772 - photo_link: 'http://photos1.meetupstatic.com/photos/member/9/b/5/c/member_7599772.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/9/b/5/c/thumb_7599772.jpeg' - members: 356 - name: Modiin Tech Talks lat: 31.899999618530273 - who: Members - - utc_offset: 10800000 - country: RU - visibility: public + - country: RU city: St. Petersburg - timezone: Europe/Moscow - created: 1434979355000 link: 'http://www.meetup.com/meteorspb/' - description: >- -

Meteor - платформа для - создания так называемых real-time web apps – современных - веб-приложений. 

- -

Мы обсуждаем аспекты при работе с платформой, делимся опытом - и активно объединяемся в группу для проведения постоянных - встреч-обсуждений.

- + name: METEOR St. Petersburg + description: |- +

Meteor - платформа для создания так называемых real-time web apps – современных веб-приложений. 

+

Мы обсуждаем аспекты при работе с платформой, делимся опытом и активно объединяемся в группу для проведения постоянных встреч-обсуждений.

МитАпы проходят в центре Петербурга. Участие бесплатное.

- -

Наша группа Вконтакте - http://vk.com/meteormeetup

- -

Присоединяйтесь!

--- --- --- --- --- --- --- --- --- - --- 

- -

Meteor is an open-source - platform for building top-quality web apps in a fraction of the time, - whether you're an expert developer or just getting started.

- -

Meet other developers using Meteor. Share your knowledge, apps, and - get feedback from others.

MeetUps are held in Saint-Petersburg - and are Free of charge.

Don't hesitate to Join us! 

+

Наша группа Вконтакте - http://vk.com/meteormeetup

+

Присоединяйтесь!

--- --- --- --- --- --- --- --- --- --- 

+

Meteor is an open-source platform for building top-quality web apps in a fraction of the time, whether you're an expert developer or just getting started.

+

Meet other developers using Meteor. Share your knowledge, apps, and get feedback from others.

MeetUps are held in Saint-Petersburg and are Free of charge.

Don't hesitate to Join us! 

lon: 30.31999969482422 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/2/6/0/d/highres_439029741.jpeg' - photo_id: 439029741 photo_link: 'http://photos1.meetupstatic.com/photos/event/2/6/0/d/600_439029741.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/2/6/0/d/thumb_439029741.jpeg' - join_mode: open - organizer: - member_id: 188967128 - name: Sergey Sukhanov - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/6/9/a/highres_247261690.jpeg' - photo_id: 247261690 - photo_link: 'http://photos4.meetupstatic.com/photos/member/6/9/a/member_247261690.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/6/9/a/thumb_247261690.jpeg' - members: 50 - name: METEOR St. Petersburg lat: 59.93000030517578 - who: Meteorix - - utc_offset: 21600000 - country: RU - visibility: public + - country: RU city: Tomsk - timezone: Asia/Novosibirsk - created: 1435308477000 link: 'http://www.meetup.com/tomsk-front-end-meetup/' - rating: 5 - description: >- + name: Tomsk Front-end Development Meetup + description: |-

Группа для организации встреч томских front-end разработчиков.

-


- -

Приглашаем всех желающих развивать свои профессиональные - навыки.

- +

Приглашаем всех желающих развивать свои профессиональные навыки.


-

Планируется проведение:

-

• лекций,

-

• мастер-классов,

-

• воркшопов,

-

• прочих встреч всевозможных видов.

-

 

-

О новых мероприятиях будут рассылаться уведомления.

lon: 84.9800033569336 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/b/0/0/e/highres_445305070.jpeg' - photo_id: 445305070 photo_link: 'http://photos3.meetupstatic.com/photos/event/b/0/0/e/600_445305070.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/b/0/0/e/thumb_445305070.jpeg' - join_mode: open - organizer: - member_id: 188800192 - name: interfaced - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/2/b/4/f/highres_247151087.jpeg' - photo_id: 247151087 - photo_link: 'http://photos1.meetupstatic.com/photos/member/2/b/4/f/member_247151087.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/2/b/4/f/thumb_247151087.jpeg' - members: 85 - name: Tomsk Front-end Development Meetup lat: 56.47999954223633 - who: Members - - utc_offset: 19800000 - country: LK - visibility: public + - country: LK city: Colombo - timezone: Asia/Colombo - created: 1436413239000 link: 'http://www.meetup.com/React-js-Colombo/' + name: React.js Colombo description: "This is a group for anyone interested in React.js and it's ecosystem of things. But really, it's for anyone who wants to amp up their Web-Dev skills, or looking at react to improve their productivity in building web and mobile apps. If you don't know anything about react, this might help: http://facebook.github.io/react/ In a gist, it's \"a javascript library for building user interfaces\" - originally developed and maintained by Facebook, and 100% open-source. It allows you to build fast, maintainable user interfaces for all your web, and event native mobile apps. (See: react-native) There's a ton of things you can do with it, both in the client and the server, and really fun to use and learn." lon: 79.8499984741211 - join_mode: open - organizer: - member_id: 85156082 - name: Nadeesha Cabral - photo: - photo_id: 111630972 - photo_link: 'http://photos4.meetupstatic.com/photos/member/7/8/f/c/member_111630972.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/7/8/f/c/thumb_111630972.jpeg' - members: 215 - name: React.js Colombo lat: 6.929999828338623 - who: Members - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Chennai - timezone: Asia/Calcutta - created: 1438453347000 link: 'http://www.meetup.com/meetup-group-zZPQtwTs/' - rating: 5 + name: Chennai JavaScript Meetup description: "

yeah pretty straight forward guys it all about web development, front end, back end, full stack and more coffee's

" lon: 80.2699966430664 - join_mode: open - organizer: - member_id: 12065951 - name: Abhishek Yadav - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/1/a/d/highres_242160429.jpeg' - photo_id: 242160429 - photo_link: 'http://photos3.meetupstatic.com/photos/member/1/a/d/member_242160429.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/1/a/d/thumb_242160429.jpeg' - members: 427 - name: Chennai JavaScript Meetup lat: 13.09000015258789 - who: Members - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Hyderabad - timezone: Asia/Calcutta - created: 1438679290000 link: 'http://www.meetup.com/meetup-group-riqevIqL/' + name: Hyderabad Open Source Meetup description: '

We are specialized in User Interface Design / Development and we would like to share / interact with others in same technologies, so we all can gain more knowledge from each other. Technologies we cover are - HTML, CSS, PhotoShop, LESS, CoffeeScript, SASS, SCSS, MongoDB, PHP, SEO, Javascript frameworks like jQuery, Backbone, Angular, NodeJS and KnockOutJS

' lon: 78.4800033569336 - join_mode: open - organizer: - member_id: 136724252 - name: Pratap - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/5/6/4/4/highres_248542084.jpeg' - photo_id: 248542084 - photo_link: 'http://photos4.meetupstatic.com/photos/member/5/6/4/4/member_248542084.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/5/6/4/4/thumb_248542084.jpeg' - members: 173 - name: Hyderabad Open Source Meetup lat: 17.399999618530273 - who: Members - - utc_offset: 10800000 - country: RU - visibility: public + - country: RU city: Moscow - timezone: Europe/Moscow - created: 1438854990000 link: 'http://www.meetup.com/BeerJS-Moscow/' - rating: 5 + name: BeerJS Moscow description: '

JavaScript holy wars over craft beer. Random discussions, sharing experience, etc.

GitHub repo: https://github.com/beerjs/moscow
Gitter room: https://gitter.im/beerjs/moscow

' lon: 37.619998931884766 - join_mode: open - organizer: - member_id: 180258872 - name: lolmaus (Andrey Mikhaylov) - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/6/5/c/f/highres_248606063.jpeg' - photo_id: 248606063 - photo_link: 'http://photos3.meetupstatic.com/photos/member/6/5/c/f/member_248606063.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/6/5/c/f/thumb_248606063.jpeg' - members: 129 - name: BeerJS Moscow lat: 55.75 - who: Members - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Ludhiana - timezone: Asia/Calcutta - created: 1439322666000 link: 'http://www.meetup.com/ludhianajs/' + name: ludhianajs description: 'ludhianajs is a meetup group to discuss, share and learn about all things javascript. Share your JS work, a new framework, a test suite, an sdk. Whatever that is built with javascript.' lon: 75.83999633789062 - join_mode: approval - organizer: - member_id: 12742065 - name: indermohansingh - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/7/a/8/f/highres_248731375.jpeg' - photo_id: 248731375 - photo_link: 'http://photos4.meetupstatic.com/photos/member/7/a/8/f/member_248731375.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/7/a/8/f/thumb_248731375.jpeg' - members: 6 - name: ludhianajs lat: 30.90999984741211 - who: developers - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Chennai - timezone: Asia/Calcutta - created: 1439566835000 link: 'http://www.meetup.com/hackerbots/' + name: HackerBOTs description: "

HackerBOT is a BOT VFX sponsored group that loves to play at the intersection of web and mobile development tech (jQuery, jQuery Mobile, HTML5, CSS, Django),  design philosophy and a handful of other technologies such as python, WebGL and OpenGL.  We enjoy many topics but more importantly we like to connect with interesting people.  Joinees should have at least reasonable experience in web dev and be enthu.  We'll have occasional get-togethers at BOT VFX to explore various topics.  

" lon: 80.2699966430664 - join_mode: open - organizer: - member_id: 191312125 - name: Hitesh Shah - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/c/9/6/c/highres_248811564.jpeg' - photo_id: 248811564 - photo_link: 'http://photos2.meetupstatic.com/photos/member/c/9/6/c/member_248811564.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/c/9/6/c/thumb_248811564.jpeg' - members: 50 - name: HackerBOTs lat: 13.09000015258789 - who: Hackster - - utc_offset: 28800000 - country: CN - visibility: public + - country: CN city: Beijing - timezone: Asia/Shanghai - created: 1439801839000 link: 'http://www.meetup.com/Frontend-Meetup-Beijing/' - rating: 4.38 + name: Frontend Meetup Beijing description: |- We want to talk about all kinds of Frontend topics. From CSS to Sass, from JavaScript to Nodejs, from Ionic to Cordova and everything related and in between. lon: 116.4000015258789 - join_mode: open - organizer: - member_id: 115150242 - name: hannes - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/4/1/b/6/highres_151936822.jpeg' - photo_id: 151936822 - photo_link: 'http://photos2.meetupstatic.com/photos/member/4/1/b/6/member_151936822.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/4/1/b/6/thumb_151936822.jpeg' - members: 181 - name: Frontend Meetup Beijing lat: 39.93000030517578 - who: Members - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Bangalore - timezone: Asia/Calcutta - created: 1441286961000 link: 'http://www.meetup.com/Bangalore-Full-Stack-Programmers/' - rating: 5 + name: Bangalore Full Stack Programmers description: '

This is a group for anyone interested in becoming a great full stack programmer. It is about programming at scale, about engineering discipline and productivity in development. About newer models of programming, languages, rapidly changing tech and the complete digital space.

' lon: 77.55999755859375 - join_mode: open - organizer: - member_id: 192203088 - name: Satish Sukumar - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/5/5/d/8/highres_249381976.jpeg' - photo_id: 249381976 - photo_link: 'http://photos1.meetupstatic.com/photos/member/5/5/d/8/member_249381976.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/5/5/d/8/thumb_249381976.jpeg' - members: 502 - name: Bangalore Full Stack Programmers lat: 12.970000267028809 - who: FullStackers - - utc_offset: 28800000 - country: CN - visibility: public + - country: CN city: Beijing - timezone: Asia/Shanghai - created: 1442326498000 link: 'http://www.meetup.com/Beijing-ReactJS-Meetup/' - rating: 4.5 + name: Beijing ReactJS Meetup description: '

Small group of people(5-10), sitting down to share anything about ReactJS. ReactJS兴趣小组分享会。

' lon: 116.4000015258789 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/7/9/a/c/highres_442111148.jpeg' - photo_id: 442111148 photo_link: 'http://photos4.meetupstatic.com/photos/event/7/9/a/c/600_442111148.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/7/9/a/c/thumb_442111148.jpeg' - join_mode: open - organizer: - member_id: 192762451 - name: Hu Songtao - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/6/a/3/6/highres_249747190.jpeg' - photo_id: 249747190 - photo_link: 'http://photos1.meetupstatic.com/photos/member/6/a/3/6/member_249747190.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/6/a/3/6/thumb_249747190.jpeg' - members: 86 - name: Beijing ReactJS Meetup lat: 39.93000030517578 - who: Reactor - - utc_offset: 28800000 - country: CN - visibility: public + - country: CN city: Shanghai - timezone: Asia/Shanghai - created: 1442385726000 link: 'http://www.meetup.com/Bluemix-Girls-Night-Meetups/' - description: >- -

IBM Bluemix Girl's Night is a great opportunity to mix and mingle - with smart women who understand technology. Join us for a one-of-a-kind - event that brings together women developers in traditional IT and - startup businesses.

- -

NOTE:  We encourage all genders to participate, if there are - men who are interested in IBM Bluemix also.

- -

You'll have the chance to network like-minded people, gain career - development and learn more about IBM PaaS Platform – Bluemix. Even you - can start to build an APP of your own within a few minutes!

- + name: "IBM Bluemix Girls' Night Meetups" + description: |- +

IBM Bluemix Girl's Night is a great opportunity to mix and mingle with smart women who understand technology. Join us for a one-of-a-kind event that brings together women developers in traditional IT and startup businesses.

+

NOTE:  We encourage all genders to participate, if there are men who are interested in IBM Bluemix also.

+

You'll have the chance to network like-minded people, gain career development and learn more about IBM PaaS Platform – Bluemix. Even you can start to build an APP of your own within a few minutes!

上海Bluemix研发团队的资深架构师 分享 Bluemix云平台 的绝佳机会, 来吧!!

-


-


lon: 121.47000122070312 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/2/4/c/highres_443040588.jpeg' - photo_id: 443040588 photo_link: 'http://photos4.meetupstatic.com/photos/event/2/4/c/600_443040588.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/2/4/c/thumb_443040588.jpeg' - join_mode: open - organizer: - member_id: 184878727 - name: Joanna Cai - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/6/e/8/a/highres_249748298.jpeg' - photo_id: 249748298 - photo_link: 'http://photos1.meetupstatic.com/photos/member/6/e/8/a/member_249748298.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/6/e/8/a/thumb_249748298.jpeg' - members: 53 - name: "IBM Bluemix Girls' Night Meetups" lat: 31.229999542236328 - who: Bluemix Lovers - - utc_offset: 28800000 - country: PH - visibility: public + - country: PH city: Manila - timezone: Asia/Manila - created: 1444320094000 link: 'http://www.meetup.com/ManilaJavaScript/' - rating: 4.81 - description: >- -

Welcome to Manila JavaScript! Join us to share ideas, discuss - trends, and assess the future of the most exciting programming - language. Upcoming topics include introductory seminars, workshops, and - demo days for Node.js, Meteor.js, React.js/React Native, Angular.js, - D3.js, Client-Side Frameworks, ES6, etc.

- -

Join our Facebook group at: https://www.facebook.com/groups/manilajs/

- lon: 120.97000122070312 - join_mode: open - organizer: - member_id: 141289362 - name: Zak Burki - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/8/e/d/2/highres_189696562.jpeg' - photo_id: 189696562 - photo_link: 'http://photos1.meetupstatic.com/photos/member/8/e/d/2/member_189696562.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/8/e/d/2/thumb_189696562.jpeg' - members: 576 name: Manila JavaScript + description: |- +

Welcome to Manila JavaScript! Join us to share ideas, discuss trends, and assess the future of the most exciting programming language. Upcoming topics include introductory seminars, workshops, and demo days for Node.js, Meteor.js, React.js/React Native, Angular.js, D3.js, Client-Side Frameworks, ES6, etc.

+

Join our Facebook group at: https://www.facebook.com/groups/manilajs/

+ lon: 120.97000122070312 lat: 14.619999885559082 - who: JS Developers - - utc_offset: 10800000 - country: RU - visibility: public + - country: RU city: Moscow - timezone: Europe/Moscow - created: 1444843089000 link: 'http://www.meetup.com/Moscow-NodeJS-Meetup/' - rating: 4.89 + name: Moscow NodeJS Meetup description: 'We will meet time to time to discuss news, problems and share experience in NodeJS. Frontenders/backenders, russian speaking/english speaking are all welcome. Preferably it will be some quiet lounge place, where there is no need to shout loud. If you want more trash, consider going to BeerJS.' lon: 37.619998931884766 - join_mode: open - organizer: - member_id: 156678742 - name: Vladimir Makhaev - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/a/0/3/7/highres_250541015.jpeg' - photo_id: 250541015 - photo_link: 'http://photos4.meetupstatic.com/photos/member/a/0/3/7/member_250541015.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/a/0/3/7/thumb_250541015.jpeg' - members: 159 - name: Moscow NodeJS Meetup lat: 55.75 - who: NodeJS Lovers - - utc_offset: 32400000 - country: KR - visibility: public + - country: KR city: Seoul - timezone: Asia/Seoul - created: 1445474497000 link: 'http://www.meetup.com/electron-kr/' - rating: 5 - description: >- -

Github 의 오픈소스인 Electron 을 사용한 소프트웨어 개발에 관심있는 개발자를 위한 미트업입니다. 저희는 Slack 을 이용해서 커뮤니케이션 하고 있스며 - 페이스북에도 - 그룹이 있습니다. 저희 채널에 가입을 원하시면 자동 초대 페이지 를 통해서 - 들어오시면 됩니다. 

- + name: Electron Korea + description: |- +

Github 의 오픈소스인 Electron 을 사용한 소프트웨어 개발에 관심있는 개발자를 위한 미트업입니다. 저희는 Slack 을 이용해서 커뮤니케이션 하고 있스며 페이스북에도 그룹이 있습니다. 저희 채널에 가입을 원하시면 자동 초대 페이지 를 통해서 들어오시면 됩니다. 


lon: 126.98999786376953 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/a/7/6/b/highres_443622859.jpeg' - photo_id: 443622859 photo_link: 'http://photos3.meetupstatic.com/photos/event/a/7/6/b/600_443622859.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/a/7/6/b/thumb_443622859.jpeg' - join_mode: open - organizer: - member_id: 92710752 - name: Jimmy Moon - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/d/1/5/b/highres_245873595.jpeg' - photo_id: 245873595 - photo_link: 'http://photos2.meetupstatic.com/photos/member/d/1/5/b/member_245873595.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/d/1/5/b/thumb_245873595.jpeg' - members: 113 - name: Electron Korea lat: 37.560001373291016 - who: Members - - utc_offset: 25200000 - country: ID - visibility: public + - country: ID city: Denpasar - timezone: Asia/Jakarta - created: 1447573559000 link: 'http://www.meetup.com/Mean-Stack-Bali-Meetup/' - rating: 4.5 + name: Mean Stack Bali Meetup description: This is a group for front-end and back-end web application developers and database administrators. Bali is a very conducive place to conduct workshops by the beach or rice fields. our aim is to develop our knowledge through pier-to-pier exchange. we plan to invite guest-stars at the initiative of breakthrough developments. lon: 115.22000122070312 - join_mode: open - organizer: - member_id: 176509102 - name: djchrisblue - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/d/1/0/f/highres_242213519.jpeg' - photo_id: 242213519 - photo_link: 'http://photos4.meetupstatic.com/photos/member/d/1/0/f/member_242213519.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/d/1/0/f/thumb_242213519.jpeg' - members: 36 - name: Mean Stack Bali Meetup lat: -8.649999618530273 - who: Webninjas - - utc_offset: 28800000 - country: HK - visibility: public + - country: HK city: Hong Kong - timezone: Asia/Shanghai - created: 1447581409000 link: 'http://www.meetup.com/Hong-Kong-ReactJS-Meetup/' + name: Hong Kong ReactJS Meetup description: This is a group for anyone interested in React.js. All skills levels are welcome. I started this group because to meet other React enthusiasts. Looking forward to exploring React.js with everybody lon: 114.13999938964844 - join_mode: open - organizer: - member_id: 139561272 - name: Eric Leung - photo: - photo_id: 188105352 - photo_link: 'http://photos1.meetupstatic.com/photos/member/1/4/e/8/member_188105352.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/1/4/e/8/thumb_188105352.jpeg' - members: 35 - name: Hong Kong ReactJS Meetup lat: 22.270000457763672 - who: Reactors - - utc_offset: 10800000 - country: IL - visibility: public + - country: IL city: Jerusalem - timezone: Asia/Jerusalem - created: 1448299496000 link: 'http://www.meetup.com/Jerusalem-Node-js-Meetup/' + name: Jerusalem Node.js Meetup description: 'Do you want to learn about node.js? Or do you already use node.js and like to discuss it; teach it? Come join our meetup group. Node.js is event-driven JavaScript on the server: perfect for real-time web application, for IoT (Internet of things) and for any program that needs to communicate with many other programs.' lon: 35.220001220703125 - join_mode: open - organizer: - member_id: 155674512 - name: Yaakov Belch - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/9/1/0/2/highres_250837122.jpeg' - photo_id: 250837122 - photo_link: 'http://photos4.meetupstatic.com/photos/member/9/1/0/2/member_250837122.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/9/1/0/2/thumb_250837122.jpeg' - members: 117 - name: Jerusalem Node.js Meetup lat: 31.780000686645508 - who: programmers - - utc_offset: 28800000 - country: CN - visibility: public - city: Shanghai - timezone: Asia/Shanghai - created: 1414466688000 - link: 'http://www.meetup.com/Shanghai-JSer-Reunion/' - rating: 3 - description: '

Either you have any interesting JS trick to share, or you want to have your tech stack updated, SIGN UP NOW! We are going to provide foods and drinks for free from 6:00pm. The Session would be officially launched from 6:30pm. After session, we will also enjoy music/game together.

' - lon: 121.47000122070312 - group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/c/8/3/4/highres_427011252.jpeg' - photo_id: 427011252 - photo_link: 'http://photos2.meetupstatic.com/photos/event/c/8/3/4/600_427011252.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/c/8/3/4/thumb_427011252.jpeg' - join_mode: open - organizer: - member_id: 65401862 - name: Jay Wang - photo: - photo_id: 76436412 - photo_link: 'http://photos2.meetupstatic.com/photos/member/d/c/5/c/member_76436412.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/d/c/5/c/thumb_76436412.jpeg' - members: 75 - name: Shanghai JSer Reunion - lat: 31.229999542236328 - who: JSer - - utc_offset: 10800000 - country: IL - visibility: public - city: Tel Aviv-Yafo - timezone: Asia/Jerusalem - created: 1429148198000 - link: 'http://www.meetup.com/ReactJS-Israel/' - rating: 4.67 - description: '

Come and learn about the new disruptive technology from Facebook. Create Components and make your frontend blazing fast. We will focus on ReactJS and the supplemental infrastructure like Flux.

' - lon: 34.77000045776367 - group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/7/d/4/2/highres_440492066.jpeg' - photo_id: 440492066 - photo_link: 'http://photos2.meetupstatic.com/photos/event/7/d/4/2/600_440492066.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/7/d/4/2/thumb_440492066.jpeg' - join_mode: open - organizer: - member_id: 123919242 - name: 500Tech - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/e/0/a/8/highres_164337512.jpeg' - photo_id: 164337512 - photo_link: 'http://photos4.meetupstatic.com/photos/member/e/0/a/8/member_164337512.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/e/0/a/8/thumb_164337512.jpeg' - members: 1293 - name: 'React & Redux Israel' - lat: 32.06999969482422 - who: Developers - - utc_offset: 28800000 - country: CN - visibility: public + - country: CN city: Shanghai - timezone: Asia/Shanghai - created: 1449138766000 link: 'http://www.meetup.com/Shanghai-Digital-Hub/' - description: >- -

Shanghai Digital Hub is a Shanghai extension of Hong Kong's super - popular digital meetup - http://www.meetup.com/HK-Web-Developers/

- -

If your passion is to learn, live, breathe experience modern web and - non-web technology - let's change the shape of it in Shanghai and take - on the rest of the world!

- -

Each month, we get together over some small bites and drinks and - talk about up-and coming trends and technologies. Some topics of - interest are:

- -

Scripting Trends:
- Angular.js
- React.js
- - Coffeescript

- -

CSS3 Animations and Filters / Shaders
- SASS
- WebGL - including Three.js
- Tools and Approaches

- -

Working with Yeoman (Yo, Grunt and Bower)
- BDD with Jasmine -
- TDD with Mocha
- Getting the most of Require.js
- NOSQL - Technologies including:

- + name: Shanghai Digital Hub + description: |- +

Shanghai Digital Hub is a Shanghai extension of Hong Kong's super popular digital meetup - http://www.meetup.com/HK-Web-Developers/

+

If your passion is to learn, live, breathe experience modern web and non-web technology - let's change the shape of it in Shanghai and take on the rest of the world!

+

Each month, we get together over some small bites and drinks and talk about up-and coming trends and technologies. Some topics of interest are:

+

Scripting Trends:
- Angular.js
- React.js
- Coffeescript

+

CSS3 Animations and Filters / Shaders
- SASS
- WebGL including Three.js
- Tools and Approaches

+

Working with Yeoman (Yo, Grunt and Bower)
- BDD with Jasmine
- TDD with Mocha
- Getting the most of Require.js
- NOSQL Technologies including:

- Mongo
- Redis
- CouchDB
- The Freshest HTML5

- -

- Playing with Polymer
- Web Sockets
- Web Workers
- - Pushing boundaries of the web:

- -

- Chrome NACL
- Chrome Packaged Apps
- Chromium and Native - Web Extensions

- -

We're always on the lookout for fellow geeks who are passionate - about new tech and who'd love to share their knowledge with fellow - developers.

+

- Playing with Polymer
- Web Sockets
- Web Workers
- Pushing boundaries of the web:

+

- Chrome NACL
- Chrome Packaged Apps
- Chromium and Native Web Extensions

+

We're always on the lookout for fellow geeks who are passionate about new tech and who'd love to share their knowledge with fellow developers.

lon: 121.47000122070312 - join_mode: open - organizer: - member_id: 13501553 - name: Neil Nand - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/6/a/2/a/highres_251847178.jpeg' - photo_id: 251847178 - photo_link: 'http://photos3.meetupstatic.com/photos/member/6/a/2/a/member_251847178.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/6/a/2/a/thumb_251847178.jpeg' - members: 57 - name: Shanghai Digital Hub lat: 31.229999542236328 - who: Geeks - - utc_offset: 20700000 - country: NP - visibility: public - city: Butwal - timezone: Asia/Katmandu - created: 1380644894000 - link: 'http://www.meetup.com/Butwal-MongoDB-User-Group/' - rating: 4.75 - description: '

Welcome to the MongoDB User Group in Butwal. We get together once a month to learn more about MongoDB, network and gain expertise in technologies. We look forward to having you join us!

' - lon: 83.44999694824219 - group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/7/2/8/highres_289741832.jpeg' - photo_id: 289741832 - photo_link: 'http://photos2.meetupstatic.com/photos/event/7/2/8/600_289741832.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/7/2/8/thumb_289741832.jpeg' - join_mode: open - organizer: - member_id: 47839632 - name: MongoDB - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/highres_243915101.jpeg' - photo_id: 243915101 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/a/f/d/member_243915101.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/thumb_243915101.jpeg' - members: 47 - name: Butwal MongoDB User Group - lat: 27.709999084472656 - who: MongoDB Fans - - utc_offset: 28800000 - country: HK - visibility: public - city: Hong Kong - timezone: Asia/Shanghai - created: 1396073443000 - link: 'http://www.meetup.com/HKMDBUG/' - rating: 4 - lon: 114.13999938964844 - join_mode: open - organizer: - member_id: 139561272 - name: Eric Leung - photo: - photo_id: 188105352 - photo_link: 'http://photos1.meetupstatic.com/photos/member/1/4/e/8/member_188105352.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/1/4/e/8/thumb_188105352.jpeg' - members: 86 - name: Hong Kong MongoDB User Group - lat: 22.270000457763672 - who: Mongos - - utc_offset: 28800000 - country: TW - visibility: public - city: Taipei - timezone: Asia/Taipei - created: 1403076120000 - link: 'http://www.meetup.com/tech-design/' - rating: 4.83 - description: >- -

Startup Code Camp  is  free -  startup and code education with prototyping - solution and investment network. - No matter you are interested in learning code -  startup, or if you are engineer, designer , investors interested - in partner with us. Feel free to join our

- -

免費學習軟體開發與新創,提供快速開發服務與投資合作。無論你是想學習程式或新創,或是工程師,設計師,投資人希望參與專案合作,都會有一起參與我們的startu - Code Camp。

- -


- -

Startup Code Camp Event Schedule 活動內容:

- -

1. One- minute Pitch Time (30 min):

- -

• Intro about you, idea or business 

- -

• Your current problem or what you need 

- -


- -

2. Trending Topic of the week (optional 30 min)

- -

3. Free Network or Code Discussion Time

- -


- -

Location 地點 :

- -

Taipei Bridge Mrt 3F Innosquare , Bar area

- -

台北橋捷運站 3F,新北創立坊,吧檯區

- -


- -


Code & Startup Learning Material :

- -

https://hackpad.com/Startup-Code-Camp-Workshop-51fDlZLdbyo 

- -

Code Beginner please start with Codecademy angular Part - 1: 

- -

https://www.codecademy.com/learn/learn-angularjs

- -
- -
- -


- lon: 121.44999694824219 - group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/5/6/6/a/highres_444322122.jpeg' - photo_id: 444322122 - photo_link: 'http://photos2.meetupstatic.com/photos/event/5/6/6/a/600_444322122.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/5/6/6/a/thumb_444322122.jpeg' - join_mode: open - organizer: - member_id: 135859812 - name: Richard Lin - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/2/a/6/b/highres_248170859.jpeg' - photo_id: 248170859 - photo_link: 'http://photos1.meetupstatic.com/photos/member/2/a/6/b/member_248170859.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/2/a/6/b/thumb_248170859.jpeg' - members: 1298 - name: 'Startup Code Camp - connects Idea, Technology and Investor' - lat: 25.020000457763672 - who: Innovators - - utc_offset: 10800000 - country: IL - visibility: public + - country: IL city: Tel Aviv-Yafo - timezone: Asia/Jerusalem - created: 1450359012000 link: 'http://www.meetup.com/Analytics-at-Scale/' + name: Analytics at Scale description: 'This meetup objective is to learn about the technologies in the / needed for analytics, collection of data, analyze the data, algorithms in big data scale, monitoring and production (dev-ops) and presenting the data: Hadoop, Spark, MLlib, Hadoop with R, node.js, tableau. Including use cases, new features, case studies and best practices for deployment and tuning production environment.' lon: 34.77000045776367 - join_mode: approval - organizer: - member_id: 23457021 - name: Nir Cohen - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/e/1/7/5/highres_252177717.jpeg' - photo_id: 252177717 - photo_link: 'http://photos1.meetupstatic.com/photos/member/e/1/7/5/member_252177717.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/e/1/7/5/thumb_252177717.jpeg' - members: 302 - name: Analytics at Scale lat: 32.06999969482422 - who: Members - - utc_offset: 28800000 - country: CN - visibility: public + - country: CN city: Shanghai - timezone: Asia/Shanghai - created: 1450763546000 link: 'http://www.meetup.com/N8-Coders/' + name: N8 Coders description: 'A group with members are passionate about new technologies. We are dedicated to sharing knowledge to exploring crazy-sounding ideas, new projects. There will be camps, sessions, talks, workshops from the NB coders in Shanghai. Join us if you are not afraid of challenges and changes. We covers enterprise software development including frameworks, languages, methodology and experiences such as react, react native, node, go and others.' lon: 121.47000122070312 - join_mode: open - organizer: - member_id: 83072082 - name: Yann - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/d/5/0/4/highres_113574532.jpeg' - photo_id: 113574532 - photo_link: 'http://photos2.meetupstatic.com/photos/member/d/5/0/4/member_113574532.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/d/5/0/4/thumb_113574532.jpeg' - members: 64 - name: N8 Coders lat: 31.229999542236328 - who: N8ers - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Bangalore - timezone: Asia/Calcutta - created: 1451285924000 link: 'http://www.meetup.com/JavaScript-Meetup-Bangalore/' - rating: 5 + name: JavaScript Meetup - Bangalore description: 'Programming is fun! JavaScript is a popular and widely used language that we love to program in. This meetup is for passionate developers for learning and sharing tips & tricks and hacks & best practices in JavaScript. Our special focus is on new and upcoming topics in JavaScript (e.g., how to use ECMAScript 6 features). Come, let us learn and explore the amazing world of JavaScript.' lon: 77.55999755859375 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/8/a/a/7/highres_445475495.jpeg' - photo_id: 445475495 photo_link: 'http://photos4.meetupstatic.com/photos/event/8/a/a/7/600_445475495.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/8/a/a/7/thumb_445475495.jpeg' - join_mode: open - organizer: - member_id: 119140392 - name: Ganesh Samarthyam - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/7/9/b/1/highres_243871153.jpeg' - photo_id: 243871153 - photo_link: 'http://photos3.meetupstatic.com/photos/member/7/9/b/1/member_243871153.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/7/9/b/1/thumb_243871153.jpeg' - members: 441 - name: JavaScript Meetup - Bangalore lat: 12.970000267028809 - who: JS Hackers - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Hyderabad - timezone: Asia/Calcutta - created: 1451495805000 link: 'http://www.meetup.com/Hyderabad-nodeJS-hands-on-Boot-camp/' - description: > - This is a group for anyone interested in learning node.js development. - The meetups will be organized in a hands-on boot camp style. We will - learn node.js by building real applications during the meetup. - - - - This meetup is ideal for any one looking to learn node.js development. - Experienced node.js devs are welcome to attend as well and help the - boot camp participants. - + name: Hyderabad nodeJS hands-on Boot camp + description: | + This is a group for anyone interested in learning node.js development. The meetups will be organized in a hands-on boot camp style. We will learn node.js by building real applications during the meetup. + This meetup is ideal for any one looking to learn node.js development. Experienced node.js devs are welcome to attend as well and help the boot camp participants. - Bring your own laptop to the meetup so you can get started coding - node.js applications + Bring your own laptop to the meetup so you can get started coding node.js applications lon: 78.4800033569336 - join_mode: open - organizer: - member_id: 181163252 - name: Jagan - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/4/1/e/0/highres_252436864.jpeg' - photo_id: 252436864 - photo_link: 'http://photos2.meetupstatic.com/photos/member/4/1/e/0/member_252436864.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/4/1/e/0/thumb_252436864.jpeg' - members: 231 - name: Hyderabad nodeJS hands-on Boot camp lat: 17.399999618530273 - who: Members - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Noida - timezone: Asia/Calcutta - created: 1451830334000 link: 'http://www.meetup.com/Noida-Technology-Startups-Meetup/' - rating: 5 + name: Noida Technology Startups Meetup description: '

This is a group for anyone interested in web technologies and their applications in Start-up. All skills levels are welcome. I started this group to meet other like-minded enthusiasts. Looking forward to meet &amp; learn together.

' lon: 77.33000183105469 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/a/c/1/0/highres_446804048.jpeg' - photo_id: 446804048 photo_link: 'http://photos1.meetupstatic.com/photos/event/a/c/1/0/600_446804048.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/a/c/1/0/thumb_446804048.jpeg' - join_mode: open - organizer: - member_id: 100865612 - name: Ankit - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/c/f/4/4/highres_252533060.jpeg' - photo_id: 252533060 - photo_link: 'http://photos3.meetupstatic.com/photos/member/c/f/4/4/member_252533060.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/c/f/4/4/thumb_252533060.jpeg' - members: 285 - name: Noida Technology Startups Meetup lat: 28.579999923706055 - who: Ninjas - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Ahmedabad - timezone: Asia/Calcutta - created: 1451973976000 link: 'http://www.meetup.com/Soluble-Saturdays/' + name: Soluble Saturdays description: 'Soluble Saturdays is an initiative by http://www.solutelabs.com to bring about an awareness in open source, knowledge sharing, new tech and ideas, startups and more!' lon: 72.58000183105469 - join_mode: open - organizer: - member_id: 197657563 - name: Karan - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/d/9/6/8/highres_252595656.jpeg' - photo_id: 252595656 - photo_link: 'http://photos4.meetupstatic.com/photos/member/d/9/6/8/member_252595656.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/d/9/6/8/thumb_252595656.jpeg' - members: 50 - name: Soluble Saturdays lat: 23.030000686645508 - who: Knowledge Mongers - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Noida - timezone: Asia/Calcutta - created: 1452099481000 link: 'http://www.meetup.com/NCR-Just-JS/' + name: NCR- Just JS description: This is a group for JS lovers. The primarily focus should be on knowledge sharing and sharing ideas to build a large product. Technology should be mainly concentrate on JS. lon: 77.33000183105469 - join_mode: open - organizer: - member_id: 170929912 - name: Deepak Vishwakarma - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/8/0/7/f/highres_249872895.jpeg' - photo_id: 249872895 - photo_link: 'http://photos3.meetupstatic.com/photos/member/8/0/7/f/member_249872895.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/8/0/7/f/thumb_249872895.jpeg' - members: 49 - name: NCR- Just JS lat: 28.579999923706055 - who: minions - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Bangalore - timezone: Asia/Calcutta - created: 1452157700000 link: 'http://www.meetup.com/Bangalore-Wakanda/' - description: >- -

This meetup is dedicated to promoting Wakanda Open Source - JavaScript FullStack platform (https://wakanda.github.io/). We will launch - a monthly online JS development challenge. The best application - developed with Wakanda Platform will receive at least $1,000 USD prize - and will be showcased on Wakanda websites.

- -

This group is also for anyone interested in learning how to build - mobile applications in 3 weeks using Javascript for both frontend and - backend sides.

+ name: Bangalore Wakanda Open Source JS Fullstack + description: |- +

This meetup is dedicated to promoting Wakanda Open Source JavaScript FullStack platform (https://wakanda.github.io/). We will launch a monthly online JS development challenge. The best application developed with Wakanda Platform will receive at least $1,000 USD prize and will be showcased on Wakanda websites.

+

This group is also for anyone interested in learning how to build mobile applications in 3 weeks using Javascript for both frontend and backend sides.

lon: 77.55999755859375 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/c/9/c/0/highres_447711648.jpeg' - photo_id: 447711648 photo_link: 'http://photos3.meetupstatic.com/photos/event/c/9/c/0/600_447711648.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/c/9/c/0/thumb_447711648.jpeg' - join_mode: open - organizer: - member_id: 197753895 - name: Roger Essoh - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/1/1/e/0/highres_252664576.jpeg' - photo_id: 252664576 - photo_link: 'http://photos2.meetupstatic.com/photos/member/1/1/e/0/member_252664576.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/1/1/e/0/thumb_252664576.jpeg' - members: 84 - name: Bangalore Wakanda Open Source JS Fullstack lat: 12.970000267028809 - who: members - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Bangalore - timezone: Asia/Calcutta - created: 1452331300000 link: 'http://www.meetup.com/Rapid-Mobile-Dev-MEAN-Stack-ionic-cordova-more/' - rating: 3 + name: 'Rapid Mobile Dev - MEAN Stack, ionic, cordova & more' description: 'This is a group for anyone interested in rapid mobile development using cutting edge technologies like MEAN stack, ionic, Cordova and many more.' lon: 77.55999755859375 - join_mode: open - organizer: - member_id: 197802179 - name: Ashok Krishnamoorthy - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/9/b/5/0/highres_252699760.jpeg' - photo_id: 252699760 - photo_link: 'http://photos4.meetupstatic.com/photos/member/9/b/5/0/member_252699760.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/9/b/5/0/thumb_252699760.jpeg' - members: 131 - name: 'Rapid Mobile Dev - MEAN Stack, ionic, cordova & more' lat: 12.970000267028809 - who: Mobile Development Experts - - utc_offset: 10800000 - country: LB - visibility: public + - country: LB city: Beirut - timezone: Asia/Beirut - created: 1452503570000 link: 'http://www.meetup.com/Meteor-Beirut/' + name: Meteor Beirut description: "Meet other developers using Meteor. Share your knowledge, apps, and get feedback from others. Meteor is an open-source platform for building top-quality web apps in a fraction of the time, whether you're an expert developer or just getting started." lon: 35.5 - join_mode: open - organizer: - member_id: 197941702 - name: Hani M. - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/4/0/4/a/highres_252796458.jpeg' - photo_id: 252796458 - photo_link: 'http://photos1.meetupstatic.com/photos/member/4/0/4/a/member_252796458.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/4/0/4/a/thumb_252796458.jpeg' - members: 15 - name: Meteor Beirut lat: 33.880001068115234 - who: Meteorites - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Chennai - timezone: Asia/Calcutta - created: 1452889422000 link: 'http://www.meetup.com/nodejs-Chennai/' + name: Chennai Node.js description: |-

This meetup group is for Node School and Node.js events.

We would discuss about the following

@@ -5807,25007 +1492,8275 @@ regions:

discussions may not be just limited to just these topics :)

lon: 80.2699966430664 - join_mode: open - organizer: - member_id: 161979742 - name: Sakthipriyan - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/3/8/a/e/highres_245054510.jpeg' - photo_id: 245054510 - photo_link: 'http://photos3.meetupstatic.com/photos/member/3/8/a/e/member_245054510.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/3/8/a/e/thumb_245054510.jpeg' - members: 82 - name: Chennai Node.js lat: 13.09000015258789 - who: Chennai Noders - - utc_offset: 19800000 - country: IN - visibility: public_limited + - country: IN city: Bangalore - timezone: Asia/Calcutta - created: 1453184963000 link: 'http://www.meetup.com/tech4all/' + name: Technology for Everybody description: '

“This is a group for anyone interested in programming, IOT, robotics, hacking, mobility, etc. All skills levels are welcome. I started this group primarily to meet and impart knowledge to other technology enthusiasts. Looking forward to exploring the tech with everybody.”

' lon: 77.55999755859375 - join_mode: open - organizer: - member_id: 186311415 - name: Shubhradeep nandi - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/4/3/b/8/highres_247097336.jpeg' - photo_id: 247097336 - photo_link: 'http://photos4.meetupstatic.com/photos/member/4/3/b/8/member_247097336.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/4/3/b/8/thumb_247097336.jpeg' - members: 436 - name: Technology for Everybody lat: 12.970000267028809 - who: creators - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Panaji - timezone: Asia/Calcutta - created: 1453288081000 link: 'http://www.meetup.com/goaCode/' - rating: 4.5 - description: >- -

This is the perfect group for people serious about learning how to - code through self-study using resources on the web. 

- -

This is a Javascript focused group and we will be learning how to - build full stack web applications. We will progress through the - following technologies: 

- + name: Goa Code + description: |- +

This is the perfect group for people serious about learning how to code through self-study using resources on the web. 

+

This is a Javascript focused group and we will be learning how to build full stack web applications. We will progress through the following technologies: 

• HTML5 

-

• CSS3 

-

• JavaScript 

-

• Databases 

-

• Git &amp; GitHub 

-

• Node.js 

-

• React.js D3.js 

- -

For the complete curriculum please have a look [here]( http://www.freecodecamp.com/map). 

- -

The group is great for complete beginners. We will be learning - by pair programming with someone of a similar experience - level. 

- -

We do not provide formal instruction as you'd find in - a classroom -- rather we introduce you to other beginners who are on - the same path and give you the chance to work together with them on the - projects laid out in our curriculum. 

+

For the complete curriculum please have a look [here]( http://www.freecodecamp.com/map). 

+

The group is great for complete beginners. We will be learning by pair programming with someone of a similar experience level. 

+

We do not provide formal instruction as you'd find in a classroom -- rather we introduce you to other beginners who are on the same path and give you the chance to work together with them on the projects laid out in our curriculum. 

lon: 73.80999755859375 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/2/a/e/7/highres_447550983.jpeg' - photo_id: 447550983 photo_link: 'http://photos4.meetupstatic.com/photos/event/2/a/e/7/600_447550983.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/2/a/e/7/thumb_447550983.jpeg' - join_mode: open - organizer: - member_id: 192985101 - name: Josh Pitzalis - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/4/b/b/2/highres_249859378.jpeg' - photo_id: 249859378 - photo_link: 'http://photos1.meetupstatic.com/photos/member/4/b/b/2/member_249859378.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/4/b/b/2/thumb_249859378.jpeg' - members: 30 - name: Goa Code lat: 15.5 - who: Coders - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Pune - timezone: Asia/Calcutta - created: 1453394389000 link: 'http://www.meetup.com/Pune-Developers-Community/' - rating: 5 + name: "Pune Developer's Community" description: "Pune Developers Platform for learning and sharing technical knowledge, driven by passionate volunteers. \n­\nPune Guys, Lets collaborate together, network, learn and knowledge exchange." lon: 73.83999633789062 - join_mode: open - organizer: - member_id: 182849219 - name: Suyog - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/7/6/8/b/highres_252270347.jpeg' - photo_id: 252270347 - photo_link: 'http://photos3.meetupstatic.com/photos/member/7/6/8/b/member_252270347.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/7/6/8/b/thumb_252270347.jpeg' - members: 382 - name: "Pune Developer's Community" lat: 18.530000686645508 - who: PDC - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Delhi - timezone: Asia/Calcutta - created: 1453444177000 link: 'http://www.meetup.com/Open-Source-Enthusiast/' - description: >- + name: Open Source Enthusiast - Delhi + description: |-

Hi everyone,

- -

This group is all about open source technologies and methodologies, - our aim is to build and nurture a community that openly communicates - and help each other grow. We majorly hold meet-ups on Drupal, some of - the other technologies we are interested in are NodeJS, AngularJS, PHP - (various platforms), RoR, Python, and various database systems.

- -

We have venues available for meet-ups in Delhi, Gurgaon and Goa. We - are happy to help serious and relevant meet-up groups.

- +

This group is all about open source technologies and methodologies, our aim is to build and nurture a community that openly communicates and help each other grow. We majorly hold meet-ups on Drupal, some of the other technologies we are interested in are NodeJS, AngularJS, PHP (various platforms), RoR, Python, and various database systems.

+

We have venues available for meet-ups in Delhi, Gurgaon and Goa. We are happy to help serious and relevant meet-up groups.

Cheers
See you at our next meet-up.

lon: 77.20999908447266 - join_mode: open - organizer: - member_id: 196723816 - name: Piyush Jain - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/9/e/8/8/highres_252040584.jpeg' - photo_id: 252040584 - photo_link: 'http://photos2.meetupstatic.com/photos/member/9/e/8/8/member_252040584.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/9/e/8/8/thumb_252040584.jpeg' - members: 181 - name: Open Source Enthusiast - Delhi lat: 28.670000076293945 - who: Druplers - - utc_offset: 10800000 - country: SA - visibility: public + - country: SA city: Jiddah - timezone: Asia/Riyadh - created: 1453688857000 link: 'http://www.meetup.com/Jeddah-Developers/' - rating: 4.75 + name: Jeddah Developers description: "

This is a group for anyone in Saudi Arabia who is interested in web development, apps development, web technologies, web design, e-Commerce, e-publishing, social media, etc. All skills levels are welcome. I started this group because to meet other amazing developers. Looking forward to see you join in and let's share and improve web in Arab world.

" lon: 39.16999816894531 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/1/7/1/f/highres_447185919.jpeg' - photo_id: 447185919 photo_link: 'http://photos3.meetupstatic.com/photos/event/1/7/1/f/600_447185919.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/1/7/1/f/thumb_447185919.jpeg' - join_mode: open - organizer: - member_id: 186037479 - name: Abdullah Alghamdi - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/5/9/f/5/highres_245243029.jpeg' - photo_id: 245243029 - photo_link: 'http://photos2.meetupstatic.com/photos/member/5/9/f/5/member_245243029.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/5/9/f/5/thumb_245243029.jpeg' - members: 138 - name: Jeddah Developers lat: 21.5 - who: Developers - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Goa Velha - timezone: Asia/Calcutta - created: 1454389807000 link: 'http://www.meetup.com/Open-Source-Enthusiast-Goa/' - description: >- + name: Open Source Enthusiast - Goa + description: |-

Hi everyone,

- -

This group is all about open source technologies and methodologies, - our aim is to build and nurture a community that openly communicates - and help each other grow. We majorly hold meet-ups on Drupal, some of - the other technologies we are interested in are NodeJS, AngularJS, PHP - (various platforms), RoR, Python, various database systems. We are also - big on agile methodology (https://www.linkedin.com/groups/8460551) - irrespective of the technology you work on.

- -

We have venues available for meet-ups in Goa, Delhi, Gurgoan and - Bangalore. We are happy to help serious and relevant meet-up - groups.

- +

This group is all about open source technologies and methodologies, our aim is to build and nurture a community that openly communicates and help each other grow. We majorly hold meet-ups on Drupal, some of the other technologies we are interested in are NodeJS, AngularJS, PHP (various platforms), RoR, Python, various database systems. We are also big on agile methodology (https://www.linkedin.com/groups/8460551) irrespective of the technology you work on.

+

We have venues available for meet-ups in Goa, Delhi, Gurgoan and Bangalore. We are happy to help serious and relevant meet-up groups.

Cheers
See you at our next meet-up.

lon: 73.87000274658203 - join_mode: open - organizer: - member_id: 196723816 - name: Piyush Jain - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/9/e/8/8/highres_252040584.jpeg' - photo_id: 252040584 - photo_link: 'http://photos2.meetupstatic.com/photos/member/9/e/8/8/member_252040584.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/9/e/8/8/thumb_252040584.jpeg' - members: 52 - name: Open Source Enthusiast - Goa lat: 15.430000305175781 - who: Druplers - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Bangalore - timezone: Asia/Calcutta - created: 1454406402000 link: 'http://www.meetup.com/Open-Source-Enthusiast-Bangalore/' + name: Open Source Enthusiast - Bangalore description: "Hi everyone,\n\nThis group is all about open source technologies and methodologies, our aim is to build and nurture a community that openly communicates and help each other grow. We majorly hold meet-ups on Drupal, some of the other technologies we are interested in are NodeJS, AngularJS, PHP (various platforms), RoR, Python, and various database systems.\n\nWe have venues available for meet-ups in Bangalore, Delhi, Gurgaon and Goa. We are happy to help serious and relevant meet-up groups.\n\nCheers \nSee you at our next meet-up." lon: 77.55999755859375 - join_mode: open - organizer: - member_id: 196723816 - name: Piyush Jain - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/9/e/8/8/highres_252040584.jpeg' - photo_id: 252040584 - photo_link: 'http://photos2.meetupstatic.com/photos/member/9/e/8/8/member_252040584.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/9/e/8/8/thumb_252040584.jpeg' - members: 148 - name: Open Source Enthusiast - Bangalore lat: 12.970000267028809 - who: Druplers - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Hyderabad - timezone: Asia/Calcutta - created: 1454578869000 link: 'http://www.meetup.com/hyderabad-wakanda/' - description: >- -

This meetup is dedicated to promoting Wakanda Open Source - JavaScript FullStack platform (https://wakanda.github.io/). We will launch - a monthly online JS development challenge. The best application - developed with Wakanda Platform will receive at least $1,000 USD prize - and will be showcased on Wakanda websites.

- -

This group is also for anyone interested in learning how to build - mobile applications in 3 weeks using Javascript for both frontend and - backend sides.

+ name: Hyderabad Wakanda Open Source JavaScript FullStack + description: |- +

This meetup is dedicated to promoting Wakanda Open Source JavaScript FullStack platform (https://wakanda.github.io/). We will launch a monthly online JS development challenge. The best application developed with Wakanda Platform will receive at least $1,000 USD prize and will be showcased on Wakanda websites.

+

This group is also for anyone interested in learning how to build mobile applications in 3 weeks using Javascript for both frontend and backend sides.

lon: 78.4800033569336 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/8/4/4/1/highres_446673857.jpeg' - photo_id: 446673857 photo_link: 'http://photos1.meetupstatic.com/photos/event/8/4/4/1/600_446673857.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/8/4/4/1/thumb_446673857.jpeg' - join_mode: open - organizer: - member_id: 197753895 - name: Roger Essoh - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/1/1/e/0/highres_252664576.jpeg' - photo_id: 252664576 - photo_link: 'http://photos2.meetupstatic.com/photos/member/1/1/e/0/member_252664576.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/1/1/e/0/thumb_252664576.jpeg' - members: 69 - name: Hyderabad Wakanda Open Source JavaScript FullStack lat: 17.399999618530273 - who: WakandaXP - - utc_offset: 25200000 - country: TH - visibility: public + - country: TH city: Bangkok - timezone: Asia/Bangkok - created: 1454641994000 link: 'http://www.meetup.com/Serverless-Bangkok/' + name: Serverless Bangkok description: "

A group for anyone interested in building web, mobile and Internet-of-Things applications with serverless architectures using the Serverless Framework and more! We'll focus heavily on Amazon Web Services and discuss AWS Lambda as the focal point of AWS.

" lon: 100.5 - join_mode: open - organizer: - member_id: 60735482 - name: Austen Collins - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/c/3/d/4/highres_232010132.jpeg' - photo_id: 232010132 - photo_link: 'http://photos4.meetupstatic.com/photos/member/c/3/d/4/member_232010132.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/c/3/d/4/thumb_232010132.jpeg' - members: 44 - name: Serverless Bangkok lat: 13.729999542236328 - who: Members - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Bangalore - timezone: Asia/Calcutta - created: 1455196618000 link: 'http://www.meetup.com/React-Native-Developers-Bengaluru/' + name: React Native Developers Bengaluru description: "React Native is an open source Javascript framework from Facebook for building iOS or Android mobile apps. This is a community group for developers interested in React Native talks, discussions, and hack sessions. Let's Meetup" lon: 77.55999755859375 - join_mode: open - organizer: - member_id: 124900052 - name: Prashanth Reddy - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/7/4/0/4/highres_253769700.jpeg' - photo_id: 253769700 - photo_link: 'http://photos2.meetupstatic.com/photos/member/7/4/0/4/member_253769700.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/7/4/0/4/thumb_253769700.jpeg' - members: 62 - name: React Native Developers Bengaluru lat: 12.970000267028809 - who: Developers - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Delhi - timezone: Asia/Calcutta - created: 1455701111000 link: 'http://www.meetup.com/Full-Stack-Mean-Ninajs/' + name: 'Full Stack Mean Ninajs!' description: 'Group for people who want to come together with the aim of helping other beginners get a start in the MEAN stack and introducing them and mentoring them. ' lon: 77.20999908447266 - join_mode: open - organizer: - member_id: 199639400 - name: Sarthak Batra - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/5/8/d/a/highres_253822746.jpeg' - photo_id: 253822746 - photo_link: 'http://photos3.meetupstatic.com/photos/member/5/8/d/a/member_253822746.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/5/8/d/a/thumb_253822746.jpeg' - members: 97 - name: 'Full Stack Mean Ninajs!' lat: 28.670000076293945 - who: Ninjas - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Hyderabad - timezone: Asia/Calcutta - created: 1456409668000 link: 'http://www.meetup.com/Hyderabad-Strongloop-MEAN-Meetup/' - rating: 5 + name: 'Hyderabad MEAN Stack & Loopback Developers' description: 'This a group for Engineers & hustlers interested in learning MEAN Stack (Mongo, Express, Angular, Node) and build applications using enterprise frameworks like StrongLoop. This is a focussed group which meets 2nd Saturday of every month in Hyderabad. Please suggest topics for discussion, problems to solve and other innovative ideas. In every meetup we will also have a small hackathon to solve an interesting problem.' lon: 78.4800033569336 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/e/2/a/5/highres_447778021.jpeg' - photo_id: 447778021 photo_link: 'http://photos1.meetupstatic.com/photos/event/e/2/a/5/600_447778021.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/e/2/a/5/thumb_447778021.jpeg' - join_mode: open - organizer: - member_id: 180444972 - name: Harish - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/a/a/6/6/highres_238303622.jpeg' - photo_id: 238303622 - photo_link: 'http://photos1.meetupstatic.com/photos/member/a/a/6/6/member_238303622.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/a/a/6/6/thumb_238303622.jpeg' - members: 150 - name: 'Hyderabad MEAN Stack & Loopback Developers' lat: 17.399999618530273 - who: "MEAN'ers" - - utc_offset: 28800000 - country: HK - visibility: public + - country: HK city: Hong Kong - timezone: Asia/Shanghai - created: 1457327183000 link: 'http://www.meetup.com/Sanuker-Academy/' + name: Sanuker Academy description: "Wondering how to take the first step into the programming world? Come join our interesting coding class and explore everything about programming, mobile app and web development. Class levels ranging from beginner to intermediate and expert, with customized syllabus and cozy learning environment. Let's expand the hacker community together!" lon: 114.13999938964844 - join_mode: open - organizer: - member_id: 194128906 - name: Sanuker - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/d/a/b/4/highres_250555988.jpeg' - photo_id: 250555988 - photo_link: 'http://photos2.meetupstatic.com/photos/member/d/a/b/4/member_250555988.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/d/a/b/4/thumb_250555988.jpeg' - members: 50 - name: Sanuker Academy lat: 22.270000457763672 - who: Learners - - utc_offset: 19800000 - country: IN - visibility: public + - country: IN city: Delhi - timezone: Asia/Calcutta - created: 1457331835000 link: 'http://www.meetup.com/Geeky-Girls/' + name: Geeky Girls description: 'Geeky girls is a group for the females who love technology. We will be learning, sharing, mentoring in technology with each other.' lon: 77.20999908447266 - join_mode: open - organizer: - member_id: 173481052 - name: Neha Sharma - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/5/c/0/b/highres_253463563.jpeg' - photo_id: 253463563 - photo_link: 'http://photos3.meetupstatic.com/photos/member/5/c/0/b/member_253463563.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/5/c/0/b/thumb_253463563.jpeg' - members: 25 - name: Geeky Girls lat: 28.670000076293945 - who: Geekygirls - - region: Europe - conferences: - - name: NodeConf.eu - desc: 'Yearly NodeConf in Waterford, Ireland.' - link: 'http://nodeconf.eu' - lat: 52.2533703 - lon: -7.0593531 - - name: NodeConf Barcelona - desc: 'Yearly NodeConf in Bercelona, Spain.' - link: 'http://barcelona.nodeconf.com/' - lat: 41.3870295 - lon: 2.1693952 - location: 'Mobile World Centre, Barcelona, Spain' - - name: NodeConf Oslo - link: 'http://oslo.nodeconf.com/' - desc: Yearly Norwegian NodeConf. - lat: 59.8937806 - lon: 10.6450355 - - name: nodejsconf.it - link: 'http://nodejsconf.it/' - desc: Yearly Italian conference. - lat: 45.4639833 - lon: 10.534382 - - name: JSConf.eu - link: 'http://jsconf.eu' - desc: 'Yearly JavaScript conference in Berlin, Germany.' - location: 'Radial System V, Berlin, Germany.' - lat: 52.5102922 - lon: 13.4286193 + - country: IN + city: Indore + link: 'http://www.meetup.com/Free-Code-Camp-Indore/' + name: Free Code Camp Indore + description: "Whether you are a total beginner or well experienced, we welcome you to join us if you are interested in code pairing,enhancing your technical skills in JavaScript, JQuery, HTML, CSS, Angular.js, Node.js. and much more. This is also for anyone currently taking the Free Code Camp courses online (at www.freecodecamp.com) hoping to connect with a local campers in Indore\n\nIf you would like to host an event or have a venue in mind, feel free to reach out! " + lon: 75.86000061035156 + lat: 22.719999313354492 + - country: CN + city: Shanghai + link: 'http://www.meetup.com/Shanghai-Meteor-with-IoT-Meetup/' + name: Shanghai Meteor with IoT Meetup + description: 'This is a team for anyone interesting in Meteor, Nodejs, IoT, Device Communction and UI , etc. All skills levels are welcome, I started this team becaues I like Javascript and any nice module,Handsome UI,and want to meet other same lovers .' + lon: 121.47000122070312 + lat: 31.229999542236328 nodeschools: - - name: Amsterdam NodeSchool - location: 'Amsterdam, NL' + - name: Amman NodeSchool + location: 'Amman, JO' organizers: - - hughsk - - yoshuawuyts - - mmalecki - - hatchan - repo: 'http://github.com/nodeschool/amsterdam' - lat: 52.3702157 - lon: 4.895167900000001 - - name: NodeSchool Ankara / Turkey - location: 'Ankara, TR' + - samuraik + - rashad612 + repo: 'http://github.com/nodeschool/amman' + lat: 31.9565783 + lon: 35.9456951 + - name: NodeSchool Bali + location: 'Bali, ID' organizers: - - trkozd - - skaan07 - website: 'http://nodeschool.io/ankara' - repo: 'http://github.com/nodeschool/ankara' - lat: 39.9333635 - lon: 32.8597419 - - name: Augsburg NodeSchool - location: 'Augsburg, DE' + - LaughingSun + website: 'http://nodeschool.io/bali' + repo: 'http://github.com/nodeschool/bali' + lat: -8.4095178 + lon: 115.188916 + - name: Bangalore NodeSchool + location: 'Bangalore, IN' organizers: - - meaku - - jhnns - - sbat - - flootr - - matthaias - - topa - website: 'http://nodeschool.io/augsburg' - twitter: NodeschoolAugs - repo: 'http://github.com/nodeschool/augsburg' - lat: 48.3705449 - lon: 10.89779 - - name: Barcelona NodeSchool - location: 'Barcelona, ES' + - abyv + - somesh123 + - somsharan + repo: 'http://github.com/nodeschool/bangalore' + lat: 12.9715987 + lon: 77.5945627 + - name: NodeSchool Bangkok + location: 'Bangkok, TH' + organizers: + - jjmax75 + website: 'http://nodeschool.io/bangkok' + repo: 'http://github.com/nodeschool/bangkok' + gitter: 'https://gitter.im/nodeschool/bangkok' + facebook: 'https://www.facebook.com/groups/NodeSchoolBangkok/' + lat: 13.7563309 + lon: 100.5017651 + - name: NodeSchool Cebu + location: 'Cebu City, PH' + organizers: + - levint + - keithics + - rollyn + website: 'http://nodeschool.io/cebu' + repo: 'http://github.com/nodeschool/cebu' + lat: 10.3156992 + lon: 123.8854366 + - name: NodeSchool Chandigarh + location: 'Chandigarh, IN' + organizers: + - nsena + website: 'http://nodeschool.io/chandigarh' + twitter: nodeschoolchd + repo: 'http://github.com/nodeschool/chandigarh' + lat: 30.7333148 + lon: 76.7794179 + - name: Chennai NodeSchool + location: 'Chennai, IN' organizers: - - patrickheneise - website: 'http://nodeschool.io/barcelona/' - repo: 'http://github.com/nodeschool/barcelona' - lat: 41.3850639 - lon: 2.1734035 - - name: NodeSchool Belgrade - location: 'Belgrade, RS' + - vikene + website: 'http://nodeschool.io/chennai' + twitter: chn_nodeschool + repo: 'http://github.com/nodeschool/chennai' + lat: 13.0826802 + lon: 80.2707184 + - name: NodeSchool Chiang Mai + location: 'Chiang Mai, Thailand' organizers: - - stojanovic - - aysbg - - simalexan - website: 'http://nodeschool.io/belgrade' - repo: 'http://github.com/nodeschool/belgrade' - lat: 44.786568 - lon: 20.4489216 - - name: NodeSchool Berlin - location: 'Berlin, DE' + - RichardLitt + website: 'http://nodeschool.io/chiang-mai' + repo: 'http://github.com/nodeschool/chiang-mai' + lat: 18.787747 + lon: 98.99312839999999 + - name: 'NodeSchool Delhi-NCR ' + location: 'Delhi-NCR, IN' organizers: - - finnp - - stryju - - johannhof - website: 'http://nodeschool.io/berlin' - repo: 'http://github.com/nodeschool/berlin' - lat: 52.52000659999999 - lon: 13.404954 - - name: Bristol NodeSchool - location: 'Bristol, UK' + - avin45h + - VibhorKukreja + - manoj-nama + - kashishgupta1990 + - kushal-likhi + website: 'http://nodeschool.io/Delhi-NCR' + repo: 'http://github.com/nodeschool/delhi-ncr' + lat: 28.4179583 + lon: 76.9104653 + - name: Dhaka NodeSchool + location: 'Dhaka, BD' organizers: - - permadesign - - fiznool - - katjad - website: 'http://nodeschool.io/bristol' - gitter: 'https://gitter.im/nodeschool/bristol' - repo: 'http://github.com/nodeschool/bristol' - lat: 51.454513 - lon: -2.58791 - - name: Chernivtsi NodeSchool - location: 'Chernivtsi, UA' + - az7arul + - zhdzmn + - riyadhalnur + - ishtiaque23 + website: 'http://nodeschool.io/dhaka' + repo: 'http://github.com/nodeschool/dhaka' + lat: 23.810332 + lon: 90.4125181 + - name: Fukui NodeSchool + location: 'Fukui, JP' + organizers: + - fossamagna + website: 'http://nodeschool.io/fukui' + repo: 'http://github.com/nodeschool/fukui' + lat: 36.0640669 + lon: 136.2194938 + - name: NodeSchool Hanoi + location: 'Hanoi, VN' organizers: - - denysdovhan - twitter: denysdovhan - repo: 'http://github.com/nodeschool/chernivtsi' - lat: 48.2920787 - lon: 25.9358367 - - name: Dublin NodeSchool - location: 'Dublin, IE' + - hainh + - dominhhai + website: 'http://nodeschool.io/hanoi' + repo: 'https://github.com/nodeschool/hanoi' + lat: 21.0277644 + lon: 105.8341598 + - name: NodeSchool Ho Chi Minh - Vietnam + location: 'Ho Chi Minh, VN' organizers: - - no9 - - johnbrett - - jasonmarah - - johnbrett - - akohli - - davecocoa - - lorcanmcdonald - - gangleri - website: 'http://nodeschool.io/dublin' - twitter: '@nodeschooldub' - repo: 'http://github.com/nodeschool/dublin' - lat: 53.3498053 - lon: -6.2603097 - - name: Faro NodeSchool - location: 'Faro, PT' + - okaiji + - fw1065 + website: 'http://nodeschool.io/hcmc-vietnam' + twitter: + - '@InnovQ' + - '@invisible_info' + repo: 'https://github.com/nodeschool/hcmc-saigon' + lat: 10.8230989 + lon: 106.6296638 + - name: NodeSchool Hong Kong + location: 'Hong Kong, HK' organizers: - - mcoquet - - nneves - - rsoares - repo: 'http://github.com/nodeschool/faro' - lat: 37.0193548 - lon: -7.9304397 - - name: NodeSchool Haarlem - location: 'Haarlem, NL' + - neilnand + - rowlandwatkins + - hitchcott + website: 'http://www.meetup.com/HK-Web-Developers/' + repo: 'https://github.com/nodeschool/hong-kong' + lat: 22.2783151 + lon: 114.174695 + - name: NodeSchool Hyderabad + location: 'Hyderabad, IN' organizers: - - rickheere - - jpwesselink - - codeflyer - - stefanmirck - website: 'http://nodeschool.io/haarlem' - repo: 'https://github.com/nodeschool/haarlem' - lat: 52.3873878 - lon: 4.6462194 - - name: NodeSchool Hamburg - location: 'Hamburg, DE' + - gmkr + website: 'http://nodeschool.io/hyderabad/' + repo: 'http://github.com/nodeschool/hyderabad' + lat: 17.385044 + lon: 78.486671 + - name: IEM Kolkata NodeSchool + location: 'IEM, Kolkata, IN' organizers: - - greelgorke - website: 'http://nodeschool.io/hamburg' - repo: 'http://github.com/nodeschool/hamburg' - lat: 53.5510846 - lon: 9.9936818 - - name: NodeSchool Heidelberg - location: 'Heidelberg, DE' - organizers: - - martensms - - iUsemws - website: 'http://nodeschool.io/heidelberg' - twitter: 'https://twitter.com/nodeschoolhd' - repo: 'http://github.com/nodeschool/heidelberg' - lat: 49.3987524 - lon: 8.6724335 - - name: Helsinki NodeSchool - location: 'Helsinki, FI' + - koustuvsinha + repo: 'http://github.com/nodeschool/iem-kolkata' + lat: 22.5698662 + lon: 88.4295595 + - name: IRN NodeSchool + location: 'Babol / Mazandaran, IR' organizers: - - laurisvan - - jubilem - website: 'http://nodeschool.io/helsinki/' - twitter: helnode - repo: 'https://github.com/nodeschool/helsinki' - lat: 60.17332440000001 - lon: 24.9410248 - - name: NodeSchool Hradec Králové - location: 'Hradec Králové, CZ' + - NIT + repo: 'http://github.com/nodeschool/iran' + lat: 36.5386629 + lon: 52.6764543 + - name: Isfahan NodeSchool + location: 'Isfahan,Isfahan, Iran' organizers: - - bajtos - repo: 'http://github.com/nodeschool/hradec-kralove' - lat: 50.2103605 - lon: 15.825211 - - name: NodeSchool Istanbul - location: 'Istanbul, TR' + - ArianSotoudehMehr + website: 'http://nodeschools.ir' + repo: 'http://github.com/nodeschool/isfahan' + lat: 32.6546275 + lon: 51.66798259999999 + - name: Jakarta NodeSchool + location: 'Jakarta, ID' organizers: - - arifcakiroglu - - ekinsigic - - oguzhancolak - website: 'http://nodeschool.io/istanbul' - repo: 'http://github.com/nodeschool/istanbul' - lat: 41.0082376 - lon: 28.9783589 - - name: NodeSchool Italy - location: 'Italy, undefined' + - aredo + - giosakti + - hafizbadrie + - rbudiharso + website: 'http://nodeschool.io/jakarta' + twitter: 'https://twitter.com/jakartajs' + repo: 'http://github.com/nodeschool/jakarta' + lat: -6.2087634 + lon: 106.845599 + - name: NodeSchool Kanpur + location: 'Kanpur, IN' organizers: - - matteocollina - - MarcoPiraccini - website: 'http://nodeschool.io/italy' - repo: 'http://github.com/nodeschool/italy' - - name: Kirovohrad NodeSchool - location: 'Kirovohrad, UA' + - abdulqabiz + website: 'http://nodeschool.io/kanpur' + repo: 'http://github.com/nodeschool/kanpur' + lat: 26.449923 + lon: 80.3318736 + - name: Karaj NodeSchool + location: 'Karaj,Alborz, Iran' organizers: - - ghaiklor - website: 'http://nodeschool.io/kirovohrad' - twitter: ghaiklor - repo: 'http://github.com/nodeschool/kirovohrad' - lat: 48.50793300000001 - lon: 32.262317 - - name: NodeSchool Kyiv - location: 'Kyiv, UA' + - ArianSotoudehMehr + website: 'http://nodeschools.ir' + repo: 'http://github.com/nodeschool/karaj' + lat: 35.8400188 + lon: 50.9390906 + - name: NodeSchool Lahore + location: 'Lahore, PK' organizers: - - sudodoki - repo: 'http://github.com/nodeschool/kyiv' - lat: 50.4501 - lon: 30.5234 - - name: Lisbon NodeSchool - location: 'Lisbon, PT' + - usmantahirr + - sheharyarn + website: 'http://nodeschool.io/Lahore' + repo: 'http://github.com/nodeschool/lahore' + lat: 31.55460609999999 + lon: 74.3571581 + - name: Malang NodeSchool + location: 'Malang, ID' organizers: - - diasdavid - repo: 'http://github.com/nodeschool/lisbon' - lat: 38.7222524 - lon: -9.1393366 - - name: NodeSchool Lodz - location: 'Lodz, PL' + - krahman + website: 'http://nodeschool.io/malang' + twitter: mlgnodeschool + repo: 'http://github.com/nodeschool/malang' + lat: -7.9666204 + lon: 112.6326321 + - name: Osaka NodeSchool + location: 'Osaka, JP' organizers: - - adamniedzielski - - lipkap - website: 'http://nodeschool.io/lodz' - twitter: nodeschool_lodz - gitter: 'https://gitter.im/nodeschool/lodz' - repo: 'https://github.com/nodeschool/lodz' - lat: 51.7592485 - lon: 19.4559833 - - name: London NodeSchool - location: 'London, UK' + - martinheidegger + - vanx2 + - kumatch + - kamiyam + - atuyl + website: 'http://nodeschool.io/osaka' + repo: 'http://github.com/nodeschool/osaka' + lat: 34.6937378 + lon: 135.5021651 + - name: Pune Nodeschool + location: 'Pune, IN' organizers: - - iancrowther - - olizilla - - alanshaw - - orliesaurus - website: 'http://nodeschool.io/london' - repo: 'http://github.com/nodeschool/london' - lat: 51.5073509 - lon: -0.1277583 - - name: NodeSchool Madrid - location: 'Madrid, ES' + - adroittech + website: 'http://github.com/nodeschool/pune' + twitter: niravfaldu + repo: 'http://github.com/nodeschool/pune' + lat: 18.5204303 + lon: 73.8567437 + - name: NodeSchool Seoul + location: 'Seoul, KR' organizers: - - alexfernandez - - gootyfer - - javiervelezreyes - website: 'http://nodeschool.io/madrid' - twitter: '@NodeJsMadrid' - repo: 'http://github.com/nodeschool/madrid' - lat: 40.4167754 - lon: -3.7037902 - - name: Lyon NodeSchool - location: 'Lyon, FR' + - xarus01 + website: 'http://nodeschool.io/seoul/' + repo: 'https://github.com/nodeschool/seoul' + gitter: 'https://gitter.im/nodeschool/nodeschool/seoul' + lat: 37.566535 + lon: 126.9779692 + - name: Shiraz NodeSchool + location: 'Shiraz,Fars, Iran' organizers: - - maxlath - website: 'http://nodeschool.io/lyon' - repo: 'http://github.com/nodeschool/lyon' - lat: 45.764043 - lon: 4.835659 - - name: NodeSchool Moscow - location: 'Moscow, RU' + - ArianSotoudehMehr + website: 'http://nodeschools.ir' + repo: 'http://github.com/nodeschool/shiraz' + lat: 29.5917677 + lon: 52.5836982 + - name: Singapore NodeSchool + location: 'Singapore, SG' organizers: - - AVVS - - freele - repo: 'http://github.com/nodeschool/moscow' - lat: 55.755826 - lon: 37.6173 - - name: Munich NodeSchool - location: 'Munich, DE' + - timoxley + - weilu + - renettarenula + - hongkheng + - soareschen + - vissree + - apraditya + - shioju + - danielmahadi + - eihan + - yzdong + - andrewabogado + - sayanee + website: 'http://nodeschool.io/singapore' + repo: 'http://github.com/nodeschool/singapore' + lat: 1.3553794 + lon: 103.8677444 + - name: Surat NodeSchool + location: 'Surat, GJ, IN' + organizers: + - harshjv + - Akshay-Jain01 + repo: 'https://github.com/nodeschool/surat' + lat: 21.1702401 + lon: 72.83106070000001 + - name: Tabriz NodeSchool + location: 'Tabriz,Azarbaijan, Iran' organizers: - - meaku - - jhnns - - sbat - - flootr - - matthaias - - topa - website: 'http://nodeschool.io/munich' - twitter: nodeschoolmuc - repo: 'http://github.com/nodeschool/munich' - lat: 48.1351253 - lon: 11.5819806 - - name: Oslo NodeSchool - location: 'Oslo, NO' + - ArianSotoudehMehr + website: 'http://nodeschools.ir' + repo: 'http://github.com/nodeschool/tabriz' + lat: 38.094313 + lon: 46.2614617 + - name: Taiwan Nodeschool + location: Taiwan organizers: - - Andersos - website: 'http://nodeschool.io/oslo' - gitter: 'https://gitter.im/nodeschool/oslo' - repo: 'http://github.com/nodeschool/oslo' - lat: 59.9138688 - lon: 10.7522454 - - name: NodeSchool Oxford - location: 'Oxford, UK' + - leonlin14 + - cfsghost + - poying + website: 'http://nodeschool.io/taiwan' + repo: 'https://github.com/nodeschool/taiwan' + lat: 23.69781 + lon: 120.960515 + - name: Tehran NodeSchool + location: 'Tehran,Tehran, Iran' organizers: - - roylines - - benfoxall - - ivanbokii - - nileshkale - - peterjwest - - lazywithclass - website: 'http://jsoxford.com/' - twitter: 'https://twitter.com/JSOxford' - repo: 'http://github.com/nodeschool/oxford' - lat: 51.7520209 - lon: -1.2577263 - - name: NodeSchool Paris - location: 'Paris, FR' - organizers: - - tdd - website: 'http://nodeschool.io/paris/' - twitter: NodeSchoolParis - repo: 'http://github.com/nodeschool/paris' - lat: 48.856614 - lon: 2.3522219 - - name: NodeSchool Sevilla - location: 'Seville, ES' - organizers: - - beltran-rubo - repo: 'http://github.com/nodeschool/seville' - lat: 37.3890924 - lon: -5.9844589 - - name: NodeSchool Silesia - location: 'Silesia, PL' - organizers: - - afronski - - rspective - website: 'http://nodeschool.io/silesia' - twitter: nodeschoolpl - gitter: 'https://gitter.im/nodeschool/silesia' - repo: 'https://github.com/nodeschool/silesia' - lat: 50.5716595 - lon: 19.3219768 - - name: Saint Petersburg NodeSchool - location: 'Saint Petersburg, RU' - organizers: - - marinintim - website: 'http://nodeschool.io/spb' - repo: 'https://github.com/nodeschool/spb' - lat: 59.9342802 - lon: 30.3350986 - - name: Nodeschool Stavanger - location: 'Stavanger, NO' - organizers: - - asbjornenge - - megatrond - - olavgg - - olekjormo - - persille - - joargp - - resurge - - jmyrland - - frodeanonsen - - VirtueMe - website: 'http://nodeschool.io/stavanger' - repo: 'https://github.com/nodeschool/stavanger' - lat: 58.9699756 - lon: 5.7331073 - - name: NodeSchool Strasbourg - location: 'Strasbourg, FR' - organizers: - - jsebfranck - website: 'http://nodeschool.io/strasbourg/' - repo: 'http://github.com/nodeschool/strasbourg' - lat: 48.5734053 - lon: 7.752111299999999 - - name: NodeSchool Stuttgart - location: 'Stuttgart, DE' - organizers: - - kwakayama - website: 'http://nodeschool.io/stuttgart' - repo: 'http://github.com/nodeschool/stuttgart' - lat: 48.7758459 - lon: 9.1829321 - - name: Utrecht NodeSchool - location: 'Utrecht, NL' + - ArianSotoudehMehr + website: 'http://nodeschools.ir' + repo: 'http://github.com/nodeschool/tehran' + lat: 35.6891975 + lon: 51.3889736 + - name: NodeSchool Tokyo + location: 'Tokyo, JP' organizers: - - fritzvd - website: 'http://nodeschool.io/utrecht/' - repo: 'http://github.com/nodeschool/utrecht' - lat: 52.09073739999999 - lon: 5.1214201 - - name: Vienna NodeSchool - location: 'Vienna, AT' + - sota0805 + - tgfjt + - martinheidegger + website: 'http://nodeschool.io/tokyo/' + repo: 'https://github.com/nodeschool/tokyo' + gitter: 'https://gitter.im/nodeschool/nodeschool-japan' + lat: 35.6894875 + lon: 139.6917064 + - name: Vellore NodeSchool + location: 'Vellore, IN' organizers: - - thomaspeklak - - shm - - saintedlama - website: 'http://nodeschool.io/vienna' - repo: 'http://github.com/nodeschool/vienna' - lat: 48.2081743 - lon: 16.3738189 - - name: Wroclaw NodeSchool - location: 'Wroclaw, Dolnoslaskie, PL' + - nikhil-kasukurthi + repo: 'http://github.com/nodeschool/vellore' + lat: 12.9165167 + lon: 79.13249859999999 + - name: "Xi'an NodeSchool" + location: "Xi'an, Shaanxi, CN" organizers: - - grabbou - - explosivetitles - website: 'http://nodeschool.io/wroclaw' - twitter: nodeschool_wro - gitter: 'https://gitter.im/nodeschool/wroclaw' - repo: 'http://github.com/nodeschool/wroclaw' - lat: 51.1078852 - lon: 17.0385376 - - name: NodeSchool Zagreb - location: 'Zagreb, HR' + - howiehu + website: 'http://nodeschool.io/xian' + repo: 'https://github.com/nodeschool/xian' + lat: 34.341575 + lon: 108.93977 + - name: Yazd NodeSchool + location: 'Yazd,Yazd, Iran' organizers: - - shime - - dinodsaurus - website: 'http://nodeschool.io/zagreb' - repo: 'http://github.com/nodeschool/zagreb' - lat: 45.8150108 - lon: 15.981919 + - ArianSotoudehMehr + website: 'http://nodeschools.ir' + repo: 'http://github.com/nodeschool/yazd' + lat: 31.8974232 + lon: 54.3568562 + - region: Europe + conferences: + - name: NodeConf.eu + desc: 'Yearly NodeConf in Waterford, Ireland.' + link: 'http://nodeconf.eu' + lat: 52.2533703 + lon: -7.0593531 + - name: NodeConf Barcelona + desc: 'Yearly NodeConf in Bercelona, Spain.' + link: 'http://barcelona.nodeconf.com/' + lat: 41.3870295 + lon: 2.1693952 + location: 'Mobile World Centre, Barcelona, Spain' + - name: NodeConf Oslo + link: 'http://oslo.nodeconf.com/' + desc: Yearly Norwegian NodeConf. + lat: 59.8937806 + lon: 10.6450355 + - name: nodejsconf.it + link: 'http://nodejsconf.it/' + desc: Yearly Italian conference. + lat: 45.4639833 + lon: 10.534382 + - name: JSConf.eu + link: 'http://jsconf.eu' + desc: 'Yearly JavaScript conference in Berlin, Germany.' + location: 'Radial System V, Berlin, Germany.' + lat: 52.5102922 + lon: 13.4286193 meetups: - - utc_offset: 7200000 - country: IT - visibility: public + - country: IT city: Roma - timezone: Europe/Rome - created: 1180780325000 link: 'http://www.meetup.com/codeinvaders/' - rating: 4.5 - description: >- -

Meetup composto da persone interessate allo sviluppo software - per il mondo mobile. Il gruppo si riunisce periodicamente per discutere - wearables, mobile, VR, JavaScript, TDD, DevOps, ecc. ed offre talks di - 25 minuti intervallati da musica, buon cibo e bevande.

- -

Meetup with other local people who are interested in software - development focusing on mobile app, rich internet applications and open - source. Gather and discuss the designing and coding of web-based - applications using next generation standards and frameworks like - Sencha, jQuery, HTML5, CSS3, AIR, Flex, Flash Player, etc.

+ name: Codeinvaders + description: |- +

Meetup composto da persone interessate allo sviluppo software per il mondo mobile. Il gruppo si riunisce periodicamente per discutere wearables, mobile, VR, JavaScript, TDD, DevOps, ecc. ed offre talks di 25 minuti intervallati da musica, buon cibo e bevande.

+

Meetup with other local people who are interested in software development focusing on mobile app, rich internet applications and open source. Gather and discuss the designing and coding of web-based applications using next generation standards and frameworks like Sencha, jQuery, HTML5, CSS3, AIR, Flex, Flash Player, etc.

lon: 12.479999542236328 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/c/2/4/e/highres_447709742.jpeg' - photo_id: 447709742 photo_link: 'http://photos4.meetupstatic.com/photos/event/c/2/4/e/600_447709742.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/c/2/4/e/thumb_447709742.jpeg' - join_mode: open - organizer: - member_id: 4291417 - name: Giorgio Natili - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/d/a/8/9/highres_244135945.jpeg' - photo_id: 244135945 - photo_link: 'http://photos3.meetupstatic.com/photos/member/d/a/8/9/member_244135945.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/d/a/8/9/thumb_244135945.jpeg' - members: 729 - name: Codeinvaders - state: RM lat: 41.900001525878906 - who: invaders - - utc_offset: 3600000 - country: GB - visibility: public + - country: GB city: London - timezone: Europe/London - created: 1184592255000 link: 'http://www.meetup.com/londondigital/' - rating: 4.31 + name: London Digital Design and Technology User Group description: "

The London Design and technology user group is here to offer varied content for both designer and developers who live breath and work in the digital development space.

\n

This group is for the people who 'make' web experiences apps and games. Mainly it will be\_focussed\_on design and technology but we will also host any talks that are presented from a perspective that will be interesting to the members, so whether it be business related or strategic it will always be relevent.

\n

\_

" lon: -0.10000000149011612 - join_mode: open - organizer: - member_id: 7808141 - name: Mark Young - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/9/f/e/d/highres_17140941.jpeg' - photo_id: 17140941 - photo_link: 'http://photos1.meetupstatic.com/photos/member/9/f/e/d/member_17140941.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/9/f/e/d/thumb_17140941.jpeg' - members: 1556 - name: London Digital Design and Technology User Group - state: '17' lat: 51.52000045776367 - who: "D&D's" - - utc_offset: 3600000 - country: GB - visibility: public + - country: GB city: Cambridge - timezone: Europe/London - created: 1239218880000 link: 'http://www.meetup.com/CAMDUG/' - rating: 4.59 - description: >- + name: "CAMDUG - Cambridge Developer's User Group" + description: |-

CAMDUG developer's User Group

- -

Camdug is a Cambridge Based community developer group who's primary - goal is to connect great developers and great people (sometimes both - ;-D )! Sometimes we organise some tech events, but mostly chilling out - relaxed sessions where folk can meet and get to make new friends and - meet with old ones.

- -

- +

Camdug is a Cambridge Based community developer group who's primary goal is to connect great developers and great people (sometimes both ;-D )! Sometimes we organise some tech events, but mostly chilling out relaxed sessions where folk can meet and get to make new friends and meet with old ones.

+


- -

Please also checkout some of the other techie meetup groups in - Cambridge; I won't list them here, because each week there's a new - group. Glad you've picked Cambridge as the place to hang out for a bit, - and we look forward to meeting you some time,

cheers,
-
the dev guys in Cambridge. 

- -

p.s. if you're looking to start your own meetup group in Cambridge, - we'll help you get the message out.

+

Please also checkout some of the other techie meetup groups in Cambridge; I won't list them here, because each week there's a new group. Glad you've picked Cambridge as the place to hang out for a bit, and we look forward to meeting you some time,

cheers,

the dev guys in Cambridge. 

+

p.s. if you're looking to start your own meetup group in Cambridge, we'll help you get the message out.

lon: 0.12999999523162842 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/6/3/8/e/highres_433825486.jpeg' - photo_id: 433825486 photo_link: 'http://photos3.meetupstatic.com/photos/event/6/3/8/e/600_433825486.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/6/3/8/e/thumb_433825486.jpeg' - join_mode: approval - organizer: - member_id: 9298700 - name: Alan - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/4/8/6/highres_248750310.jpeg' - photo_id: 248750310 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/4/8/6/member_248750310.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/4/8/6/thumb_248750310.jpeg' - members: 409 - name: "CAMDUG - Cambridge Developer's User Group" - state: C3 lat: 52.209999084472656 - who: passionate developers - - utc_offset: 7200000 - country: HU - visibility: public + - country: HU city: Budapest - timezone: Europe/Budapest - created: 1266833878000 link: 'http://www.meetup.com/budapest-js/' - rating: 4.54 + name: BudapestJS description: "

The Budapest JavaScript Meetup aka budapest.js is a local community of JavaScript developers and\_enquirers living in or visiting Budapest.

\n

We're focusing on JavaScript—both server and client side technologies. If you are interested in DOM scripting, you already wrote a bunch of plugins for jQuery or installed a module for node.js, interested in large scale application development, join us, and feel free to bring your talk as well.

\n

Who should join the meetup?

\n\n

Events are English speaking.\_Food and drinks provided at meetups.

\n

Code of Conduct

\n

We stand for a welcoming community

\n

At our meetups we encourage respectful smart conversations that help improvement and inspire innovation. Sexism, racism, and being an asshole in general is not appreciated. If you do so, get prepared to be challenged by meetup members, who will probably ask what's wrong with you.

" lon: 19.079999923706055 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/4/e/2/b/highres_432560011.jpeg' - photo_id: 432560011 photo_link: 'http://photos3.meetupstatic.com/photos/event/4/e/2/b/600_432560011.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/4/e/2/b/thumb_432560011.jpeg' - join_mode: open - organizer: - member_id: 73692122 - name: Gergely Németh - photo: - photo_id: 87597342 - photo_link: 'http://photos2.meetupstatic.com/photos/member/d/f/f/e/member_87597342.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/d/f/f/e/thumb_87597342.jpeg' - members: 1395 - name: BudapestJS lat: 47.5099983215332 - who: JavaScript Ninjas - - utc_offset: 7200000 - country: AT - visibility: public + - country: AT city: Vienna - timezone: Europe/Vienna - created: 1279864490000 link: 'http://www.meetup.com/viennajs/' - rating: 4.5 + name: vienna.js Vienna JavaScript User Group description: "

viennaJS.org is all about JavaScript and sharing your experience! We love client- and server-side JavaScript of all flavors! Whether you use Prototype, jQuery, script.aculo.us, Dojo, Ext.js, Node.js, CommonJS, YUI, or just your own magic creation– feel welcome.

\n

We've a monthly meetup (every last Wednesday of the month) where we have short presentations on JavaScript topics in English– everyone is welcome to join in and do talks and show us new stuff.

\n

Whether you yet need to code your first line of JavaScript, or a world-renown ninja — join us!

\n

For announcements also follow us on Twitter at\_http://twitter.com/viennajs

" lon: 16.3700008392334 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/8/c/c/0/highres_200076032.jpeg' - photo_id: 200076032 photo_link: 'http://photos2.meetupstatic.com/photos/event/8/c/c/0/600_200076032.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/8/c/c/0/thumb_200076032.jpeg' - join_mode: open - organizer: - member_id: 15805011 - name: Franz Enzenhofer - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/2/0/2/d/highres_251708237.jpeg' - photo_id: 251708237 - photo_link: 'http://photos1.meetupstatic.com/photos/member/2/0/2/d/member_251708237.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/2/0/2/d/thumb_251708237.jpeg' - members: 1313 - name: vienna.js Vienna JavaScript User Group lat: 48.220001220703125 - who: JavaScripters - - utc_offset: 7200000 - country: 'NO' - visibility: public + - country: 'NO' city: Oslo - timezone: Europe/Oslo - created: 1284930078000 link: 'http://www.meetup.com/NodeJSOslo/' - rating: 4.33 - description: >- -

A meetup group for people interested in node.js in Oslo.

- -

Keep up with all our activities on http://nodejsoslo.github.io/

+ name: Node.js Oslo + description: |- +

A meetup group for people interested in node.js in Oslo.

+

Keep up with all our activities on http://nodejsoslo.github.io/

lon: 10.75 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/6/0/2/6/highres_448044614.jpeg' - photo_id: 448044614 photo_link: 'http://photos1.meetupstatic.com/photos/event/6/0/2/6/600_448044614.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/6/0/2/6/thumb_448044614.jpeg' - join_mode: open - organizer: - member_id: 7968401 - name: Sveinung Tord Røsaker - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/1/9/1/9/highres_242646425.jpeg' - photo_id: 242646425 - photo_link: 'http://photos3.meetupstatic.com/photos/member/1/9/1/9/member_242646425.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/1/9/1/9/thumb_242646425.jpeg' - members: 604 - name: Node.js Oslo lat: 59.90999984741211 - who: Noders - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE city: Hamburg - timezone: Europe/Berlin - created: 1288631618000 link: 'http://www.meetup.com/hamburg-js/' - rating: 4.53 - description: >- + name: HH.js + description: |-

Welcome to Hamburg.js – the JavaScript Meetup in Hamburg.

- -

We try to meet monthly to talk about all things JavaScript. - Presentations wanted. Get in touch on here or via @hhjs.

- -

+

We try to meet monthly to talk about all things JavaScript. Presentations wanted. Get in touch on here or via @hhjs.

+

lon: 10 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/4/3/8/2/highres_111917282.jpeg' - photo_id: 111917282 photo_link: 'http://photos1.meetupstatic.com/photos/event/4/3/8/2/600_111917282.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/4/3/8/2/thumb_111917282.jpeg' - join_mode: open - organizer: - member_id: 5628955 - name: Martin Kleppe - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/7/a/4/6/highres_50191302.jpeg' - photo_id: 50191302 - photo_link: 'http://photos3.meetupstatic.com/photos/member/7/a/4/6/member_50191302.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/7/a/4/6/thumb_50191302.jpeg' - members: 1277 - name: HH.js lat: 53.54999923706055 - who: JavaScripters - - utc_offset: 3600000 - country: GB - visibility: public + - country: GB city: London - timezone: Europe/London - created: 1314173332000 link: 'http://www.meetup.com/The-Digital-Pond/' - rating: 4.72 + name: The Digital Pond description: '

The world is going digital and so is business! The Digital Pond is an event series and meetup community welcoming all those from a digital discipline and those wanting to learn more or build networks with those within the industry. So whether you are an entrepreneur, business owner, website designer, UX (user-experience) designer, online marketer, web developer or social media guru, enter the pond and meet like-minded professionals.

' lon: -0.10000000149011612 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/9/3/c/8/highres_71737832.jpeg' - photo_id: 71737832 photo_link: 'http://photos3.meetupstatic.com/photos/event/9/3/c/8/600_71737832.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/9/3/c/8/thumb_71737832.jpeg' - join_mode: open - organizer: - member_id: 21587811 - name: Siji Onabanjo - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/5/c/4/6/highres_174203622.jpeg' - photo_id: 174203622 - photo_link: 'http://photos1.meetupstatic.com/photos/member/5/c/4/6/member_174203622.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/5/c/4/6/thumb_174203622.jpeg' - members: 2360 - name: The Digital Pond - state: '17' lat: 51.52000045776367 - who: Digital Ponderers - - utc_offset: 7200000 - country: SE - visibility: public + - country: SE city: Stockholm - timezone: Europe/Stockholm - created: 1318237769000 link: 'http://www.meetup.com/sthlm-js/' - rating: 4.23 - description: >- -

Hi! Great that you found us! We're all about discussing where - JavaScript is heading. Even if its the latest browser tech, hard core - node.js programming or why not a cool Emscripten project?

- -

Do you want to host a meetup? Please fill in the hosting - form!

- -

Would you like to speak at a meetup? We aim for everyone who wants - to speak to get the chance as soon as possible! Fill in this speaking - interest form.

- -

Do you have a great idea for a speaker? We have a form for speaker - ideas!

- -

Do you have this awesome idea we don't have a form for? Contact the - organizers!

+ name: sthlm.js + description: |- +

Hi! Great that you found us! We're all about discussing where JavaScript is heading. Even if its the latest browser tech, hard core node.js programming or why not a cool Emscripten project?

+

Do you want to host a meetup? Please fill in the hosting form!

+

Would you like to speak at a meetup? We aim for everyone who wants to speak to get the chance as soon as possible! Fill in this speaking interest form.

+

Do you have a great idea for a speaker? We have a form for speaker ideas!

+

Do you have this awesome idea we don't have a form for? Contact the organizers!

lon: 18.06999969482422 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/7/d/9/highres_446762009.jpeg' - photo_id: 446762009 photo_link: 'http://photos1.meetupstatic.com/photos/event/7/d/9/600_446762009.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/7/d/9/thumb_446762009.jpeg' - join_mode: open - organizer: - member_id: 14049908 - name: Johannes Edelstam - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/7/7/d/a/highres_108210682.jpeg' - photo_id: 108210682 - photo_link: 'http://photos1.meetupstatic.com/photos/member/7/7/d/a/member_108210682.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/7/7/d/a/thumb_108210682.jpeg' - members: 2480 - name: sthlm.js lat: 59.33000183105469 - who: JavaScripters - - utc_offset: 7200000 - country: CH - visibility: public - city: Lausanne - timezone: Europe/Zurich - created: 1320863641000 - link: 'http://www.meetup.com/jsromandie/' - rating: 4.52 - description: '

Un groupe meetup dédié à toutes les technologies Javascript. Groupe en français.

' - lon: 6.619999885559082 - group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/8/0/7/2/highres_179672882.jpeg' - photo_id: 179672882 - photo_link: 'http://photos3.meetupstatic.com/photos/event/8/0/7/2/600_179672882.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/8/0/7/2/thumb_179672882.jpeg' - join_mode: open - organizer: - member_id: 191568643 - name: Idir IBOUCHICHENE - members: 480 - name: Javascript Romandie - lat: 46.52000045776367 - who: Javascripteurs - - utc_offset: 3600000 - country: GB - visibility: public + - country: GB city: London - timezone: Europe/London - created: 1326121919000 link: 'http://www.meetup.com/London-CoffeeScript/' - rating: 4.42 + name: "London CoffeeScript Users' Group" description: '

This is a group for all software developers who are currently using, or who want to become more involved with, CoffeeScript.

' lon: -0.07999999821186066 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/a/d/e/highres_85082782.jpeg' - photo_id: 85082782 photo_link: 'http://photos3.meetupstatic.com/photos/event/a/d/e/600_85082782.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/a/d/e/thumb_85082782.jpeg' - join_mode: open - organizer: - member_id: 6293324 - name: '@sleepyfox' - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/0/e/6/highres_112729382.jpeg' - photo_id: 112729382 - photo_link: 'http://photos3.meetupstatic.com/photos/member/c/0/e/6/member_112729382.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/0/e/6/thumb_112729382.jpeg' - members: 91 - name: "London CoffeeScript Users' Group" - state: '17' lat: 51.52000045776367 - who: Hackers - - utc_offset: 7200000 - country: NL - visibility: public + - country: NL city: Amsterdam - timezone: Europe/Amsterdam - created: 1326903648000 link: 'http://www.meetup.com/amsnode/' - rating: 4.58 + name: The Amsterdam Node Meetup Group description: "

For anyone interested in Node.js we like to get you all together and share each other's experiences. We plan to have 1 or 2 short presentations every meetup, which will range from introductions to Node, to the philosophy of/behind Node, and actual companies/startups that use Node.js. Feel free to come, whether you're a Node.js veteran with decades of javascript experience or just have an interest to see what happens in Node.js land. And yes, beers will be available.

" lon: 4.889999866485596 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/5/4/1/c/highres_106221532.jpeg' - photo_id: 106221532 photo_link: 'http://photos1.meetupstatic.com/photos/event/5/4/1/c/600_106221532.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/5/4/1/c/thumb_106221532.jpeg' - join_mode: open - organizer: - member_id: 7754397 - name: Coen Stevens - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/e/5/7/3/highres_7738739.jpeg' - photo_id: 7738739 - photo_link: 'http://photos2.meetupstatic.com/photos/member/e/5/7/3/member_7738739.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/e/5/7/3/thumb_7738739.jpeg' - members: 754 - name: The Amsterdam Node Meetup Group lat: 52.369998931884766 - who: Noders - - utc_offset: 3600000 - country: GB - visibility: public + - country: GB city: Bristol - timezone: Europe/London - created: 1334580348000 link: 'http://www.meetup.com/BristolJS/' - rating: 4.86 + name: Bristol JS description: |-

document.write("Hello World".blink())


<a href="http://www.bristoljs.org">www.bristoljs.org</a>

lon: -2.609999895095825 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/1/1/1/b/highres_440884379.jpeg' - photo_id: 440884379 photo_link: 'http://photos2.meetupstatic.com/photos/event/1/1/1/b/600_440884379.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/1/1/1/b/thumb_440884379.jpeg' - join_mode: open - organizer: - member_id: 10792831 - name: Andrew McGregor - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/5/2/1/9/highres_9441017.jpeg' - photo_id: 9441017 - photo_link: 'http://photos1.meetupstatic.com/photos/member/5/2/1/9/member_9441017.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/5/2/1/9/thumb_9441017.jpeg' - members: 896 - name: Bristol JS - state: M3 lat: 51.439998626708984 - who: Members - - utc_offset: 3600000 - country: GB - visibility: public + - country: GB city: London - timezone: Europe/London - created: 1339689894000 link: 'http://www.meetup.com/XMPP-UK-Meetup/' - rating: 4.17 + name: XMPP UK Meetup description: '

This group has been set up to bring together the XMPP/realtime community in London.

' lon: -0.09000000357627869 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/1/4/0/2/highres_214085122.jpeg' - photo_id: 214085122 photo_link: 'http://photos2.meetupstatic.com/photos/event/1/4/0/2/600_214085122.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/1/4/0/2/thumb_214085122.jpeg' - join_mode: open - organizer: - member_id: 51278652 - name: Laura Gill - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/7/7/6/2/highres_83670562.jpeg' - photo_id: 83670562 - photo_link: 'http://photos1.meetupstatic.com/photos/member/7/7/6/2/member_83670562.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/7/7/6/2/thumb_83670562.jpeg' - members: 107 - name: XMPP UK Meetup - state: '17' lat: 51.52000045776367 - who: Members - - utc_offset: 3600000 - country: DE - visibility: public + - country: DE city: Münster - timezone: Europe/Berlin - created: 1344842081000 - link: 'http://www.meetup.com/Monster-on-Rails-Web-Development-Meetup-Muenster/' - rating: 4.88 - description: '

Monster on Rails was originally founded as Ruby on Rails Usergroup Münster. Since there are many corresponding technologies around in Ruby sphere we are dealing many topics like Ruby, Ruby on Rails, Sinatra, Software Architecture, Frontend Performance, Javascript in general, backbone.js, node.js, NoSQL, so on. Usually we meet monthly.

' + link: 'http://www.meetup.com/monster-tech-tales-software-engineering-user-group-muenster/' + name: Monster Tech Tales + description: |- +

"Monster Tech Tales" was originally founded as a Ruby on Rails user group called "Monster on Rails". Over time, the focus changed towards a technology- and development-centered user group that offers a broad variety of different topics, such as (Web-)Technologies, (Web-)Frameworks, Software Architecture, Design Patterns, (No)-SQL DBMS, Programming Paradigms, Agile Development and many more . Usually we meet monthly at the Zweitag office.

+


lon: 7.619999885559082 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/7/1/4/0/highres_148528992.jpeg' - photo_id: 148528992 photo_link: 'http://photos4.meetupstatic.com/photos/event/7/1/4/0/600_148528992.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/7/1/4/0/thumb_148528992.jpeg' - join_mode: open - organizer: - member_id: 126893652 - name: Nicolas Dillmann - photo: - photo_id: 168323642 - photo_link: 'http://photos1.meetupstatic.com/photos/member/5/c/5/a/member_168323642.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/5/c/5/a/thumb_168323642.jpeg' - members: 169 - name: Monster on Rails - Web Development Meetup Münster lat: 51.959999084472656 - who: Devs - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE city: Mannheim - timezone: Europe/Berlin - created: 1345210371000 link: 'http://www.meetup.com/node-js-Mannheim/' - rating: 4.9 + name: node.js Mannheim description: "

Is anyone else using node.js in Mannheim, Frankfurt, Karlsruhe or the Rhein-{Neckar,Main}-Area in general? If so, let's have a beer, talk about projects and share knowledge about this awesome piece of technology! Benutzt noch jemand node.js in Mannheim, Frankfurt, Karlsruhe oder dem Großraum Rhein-Neckar/Rhein-Main? Dann lasst uns ein Bier trinken, über die Projekte sprechen und Wissen zu diesem außerordentlichen Stück Software austauschen!

" lon: 8.470000267028809 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/9/2/e/c/highres_151237612.jpeg' - photo_id: 151237612 photo_link: 'http://photos3.meetupstatic.com/photos/event/9/2/e/c/600_151237612.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/9/2/e/c/thumb_151237612.jpeg' - join_mode: open - organizer: - member_id: 17413531 - name: Andreas Lappe - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/7/4/b/9/highres_15689881.jpeg' - photo_id: 15689881 - photo_link: 'http://photos2.meetupstatic.com/photos/member/7/4/b/9/member_15689881.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/7/4/b/9/thumb_15689881.jpeg' - members: 320 - name: node.js Mannheim lat: 49.5 - who: js-poets - - utc_offset: 7200000 - country: NL - visibility: public + - country: NL city: Amsterdam - timezone: Europe/Amsterdam - created: 1347366795000 link: 'http://www.meetup.com/AmsterdamJS/' - rating: 4.58 + name: AmsterdamJS description: "

Calling all JavaScript developers in Amsterdam!

\n

AmsterdamJS is back and more alive than ever. We are hoping to create a big JavaScript community in Amsterdam that reflects the vibrant tech scene of the city.

\n

Every month we organize a meetup with amazing talks, great developers and snacks and drinks to go with it. If you want to give a talk about your project, or whatever interests you that is related to JavaScript, just give us a shout!

\n

\_

\n

Do you want to speak at AmsterdamJS?

\n

We'd love to know what you are passionate about! Speaking at AmsterdamJS is easy, just fill up the following form and we'll take a look at it:

\n

https://docs.google.com/forms/d/1JqfozjbITrOMN0Eq1886nS8gjgGmZg5ZQBFSflQ7NBU/viewform

" lon: 4.889999866485596 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/2/a/0/0/highres_158110752.jpeg' - photo_id: 158110752 photo_link: 'http://photos1.meetupstatic.com/photos/event/2/a/0/0/600_158110752.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/2/a/0/0/thumb_158110752.jpeg' - join_mode: open - organizer: - member_id: 11101309 - name: Sergi - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/5/2/0/2/highres_8480994.jpeg' - photo_id: 8480994 - photo_link: 'http://photos3.meetupstatic.com/photos/member/5/2/0/2/member_8480994.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/5/2/0/2/thumb_8480994.jpeg' - members: 1229 - name: AmsterdamJS lat: 52.369998931884766 - who: JavaScripters - - utc_offset: 7200000 - country: BE - visibility: public + - country: BE city: Brussels - timezone: Europe/Brussels - created: 1349686112000 link: 'http://www.meetup.com/Belgian-node-js-User-Group/' - rating: 4.52 + name: Belgian node.js User Group description: '

This node.js user group gathers the belgian node.js developers so we can improve our skill set and build kick-ass amazing apps.

' lon: 4.329999923706055 - join_mode: open - organizer: - member_id: 7905923 - name: Steven Beeckman - photo: - photo_id: 36501432 - photo_link: 'http://photos4.meetupstatic.com/photos/member/5/3/b/8/member_36501432.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/5/3/b/8/thumb_36501432.jpeg' - members: 723 - name: Belgian node.js User Group lat: 50.83000183105469 - who: belgian node.js developers - - utc_offset: 7200000 - country: FR - visibility: public + - country: FR city: Bordeaux - timezone: Europe/Paris - created: 1350742319000 link: 'http://www.meetup.com/BordeauxJS/' - rating: 4.54 + name: BordeauxJS description: '

User group JavaScript à Bordeaux : réunions, discussions et live coding entre gens en asynchrone.

' lon: -0.5799999833106995 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/a/e/b/2/highres_170804722.jpeg' - photo_id: 170804722 photo_link: 'http://photos1.meetupstatic.com/photos/event/a/e/b/2/600_170804722.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/a/e/b/2/thumb_170804722.jpeg' - join_mode: open - organizer: - member_id: 29227392 - name: David Bruant - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/e/4/b/8/highres_79918552.jpeg' - photo_id: 79918552 - photo_link: 'http://photos1.meetupstatic.com/photos/member/e/4/b/8/member_79918552.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/e/4/b/8/thumb_79918552.jpeg' - members: 357 - name: BordeauxJS lat: 44.84000015258789 - who: Membres - - utc_offset: 3600000 - country: GB - visibility: public + - country: GB city: Cambridge - timezone: Europe/London - created: 1352238915000 link: 'http://www.meetup.com/JavaScript-Cambridge/' - rating: 4.9 - description: >- -

It's time Cambridge woke up to the power of JavaScript & - NodeJS!

- -

We are a friendly group who meet monthly to discuss the JavaScript - and NodeJS ecosystem.  Each month we have one or two talks by - guest speakers or our own members.

- + name: 'JavaScript & NodeJS Cambridge' + description: |- +

It's time Cambridge woke up to the power of JavaScript & NodeJS!

+

We are a friendly group who meet monthly to discuss the JavaScript and NodeJS ecosystem.  Each month we have one or two talks by guest speakers or our own members.

All skill levels very welcome!

lon: 0.14000000059604645 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/9/c/1/b/highres_432579963.jpeg' - photo_id: 432579963 photo_link: 'http://photos3.meetupstatic.com/photos/event/9/c/1/b/600_432579963.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/9/c/1/b/thumb_432579963.jpeg' - join_mode: open - organizer: - member_id: 10433932 - name: Joe Parry - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/c/a/8/c/highres_38811852.jpeg' - photo_id: 38811852 - photo_link: 'http://photos3.meetupstatic.com/photos/member/c/a/8/c/member_38811852.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/c/a/8/c/thumb_38811852.jpeg' - members: 452 - name: 'JavaScript & NodeJS Cambridge' - state: C3 lat: 52.20000076293945 - who: JavaScripters - - utc_offset: 7200000 - country: FR - visibility: public + - country: FR city: Paris - timezone: Europe/Paris - created: 1353764560000 link: 'http://www.meetup.com/Couchbase-France/' - rating: 4.62 + name: Couchbase France description: '

Un groupe pour se retrouver entre passionnés de Couchbase et NosQL en général...

' lon: 2.3399999141693115 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/1/7/a/f/highres_438186063.jpeg' - photo_id: 438186063 photo_link: 'http://photos2.meetupstatic.com/photos/event/1/7/a/f/600_438186063.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/1/7/a/f/thumb_438186063.jpeg' - join_mode: open - organizer: - member_id: 182540881 - name: Couchbase - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/6/9/8/8/highres_241767016.jpeg' - photo_id: 241767016 - photo_link: 'http://photos1.meetupstatic.com/photos/member/6/9/8/8/member_241767016.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/6/9/8/8/thumb_241767016.jpeg' - members: 300 - name: Couchbase France lat: 48.86000061035156 - who: Membres - - utc_offset: 7200000 - country: SE - visibility: public + - country: SE city: Stockholm - timezone: Europe/Stockholm - created: 1354718257000 link: 'http://www.meetup.com/Instrumenthack/' - rating: 4.83 + name: 'Instrumenthack!' description: "

A group dedicated to some of the best things in life: art, code, audio and hardware. We will have meetupsmet at Plan8's studios in the old fire station on södermalm. We will have some hardware and a lot of instruments to hack available.

\n

The idea of this group is to come up with prototypes using instruments and maybe also some of the exciting audio API out there, such as Web Audio, Echonest, Spotify, Last FM etc.\_Basically everything related to interactive audio. That and of course to meet other interested in the same thing.

\n

Sounds like fun, right?!

" lon: 18.06999969482422 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/6/0/4/c/highres_209604652.jpeg' - photo_id: 209604652 photo_link: 'http://photos3.meetupstatic.com/photos/event/6/0/4/c/600_209604652.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/6/0/4/c/thumb_209604652.jpeg' - join_mode: open - organizer: - member_id: 71597812 - name: Tor Castensson - photo: - photo_id: 84704112 - photo_link: 'http://photos2.meetupstatic.com/photos/member/a/c/5/0/member_84704112.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/a/c/5/0/thumb_84704112.jpeg' - members: 265 - name: 'Instrumenthack!' lat: 59.33000183105469 - who: AudioHackers - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE city: Berlin - timezone: Europe/Berlin - created: 1357988294000 link: 'http://www.meetup.com/backend/' - rating: 4.58 + name: Backend Web Berlin description: "

Calling all Developers who works hard on amazing features that stays behind the visible face of various web projects. If you want to share your huge experience or just learn some new stuff, you are welcomed to participate.

\n

The idea is not to rely on one certain programming language or technology, since in most projects we are using many different languages, technologies and solutions.

\n" lon: 13.380000114440918 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/3/1/1/2/highres_196092562.jpeg' - photo_id: 196092562 photo_link: 'http://photos3.meetupstatic.com/photos/event/3/1/1/2/600_196092562.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/3/1/1/2/thumb_196092562.jpeg' - join_mode: open - organizer: - member_id: 71003052 - name: Andrii Gakhov - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/9/2/7/d/highres_243697501.jpeg' - photo_id: 243697501 - photo_link: 'http://photos1.meetupstatic.com/photos/member/9/2/7/d/member_243697501.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/9/2/7/d/thumb_243697501.jpeg' - members: 747 - name: Backend Web Berlin lat: 52.52000045776367 - who: Backend Developers - - utc_offset: 10800000 - country: EE - visibility: public + - country: EE city: Tallinn - timezone: Europe/Tallinn - created: 1358500834000 link: 'http://www.meetup.com/Node-js-Tallinn/' - rating: 4.81 + name: Node.js Tallinn description: "

// node.js developers and hackers Tallinn meetup group

\n

Goal of the group is to engage Node.js developers community and spread the word about Node.js in Estonia. Explore what Node.js technology can do and network with fellow Node.js developers, discuss about Node.js projects, experience, hacks and tools.

\n

Who should join?

\n

Node.js and JavaScript programmers, enthusiasts and hackers; Technologists interested in event based I/O; \_Start-ups / organisations evaluating Node.js and related technologies.\_
\n\n
\n\n What to expect?
\n\n regular meet-ups, networking, hackathons, demos, sessions, snacks & drinks.

" lon: 24.739999771118164 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/1/4/7/0/highres_196505232.jpeg' - photo_id: 196505232 photo_link: 'http://photos3.meetupstatic.com/photos/event/1/4/7/0/600_196505232.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/1/4/7/0/thumb_196505232.jpeg' - join_mode: open - organizer: - member_id: 14632661 - name: Rait Ojasaar - photo: - photo_id: 12717748 - photo_link: 'http://photos2.meetupstatic.com/photos/member/e/1/9/4/member_12717748.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/e/1/9/4/thumb_12717748.jpeg' - members: 207 - name: Node.js Tallinn lat: 59.439998626708984 - who: Nodes - - utc_offset: 10800000 - country: TR - visibility: public + - country: TR city: Istanbul - timezone: Europe/Istanbul - created: 1358691631000 link: 'http://www.meetup.com/Istanbul-Hackers/' - rating: 4.7 + name: Istanbul Coders description: "

If you believe in Software Craftsmanship, Agile movement, DevOps movement, Continuous Delivery, and turning your ideas into steady startups, this is the right group for you. I'll try to organize at least one meetup, potentially more meetups every week starting February '13. There will be plenty of activities in the future from live-coding sessions to one-day conferences, from various tutorials sessions to heated community discussions.

\n

Please find more info on http://istanbulcoders.org or http://github.com/istanbul-coders

\n

If you believe in these values and you think you can also contribute, please come and support our group.

\n

-----------------

\n

Bu grup, bunlari baslatmanin ve ileride daha bir cok grubun kurulmasina vesile olacak cabalarin bir baslangici olmasini hedefleyerek baslattigim bir calisma. Eger siz de Yazilim Sanatkarligina, Cevik Yazilim Gelistirmeye, Gelistirici Operasyon hareketine, Durmaksizin Dagitima, ve fikirlerinizi kendi kendine yeten kobilere donusturmeye inaniyorsaniz, dogru yerdesiniz. Ben gucum yettigince Subat '13 ten sonra her hafta en az bir organizasyon yapmaya calisacagim. Su an icin planladigim bir suru temel aktivite var, canli kodlamalar dan, bir gunluk konferanslara, egitimlerden uretken tartismalara kadar bir cok aktivite.

\n

Lutfen daha fazla bilgi icin\_http://istanbulcoders.org veya http://github.com/istanbul-coders sitesini ziyaret edin.

\n

Siz de eger bu degerlere inaniyorsaniz, iciniz kipir kipir oluyorsa, lutfen siz de katilin ve grubumuza destek verin.

\n

Sincerely / Saygilarimla,

\n

-Isa

" lon: 28.959999084472656 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/b/a/1/a/highres_309347642.jpeg' - photo_id: 309347642 photo_link: 'http://photos1.meetupstatic.com/photos/event/b/a/1/a/600_309347642.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/b/a/1/a/thumb_309347642.jpeg' - join_mode: open - organizer: - member_id: 14464389 - name: Isa Goksu - photo: - photo_id: 92540082 - photo_link: 'http://photos2.meetupstatic.com/photos/member/4/e/7/2/member_92540082.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/4/e/7/2/thumb_92540082.jpeg' - members: 1589 - name: Istanbul Coders lat: 41.0099983215332 - who: Hacker - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE city: München - timezone: Europe/Berlin - created: 1358933383000 link: 'http://www.meetup.com/Ember-js-Munich/' - rating: 4.8 + name: Ember.js Munich description: '

The Munich Ember.js Meetup. We meet roughly every 2 months.

' lon: 11.579999923706055 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/4/1/0/6/highres_441256646.jpeg' - photo_id: 441256646 photo_link: 'http://photos3.meetupstatic.com/photos/event/4/1/0/6/600_441256646.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/4/1/0/6/thumb_441256646.jpeg' - join_mode: open - organizer: - member_id: 50994002 - name: Marco Otte-Witte - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/9/2/b/a/highres_181417562.jpeg' - photo_id: 181417562 - photo_link: 'http://photos3.meetupstatic.com/photos/member/9/2/b/a/member_181417562.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/9/2/b/a/thumb_181417562.jpeg' - members: 278 - name: Ember.js Munich lat: 48.13999938964844 - who: mEmbers - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE city: München - timezone: Europe/Berlin - created: 1359352805000 link: 'http://www.meetup.com/Munich-Node-js-User-Group/' - rating: 4.68 - description: >- -

MNUG is a user group of server-side JavaScript users (amateurs, - journeymen and hackers). We meet every 2nd month to discuss topics on - NodeJS, server-side JavaScript and related technologies like MongoDB - and CouchDB. Meetings take place (almost) on each first Thursday at - 19:00 on different locations. We established in October 2011 in - Munich.

- -

Follow us on Twitter

+ name: Munich Node.js User Group + description: |- +

MNUG is a user group of server-side JavaScript users (amateurs, journeymen and hackers). We meet every 2nd month to discuss topics on NodeJS, server-side JavaScript and related technologies like MongoDB and CouchDB. Meetings take place (almost) on each first Thursday at 19:00 on different locations. We established in October 2011 in Munich.

+

Follow us on Twitter

lon: 11.579999923706055 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/6/d/7/6/highres_201268022.jpeg' - photo_id: 201268022 photo_link: 'http://photos2.meetupstatic.com/photos/event/6/d/7/6/600_201268022.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/6/d/7/6/thumb_201268022.jpeg' - join_mode: open - organizer: - member_id: 41694382 - name: Christoph Stock - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/5/2/b/4/highres_46041172.jpeg' - photo_id: 46041172 - photo_link: 'http://photos4.meetupstatic.com/photos/member/5/2/b/4/member_46041172.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/5/2/b/4/thumb_46041172.jpeg' - members: 820 - name: Munich Node.js User Group lat: 48.13999938964844 - who: Nodehackers - - utc_offset: 7200000 - country: SE - visibility: public + - country: SE city: Stockholm - timezone: Europe/Stockholm - created: 1359622808000 link: 'http://www.meetup.com/Stockholm-Node-js/' - rating: 4.13 + name: Stockholm Node.js description: "

This group is for anyone interested in Node.js. We will share experiences on using or developing npm libraries and best practices. Let us know if you have something Node.js related you'd like to share or come with suggestions on topics that you want to learn about.

" lon: 18.06999969482422 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/b/d/3/a/highres_200448442.jpeg' - photo_id: 200448442 photo_link: 'http://photos4.meetupstatic.com/photos/event/b/d/3/a/600_200448442.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/b/d/3/a/thumb_200448442.jpeg' - join_mode: open - organizer: - member_id: 86619852 - name: Ellie Engström - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/4/2/9/2/highres_197357042.jpeg' - photo_id: 197357042 - photo_link: 'http://photos3.meetupstatic.com/photos/member/4/2/9/2/member_197357042.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/4/2/9/2/thumb_197357042.jpeg' - members: 768 - name: Stockholm Node.js lat: 59.33000183105469 - who: Callbacks - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE city: Hamburg - timezone: Europe/Berlin - created: 1359732368000 link: 'http://www.meetup.com/Riak-Hamburg/' - rating: 4.92 + name: 'Riak Hamburg!' description: '

A Hamburg based meet-Up for those interested in Riak, distributed systems, NoSQL, and app development.

' lon: 10 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/d/2/2/highres_200643362.jpeg' - photo_id: 200643362 photo_link: 'http://photos1.meetupstatic.com/photos/event/d/2/2/600_200643362.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/d/2/2/thumb_200643362.jpeg' - join_mode: open - organizer: - member_id: 140545442 - name: Basho - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/b/4/e/8/highres_188566312.jpeg' - photo_id: 188566312 - photo_link: 'http://photos1.meetupstatic.com/photos/member/b/4/e/8/member_188566312.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/b/4/e/8/thumb_188566312.jpeg' - members: 52 - name: 'Riak Hamburg!' lat: 53.54999923706055 - who: Riaktors - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE city: Berlin - timezone: Europe/Berlin - created: 1360959165000 link: 'http://www.meetup.com/Meteor-Berlin/' - rating: 4.74 + name: Meteor Berlin description: "

Meet other developers using Meteor. Share your knowledge, apps, and get feedback from others. Meteor is an open-source platform for building top-quality web apps in a fraction of the time, whether you're an expert developer or just getting started.

" lon: 13.380000114440918 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/3/c/9/8/highres_398355512.jpeg' - photo_id: 398355512 photo_link: 'http://photos4.meetupstatic.com/photos/event/3/c/9/8/600_398355512.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/3/c/9/8/thumb_398355512.jpeg' - join_mode: open - organizer: - member_id: 81670332 - name: Nick Coe - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/highres_245331334.jpeg' - photo_id: 245331334 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/8/8/6/member_245331334.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/thumb_245331334.jpeg' - members: 780 - name: Meteor Berlin lat: 52.52000045776367 - who: Meteorites - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE city: München - timezone: Europe/Berlin - created: 1361359078000 link: 'http://www.meetup.com/Meteor-Munich/' - rating: 4.85 + name: Meteor Munich description: |-

<p>Meet other developers using <a href="

http://meteor.com

">Meteor</a>. Share your knowledge, apps, and get feedback from others. Meteor is an open-source platform for building top-quality web apps in a fraction of the time, whether you're an expert developer or just getting started.</p>

lon: 11.579999923706055 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/d/5/9/1/highres_438294673.jpeg' - photo_id: 438294673 photo_link: 'http://photos3.meetupstatic.com/photos/event/d/5/9/1/600_438294673.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/d/5/9/1/thumb_438294673.jpeg' - join_mode: open - organizer: - member_id: 81670332 - name: Nick Coe - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/3/a/4/e/highres_246794926.jpeg' - photo_id: 246794926 - photo_link: 'http://photos2.meetupstatic.com/photos/member/3/a/4/e/member_246794926.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/a/4/e/thumb_246794926.jpeg' - members: 312 - name: Meteor Munich lat: 48.13999938964844 - who: Meteroiten - - utc_offset: 7200000 - country: IT - visibility: public + - country: ES + city: Madrid + link: 'http://www.meetup.com/AngularJS_Madrid/' + name: AngularJS Madrid + description: '

Grupo de interés sobre AngularJS localizado en Madrid

' + lon: -3.7100000381469727 + group_photo: + photo_link: 'http://photos1.meetupstatic.com/photos/event/7/7/4/9/600_436590537.jpeg' + lat: 40.41999816894531 + - country: IT city: Torino - timezone: Europe/Rome - created: 1362082793000 link: 'http://www.meetup.com/Meteor-Italia/' - rating: 4.88 + name: Meteor Italia description: '

Un luogo di incontro, di confronto e di studio per web developer interessati al framework Meteor.js, ma in generale per tutti gli appassionati di sviluppo applicazioni web HTML5 e Javascript client-side e server-side.

' lon: 7.670000076293945 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/9/4/2/2/highres_424897922.jpeg' - photo_id: 424897922 photo_link: 'http://photos4.meetupstatic.com/photos/event/9/4/2/2/600_424897922.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/9/4/2/2/thumb_424897922.jpeg' - join_mode: open - organizer: - member_id: 82673852 - name: Roberto Ferro - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/d/0/a/e/highres_100913422.jpeg' - photo_id: 100913422 - photo_link: 'http://photos2.meetupstatic.com/photos/member/d/0/a/e/member_100913422.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/d/0/a/e/thumb_100913422.jpeg' - members: 109 - name: Meteor Italia - state: TO lat: 45.04999923706055 - who: Meteoriti - - utc_offset: 7200000 - country: IT - visibility: public + - country: IT city: Torino - timezone: Europe/Rome - created: 1362095559000 link: 'http://www.meetup.com/Torino-JS/' - rating: 4.67 + name: Torino JS description: '

Javascript, the most misunderstood language of all time ;-)

' lon: 7.670000076293945 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/3/1/6/2/highres_209532642.jpeg' - photo_id: 209532642 photo_link: 'http://photos1.meetupstatic.com/photos/event/3/1/6/2/600_209532642.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/3/1/6/2/thumb_209532642.jpeg' - join_mode: open - organizer: - member_id: 82673852 - name: Roberto Ferro - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/d/0/a/e/highres_100913422.jpeg' - photo_id: 100913422 - photo_link: 'http://photos2.meetupstatic.com/photos/member/d/0/a/e/member_100913422.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/d/0/a/e/thumb_100913422.jpeg' - members: 95 - name: Torino JS - state: TO lat: 45.04999923706055 - who: Sviluppatori Javascript - - utc_offset: 3600000 - country: GB - visibility: public + - country: GB city: London - timezone: Europe/London - created: 1364413212000 link: 'http://www.meetup.com/Stripe-London/' - rating: 4.5 + name: 'The Stripe Meetup Group: London' description: '

Meet the Stripe team and members of the Stripe community in London.

' lon: -0.12999999523162842 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/8/6/9/e/highres_218494462.jpeg' - photo_id: 218494462 photo_link: 'http://photos4.meetupstatic.com/photos/event/8/6/9/e/600_218494462.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/8/6/9/e/thumb_218494462.jpeg' - join_mode: open - organizer: - member_id: 10429777 - name: Brian Collins - photo: - photo_id: 100583312 - photo_link: 'http://photos1.meetupstatic.com/photos/member/5/b/1/0/member_100583312.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/5/b/1/0/thumb_100583312.jpeg' - members: 127 - name: 'The Stripe Meetup Group: London' - state: '17' lat: 51.5099983215332 - who: Stripes - - utc_offset: 7200000 - country: SI - visibility: public + - country: SI city: Ljubljana - timezone: Europe/Ljubljana - created: 1364819127000 link: 'http://www.meetup.com/Ljubljana-JavaScript-User-Group/' - rating: 4.63 + name: Ljubljana JavaScript User Group description: '

So many JavaScript programmers in Ljubljana, so few events dedicated to this lovely thing many people love to hate ... We should fix that.

' lon: 14.510000228881836 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/c/1/e/a/highres_343849642.jpeg' - photo_id: 343849642 photo_link: 'http://photos1.meetupstatic.com/photos/event/c/1/e/a/600_343849642.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/c/1/e/a/thumb_343849642.jpeg' - join_mode: open - organizer: - member_id: 14134208 - name: Swizec Teller - photo: - photo_id: 33610402 - photo_link: 'http://photos4.meetupstatic.com/photos/member/2/8/a/2/member_33610402.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/2/8/a/2/thumb_33610402.jpeg' - members: 474 - name: Ljubljana JavaScript User Group lat: 46.060001373291016 - who: Coders - - utc_offset: 7200000 - country: IT - visibility: public + - country: IT city: Napoli - timezone: Europe/Rome - created: 1364934291000 link: 'http://www.meetup.com/GDGCampania/' + name: GDG Campania description: "

Il Google Developer Group Campania è la community ufficiale di Google più attiva d'Italia e lavora costantemente con le tecnologie Google, con l'obiettivo di creare un club d'eccellenza in cui sviluppatori, aziende, studenti e tutti gli appassionati di queste tecnologie possano ritrovarsi per condividere discussioni, raccogliere esperienze, organizzare eventi.

" lon: 14.25 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/7/5/f/7/highres_442290199.jpeg' - photo_id: 442290199 photo_link: 'http://photos1.meetupstatic.com/photos/event/7/5/f/7/600_442290199.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/7/5/f/7/thumb_442290199.jpeg' - join_mode: open - organizer: - member_id: 15181151 - name: Patrick Guido Arminio - photo: - photo_id: 107984392 - photo_link: 'http://photos2.meetupstatic.com/photos/member/a/d/6/8/member_107984392.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/a/d/6/8/thumb_107984392.jpeg' - members: 100 - name: GDG Campania - state: NA lat: 40.84000015258789 - who: gdgers - - utc_offset: 3600000 - country: GB - visibility: public + - country: GB city: Leeds - timezone: Europe/London - created: 1365016618000 link: 'http://www.meetup.com/LeedsJS/' - rating: 4.55 + name: Leeds JS description: "

Leeds JS is a user group in that meets in Leeds on the last Wednesday of every month. Join us for free food, a beer, prizes and to meet a great bunch of people.

\n

The goal of this user group is to form a community for Javascript in Leeds. Most technical companies now have to use javascript in some way and the demand is growing with every new framework and NodeJS release. We want to be a place were any developer can come for advice, to show off what they're working on or to just talk about the news (and drama) in the wider Javascript community.

\n

This user group is for the community! If you ever want to pitch in or have an idea just get in touch via twitter https://twitter.com/leedsjs

\n

Things to expect from this meet up:

\n \n

Good stuff, we hope to see you at the next meet =)

\n

We also now have a website and blog running on the NodeJS blogging engine Ghost. Check it out at leedsjs.com

\n

Please note the group is intended for developers looking to expand their knowledge in a recruiter free zone only so whilst interest from recruitment consultants is nice we have a no recruiters policy.

" lon: -1.5399999618530273 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/7/c/5/9/highres_433591833.jpeg' - photo_id: 433591833 photo_link: 'http://photos1.meetupstatic.com/photos/event/7/c/5/9/600_433591833.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/7/c/5/9/thumb_433591833.jpeg' - join_mode: open - organizer: - member_id: 58700302 - name: Chris Manson - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/6/c/e/0/highres_108447872.jpeg' - photo_id: 108447872 - photo_link: 'http://photos3.meetupstatic.com/photos/member/6/c/e/0/member_108447872.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/6/c/e/0/thumb_108447872.jpeg' - members: 570 - name: Leeds JS - state: '45' lat: 53.790000915527344 - who: Javascripters - - utc_offset: 7200000 - country: 'NO' - visibility: public + - country: 'NO' city: Bergen - timezone: Europe/Oslo - created: 1365684000000 link: 'http://www.meetup.com/BergenJS/' - rating: 4.65 + name: BergenJS description: '

BergenJS exists to build a stronger developer community in Bergen, specifically in the areas of modern web technologies.

' lon: 5.340000152587891 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/7/f/3/f/highres_438212575.jpeg' - photo_id: 438212575 photo_link: 'http://photos1.meetupstatic.com/photos/event/7/f/3/f/600_438212575.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/7/f/3/f/thumb_438212575.jpeg' - join_mode: open - organizer: - member_id: 41128302 - name: Raymond Julin - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/2/e/8/highres_197293032.jpeg' - photo_id: 197293032 - photo_link: 'http://photos2.meetupstatic.com/photos/member/3/2/e/8/member_197293032.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/2/e/8/thumb_197293032.jpeg' - members: 155 - name: BergenJS lat: 60.380001068115234 - who: Developers - - utc_offset: 7200000 - country: NL - visibility: public + - country: NL city: Amsterdam - timezone: Europe/Amsterdam - created: 1366290842000 link: 'http://www.meetup.com/JavaScript-MVC-Meetup-Amsterdam/' - rating: 4.55 - description: >- -

We are a group of JavaScript enthusiast - specifically interested in JavaScript MVC frameworks. - Every JS developer has more or less the same questions when setting up - a new web application.

- + name: JavaScript MVC Meetup Amsterdam + description: |- +

We are a group of JavaScript enthusiast specifically interested in JavaScript MVC frameworks. Every JS developer has more or less the same questions when setting up a new web application.

- -

With this group we want to organize a nice evening every - month, to discuss the pros and cons of various front-end JS frameworks - and share some real life experience with the community.

+

With this group we want to organize a nice evening every month, to discuss the pros and cons of various front-end JS frameworks and share some real life experience with the community.

lon: 4.889999866485596 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/4/d/a/highres_227101242.jpeg' - photo_id: 227101242 photo_link: 'http://photos3.meetupstatic.com/photos/event/4/d/a/600_227101242.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/4/d/a/thumb_227101242.jpeg' - join_mode: open - organizer: - member_id: 57979112 - name: Niels Dequeker - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/4/1/2/2/highres_243676674.jpeg' - photo_id: 243676674 - photo_link: 'http://photos2.meetupstatic.com/photos/member/4/1/2/2/member_243676674.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/4/1/2/2/thumb_243676674.jpeg' - members: 862 - name: JavaScript MVC Meetup Amsterdam lat: 52.369998931884766 - who: JavaScript enthusiasts - - utc_offset: 7200000 - country: NL - visibility: public + - country: NL city: Groningen - timezone: Europe/Amsterdam - created: 1366396499000 link: 'http://www.meetup.com/Functional-Groningen/' - rating: 4.66 - description: >- -

Functional Groningen focuses on the creation of a functional - programming community in the northern of the Netherlands.

- -

http://functional-groningen.nl/

+ name: Functional Groningen + description: |- +

Functional Groningen focuses on the creation of a functional programming community in the northern of the Netherlands.

+

http://functional-groningen.nl/

lon: 6.570000171661377 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/4/5/e/e/highres_226637902.jpeg' - photo_id: 226637902 photo_link: 'http://photos4.meetupstatic.com/photos/event/4/5/e/e/600_226637902.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/4/5/e/e/thumb_226637902.jpeg' - join_mode: open - organizer: - member_id: 70381822 - name: Gideon de Kok - photo: - photo_id: 83041732 - photo_link: 'http://photos4.meetupstatic.com/photos/member/6/c/4/member_83041732.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/6/c/4/thumb_83041732.jpeg' - members: 73 - name: Functional Groningen lat: 53.22999954223633 - who: Hackers - - utc_offset: 7200000 - country: SE - visibility: public + - country: SE city: Göteborg - timezone: Europe/Stockholm - created: 1367654765000 link: 'http://www.meetup.com/gbgnodejs/' - rating: 4.62 - description: >- -

We are about spreading the knowledge and best practices of - Node.js.

- -

There are >29k npm modules at time of writing, the node - community is thriving!

- -

If you use Node.js or even have a beginner's interest, come - join us and be a part of the latest and greatest from Node.

- + name: 'Göteborg, Node.js' + description: |- +

We are about spreading the knowledge and best practices of Node.js.

+

There are >29k npm modules at time of writing, the node community is thriving!

+

If you use Node.js or even have a beginner's interest, come join us and be a part of the latest and greatest from Node.

;

lon: 12.010000228881836 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/c/6/b/8/highres_376190872.jpeg' - photo_id: 376190872 photo_link: 'http://photos4.meetupstatic.com/photos/event/c/6/b/8/600_376190872.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/c/6/b/8/thumb_376190872.jpeg' - join_mode: open - organizer: - member_id: 10746144 - name: James Kyburz - photo: - photo_id: 39963742 - photo_link: 'http://photos1.meetupstatic.com/photos/member/e/9/e/member_39963742.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/e/9/e/thumb_39963742.jpeg' - members: 364 - name: 'Göteborg, Node.js' lat: 57.720001220703125 - who: Noders - - utc_offset: 7200000 - country: SE - visibility: public + - country: SE city: Stockholm - timezone: Europe/Stockholm - created: 1367850446000 link: 'http://www.meetup.com/Sthlm-Viaplay-Tech-Group/' - rating: 4.66 + name: Viaplay Tech Group description: '

The Sthlm Viaplay Tech Group brings people together to talk about web development, online video streaming and other interesting stuff.

' lon: 18.06999969482422 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/5/4/a/d/highres_440601677.jpeg' - photo_id: 440601677 photo_link: 'http://photos3.meetupstatic.com/photos/event/5/4/a/d/600_440601677.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/5/4/a/d/thumb_440601677.jpeg' - join_mode: open - organizer: - member_id: 48125852 - name: Mohan Pakkurti - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/2/7/3/a/highres_54490042.jpeg' - photo_id: 54490042 - photo_link: 'http://photos1.meetupstatic.com/photos/member/2/7/3/a/member_54490042.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/2/7/3/a/thumb_54490042.jpeg' - members: 219 - name: Viaplay Tech Group lat: 59.33000183105469 - who: Viaplayers - - utc_offset: 7200000 - country: FR - visibility: public + - country: FR city: Paris - timezone: Europe/Paris - created: 1368738946000 link: 'http://www.meetup.com/AngularJS-Paris/' - rating: 4.39 + name: AngularJS Paris description: "

If you love AngularJS and live in or around Paris, join us!

\n

Proposez vos sujets :\_http://goo.gl/JQyNWi

" lon: 2.3399999141693115 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/4/7/8/8/highres_424158312.jpeg' - photo_id: 424158312 photo_link: 'http://photos3.meetupstatic.com/photos/event/4/7/8/8/600_424158312.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/4/7/8/8/thumb_424158312.jpeg' - join_mode: open - organizer: - member_id: 41761922 - name: Patrick Aljord - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/8/c/8/4/highres_99035972.jpeg' - photo_id: 99035972 - photo_link: 'http://photos3.meetupstatic.com/photos/member/8/c/8/4/member_99035972.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/8/c/8/4/thumb_99035972.jpeg' - members: 2976 - name: AngularJS Paris lat: 48.86000061035156 - who: Angularians - - utc_offset: 7200000 - country: DK - visibility: public + - country: DK city: Copenhagen - timezone: Europe/Copenhagen - created: 1371454595000 link: 'http://www.meetup.com/Copenhagen-Node-js-Hackathon/' - rating: 4.81 + name: Copenhagen Node.js Hackathon description: "

Do you want to meet, share knowledge and work with other node.js hackers in Copenhagen? We are a group of node developers from Copenhagen who want to collaborate on cool projects. It doesn't matter if you are new to node or a pro. Our goal is that everybody should be able to get something out of the hackathons. You are free to work on your own projects or team up with others - just show up and have fun!

" lon: 12.569999694824219 - join_mode: open - organizer: - member_id: 61255052 - name: Thomas Watson - photo: - photo_id: 125666802 - photo_link: 'http://photos4.meetupstatic.com/photos/member/6/8/b/2/member_125666802.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/6/8/b/2/thumb_125666802.jpeg' - members: 516 - name: Copenhagen Node.js Hackathon lat: 55.68000030517578 - who: Hackers - - utc_offset: 7200000 - country: FR - visibility: public + - country: FR city: Paris - timezone: Europe/Paris - created: 1372328455000 link: 'http://www.meetup.com/Nodejs-Paris/' - rating: 4.55 - description: >- + name: Node.js Paris + description: |-

Node.js + Javascript + Paris = ♥

- -

Nous sommes un groupe de développeurs enthousiastes, spécialisés en - Javascript et plus précisément avec Node.js.

- -

Les nouvelles technologies web et mobiles nous passionnent (du - stockage et de l'exploitation de données côté serveur jusqu'au rendu - final visualisé par l'utilisateur).

- -

Nous nous réunissons régulièrement pour échanger nos découvertes - (bibliothèques npm, outils de dev, frameworks alternatifs…), nos - compétences, les meilleurs pratiques du milieu (méthodes agiles, - tests…), mais aussi à propos de l'écosystème du développeur (emploi, - entrepreneuriat…).

- -

Site web : http://nodejsparis.fr/

- +

Nous sommes un groupe de développeurs enthousiastes, spécialisés en Javascript et plus précisément avec Node.js.

+

Les nouvelles technologies web et mobiles nous passionnent (du stockage et de l'exploitation de données côté serveur jusqu'au rendu final visualisé par l'utilisateur).

+

Nous nous réunissons régulièrement pour échanger nos découvertes (bibliothèques npm, outils de dev, frameworks alternatifs…), nos compétences, les meilleurs pratiques du milieu (méthodes agiles, tests…), mais aussi à propos de l'écosystème du développeur (emploi, entrepreneuriat…).

+

Site web : http://nodejsparis.fr/

Hashtag twitter : #nodejsparis

lon: 2.3399999141693115 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/5/e/3/f/highres_446064127.jpeg' - photo_id: 446064127 photo_link: 'http://photos3.meetupstatic.com/photos/event/5/e/3/f/600_446064127.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/5/e/3/f/thumb_446064127.jpeg' - join_mode: open - organizer: - member_id: 81720782 - name: Etienne Folio - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/4/6/3/4/highres_223997972.jpeg' - photo_id: 223997972 - photo_link: 'http://photos3.meetupstatic.com/photos/member/4/6/3/4/member_223997972.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/4/6/3/4/thumb_223997972.jpeg' - members: 3029 - name: Node.js Paris lat: 48.86000061035156 - who: Nodeurs - - utc_offset: 7200000 - country: PL - visibility: public + - country: PL city: Kraków - timezone: Europe/Warsaw - created: 1372347912000 link: 'http://www.meetup.com/Escape-from-dev-null-Poland/' - rating: 5 + name: Escape from /dev/null Poland description: Escape from /dev/null is a series of different and inspiring programming competitions. Teams of up to three people navigate a web-based science-fiction or fantasy board-game to race the other teams and win prizes by solving thematic programming challenges. lon: 19.959999084472656 - join_mode: open - organizer: - member_id: 8146053 - name: Peter Svensson - photo: - photo_id: 100321822 - photo_link: 'http://photos3.meetupstatic.com/photos/member/7/1/e/member_100321822.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/7/1/e/thumb_100321822.jpeg' - members: 43 - name: Escape from /dev/null Poland lat: 50.060001373291016 - who: escapees - - utc_offset: 7200000 - country: FR - visibility: public + - country: FR city: Marseille - timezone: Europe/Paris - created: 1372919970000 link: 'http://www.meetup.com/Disruptive-technologies-in-Planet-Marseille/' - rating: 4.28 - description: >- + name: 'Disruptive technologies in Planet Marseille !' + description: |-

Nous sommes un groupe de hacker/maker enthousiastes.

- -

Les nouvelles technologies informatiques et leurs impacts sur notre - monde nous passionnent :

- +

Les nouvelles technologies informatiques et leurs impacts sur notre monde nous passionnent :

- -

Nous nous réunissons régulièrement (1 fois par mois) pour - échanger nos découvertes (bibliothèques, outils de dev, frameworks - alternatifs, cloud paas node.js, …), nos compétences, les meilleurs - pratiques du milieu (méthodes agiles, tests…), mais aussi pour discuter - de l'écosystème sur la région (emploi, entrepreneuriat, social, action - citoyenne, open data, etc…).

- -

twitter : @Marseilledisrup

+

Nous nous réunissons régulièrement (1 fois par mois) pour échanger nos découvertes (bibliothèques, outils de dev, frameworks alternatifs, cloud paas node.js, …), nos compétences, les meilleurs pratiques du milieu (méthodes agiles, tests…), mais aussi pour discuter de l'écosystème sur la région (emploi, entrepreneuriat, social, action citoyenne, open data, etc…).

+

twitter : @Marseilledisrup

lon: 5.369999885559082 - join_mode: open - organizer: - member_id: 62138682 - name: Jean-guillaume lalanne - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/7/9/a/6/highres_129751142.jpeg' - photo_id: 129751142 - photo_link: 'http://photos1.meetupstatic.com/photos/member/7/9/a/6/member_129751142.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/7/9/a/6/thumb_129751142.jpeg' - members: 144 - name: 'Disruptive technologies in Planet Marseille !' lat: 43.310001373291016 - who: les marsnoveurs - - utc_offset: 3600000 - country: GB - visibility: public + - country: GB city: Edinburgh - timezone: Europe/London - created: 1373287829000 link: 'http://www.meetup.com/AngularJS-Edinburgh/' - rating: 4.71 + name: AngularJS - Edinburgh description: 'AngularJS meets are the third Thursday of every month at Silicon Walk in Edinburgh - 25 Greenside Place, Edinburgh. Come along and talk all things Angular. Talk about what your building and chat with likeminded developers over a beer or two.' lon: -3.190000057220459 - join_mode: open - organizer: - member_id: 101276262 - name: Callum Stuart - photo: - photo_id: 130706722 - photo_link: 'http://photos4.meetupstatic.com/photos/member/6/8/6/2/member_130706722.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/6/8/6/2/thumb_130706722.jpeg' - members: 191 - name: AngularJS - Edinburgh - state: U8 lat: 55.959999084472656 - who: Angularians - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE city: Berlin - timezone: Europe/Berlin - created: 1373355129000 link: 'http://www.meetup.com/geek2geek/' - rating: 4.88 - description: >- -

Geek2Geek is a monthly Berlin Tech Talk. Our goal is to bring - software developers with a diverse background together. We noticed that - the coding community is often isolated, meaning that PHP devs. are only - going to PHP UG's and Java devs. solely to Java UG's

- -

However, we believe that we could achieve great things if we - connect. If you're a open source developer, start-up, techie, or geek - using Java, Ruby, Python, Node.JS, PHP, JavaScript, R or Clojure, this - group is for you!
- - + name: Geek2Geek - Berlin Tech Talk + description: |- +

Geek2Geek is a monthly Berlin Tech Talk. Our goal is to bring software developers with a diverse background together. We noticed that the coding community is often isolated, meaning that PHP devs. are only going to PHP UG's and Java devs. solely to Java UG's

+

However, we believe that we could achieve great things if we connect. If you're a open source developer, start-up, techie, or geek using Java, Ruby, Python, Node.JS, PHP, JavaScript, R or Clojure, this group is for you!

- - - Join us to be one step ahead and think outside the box. We're looking - forward to meet you!
- - + Join us to be one step ahead and think outside the box. We're looking forward to meet you!

- -

lon: 13.380000114440918 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/3/d/6/0/highres_258255712.jpeg' - photo_id: 258255712 photo_link: 'http://photos2.meetupstatic.com/photos/event/3/d/6/0/600_258255712.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/3/d/6/0/thumb_258255712.jpeg' - join_mode: open - members: 612 - name: Geek2Geek - Berlin Tech Talk lat: 52.52000045776367 - who: Geeks - - utc_offset: 3600000 - country: PT - visibility: public + - country: PT city: Lisbon - timezone: Europe/Lisbon - created: 1374056408000 link: 'http://www.meetup.com/require-lx/' - rating: 4.8 + name: "require('lx')" description: '

A meetup group for JavaScript developers, lovers, enthusiasts and explorers in Lisbon. Server-side and client-side. Talks and code shows, some day even hackathons.

' lon: -9.140000343322754 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/d/a/0/e/highres_323635822.jpeg' - photo_id: 323635822 photo_link: 'http://photos2.meetupstatic.com/photos/event/d/a/0/e/600_323635822.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/d/a/0/e/thumb_323635822.jpeg' - join_mode: open - organizer: - member_id: 35995312 - name: João Pinto Jerónimo - photo: - photo_id: 132986942 - photo_link: 'http://photos1.meetupstatic.com/photos/member/6/9/3/e/member_132986942.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/6/9/3/e/thumb_132986942.jpeg' - members: 611 - name: "require('lx')" lat: 38.720001220703125 - who: protectors of the hexagon - - utc_offset: 7200000 - country: BE - visibility: public + - country: BE city: Brussels - timezone: Europe/Brussels - created: 1375308054000 link: 'http://www.meetup.com/AngularJS-Belgium/' - rating: 4.17 + name: AngularJS Belgium description: "

Let's meet together for some discussions about the awesome AngularJS framework! I started this group to meet the belgian AngularJS community and share together our experience. Propose a talk here: http://goo.gl/forms/U1UBFxFYni

" lon: 4.329999923706055 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/d/3/e/c/highres_266274252.jpeg' - photo_id: 266274252 photo_link: 'http://photos3.meetupstatic.com/photos/event/d/3/e/c/600_266274252.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/d/3/e/c/thumb_266274252.jpeg' - join_mode: open - organizer: - member_id: 102777862 - name: Yassine Gayl - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/a/2/2/highres_136574882.jpeg' - photo_id: 136574882 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/a/2/2/member_136574882.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/a/2/2/thumb_136574882.jpeg' - members: 1230 - name: AngularJS Belgium lat: 50.83000183105469 - who: AngularJS Belgium members - - utc_offset: 7200000 - country: PL - visibility: public + - country: ES + city: Madrid + link: 'http://www.meetup.com/Node-js-Madrid/' + name: Node.js Madrid + description: |- +

En este grupo hablamos de Node.js y sus aplicaciones, siempre con un enfoque práctico. Nos reunimos una vez al mes para vernos las caras, y para escuchar charlas de alguien de la comunidad... por ejemplo tú. Actualmente estamos enlazando una charla introductoria y otra avanzada, para llegar a todos los públicos.

+

Node.js es una plataforma robusta y escalable para servir aplicaciones web, basada en JavaScript. Grandes empresas como Walmart, PayPal o LinkedIn se han lanzado a la piscina y están migrando sus webs; y muchas otras empresas (extranjeras y españolas) usan Node.js en producción.

+

¿Tienes algo que contar? ¡Estamos interesados! Aceptamos propuestas en GitHub: https://github.com/NodeJsMadrid/talks. Nos regimos por este código de conducta.

+

Síguenos en Twitter: https://twitter.com/NodeJsMadrid

+ lon: -3.7100000381469727 + group_photo: + photo_link: 'http://photos3.meetupstatic.com/photos/event/1/4/7/0/600_377645232.jpeg' + lat: 40.41999816894531 + - country: PL city: Rzeszów - timezone: Europe/Warsaw - created: 1376176493000 link: 'http://www.meetup.com/Rzeszow-JavaScript-Developers/' - rating: 4 + name: Rzeszów JavaScript Developers description: "

This is a group for anyone interested in JavaScript, SSJS, HTML5 and mind blow startups. All skills levels are welcome. I started this group for everyone who wants to meet other enthusiasts, share experience and views, find out what's new out there, create a starup or just to have a beer with other geeks. Feel free to propose an event, presentation or codefest.

\n

Cheers!\_Follow us on twitter @rz_js

" lon: 22 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/c/3/5/2/highres_270170002.jpeg' - photo_id: 270170002 photo_link: 'http://photos4.meetupstatic.com/photos/event/c/3/5/2/600_270170002.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/c/3/5/2/thumb_270170002.jpeg' - join_mode: open - organizer: - member_id: 106175622 - name: Max Podriezov - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/7/3/a/highres_139011002.jpeg' - photo_id: 139011002 - photo_link: 'http://photos3.meetupstatic.com/photos/member/c/7/3/a/member_139011002.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/7/3/a/thumb_139011002.jpeg' - members: 50 - name: Rzeszów JavaScript Developers lat: 50.04999923706055 - who: Javascripters - - utc_offset: 7200000 - country: 'NO' - visibility: public + - country: 'NO' city: Oslo - timezone: Europe/Oslo - created: 1377517340000 link: 'http://www.meetup.com/TechShock/' - rating: 4.47 + name: TechShock description: '

TechShock is a usergroup for web and mobile developers. While our group is broad and covers a lot of technologies, our individual meetups will be narrowed down to more specific areas of interest. Our meetups will be held in English, and there will be social events after each meetup for those interested in continuing the discussion over a beer or two.

' lon: 10.75 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/d/5/2/c/highres_305754572.jpeg' - photo_id: 305754572 photo_link: 'http://photos2.meetupstatic.com/photos/event/d/5/2/c/600_305754572.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/d/5/2/c/thumb_305754572.jpeg' - join_mode: open - organizer: - member_id: 14110059 - name: Tommy Jocumsen - photo: - photo_id: 143105932 - photo_link: 'http://photos1.meetupstatic.com/photos/member/1/7/2/c/member_143105932.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/1/7/2/c/thumb_143105932.jpeg' - members: 506 - name: TechShock lat: 59.90999984741211 - who: Developers - - utc_offset: 3600000 - country: GB - visibility: public + - country: GB city: London - timezone: Europe/London - created: 1378115728000 link: 'http://www.meetup.com/NodeBots-of-London/' - rating: 4.86 - description: >- -

We'll meet up in London and hack on Arduinos, Rasberry Pis, - quadcopters, robots, and any other gizmos that need more input.

- -

Continuing in the spirit of the international NodeBots Day event, - this is not a hackathon, there will be no prizes. It's about spending - a day in an amazing workshop with good people and tinkering, hacking - and generally putting tools where hardware would rather you didn't. - Please remember to bring your laptop, Arduino, a grab bag of components - and ideas. Broken toys, Raspberry Pis, and circuit bent synths also - encouraged.

+ name: NodeBots of London + description: |- +

We'll meet up in London and hack on Arduinos, Rasberry Pis, quadcopters, robots, and any other gizmos that need more input.

+

Continuing in the spirit of the international NodeBots Day event, this is not a hackathon, there will be no prizes. It's about spending a day in an amazing workshop with good people and tinkering, hacking and generally putting tools where hardware would rather you didn't. Please remember to bring your laptop, Arduino, a grab bag of components and ideas. Broken toys, Raspberry Pis, and circuit bent synths also encouraged.

lon: -0.07999999821186066 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/4/8/d/c/highres_278538652.jpeg' - photo_id: 278538652 photo_link: 'http://photos1.meetupstatic.com/photos/event/4/8/d/c/600_278538652.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/4/8/d/c/thumb_278538652.jpeg' - join_mode: open - organizer: - member_id: 12125832 - name: Alex Potsides - photo: - photo_id: 9732737 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/1/c/1/member_9732737.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/1/c/1/thumb_9732737.jpeg' - members: 749 - name: NodeBots of London - state: '17' lat: 51.470001220703125 - who: Roboticists - - utc_offset: 7200000 - country: 'NO' - visibility: public + - country: 'NO' city: Oslo - timezone: Europe/Oslo - created: 1378152022000 link: 'http://www.meetup.com/Ember-js-Oslo/' + name: Ember.js Oslo description: This group is intended to serve the Norwegian Ember.js community with meetings and activities related to Ember.js development and technologies. lon: 10.75 - join_mode: open - organizer: - member_id: 30858472 - name: Joacim Haagen Skeie - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/3/e/3/2/highres_102015922.jpeg' - photo_id: 102015922 - photo_link: 'http://photos3.meetupstatic.com/photos/member/3/e/3/2/member_102015922.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/3/e/3/2/thumb_102015922.jpeg' - members: 85 - name: Ember.js Oslo lat: 59.90999984741211 - who: Emberistas - - utc_offset: 7200000 - country: AT - visibility: public + - country: AT city: Linz - timezone: Europe/Vienna - created: 1378250626000 link: 'http://www.meetup.com/stahlstadt-js/' - rating: 4.83 + name: stahlstadt.js description: "

Let's talk JS. In se Stahlstadt.

" lon: 14.289999961853027 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/e/6/b/6/highres_279599062.jpeg' - photo_id: 279599062 photo_link: 'http://photos4.meetupstatic.com/photos/event/e/6/b/6/600_279599062.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/e/6/b/6/thumb_279599062.jpeg' - join_mode: open - organizer: - member_id: 115074682 - name: Sebastian Gierlinger - photo: - photo_id: 151826822 - photo_link: 'http://photos4.meetupstatic.com/photos/member/6/8/c/6/member_151826822.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/6/8/c/6/thumb_151826822.jpeg' - members: 198 - name: stahlstadt.js lat: 48.310001373291016 - who: Stahlstadtkinder - - utc_offset: 7200000 - country: HR - visibility: public + - country: ES + city: Barcelona + link: 'http://www.meetup.com/AngularJS-Barcelona/' + name: AngularJS Barcelona + description: '

We love AngularJS, we love the way it helps us build better web applications with less effort and we would love to meet other AngularJS developers in the Barcelona area so that we can discuss our approaches, ways, etc. with them.

' + lon: 2.1700000762939453 + group_photo: + photo_link: 'http://photos1.meetupstatic.com/photos/event/c/f/a/a/600_335273162.jpeg' + lat: 41.400001525878906 + - country: ES + city: Málaga + link: 'http://www.meetup.com/techmalaga/' + name: TechMalaga + description: "

Node Sol nacio con la mision de conectar apasionados del Node en Málaga. Hemos hecho varias charlas y workshops y constantemente planificamos nuevos eventos alrededor de las tendencias más innovadoras en la web: Node.js, Angular, Python, API's, Ruby on Rails, JavaScript, Erlang, Swift, socket.io, MongoDb, Redis, Cassandra, AWS y herramientas para desarrolladores.

" + lon: -4.420000076293945 + lat: 36.720001220703125 + - country: HR city: Zagreb - timezone: Europe/Zagreb - created: 1379247964000 link: 'http://www.meetup.com/JavaScript-Zagreb/' - rating: 4.57 + name: JavaScript Zagreb description: '

A monthly meetup of JavaScript developer enthusiasts from Zagreb and region.

' lon: 15.970000267028809 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/4/c/2/e/highres_284839502.jpeg' - photo_id: 284839502 photo_link: 'http://photos3.meetupstatic.com/photos/event/4/c/2/e/600_284839502.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/4/c/2/e/thumb_284839502.jpeg' - join_mode: open - organizer: - member_id: 93158542 - name: Tomislav Capan - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/6/0/2/e/highres_146604622.jpeg' - photo_id: 146604622 - photo_link: 'http://photos2.meetupstatic.com/photos/member/6/0/2/e/member_146604622.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/6/0/2/e/thumb_146604622.jpeg' - members: 588 - name: JavaScript Zagreb lat: 45.79999923706055 - who: JavaScript developers - - utc_offset: 3600000 - country: FR - visibility: public - city: Lyon - timezone: Europe/Paris - created: 1380053714000 - link: 'http://www.meetup.com/Fhacktory-Lyon/' - description: "Fhacktory, le hackathon 100% hack 0% bullshit ! Oubliez les pitch contests et les concours de startups, et venez participer à un vrai concours de de réalisation. Une seule condition : votre \"hack\" doit être testable en alpha à la fin du week-end ! Fhacktory est une occasion unique pour rencontrer d'autres devs, passer un week-end à découvrir et tester de nouvelles technos, et même gagner plein de lots sympa (tablettes, comptes github, VPS...) ! http://fhacktory.com" - lon: 4.829999923706055 - join_mode: closed - members: 11 - name: Fhacktory Lyon - lat: 45.7599983215332 - who: hackers - - utc_offset: 7200000 - country: HU - visibility: public + - country: HU city: Budapest - timezone: Europe/Budapest - created: 1380218040000 link: 'http://www.meetup.com/nodebp/' - rating: 4.75 + name: Node.js Budapest description: "

A meetup Node.js-ről fog szólni kezdőknek, haladóknak és bárkinek aki szereti javascriptet.

\n

A esemény szól mind a frontendeseknek, a backendeseknek és devopsoknak is.
\n\n No és persze nem maradhat el a fun rész, mint a nodebot- és quadrocopter építés.

\n

JIFASNIF - JavaScript is fun, and so Node is fun. \_(c) isaacs

\n

--------------------------------

\n

We are about Node.js for beginners, experts and everyone who loves javascript. It's about using Node.js as frontend dev, backend dev or even devops. And last but not least node.js for fun like nodebots or building quadrocopters.

\n

JIFASNIF - JavaScript is fun, and so Node is fun. \_(c) isaacs

" lon: 19.079999923706055 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/8/0/c/c/highres_306452972.jpeg' - photo_id: 306452972 photo_link: 'http://photos2.meetupstatic.com/photos/event/8/0/c/c/600_306452972.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/8/0/c/c/thumb_306452972.jpeg' - join_mode: open - organizer: - member_id: 18259601 - name: Oroszi Róbert (oroce) - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/4/2/6/highres_148981062.jpeg' - photo_id: 148981062 - photo_link: 'http://photos4.meetupstatic.com/photos/member/4/2/6/member_148981062.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/4/2/6/thumb_148981062.jpeg' - members: 912 - name: Node.js Budapest lat: 47.5099983215332 - who: Members - - utc_offset: 3600000 - country: GB - visibility: public + - country: GB city: London - timezone: Europe/London - created: 1380695426000 link: 'http://www.meetup.com/JSChannel-London/' - rating: 4.5 - description: >- -

Whether you're a hands on software engineer, or a person just - interested in advanced JS technologies, JSChannel London is the place - for you in London.

- -

This is a group for those who would like to explore the world - of JavaScript, from: brainstorming ideas with other developers; - listening to talks from leaders in their field; or participating in - workshops and hackathons.

- -

We will organise meetings and hold talks in Central London, - bringing together the leaders in their fields from companies - with household names. JavaScript is an ever expanding - technology, whose pace of change is unequalled, and JSChannel hopes to - help you stay up to date.

- -

We'll focus on all manner of topics, including: JS testing and - automation / engineering productivity (e.g. automated testing, building - testing frameworks, etc); exploring new frameworks and practices; - looking a the future of JavaScript, in ES6; and many many - others.

- -

If you have recommendations for future topics, feedback for - the events team or are interested in future events, please fill out our - interest form. Past meet-ups are generally recorded - - enjoy!

- lon: -0.12999999523162842 - join_mode: open - organizer: - member_id: 37114032 - name: Ganesh Gembali - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/d/3/6/0/highres_44634112.jpeg' - photo_id: 44634112 - photo_link: 'http://photos2.meetupstatic.com/photos/member/d/3/6/0/member_44634112.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/d/3/6/0/thumb_44634112.jpeg' - members: 207 name: JSChannel-London - state: '17' + description: |- +

Whether you're a hands on software engineer, or a person just interested in advanced JS technologies, JSChannel London is the place for you in London.

+

This is a group for those who would like to explore the world of JavaScript, from: brainstorming ideas with other developers; listening to talks from leaders in their field; or participating in workshops and hackathons.

+

We will organise meetings and hold talks in Central London, bringing together the leaders in their fields from companies with household names. JavaScript is an ever expanding technology, whose pace of change is unequalled, and JSChannel hopes to help you stay up to date.

+

We'll focus on all manner of topics, including: JS testing and automation / engineering productivity (e.g. automated testing, building testing frameworks, etc); exploring new frameworks and practices; looking a the future of JavaScript, in ES6; and many many others.

+

If you have recommendations for future topics, feedback for the events team or are interested in future events, please fill out our interest form. Past meet-ups are generally recorded - enjoy!

+ lon: -0.12999999523162842 lat: 51.5099983215332 - who: JS Enthusiasts - - utc_offset: 3600000 - country: GB - visibility: public + - country: GB city: London - timezone: Europe/London - created: 1380803166000 link: 'http://www.meetup.com/Front-Endgineers-London/' - rating: 4.63 + name: Front Endgineers London description: "

The Front Endgineers is a group for Software Engineers with an interest in Front End technologies. Through our forum and regular meetings you can keep in touch with the latest industry developments, learn new technologies, meet other developers, discuss technical/non technical issues and network further throughout the community.
\n\n
\n\nFAQ
\n\n

\n\nWhat is the Front Endgineers group?
\n\nWhat goes on in the Front Endgineers?
\n\nWho can join?
\n\nIs there a fee to Join, is there a fee for the events?
\n\nHow do I join?
\n\nDo you have to go to every presentation/event?
\n\n
\n\n
\n\nWhat is the Front Endgineers group?
\n\n
\n\nThe Front Endgineers is a technical user group for software engineers based in London. It was founded in October 2013.
\n\n
\n\nWhat goes on in the Front Endgineers?
\n\n
\n\nWe are hoping to run a variety of regular events ranging from social events to technical presentations. On top of the events we aim to run prize draws and develop an active mailing list/forum. We will support the Graduate Development Community in London and promote London based Open Source Software projects where possible.
\n\n
\n\nWho can join?
\n\n
\n\nMembership is restricted to Software Engineers with an interest in Front End technologies working in or around London (or those hoping to train into these technologies, or relocate to London).\_
\n\n
\n\nIs there a fee to join, is there a fee for the events?
\n\n

\n\nIt’s completely free to join and our events will be completely free.
\n\n
\n\nHow do I join?
\n\n
\n\nJust click on the link on this page to sign up to the mailing list, you'll hear of all of our latest news and events and can take part in the monthly prize draws.
\n\n
\n\nDo you have to go to every presentation?
\n\n
\n\nAbsolutely not - it’s completely up to you which events you attend and which you don’t. Every event attracts a different crowd.
\n\n
\n\n
\n\nBarry Cranford
\n\nFounder of Front Endgineers

" lon: -0.12999999523162842 - join_mode: approval - organizer: - member_id: 114021062 - name: Barry Cranford - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/9/5/5/8/highres_150338232.jpeg' - photo_id: 150338232 - photo_link: 'http://photos2.meetupstatic.com/photos/member/9/5/5/8/member_150338232.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/9/5/5/8/thumb_150338232.jpeg' - members: 1017 - name: Front Endgineers London - state: '17' lat: 51.5099983215332 - who: Engineers - - utc_offset: 7200000 - country: BE - visibility: public + - country: BE city: Brussels - timezone: Europe/Brussels - created: 1381155118000 link: 'http://www.meetup.com/Ember-js-Belgium/' - rating: 4.9 + name: Ember.js Belgium description: "

This is a group for anyone interested in developing web applications in Ember.js. I created this group because it's nice to have a local community for sharing knowledge, ideas and inspiration about this awesome web framework. The learning curve for Ember.js is not the lightest so it will also be a place to share your frustrations! Beginner or expert, everyone is welcome.

" lon: 4.329999923706055 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/8/d/c/4/highres_397176292.jpeg' - photo_id: 397176292 photo_link: 'http://photos1.meetupstatic.com/photos/event/8/d/c/4/600_397176292.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/8/d/c/4/thumb_397176292.jpeg' - join_mode: open - organizer: - member_id: 87368602 - name: Yoran Brondsema - photo: - photo_id: 142947552 - photo_link: 'http://photos2.meetupstatic.com/photos/member/6/b/a/0/member_142947552.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/6/b/a/0/thumb_142947552.jpeg' - members: 120 - name: Ember.js Belgium lat: 50.83000183105469 - who: Emberists - - utc_offset: 3600000 - country: GB - visibility: public + - country: GB city: Liverpool - timezone: Europe/London - created: 1381185787000 link: 'http://www.meetup.com/Liverpool-Javascript-user-group-client-server-side-JS/' - rating: 4.81 - description: >- + name: Liverpool JavaScript User Group + description: |-

Hosted by DoESLiverpool.com

- -

At Liverpool JavaScript User Group we cover JS frameworks like - Backbone, Angular, Ember etc, libraries like jQuery, extJS and server - side options like Node.js and Rhino all washed down with some beer and - pizza.

- -

We welcome all developers of all skill levels, we're a friendly - bunch ranging from newbies to experts.

- +

At Liverpool JavaScript User Group we cover JS frameworks like Backbone, Angular, Ember etc, libraries like jQuery, extJS and server side options like Node.js and Rhino all washed down with some beer and pizza.

+

We welcome all developers of all skill levels, we're a friendly bunch ranging from newbies to experts.

Follow us on twitter @liverpooljsug

- -

Join us on linked in http://www.linkedin.com/groups?gid=6530802

+

Join us on linked in http://www.linkedin.com/groups?gid=6530802

lon: -2.990000009536743 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/1/b/d/b/highres_442627131.jpeg' - photo_id: 442627131 photo_link: 'http://photos1.meetupstatic.com/photos/event/1/b/d/b/600_442627131.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/1/b/d/b/thumb_442627131.jpeg' - join_mode: open - organizer: - member_id: 50473592 - name: Paul Bennett-Freeman - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/3/c/a/highres_62390122.jpeg' - photo_id: 62390122 - photo_link: 'http://photos3.meetupstatic.com/photos/member/c/3/c/a/member_62390122.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/3/c/a/thumb_62390122.jpeg' - members: 232 - name: Liverpool JavaScript User Group - state: '28' lat: 53.400001525878906 - who: JS Users - - utc_offset: 7200000 - country: FR - visibility: public + - country: FR city: Paris - timezone: Europe/Paris - created: 1381324262000 link: 'http://www.meetup.com/Nodebots-Paris/' - rating: 4.92 + name: Les NodeBots de Paris description: "

ce groupe est dédié au culte des nodebots et marque le début de leur invasion parisienne !

\n

qu'est ce que les nodebots, me direz vous ? ce sont de petits robots qui on abandoné le C et se sont mis a javascript plus d'informations ici.

\n

Nous avons un programme d'échange de gadjets éléctronique ici :\_the nodebots library

\n

suivez le compte\_@LesNodebots sur twitter pour des infos flash

\n

Pour le moment ce groupe est assez informel et est crée pour voir combien d'entre nous seraient disponible pour établie une tête de pont a Paris. l'idée serais de faire dans un premier temps des petit workshops autour d'arduino et de ses jonctions avec node.js, et si on est vraiment beaucoup, pourquoi pas des conférences ?

\n

2 tracks seront proposés a partir de la rentrée

\n" lon: 2.3399999141693115 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/2/5/3/c/highres_294369532.jpeg' - photo_id: 294369532 photo_link: 'http://photos4.meetupstatic.com/photos/event/2/5/3/c/600_294369532.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/2/5/3/c/thumb_294369532.jpeg' - join_mode: approval - organizer: - member_id: 31834032 - name: Jérôme Loï - photo: - photo_id: 32343092 - photo_link: 'http://photos3.meetupstatic.com/photos/member/c/1/4/member_32343092.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/c/1/4/thumb_32343092.jpeg' - members: 282 - name: Les NodeBots de Paris lat: 48.86000061035156 - who: Friends of the Nodebots - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE city: Berlin - timezone: Europe/Berlin - created: 1381480743000 link: 'http://www.meetup.com/PHPConference/' - description: >- -

The International PHP Conference is a famous industry event for PHP - developers, webworkers, IT managers, and anyone else who has a burning - interest in web technology!

The conference focuses on the - core topics for developers, as well as on the key technologies for IT - executives.

- + name: International PHP Conference + description: |- +

The International PHP Conference is a famous industry event for PHP developers, webworkers, IT managers, and anyone else who has a burning interest in web technology!

The conference focuses on the core topics for developers, as well as on the key technologies for IT executives.

 

lon: 13.380000114440918 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/1/1/d/1/highres_437164561.jpeg' - photo_id: 437164561 photo_link: 'http://photos2.meetupstatic.com/photos/event/1/1/d/1/600_437164561.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/1/1/d/1/thumb_437164561.jpeg' - join_mode: open - organizer: - member_id: 115155632 - name: Henriette Ritter - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/1/c/9/a/highres_153187322.jpeg' - photo_id: 153187322 - photo_link: 'http://photos2.meetupstatic.com/photos/member/1/c/9/a/member_153187322.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/1/c/9/a/thumb_153187322.jpeg' - members: 51 - name: International PHP Conference lat: 52.52000045776367 - who: Members - - utc_offset: 3600000 - country: GB - visibility: public_limited + - country: GB city: Liverpool - timezone: Europe/London - created: 1382368160000 link: 'http://www.meetup.com/LiverpoolClojure/' - rating: 4.31 + name: Liverpool Clojure description: 'Meet other local programmers interested in Clojure (and other Lisps and Schemes), functional programming, concurrent programming and anything else we can think of that might be related!' lon: -2.9600000381469727 - join_mode: open - organizer: - member_id: 28887332 - name: Simon Holgate - photo: - photo_id: 151941852 - photo_link: 'http://photos2.meetupstatic.com/photos/member/5/5/5/c/member_151941852.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/5/5/5/c/thumb_151941852.jpeg' - members: 42 - name: Liverpool Clojure - state: '28' lat: 53.400001525878906 - who: Clojurians - - utc_offset: 7200000 - country: CZ - visibility: public + - country: CZ city: Prague - timezone: Europe/Prague - created: 1383123704000 link: 'http://www.meetup.com/Prague-Meteor-Meetup-Group/' - rating: 4.83 + name: Prague Meteor Meetup Group description: '

Group for anyone interested in Meteor framework, JavaScript and web development generally. Demoing apps is welcome.

' lon: 14.430000305175781 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/a/d/b/8/highres_422024472.jpeg' - photo_id: 422024472 photo_link: 'http://photos2.meetupstatic.com/photos/event/a/d/b/8/600_422024472.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/a/d/b/8/thumb_422024472.jpeg' - join_mode: open - organizer: - member_id: 154540292 - name: Milan Zigmond - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/c/e/2/e/highres_208672782.jpeg' - photo_id: 208672782 - photo_link: 'http://photos3.meetupstatic.com/photos/member/c/e/2/e/member_208672782.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/c/e/2/e/thumb_208672782.jpeg' - members: 91 - name: Prague Meteor Meetup Group lat: 50.08000183105469 - who: Meteor enthusiasts - - utc_offset: 7200000 - country: HR - visibility: public + - country: HR city: Zagreb - timezone: Europe/Zagreb - created: 1383388384000 link: 'http://www.meetup.com/Meteor-Zagreb/' - rating: 4.25 - description: >- -

Meet other developers using Meteor. - Share your knowledge, apps, and get feedback from others.

- -

Meteor is an open-source platform for building top-quality web apps - in a fraction of the time, whether you're an expert developer or just - getting started.

+ name: Meteor Zagreb + description: |- +

Meet other developers using Meteor. Share your knowledge, apps, and get feedback from others.

+

Meteor is an open-source platform for building top-quality web apps in a fraction of the time, whether you're an expert developer or just getting started.

lon: 15.970000267028809 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/8/9/0/highres_424682192.jpeg' - photo_id: 424682192 photo_link: 'http://photos2.meetupstatic.com/photos/event/8/9/0/600_424682192.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/8/9/0/thumb_424682192.jpeg' - join_mode: open - organizer: - member_id: 81670332 - name: Nick Coe - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/highres_245331334.jpeg' - photo_id: 245331334 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/8/8/6/member_245331334.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/thumb_245331334.jpeg' - members: 90 - name: Meteor Zagreb lat: 45.79999923706055 - who: Meteorites - - utc_offset: 7200000 - country: 'NO' - visibility: public + - country: 'NO' city: Kristiansand - timezone: Europe/Oslo - created: 1383856292000 link: 'http://www.meetup.com/Kristiansand-JavaScript/' - rating: 4.5 - description: >- -

Bilingual JavaScript meetup group based in Kristiansand, Norway. - Information in English upon request (click "Contact Organizer").

- -

Kristiansand.js er ei faggruppe for du som jobber eller vil jobbe - med JavaScript og relaterte teknologier.

- + name: Kristiansand.js + description: |- +

Bilingual JavaScript meetup group based in Kristiansand, Norway. Information in English upon request (click "Contact Organizer").

+

Kristiansand.js er ei faggruppe for du som jobber eller vil jobbe med JavaScript og relaterte teknologier.

Har du noensinne tenkt, «Fins det webutviklere på Sørlandet?»

-

Jeg og. Jeg har vansekelig å tro at vi er et så sjeldne her.

- -

Bli med i denne gruppa hvis du vil vise din interesse. Hovedtemaa - blir JavaScript og relaterte rammeverk som Meteor, AngularJS, - PhoneGap/Cordova osv.

- -

Tiden er inne. La oss bygge ei kul gruppe for webutviklere uansett - bakstykketeknologi.

+

Bli med i denne gruppa hvis du vil vise din interesse. Hovedtemaa blir JavaScript og relaterte rammeverk som Meteor, AngularJS, PhoneGap/Cordova osv.

+

Tiden er inne. La oss bygge ei kul gruppe for webutviklere uansett bakstykketeknologi.

lon: 7.989999771118164 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/9/b/8/e/highres_304299822.jpeg' - photo_id: 304299822 photo_link: 'http://photos3.meetupstatic.com/photos/event/9/b/8/e/600_304299822.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/9/b/8/e/thumb_304299822.jpeg' - join_mode: open - organizer: - member_id: 10524757 - name: Kevin Kaland - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/2/a/3/2/highres_157450802.jpeg' - photo_id: 157450802 - photo_link: 'http://photos2.meetupstatic.com/photos/member/2/a/3/2/member_157450802.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/2/a/3/2/thumb_157450802.jpeg' - members: 80 - name: Kristiansand.js lat: 58.150001525878906 - who: udviglere - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE city: Berlin - timezone: Europe/Berlin - created: 1384283774000 link: 'http://www.meetup.com/Node-js-Meetup-Berlin/' - rating: 4.55 + name: Node.js Meetup Berlin description: "
\n NOTICE: If you're looking for a new job or you're a company looking to hire from among our members, please use \n http://www.upandfront.com. We want to keep the meetups about code only.\n
\n
\n

JavaScript is quickly becoming the language that drives your website, your server and your database. It can also run your operating system, your nintendo emulator and the new EPIC game engine. 

\n

In this group we focus on the server side - Node.js. Thanks to v8, it runs many times faster than PHP, Ruby or Python, and thanks to the event-based design, it is the ultimate back-end for mobile and web applications. It is fast to code and needs less CPU & RAM - speeding up your development and saving you server costs. 

\n

The group is open to anyone interested. Whether you're wondering why in the world you would want to put JavaScript on a server or want to discuss how async/await is the best thing since sliced bread, let's meet up!

\n
" lon: 13.380000114440918 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/6/e/8/4/highres_308188292.jpeg' - photo_id: 308188292 photo_link: 'http://photos2.meetupstatic.com/photos/event/6/e/8/4/600_308188292.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/6/e/8/4/thumb_308188292.jpeg' - join_mode: open - organizer: - member_id: 37709632 - name: Andreas Lubbe - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/7/9/a/7/highres_245971143.jpeg' - photo_id: 245971143 - photo_link: 'http://photos4.meetupstatic.com/photos/member/7/9/a/7/member_245971143.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/7/9/a/7/thumb_245971143.jpeg' - members: 1391 - name: Node.js Meetup Berlin lat: 52.52000045776367 - who: JavaScripters - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE city: Essen - timezone: Europe/Berlin - created: 1384857743000 link: 'http://www.meetup.com/Meteor-Ruhrpott/' - rating: 4.89 + name: Meteor Ruhrpott description: "

MeteorJS Meetup in the Ruhrgebiet, Germany.

\n

Meteor is an open-source platform for building\_top-quality web apps\_in a fraction of the time using JavaScript all the way and leveraging the power of full stack reactivity.
\n\n

\n

If you are interested in developing web applications and are in the Ruhr area you should join us. It doesn't matter whether you are a beginner or an expert.

" lon: 7 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/4/0/f/8/highres_410116632.jpeg' - photo_id: 410116632 photo_link: 'http://photos4.meetupstatic.com/photos/event/4/0/f/8/600_410116632.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/4/0/f/8/thumb_410116632.jpeg' - join_mode: open - organizer: - member_id: 120639542 - name: Manuel Schoebel - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/9/b/d/4/highres_173979892.jpeg' - photo_id: 173979892 - photo_link: 'http://photos4.meetupstatic.com/photos/member/9/b/d/4/member_173979892.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/9/b/d/4/thumb_173979892.jpeg' - members: 174 - name: Meteor Ruhrpott lat: 51.470001220703125 - who: Meteorites - - utc_offset: 3600000 - country: GB - visibility: public + - country: GB city: London - timezone: Europe/London - created: 1385029496000 link: 'http://www.meetup.com/jsdevices/' - rating: 4.83 + name: 'JS on Devices: Web Programming for the Internet of Things' description: "

This is a group for coders, entrepreneurs, and hardware hackers, interested in the huge potential of running JavaScript on embedded devices like the Raspberry Pi and the BeagleBone. Let's get together, share the tools we use, help each other, show off our projects, and inspire each other to build more and better!

" lon: -0.10000000149011612 - join_mode: open - organizer: - member_id: 134715522 - name: Craig Mulligan - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/b/a/e/2/highres_179867842.jpeg' - photo_id: 179867842 - photo_link: 'http://photos4.meetupstatic.com/photos/member/b/a/e/2/member_179867842.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/b/a/e/2/thumb_179867842.jpeg' - members: 396 - name: 'JS on Devices: Web Programming for the Internet of Things' - state: '17' lat: 51.5099983215332 - who: Hardweb hackers - - utc_offset: 7200000 - country: CZ - visibility: public + - country: CZ city: Brno - timezone: Europe/Prague - created: 1385729031000 link: 'http://www.meetup.com/BrnoJS/' - rating: 4.37 - description: >- -

Monthly gathering of people passionate about JavaScript in Brno, - CZ.

- + name: BrnoJS + description: |- +

Monthly gathering of people passionate about JavaScript in Brno, CZ.

Format

- -

All talks (except for the introduction) follows the following - schedule (borrowed from the cool guys at ViennaJS):

- +

All talks (except for the introduction) follows the following schedule (borrowed from the cool guys at ViennaJS):

• Talk lasts 15 minutes max.

-

• Followed by a 10 minute Q&A session.

- -

• Followed by a 5 minute "beer retrieval" round (during which there - is time for shootouts).

+

• Followed by a 5 minute "beer retrieval" round (during which there is time for shootouts).

lon: 16.610000610351562 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/4/7/4/2/highres_311298242.jpeg' - photo_id: 311298242 photo_link: 'http://photos1.meetupstatic.com/photos/event/4/7/4/2/600_311298242.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/4/7/4/2/thumb_311298242.jpeg' - join_mode: open - organizer: - member_id: 121414852 - name: Martin Kačmar - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/9/d/3/c/highres_169840252.jpeg' - photo_id: 169840252 - photo_link: 'http://photos4.meetupstatic.com/photos/member/9/d/3/c/member_169840252.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/9/d/3/c/thumb_169840252.jpeg' - members: 341 - name: BrnoJS lat: 49.20000076293945 - who: JavaScripters - - utc_offset: 7200000 - country: 'NO' - visibility: public + - country: 'NO' + city: Bergen + link: 'http://www.meetup.com/Bergen-NoSQL/' + name: Bergen NoSQL User Group + description: |- +

Bergen NoSQL User Group is a place for developers to learn more and share their experiences about all the new and shiny NoSQL databases. We discuss databases such as MongoDB and CouchDB document stores; Neo4J and Giraph graph stores; Riak, Berkeley DB and Redis key-value stores, and Cassandra and HBase wide-column stores; and many many more!

+

If you are facing challenges with MySQL or Postgres or Oracle and want to explore a more flexible, scalable alternative, please join us at one of our meetups.

+ lon: 5.340000152587891 + group_photo: + photo_link: 'http://photos2.meetupstatic.com/photos/event/3/a/f/d/600_445155101.jpeg' + lat: 60.380001068115234 + - country: 'NO' city: Trondheim - timezone: Europe/Oslo - created: 1386697184000 link: 'http://www.meetup.com/BartJS/' - rating: 4.41 + name: BartJS description: "

En ny-oppstartet Meetup i Trondheim som konsentrerer seg om all-things Javascript. Fra programmering på serveren til koding i klienten, informasjon om det nyeste MV*-rammeverk til programmering av hardware. I denne meetupen kan vi kjøre introduksjoner til nye paradigmer og teknikker, diskusjoner om \"compile-to-javascript\"-språk eller innføring i UI-bibliotek.

\n

Se Github-repo på\_https://github.com/bartjs og gruppens nettside på http://bartjs.github.io.

" lon: 10.399999618530273 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/d/f/8/6/highres_314577222.jpeg' - photo_id: 314577222 photo_link: 'http://photos1.meetupstatic.com/photos/event/d/f/8/6/600_314577222.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/d/f/8/6/thumb_314577222.jpeg' - join_mode: open - organizer: - member_id: 96523022 - name: Mikael Brevik - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/4/b/4/8/highres_163399272.jpeg' - photo_id: 163399272 - photo_link: 'http://photos2.meetupstatic.com/photos/member/4/b/4/8/member_163399272.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/4/b/4/8/thumb_163399272.jpeg' - members: 291 - name: BartJS lat: 63.439998626708984 - who: Utviklere - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE city: Köln - timezone: Europe/Berlin - created: 1386775634000 link: 'http://www.meetup.com/WebWorker-Cologne/' - rating: 4.95 + name: WebWorker Cologne description: 'WebWorker Cologne ist Deine Community rund um die Themen Web-Enwicklung, Web-Programmierung, Web-Design für Desktop- und Mobile-Browser. Wir treffen uns jeden dritten Mittwoch im Monat zu einem lockeren Zusammensein und Informations- und Gedankenaustausch. Wir freuen uns über Mitgestalter und Mitmacher. Sei dabei!' lon: 6.96999979019165 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/3/a/3/6/highres_424514902.jpeg' - photo_id: 424514902 photo_link: 'http://photos4.meetupstatic.com/photos/event/3/a/3/6/600_424514902.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/3/a/3/6/thumb_424514902.jpeg' - join_mode: open - organizer: - member_id: 186913460 - name: GFU Cyrus AG - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/8/7/5/highres_245882165.jpeg' - photo_id: 245882165 - photo_link: 'http://photos4.meetupstatic.com/photos/member/8/7/5/member_245882165.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/8/7/5/thumb_245882165.jpeg' - members: 262 - name: WebWorker Cologne lat: 50.95000076293945 - who: WebWorker - - utc_offset: 7200000 - country: CZ - visibility: public + - country: CZ city: Prague - timezone: Europe/Prague - created: 1386852383000 link: 'http://www.meetup.com/prague-developers/' - rating: 4.8 - description: >- -

Calling all developers in Prague! Prague is an awesome city, right? - Many of us expats come here to work and enjoy the city's wonders. - However there was one thing bugging me since I came here. How the heck - do I meet other skilled professionals in the field of development? So - how 'bout you join the group, we go out for some beers from time to - time, have some interesting talks, share our knowledge and - expertise.

- + name: Prague developers + description: |- +

Calling all developers in Prague! Prague is an awesome city, right? Many of us expats come here to work and enjoy the city's wonders. However there was one thing bugging me since I came here. How the heck do I meet other skilled professionals in the field of development? So how 'bout you join the group, we go out for some beers from time to time, have some interesting talks, share our knowledge and expertise.

Looking forward to meeting you!

lon: 14.430000305175781 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/4/0/1/2/highres_315736402.jpeg' - photo_id: 315736402 photo_link: 'http://photos2.meetupstatic.com/photos/event/4/0/1/2/600_315736402.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/4/0/1/2/thumb_315736402.jpeg' - join_mode: open - organizer: - member_id: 103553562 - name: Ilya Karnaukhov - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/1/9/2/4/highres_254346436.jpeg' - photo_id: 254346436 - photo_link: 'http://photos3.meetupstatic.com/photos/member/1/9/2/4/member_254346436.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/1/9/2/4/thumb_254346436.jpeg' - members: 199 - name: Prague developers lat: 50.08000183105469 - who: Developers - - utc_offset: 7200000 - country: 'NO' - visibility: public + - country: 'NO' city: Oslo - timezone: Europe/Oslo - created: 1388187128000 link: 'http://www.meetup.com/Meteor-Oslo/' - rating: 3.88 + name: Meteor Oslo description: "

Group for everyone who interested in Meteor - A Full Stack Framework For Building Pure JavaScript Apps. All skills levels are welcome. Main goal of this group to share knowledge of framework and do some creasy things together. Let's build together new Meteorites community in Oslo.

" lon: 10.75 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/c/2/b/c/highres_409069852.jpeg' - photo_id: 409069852 photo_link: 'http://photos3.meetupstatic.com/photos/event/c/2/b/c/600_409069852.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/c/2/b/c/thumb_409069852.jpeg' - join_mode: open - organizer: - member_id: 81670332 - name: Nick Coe - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/2/6/5/2/highres_252909810.jpeg' - photo_id: 252909810 - photo_link: 'http://photos1.meetupstatic.com/photos/member/2/6/5/2/member_252909810.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/2/6/5/2/thumb_252909810.jpeg' - members: 193 - name: Meteor Oslo lat: 59.90999984741211 - who: Meteorites - - utc_offset: 7200000 - country: FR - visibility: public + - country: FR city: Paris - timezone: Europe/Paris - created: 1388657291000 link: 'http://www.meetup.com/FranceJS/' - rating: 4.79 - description: >- -

FranceJS, c'est l'ensemble des communautés francophones autour de - JavaScript.

- -

Ce groupe "meetup" permet de proposer une solution gratuite aux - différents meetups français afin qu'ils puissent organiser plus - facilement leurs évènements. Chaque évènement ajouté ici est aussi - disponible en première page sur francejs.org.

- -

Si vous souhaitez découvrir JavaScript et les technologies - associées, inscrivez-vous à ce groupe et vous aurez la possibilité de - participer aux événements associés et ainsi que rencontrer la - communauté.
- - + name: FranceJS + description: |- +

FranceJS, c'est l'ensemble des communautés francophones autour de JavaScript.

+

Ce groupe "meetup" permet de proposer une solution gratuite aux différents meetups français afin qu'ils puissent organiser plus facilement leurs évènements. Chaque évènement ajouté ici est aussi disponible en première page sur francejs.org.

+

Si vous souhaitez découvrir JavaScript et les technologies associées, inscrivez-vous à ce groupe et vous aurez la possibilité de participer aux événements associés et ainsi que rencontrer la communauté.

-


- -

lon: 2.3399999141693115 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/c/6/c/2/highres_320450882.jpeg' - photo_id: 320450882 photo_link: 'http://photos2.meetupstatic.com/photos/event/c/6/c/2/600_320450882.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/c/6/c/2/thumb_320450882.jpeg' - join_mode: open - organizer: - member_id: 24287712 - name: 'Julien Bouquillon [revolunet]' - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/8/c/8/e/highres_154475982.jpeg' - photo_id: 154475982 - photo_link: 'http://photos1.meetupstatic.com/photos/member/8/c/8/e/member_154475982.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/8/c/8/e/thumb_154475982.jpeg' - members: 1659 - name: FranceJS lat: 48.86000061035156 - who: javascripters - - utc_offset: 7200000 - country: NL - visibility: public + - country: NL city: Nijmegen - timezone: Europe/Amsterdam - created: 1388733380000 link: 'http://www.meetup.com/NijmegenJS/' - rating: 4.34 + name: NijmegenJS description: "

Developers interested in sharing knowledge and growing their skills around JavaScript and modern web technology: e.g. ES6, NodeJS, Angular, Ember, Web Components, HTML5 APIs, etc.

\n

Goals:

\n

•\_A monthly meetup with one or more (short) talks

\n

• A\_post meal/drinks for socialising.

\n

•\_Focus on cutting-edge technologies and development techniques.\_

\n

If you want to help out, have any suggestions or feedback, just get in touch!

" lon: 5.849999904632568 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/a/0/0/c/highres_320680972.jpeg' - photo_id: 320680972 photo_link: 'http://photos1.meetupstatic.com/photos/event/a/0/0/c/600_320680972.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/a/0/0/c/thumb_320680972.jpeg' - join_mode: open - organizer: - member_id: 42803712 - name: Barry Nijenhuis - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/1/a/c/4/highres_167286852.jpeg' - photo_id: 167286852 - photo_link: 'http://photos2.meetupstatic.com/photos/member/1/a/c/4/member_167286852.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/1/a/c/4/thumb_167286852.jpeg' - members: 132 - name: NijmegenJS lat: 51.84000015258789 - who: Developers - country: IS - visibility: public city: Reykjavík - timezone: Atlantic/Reykjavik - created: 1388946648000 link: 'http://www.meetup.com/Javascript-Iceland/' - rating: 4.92 + name: Javascript - Iceland description: '

This is a group for anyone interested in Javascript. All skill levels are welcome. The reason why this group was started is because the Node.js community in Iceland has grown a lot and we feel like we could make some meet ups on the more general topic of javascript.

' lon: -21.920000076293945 - join_mode: open - organizer: - member_id: 58395772 - name: Kristján Ingi Mikaelsson - photo: - photo_id: 160159122 - photo_link: 'http://photos2.meetupstatic.com/photos/member/4/a/b/2/member_160159122.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/4/a/b/2/thumb_160159122.jpeg' - members: 124 - name: Javascript - Iceland lat: 64.13999938964844 - who: Javascript fanatics - - utc_offset: 10800000 - country: RO - visibility: public + - country: RO city: Bucharest - timezone: Europe/Bucharest - created: 1389205152000 link: 'http://www.meetup.com/Meteor-Romania/' - rating: 5 + name: Meteor Romania description: "

Meet other developers using Meteor. Share your knowledge, apps, and get feedback from others. Meteor is an open-source platform for building top-quality web apps in a fraction of the time, whether you're an expert developer or just getting started.

" lon: 26.100000381469727 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/d/1/3/0/highres_395633552.jpeg' - photo_id: 395633552 photo_link: 'http://photos1.meetupstatic.com/photos/event/d/1/3/0/600_395633552.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/d/1/3/0/thumb_395633552.jpeg' - join_mode: open - organizer: - member_id: 81670332 - name: Nick Coe - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/highres_245331334.jpeg' - photo_id: 245331334 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/8/8/6/member_245331334.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/thumb_245331334.jpeg' - members: 178 - name: Meteor Romania lat: 44.439998626708984 - who: Meteorites - - utc_offset: 7200000 - country: BE - visibility: public + - country: BE city: Brussels - timezone: Europe/Brussels - created: 1389208661000 link: 'http://www.meetup.com/Meteor-Brussels/' - rating: 4.74 + name: Meteor Brussels description: "

Meet other developers using Meteor. Share your knowledge, apps, and get feedback from others. Meteor is an open-source platform for building top-quality web apps in a fraction of the time, whether you're an expert developer or just getting started.

" lon: 4.329999923706055 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/d/1/c/6/highres_395633702.jpeg' - photo_id: 395633702 photo_link: 'http://photos2.meetupstatic.com/photos/event/d/1/c/6/600_395633702.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/d/1/c/6/thumb_395633702.jpeg' - join_mode: open - organizer: - member_id: 81670332 - name: Nick Coe - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/highres_245331334.jpeg' - photo_id: 245331334 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/8/8/6/member_245331334.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/thumb_245331334.jpeg' - members: 265 - name: Meteor Brussels lat: 50.83000183105469 - who: Meteorites - - utc_offset: 7200000 - country: SE - visibility: public + - country: SE city: Göteborg - timezone: Europe/Stockholm - created: 1389299324000 link: 'http://www.meetup.com/Meteor-Goteborg/' - rating: 4.62 + name: Meteor Göteborg description: "

Meet other developers using Meteor. Share your knowledge, apps, and get feedback from others. Meteor is an open-source platform for building top-quality web apps in a fraction of the time, whether you're an expert developer or just getting started.

" lon: 12.010000228881836 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/7/1/4/a/highres_422009002.jpeg' - photo_id: 422009002 photo_link: 'http://photos2.meetupstatic.com/photos/event/7/1/4/a/600_422009002.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/7/1/4/a/thumb_422009002.jpeg' - join_mode: open - organizer: - member_id: 81670332 - name: Nick Coe - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/highres_245331334.jpeg' - photo_id: 245331334 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/8/8/6/member_245331334.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/thumb_245331334.jpeg' - members: 255 - name: Meteor Göteborg lat: 57.720001220703125 - who: Göteborgare - - utc_offset: 7200000 - country: FR - visibility: public + - country: FR city: Paris - timezone: Europe/Paris - created: 1389613102000 link: 'http://www.meetup.com/JS-everywhere/' + name: JS.everywhere() Conferences description: "

The JS.everywhere() conference are organized in US and Europe

\n

They are here to demonstrate how strong is JavaScript to build and deploy B2B and B2C professional business application using widely supported Web Standards. JavaScript technologies are shown everywhere in any technologies like databases, servers, proxies, desktops, mobiles, televisions, objects, drones... and in any business / real life domains like commerce, art, sport, ecology, health, industry...

\n
\n\n

The Enterprise world is more and more looking at Cloud platforms and mobile devices for either internal, external usages. We choose for mission to help finding some of the best solutions to enhance portability & interoperability while preserving maintainability & security.

\n
\n\n

Facts

\n

•\_\_4 previous editions (first in 2011 at Boston)

\n

•\_Endorsed by the W3C (since the first edition)

\n

•\_200-300 attendees

\n

•\_Public: Developers, Web Architects, CTOs, Entrepreneurs

\n

•\_European: international attendees, all sessions are in english

\n

•\_No financial profit

\n

•\_all tickets and sponsors money is directly invested in the event to get the best speakers/attendees experience\_

\n
\n\n
\n\n

Former Sponsors:\_

\n

Amazon, Mozilla, Yahoo, RedHat, O’Reilly, eBay, Atlassian, Pubnub, MongoLabs...

\n
\n\n
\n\n

Former Media Sponsors:\_

\n

InfoQ, The Rude Baguette, Programmez, AccessiWeb, NoSQL matters, Human Coders, Moonbar

\n
\n\n
\n\n

Former Speakers:

\n

Tristan Nitot, Bill Walker (Mozilla), Philippe Le Hegaret (W3C), Douglas Crockford (PayPal), Manuel Deschamps (Twitter), Julian Aubourg (jQuery), Doris Chen (Microsoft), Pamela Fox (Khan Academy), Steve Gill (Adobe), Kyle Simpson (getify),\_Mark Percival (Yahoo!),\_Estelle Weyl (Author, Trainer & Consultant - ex Apple, Yahoo), Aaron Heckmann (10Gen),\_Stephen Blum (PubNub), Dave Freeman (HP), Steve Citron-Pousty (RedHat),\_Dio Synodinos (InfoQ)...

\n


\n\n

\n

Find the list and coverages of previous and upcoming editions on Lanyrd:

\n

http://lanyrd.com/series/jseverywhere/

\n


\n\n

\n

Feel free to contact us for more informations

" lon: 2.3399999141693115 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/9/f/e/4/highres_335440932.jpeg' - photo_id: 335440932 photo_link: 'http://photos3.meetupstatic.com/photos/event/9/f/e/4/600_335440932.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/9/f/e/4/thumb_335440932.jpeg' - join_mode: open - organizer: - member_id: 10834166 - name: Alexandre Morgaut - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/a/5/0/c/highres_169782252.jpeg' - photo_id: 169782252 - photo_link: 'http://photos1.meetupstatic.com/photos/member/a/5/0/c/member_169782252.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/a/5/0/c/thumb_169782252.jpeg' - members: 215 - name: JS.everywhere() Conferences lat: 48.86000061035156 - who: JS Globetrotters - - utc_offset: 3600000 - country: 'NO' - visibility: public - city: Oslo - timezone: Europe/Oslo - created: 1390618835000 - link: 'http://www.meetup.com/PhoneGap-Oslo/' - rating: 3 - description: "This group is for developers that are working with PhoneGap or interested to learn. This group is neutral to what type of framework you use with PhoneGap, for example Sencha Touch or AngularJS. The focus is everything related to what you can do with PhoneGap and surrounding technologies. The group mainly try to make interactive workshops where everyone participate sharing experience and interact with the speakers. If you wan't to join this group you should also check out the other awesome groups to join: \"Mobile Meetup Oslo\", \"AngularJS Oslo\" and \"HTML5 & Sencha Developers Norway\"" - lon: 10.75 - join_mode: open - organizer: - member_id: 119025622 - name: Interactive Tribe - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/9/5/d/a/highres_166418362.jpeg' - photo_id: 166418362 - photo_link: 'http://photos2.meetupstatic.com/photos/member/9/5/d/a/member_166418362.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/9/5/d/a/thumb_166418362.jpeg' - members: 53 - name: PhoneGap Oslo - lat: 59.90999984741211 - who: PhoneGapers - - utc_offset: 7200000 - country: SE - visibility: public + - country: SE city: Göteborg - timezone: Europe/Stockholm - created: 1391003284000 link: 'http://www.meetup.com/gbg-js/' + name: gbg.js description: '

This is a group for them who wants to be amongst others that have a interest in Web Development and JavaScript , who would like to be a part of techtalks, meetups, hackathons, and after-works. You should be a person who see other peoples lack of knowledge as a opportunity for you to share your own experiences.

' lon: 12.010000228881836 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/b/9/2/highres_328502962.jpeg' - photo_id: 328502962 photo_link: 'http://photos1.meetupstatic.com/photos/event/b/9/2/600_328502962.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/b/9/2/thumb_328502962.jpeg' - join_mode: open - organizer: - member_id: 12607953 - name: Erik Fonselius - photo: - photo_id: 34739962 - photo_link: 'http://photos1.meetupstatic.com/photos/member/e/a/3/a/member_34739962.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/e/a/3/a/thumb_34739962.jpeg' - members: 59 - name: gbg.js lat: 57.720001220703125 - who: "Javascripter's" - - utc_offset: 7200000 - country: AT - visibility: public + - country: AT city: Vienna - timezone: Europe/Vienna - created: 1391006561000 link: 'http://www.meetup.com/nodejs-vienna/' - rating: 4.69 + name: Node.js Vienna description: "

Hang out and discuss node.js tips, tricks, hacks, and frameworks with node.js enthusiasts, newbies and pros.\_

\n

Show cool stuff you've done and keep in touch about what else is going on in the node.js community.

" lon: 16.3700008392334 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/a/c/a/0/highres_359744192.jpeg' - photo_id: 359744192 photo_link: 'http://photos1.meetupstatic.com/photos/event/a/c/a/0/600_359744192.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/a/c/a/0/thumb_359744192.jpeg' - join_mode: open - organizer: - member_id: 10916410 - name: Christoph Walcher - photo: - photo_id: 47559842 - photo_link: 'http://photos4.meetupstatic.com/photos/member/9/b/a/2/member_47559842.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/9/b/a/2/thumb_47559842.jpeg' - members: 431 - name: Node.js Vienna lat: 48.220001220703125 - who: noders - - utc_offset: 7200000 - country: PL - visibility: public + - country: PL city: Kraków - timezone: Europe/Warsaw - created: 1391726967000 link: 'http://www.meetup.com/KrakowJS/' - rating: 4.67 + name: KrakowJS description: 'We want to bring all JS pros from Krakow together - learning, networking, chilling out.' lon: 19.959999084472656 - join_mode: open - organizer: - member_id: 67427852 - name: Jakub Malinowski - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/7/d/2/highres_239882002.jpeg' - photo_id: 239882002 - photo_link: 'http://photos4.meetupstatic.com/photos/member/7/d/2/member_239882002.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/7/d/2/thumb_239882002.jpeg' - members: 1335 - name: KrakowJS lat: 50.060001373291016 - who: JS pros - - utc_offset: 3600000 - country: GB - visibility: public + - country: GB city: London - timezone: Europe/London - created: 1391964534000 link: 'http://www.meetup.com/MEAN-Stack/' - rating: 4.64 - description: >- -

This group is for anyone interested in learning more about the MEAN - Stack (MongoDB, ExpressJS, AngularJS and Node.js) which is the latest - stack around allowing developers to do rapid application development - and application scaffolding.

- -

Join us if you're interested in this new development stack or - if you're simply interested in full stack web development, especially - JavaScript as a programming language.

- -

All skill levels are welcome as we do have presentations that - are for absolute beginners and we also bring in experts to deliver in - detail presentations about particular technologies.

- lon: -0.09000000357627869 - join_mode: open - organizer: - member_id: 63886082 - name: Elmar Gasimov - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/b/f/9/highres_254643065.jpeg' - photo_id: 254643065 - photo_link: 'http://photos3.meetupstatic.com/photos/member/b/f/9/member_254643065.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/b/f/9/thumb_254643065.jpeg' - members: 672 name: MEAN Stack - state: '17' + description: |- +

This group is for anyone interested in learning more about the MEAN Stack (MongoDB, ExpressJS, AngularJS and Node.js) which is the latest stack around allowing developers to do rapid application development and application scaffolding.

+

Join us if you're interested in this new development stack or if you're simply interested in full stack web development, especially JavaScript as a programming language.

+

All skill levels are welcome as we do have presentations that are for absolute beginners and we also bring in experts to deliver in detail presentations about particular technologies.

+ lon: -0.09000000357627869 lat: 51.52000045776367 - who: MEANies - - utc_offset: 3600000 - country: RS - visibility: public - city: Beograd - timezone: Europe/Belgrade - created: 1392222307000 - link: 'http://www.meetup.com/Balkan-Web-Developers/' - description: '

Balkan Web Developers is a group covering all forms of Web Development and JS, Functional Programming, Scalability, Cloud Computing, Mobile and more for developers from Balkan and Eastern Europe. We will host local meet ups, hackatons and opportunities to connect with successful international startups.

' - lon: 20.5 - group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/d/6/e/4/highres_332815012.jpeg' - photo_id: 332815012 - photo_link: 'http://photos2.meetupstatic.com/photos/event/d/6/e/4/600_332815012.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/d/6/e/4/thumb_332815012.jpeg' - join_mode: open - organizer: - member_id: 132892652 - name: Aleksandar Grbic - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/4/a/f/8/highres_177079192.jpeg' - photo_id: 177079192 - photo_link: 'http://photos2.meetupstatic.com/photos/member/4/a/f/8/member_177079192.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/4/a/f/8/thumb_177079192.jpeg' - members: 34 - name: Balkan Web Developers - lat: 44.83000183105469 - who: Web Devs - - utc_offset: 7200000 - country: PL - visibility: public + - country: PL city: Warsaw - timezone: Europe/Warsaw - created: 1392223296000 link: 'http://www.meetup.com/Web-Hackers-Poland/' - rating: 4.75 + name: Web Hackers Poland description: '

Web Hackers Poland is a group covering all forms of Web Development and JS, Functional Programming, Scalability, Cloud Computing, Mobile and more for developers from Poland and Eastern Europe. We will host local meet ups, hackatons and opportunities to connect with successful international startups.

' lon: 21.020000457763672 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/d/f/3/6/highres_332817142.jpeg' - photo_id: 332817142 photo_link: 'http://photos2.meetupstatic.com/photos/event/d/f/3/6/600_332817142.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/d/f/3/6/thumb_332817142.jpeg' - join_mode: open - organizer: - member_id: 93876892 - name: Henrik JO Karlsson - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/9/e/f/e/highres_146200702.jpeg' - photo_id: 146200702 - photo_link: 'http://photos1.meetupstatic.com/photos/member/9/e/f/e/member_146200702.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/9/e/f/e/thumb_146200702.jpeg' - members: 74 - name: Web Hackers Poland lat: 52.2599983215332 - who: Web Hackers - - utc_offset: 3600000 - country: PT - visibility: public + - country: PT city: Porto - timezone: Europe/Lisbon - created: 1392996033000 link: 'http://www.meetup.com/opo-js/' - rating: 5 + name: opoJS description: Meetup dedicated to all JavaScript aficionados in Porto (OPO) area. lon: -8.619999885559082 - join_mode: open - organizer: - member_id: 114630152 - name: Marco Oliveira - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/3/0/4/highres_179220772.jpeg' - photo_id: 179220772 - photo_link: 'http://photos3.meetupstatic.com/photos/member/3/0/4/member_179220772.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/3/0/4/thumb_179220772.jpeg' - members: 102 - name: opoJS lat: 41.150001525878906 - who: Members - - utc_offset: 7200000 - country: AT - visibility: public + - country: AT city: Graz - timezone: Europe/Vienna - created: 1393414022000 link: 'http://www.meetup.com/grazjs/' - rating: 4.9 + name: grazjs - Graz JavaScript Meetup description: '

Eine Gruppe für alle JavaScript Fans in und um Graz. Hauptthemen der Gruppe sollte JavaScript, Web/Mobile/Desktop Development mit JS, Server-Side JS (Node.JS, Ringojs, Vert.x) und JS-getriebene Datenbanken (MongoDB, CouchDB) sein.

' lon: 15.420000076293945 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/3/c/4/8/highres_352695432.jpeg' - photo_id: 352695432 photo_link: 'http://photos1.meetupstatic.com/photos/event/3/c/4/8/600_352695432.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/3/c/4/8/thumb_352695432.jpeg' - join_mode: open - organizer: - member_id: 137152542 - name: mario zupan - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/9/e/a/e/highres_225760622.jpeg' - photo_id: 225760622 - photo_link: 'http://photos2.meetupstatic.com/photos/member/9/e/a/e/member_225760622.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/9/e/a/e/thumb_225760622.jpeg' - members: 258 - name: grazjs - Graz JavaScript Meetup lat: 47.08000183105469 - who: JavaScripters - - utc_offset: 7200000 - country: FR - visibility: public + - country: FR city: Paris - timezone: Europe/Paris - created: 1393449385000 link: 'http://www.meetup.com/Paris-js/' - rating: 4.69 + name: Paris.js description: "

Event-driven community about Javascript.

\n

Paris.js est un user group centré sur Javascript et les sujets associés, hébergé dans les bureaux d'une entreprise parisienne différente chaque mois; les bierres et les pizzas sont souvent offertes ! Si vous voulez héberger un meetup Paris.js, contactez-nous !

\n

Paris.js c'est aussi :

\n

• Un site web qui archive les meetups et les slides/repos des talks :\_parisjs.org, et son code source open sur Github :\_https://github.com/parisjs/parisjs-website

\n

• Une mailing list pour toutes les discussions annexes (orga, questions, etc.) :\_https://groups.google.com/forum/#!forum/parisjs

\n

• Un compte Twitter (sans pollution) pour annoncer les meetups et passer des messages à la communauté :\_@parisjs

\n

• Et enfin, pour les recruteurs et annonces de job en tout genre : ne faîtes rien dans ce groupe sous peine de voir votre message supprimé, mais postez plutôt votre annonce sur la page LinkedIn dédiée :\_http://www.linkedin.com/groups/Parisjs-3852...

\n

Vous ou votre entreprise désirez nous sponsoriser ? \"Be a ParisJS host\"

\n

•\_https://github.com/parisjs/parisjs-website/wiki/Be-a-ParisJS-Host\_

" lon: 2.3399999141693115 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/c/c/3/a/highres_366232282.jpeg' - photo_id: 366232282 photo_link: 'http://photos2.meetupstatic.com/photos/event/c/c/3/a/600_366232282.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/c/c/3/a/thumb_366232282.jpeg' - join_mode: open - organizer: - member_id: 31370822 - name: DjebbZ - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/3/a/5/4/highres_31694932.jpeg' - photo_id: 31694932 - photo_link: 'http://photos2.meetupstatic.com/photos/member/3/a/5/4/member_31694932.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/3/a/5/4/thumb_31694932.jpeg' - members: 2691 - name: Paris.js lat: 48.86000061035156 - who: JavaScripteurs - - utc_offset: 7200000 - country: FR - visibility: public + - country: FR city: Rennes - timezone: Europe/Paris - created: 1393626117000 link: 'http://www.meetup.com/RennesJS/' - rating: 4.64 + name: RennesJS description: '

Communauté des développeurs #JavaScript passionnés à #Rennes

' lon: -1.6799999475479126 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/8/a/4/0/highres_338015392.jpeg' - photo_id: 338015392 photo_link: 'http://photos3.meetupstatic.com/photos/event/8/a/4/0/600_338015392.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/8/a/4/0/thumb_338015392.jpeg' - join_mode: open - organizer: - member_id: 41698582 - name: Guillaume Collic - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/5/f/3/e/highres_178884382.jpeg' - photo_id: 178884382 - photo_link: 'http://photos2.meetupstatic.com/photos/member/5/f/3/e/member_178884382.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/5/f/3/e/thumb_178884382.jpeg' - members: 321 - name: RennesJS lat: 48.11000061035156 - who: Javascripters - - utc_offset: 7200000 - country: NL - visibility: public + - country: NL city: Utrecht - timezone: Europe/Amsterdam - created: 1395152357000 link: 'http://www.meetup.com/Utrecht-JavaScript-Meetup/' - rating: 4.52 + name: Utrecht JavaScript Meetup description: "

This is a group for all things JavaScript in Utrecht (city and Province, that means you Amersfoort, Veenendaal). We are not quite sure how many people would show up for this. So we'll do a mixed JavaScript thing. Think MVC (e.g. AngularJS, Ember, BladerunnerJS etc) but also Node.js (e.g. server side JS, REST, ElasticSearch integration etc), but even GameDevs who dabble with JavaScript or Data Scientists/people/journalists who do D3.js or Leaflet.

" lon: 5.110000133514404 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/d/5/d/6/highres_376134742.jpeg' - photo_id: 376134742 photo_link: 'http://photos2.meetupstatic.com/photos/event/d/5/d/6/600_376134742.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/d/5/d/6/thumb_376134742.jpeg' - join_mode: open - organizer: - member_id: 110766112 - name: fritzvd - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/b/7/a/4/highres_145727012.jpeg' - photo_id: 145727012 - photo_link: 'http://photos1.meetupstatic.com/photos/member/b/7/a/4/member_145727012.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/b/7/a/4/thumb_145727012.jpeg' - members: 551 - name: Utrecht JavaScript Meetup lat: 52.099998474121094 - who: monkeys - - utc_offset: 7200000 - country: PL - visibility: public + - country: PL city: Studzionka - timezone: Europe/Warsaw - created: 1396425133000 link: 'http://www.meetup.com/Meteor-Studzionka/' - rating: 4.75 + name: Meteor Studzionka description: "

Meet other developers using Meteor. Share your knowledge, apps, and get feedback from others. Meteor is an open-source platform for building top-quality web apps in a fraction of the time, whether you're an expert developer or just getting started.

" lon: 18.770000457763672 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/7/4/e/2/highres_350369922.jpeg' - photo_id: 350369922 photo_link: 'http://photos1.meetupstatic.com/photos/event/7/4/e/2/600_350369922.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/7/4/e/2/thumb_350369922.jpeg' - join_mode: open - organizer: - member_id: 101038662 - name: Hubert OG - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/2/7/8/a/highres_130270122.jpeg' - photo_id: 130270122 - photo_link: 'http://photos2.meetupstatic.com/photos/member/2/7/8/a/member_130270122.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/2/7/8/a/thumb_130270122.jpeg' - members: 24 - name: Meteor Studzionka lat: 49.959999084472656 - who: Meteorites - - utc_offset: 7200000 - country: SE - visibility: public + - country: SE city: Malmö - timezone: Europe/Stockholm - created: 1396726553000 link: 'http://www.meetup.com/Oresund-Functional/' - description: >- -

Meetups to share experiences with regards of the use of functional - programming languages ​​in software projects. 

- -

Functional programming languages ​​like Clojure, Scala, - Erlang, Lisp, Haskell and Elixir.

As the group grows - we will hold events in the Øresund region: Helsingborg, Lund, Malmö, - Helsingør and Copenhagen. + name: Øresund Functional Programmers + description: |- +

Meetups to share experiences with regards of the use of functional programming languages ​​in software projects. 

+

Functional programming languages ​​like Clojure, Scala, Erlang, Lisp, Haskell and Elixir.

As the group grows we will hold events in the Øresund region: Helsingborg, Lund, Malmö, Helsingør and Copenhagen. lon: 13.020000457763672 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/e/9/2/2/highres_348959682.jpeg' - photo_id: 348959682 photo_link: 'http://photos4.meetupstatic.com/photos/event/e/9/2/2/600_348959682.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/e/9/2/2/thumb_348959682.jpeg' - join_mode: open - organizer: - member_id: 140718692 - name: Upbis - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/3/9/8/2/highres_188834722.jpeg' - photo_id: 188834722 - photo_link: 'http://photos1.meetupstatic.com/photos/member/3/9/8/2/member_188834722.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/3/9/8/2/thumb_188834722.jpeg' - members: 56 - name: Øresund Functional Programmers lat: 55.61000061035156 - who: Functional Programmers - - utc_offset: 10800000 - country: UA - visibility: public + - country: UA city: Kyiv - timezone: Europe/Kiev - created: 1397196104000 link: 'http://www.meetup.com/KievNodeJS/' - rating: 4.04 + name: Kiev node.js Group description: '

Four time a year meetup group for Node.js professionals to discuss technology, exchange experience, find solutions and share case studies.

' lon: 30.520000457763672 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/7/b/2/4/highres_434431524.jpeg' - photo_id: 434431524 photo_link: 'http://photos3.meetupstatic.com/photos/event/7/b/2/4/600_434431524.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/7/b/2/4/thumb_434431524.jpeg' - join_mode: open - organizer: - member_id: 141578132 - name: Timur Shemsedinov - members: 589 - name: Kiev node.js Group lat: 50.439998626708984 - who: software engineers - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE city: München - timezone: Europe/Berlin - created: 1397741381000 link: 'http://www.meetup.com/MunichJS-User-Group/' - rating: 4.56 + name: MunichJS – JavaScript User Group description: '

MunichJS is a user group in Munich for developers (ranging from interested onlookers to beginners to experts) that meets regularly to discuss topics related to JavaScript. Meetings take place in various locations. The group was established in October 2010 at the BarCamp in Munich.

' lon: 11.579999923706055 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/3/e/1/6/highres_443775894.jpeg' - photo_id: 443775894 photo_link: 'http://photos4.meetupstatic.com/photos/event/3/e/1/6/600_443775894.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/3/e/1/6/thumb_443775894.jpeg' - join_mode: open - organizer: - member_id: 12748118 - name: Béla Varga - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/1/f/5/8/highres_246188024.jpeg' - photo_id: 246188024 - photo_link: 'http://photos1.meetupstatic.com/photos/member/1/f/5/8/member_246188024.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/1/f/5/8/thumb_246188024.jpeg' - members: 985 - name: MunichJS – JavaScript User Group lat: 48.13999938964844 - who: Members - - utc_offset: 7200000 - country: SE - visibility: public + - country: SE city: Malmö - timezone: Europe/Stockholm - created: 1397919946000 link: 'http://www.meetup.com/NodeSkane/' - description: >- -

Do you want to meet, share knowledge and work with other node.js - developers in Skåne? We are a group of - passionate entrepreneurs and freelancers who love to - collaborate on cool projects. You are free to work on your own projects - or team up with others - just show up and have fun!

- -

We will host MeetUps in Malmö, Lund - and Helsingborg in Southern Sweden (Skåne) during 2016 when - we reach 40 members.

+ name: Node.js Skåne + description: |- +

Do you want to meet, share knowledge and work with other node.js developers in Skåne? We are a group of passionate entrepreneurs and freelancers who love to collaborate on cool projects. You are free to work on your own projects or team up with others - just show up and have fun!

+

We will host MeetUps in Malmö, Lund and Helsingborg in Southern Sweden (Skåne) during 2016 when we reach 40 members.

lon: 13.020000457763672 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/8/8/f/c/highres_446435068.jpeg' - photo_id: 446435068 photo_link: 'http://photos1.meetupstatic.com/photos/event/8/8/f/c/600_446435068.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/8/8/f/c/thumb_446435068.jpeg' - join_mode: open - organizer: - member_id: 140718692 - name: Upbis - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/3/9/8/2/highres_188834722.jpeg' - photo_id: 188834722 - photo_link: 'http://photos1.meetupstatic.com/photos/member/3/9/8/2/member_188834722.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/3/9/8/2/thumb_188834722.jpeg' - members: 39 - name: Node.js Skåne lat: 55.61000061035156 - who: Node Hackers - - utc_offset: 7200000 - country: PL - visibility: public + - country: PL city: Łódź - timezone: Europe/Warsaw - created: 1398411718000 link: 'http://www.meetup.com/meet-js-lodz/' - rating: 4.15 - description: >- -

Niekomercyjne spotkania front-endowe typu meetup, organizowane przez - społeczność dla społeczności w w Poznaniu, Warszawie, Krakowie, - Wrocławiu, Gdańsku, Katowicach, Łodzi i Szczecinie.

- -

Na każdym meet.js można liczyć na kilka prelekcji na tematy - webowo-front-endowe (JS, CSS, HTML etc.). Każda z nich trwa 30-40 - minut. Duży nacisk kładziemy na Q&A po danym speechu. Spikerami - jesteśmy my sami - developerzy. Tylko od specjalistów można dowiedzieć - się najwięcej. Każdy może przemawiać na meet.js - wystarczy się - zgłosić! Zabawa i cenne doświadczenie gwarantowane!

- lon: 19.459999084472656 - join_mode: open - organizer: - member_id: 28938802 - name: Tomasz Szymanski - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/6/5/1/0/highres_28465872.jpeg' - photo_id: 28465872 - photo_link: 'http://photos2.meetupstatic.com/photos/member/6/5/1/0/member_28465872.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/6/5/1/0/thumb_28465872.jpeg' - members: 283 name: meet.js Łódź + description: |- +

Niekomercyjne spotkania front-endowe typu meetup, organizowane przez społeczność dla społeczności w w Poznaniu, Warszawie, Krakowie, Wrocławiu, Gdańsku, Katowicach, Łodzi i Szczecinie.

+

Na każdym meet.js można liczyć na kilka prelekcji na tematy webowo-front-endowe (JS, CSS, HTML etc.). Każda z nich trwa 30-40 minut. Duży nacisk kładziemy na Q&A po danym speechu. Spikerami jesteśmy my sami - developerzy. Tylko od specjalistów można dowiedzieć się najwięcej. Każdy może przemawiać na meet.js - wystarczy się zgłosić! Zabawa i cenne doświadczenie gwarantowane!

+ lon: 19.459999084472656 lat: 51.77000045776367 - who: JS devs - - utc_offset: 10800000 - country: FI - visibility: public + - country: FI city: Helsinki - timezone: Europe/Helsinki - created: 1398444771000 link: 'http://www.meetup.com/Helsinki-Node-js/' - rating: 4.98 - description: >- -

Hello there! This is node.js developers and hackers Helsinki meetup - group. In addition to this meetup group, we have a Slack channel (get - invited here: https://helnode.typeform.com/to/q6tHHI)

- -

This groups is for all who are using or considering to use Node.js - or similar JavaScript/V8 based platforms as their server side - technology. We'll discuss Node's use as a platform for both front-end - and backend servers, use as application platform and even special use - cases e.g. in embedded world. For example, how to develop Web apps, - APIs and background workers; how to integrate into various databases - (NoSQL, RDBs); how to run Node servers smoothly in production - environment, e.g. in Amazon cloud.

+ name: Helsinki Node.js + description: |- +

Hello there! This is node.js developers and hackers Helsinki meetup group. In addition to this meetup group, we have a Slack channel (get invited here: https://helnode.typeform.com/to/q6tHHI)

+

This groups is for all who are using or considering to use Node.js or similar JavaScript/V8 based platforms as their server side technology. We'll discuss Node's use as a platform for both front-end and backend servers, use as application platform and even special use cases e.g. in embedded world. For example, how to develop Web apps, APIs and background workers; how to integrate into various databases (NoSQL, RDBs); how to run Node servers smoothly in production environment, e.g. in Amazon cloud.

lon: 24.940000534057617 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/b/5/a/a/highres_432346506.jpeg' - photo_id: 432346506 photo_link: 'http://photos4.meetupstatic.com/photos/event/b/5/a/a/600_432346506.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/b/5/a/a/thumb_432346506.jpeg' - join_mode: open - organizer: - member_id: 16877321 - name: Juha Lehtomaki - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/5/4/3/9/highres_15141561.jpeg' - photo_id: 15141561 - photo_link: 'http://photos1.meetupstatic.com/photos/member/5/4/3/9/member_15141561.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/5/4/3/9/thumb_15141561.jpeg' - members: 729 - name: Helsinki Node.js lat: 60.16999816894531 - who: Nodes - - utc_offset: 3600000 - country: IE - visibility: public + - country: IE city: Dublin - timezone: Europe/Dublin - created: 1398765225000 link: 'http://www.meetup.com/Dublin-Microservices-User-Group/' - rating: 4.58 - description: >- -

The Architectural Monolith’s days are numbered. As companies are - becoming more and more agile, and see how they can now adapt in order - to innovate and compete faster than their competition, software - development teams are being forced to maintain and evolve large, - monolithic applications at a pace of change that those architectures - were never meant to withstand, let alone embrace!

- -

Microservices are a new approach to architecting applications. They - are simple, single-purpose, lightweight architectural components that - enable you to deliver software faster. The microservice architectural - approach also aims to lead to software that thrives on change while at - the same time being secure, performant, and stable.

- -

This meet up is for people interested in architecting, designing, - deploying and maintaining micro service based software - architectures.

- lon: -6.25 - join_mode: open - organizer: - member_id: 183021851 - name: Richard Rodger - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/a/d/c/a/highres_242264490.jpeg' - photo_id: 242264490 - photo_link: 'http://photos4.meetupstatic.com/photos/member/a/d/c/a/member_242264490.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/a/d/c/a/thumb_242264490.jpeg' - members: 637 name: Dublin μServices (Microservices) User Group + description: |- +

The Architectural Monolith’s days are numbered. As companies are becoming more and more agile, and see how they can now adapt in order to innovate and compete faster than their competition, software development teams are being forced to maintain and evolve large, monolithic applications at a pace of change that those architectures were never meant to withstand, let alone embrace!

+

Microservices are a new approach to architecting applications. They are simple, single-purpose, lightweight architectural components that enable you to deliver software faster. The microservice architectural approach also aims to lead to software that thrives on change while at the same time being secure, performant, and stable.

+

This meet up is for people interested in architecting, designing, deploying and maintaining micro service based software architectures.

+ lon: -6.25 lat: 53.33000183105469 - who: μServicers - - utc_offset: 10800000 - country: GR - visibility: public + - country: GR city: Thessaloníki - timezone: Europe/Athens - created: 1398907906000 link: 'http://www.meetup.com/Thessaloniki-Node-js-Meetup/' - rating: 4.95 - description: >- + name: Thessaloníki Node.js Meetup + description: |-

Do you love Node? We love it TOO!

- -

Thessaloniki Node.js Meetup is an initiative to connect "Noders" - across Thessaloniki in order to exchange ideas, knowledge and - experience. We are a rapidly growing community that is welcoming - individuals from diverse backgrounds and we are happy to assist fellow - developers, designers, managers to understand Node.js, learn how to use - it and build great things with it!

- -

Come and meet us if you want to hear how others are using Node.js to - solve real life problems.

- -

P.S Because we are aware of the power of video, take a look of what - being a Noder means! (in-house produced)

- -

Node.js December - 2014Node.js Jan. - 2015Node.js April - 2015Node.js May - 2015Node.js Sept. - 2015Node.js November - 2015Node.js January - 2016Node.js February - 2016

- +

Thessaloniki Node.js Meetup is an initiative to connect "Noders" across Thessaloniki in order to exchange ideas, knowledge and experience. We are a rapidly growing community that is welcoming individuals from diverse backgrounds and we are happy to assist fellow developers, designers, managers to understand Node.js, learn how to use it and build great things with it!

+

Come and meet us if you want to hear how others are using Node.js to solve real life problems.

+

P.S Because we are aware of the power of video, take a look of what being a Noder means! (in-house produced)

+

Node.js December 2014Node.js Jan. 2015Node.js April 2015Node.js May 2015Node.js Sept. 2015Node.js November 2015Node.js January 2016Node.js February 2016


-
lon: 22.940000534057617 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/8/c/8/e/highres_359075982.jpeg' - photo_id: 359075982 photo_link: 'http://photos2.meetupstatic.com/photos/event/8/c/8/e/600_359075982.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/8/c/8/e/thumb_359075982.jpeg' - join_mode: open - organizer: - member_id: 127474842 - name: Konstantinos Margaritis - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/e/7/9/d/highres_250619293.jpeg' - photo_id: 250619293 - photo_link: 'http://photos2.meetupstatic.com/photos/member/e/7/9/d/member_250619293.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/e/7/9/d/thumb_250619293.jpeg' - members: 331 - name: Thessaloníki Node.js Meetup lat: 40.63999938964844 - who: Noders - - utc_offset: 7200000 - country: IT - visibility: public + - country: IT city: Venezia - timezone: Europe/Rome - created: 1400053662000 link: 'http://www.meetup.com/larus-community/' - rating: 5 - description: >- + name: 'OpenSource & Agile Venice Group' + description: |-

Hi All,

- -

we are LARUS Business Automation, a company based in Mestre - (Venezia) specialised in building web applications based on the Spring - Framework, following principles behind the Agile Manifesto.

- -

We organise not only training courses, but also free talks and meet - ups, aiming to help sharing and learning skills to write better - software.

- +

we are LARUS Business Automation, a company based in Mestre (Venezia) specialised in building web applications based on the Spring Framework, following principles behind the Agile Manifesto.

+

We organise not only training courses, but also free talks and meet ups, aiming to help sharing and learning skills to write better software.

In our free-events we are used to talking about these topics:

-

1) OpenSource: JAVA, LINUX, ANDROID
- - - 2) Agile Software Development, Agile & Lean Software - Management
- - + 2) Agile Software Development, Agile & Lean Software Management
3) Architectures: SOA (without ESB), REST
- - 4) Mobile: Android, iOS
- - 5) WEB: HTML5, JQuery, Javascript Frameworks, WebSockets
- - 6) NOSQL: Neo4J Graph Database and other non-relational databases

- -

You can find out more informations about LARUS on our web site: http://www.larus-ba.it

- -

If you share our same interests we really love you would join this - group: we love to learn from you too!

- +

You can find out more informations about LARUS on our web site: http://www.larus-ba.it

+

If you share our same interests we really love you would join this group: we love to learn from you too!

Cheers,
- - Lorenzo Speranzoni - LARUS Business Automation srl

lon: 12.329999923706055 - join_mode: open - organizer: - member_id: 129958492 - name: Lorenzo Speranzoni - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/c/2/c/6/highres_229729862.jpeg' - photo_id: 229729862 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/2/c/6/member_229729862.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/c/2/c/6/thumb_229729862.jpeg' - members: 17 - name: 'OpenSource & Agile Venice Group' - state: VE lat: 45.439998626708984 - who: 'OpenSource & Agile people' - - utc_offset: 7200000 - country: SE - visibility: public + - country: SE city: Uppsala - timezone: Europe/Stockholm - created: 1400240084000 link: 'http://www.meetup.com/Uppsalajs/' - rating: 4.58 + name: Uppsala.js description: '

Welcome to the JavaScript user group in Uppsala! Whether you are an experienced programmer or a just starting to learn – this group is for you. Meet other JavaScript developers and share thoughts and ideas.

' lon: 17.639999389648438 - join_mode: open - organizer: - member_id: 140931522 - name: Johan Olsson - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/1/e/a/highres_201949642.jpeg' - photo_id: 201949642 - photo_link: 'http://photos3.meetupstatic.com/photos/member/c/1/e/a/member_201949642.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/1/e/a/thumb_201949642.jpeg' - members: 331 - name: Uppsala.js lat: 59.86000061035156 - who: js-hackers - - utc_offset: 10800000 - country: TR - visibility: public + - country: TR city: Istanbul - timezone: Europe/Istanbul - created: 1400448189000 link: 'http://www.meetup.com/jstanbul/' - rating: 4.44 + name: 'Jstanbul: Istanbul JavaScript User Group' description: '

This is a group for people who interested in JavaScript and connected technologies.

' lon: 28.959999084472656 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/b/1/b/4/highres_364905492.jpeg' - photo_id: 364905492 photo_link: 'http://photos3.meetupstatic.com/photos/event/b/1/b/4/600_364905492.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/b/1/b/4/thumb_364905492.jpeg' - join_mode: open - organizer: - member_id: 13434614 - name: Murat Can Demir - photo: - photo_id: 176935182 - photo_link: 'http://photos2.meetupstatic.com/photos/member/d/7/8/e/member_176935182.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/d/7/8/e/thumb_176935182.jpeg' - members: 861 - name: 'Jstanbul: Istanbul JavaScript User Group' lat: 41.0099983215332 - who: Ninjas - - utc_offset: 7200000 - country: BE - visibility: public + - country: BE city: Brussels - timezone: Europe/Brussels - created: 1401034216000 link: 'http://www.meetup.com/front-end-brussels/' - rating: 4.83 - description: >- -

This is a group for anyone interested in front-end. All skills - levels are welcome. I started this group because I'd like to meet other - outdoor enthusiasts. Looking forward to explore the outdoors with - everybody.
- - + name: Front-end in Brussels + description: |- +

This is a group for anyone interested in front-end. All skills levels are welcome. I started this group because I'd like to meet other outdoor enthusiasts. Looking forward to explore the outdoors with everybody.

lon: 4.329999923706055 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/c/6/9/a/highres_371450842.jpeg' - photo_id: 371450842 photo_link: 'http://photos1.meetupstatic.com/photos/event/c/6/9/a/600_371450842.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/c/6/9/a/thumb_371450842.jpeg' - join_mode: open - organizer: - member_id: 124252572 - name: Helene - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/8/1/b/b/highres_243933211.jpeg' - photo_id: 243933211 - photo_link: 'http://photos1.meetupstatic.com/photos/member/8/1/b/b/member_243933211.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/8/1/b/b/thumb_243933211.jpeg' - members: 208 - name: Front-end in Brussels lat: 50.83000183105469 - who: Frontenders - - utc_offset: 7200000 - country: NL - visibility: public + - country: ES + city: Barcelona + link: 'http://www.meetup.com/Bluemix-Barcelona/' + name: Bluemix Barcelona + description: |- +

¿Quieres conocer el entorno de ejecución de aplicaciones Cloud de IBM? Si eres un creador de aplicaciones o un emprendedor con ideas, este es tu grupo. Bluemix es una plataforma Cloud, con una entrada gratuita, en la que puedes desplegar tus aplicaciones. Además está basado en CloudFoundry, así que soporta casi todos los lenguajes de programación.

+

Vamos a darle a la tecla... pero con estilo

+

+


+

¿Quieres saber qué es Bluemix ya? Aquí tenemos una comunidad de IBM DeveloperWorks con información y tutoriales en castellano:

+

Comunidad DeveloperWorks de Bluemix España (dentro está la Wiki, y materiales del workshop que damos)

+

Página de acceso a Bluemix

+ lon: 2.1700000762939453 + group_photo: + photo_link: 'http://photos4.meetupstatic.com/photos/event/b/8/a/8/600_369167272.jpeg' + lat: 41.400001525878906 + - country: NL city: Groningen - timezone: Europe/Amsterdam - created: 1402592549000 link: 'http://www.meetup.com/GrunnJS/' - rating: 4.65 + name: GrunnJS description: '

GrunnJS is a meetup for everything JavaScript. The goal is to provide a social meetup for people near Groningen (or anyone interested) that do something with JS. Want to present your latest hack, you can do it here. Anyone that does something or is interested in JS is welcome. Libraries, applications, neat features, client or server side can be presented and discussed. The meetup will have one or two short talks and some beer, drinks and snacks afterwards. You can extend your network and meet people with similar interests.

' lon: 6.570000171661377 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/3/0/3/6/highres_402372342.jpeg' - photo_id: 402372342 photo_link: 'http://photos3.meetupstatic.com/photos/event/3/0/3/6/600_402372342.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/3/0/3/6/thumb_402372342.jpeg' - join_mode: open - organizer: - member_id: 81424892 - name: Martijn Swaagman - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/2/4/3/8/highres_99009272.jpeg' - photo_id: 99009272 - photo_link: 'http://photos3.meetupstatic.com/photos/member/2/4/3/8/member_99009272.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/2/4/3/8/thumb_99009272.jpeg' - members: 170 - name: GrunnJS lat: 53.22999954223633 - who: JavaScripters - - utc_offset: 7200000 - country: NL - visibility: public + - country: NL city: Amsterdam - timezone: Europe/Amsterdam - created: 1402665109000 link: 'http://www.meetup.com/Dutch-OpenShift-User-Group/' + name: Dutch OpenShift User Group description: '

This group is a place for developers to learn more about the Platform as a Service solution by Red Hat called "OpenShift". OpenShift is the leading Platform as a Service solution to DEVELOP, HOST, AND SCALE YOUR APPS IN THE CLOUD. So if you want to explore OpenShift, please join us!

' lon: 4.889999866485596 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/d/5/d/6/highres_374694742.jpeg' - photo_id: 374694742 photo_link: 'http://photos1.meetupstatic.com/photos/event/d/5/d/6/600_374694742.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/d/5/d/6/thumb_374694742.jpeg' - join_mode: open - organizer: - member_id: 4154993 - name: Alessandro Vozza - photo: - photo_id: 131514572 - photo_link: 'http://photos1.meetupstatic.com/photos/member/d/5/2/c/member_131514572.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/d/5/2/c/thumb_131514572.jpeg' - members: 68 - name: Dutch OpenShift User Group lat: 52.369998931884766 - who: Developers - - utc_offset: 7200000 - country: PL - visibility: public + - country: PL city: Warsaw - timezone: Europe/Warsaw - created: 1402831462000 link: 'http://www.meetup.com/WarsawJS/' - rating: 4.64 + name: WarsawJS description: "

We talk about JavaScript. Every month in Warsaw, Poland.

\n


\n\n

\n

WarsawJS is a local community of JavaScript professionals and enthusiasts. We meet every month to talk and debate about our favorite programming language. This community is focused on sharing experience from different fields on which JS is used, from web browsers, to servers, dev tools, mobiles, smart tvs, micro controllers,\_ databases, video games and so on. We increase our collective knowledge, by building integrated network of skilled individuals and local companies. Join Us Today!
\n\n

" lon: 21.020000457763672 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/7/3/f/c/highres_400649692.jpeg' - photo_id: 400649692 photo_link: 'http://photos1.meetupstatic.com/photos/event/7/3/f/c/600_400649692.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/7/3/f/c/thumb_400649692.jpeg' - join_mode: open - organizer: - member_id: 127970372 - name: Piotr Zientara - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/b/f/3/7/highres_245988951.jpeg' - photo_id: 245988951 - photo_link: 'http://photos1.meetupstatic.com/photos/member/b/f/3/7/member_245988951.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/b/f/3/7/thumb_245988951.jpeg' - members: 1270 - name: WarsawJS lat: 52.2599983215332 - who: Members - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE city: Ravensburg - timezone: Europe/Berlin - created: 1402916836000 link: 'http://www.meetup.com/Ravensburg-Programming-Meetup/' - rating: 5 + name: Ravensburg Programming Meetup description: "

Wir organisieren ein zweiwöchentliches Meetup um Leute aus der Gegend kennenzulernen,\_die sich für modernes Programmieren im Bereich Web, Mobile und Enterprise interessieren. Dazu zählen z.B. JavaScript, Nodejs, Angular, Ruby, Python, Socket.io, Objective-C, Cocoa, Java und Ähnliches. Die Atmosphäre ist locker bis fröhlich, Anzüge sind verboten.

" lon: 9.600000381469727 - join_mode: open - organizer: - member_id: 151773462 - name: Johannes Fritsch - photo: - photo_id: 204793512 - photo_link: 'http://photos1.meetupstatic.com/photos/member/3/4/c/8/member_204793512.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/3/4/c/8/thumb_204793512.jpeg' - members: 22 - name: Ravensburg Programming Meetup lat: 47.790000915527344 - who: Programmerinos - - utc_offset: 7200000 - country: NL - visibility: public + - country: NL city: Nijmegen - timezone: Europe/Amsterdam - created: 1403266303000 link: 'http://www.meetup.com/Nijmegen-Developers-Meetup/' - rating: 4.61 - description: >- -

Kom naar deze meetup om mede-developers uit Nijmegen en omgeving te - ontmoeten en kennis en ervaringen uit te wisselen. Er is elke keer een - presentatie of een workshop over een aan development gerelateerd - onderwerp. 

- -

Ook bieden we elke keer de gelegenheid aan drie leden om een 10 - minuten pitch te houden over een development gerelateerd onderwerp dat - je tof vindt. Een project, een bepaalde techniek, nieuwe - hardware/software, zoiets.

- -

Na afloop is er altijd tijd voor een biertje of drankje. Relaxt, - interessant en gezellig! Om de maand op de vierde donderdag van de - maand.

- -

Ben je op zoek naar developers maar ben je zelf geen developer, dan - kan je best contact met ons opnemen, maar de meetups zijn echt alleen - voor developers.

- lon: 5.849999904632568 - join_mode: open - organizer: - member_id: 152463462 - name: Remko Klumpes - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/d/f/a/4/highres_205737252.jpeg' - photo_id: 205737252 - photo_link: 'http://photos4.meetupstatic.com/photos/member/d/f/a/4/member_205737252.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/d/f/a/4/thumb_205737252.jpeg' - members: 170 name: Nijmegen Developers Meetup + description: |- +

Kom naar deze meetup om mede-developers uit Nijmegen en omgeving te ontmoeten en kennis en ervaringen uit te wisselen. Er is elke keer een presentatie of een workshop over een aan development gerelateerd onderwerp. 

+

Ook bieden we elke keer de gelegenheid aan drie leden om een 10 minuten pitch te houden over een development gerelateerd onderwerp dat je tof vindt. Een project, een bepaalde techniek, nieuwe hardware/software, zoiets.

+

Na afloop is er altijd tijd voor een biertje of drankje. Relaxt, interessant en gezellig! Om de maand op de vierde donderdag van de maand.

+

Ben je op zoek naar developers maar ben je zelf geen developer, dan kan je best contact met ons opnemen, maar de meetups zijn echt alleen voor developers.

+ lon: 5.849999904632568 lat: 51.84000015258789 - who: Developers - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE city: Berlin - timezone: Europe/Berlin - created: 1403527376000 link: 'http://www.meetup.com/Berlin-Grill-JS-Meetup/' - rating: 5 + name: Berlin Grill.JS Meetup description: "

Summer is here, so let's get together around the grill, have a few beers and wursts, and enjoy a lush evening on the summer terrace. The Grill.JS Meetup is strictly informal. There won't be official tech presentations, it's all about friendly discussions over a beer and a grillwurst. We do welcome lightning talks, and we're sure attendees would love to listen to \"my dumbest JS idea this year \". Just keep it short and entertaining. We'll provide for drinks (beer, mate, non-alcoholic) and grillwurst and some vegetarion options, and some salad. If you have special requirements, please bring your own food or drinks.

" lon: 13.380000114440918 - join_mode: open - organizer: - member_id: 47019452 - name: Per Fragemann - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/c/8/9/8/highres_206391352.jpeg' - photo_id: 206391352 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/8/9/8/member_206391352.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/c/8/9/8/thumb_206391352.jpeg' - members: 67 - name: Berlin Grill.JS Meetup lat: 52.52000045776367 - who: JS Grillers - - utc_offset: 3600000 - country: GB - visibility: public + - country: GB city: Leeds - timezone: Europe/London - created: 1403597682000 link: 'http://www.meetup.com/Leeds-Code-Dojo/' - rating: 4.92 + name: Leeds Code Dojo description: "

Leeds Code Dojo is a group dedicated to programming. \_We focus on practical coding sessions , where you can learn by doing.

\n

Want to have some fun coding in a relaxed and friendly environment? Interested in self-improvement through deliberate practice? Want to see what you can learn from fellow programmers, and teach them what you know? Then Leeds Code Dojo is for you!

\n

All languages and levels of experience welcome.
\n\n

" lon: -1.559999942779541 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/e/4/a/e/highres_385018542.jpeg' - photo_id: 385018542 photo_link: 'http://photos1.meetupstatic.com/photos/event/e/4/a/e/600_385018542.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/e/4/a/e/thumb_385018542.jpeg' - join_mode: open - organizer: - member_id: 34670522 - name: Grant Crofton - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/8/d/b/a/highres_206616282.jpeg' - photo_id: 206616282 - photo_link: 'http://photos4.meetupstatic.com/photos/member/8/d/b/a/member_206616282.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/8/d/b/a/thumb_206616282.jpeg' - members: 545 - name: Leeds Code Dojo - state: '45' lat: 53.79999923706055 - who: Coders - - utc_offset: 3600000 - country: GB - visibility: public + - country: GB city: London - timezone: Europe/London - created: 1403717538000 link: 'http://www.meetup.com/Fullstack-js-London/' - rating: 4.9 + name: Fullstack.js London description: "

This group aims to explore the wonderful world of fullstack javascript. There are no limits on what libraries or technologies apart from heavy usage of javascript on the front and backend. Anyone wishing to learn or show off some fullstack js projects is more than welcome. It's our time Ninja's.

" lon: -0.10000000149011612 - join_mode: open - organizer: - member_id: 10540206 - name: Gregory Benr - photo: - photo_id: 154824872 - photo_link: 'http://photos4.meetupstatic.com/photos/member/6/1/2/8/member_154824872.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/6/1/2/8/thumb_154824872.jpeg' - members: 794 - name: Fullstack.js London - state: '17' lat: 51.4900016784668 - who: fullstackers - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE city: Hamburg - timezone: Europe/Berlin - created: 1403785279000 link: 'http://www.meetup.com/node-HH/' - rating: 4.51 - description: >- -

This is a group for anyone interested in Node.js. We - will meet to talk, hack and learn with and from - each other. This is an open group, everyone is invited to - propose talks and hands-on ideas. We all are learners in some - way, don't be shy. To give you a hint, you could talk about:

- -

• this one library, that changed your life or just helped you out. -

- + name: node.HH - Node.js User Group + description: |- +

This is a group for anyone interested in Node.js. We will meet to talk, hack and learn with and from each other. This is an open group, everyone is invited to propose talks and hands-on ideas. We all are learners in some way, don't be shy. To give you a hint, you could talk about:

+

• this one library, that changed your life or just helped you out.

• how do you use Node?

-

• best practices in development and operations

-

• integration of Node.js in existing setups

-

• interesting hacks or benchmarks

-

• name your topic

- -

The talks can be in english or german, depending on the attenders. - However english is preferred in case of conflicts. Usually there should - be 1-3 Talks plus enough time for socializing. If you know about - someone who definitely should talk at our meetup, put - a message and i try to make contact. Or do it yourself.

- +

The talks can be in english or german, depending on the attenders. However english is preferred in case of conflicts. Usually there should be 1-3 Talks plus enough time for socializing. If you know about someone who definitely should talk at our meetup, put a message and i try to make contact. Or do it yourself.


- -

Also we want to mix the formats, and will do open spaces, - panel discussions and other stuff.

- +

Also we want to mix the formats, and will do open spaces, panel discussions and other stuff.


- -

We consider this group as an affiliate of the HH.js group. If you have - some general talks on JavaScript or front-end specific stuff, please - consider to talk there (most of us attend there anyway :) ). - This being said, if you have a strong argument to talk here instead, we - are happy to have you here.

- +

We consider this group as an affiliate of the HH.js group. If you have some general talks on JavaScript or front-end specific stuff, please consider to talk there (most of us attend there anyway :) ). This being said, if you have a strong argument to talk here instead, we are happy to have you here.

Feedback Channel

- -

we have a (new) Trello - Board, where you can put any kind of feedback, your ideas, wishes - and proposals. We have a voting option there as well. Please use this! -

- +

we have a (new) Trello Board, where you can put any kind of feedback, your ideas, wishes and proposals. We have a voting option there as well. Please use this!

Important Note

- -

We are trying to be an inclusive meetup and happily - conform to the Code of - Conduct.

- -

Don't forget to follow us on Twitter: @NodeHamburg

+

We are trying to be an inclusive meetup and happily conform to the Code of Conduct.

+

Don't forget to follow us on Twitter: @NodeHamburg

lon: 10 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/a/1/1/0/highres_382301232.jpeg' - photo_id: 382301232 photo_link: 'http://photos3.meetupstatic.com/photos/event/a/1/1/0/600_382301232.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/a/1/1/0/thumb_382301232.jpeg' - join_mode: open - organizer: - member_id: 38758812 - name: Gregor Elke - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/2/d/c/a/highres_206651722.jpeg' - photo_id: 206651722 - photo_link: 'http://photos3.meetupstatic.com/photos/member/2/d/c/a/member_206651722.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/2/d/c/a/thumb_206651722.jpeg' - members: 488 - name: node.HH - Node.js User Group lat: 53.54999923706055 - who: Noder - - utc_offset: 7200000 - country: FR - visibility: public + - country: FR city: Montpellier - timezone: Europe/Paris - created: 1403863277000 link: 'http://www.meetup.com/MontpellierJS/' - rating: 4.03 + name: MontpellierJS description: "Il s'agit d'un groupe visant à rassembler les utilisateurs et développeurs javascript sur la région de Montpellier." lon: 3.869999885559082 - join_mode: open - organizer: - member_id: 116779712 - name: Brice - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/1/d/3/a/highres_207307482.jpeg' - photo_id: 207307482 - photo_link: 'http://photos4.meetupstatic.com/photos/member/1/d/3/a/member_207307482.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/1/d/3/a/thumb_207307482.jpeg' - members: 195 - name: MontpellierJS lat: 43.61000061035156 - who: Participants - - utc_offset: 7200000 - country: FR - visibility: public + - country: FR city: Grenoble - timezone: Europe/Paris - created: 1403899014000 link: 'http://www.meetup.com/AngularJS-Meetup-Grenoble/' - rating: 4.4 + name: 'Angular & more' description: '

This group is to exchange experiences with Angular and to be aware of new technologies for the Frontend developer. 

' lon: 5.71999979019165 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/4/5/3/f/highres_442217727.jpeg' - photo_id: 442217727 photo_link: 'http://photos4.meetupstatic.com/photos/event/4/5/3/f/600_442217727.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/4/5/3/f/thumb_442217727.jpeg' - join_mode: open - organizer: - member_id: 145151802 - name: Peter HIRT - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/8/0/5/a/highres_241592858.jpeg' - photo_id: 241592858 - photo_link: 'http://photos2.meetupstatic.com/photos/member/8/0/5/a/member_241592858.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/8/0/5/a/thumb_241592858.jpeg' - members: 125 - name: 'Angular & more' lat: 45.189998626708984 - who: Members - country: IS - visibility: public city: Reykjavík - timezone: Atlantic/Reykjavik - created: 1404342780000 link: 'http://www.meetup.com/Meteor-Reykjavik/' + name: Meteor Reykjavík description: "

Meet other developers using Meteor. Share your knowledge, apps, and get feedback from others. Meteor is an open-source platform for building top-quality web apps in a fraction of the time, whether you're an expert developer or just getting started.

" lon: -21.920000076293945 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/6/2/b/8/highres_382465272.jpeg' - photo_id: 382465272 photo_link: 'http://photos3.meetupstatic.com/photos/event/6/2/b/8/600_382465272.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/6/2/b/8/thumb_382465272.jpeg' - join_mode: open - organizer: - member_id: 81670332 - name: Nick Coe - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/highres_245331334.jpeg' - photo_id: 245331334 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/8/8/6/member_245331334.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/thumb_245331334.jpeg' - members: 67 - name: Meteor Reykjavík lat: 64.13999938964844 - who: Meteorites - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE city: Saarbrücken - timezone: Europe/Berlin - created: 1404655360000 link: 'http://www.meetup.com/SaarJS/' - rating: 5 + name: SaarJS User Group description: SaarJS is a user group in Saarbrücken for developers (ranging from interested onlookers to beginners to experts) that meets regularly to discuss topics related to JavaScript. Meetings take place in various locations. lon: 6.96999979019165 - join_mode: open - organizer: - member_id: 88397632 - name: Johannes - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/4/e/0/4/highres_218059972.jpeg' - photo_id: 218059972 - photo_link: 'http://photos4.meetupstatic.com/photos/member/4/e/0/4/member_218059972.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/4/e/0/4/thumb_218059972.jpeg' - members: 45 - name: SaarJS User Group lat: 49.25 - who: Members - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE city: Darmstadt - timezone: Europe/Berlin - created: 1405019244000 link: 'http://www.meetup.com/Darmstadt-node-js-Meetup/' - rating: 4.71 + name: Darmstadt node.js Meetup description: "

node.js ist in der Vergangenheit immer interessanter zur Entwicklung von Next Level Anwendungen geworden. Gibt es im Rhein-Main Gebiet Interessierte die ihr wissen an andere weitergeben wollen? Oder gibt es Interessierte die mehr über node.js und das Ökosystem dahinter erfahren wollen?\_

\n

Agenda\_

\n

Da dies das erste node.js Darmstadt Meetup wäre, gibt es bisher nur eine kleine Agenda:\_

\n

•\_Wenn gewünscht, kurze Einführung in node.js\_

\n

•\_Eine kleine Q&amp;A Runde mit den Teilnehmern: Wer benutzt bereits node.js? Professionell/Beruflich oder als Hobby? Welche Erfahrungen (Probleme, Vorteile) wurden mit node.js gemacht?\_

\n

•\_Ideen sammeln für das nächste Meetup ;-)

\n

--\_

\n

node.js has become more and more intersting for developing next level web applications. Are there people in the Rhein-Main region who want to give their knowledge to other interested people? Or... are there people who want to use node.js in future and want to know more about it?\_

\n

Agenda\_

\n

Because this would be the first Meetup there is no real agenda yet.\_

\n

• Introduction to node.js (if requested)\_

\n

•\_A personal Q&amp;A round with the participants: Who's using node.js already? Professonal or Hobby? What where the pains, gains and experiences with using node.js?\_

\n

•\_Collecting ideas for next Meetup ;-)
\n\n

" lon: 8.640000343322754 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/c/5/5/0/highres_385970512.jpeg' - photo_id: 385970512 photo_link: 'http://photos3.meetupstatic.com/photos/event/c/5/5/0/600_385970512.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/c/5/5/0/thumb_385970512.jpeg' - join_mode: open - organizer: - member_id: 126406522 - name: Ben - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/6/1/e/6/highres_210865062.jpeg' - photo_id: 210865062 - photo_link: 'http://photos4.meetupstatic.com/photos/member/6/1/e/6/member_210865062.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/6/1/e/6/thumb_210865062.jpeg' - members: 134 - name: Darmstadt node.js Meetup lat: 49.869998931884766 - who: Noders - - utc_offset: 7200000 - country: SK - visibility: public + - country: SK city: Bratislava - timezone: Europe/Bratislava - created: 1405288573000 link: 'http://www.meetup.com/nodeba/' - rating: 4.8 + name: Node.js Bratislava description: "

We are about Node.js for beginners, experts and everyone who loves javascript. It's about using Node.js as frontend dev, backend dev or even devops. And last but not least node.js for fun like nodebots or building quadrocopters.

\n

JIFASNIF - JavaScript is fun, and so Node is fun. (c) isaacs

\n

Meet us online https://gitter.im/nodeba/nodeba

\n

Here are talks https://github.com/nodeba

" lon: 17.1299991607666 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/a/e/c/8/highres_444644744.jpeg' - photo_id: 444644744 photo_link: 'http://photos2.meetupstatic.com/photos/event/a/e/c/8/600_444644744.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/a/e/c/8/thumb_444644744.jpeg' - join_mode: open - organizer: - member_id: 117445052 - name: Matej Nemček - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/9/5/e/4/highres_155198372.jpeg' - photo_id: 155198372 - photo_link: 'http://photos2.meetupstatic.com/photos/member/9/5/e/4/member_155198372.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/9/5/e/4/thumb_155198372.jpeg' - members: 126 - name: Node.js Bratislava lat: 48.15999984741211 - who: Members - - utc_offset: 7200000 - country: FR - visibility: public + - country: ES + city: Palma + link: 'http://www.meetup.com/MallorcaJS/' + name: MallorcaJS + description: "

This is a group for people doing stuff with JavaScript.
If you are building rich Internet applications, working with libraries or crafting cool code, you'll find people to share your experiences with.
If you are just starting out, come and meet others who have been there. This is a place to share knowledge, ask questions, teach and meet new faces.
Everyone is welcome!

" + lon: 2.6500000953674316 + group_photo: + photo_link: 'http://photos4.meetupstatic.com/photos/event/d/d/b/0/600_408536752.jpeg' + lat: 39.56999969482422 + - country: FR city: Saint-Étienne - timezone: Europe/Paris - created: 1406829671000 link: 'http://www.meetup.com/Meteor-Sainte/' - rating: 5 + name: Meteor Sainté description: "Meetup dédié à la plateforme Meteor, framework web basé sur nodejs, réactif et simple d'accès. Tout le monde est le bienvenu. Simplement curieux, débutant, expérimenté.. Démonstrations, workshops et initiations. https://www.meteor.com/" lon: 4.389999866485596 - join_mode: open - organizer: - member_id: 149967282 - name: Michael Mazurczak - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/5/0/c/d/highres_242120685.jpeg' - photo_id: 242120685 - photo_link: 'http://photos2.meetupstatic.com/photos/member/5/0/c/d/member_242120685.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/5/0/c/d/thumb_242120685.jpeg' - members: 36 - name: Meteor Sainté lat: 45.43000030517578 - who: meteorites - - utc_offset: 7200000 - country: SE - visibility: public + - country: SE city: Uppsala - timezone: Europe/Stockholm - created: 1406921688000 link: 'http://www.meetup.com/meteor-uppsala/' - rating: 4.84 + name: Meteor Uppsala description: "

Meet other developers using Meteor. Share your knowledge, apps, and get feedback from others. Meteor is an open-source platform for building top-quality web apps in a fraction of the time, whether you're an expert developer or just getting started.

" lon: 17.639999389648438 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/5/a/e/5/highres_437483269.jpeg' - photo_id: 437483269 photo_link: 'http://photos2.meetupstatic.com/photos/event/5/a/e/5/600_437483269.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/5/a/e/5/thumb_437483269.jpeg' - join_mode: open - organizer: - member_id: 81670332 - name: Nick Coe - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/highres_245331334.jpeg' - photo_id: 245331334 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/8/8/6/member_245331334.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/thumb_245331334.jpeg' - members: 97 - name: Meteor Uppsala lat: 59.86000061035156 - who: Meteorites - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE city: Ulm - timezone: Europe/Berlin - created: 1407302844000 link: 'http://www.meetup.com/webmontag/' - rating: 4.5 + name: Web Montag Ulm description: "

Ein Web Montag ist ein informelles Treffen rund um aktuelle Themen aus dem Bereich Internet und neue Medien, das Entwickler, Designer, Unternehmer, Blogger und sonstige beruflich oder privat Interessierten zusammenbringt.

\n

Wir treffen uns jeden ersten Montag im Monat im Coworking Space\_wørkraum, um über aktuelle Trends und Themen aus den Bereichen Internet und Neue Medien zu diskutieren. Einleitend finden dazu oft kurze Vorträge und Präsentationen einiger Teilnehmer statt.
\n\n

\n

Ein Web Montag findet üblicherweise in einem lockeren, offenen Rahmen statt. Nach Möglichkeit mit Getränken, Snacks, Wi-Fi, interaktiven Präsentationen, Demos zu aktuellen Projekten und Produkten, Vorstellung und Austausch neuer Ideen, Brainstorming, Networking…\_
\n\n

\n

Der Web Montag steht allen offen, die sich für Themen rund um die Zukunft des Internets interessieren, egal ob Experte oder Anfänger. Einzige Grundvoraussetzung ist Offenheit für neue Ideen sowie die Bereitschaft, zu lernen und Wissen zu teilen.

" lon: 9.970000267028809 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/7/d/c/highres_415502012.jpeg' - photo_id: 415502012 photo_link: 'http://photos1.meetupstatic.com/photos/event/7/d/c/600_415502012.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/7/d/c/thumb_415502012.jpeg' - join_mode: open - organizer: - member_id: 87826122 - name: Christian Ranz - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/4/b/6/6/highres_216499302.jpeg' - photo_id: 216499302 - photo_link: 'http://photos4.meetupstatic.com/photos/member/4/b/6/6/member_216499302.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/4/b/6/6/thumb_216499302.jpeg' - members: 145 - name: Web Montag Ulm lat: 48.400001525878906 - who: Teilnehmer - country: GB - visibility: public city: London - timezone: Europe/London - created: 1407314293000 - link: 'http://www.meetup.com/London-js/' - description: '

London.js Meetup is aimed at professionals within the web industry who have an interest in software developement and computer science.

' + link: 'http://www.meetup.com/London-dev/' + name: London.dev + description: |- +

Welcome to London.dev Meetup. 

+

London.dev is aimed at professionals within the web industry who have an interest in Software development, and/or Computer science.  It happens usually the last Tuesday of every Month.

+

We are looking for volunteers, speakers, partners, sponsors and nice places to host the event. We like to work with other meetups and conferences too. If you are interested in or have some idea about, please contact us.

+

Thanks to our partners London IT Contractors Group and ProgSCon Conference to help us to organise this meetup.

+


+

Thanks for reading, and see you at our next meetup.

+

Follow us on twitter: @londondev_mtp

+


+


+


lon: -0.09000000357627869 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/1/2/6/e/highres_444964718.jpeg' - photo_id: 444964718 photo_link: 'http://photos3.meetupstatic.com/photos/event/1/2/6/e/600_444964718.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/1/2/6/e/thumb_444964718.jpeg' - join_mode: open - organizer: - member_id: 13804899 - name: david gimelle - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/4/b/c/0/highres_123559392.jpeg' - photo_id: 123559392 - photo_link: 'http://photos2.meetupstatic.com/photos/member/4/b/c/0/member_123559392.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/4/b/c/0/thumb_123559392.jpeg' - members: 403 - name: London.js - state: '17' lat: 51.52000045776367 - who: 'Developer, Engineer, Architect' - - utc_offset: 7200000 - country: FR - visibility: public + - country: FR city: Strasbourg - timezone: Europe/Paris - created: 1407331683000 link: 'http://www.meetup.com/StrasbourgJS/' - rating: 4.86 + name: StrasbourgJS description: '

StrasbourgJS is a meetup to talk about all sides of Javascript, for client-side and server side usage. We might also talk about the rising frameworks like angular, ember and backbone or even meteor. Beginners are welcome as well as the most experimented programmers.

' lon: 7.75 - join_mode: open - organizer: - member_id: 122617742 - name: Edgar Hipp - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/b/6/8/2/highres_202486722.jpeg' - photo_id: 202486722 - photo_link: 'http://photos3.meetupstatic.com/photos/member/b/6/8/2/member_202486722.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/b/6/8/2/thumb_202486722.jpeg' - members: 141 - name: StrasbourgJS lat: 48.58000183105469 - who: Javascripters - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE city: Düsseldorf - timezone: Europe/Berlin - created: 1408697459000 link: 'http://www.meetup.com/Meteor-Dusseldorf/' - rating: 5 + name: Meteor Düsseldorf description: "Meteor is an open-source platform for building top-quality web apps in a fraction of the time using JavaScript all the way and leveraging the power of full stack reactivity. If you are interested in developing web applications and are in or around Düsseldorf you should join us. It doesn't matter whether you are a beginner or an expert. Share your knowledge, apps, and get feedback from others." lon: 6.789999961853027 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/3/9/8/2/highres_408314722.jpeg' - photo_id: 408314722 photo_link: 'http://photos1.meetupstatic.com/photos/event/3/9/8/2/600_408314722.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/3/9/8/2/thumb_408314722.jpeg' - join_mode: open - organizer: - member_id: 81670332 - name: Nick Coe - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/highres_245331334.jpeg' - photo_id: 245331334 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/8/8/6/member_245331334.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/thumb_245331334.jpeg' - members: 226 - name: Meteor Düsseldorf lat: 51.2400016784668 - who: Meteorites - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE city: Nürnberg - timezone: Europe/Berlin - created: 1408887287000 link: 'http://www.meetup.com/FrankenJS/' - rating: 4.53 - description: >- -

JavaScript, Pattern, Frameworks, Schäuferla, Web, Bier, Angular, - Ember, Nämberch, Backbone, Promises...

- -

Franken ist reich an Entwicklern, guten Ideen, weltklasse Software - und Kreativität. Wir sind uns sicher, dass sich hinter all diesen - Talenten auch einige JavaScript-Developer verbergen.

- -

Viele Großstädte und Metropolregionen organisieren seit einigen - Jahren JavaScript Usergroups und Meet-Ups. Franken, insbesondere die - Großstädte Nürnberg, Erlangen und Fürth, sollten dem in nichts - nachstehen. Daher haben wir es uns zur Aufgabe gemacht, das JavaScript - KnowHow der Region zu bündeln und zu verbreiten. Wir möchten uns mit - dieser Usergroup aktiv dafür einsetzen, dieses Wissen in der Region zu - teilen und andere Entwickler dafür zu begeistern.

- -

Da eine Usergroup nur mit ihren Mitgliedern wachsen kann, sind wir - auf euch angewiesen. Was erwartet ihr von einem JavaScript - / Web-Meetup? Welche Themen interessieren euch besonders? Womit - wollt/könnt ihr bei der Usergroup beitragen? In welcher Region Frankens - würdet ihr das erste Treffen bevorzugen? Erwartet ihr neben entspannter - Atmosphäre professionelle Talks?

- -

Ihr erreicht uns ebenfalls auf Twitter unter @FrankenJS, per E-Mail: servus@frankenjs.org, oder über - unsere Website http://frankenjs.org

- + name: FrankenJS + description: |- +

JavaScript, Pattern, Frameworks, Schäuferla, Web, Bier, Angular, Ember, Nämberch, Backbone, Promises...

+

Franken ist reich an Entwicklern, guten Ideen, weltklasse Software und Kreativität. Wir sind uns sicher, dass sich hinter all diesen Talenten auch einige JavaScript-Developer verbergen.

+

Viele Großstädte und Metropolregionen organisieren seit einigen Jahren JavaScript Usergroups und Meet-Ups. Franken, insbesondere die Großstädte Nürnberg, Erlangen und Fürth, sollten dem in nichts nachstehen. Daher haben wir es uns zur Aufgabe gemacht, das JavaScript KnowHow der Region zu bündeln und zu verbreiten. Wir möchten uns mit dieser Usergroup aktiv dafür einsetzen, dieses Wissen in der Region zu teilen und andere Entwickler dafür zu begeistern.

+

Da eine Usergroup nur mit ihren Mitgliedern wachsen kann, sind wir auf euch angewiesen. Was erwartet ihr von einem JavaScript / Web-Meetup? Welche Themen interessieren euch besonders? Womit wollt/könnt ihr bei der Usergroup beitragen? In welcher Region Frankens würdet ihr das erste Treffen bevorzugen? Erwartet ihr neben entspannter Atmosphäre professionelle Talks?

+

Ihr erreicht uns ebenfalls auf Twitter unter @FrankenJS, per E-Mail: servus@frankenjs.org, oder über unsere Website http://frankenjs.org

Ein erstes Event ist noch für Herbst 2014 geplant.

lon: 11.050000190734863 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/d/0/5/e/highres_411053342.jpeg' - photo_id: 411053342 photo_link: 'http://photos3.meetupstatic.com/photos/event/d/0/5/e/600_411053342.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/d/0/5/e/thumb_411053342.jpeg' - join_mode: open - organizer: - member_id: 163245392 - name: Peter Müller - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/2/2/2/6/highres_221108742.jpeg' - photo_id: 221108742 - photo_link: 'http://photos1.meetupstatic.com/photos/member/2/2/2/6/member_221108742.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/2/2/2/6/thumb_221108742.jpeg' - members: 266 - name: FrankenJS lat: 49.45000076293945 - who: JS-Hackers - - utc_offset: 3600000 - country: GB - visibility: public + - country: GB city: London - timezone: Europe/London - created: 1409145702000 link: 'http://www.meetup.com/keystonejs-london/' + name: London KeystoneJS Meetup description: "

Meet other developers using KeystoneJS. Share your knowledge, projects and get feedback from others. KeystoneJS is an open-source content management platform built on top of MongoDB & NodeJS for creating robust scalable websites within few minutes.\_

" lon: -0.12999999523162842 - join_mode: open - organizer: - member_id: 155992052 - name: Michał Grabowski - photo: - photo_id: 210675682 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/d/4/2/member_210675682.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/3/d/4/2/thumb_210675682.jpeg' - members: 37 - name: London KeystoneJS Meetup - state: '17' lat: 51.52000045776367 - who: Developers - - utc_offset: 3600000 - country: BE - visibility: public - city: Brussels - timezone: Europe/Brussels - created: 1409411509000 - link: 'http://www.meetup.com/javascriptlab/' - rating: 4.92 - description: "

We love JS and we thought It might be a great idea to put together a place where people can learn new tools, new techniques, and above of all where they can learn how to build applications using JavaScript with the right workflow! So join us and let's get better at doing this.

" - lon: 4.329999923706055 - group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/a/5/5/8/highres_439002328.jpeg' - photo_id: 439002328 - photo_link: 'http://photos2.meetupstatic.com/photos/event/a/5/5/8/600_439002328.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/a/5/5/8/thumb_439002328.jpeg' - join_mode: open - organizer: - member_id: 153095522 - name: max czet - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/5/8/8/6/highres_219502662.jpeg' - photo_id: 219502662 - photo_link: 'http://photos4.meetupstatic.com/photos/member/5/8/8/6/member_219502662.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/5/8/8/6/thumb_219502662.jpeg' - members: 156 - name: JavaScript Lab - lat: 50.83000183105469 - who: javascripter - - utc_offset: 3600000 - country: GB - visibility: public + - country: GB city: London - timezone: Europe/London - created: 1409587758000 link: 'http://www.meetup.com/WebPlatform-London/' - rating: 4.43 + name: Web Platform London description: '

Web Platform London was born to promote openness in the Web Platform and support developers in learning new stuff / contribute to webplatform.org.

' lon: -0.12999999523162842 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/5/6/4/9/highres_446362089.jpeg' - photo_id: 446362089 photo_link: 'http://photos4.meetupstatic.com/photos/event/5/6/4/9/600_446362089.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/5/6/4/9/thumb_446362089.jpeg' - join_mode: open - organizer: - member_id: 67367912 - name: Francesco Iovine - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/4/9/4/0/highres_92838752.jpeg' - photo_id: 92838752 - photo_link: 'http://photos3.meetupstatic.com/photos/member/4/9/4/0/member_92838752.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/4/9/4/0/thumb_92838752.jpeg' - members: 515 - name: Web Platform London - state: '17' lat: 51.47999954223633 - who: web enthusiasts - - utc_offset: 10800000 - country: LT - visibility: public + - country: LT city: Vilnius - timezone: Europe/Vilnius - created: 1410548264000 link: 'http://www.meetup.com/Vilnius-js/' - rating: 4.61 - description: >- -

A group for JavaScript developers, lovers, enthusiasts and - explorers in Vilnius.

- -

Let's meet to talk about JavaScript! Client-side, server-side, - any side! VilniusJS is a meetup to share the knowledge about the newest - technologies, best practices, the greatest patterns and everything that - is united by JavaScript.

- -

Feel free to suggest topics and speakers (you?), or even step - in and organise the next event yourself! This is an open platform for - the community.

- + name: Vilnius.js + description: |- +

A group for JavaScript developers, lovers, enthusiasts and explorers in Vilnius.

+

Let's meet to talk about JavaScript! Client-side, server-side, any side! VilniusJS is a meetup to share the knowledge about the newest technologies, best practices, the greatest patterns and everything that is united by JavaScript.

+

Feel free to suggest topics and speakers (you?), or even step in and organise the next event yourself! This is an open platform for the community.

Oh and of course require('beer');

- -

Join us at #vilniusjs channel at Slack.

- +

Join us at #vilniusjs channel at Slack.

• vilniusjs.lt

- -

• github.com/vilniusjs 

- -

• twitter.com/vilniusjs

+

• github.com/vilniusjs 

+

• twitter.com/vilniusjs

lon: 25.270000457763672 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/5/5/2/0/highres_410661792.jpeg' - photo_id: 410661792 photo_link: 'http://photos2.meetupstatic.com/photos/event/5/5/2/0/600_410661792.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/5/5/2/0/thumb_410661792.jpeg' - join_mode: open - organizer: - member_id: 146279192 - name: Mikael Korpela - photo: - photo_id: 197115592 - photo_link: 'http://photos1.meetupstatic.com/photos/member/3/c/e/8/member_197115592.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/3/c/e/8/thumb_197115592.jpeg' - members: 567 - name: Vilnius.js lat: 54.70000076293945 - who: js devs - - utc_offset: 7200000 - country: NL - visibility: public + - country: NL city: Amsterdam - timezone: Europe/Amsterdam - created: 1410628261000 link: 'http://www.meetup.com/beerjs-amsterdam/' - rating: 4.5 + name: Beer.js Amsterdam description: "Events involving the two of mankind's greatest inventions; Beer and JavaScript." lon: 4.889999866485596 - join_mode: open - organizer: - member_id: 96229312 - name: Joshua Appelman - photo: - photo_id: 172766512 - photo_link: 'http://photos1.meetupstatic.com/photos/member/6/7/9/0/member_172766512.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/6/7/9/0/thumb_172766512.jpeg' - members: 157 - name: Beer.js Amsterdam lat: 52.369998931884766 - who: callbacks - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE city: Essen - timezone: Europe/Berlin - created: 1410768429000 link: 'http://www.meetup.com/PottJS/' - rating: 4.77 + name: PottJS description: "The \"Ruhrpott\" is not only Germany's biggest metropolitan area, it has also become an important part of Germany's role in information technology. What's missing is a central user group for JavaScript developers. Here it is. Let's talk, let's get to know each other. Let's get together and create cool stuff, maybe. Let's do PottJS. Glück auf." lon: 7 - join_mode: open - organizer: - member_id: 139860632 - name: Ro Bo - photo: - photo_id: 192983082 - photo_link: 'http://photos3.meetupstatic.com/photos/member/5/a/2/a/member_192983082.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/5/a/2/a/thumb_192983082.jpeg' - members: 411 - name: PottJS lat: 51.470001220703125 - who: Pottkinder - - utc_offset: 7200000 - country: PL - visibility: public + - country: PL city: Warsaw - timezone: Europe/Warsaw - created: 1411033501000 link: 'http://www.meetup.com/MeetjsWarsaw/' - rating: 4.72 + name: Meet.js Warsaw description: '

Meet.js Warsaw is a part of Meet.js community – Polish JavaScript meetups which are organized every month in 8 biggest cities of Poland. Attending our meetup is free of charge. We usually talk about JavaScript, however we aim to have talks on CSS and HTML5 as well. Become a part of our community at http://meetjs.pl.

' lon: 21.020000457763672 - join_mode: open - organizer: - member_id: 171842232 - name: meet.js Warsaw - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/a/8/4/a/highres_227683082.jpeg' - photo_id: 227683082 - photo_link: 'http://photos4.meetupstatic.com/photos/member/a/8/4/a/member_227683082.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/a/8/4/a/thumb_227683082.jpeg' - members: 470 - name: Meet.js Warsaw lat: 52.2599983215332 - who: JavaScript lovers - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE city: Rheda-Wiedenbrück - timezone: Europe/Berlin - created: 1411062894000 link: 'http://www.meetup.com/OWL-JS/' - rating: 5 + name: JavaScript User Group OWL description: "

Die JavaScript User Group OWL\_bietet ab November ein regelmäßiges Treffen rund um das Thema JavaScript und verwandte Technologien. Du arbeitest mit JavaScript oder interessierst dich für moderne Web-Technologien? Du willst Neues entdecken oder dich einfach mit anderen Entwicklern über Praxis-Themen austauschen? Ob blutiger Anfänger oder graubärtiger ECMAScript-Veteran, bei uns ist jeder willkommen!

" lon: 8.279999732971191 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/9/e/e/0/highres_411400672.jpeg' - photo_id: 411400672 photo_link: 'http://photos2.meetupstatic.com/photos/event/9/e/e/0/600_411400672.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/9/e/e/0/thumb_411400672.jpeg' - join_mode: open - organizer: - member_id: 141171632 - name: Alan Plum - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/a/3/8/6/highres_191681862.jpeg' - photo_id: 191681862 - photo_link: 'http://photos2.meetupstatic.com/photos/member/a/3/8/6/member_191681862.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/a/3/8/6/thumb_191681862.jpeg' - members: 84 - name: JavaScript User Group OWL lat: 51.849998474121094 - who: Members - - utc_offset: 7200000 - country: CH - visibility: public + - country: CH city: Zürich - timezone: Europe/Zurich - created: 1411071105000 link: 'http://www.meetup.com/Zurich-Node-js/' - description: >- -

This is a group dedicated to learning, spreading the knowledge of, - and improving Node.js - the evented, server side javascript platform - harnessing the underlying power of Google's V8 JS engine.
- - - - You should join us if you want to learn about, share experiences with, - or work with Node.js and it's modules.

- -

Regardless of whether you work in web development or on some - Internet of things application. As long as it contains some Node.js - code, it's something to present and discuss at a meetup of this - group.

- -

I'd like to have a first meetup somewhen between mid to end of - October. As soon as some people join the group, we can have - a discussion about some topics for a first talk. Surely we can also - organise something earlier if there's a demand.
- - - - I assume in the beginning I'll give a short intro to Node.js for - people that don't know the ecosystem yet.
+ name: Zurich Node.js + description: |- +

This is a group dedicated to learning, spreading the knowledge of, and improving Node.js - the evented, server side javascript platform harnessing the underlying power of Google's V8 JS engine.
+ You should join us if you want to learn about, share experiences with, or work with Node.js and it's modules.

+

Regardless of whether you work in web development or on some Internet of things application. As long as it contains some Node.js code, it's something to present and discuss at a meetup of this group.

+

I'd like to have a first meetup somewhen between mid to end of October. As soon as some people join the group, we can have a discussion about some topics for a first talk. Surely we can also organise something earlier if there's a demand.
+ I assume in the beginning I'll give a short intro to Node.js for people that don't know the ecosystem yet.

- - I'm looking forward to learning and hacking with you.

-

Marc Bachmann

- -

http://twitter.com/mrbrookman
- - +

http://twitter.com/mrbrookman

lon: 8.539999961853027 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/d/2/d/e/highres_412313982.jpeg' - photo_id: 412313982 photo_link: 'http://photos4.meetupstatic.com/photos/event/d/2/d/e/600_412313982.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/d/2/d/e/thumb_412313982.jpeg' - join_mode: open - organizer: - member_id: 29830452 - name: Marc Bachmann - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/b/3/1/c/highres_227805852.jpeg' - photo_id: 227805852 - photo_link: 'http://photos2.meetupstatic.com/photos/member/b/3/1/c/member_227805852.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/b/3/1/c/thumb_227805852.jpeg' - members: 203 - name: Zurich Node.js lat: 47.380001068115234 - who: Members - - utc_offset: 7200000 - country: PL - visibility: public + - country: PL city: Kraków - timezone: Europe/Warsaw - created: 1412087424000 link: 'http://www.meetup.com/DevMeetings-Frontend-Development-Katowice/' + name: DevMeetings Frontend Development Katowice description: Grupa uczestników DevMeetingów w Krakowie o tematyce Frontend Development. lon: 19.959999084472656 - join_mode: open - organizer: - member_id: 160335712 - name: Piotr Zwolinski - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/8/6/4/e/highres_230734382.jpeg' - photo_id: 230734382 - photo_link: 'http://photos1.meetupstatic.com/photos/member/8/6/4/e/member_230734382.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/8/6/4/e/thumb_230734382.jpeg' - members: 40 - name: DevMeetings Frontend Development Katowice lat: 50.060001373291016 - who: Frontend Developers - - utc_offset: 7200000 - country: PL - visibility: public + - country: PL city: Wroclaw - timezone: Europe/Warsaw - created: 1412088465000 link: 'http://www.meetup.com/DevMeetings-Frontend-Development-Wro/' + name: DevMeetings Frontend Development Wroclaw description: Grupa dla uczestników DevMeetingów we Wrocławiu poświęconych tematyce Webdevelopment. lon: 17.030000686645508 - join_mode: open - organizer: - member_id: 160335712 - name: Piotr Zwolinski - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/9/3/c/8/highres_230737832.jpeg' - photo_id: 230737832 - photo_link: 'http://photos2.meetupstatic.com/photos/member/9/3/c/8/member_230737832.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/9/3/c/8/thumb_230737832.jpeg' - members: 96 - name: DevMeetings Frontend Development Wroclaw lat: 51.11000061035156 - who: Frontend Developers - - utc_offset: 7200000 - country: PL - visibility: public + - country: PL city: Wroclaw - timezone: Europe/Warsaw - created: 1412364685000 link: 'http://www.meetup.com/Meteor-Wroclaw/' - rating: 4.67 - description: >- -

Wrocławska grupa sympatyków Meteora. - Spotykamy się aby wspólnie dzielić się doświadczeniami i pomagać sobie - w budowaniu lepszych aplikacji.

- -

Meteor jest platformą open-source napisaną w JavaScript, - umożliwiającą łatwe i przyjemne budowanie wysokiej jakości aplikacji - webowych.
- - + name: Meteor Wroclaw + description: |- +

Wrocławska grupa sympatyków Meteora. Spotykamy się aby wspólnie dzielić się doświadczeniami i pomagać sobie w budowaniu lepszych aplikacji.

+

Meteor jest platformą open-source napisaną w JavaScript, umożliwiającą łatwe i przyjemne budowanie wysokiej jakości aplikacji webowych.

lon: 17.030000686645508 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/3/d/a/6/highres_416715782.jpeg' - photo_id: 416715782 photo_link: 'http://photos3.meetupstatic.com/photos/event/3/d/a/6/600_416715782.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/3/d/a/6/thumb_416715782.jpeg' - join_mode: open - organizer: - member_id: 81670332 - name: Nick Coe - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/highres_245331334.jpeg' - photo_id: 245331334 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/8/8/6/member_245331334.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/thumb_245331334.jpeg' - members: 209 - name: Meteor Wroclaw lat: 51.11000061035156 - who: Meteorites - - utc_offset: 7200000 - country: NL - visibility: public + - country: NL city: Amsterdam - timezone: Europe/Amsterdam - created: 1412525950000 link: 'http://www.meetup.com/Frontend-Developer-Meetup-Amsterdam/' - rating: 4.52 - description: >- -

We are the largest Frontend Developer Meetup Group in the - Netherlands. Hosted over 10 Meetups in total over the last 12 months - including our other group http://www.meetup.com/AngularJS-Amsterdam-Meetup/. - Calling all frontend developers in Amsterdam (and the - Netherlands). With the creation of this group we are offering frontend - developers advice on how to promote yourself in the modern - world. 

- -

Give presentations on the latest tools, techniques, frameworks - and libraries that companies are looking for. Information on companies - that are hiring in Amsterdam (and the Netherlands) and what they can - offer you. You will be supplied with beer and pizza as you mingle with - other Frontend Developers in Amsterdam. 

- -

We will be welcoming ideas on what you would like to hear from - future Meetups.

- lon: 4.889999866485596 - join_mode: open - organizer: - member_id: 24559322 - name: Luke Thomas - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/c/6/a/4/highres_232010852.jpeg' - photo_id: 232010852 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/6/a/4/member_232010852.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/c/6/a/4/thumb_232010852.jpeg' - members: 1255 name: Frontend Developer Meetup Amsterdam + description: |- +

We are the largest Frontend Developer Meetup Group in the Netherlands. Hosted over 10 Meetups in total over the last 12 months including our other group http://www.meetup.com/AngularJS-Amsterdam-Meetup/. Calling all frontend developers in Amsterdam (and the Netherlands). With the creation of this group we are offering frontend developers advice on how to promote yourself in the modern world. 

+

Give presentations on the latest tools, techniques, frameworks and libraries that companies are looking for. Information on companies that are hiring in Amsterdam (and the Netherlands) and what they can offer you. You will be supplied with beer and pizza as you mingle with other Frontend Developers in Amsterdam. 

+

We will be welcoming ideas on what you would like to hear from future Meetups.

+ lon: 4.889999866485596 lat: 52.369998931884766 - who: Frontend Developers - - utc_offset: 7200000 - country: PL - visibility: public + - country: PL city: Szczecin - timezone: Europe/Warsaw - created: 1412526007000 link: 'http://www.meetup.com/meetjs-szczecin/' - rating: 5 + name: Meet.js Szczecin description: '

Meet.js to regularne spotkania dla front-end developerów, na których pojawia się kilka 20 minutowych prelekcji o HTML5, CSS3 i JavaScript. Są one darmowe, a na scenie występują jedynie chętne osoby, gotowe podzielić się swoimi spostrzeżeniami, pomysłami i technikami tworzenia stron internetowych. Obecnie meet.js jest obecny w 8 miastach Polski – Poznaniu, Warszawie, Krakowie, Wrocławiu, Gdańsku, Katowicach, Łodzi i Szczecinie. Średnio na jedno spotkanie meet.js przychodzi około 70 ludzi, choć rekordowe są Gdańsk i Kraków, które potrafią regularnie zbierać ponad 120 uczestników. 

' lon: 14.529999732971191 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/5/9/8/0/highres_417442912.jpeg' - photo_id: 417442912 photo_link: 'http://photos4.meetupstatic.com/photos/event/5/9/8/0/600_417442912.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/5/9/8/0/thumb_417442912.jpeg' - join_mode: open - organizer: - member_id: 170304592 - name: Karol Fabjańczuk - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/c/3/0/2/highres_232009922.jpeg' - photo_id: 232009922 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/3/0/2/member_232009922.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/c/3/0/2/thumb_232009922.jpeg' - members: 75 - name: Meet.js Szczecin lat: 53.43000030517578 - who: JavaScripters - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE city: Berlin - timezone: Europe/Berlin - created: 1412942646000 link: 'http://www.meetup.com/fullstack-js-berlin/' - rating: 5 + name: Fullstack.js description: "

This user group is about anything related to JavaScript and web development with a focus to modularity and scalability. We're also open for topics on infrasturcture.

" lon: 13.380000114440918 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/1/a/0/6/highres_421566662.jpeg' - photo_id: 421566662 photo_link: 'http://photos2.meetupstatic.com/photos/event/1/a/0/6/600_421566662.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/1/a/0/6/thumb_421566662.jpeg' - join_mode: open - organizer: - member_id: 60303672 - name: Anton Wilhelm - photo: - photo_id: 173368362 - photo_link: 'http://photos4.meetupstatic.com/photos/member/6/e/c/a/member_173368362.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/6/e/c/a/thumb_173368362.jpeg' - members: 204 - name: Fullstack.js lat: 52.52000045776367 - who: Fullstackers - - utc_offset: 3600000 - country: GB - visibility: public_limited + - country: GB city: London - timezone: Europe/London - created: 1413015843000 link: 'http://www.meetup.com/AngularJS-London-BYOP/' - rating: 4.67 - description: >- -

Join other web developers for a monthly AngularJS - Bring Your Own - Project - Meetup at SapientNitro, London from 6:30PM as we all work on - group member's AngularJS projects. 

- -

Bring your questions, your code, and your desire to help. The - sessions are informal, friendly, and organised with a loose agenda. Mix - with your fellow Angularians and get hacking!

+ name: 'AngularJS London : Bring Your Own Project' + description: |- +

Join other web developers for a monthly AngularJS - Bring Your Own Project - Meetup at SapientNitro, London from 6:30PM as we all work on group member's AngularJS projects. 

+

Bring your questions, your code, and your desire to help. The sessions are informal, friendly, and organised with a loose agenda. Mix with your fellow Angularians and get hacking!

lon: -0.07999999821186066 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/6/f/b/c/highres_437008604.jpeg' - photo_id: 437008604 photo_link: 'http://photos1.meetupstatic.com/photos/event/6/f/b/c/600_437008604.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/6/f/b/c/thumb_437008604.jpeg' - join_mode: open - organizer: - member_id: 182823395 - name: James McLeod - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/7/e/d/6/highres_245852470.jpeg' - photo_id: 245852470 - photo_link: 'http://photos1.meetupstatic.com/photos/member/7/e/d/6/member_245852470.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/7/e/d/6/thumb_245852470.jpeg' - members: 624 - name: 'AngularJS London : Bring Your Own Project' - state: '17' lat: 51.52000045776367 - who: Angularians - - utc_offset: 7200000 - country: PL - visibility: public + - country: PL city: Katowice - timezone: Europe/Warsaw - created: 1413020950000 link: 'http://www.meetup.com/meet-js-Katowice/' - rating: 4.83 - description: >- -

Niekomercyjne spotkania front-endowe typu meetup, organizowane przez - społeczność dla społeczności. Zero komercji, czysta wiedza.

- -

Na każdym meet.js można liczyć na kilka prelekcji na tematy - webowo-front-endowe (JS, CSS, HTML etc.). Każda z nich trwa 10-15 - minut. Duży nacisk kładziemy na Q&A po danym speechu. Spikerami - jesteśmy my sami - developerzy. Tylko od specjalistów można dowiedzieć - się najwięcej. Każdy może przemawiać na meet.js - wystarczy się - zgłosić! Zabawa i cenne doświadczenie gwarantowane!

+ name: meet.js Katowice + description: |- +

Niekomercyjne spotkania front-endowe typu meetup, organizowane przez społeczność dla społeczności. Zero komercji, czysta wiedza.

+

Na każdym meet.js można liczyć na kilka prelekcji na tematy webowo-front-endowe (JS, CSS, HTML etc.). Każda z nich trwa 10-15 minut. Duży nacisk kładziemy na Q&A po danym speechu. Spikerami jesteśmy my sami - developerzy. Tylko od specjalistów można dowiedzieć się najwięcej. Każdy może przemawiać na meet.js - wystarczy się zgłosić! Zabawa i cenne doświadczenie gwarantowane!

lon: 19.020000457763672 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/c/c/7/3/highres_432892339.jpeg' - photo_id: 432892339 photo_link: 'http://photos1.meetupstatic.com/photos/event/c/c/7/3/600_432892339.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/c/c/7/3/thumb_432892339.jpeg' - join_mode: open - organizer: - member_id: 19831291 - name: Szymon Nowak - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/9/7/a/6/highres_135878822.jpeg' - photo_id: 135878822 - photo_link: 'http://photos3.meetupstatic.com/photos/member/9/7/a/6/member_135878822.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/9/7/a/6/thumb_135878822.jpeg' - members: 367 - name: meet.js Katowice lat: 50.2599983215332 - who: Members - - utc_offset: 7200000 - country: PL - visibility: public + - country: PL city: Szczecin - timezone: Europe/Warsaw - created: 1413045880000 link: 'http://www.meetup.com/FixFusion/' - rating: 5 + name: FixFusion description: "

Here's an idea. Let's gather a group of open source software enthusiasts willing to invest few weekend hours to help some open source projects available on GitHub platform. Then, have a great time fixing bugs, adding features, editing docs, refactoring, testing, and even open sourcing your own software! All this while interacting with like-minded people, sharing knowledge and learning new things.

" lon: 14.529999732971191 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/7/b/e/0/highres_420751712.jpeg' - photo_id: 420751712 photo_link: 'http://photos3.meetupstatic.com/photos/event/7/b/e/0/600_420751712.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/7/b/e/0/thumb_420751712.jpeg' - join_mode: open - organizer: - member_id: 20011821 - name: Slawomir Pucia - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/5/3/2/highres_233750482.jpeg' - photo_id: 233750482 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/5/3/2/member_233750482.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/5/3/2/thumb_233750482.jpeg' - members: 16 - name: FixFusion lat: 53.43000030517578 - who: Contributors - - utc_offset: 7200000 - country: FR - visibility: public + - country: FR city: Lyon - timezone: Europe/Paris - created: 1413141178000 link: 'http://www.meetup.com/Meteor-Lyon/' - rating: 4.85 + name: Meteor Lyon description: "Meteor est une nouvelle plateforme web. Son intérêt se trouve dans ses différents concepts : partage de code frontEnd/backEnd, compensation de latence, temps réel... Venez découvrir cette plateforme, venez partager votre expérience sur Meteor. Ce meetup n'est pas réservé aux seuls techniciens car Meteor se veut facile d'accès. Si vous avez une îdée, venez nous rencontrer pour que l'on puisse concrétiser celle-ci ensemble." lon: 4.829999923706055 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/8/5/e/highres_424442142.jpeg' - photo_id: 424442142 photo_link: 'http://photos2.meetupstatic.com/photos/event/8/5/e/600_424442142.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/8/5/e/thumb_424442142.jpeg' - join_mode: open - organizer: - member_id: 81670332 - name: Nick Coe - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/highres_245331334.jpeg' - photo_id: 245331334 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/8/8/6/member_245331334.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/thumb_245331334.jpeg' - members: 218 - name: Meteor Lyon lat: 45.7599983215332 - who: Meteorite - - utc_offset: 3600000 - country: GB - visibility: public + - country: GB city: London - timezone: Europe/London - created: 1413273217000 link: 'http://www.meetup.com/ShoreditchJS/' - rating: 4.86 + name: ShoreditchJS description: '

Because other tech meet-ups are too mainstream.

' lon: -0.09000000357627869 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/7/3/9/f/highres_431729599.jpeg' - photo_id: 431729599 photo_link: 'http://photos2.meetupstatic.com/photos/event/7/3/9/f/600_431729599.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/7/3/9/f/thumb_431729599.jpeg' - join_mode: open - organizer: - member_id: 87552252 - name: Svilen Gospodinov - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/8/b/8/9/highres_250595721.jpeg' - photo_id: 250595721 - photo_link: 'http://photos3.meetupstatic.com/photos/member/8/b/8/9/member_250595721.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/8/b/8/9/thumb_250595721.jpeg' - members: 1194 - name: ShoreditchJS - state: '17' lat: 51.529998779296875 - who: Members - - utc_offset: 7200000 - country: 'NO' - visibility: public + - country: 'NO' city: Stavanger - timezone: Europe/Oslo - created: 1413732510000 link: 'http://www.meetup.com/Stavanger-JavaScript/' + name: Stavanger.js description: "

Bilingual Meteor (real-time JavaScript framework) user group based in Stavanger, Norway. Information is provided in English by default, we choose the language based on the participants when each event starts (if everyone understands Norwegian, then we go with that).\_

\n

ENGLISH

\n

Stavanger.js is a JavaScript-focused group for people who work with or want to work with JavaScript (on both the server and client) and related technologies. I started it because there weren't yet any other groups in the region with JavaScript as a focus. But it's constantly becoming a larger player in the development industry.

\n

If you want to meet like-minded people and talk about what's new with JavaScript frameworks and related topics, this group is for you.

\n

I expect the main topics to be JavaScript and related frameworks like Meteor, AngularJS, PhoneGap/Cordova, etc. I'll probably only be presenting on Meteor and AngularJS, but presentations from others on other frameworks are welcome!

\n

Events from Meteor Stavanger will be cross-posted here. There's also a good explanation on what Meteor is on Meteor Stavanger's group intro.

\n


\n\n

\n

NORSK

\n

Stavanger.js er ei faggruppe for du som jobber eller vil jobbe med JavaScript (på både serveren og klienten) og relaterte teknologier. Jeg hadde lyst til å starte ei gruppe i regionen der JavaScript stod i sentrum. Men det blir hele tida mer og mer tungvektig som utviklerverktøy.

\n

Har du lyst til å møte likesinnede og diskutere utviklinga i JavaScript-rammeverka og øvrige tema, er denne gruppa noe for deg.

\n

Hovedtemaa blir JavaScript og relaterte rammeverk som Meteor, AngularJS, PhoneGap/Cordova osv. I utgangspunktet er Meteor og AngularJS rammeverka som blir presentert, men foredrag om andre rammeverk er velkomne.

\n

Arrangementa i Meteor Stavanger (http://meetup.com/Meteor-Stavanger) blir også posta her. Det er også ei grei forklaring på hva Meteor er på introduksjonssida til gruppa.

\n


\n\n

\n

Group photo from Wikimedia Commons. User:\_en:User:Godztian (Wikipedia English). License: GFDL (http://www.gnu.org/copyleft/fdl.html) or CC-BY-SA-3.0 (http://creativecommons.org/licenses/by-sa/3...)

" lon: 5.710000038146973 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/8/3/7/e/highres_422973662.jpeg' - photo_id: 422973662 photo_link: 'http://photos4.meetupstatic.com/photos/event/8/3/7/e/600_422973662.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/8/3/7/e/thumb_422973662.jpeg' - join_mode: open - organizer: - member_id: 10524757 - name: Kevin Kaland - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/2/a/3/2/highres_157450802.jpeg' - photo_id: 157450802 - photo_link: 'http://photos2.meetupstatic.com/photos/member/2/a/3/2/member_157450802.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/2/a/3/2/thumb_157450802.jpeg' - members: 86 - name: Stavanger.js lat: 58.970001220703125 - who: JavaScriptarar - - utc_offset: 10800000 - country: RO - visibility: public + - country: RO city: Iasi - timezone: Europe/Bucharest - created: 1413811486000 link: 'http://www.meetup.com/Meteor-Iasi/' - rating: 4.89 - description: >- -

Meet other developers using Meteor. Share your knowledge, apps, and - get feedback from others.

- -

Meteor is an open-source platform for building top-quality web apps - in a fraction of the time, whether you're an expert developer or just - getting started.

+ name: Meteor Iasi + description: |- +

Meet other developers using Meteor. Share your knowledge, apps, and get feedback from others.

+

Meteor is an open-source platform for building top-quality web apps in a fraction of the time, whether you're an expert developer or just getting started.

lon: 27.56999969482422 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/1/b/6/4/highres_427087012.jpeg' - photo_id: 427087012 photo_link: 'http://photos2.meetupstatic.com/photos/event/1/b/6/4/600_427087012.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/1/b/6/4/thumb_427087012.jpeg' - join_mode: open - organizer: - member_id: 81670332 - name: Nick Coe - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/highres_245331334.jpeg' - photo_id: 245331334 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/8/8/6/member_245331334.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/thumb_245331334.jpeg' - members: 138 - name: Meteor Iasi lat: 47.16999816894531 - who: Meteoriţi - - utc_offset: 7200000 - country: LU - visibility: public + - country: LU city: Luxembourg - timezone: Europe/Luxembourg - created: 1413872152000 link: 'http://www.meetup.com/Meteor-Luxembourg/' - rating: 5 + name: Meteor Luxembourg description: "

Meet other developers using Meteor. Share your knowledge, apps, and get feedback from others. Meteor is an open-source platform for building top-quality web apps in a fraction of the time, whether you're an expert developer or just getting started.

" lon: 6.119999885559082 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/c/6/6/8/highres_424490792.jpeg' - photo_id: 424490792 photo_link: 'http://photos4.meetupstatic.com/photos/event/c/6/6/8/600_424490792.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/c/6/6/8/thumb_424490792.jpeg' - join_mode: open - organizer: - member_id: 81670332 - name: Nick Coe - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/highres_245331334.jpeg' - photo_id: 245331334 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/8/8/6/member_245331334.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/thumb_245331334.jpeg' - members: 47 - name: Meteor Luxembourg lat: 49.619998931884766 - who: Meteorites - - utc_offset: 3600000 - country: GB - visibility: public + - country: GB city: Oxford - timezone: Europe/London - created: 1413932212000 link: 'http://www.meetup.com/JSOxford/' - rating: 4.89 + name: JSOxford description: "We're mostly a meet up, sometimes a hack day, sometimes a party with the python and ruby people. If you do anything with JavaScript, or are interested in learning about it - come along to hang out with friendly/nice/welcoming/like-minded group of people. JSOxford has been going quite a while, though have just switched to meetup. Find out more about our past events at http://jsoxford.com." lon: -1.2400000095367432 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/8/1/3/5/highres_440673077.jpeg' - photo_id: 440673077 photo_link: 'http://photos1.meetupstatic.com/photos/event/8/1/3/5/600_440673077.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/8/1/3/5/thumb_440673077.jpeg' - join_mode: open - organizer: - member_id: 17059901 - name: Ben Foxall - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/4/5/1/2/highres_236537682.jpeg' - photo_id: 236537682 - photo_link: 'http://photos4.meetupstatic.com/photos/member/4/5/1/2/member_236537682.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/4/5/1/2/thumb_236537682.jpeg' - members: 492 - name: JSOxford - state: K2 lat: 51.75 - who: JavaScripters - - utc_offset: 7200000 - country: IT - visibility: public + - country: IT city: Roma - timezone: Europe/Rome - created: 1414116989000 link: 'http://www.meetup.com/Meteor-Rome/' + name: Meteor Rome description: "

Meet other developers using Meteor. Share your knowledge, apps, and get feedback from others. Meteor is an open-source platform for building top-quality web apps in a fraction of the time, whether you're an expert developer or just getting started.

" lon: 12.479999542236328 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/6/7/8/6/highres_424826502.jpeg' - photo_id: 424826502 photo_link: 'http://photos4.meetupstatic.com/photos/event/6/7/8/6/600_424826502.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/6/7/8/6/thumb_424826502.jpeg' - join_mode: open - organizer: - member_id: 81670332 - name: Nick Coe - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/highres_245331334.jpeg' - photo_id: 245331334 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/8/8/6/member_245331334.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/thumb_245331334.jpeg' - members: 90 - name: Meteor Rome - state: RM lat: 41.900001525878906 - who: Meteorites - - utc_offset: 7200000 - country: NL - visibility: public + - country: NL city: Rotterdam - timezone: Europe/Amsterdam - created: 1414118069000 link: 'http://www.meetup.com/Meteor-Rotterdam/' - description: >- -

This group is now a part of Meteor NL, which you can find at http://www.meetup.com/Meteor-NL/. 

- + name: '[MOVED] Meteor Rotterdam' + description: |- +

This group is now a part of Meteor NL, which you can find at http://www.meetup.com/Meteor-NL/. 


-


lon: 4.480000019073486 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/7/4/7/4/highres_424829812.jpeg' - photo_id: 424829812 photo_link: 'http://photos2.meetupstatic.com/photos/event/7/4/7/4/600_424829812.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/7/4/7/4/thumb_424829812.jpeg' - join_mode: open - organizer: - member_id: 81670332 - name: Nick Coe - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/highres_245331334.jpeg' - photo_id: 245331334 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/8/8/6/member_245331334.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/thumb_245331334.jpeg' - members: 74 - name: '[MOVED] Meteor Rotterdam' lat: 51.93000030517578 - who: Meteorites - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE city: Frankfurt - timezone: Europe/Berlin - created: 1414410013000 link: 'http://www.meetup.com/FrankfurtJS/' - rating: 4.86 + name: 'FrankfurtJS – JavaScript, HTML5 and NodeJS Meetup' description: '

FrankfurtJS is a JavaScript, HTML5 and NodeJS user group in Frankfurt currently organized by Kahlil Lechelt, Jo Meenen and Eugene Terehov.

' lon: 8.680000305175781 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/e/5/e/b/highres_444298859.jpeg' - photo_id: 444298859 photo_link: 'http://photos2.meetupstatic.com/photos/event/e/5/e/b/600_444298859.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/e/5/e/b/thumb_444298859.jpeg' - join_mode: open - organizer: - member_id: 57736682 - name: Eugene Terehov - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/2/6/4/highres_247260612.jpeg' - photo_id: 247260612 - photo_link: 'http://photos1.meetupstatic.com/photos/member/2/6/4/member_247260612.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/2/6/4/thumb_247260612.jpeg' - members: 626 - name: 'FrankfurtJS – JavaScript, HTML5 and NodeJS Meetup' lat: 50.119998931884766 - who: JS-Developer - - utc_offset: 7200000 - country: NL - visibility: public + - country: NL city: Zwolle - timezone: Europe/Amsterdam - created: 1414422893000 link: 'http://www.meetup.com/HackerDojoNL/' + name: Dutch Hacker Dojo description: "

We are a group of hackers (programmers) located in Zwolle. The Hacker Dojo is a place where hackers come together to peer program and share knowledge on new technology, web frameworks and open source libraries.\_

\n

We love to hack the web and we have great interest in new technology and prototyping stuff. Our interests include, but are most certainly not limited to: controlling Arduino’s using Node, building responsive websites using Bootstrap and AngularJS, creating Chromecast apps, hacking the Pebble smartwatch, exploring Polymer and Web Components, create mobile apps using PhoneGap, discover Leap Motion and more.\_

\n

Every first friday of the month we host a new meetup. We simply pick a shared topic of interest and we spend our time prototyping and hacking something great. The goal of the meetup is a shared learning experience and above all to have fun.\_

\n

Come join us and let’s build our first autonomous Drone together!
\n\n

" lon: 6.090000152587891 - join_mode: open - organizer: - member_id: 116636582 - name: Michael - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/6/e/5/2/highres_239908242.jpeg' - photo_id: 239908242 - photo_link: 'http://photos1.meetupstatic.com/photos/member/6/e/5/2/member_239908242.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/6/e/5/2/thumb_239908242.jpeg' - members: 41 - name: Dutch Hacker Dojo lat: 52.52000045776367 - who: Hackers - - utc_offset: 10800000 - country: UA - visibility: public + - country: UA city: "Dnipropetrovs'k" - timezone: Europe/Kiev - created: 1414571299000 link: 'http://www.meetup.com/ScriptnCode/' - rating: 5 + name: "Script'n'Code" description: "Script'n'Code is an open meet-up, which unites like-minded people and give you a possibilitiy to dive into the script and functional languages world. You will get a chance to listen not only to Ukrainian geeks, but also find out the experience of IT-gurus from all over the world! Come and tell us about your ideas, get to know with IT-party, ask tricky questions to international fellows and just have a pleasant time around your old and new geek-friends :)" lon: 35.040000915527344 - join_mode: open - organizer: - member_id: 58300602 - name: Дима Овчаренко - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/c/0/f/a/highres_238489402.jpeg' - photo_id: 238489402 - photo_link: 'http://photos4.meetupstatic.com/photos/member/c/0/f/a/member_238489402.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/c/0/f/a/thumb_238489402.jpeg' - members: 132 - name: "Script'n'Code" lat: 48.45000076293945 - who: Software engineers - - utc_offset: 3600000 - country: PT - visibility: public + - country: PT city: Braga - timezone: Europe/Lisbon - created: 1414686105000 link: 'http://www.meetup.com/bragajs/' - rating: 4.83 - description: >- -

Common ground for JS ehnthusiastics and Web aficionados in - general.

- + name: Braga.JS + description: |- +

Common ground for JS ehnthusiastics and Web aficionados in general.

Follow us on Twitter: https://twitter.com/braga__js

lon: -8.430000305175781 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/1/b/0/e/highres_448146926.jpeg' - photo_id: 448146926 photo_link: 'http://photos4.meetupstatic.com/photos/event/1/b/0/e/600_448146926.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/1/b/0/e/thumb_448146926.jpeg' - join_mode: open - organizer: - member_id: 52043602 - name: Roberto Machado - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/7/f/d/c/highres_238832732.jpeg' - photo_id: 238832732 - photo_link: 'http://photos2.meetupstatic.com/photos/member/7/f/d/c/member_238832732.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/7/f/d/c/thumb_238832732.jpeg' - members: 244 - name: Braga.JS lat: 41.54999923706055 - who: Members - - utc_offset: 7200000 - country: IT - visibility: public_limited + - country: IT city: Milano - timezone: Europe/Rome - created: 1415091888000 link: 'http://www.meetup.com/MM-MeanMilan/' - rating: 4.71 + name: 'M&M-Mean Milan' description: "

M&M Mean Milan, è una community nata dal volere di un gruppo di sviluppatori che dopo aver studiato lo stack MEAN e lavorato con questo hanno deciso di condividere le loro esperienze con tutti coloro che lo stanno utilizzando. La nostra community si propone di approfondire questa tecnologia, lo scopo è quello di conoscere meglio l’argomento, relazionarsi con altre persone che sviluppano in Mean e magari avere l’opportunità di trovare nuove collaborazion.

\n

MEAN è uno stack composto da quattro elementi: MongoDB , Node.js , Express , e AngularJS. È stato progettato per sviluppare applicazioni che necessitano di alte performance in operazioni di I/O.

" lon: 9.1899995803833 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/b/a/a/3/highres_433127779.jpeg' - photo_id: 433127779 photo_link: 'http://photos2.meetupstatic.com/photos/event/b/a/a/3/600_433127779.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/b/a/a/3/thumb_433127779.jpeg' - join_mode: open - organizer: - member_id: 112549272 - name: Juri Di Natale - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/c/e/1/a/highres_244432762.jpeg' - photo_id: 244432762 - photo_link: 'http://photos4.meetupstatic.com/photos/member/c/e/1/a/member_244432762.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/c/e/1/a/thumb_244432762.jpeg' - members: 514 - name: 'M&M-Mean Milan' - state: MI lat: 45.459999084472656 - who: DEVs + - country: ES + city: Madrid + link: 'http://www.meetup.com/Redradix-Weekends/' + name: Redradix Weekends + description: '

Los weekends de Redradix son charlas cortas y eminentemente prácticas, talleres o conferencias donde se habla de temas interesantes en el mundo de la tecnología web. Es un evento abierto y gratis, reuniéndonos en las oficinas de Redradix. Solemos hacer uno al mes.

' + lon: -3.7100000381469727 + group_photo: + photo_link: 'http://photos4.meetupstatic.com/photos/event/3/b/600_448320059.jpeg' + lat: 40.41999816894531 - country: IS - visibility: public city: Reykjavík - timezone: Atlantic/Reykjavik - created: 1415984272000 link: 'http://www.meetup.com/Reykjavik-Nodecopter/' - rating: 4.5 - description: >- + name: Reykjavík Nodecopter + description: |- It's finally time! + And when I say finally time, I mean it's finally time to mess around with robots and node.js! - And when I say finally time, I mean it's finally time to mess around - with robots and node.js! - - - - Oz Inc. would like to invite you to a amazing event that involves - hacking on drones and has already been held in different cities around - the world. - - - - January 10th 2015 we will gather in Reykjavík University to do the - following: - + Oz Inc. would like to invite you to a amazing event that involves hacking on drones and has already been held in different cities around the world. + January 10th 2015 we will gather in Reykjavík University to do the following: Listen to short talks about node.js. - Hack on drones in node.js. - Eat food and drink beers and sodas. - Have a kickass time. - - Check out nodecopter.com for more info about nodecopter events and - check out our github for more info about nodecopter Reykjavík. - - + Check out nodecopter.com for more info about nodecopter events and check out our github for more info about nodecopter Reykjavík. Things you need: - - 5000ISK for registration. - Your own laptop. - Some programming experience. - We'll provide: - - A single AR Drone 2.0 to mess around with (one per team). - Beer and pizzas. - Wifi! - Did we mention we'll let you mess around with a f'ing drone??? - - Afterwards we'll all meet up at Oz HQ to have beers, mingle and be - merry. + Afterwards we'll all meet up at Oz HQ to have beers, mingle and be merry. lon: -21.920000076293945 - join_mode: open - organizer: - member_id: 174955272 - name: Sveinn Fannar Kristjánsson - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/1/d/b/c/highres_231367612.jpeg' - photo_id: 231367612 - photo_link: 'http://photos1.meetupstatic.com/photos/member/1/d/b/c/member_231367612.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/1/d/b/c/thumb_231367612.jpeg' - members: 72 - name: Reykjavík Nodecopter lat: 64.13999938964844 - who: Hackers - - utc_offset: 3600000 - country: GB - visibility: public_limited + - country: GB city: London - timezone: Europe/London - created: 1416304527000 link: 'http://www.meetup.com/Azureoss/' + name: UK OSS on Windows Azure Platform Meetup description: '

This group is open to anyone interested in discussing running Linux and OpenSource Software (OSS) on the Azure platform. "Microsoft ♥ Linux"

' lon: -0.14000000059604645 - join_mode: approval - organizer: - member_id: 37265042 - name: Boris - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/e/0/f/1/highres_241617585.jpeg' - photo_id: 241617585 - photo_link: 'http://photos1.meetupstatic.com/photos/member/e/0/f/1/member_241617585.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/e/0/f/1/thumb_241617585.jpeg' - members: 54 - name: UK OSS on Windows Azure Platform Meetup - state: '17' lat: 51.5 - who: Members - - utc_offset: 7200000 - country: AT - visibility: public + - country: AT city: Vienna - timezone: Europe/Vienna - created: 1417084886000 link: 'http://www.meetup.com/Vienna-AngularJS-Master-Class-Meetup/' - rating: 4.9 - description: >- -

Vienna Tech Training Series is about learning the trending - technologies and topics that will take your career to the next level. - Because the training program is a whole package, it - includes learning “how to code” and “how to market” your apps and - websites.

- + name: Vienna AngularJS Master Class Meetup + description: |- +

Vienna Tech Training Series is about learning the trending technologies and topics that will take your career to the next level. Because the training program is a whole package, it includes learning “how to code” and “how to market” your apps and websites.


-

The training series are focused on:

-

-  Teaching and ”workshopping” trending topics

-

-  Learning to code

-

-  Marketing your webs and application

- -

-  Networking. This is how companies capture the best talent -

- +

-  Networking. This is how companies capture the best talent

-  Providing a platform to expose your ideas

-


-

What can you expect from these trainings?

-

-  VTTS is sponsored and supported by big tech companies

- -

-  The series will be filmed so you can watch the videos later - on at home (included in the cost of the ticket)

- -

-  Lots of freebies and goodies for the “most active” - participants

- +

-  The series will be filmed so you can watch the videos later on at home (included in the cost of the ticket)

+

-  Lots of freebies and goodies for the “most active” participants

-  Discounts for the next events

-


- -

About the organiser:
Alejandro Rangel (https://www.linkedin.com/in/arangelp)

- +

About the organiser:
Alejandro Rangel (https://www.linkedin.com/in/arangelp)

- -

A mobile frontend developer with more than 9 years working as - a employee/freelance all around Europe and currently as Lead Game - Developer in Greentube. I had worked with many clients in London, - Vienna, Berlin and Barcelona. I had published more than 20 mobile - applications in the last years.

- +

A mobile frontend developer with more than 9 years working as a employee/freelance all around Europe and currently as Lead Game Developer in Greentube. I had worked with many clients in London, Vienna, Berlin and Barcelona. I had published more than 20 mobile applications in the last years.

-


- -

Jordi Rodriguez (https://www.linkedin.com/in/jrodriguezhttps://www.linkedin.com/in/jrodriguez)

- +

Jordi Rodriguez (https://www.linkedin.com/in/jrodriguezhttps://www.linkedin.com/in/jrodriguez)

- -

A Digital Marketing Specialist with more than 8 years working - in sales and Marketing, currently working as a freelance for small - companies, startups and new projects. A jack of all trades but with the - tech skills that anyone needs to become an entrepreneur.

- +

A Digital Marketing Specialist with more than 8 years working in sales and Marketing, currently working as a freelance for small companies, startups and new projects. A jack of all trades but with the tech skills that anyone needs to become an entrepreneur.

-


lon: 16.3700008392334 - join_mode: open - organizer: - member_id: 182738787 - name: Alejandro Rangel - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/7/1/5/d/highres_241829021.jpeg' - photo_id: 241829021 - photo_link: 'http://photos2.meetupstatic.com/photos/member/7/1/5/d/member_241829021.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/7/1/5/d/thumb_241829021.jpeg' - members: 283 - name: Vienna AngularJS Master Class Meetup lat: 48.220001220703125 - who: Alejandro Rangel - - utc_offset: 3600000 - country: PT - visibility: public + - country: PT city: Lisbon - timezone: Europe/Lisbon - created: 1417114047000 link: 'http://www.meetup.com/whatsyourstack-Lisbon/' - rating: 5 + name: Whats Your Stack Lisbon description: '

Startups explain their technology stack over drinks. Learn about the choices they made over databases, servers, programming languages, CDNs and frameworks - as well as what their favorite pizza joints are.

' lon: -9.140000343322754 - join_mode: open - organizer: - member_id: 86616592 - name: Sabrina Mach - photo: - photo_id: 106598242 - photo_link: 'http://photos1.meetupstatic.com/photos/member/9/5/6/2/member_106598242.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/9/5/6/2/thumb_106598242.jpeg' - members: 287 - name: Whats Your Stack Lisbon lat: 38.720001220703125 - who: Stackers - - utc_offset: 7200000 - country: DK - visibility: public + - country: DK city: Copenhagen - timezone: Europe/Copenhagen - created: 1417690050000 link: 'http://www.meetup.com/Opbeat/' - rating: 5 + name: Opbeat description: This is a group for developers operating web applications on cloud infrastructure lon: 12.569999694824219 - join_mode: open - organizer: - member_id: 68850142 - name: Rasmus Makwarth - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/e/8/9/0/highres_241979536.jpeg' - photo_id: 241979536 - photo_link: 'http://photos4.meetupstatic.com/photos/member/e/8/9/0/member_241979536.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/e/8/9/0/thumb_241979536.jpeg' - members: 103 - name: Opbeat lat: 55.68000030517578 - who: Members - - utc_offset: 3600000 - country: GB - visibility: public + - country: ES + city: Barcelona + link: 'http://www.meetup.com/BarcelonaJS/' + name: BarcelonaJS + description: '

Barcelona.JS is a usergroup focused on JavaScript and related topics. We meet regularly at the Mobile World Centre, C/ de Fontanella, 2 in Barcelona.

' + lon: 2.1700000762939453 + group_photo: + photo_link: 'http://photos1.meetupstatic.com/photos/event/7/c/b/1/600_432151921.jpeg' + lat: 41.400001525878906 + - country: ES + city: Barcelona + link: 'http://www.meetup.com/Meteor-Barcelona/' + name: Meteor Barcelona + description: |- +

Conoce a otros desarrolladores que utilizan Meteor. Comparte tus conocimientos, aplicaciones, y aprende de ellos. Meteor es una plataforma de código abierto para la creación de aplicaciones web de alta calidad en una fracción del tiempo, tanto si eres un desarrollador experto o acabas de empezar.

+

Meet other developers using Meteor. Share your knowledge, apps, and get feedback from others. Meteor is an open-source platform for building top-quality web apps in a fraction of the time, whether you're an expert developer or just getting started.
+ +

+ lon: 2.1700000762939453 + group_photo: + photo_link: 'http://photos4.meetupstatic.com/photos/event/9/c/9/e/600_432220094.jpeg' + lat: 41.400001525878906 + - country: GB city: London - timezone: Europe/London - created: 1418249826000 link: 'http://www.meetup.com/founderscoders/' - rating: 4.85 + name: 'Founders & Coders' description: '

Founders & Coders runs a full-time no-fee coding bootcamp. We also run a number of meetups for people who are interested in our course, who want to learn more about programming, or who want help with their startup projects. 

' lon: -0.03999999910593033 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/b/5/6/b/highres_442186443.jpeg' - photo_id: 442186443 photo_link: 'http://photos3.meetupstatic.com/photos/event/b/5/6/b/600_442186443.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/b/5/6/b/thumb_442186443.jpeg' - join_mode: open - organizer: - member_id: 13540933 - name: Dan Sofer - photo: - photo_id: 85468522 - photo_link: 'http://photos1.meetupstatic.com/photos/member/6/f/6/a/member_85468522.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/6/f/6/a/thumb_85468522.jpeg' - members: 2245 - name: 'Founders & Coders' - state: '17' lat: 51.529998779296875 - who: collaborators - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE city: Berlin - timezone: Europe/Berlin - created: 1418307636000 link: 'http://www.meetup.com/ecomhackBerlin/' - rating: 4.92 - description: >- -

There was a time when someone walked into store, had a chat with the - store-owner and asked him which products he would recommend. The - store-owner, knowing this person for years, would pull the right thing - out of a shelf and turn the visitor into a happy customer. If the - store-owner knew his trade really well, he would even anticipate his - customers’ wishes and actively suggest something they did not know they - needed - yet. 

- -

In this sense, personalization has always been a core principle of - retail. And in this digital day and age, technical developments such - data analysis and specialized APIs can make individualization and - proactive personalization even more effective and provide interesting - opportunities to merchants. With mobile devices and wearables learning - more about their customers’ tastes and preferences, they can build - better and more targeted applications and get a headstart against their - competition.

- -

New developments in hard- and software make it possible to reach - online customers
far beyond their desktop computers and blur the - boundaries between online and
“real” life. Emerging devices enable - new forms of human-machine interaction and
redefine the way in - which online retail is done. ecomhack.io 2015 is all about
mobile - technology, emerging devices, keyboard-free interaction, a natural -
shopping experience as an integral part of our everyday lives and - the role of APIs in
shaping the future of e-commerce.

- -

This weekend in Berlin is all about projects with an interesting - approach to personalization and fresh ideas that make buying things - more individual, more effective - and more fun.

- + name: ecomhack Berlin + description: |- +

There was a time when someone walked into store, had a chat with the store-owner and asked him which products he would recommend. The store-owner, knowing this person for years, would pull the right thing out of a shelf and turn the visitor into a happy customer. If the store-owner knew his trade really well, he would even anticipate his customers’ wishes and actively suggest something they did not know they needed - yet. 

+

In this sense, personalization has always been a core principle of retail. And in this digital day and age, technical developments such data analysis and specialized APIs can make individualization and proactive personalization even more effective and provide interesting opportunities to merchants. With mobile devices and wearables learning more about their customers’ tastes and preferences, they can build better and more targeted applications and get a headstart against their competition.

+

New developments in hard- and software make it possible to reach online customers
far beyond their desktop computers and blur the boundaries between online and
“real” life. Emerging devices enable new forms of human-machine interaction and
redefine the way in which online retail is done. ecomhack.io 2015 is all about
mobile technology, emerging devices, keyboard-free interaction, a natural
shopping experience as an integral part of our everyday lives and the role of APIs in
shaping the future of e-commerce.

+

This weekend in Berlin is all about projects with an interesting approach to personalization and fresh ideas that make buying things more individual, more effective - and more fun.


-


lon: 13.380000114440918 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/a/c/4/e/highres_435584110.jpeg' - photo_id: 435584110 photo_link: 'http://photos4.meetupstatic.com/photos/event/a/c/4/e/600_435584110.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/a/c/4/e/thumb_435584110.jpeg' - join_mode: open - organizer: - member_id: 190950863 - name: commercetools - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/d/a/4/a/highres_248575882.jpeg' - photo_id: 248575882 - photo_link: 'http://photos3.meetupstatic.com/photos/member/d/a/4/a/member_248575882.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/d/a/4/a/thumb_248575882.jpeg' - members: 234 - name: ecomhack Berlin lat: 52.52000045776367 - who: ecomhackers - - utc_offset: 10800000 - country: RO - visibility: public + - country: RO city: Iasi - timezone: Europe/Bucharest - created: 1418738513000 link: 'http://www.meetup.com/Iasi-JS/' - rating: 4.45 - description: >- -

Iasi JS is the JavaScript User Group in Iasi. We're looking forward - to locally build the community of JS enthusiasts.

- + name: Iasi JS + description: |- +

Iasi JS is the JavaScript User Group in Iasi. We're looking forward to locally build the community of JS enthusiasts.

-

Stay tuned for our news and presentations at 

-

- -

https://www.facebook.com/iasiJS  -

- +

https://www.facebook.com/iasiJS 

-

and

-

-

www.iasijs.com

lon: 27.56999969482422 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/1/1/2/8/highres_432604392.jpeg' - photo_id: 432604392 photo_link: 'http://photos3.meetupstatic.com/photos/event/1/1/2/8/600_432604392.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/1/1/2/8/thumb_432604392.jpeg' - join_mode: open - organizer: - member_id: 182836997 - name: Alexandra Adam - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/2/2/3/highres_241980547.jpeg' - photo_id: 241980547 - photo_link: 'http://photos2.meetupstatic.com/photos/member/2/2/3/member_241980547.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/2/2/3/thumb_241980547.jpeg' - members: 308 - name: Iasi JS lat: 47.16999816894531 - who: Javascript enthusiasts - - utc_offset: 7200000 - country: RS - visibility: public + - country: RS city: Belgrade - timezone: Europe/Belgrade - created: 1419332041000 link: 'http://www.meetup.com/JS-Belgrade-Meetup/' - rating: 4.89 - description: >- -

JS Belgrade is JavaScript User Group from Belgrade. Our goal is to - connect Belgrade's JavaScript community through monthly meetups.

- + name: JS Belgrade Meetup + description: |- +

JS Belgrade is JavaScript User Group from Belgrade. Our goal is to connect Belgrade's JavaScript community through monthly meetups.

More info on our website: www.jsbelgrade.org.

- -

If you want to talk on JS Belgrade Meetup you can submit talk - proposal here: www.jsbelgrade.org/teme/

+

If you want to talk on JS Belgrade Meetup you can submit talk proposal here: www.jsbelgrade.org/teme/

lon: 20.5 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/5/7/d/3/highres_436702483.jpeg' - photo_id: 436702483 photo_link: 'http://photos4.meetupstatic.com/photos/event/5/7/d/3/600_436702483.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/5/7/d/3/thumb_436702483.jpeg' - join_mode: open - organizer: - member_id: 183095779 - name: Slobodan Stojanovic - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/6/9/2/6/highres_242366918.jpeg' - photo_id: 242366918 - photo_link: 'http://photos4.meetupstatic.com/photos/member/6/9/2/6/member_242366918.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/6/9/2/6/thumb_242366918.jpeg' - members: 824 - name: JS Belgrade Meetup lat: 44.83000183105469 - who: Members - - utc_offset: 7200000 - country: FR - visibility: public + - country: FR city: Lyon - timezone: Europe/Paris - created: 1420543367000 link: 'http://www.meetup.com/LyonJS/' - rating: 4.48 - description: >- -

Le meetup LyonJS a pour but de rassembler les utilisateurs - JavaScript de la ville de Lyon et de ses alentours. Ainsi nous - organisons des réunions d'informations mensuelles ouvertes à tous et - gratuites.

- -

Le but est de se retrouver afin d'assister à des conférences dont le - thème porte sur les technologies web et JavaScript en particulier.

- -

Nous nous retrouvons ensuite autour d'un buffet en vue - d'échanger nos impressions et de poursuivre la discussion.
- - + name: LyonJS + description: |- +

Le meetup LyonJS a pour but de rassembler les utilisateurs JavaScript de la ville de Lyon et de ses alentours. Ainsi nous organisons des réunions d'informations mensuelles ouvertes à tous et gratuites.

+

Le but est de se retrouver afin d'assister à des conférences dont le thème porte sur les technologies web et JavaScript en particulier.

+

Nous nous retrouvons ensuite autour d'un buffet en vue d'échanger nos impressions et de poursuivre la discussion.

lon: 4.829999923706055 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/6/e/b/9/highres_433108345.jpeg' - photo_id: 433108345 photo_link: 'http://photos3.meetupstatic.com/photos/event/6/e/b/9/600_433108345.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/6/e/b/9/thumb_433108345.jpeg' - join_mode: open - organizer: - member_id: 100287092 - name: Swiip - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/9/3/2/8/highres_242677672.jpeg' - photo_id: 242677672 - photo_link: 'http://photos1.meetupstatic.com/photos/member/9/3/2/8/member_242677672.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/9/3/2/8/thumb_242677672.jpeg' - members: 725 - name: LyonJS lat: 45.7599983215332 - who: Members - - utc_offset: 10800000 - country: RO - visibility: public + - country: RO city: Cluj-Napoca - timezone: Europe/Bucharest - created: 1420558977000 link: 'http://www.meetup.com/JavaScript-Cluj/' - rating: 4.58 - description: >- -

Let's create a community for JavaScript in Cluj-Napoca, a place - where you can learn tips, tricks, hacks, and frameworks with some of - the best scripters around.

We host regular workshops and tech - talks on a variety of different JavaScript topics. Show off cool stuff - you've done and learn about what else is going on in the JS - community.

We meet at ClujHUB (Pitesti 19). No matter what your - level of experience is, we'd love to have you join us! No pressure, no - mandatory presentations. Come, hang out, and hear great people talk - about cutting edge scripting.

- -

- + name: JavaScript Cluj + description: |- +

Let's create a community for JavaScript in Cluj-Napoca, a place where you can learn tips, tricks, hacks, and frameworks with some of the best scripters around.

We host regular workshops and tech talks on a variety of different JavaScript topics. Show off cool stuff you've done and learn about what else is going on in the JS community.

We meet at ClujHUB (Pitesti 19). No matter what your level of experience is, we'd love to have you join us! No pressure, no mandatory presentations. Come, hang out, and hear great people talk about cutting edge scripting.

+


-


lon: 23.59000015258789 - join_mode: approval - organizer: - member_id: 184381961 - name: Ioana Chetan - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/6/e/4/6/highres_244648230.jpeg' - photo_id: 244648230 - photo_link: 'http://photos2.meetupstatic.com/photos/member/6/e/4/6/member_244648230.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/6/e/4/6/thumb_244648230.jpeg' - members: 222 - name: JavaScript Cluj lat: 46.779998779296875 - who: JS Enthusiasts - - utc_offset: 7200000 - country: IT - visibility: public + - country: IT city: Milano - timezone: Europe/Rome - created: 1421279487000 link: 'http://www.meetup.com/Meteor-Milano/' - rating: 4.75 + name: Meteor Milano description: "

Meet other developers using Meteor. Share your knowledge, apps, and get feedback from others. Meteor is an open-source platform for building top-quality web apps in a fraction of the time, whether you're an expert developer or just getting started.

" lon: 9.1899995803833 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/6/b/0/f/highres_433347407.jpeg' - photo_id: 433347407 photo_link: 'http://photos1.meetupstatic.com/photos/event/6/b/0/f/600_433347407.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/6/b/0/f/thumb_433347407.jpeg' - join_mode: open - organizer: - member_id: 81670332 - name: Nick Coe - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/highres_245331334.jpeg' - photo_id: 245331334 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/8/8/6/member_245331334.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/thumb_245331334.jpeg' - members: 217 - name: Meteor Milano - state: MI lat: 45.459999084472656 - who: Meteorites - - utc_offset: 7200000 - country: LU - visibility: public + - country: LU city: Luxembourg - timezone: Europe/Luxembourg - created: 1421304180000 link: 'http://www.meetup.com/JSLuxembourg/' - rating: 4.58 + name: JSLuxembourg Meetup description: "

JSLuxembourg is Luxembourg's JavaScript User Group. We organize monthly meetups that takes place at changing locations (Amazon Offices in Clausen, Technoport, theImpactory,..just to mention a few). This group is aimed at people that have an interest in JavaScript, either professionally or simply just for fun. For a meetup usually there is one main speaker presenting a topic for 30min and then we propose that people join in to give short (5-7 min) lightning talks. We will put our presentations and other documents on our github organization.(https://github.com/luxembourgjs)

" lon: 6.119999885559082 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/7/f/5/2/highres_433352594.jpeg' - photo_id: 433352594 photo_link: 'http://photos2.meetupstatic.com/photos/event/7/f/5/2/600_433352594.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/7/f/5/2/thumb_433352594.jpeg' - join_mode: open - organizer: - member_id: 183595339 - name: Thierry - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/e/e/highres_242940238.jpeg' - photo_id: 242940238 - photo_link: 'http://photos4.meetupstatic.com/photos/member/e/e/member_242940238.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/e/e/thumb_242940238.jpeg' - members: 316 - name: JSLuxembourg Meetup lat: 49.619998931884766 - who: JavaScripters - - utc_offset: 7200000 - country: CH - visibility: public + - country: CH city: Schaffhausen - timezone: Europe/Zurich - created: 1421936014000 link: 'http://www.meetup.com/node-js-meetup-schaffhausen/' - description: >- -

Bist du interessiert an Web Entwicklung? node.js, javascript, html, - css etc. sind dein Leben, oder möchten es gerne werden? Teilst du dein - Wissen gerne mit Anderen und möchtest neues lernen? 

- -

In dieser Gruppe möchten wir node.js Open Source Projekte - vorstellen, diskutieren und über unsere Erfahrungen mit node.js - austauschen.

- -

Mich interessiert, ob es in der Region Schaffhausen begeisterte - node.js Entwickler gibt. Für das erste Meeting würde ich eine - Einführung in node.js machen.

+ name: Node.js Meetup Schaffhausen + description: |- +

Bist du interessiert an Web Entwicklung? node.js, javascript, html, css etc. sind dein Leben, oder möchten es gerne werden? Teilst du dein Wissen gerne mit Anderen und möchtest neues lernen? 

+

In dieser Gruppe möchten wir node.js Open Source Projekte vorstellen, diskutieren und über unsere Erfahrungen mit node.js austauschen.

+

Mich interessiert, ob es in der Region Schaffhausen begeisterte node.js Entwickler gibt. Für das erste Meeting würde ich eine Einführung in node.js machen.

lon: 8.619999885559082 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/3/5/c/b/highres_433573771.jpeg' - photo_id: 433573771 photo_link: 'http://photos3.meetupstatic.com/photos/event/3/5/c/b/600_433573771.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/3/5/c/b/thumb_433573771.jpeg' - join_mode: open - organizer: - member_id: 183810556 - name: Andi Neck - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/9/1/a/2/highres_243157282.jpeg' - photo_id: 243157282 - photo_link: 'http://photos1.meetupstatic.com/photos/member/9/1/a/2/member_243157282.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/9/1/a/2/thumb_243157282.jpeg' - members: 11 - name: Node.js Meetup Schaffhausen lat: 47.709999084472656 - who: Web Entwickler - - utc_offset: 3600000 - country: GB - visibility: public - city: Plymouth - timezone: Europe/London - created: 1421965380000 - link: 'http://www.meetup.com/The-THINQTANQ-Events-Meetups-and-More-in-Plymouth/' - rating: 4.71 - description: '

This is a group for a diverse range of people! We have business centred networking and events for small businesses, coworkers, entrepreneurs, remote and home workers. We also host maker meetups with 3D printing, courses, lectures, hack days and more. If you are building a business and want to attend great events in a funky freelance environment or you want to embrace your inner geek. We have something for you!

' - lon: -4.139999866485596 - join_mode: open - organizer: - member_id: 183822616 - name: Rob Wick - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/b/a/0/2/highres_243167618.jpeg' - photo_id: 243167618 - photo_link: 'http://photos3.meetupstatic.com/photos/member/b/a/0/2/member_243167618.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/b/a/0/2/thumb_243167618.jpeg' - members: 346 - name: 'The THINQTANQ - Events, Meetups and More in Plymouth' - state: D4 - lat: 50.369998931884766 - who: Members - - utc_offset: 3600000 - country: IE - visibility: public + - country: IE city: Dublin - timezone: Europe/Dublin - created: 1422019970000 link: 'http://www.meetup.com/AzureDublin/' - rating: 4.79 + name: Azure Dublin Meetup description: "

This is Dublin's Azure Meetup. Here we will discuss anything Azure related. For developers, architects, DevOps, data scientists and IT professionals of all types. And yes it is open to Linux lovers and PhP, Java, Node.JS etc developers

" lon: -6.25 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/7/a/5/a/highres_433591322.jpeg' - photo_id: 433591322 photo_link: 'http://photos4.meetupstatic.com/photos/event/7/a/5/a/600_433591322.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/7/a/5/a/thumb_433591322.jpeg' - join_mode: open - organizer: - member_id: 128526142 - name: Niall Moran - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/e/4/b/8/highres_194158552.jpeg' - photo_id: 194158552 - photo_link: 'http://photos3.meetupstatic.com/photos/member/e/4/b/8/member_194158552.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/e/4/b/8/thumb_194158552.jpeg' - members: 633 - name: Azure Dublin Meetup lat: 53.33000183105469 - who: Azurees - - utc_offset: 10800000 - country: TR - visibility: public + - country: TR city: Ankara - timezone: Europe/Istanbul - created: 1422473311000 link: 'http://www.meetup.com/Javascript-Ankara/' - rating: 4.61 + name: Javascript Ankara description: "

Son yılların en yaygın dili JavaScript'in istemci ve sunucu tarafında kullanımlarını konuşacağımız, Ankara'daki JavaScript programcılarını kaynaştırmayı amaçlayan kullanıcı grubu

" lon: 32.849998474121094 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/7/2/c/2/highres_444569378.jpeg' - photo_id: 444569378 photo_link: 'http://photos4.meetupstatic.com/photos/event/7/2/c/2/600_444569378.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/7/2/c/2/thumb_444569378.jpeg' - join_mode: open - organizer: - member_id: 58658782 - name: Ustun Ozgur - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/9/1/e/5/highres_243337349.jpeg' - photo_id: 243337349 - photo_link: 'http://photos2.meetupstatic.com/photos/member/9/1/e/5/member_243337349.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/9/1/e/5/thumb_243337349.jpeg' - members: 694 - name: Javascript Ankara lat: 39.93000030517578 - who: Ankara JavaScript tutkunları - - utc_offset: 10800000 - country: RO - visibility: public + - country: RO city: Bucharest - timezone: Europe/Bucharest - created: 1422886754000 link: 'http://www.meetup.com/Bucharest-Angular-JS-Meetup/' - rating: 4.66 - description: >- -

This meet-up group has the purpose of creating a community - around the AngularJS framework and related - technologies.

- -

Join us on - Facebook: https://www.facebook.com/groups/angularjs.bucharest/

+ name: Bucharest Angular JS Meetup + description: |- +

This meet-up group has the purpose of creating a community around the AngularJS framework and related technologies.

+

Join us on Facebook: https://www.facebook.com/groups/angularjs.bucharest/

lon: 26.100000381469727 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/4/d/f/e/highres_436879966.jpeg' - photo_id: 436879966 photo_link: 'http://photos3.meetupstatic.com/photos/event/4/d/f/e/600_436879966.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/4/d/f/e/thumb_436879966.jpeg' - join_mode: open - organizer: - member_id: 182952315 - name: Raduta Bogdan Cristian - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/a/a/a/3/highres_243463683.jpeg' - photo_id: 243463683 - photo_link: 'http://photos3.meetupstatic.com/photos/member/a/a/a/3/member_243463683.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/a/a/a/3/thumb_243463683.jpeg' - members: 586 - name: Bucharest Angular JS Meetup lat: 44.439998626708984 - who: angulars - - utc_offset: 10800000 - country: BY - visibility: public + - country: BY city: Minsk - timezone: Europe/Minsk - created: 1422915885000 link: 'http://www.meetup.com/Meteor-Minsk/' + name: Meteor Minsk description: "

Meet other developers using Meteor. Share your knowledge, apps, and get feedback from others. Meteor is an open-source platform for building top-quality web apps in a fraction of the time, whether you're an expert developer or just getting started.

Meteor Minsk community web: minsk.meteor.com

" lon: 27.549999237060547 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/d/c/5/6/highres_434396406.jpeg' - photo_id: 434396406 photo_link: 'http://photos3.meetupstatic.com/photos/event/d/c/5/6/600_434396406.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/d/c/5/6/thumb_434396406.jpeg' - join_mode: open - organizer: - member_id: 81670332 - name: Nick Coe - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/highres_245331334.jpeg' - photo_id: 245331334 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/8/8/6/member_245331334.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/thumb_245331334.jpeg' - members: 71 - name: Meteor Minsk lat: 53.90999984741211 - who: Meteorites - - utc_offset: 7200000 - country: NL - visibility: public + - country: NL city: Enschede - timezone: Europe/Amsterdam - created: 1423561996000 link: 'http://www.meetup.com/twentejs/' - rating: 4.87 - description: >- + name: Twente.js + description: |-

Javascript user group for the east of The Netherlands.

-


- -

https://vimeo.com/121474814?portrait=0&color=f6e629

- +

https://vimeo.com/121474814?portrait=0&color=f6e629


lon: 6.889999866485596 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/a/7/5/e/highres_434202846.jpeg' - photo_id: 434202846 photo_link: 'http://photos3.meetupstatic.com/photos/event/a/7/5/e/600_434202846.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/a/7/5/e/thumb_434202846.jpeg' - join_mode: open - organizer: - member_id: 20010371 - name: Johan Bruning - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/8/5/e/2/highres_243694274.jpeg' - photo_id: 243694274 - photo_link: 'http://photos3.meetupstatic.com/photos/member/8/5/e/2/member_243694274.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/8/5/e/2/thumb_243694274.jpeg' - members: 142 - name: Twente.js lat: 52.220001220703125 - who: Javascript developers - - utc_offset: 10800000 - country: RO - visibility: public + - country: RO city: Bucharest - timezone: Europe/Bucharest - created: 1423649646000 link: 'http://www.meetup.com/BucharestJS/' - rating: 4.64 - description: >- -

BucharestJS is a developer group for anyone interested in - Javascript. All skill levels are welcome. Stay tuned for details of - BucharestJS meetups and get in touch if you want to get involved! We're - also on Facebook (https://www.facebook.com/groups/1544555832466208/) - and Twitter (https://twitter.com/bucharestjs)

- + name: BucharestJS + description: |- +

BucharestJS is a developer group for anyone interested in Javascript. All skill levels are welcome. Stay tuned for details of BucharestJS meetups and get in touch if you want to get involved! We're also on Facebook (https://www.facebook.com/groups/1544555832466208/) and Twitter (https://twitter.com/bucharestjs)


- -

PS: While HR people are more than welcome, HR spammy - messages/posts/e-mails are NOT. These are the terms, take it or leave - it!

+

PS: While HR people are more than welcome, HR spammy messages/posts/e-mails are NOT. These are the terms, take it or leave it!

lon: 26.100000381469727 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/2/5/1/b/highres_434349499.jpeg' - photo_id: 434349499 photo_link: 'http://photos1.meetupstatic.com/photos/event/2/5/1/b/600_434349499.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/2/5/1/b/thumb_434349499.jpeg' - join_mode: open - organizer: - member_id: 12250519 - name: Ciprian Borodescu - photo: - photo_id: 177286642 - photo_link: 'http://photos4.meetupstatic.com/photos/member/b/6/3/2/member_177286642.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/b/6/3/2/thumb_177286642.jpeg' - members: 704 - name: BucharestJS lat: 44.439998626708984 - who: JS Hackers - - utc_offset: 7200000 - country: CH - visibility: public + - country: CH city: Lausanne - timezone: Europe/Zurich - created: 1423816757000 link: 'http://www.meetup.com/Frontend-Meetup-Romandie/' - rating: 4.79 + name: Frontend Meetup - Romandie description: '

Un meetup traitant de sujets comme les bonnes pratiques du développement Frontend, les dernières technologies et les retours sur expériences. Donc si tu veux partager un bout de code et une bière, rejoins-nous !

' lon: 6.619999885559082 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/a/c/a/7/highres_434264199.jpeg' - photo_id: 434264199 photo_link: 'http://photos4.meetupstatic.com/photos/event/a/c/a/7/600_434264199.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/a/c/a/7/thumb_434264199.jpeg' - join_mode: open - organizer: - member_id: 139846622 - name: Yann Gouffon - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/c/a/8/5/highres_243771845.jpeg' - photo_id: 243771845 - photo_link: 'http://photos4.meetupstatic.com/photos/member/c/a/8/5/member_243771845.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/c/a/8/5/thumb_243771845.jpeg' - members: 279 - name: Frontend Meetup - Romandie lat: 46.52000045776367 - who: Frontenders - - utc_offset: 7200000 - country: FR - visibility: public + - country: FR city: Paris - timezone: Europe/Paris - created: 1424448852000 link: 'http://www.meetup.com/Js-Star/' - rating: 4.67 + name: Js-Star .Paris description: "

JS-Star est un groupe de développeurs qui adorent échanger, c'est dans cet esprit que nous organisons ces meetups ! Le but est de partager nos expériences, questions, projets, problèmes entre nous, tout en passant une agréable soirée.
Chaque soirée sera découpée en deux grandes parties. En premier un thème sera abordé par des experts du sujet, puis en fin de soirée nous pourrons networker et échanger dans une ambiance détendue.
Nous vous attendons nombreux lors de ces soirées conviviales où nous pourrons discuter, apprendre et manger des pizzas !

" lon: 2.3399999141693115 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/4/5/6/d/highres_434717773.jpeg' - photo_id: 434717773 photo_link: 'http://photos2.meetupstatic.com/photos/event/4/5/6/d/600_434717773.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/4/5/6/d/thumb_434717773.jpeg' - join_mode: open - organizer: - member_id: 177865892 - name: Sébastien Berten - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/a/f/f/2/highres_234765042.jpeg' - photo_id: 234765042 - photo_link: 'http://photos4.meetupstatic.com/photos/member/a/f/f/2/member_234765042.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/a/f/f/2/thumb_234765042.jpeg' - members: 630 - name: Js-Star .Paris lat: 48.86000061035156 - who: JSaddict - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE city: Köln - timezone: Europe/Berlin - created: 1424732532000 link: 'http://www.meetup.com/DevHouseFriday-Chillout/' - rating: 5 + name: DevHouseFriday Chillout description: '

DevHouseFriday is an event intended for creative and curious people interested in technology inspired by SuperHappyDevHouse.

' lon: 6.96999979019165 - join_mode: open - organizer: - member_id: 34823422 - name: Jan Kus - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/6/b/a/3/highres_244047555.jpeg' - photo_id: 244047555 - photo_link: 'http://photos2.meetupstatic.com/photos/member/6/b/a/3/member_244047555.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/6/b/a/3/thumb_244047555.jpeg' - members: 236 - name: DevHouseFriday Chillout lat: 50.95000076293945 - who: DevHouseFridays - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE city: München - timezone: Europe/Berlin - created: 1425043353000 link: 'http://www.meetup.com/MarkLogic-User-Group-NoSQL-Database-Technology/' - rating: 5 + name: MarkLogic User Group Germany description: "

Diese Gruppe ist für alle, die sich für NoSQL Technologie, für XML, XQeuery  oder ähnliche Themen interessieren – für Einsteiger und Fortgeschrittene. Die NoSQL Datenbank Technologie kommt immer dann zum Einsatz, wenn relationale Datenbanken an ihre Grenzen stoßen. Bei unseren Treffen geben wir Tipps und Tricks, stellen Anwendungsbeisiele von Kunden vor oder geben einen Ausblick auf neue Entwicklungen. Wir freuen uns auf jeden Teilnehmer und den Austausch mit unseren Gruppenmitgliedern.

\n

The MarkLogic User Group (MLUG)  is for users and/or fans of MarkLogic and those who are interested in learning more about MarkLogic, XML, XQuery and related technologies. MUGL meetups are free and open to anyone that wishes to attend. There is no formal membership for the group. Our meetings are held quarterly in different regions in Germany.

\n

Want to know more about MarkLogic?  Read on >>

\n

MarkLogic® is a new generation database platform that enables organisations to get more value from more data than ever before. Global enterprises and governments rely on MarkLogic to power intelligent, high performance applications aimed at analysing data for better insights and also running crucial day-to-day business operations. With MarkLogic, organisations achieve faster time-to-value than was possible with legacy databases, while minimising risk and improving data quality.

\n

MarkLogic is the only Enterprise NoSQL database—a powerful, agile, trusted database that has the speed and scale of NoSQL coupled with the enterprise features required.

\n

·  Develop stronger applications faster with a flexible data model using Full-Stack JavaScript, JSON and Node.JS

\n

·  Find relevant information easier with lightning fast, built-in search

\n

·  Gain more intelligence in the data layer using semantics and bitemporal

\n

·  Maintain data resiliency and consistency with ACID transactions, scalability and elasticity, certified security,   and high availability and disaster recovery

\n
" lon: 11.579999923706055 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/6/8/d/e/highres_440246846.jpeg' - photo_id: 440246846 photo_link: 'http://photos3.meetupstatic.com/photos/event/6/8/d/e/600_440246846.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/6/8/d/e/thumb_440246846.jpeg' - join_mode: approval - organizer: - member_id: 183743962 - name: 'Regina ' - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/3/c/7/highres_244140967.jpeg' - photo_id: 244140967 - photo_link: 'http://photos3.meetupstatic.com/photos/member/3/c/7/member_244140967.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/3/c/7/thumb_244140967.jpeg' - members: 45 - name: MarkLogic User Group Germany lat: 48.13999938964844 - who: Members - - utc_offset: 7200000 - country: HR - visibility: public - city: Osijek - timezone: Europe/Zagreb - created: 1425050506000 - link: 'http://www.meetup.com/Osijek-Front-End-Meetup/' - rating: 5 - description: "A monthly meetup of Osijek Front-End developer enthusiasts. We're all about JavaScript, CSS preprocessors, RWD, beautiful UIs and exceptional UX." - lon: 18.68000030517578 - join_mode: open - members: 70 - name: Osijek Front-End Meetup - lat: 45.54999923706055 - who: Frontenders - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE city: Siegen - timezone: Europe/Berlin - created: 1425733691000 link: 'http://www.meetup.com/Webentwicklung-in-Siegen-und-Umgebung/' + name: Webentwicklung in Siegen und Umgebung description: '

Dies ist eine Gruppe für (Web)-Entwickler aus Siegen und Umgebung. Sie soll eine lockere Kooperation verschiedener Webentwickler ermöglichen, die sich regelmäßig zum Austausch über die neusten Webtechnologien treffen und sich gegenseitig bei der Webentwicklung unterstützen. Egal ob Du gerade auf Schienen, einer Insel, einem Elefanten und/oder auf Kaffee bist oder Du noch gar keine Ahnung davon hast, was damit gemeint ist: Du bist herzlich eingeladen beizutreten und mit zu machen!

' lon: 8.010000228881836 - join_mode: approval - organizer: - member_id: 145489332 - name: Kai Haase - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/9/5/8/0/highres_207278272.jpeg' - photo_id: 207278272 - photo_link: 'http://photos1.meetupstatic.com/photos/member/9/5/8/0/member_207278272.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/9/5/8/0/thumb_207278272.jpeg' - members: 5 - name: Webentwicklung in Siegen und Umgebung lat: 50.869998931884766 - who: Webentwickler - - utc_offset: 7200000 - country: FR - visibility: public + - country: FR city: Digne-les-Bains - timezone: Europe/Paris - created: 1426106344000 link: 'http://www.meetup.com/Digne-les-Bains-JavaScript-Meetup/' + name: Digne-les-Bains JavaScript Meetup description: 'Pour ceux qui veulent apprendre à coder et ceux qui veulent améliorer leur pratique du code. Javascript côté client et Javascript côté serveur. Mobile, Applications, Sites web : on peut tout faire avec Javascript. Réunissons-nous à Digne-les-Bains pour échanger!' lon: 6.230000019073486 - join_mode: open - organizer: - member_id: 37228682 - name: Guillaume - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/6/9/3/7/highres_244466935.jpeg' - photo_id: 244466935 - photo_link: 'http://photos2.meetupstatic.com/photos/member/6/9/3/7/member_244466935.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/6/9/3/7/thumb_244466935.jpeg' - members: 11 - name: Digne-les-Bains JavaScript Meetup lat: 44.099998474121094 - who: codeurs - - utc_offset: 7200000 - country: IT - visibility: public + - country: IT city: Milano - timezone: Europe/Rome - created: 1426673579000 link: 'http://www.meetup.com/Intel-Developers-Milan/' - rating: 4.17 + name: Intel Developers Milan description: "Oltre a progettare processori, la Intel ha una divisione sviluppatori (conosciuta come Intel Developer Zone) che si occupa di creare strumenti in grado di far progredire il mondo dei computer e l'industria dei videogiochi. Lo scopo di questo Meetup è quello di riunire sviluppatori HTML5, Android e Windows 8 interessati a questi nuovi strumenti e innovazioni.\n\nIn questa serie di incontri ti invitiamo a presentare una demo del tuo codice e a interagire con un'audience di persone come te, con una forte enfasi sul problem-solving e sulle buone prassi. Tutti gli sviluppatori sono i benvenuti, sia per HTML5 cross platform che per lo sviluppo nativo sotto Android / Win 8, con una discussione interattiva che non dovrebbe superare i 25-30 minuti. \n\nLe presentazioni saranno in \"ottica sviluppatore\", con alcuni professionisti del settore ed oratori invitati a presentare le demo fianco a fianco con i partecipanti all'incontro. Non è necessario che tu sia uno sviluppatore esperto, portaci solo i tuoi hack ed altri progetti ai quali stai lavorando ed unisciti a noi per una serie di meetup Ultracode a base di pizza e birra." lon: 9.1899995803833 - join_mode: open - organizer: - member_id: 179303032 - name: Hugo Espinosa - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/4/c/9/2/highres_236959602.jpeg' - photo_id: 236959602 - photo_link: 'http://photos2.meetupstatic.com/photos/member/4/c/9/2/member_236959602.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/4/c/9/2/thumb_236959602.jpeg' - members: 131 - name: Intel Developers Milan - state: MI lat: 45.459999084472656 - who: Intel developers - - utc_offset: 3600000 - country: GB - visibility: public + - country: GB city: Leigh-on-Sea - timezone: Europe/London - created: 1426777782000 link: 'http://www.meetup.com/Southend-on-Sea-Web-Development-Meetup/' + name: Southend on Sea Web Meetup description: "

I'm a web developer. I loving going to meetups in London, so I've decided to set one up locally. Whether you're a developer or designer, freelancer or employee, front end or back end, if you live in or around Southend and you do stuff on the web, I want to say \"hi\".

" lon: 0.6700000166893005 - join_mode: open - organizer: - member_id: 12912393 - name: Dan Blows - photo: - photo_id: 59825272 - photo_link: 'http://photos4.meetupstatic.com/photos/member/1/4/9/8/member_59825272.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/1/4/9/8/thumb_59825272.jpeg' - members: 50 - name: Southend on Sea Web Meetup - state: E4 lat: 51.54999923706055 - who: Web Professionals - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE city: Karlsruhe - timezone: Europe/Berlin - created: 1427280888000 link: 'http://www.meetup.com/Meteor-Karlsruhe/' - rating: 4.75 + name: Meteor Karlsruhe description: 'Austausch rund ums zukunftsweisendste Web-Framework Meteor. Ideen finden, Wissen teilen, gemeinsame Projekte initiieren.' lon: 8.399999618530273 - join_mode: open - organizer: - member_id: 183972650 - name: Johannes Linowski - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/8/8/8/6/highres_244834950.jpeg' - photo_id: 244834950 - photo_link: 'http://photos3.meetupstatic.com/photos/member/8/8/8/6/member_244834950.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/8/8/8/6/thumb_244834950.jpeg' - members: 120 - name: Meteor Karlsruhe lat: 49 - who: Meteoriten - - utc_offset: 7200000 - country: NL - visibility: public + - country: ES + city: Valencia + link: 'http://www.meetup.com/ValenciaJS/' + name: ValenciaJS + description: '

A meetup in Valencia for people that hack JavaScript, previous talks. Join to our Slack channel.

' + lon: -0.38999998569488525 + group_photo: + photo_link: 'http://photos3.meetupstatic.com/photos/event/6/8/a/9/600_435626793.jpeg' + lat: 39.47999954223633 + - country: NL city: Boxmeer - timezone: Europe/Amsterdam - created: 1427376719000 link: 'http://www.meetup.com/Tech-Boxmeer/' - description: >- -

This is a group for developers. Would be nice to meet each other and - have some knowledge sharing.

- + name: Boxmeer Tech Meetup + description: |- +

This is a group for developers. Would be nice to meet each other and have some knowledge sharing.

Idea is to meet monthly and have some speakers.

lon: 5.940000057220459 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/e/7/5/1/highres_443819217.jpeg' - photo_id: 443819217 photo_link: 'http://photos3.meetupstatic.com/photos/event/e/7/5/1/600_443819217.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/e/7/5/1/thumb_443819217.jpeg' - join_mode: open - organizer: - member_id: 185574075 - name: Thijs Hofmans - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/c/0/c/d/highres_244849357.jpeg' - photo_id: 244849357 - photo_link: 'http://photos2.meetupstatic.com/photos/member/c/0/c/d/member_244849357.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/c/0/c/d/thumb_244849357.jpeg' - members: 49 - name: Boxmeer Tech Meetup lat: 51.65999984741211 - who: developers - - utc_offset: 3600000 - country: PT - visibility: public + - country: PT city: Lisbon - timezone: Europe/Lisbon - created: 1427479046000 link: 'http://www.meetup.com/JSLisbon/' - description: >- -

Node.js, ReactJS, ExpressJS, Hapi.js, JavaScript, Neo4j, - MongoDB...

- -

MeetUps, Hackatons and Casual Coding sessions for all JS - Ninjas in the Lisbon Area! 

- -

[MeetUps during the summer will be held in primarily in - Cascais/Estoril]

+ name: 'JS Lisbon (Frontend & Backend)' + description: |- +

Node.js, ReactJS, ExpressJS, Hapi.js, JavaScript, Neo4j, MongoDB...

+

MeetUps, Hackatons and Casual Coding sessions for all JS Ninjas in the Lisbon Area! 

+

[MeetUps during the summer will be held in primarily in Cascais/Estoril]

lon: -9.140000343322754 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/1/2/6/8/highres_435664712.jpeg' - photo_id: 435664712 photo_link: 'http://photos1.meetupstatic.com/photos/event/1/2/6/8/600_435664712.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/1/2/6/8/thumb_435664712.jpeg' - join_mode: open - organizer: - member_id: 140718692 - name: Upbis - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/3/9/8/2/highres_188834722.jpeg' - photo_id: 188834722 - photo_link: 'http://photos1.meetupstatic.com/photos/member/3/9/8/2/member_188834722.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/3/9/8/2/thumb_188834722.jpeg' - members: 103 - name: 'JS Lisbon (Frontend & Backend)' lat: 38.720001220703125 - who: JS devs - - utc_offset: 7200000 - country: SE - visibility: public + - country: SE city: Stockholm - timezone: Europe/Stockholm - created: 1427720338000 link: 'http://www.meetup.com/ReactJS-Stockholm/' - description: >- -

ReactJs is a fun, easy to use Javascript library built at - Facebook.

- -

http://facebook.github.io/react/

- -

We've found it to be incredibly easy to ramp up and fun, so we will - start hosting react meetups and hackathons to experiment with the - library and build on top of it.

- -

Join us if you'd like to learn more or if you have your own ReactJs - experience to share that others can benefit from. 

- lon: 18.06999969482422 - join_mode: open - organizer: - member_id: 130772632 - name: Victor Ekelund - members: 184 name: ReactJS Stockholm + description: |- +

ReactJs is a fun, easy to use Javascript library built at Facebook.

+

http://facebook.github.io/react/

+

We've found it to be incredibly easy to ramp up and fun, so we will start hosting react meetups and hackathons to experiment with the library and build on top of it.

+

Join us if you'd like to learn more or if you have your own ReactJs experience to share that others can benefit from. 

+ lon: 18.06999969482422 lat: 59.33000183105469 - who: Members - - utc_offset: 7200000 - country: BE - visibility: public + - country: BE city: Brussels - timezone: Europe/Brussels - created: 1427751508000 link: 'http://www.meetup.com/Belgian-Open-Badges-Meetup/' - rating: 4.5 - description: >- -

The Belgian Open Badges group meets around the topic of Mozilla Open - Badges

- -

Badges: the open digital credentials for online learning & - getting recognition for skills and achievements that happen outside of - school: http://openbadges.org 

- -

Main Git repository: https://github.com/mozilla/openbadges-backpack 

- -

This group is for earners, issuers, ecosystem developers, or anyone - interested in helping to spread Mozilla's great Open Badge standard to - Belgium!

+ name: Belgian Open Badges Meetup + description: |- +

The Belgian Open Badges group meets around the topic of Mozilla Open Badges

+

Badges: the open digital credentials for online learning & getting recognition for skills and achievements that happen outside of school: http://openbadges.org 

+

Main Git repository: https://github.com/mozilla/openbadges-backpack 

+

This group is for earners, issuers, ecosystem developers, or anyone interested in helping to spread Mozilla's great Open Badge standard to Belgium!

lon: 4.329999923706055 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/d/1/8/2/highres_446753634.jpeg' - photo_id: 446753634 photo_link: 'http://photos1.meetupstatic.com/photos/event/d/1/8/2/600_446753634.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/d/1/8/2/thumb_446753634.jpeg' - join_mode: open - organizer: - member_id: 178714292 - name: Bert Jehoul - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/e/2/5/0/highres_244257936.jpeg' - photo_id: 244257936 - photo_link: 'http://photos2.meetupstatic.com/photos/member/e/2/5/0/member_244257936.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/e/2/5/0/thumb_244257936.jpeg' - members: 147 - name: Belgian Open Badges Meetup lat: 50.83000183105469 - who: BelgianBadgers (not the mammals) - - utc_offset: 7200000 - country: NL - visibility: public + - country: NL city: Tilburg - timezone: Europe/Amsterdam - created: 1427804262000 link: 'http://www.meetup.com/Tilburg-Dev/' - description: >- -

Quarterly meetup on dev related topics in Tilburg. Every meetup will - have different topics, e.g. a new web dev framework or a talk about - a dev startup launch.

- + name: Tilburg Dev + description: |- +

Quarterly meetup on dev related topics in Tilburg. Every meetup will have different topics, e.g. a new web dev framework or a talk about a dev startup launch.

Location and first meetup tba.

lon: 5.070000171661377 - join_mode: open - organizer: - member_id: 132893572 - name: Barry Kooij - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/d/a/b/9/highres_244975993.jpeg' - photo_id: 244975993 - photo_link: 'http://photos2.meetupstatic.com/photos/member/d/a/b/9/member_244975993.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/d/a/b/9/thumb_244975993.jpeg' - members: 119 - name: Tilburg Dev lat: 51.56999969482422 - who: Devs - - utc_offset: 3600000 - country: PT - visibility: public + - country: PT city: Lisbon - timezone: Europe/Lisbon - created: 1427815646000 link: 'http://www.meetup.com/Lisboa-WebRTC-TADHack-Meetup/' - rating: 5 - description: >- -

WebRTC and API's are disrupting (tele)communications - and software ! We're building an European community of those who - believe that this technology is more than some nice features to build - alternative solutions to Skype. If you believe like us that WebRTC is - a movement for the next years, then please join us to build this - community, share ideas, projects and some nice food and drinks. -

- + name: 'Lisboa TADSummit & WebRTC & TADHack Meetup' + description: |- +

WebRTC and API's are disrupting (tele)communications and software ! We're building an European community of those who believe that this technology is more than some nice features to build alternative solutions to Skype. If you believe like us that WebRTC is a movement for the next years, then please join us to build this community, share ideas, projects and some nice food and drinks.

This Meetup is associated with: 

- -

TADSummit (http://tadsummit.com/). The - Telecom Application Developer Summit (TADS) is a grass roots initiative - to build an open ecosystem focused on helping businesses use telecom - capabilities in their applications, services and business - processes. We bring together the leaders in the - industry – across service providers, technology providers, developers, - and enterprises – to work on getting new services to market and making - business success in new services an everyday reality. On 17th and 18th - November TADSummit will be held at CORINTHIA HOTEL - LISBON, Av. Columbano - Bordalo Pinheiro 105, Lisbon

- -

TADHack (http://tadhack.com/2015/tadhack-global/). TADHack - is the international community of telecom app developers! This is the - ONLY GLOBAL MEETING place for developers who want to learn, - share, code and create using the tools and technologies available in - telecommunications. On 13 & 14th June, the worldwide - TADHack hub was in @Instituto Superior Técnico/Campus - Taguspark.

+

TADSummit (http://tadsummit.com/). The Telecom Application Developer Summit (TADS) is a grass roots initiative to build an open ecosystem focused on helping businesses use telecom capabilities in their applications, services and business processes. We bring together the leaders in the industry – across service providers, technology providers, developers, and enterprises – to work on getting new services to market and making business success in new services an everyday reality. On 17th and 18th November TADSummit will be held at CORINTHIA HOTEL LISBON, Av. Columbano Bordalo Pinheiro 105, Lisbon

+

TADHack (http://tadhack.com/2015/tadhack-global/). TADHack is the international community of telecom app developers! This is the ONLY GLOBAL MEETING place for developers who want to learn, share, code and create using the tools and technologies available in telecommunications. On 13 & 14th June, the worldwide TADHack hub was in @Instituto Superior Técnico/Campus Taguspark.

lon: -9.140000343322754 - join_mode: open - organizer: - member_id: 74886762 - name: Luis Borges Quina - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/e/9/e/2/highres_244979874.jpeg' - photo_id: 244979874 - photo_link: 'http://photos3.meetupstatic.com/photos/member/e/9/e/2/member_244979874.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/e/9/e/2/thumb_244979874.jpeg' - members: 125 - name: 'Lisboa TADSummit & WebRTC & TADHack Meetup' lat: 38.720001220703125 - who: WebRTC TADers - - utc_offset: 7200000 - country: NL - visibility: public + - country: NL city: Utrecht - timezone: Europe/Amsterdam - created: 1428008284000 link: 'http://www.meetup.com/purescript-nl/' + name: Dutch PureScript Enthusiasts description: "

Dutch Purescript programmers and enthusiasts unite! Let's meet to discuss, learn and teach PureScript together.

" lon: 5.110000133514404 - join_mode: open - organizer: - member_id: 9518720 - name: Erik Bakker - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/f/2/2/highres_95956162.jpeg' - photo_id: 95956162 - photo_link: 'http://photos2.meetupstatic.com/photos/member/3/f/2/2/member_95956162.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/3/f/2/2/thumb_95956162.jpeg' - members: 28 - name: Dutch PureScript Enthusiasts lat: 52.099998474121094 - who: Purists - - utc_offset: 3600000 - country: GB - visibility: public + - country: GB city: London - timezone: Europe/London - created: 1428097043000 link: 'http://www.meetup.com/London-JavaScript-Community/' - rating: 4.7 - description: >- -

- + name: London JavaScript Community + description: |- +


- -

This is a group for all the JavaScript developers that are - interested to learn more about JavaScript, share development - experiences or techniques and why not, find new friends to share our - passion!

- -

I started the group in order to discuss the latest JS libraries - and/or frameworks, sharing open source projects, discuss about best - practices, exploring new possible techniques to apply inside our - projects or talking about tools we are using in our projects - pipeline.

- -

If you are passionate about these things or if you are just curious - to meet new people passionate about JavaScript feel free to join this - community!

- -

Remember to follow us on LinkedinTwitter and Facebook too!

+

This is a group for all the JavaScript developers that are interested to learn more about JavaScript, share development experiences or techniques and why not, find new friends to share our passion!

+

I started the group in order to discuss the latest JS libraries and/or frameworks, sharing open source projects, discuss about best practices, exploring new possible techniques to apply inside our projects or talking about tools we are using in our projects pipeline.

+

If you are passionate about these things or if you are just curious to meet new people passionate about JavaScript feel free to join this community!

+

Remember to follow us on LinkedinTwitter and Facebook too!

lon: -0.10000000149011612 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/3/8/4/5/highres_435914405.jpeg' - photo_id: 435914405 photo_link: 'http://photos1.meetupstatic.com/photos/event/3/8/4/5/600_435914405.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/3/8/4/5/thumb_435914405.jpeg' - join_mode: open - organizer: - member_id: 8121831 - name: luca mezzalira - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/1/3/c/highres_248700316.jpeg' - photo_id: 248700316 - photo_link: 'http://photos1.meetupstatic.com/photos/member/1/3/c/member_248700316.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/1/3/c/thumb_248700316.jpeg' - members: 2435 - name: London JavaScript Community - state: '17' lat: 51.52000045776367 - who: JSLovers - - utc_offset: 10800000 - country: GR - visibility: public + - country: ES + city: Barcelona + link: 'http://www.meetup.com/AngularJS-Beers/' + name: 'AngularJS & Beers' + description: |- +

+

AngularJS & Beers. Informal event to socialise with AngularJS people. 
Express your motivations, share your ideas and play together creating awesome things in team.

+

We like to hack, learn, share and having fun in group while we are using AngularJS. All experience levels and backgrounds are welcome. We love get action doing things. Join us!

+


+ lon: 2.1700000762939453 + group_photo: + photo_link: 'http://photos1.meetupstatic.com/photos/event/9/2/4/b/600_447577451.jpeg' + lat: 41.400001525878906 + - country: GR city: Athens - timezone: Europe/Athens - created: 1428402325000 link: 'http://www.meetup.com/Athens-AngularJS-Meetup/' - rating: 4.7 + name: Athens AngularJS Meetup description: '

A group focused on the goodies javascript brings to applications development. Of course AngularJS is the leader to create and structure responsive applications, SPA and realtime interfaces no matter which language we use for the backend (php5, nodeJS, ruby etc). Many other players try to make some impression like ReactJS, EmberJS so a modern developer has to keep learning and modernising his/her skills. This group is created for guys who really want to follow latest web development techniques and love javascript. Come join us and just share your experience with us because learning is a never ending process!!

' lon: 23.729999542236328 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/8/6/d/c/highres_436114524.jpeg' - photo_id: 436114524 photo_link: 'http://photos1.meetupstatic.com/photos/event/8/6/d/c/600_436114524.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/8/6/d/c/thumb_436114524.jpeg' - join_mode: open - organizer: - member_id: 185108611 - name: Marios Fakiolas - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/8/a/4/0/highres_244415392.jpeg' - photo_id: 244415392 - photo_link: 'http://photos1.meetupstatic.com/photos/member/8/a/4/0/member_244415392.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/8/a/4/0/thumb_244415392.jpeg' - members: 495 - name: Athens AngularJS Meetup lat: 37.97999954223633 - who: JS Enthusiasts - - utc_offset: 3600000 - country: IE - visibility: public + - country: IE city: Dublin - timezone: Europe/Dublin - created: 1428592426000 link: 'http://www.meetup.com/Dublin-Node-js-Meetup/' - rating: 4.38 - description: >- -

Hello all Noders! Node.js Dublin is a monthly meetup for all things - Node.js, we have been running this meetup for two years now, and are - still going strong. If you interested in Node.js, and want to hear top - quality talks, join our Node family! (There will also be free beer and - pizza every month!)

- -

We are currently looking for a new venue, our next meetup will be at - the end of May, so stay tunned!

+ name: Dublin Node.js Meetup + description: |- +

Hello all Noders! Node.js Dublin is a monthly meetup for all things Node.js, we have been running this meetup for two years now, and are still going strong. If you interested in Node.js, and want to hear top quality talks, join our Node family! (There will also be free beer and pizza every month!)

+

We are currently looking for a new venue, our next meetup will be at the end of May, so stay tunned!

lon: -6.25 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/d/3/d/e/highres_436134238.jpeg' - photo_id: 436134238 photo_link: 'http://photos4.meetupstatic.com/photos/event/d/3/d/e/600_436134238.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/d/3/d/e/thumb_436134238.jpeg' - join_mode: open - organizer: - member_id: 182181202 - name: Agata - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/b/3/a/d/highres_247125997.jpeg' - photo_id: 247125997 - photo_link: 'http://photos2.meetupstatic.com/photos/member/b/3/a/d/member_247125997.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/b/3/a/d/thumb_247125997.jpeg' - members: 813 - name: Dublin Node.js Meetup lat: 53.33000183105469 - who: Noders - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE city: Düsseldorf - timezone: Europe/Berlin - created: 1429521066000 link: 'http://www.meetup.com/Phone-API-Hackathon-Dusseldorf/' + name: Phone API Hackathon Düsseldorf description: 'Gemeinsam wollen wir coole neue Ideen im Telefonnetz umsetzen und endlich mal wieder zeigen, dass Telefonie noch viele spannende Möglichkeiten bietet. Jeder kann mitmachen und mit dem eigenen Projekt teilnehmen. Für das leibliche Wohl sorgt die großartige sipgate Küche und am Ende werden die besten Projekte mit einem tollen Preis belohnt.' lon: 6.789999961853027 - join_mode: open - organizer: - member_id: 184772382 - name: Stefan Lange-Hegermann - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/a/4/d/9/highres_245502201.jpeg' - photo_id: 245502201 - photo_link: 'http://photos1.meetupstatic.com/photos/member/a/4/d/9/member_245502201.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/a/4/d/9/thumb_245502201.jpeg' - members: 55 - name: Phone API Hackathon Düsseldorf lat: 51.2400016784668 - who: Hacker - country: GB - visibility: public - city: London - timezone: Europe/London - created: 1429631219000 - link: 'http://www.meetup.com/William-Hill-London-Tech-Meetup/' - rating: 4.5 - description: 'This is a group for William Hill technical staff to get together to swap ideas and knowledge about dev and tech, to host guest speakers, code katas, workshops & flash talks. These sessions are followed by games / socialising.' - lon: -0.07000000029802322 - join_mode: closed - members: 35 - name: William Hill London Tech Meetup - state: '17' - lat: 51.54999923706055 - who: Members - - utc_offset: 3600000 - country: GB - visibility: public city: London - timezone: Europe/London - created: 1429802314000 link: 'http://www.meetup.com/Mean-Mongo-Express-Angular-Node/' + name: Mean - Mongo Express Angular Node description: '

the comunity around the Mean stack Mongo Express Angular Node

' lon: -0.10000000149011612 - join_mode: open - organizer: - member_id: 180281152 - name: Richard Donovan - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/4/0/0/f/highres_245596399.jpeg' - photo_id: 245596399 - photo_link: 'http://photos4.meetupstatic.com/photos/member/4/0/0/f/member_245596399.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/4/0/0/f/thumb_245596399.jpeg' - members: 100 - name: Mean - Mongo Express Angular Node - state: '17' lat: 51.52000045776367 - who: mean ninjas - - utc_offset: 7200000 - country: CH - visibility: public + - country: CH city: Mels - timezone: Europe/Zurich - created: 1429855900000 link: 'http://www.meetup.com/SuedostCH-Softwareentwickler-Meetup/' + name: 'Sarganserland, FL, GR Softwareentwickler Meetup' description: '

Aufruf an alle Softwareentwickler aus dem Raum Sarganserland, Fürstentum Liechtenstein und Graubünden sich regelmässig zum Know-How Austausch zu treffen. Es sollen alle Themen rund um die Softwareentwicklung, Architektur, DevOps, Requirements Engineering, etc. behandelt werden. Dabei geht es nicht primär um die eingesetzte Technologie. Es sollen jedoch trotzdem technologie bezogene Themen behandelt werden. Es wäre schön, wenn sich Entwickler aus allen Programmiersprachen, sei es Java, C#, C, C++, F#, Delphi, Pearl, Pascal, Cobol oder bekannte Web Script Sprachen wie AngularJS, NodeJS, etc. treffen, um gemeinsam Erfahrungen auszutauschen.

' lon: 8.40999984741211 - join_mode: open - organizer: - member_id: 77500022 - name: Thomas Kohler - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/8/6/a/0/highres_245614464.jpeg' - photo_id: 245614464 - photo_link: 'http://photos1.meetupstatic.com/photos/member/8/6/a/0/member_245614464.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/8/6/a/0/thumb_245614464.jpeg' - members: 23 - name: 'Sarganserland, FL, GR Softwareentwickler Meetup' lat: 47.04999923706055 - who: Softies - - utc_offset: 7200000 - country: DE - visibility: public + - country: ES + city: Sevilla + link: 'http://www.meetup.com/Bitnami-Sevilla/' + name: Bitnami Sevilla + description: '

Desde Bitnami queremos contribuir al conocimiento de las nuevas tecnologías en Sevilla, organizando encuentros y talleres relacionados con las tecnologías del desarrollo software y de Cloud Computing.

' + lon: -5.980000019073486 + group_photo: + photo_link: 'http://photos4.meetupstatic.com/photos/event/6/7/3/7/600_437006423.jpeg' + lat: 37.400001525878906 + - country: DE city: Berlin - timezone: Europe/Berlin - created: 1430766691000 link: 'http://www.meetup.com/Women-Who-Code-Berlin-Germany/' - rating: 4.69 - description: >- + name: Women Who Code Berlin + description: |-

Mission:

- -

Women Who Code is a global nonprofit organization dedicated to - inspiring women to excel in technology careers by creating a global, - connected community of women in technology. The organization tripled in - 2013 and has grown to be one of the largest communities of women - engineers in the world.

- +

Women Who Code is a global nonprofit organization dedicated to inspiring women to excel in technology careers by creating a global, connected community of women in technology. The organization tripled in 2013 and has grown to be one of the largest communities of women engineers in the world.

Empowerment:

- -

Women Who code is a professional community for women in - tech. We provide an avenue for women to pursue a career in - technology, help them gain new skills and hone existing skills for - professional advancement, and foster environments where networking and - mentorship are valued.

- +

Women Who code is a professional community for women in tech. We provide an avenue for women to pursue a career in technology, help them gain new skills and hone existing skills for professional advancement, and foster environments where networking and mentorship are valued.

Key Initiatives:

-

Free technical study groups

- -

Events featuring influential tech industry experts and - investors

- +

Events featuring influential tech industry experts and investors

Hack events

-

Career and leadership development

-

Current and aspiring coders are welcome. 

-

Bring your laptop and a friend! 

-

Support Women Who Code:

- -

Donating to Women Who - Code, Inc. (#46-4218859) directly impacts our ability to - efficiently run this growing organization, helps us produce new - programs that will increase our reach, and enables us to expand into - new cities around the world ensuring that women and girls everywhere - have the opportunity to pursue a career in technology.

- -

Women Who Code (WWCode) is dedicated to providing an empowering - experience for everyone who participates in or supports our community, - regardless of gender, gender identity and expression, sexual - orientation, ability, physical appearance, body size, race, ethnicity, - age, religion, or socioeconomic status. Because we value the safety and - security of our members and strive to have an inclusive community, we - do not tolerate harassment of members or event participants in any - form. Our Code - of Conduct applies to all events run by Women Who Code, Inc. - If you would like to report an incident or contact our leadership team, - please submit an incident - report form.

- +

Donating to Women Who Code, Inc. (#46-4218859) directly impacts our ability to efficiently run this growing organization, helps us produce new programs that will increase our reach, and enables us to expand into new cities around the world ensuring that women and girls everywhere have the opportunity to pursue a career in technology.

+

Women Who Code (WWCode) is dedicated to providing an empowering experience for everyone who participates in or supports our community, regardless of gender, gender identity and expression, sexual orientation, ability, physical appearance, body size, race, ethnicity, age, religion, or socioeconomic status. Because we value the safety and security of our members and strive to have an inclusive community, we do not tolerate harassment of members or event participants in any form. Our Code of Conduct applies to all events run by Women Who Code, Inc. If you would like to report an incident or contact our leadership team, please submit an incident report form.

WomenWhoCode.com

- -

Twitter | Facebook

+

Twitter | Facebook

lon: 13.380000114440918 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/1/5/7/9/highres_437105497.jpeg' - photo_id: 437105497 photo_link: 'http://photos2.meetupstatic.com/photos/event/1/5/7/9/600_437105497.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/1/5/7/9/thumb_437105497.jpeg' - join_mode: open - organizer: - member_id: 129339582 - name: Women Who Code - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/8/5/c/2/highres_172594242.jpeg' - photo_id: 172594242 - photo_link: 'http://photos4.meetupstatic.com/photos/member/8/5/c/2/member_172594242.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/8/5/c/2/thumb_172594242.jpeg' - members: 796 - name: Women Who Code Berlin lat: 52.52000045776367 - who: Members - - utc_offset: 10800000 - country: RO - visibility: public + - country: RO city: Cluj-Napoca - timezone: Europe/Bucharest - created: 1430903680000 link: 'http://www.meetup.com/hello-js/' + name: hello.js description: hello.js - a series of tech events for the JavaScript Community of Cluj lon: 23.59000015258789 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/9/e/c/e/highres_445720654.jpeg' - photo_id: 445720654 photo_link: 'http://photos1.meetupstatic.com/photos/event/9/e/c/e/600_445720654.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/9/e/c/e/thumb_445720654.jpeg' - join_mode: open - organizer: - member_id: 32235642 - name: Amalia Pomian - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/d/d/5/c/highres_245936668.jpeg' - photo_id: 245936668 - photo_link: 'http://photos3.meetupstatic.com/photos/member/d/d/5/c/member_245936668.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/d/d/5/c/thumb_245936668.jpeg' - members: 290 - name: hello.js lat: 46.779998779296875 - who: Members - - utc_offset: 3600000 - country: GB - visibility: public + - country: GB city: London - timezone: Europe/London - created: 1431075741000 link: 'http://www.meetup.com/Full-Stack-Software-Development-London/' - rating: 4.88 + name: Full Stack Development London description: '

This group is for anyone interested in meeting up to share and learn about different areas of the stack, from frontend to DevOps.

' lon: -0.10000000149011612 - join_mode: open - organizer: - member_id: 9746058 - name: Darren Flaherty - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/c/7/0/b/highres_244610955.jpeg' - photo_id: 244610955 - photo_link: 'http://photos4.meetupstatic.com/photos/member/c/7/0/b/member_244610955.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/c/7/0/b/thumb_244610955.jpeg' - members: 342 - name: Full Stack Development London - state: '17' lat: 51.52000045776367 - who: Developers - - utc_offset: 7200000 - country: FR - visibility: public + - country: FR city: Paris - timezone: Europe/Paris - created: 1431871400000 link: 'http://www.meetup.com/Formation-Baliz/' + name: Formation baliz.org description: "

Des formations pensées pour les artisans du web. Votre niveau importe peu. Pendant nos séances, vous apprendrez les rudiments du web actuel, en découvrant avec un expert les meilleurs techniques javascript. Des bases à la création d'une application mobile, vous apprendrez à coder et améliorer vos connaissances.

" lon: 2.3399999141693115 - join_mode: open - organizer: - member_id: 187432060 - name: Julien Moulin - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/9/9/8/c/highres_246399308.jpeg' - photo_id: 246399308 - photo_link: 'http://photos3.meetupstatic.com/photos/member/9/9/8/c/member_246399308.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/9/9/8/c/thumb_246399308.jpeg' - members: 56 - name: Formation baliz.org lat: 48.86000061035156 - who: Participants - - utc_offset: 7200000 - country: FR - visibility: public + - country: ES + city: Barcelona + link: 'http://www.meetup.com/ReactJS-Barcelona/' + name: ReactJS Barcelona + description: '

We are the first meetup group in Barcelona about Facebook React.Js. We aim to organize regular events talking about React.js, Flux and all other libraries related to it. We also want to participate to React and Javascript conferences together. Starting with ReactEurope on July 2-3, 2015 in Paris.

' + lon: 2.1700000762939453 + group_photo: + photo_link: 'http://photos4.meetupstatic.com/photos/event/b/c/6/8/600_437628232.jpeg' + lat: 41.400001525878906 + - country: FR city: Strasbourg - timezone: Europe/Paris - created: 1432070292000 link: 'http://www.meetup.com/Strasbourg-Nodejs/' - rating: 4.88 - description: >- -

En permettant de créer des applications performantes qui encouragent - la productivité,l’usage de Node.js, le Javascript côté serveur, - a littéralement explosé en quelques années : de nombreuses sociétés - font confiance à ce langage de programmation et la communauté grossit - de jour en jour.

- -


Le rôle de la communauté Node.js Strasbourg est de regrouper les - développeurs de tous niveaux s’intéressant à cette - technologie au travers de soirées techniques de différents types - : conférence, live coding et coding dojos. 

- + name: Strasbourg Node.js + description: |- +

En permettant de créer des applications performantes qui encouragent la productivité,l’usage de Node.js, le Javascript côté serveur, a littéralement explosé en quelques années : de nombreuses sociétés font confiance à ce langage de programmation et la communauté grossit de jour en jour.

+


Le rôle de la communauté Node.js Strasbourg est de regrouper les développeurs de tous niveaux s’intéressant à cette technologie au travers de soirées techniques de différents types : conférence, live coding et coding dojos. 

Rejoignez-nous vite !

lon: 7.75 - join_mode: open - organizer: - member_id: 67949912 - name: Franck Jean-Sébastien - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/2/d/3/highres_244980723.jpeg' - photo_id: 244980723 - photo_link: 'http://photos1.meetupstatic.com/photos/member/2/d/3/member_244980723.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/2/d/3/thumb_244980723.jpeg' - members: 144 - name: Strasbourg Node.js lat: 48.58000183105469 - who: Node.js lovers - - utc_offset: 3600000 - country: ME - visibility: public - city: Budva - timezone: Europe/Podgorica - created: 1432192702000 - link: 'http://www.meetup.com/monte-dev-meetup/' - description: "

It's group of passionate geeks that lives near the sea. We like create useful thinks, cool websites, mobile apps, robots and many other things. And finally organise events, where we share our knowledge. If you like technology, like create new things and share your experience please join us we always open for new members. We'll meet once a month at the one of town of Montenegro usually it's Budva, but can be Herceg Novi and any other on a sea shore like Bar, Kotor, Tivat and etc.

" - lon: 18.84000015258789 - join_mode: open - organizer: - member_id: 69575142 - name: Eugene Krevenets - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/b/c/2/0/highres_246348160.jpeg' - photo_id: 246348160 - photo_link: 'http://photos1.meetupstatic.com/photos/member/b/c/2/0/member_246348160.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/b/c/2/0/thumb_246348160.jpeg' - members: 43 - name: Monte Dev Meetup - lat: 42.290000915527344 - who: Developers - - utc_offset: 10800000 - country: GR - visibility: public + - country: ES + city: Palma + link: 'http://www.meetup.com/Mallorca-Cassandra-Users/' + name: Mallorca Cassandra Users - by DataStax - + description: "

The Apache Cassandra Project develops a highly scalable second-generation distributed database, bringing together Dynamo's fully distributed design and Bigtable's ColumnFamily-based data model. This Apache Cassandra User Group is a highly awesome meetup group, bringing together cool people to talk about our favorite NoSQL implementation, Apache Cassandra.

" + lon: 2.6500000953674316 + group_photo: + photo_link: 'http://photos3.meetupstatic.com/photos/event/a/6/6/9/600_437682601.jpeg' + lat: 39.56999969482422 + - country: ME + city: Podgorica + link: 'http://www.meetup.com/wavedevs/' + name: Wave Devs Meetup + description: |- +

It's group of passionate geeks who live near the sea. We like create useful thinks, cool websites, mobile apps, robots and many other things. And finally organise events, where we share our knowledge. If you like technology, like create new things and share your experience please join us. We always open for new members. We meet once a month at the one of town of Montenegro usually it's Kotor or Budva, but can be Herceg Novi and any other on a sea shore like Podgorica, Bar, Tivat and etc.

+

Official website: http://wave-developers.github.io/

+ lon: 19.280000686645508 + group_photo: + photo_link: 'http://photos2.meetupstatic.com/photos/event/3/9/8/600_447180920.jpeg' + lat: 42.470001220703125 + - country: GR city: Athens - timezone: Europe/Athens - created: 1432795708000 link: 'http://www.meetup.com/GreeceJS/' - rating: 4.74 - description: >- + name: GreeceJS + description: |-

Welcome to GreeceJS! 

- -

A bi-monthly celebration and exploration of the JavaScript - programming language. This is a place to share knowledge, ask - questions, learn and grumble. If you are interested in speaking or - sponsoring please contact one of the organizers. 

- +

A bi-monthly celebration and exploration of the JavaScript programming language. This is a place to share knowledge, ask questions, learn and grumble. If you are interested in speaking or sponsoring please contact one of the organizers. 

Sign up and join us!

lon: 23.729999542236328 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/3/4/6/0/highres_438733408.jpeg' - photo_id: 438733408 photo_link: 'http://photos1.meetupstatic.com/photos/event/3/4/6/0/600_438733408.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/3/4/6/0/thumb_438733408.jpeg' - join_mode: open - organizer: - member_id: 127065852 - name: Elias Niaos - members: 603 - name: GreeceJS lat: 37.97999954223633 - who: JavaScripters - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE city: Saarbrücken - timezone: Europe/Berlin - created: 1433284304000 link: 'http://www.meetup.com/AngularJS-Saarbrucken/' - rating: 4.5 + name: AngularJS Saarbrücken description: "

AngularJS Saarbrücken is a group around the AngularJS framework and related technologies. We're open to anyone interested in the topic. Whether you're a beginner or expert, come along and have a seat.

" lon: 6.96999979019165 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/e/7/3/4/highres_438539188.jpeg' - photo_id: 438539188 photo_link: 'http://photos2.meetupstatic.com/photos/event/e/7/3/4/600_438539188.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/e/7/3/4/thumb_438539188.jpeg' - join_mode: open - organizer: - member_id: 29168872 - name: Marcel Stegmann - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/c/a/7/f/highres_246711839.jpeg' - photo_id: 246711839 - photo_link: 'http://photos2.meetupstatic.com/photos/member/c/a/7/f/member_246711839.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/c/a/7/f/thumb_246711839.jpeg' - members: 100 - name: AngularJS Saarbrücken lat: 49.25 - who: Angularians - - utc_offset: 3600000 - country: IE - visibility: public + - country: IE city: Dublin - timezone: Europe/Dublin - created: 1433935967000 link: 'http://www.meetup.com/Dublin-TypeScript-Meetup/' - rating: 4.87 + name: Dublin TypeScript Meetup description: "TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. In this Meetup, we teach and learn effective ways to use Typescript, share cool projects we've built using the language, and do hands-on practice projects together." lon: -6.25 - join_mode: open - organizer: - member_id: 100888312 - name: Remo H. Jansen - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/5/d/5/3/highres_246923891.jpeg' - photo_id: 246923891 - photo_link: 'http://photos1.meetupstatic.com/photos/member/5/d/5/3/member_246923891.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/5/d/5/3/thumb_246923891.jpeg' - members: 251 - name: Dublin TypeScript Meetup lat: 53.33000183105469 - who: Typescripters - country: IE - visibility: public city: Dublin - timezone: Europe/Dublin - created: 1434531198000 - link: 'http://www.meetup.com/Node-Day-London/' - description: "A Node.js conference \nby the enterprise, for the enterprise.\nNodeday is a Node.js conference by the enterprise, for the enterprise. Now in its second year, this one-day industry conference brings together people from companies that have adopted or are planning to adopt Node.js, and focuses on the issues that these companies face. It gives participants a forum to discuss and share their experiences with Node.js, share advice, tips and tricks, and drive forward both the technology and the community. \nCome join us at Digitas LBi, Brick Lane, London, UK" + link: 'http://www.meetup.com/nodeday/' + name: nodeday + description: |- +

nodeday is a Node.js conference by the enterprise, for the enterprise. This one-day industry conference brings together people from companies that have adopted or are planning to adopt Node.js, and focuses on the issues that these companies face. It gives participants a forum to discuss and share their experiences with Node.js, share advice, tips and tricks, and drive forward both the technology and the community. 

+


+
+


+


lon: -6.25 - join_mode: open - organizer: - member_id: 189429713 - name: Tammy Contreraz - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/2/2/e/7/highres_247568935.jpeg' - photo_id: 247568935 - photo_link: 'http://photos1.meetupstatic.com/photos/member/2/2/e/7/member_247568935.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/2/2/e/7/thumb_247568935.jpeg' - members: 18 - name: Node Day London + group_photo: + photo_link: 'http://photos3.meetupstatic.com/photos/event/1/6/e/0/600_446105856.jpeg' lat: 53.33000183105469 - who: Members - - utc_offset: 3600000 - country: NL - visibility: public - city: Haarlem - timezone: Europe/Amsterdam - created: 1434696499000 - link: 'http://www.meetup.com/codeSmithies/' - description: 'A frontend focused workshop group where we build products using latest frontend technologies. This is a pure trainings meetup, no more lectures with slides and 100% theory. We shall delve into the code together and every session we will build something with a technology together!' - lon: 4.619999885559082 - join_mode: open - organizer: - member_id: 40488742 - name: Oz Lodriguez - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/d/f/7/2/highres_90297202.jpeg' - photo_id: 90297202 - photo_link: 'http://photos4.meetupstatic.com/photos/member/d/f/7/2/member_90297202.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/d/f/7/2/thumb_90297202.jpeg' - members: 34 - name: '{codeSmithies}' - lat: 52.38999938964844 - who: Code Smithies - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE city: Karlsruhe - timezone: Europe/Berlin - created: 1434715852000 link: 'http://www.meetup.com/KarlsruheJS/' - rating: 4.78 + name: 'KarlsruheJS – JavaScript, HTML5 and NodeJS Meetup' description: '

KarlsruheJS ist ein regelmäßiges Treffen von JavaScript-Entwicklern in Karlsruhe.
Organisiert wird die Gruppe von Evgenij Terehov und Kahlil Lechelt.

' lon: 8.399999618530273 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/1/f/0/c/highres_444247948.jpeg' - photo_id: 444247948 photo_link: 'http://photos2.meetupstatic.com/photos/event/1/f/0/c/600_444247948.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/1/f/0/c/thumb_444247948.jpeg' - join_mode: open - organizer: - member_id: 57736682 - name: Eugene Terehov - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/2/6/4/highres_247260612.jpeg' - photo_id: 247260612 - photo_link: 'http://photos1.meetupstatic.com/photos/member/2/6/4/member_247260612.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/2/6/4/thumb_247260612.jpeg' - members: 369 - name: 'KarlsruheJS – JavaScript, HTML5 and NodeJS Meetup' lat: 49 - who: JS-Developer - - utc_offset: 7200000 - country: FR - visibility: public + - country: FR city: Paris - timezone: Europe/Paris - created: 1434729526000 link: 'http://www.meetup.com/Aurelia-Paris/' - rating: 4.5 - description: >- + name: Aurelia Paris + description: |-

Aurelia + JavaScript (ES201x) + Paris = ♥

- -

Nous sommes un groupe de développeurs enthousiastes, spécialisés en - Javascript et curieux à propos du framework Aurelia.

- -

Aurelia c'est quoi ? Probablement Angular 2 en propre. Le futur, - quoi !

- -

Site web : http://aurelia.paris (pas encore prêt !) -

- +

Nous sommes un groupe de développeurs enthousiastes, spécialisés en Javascript et curieux à propos du framework Aurelia.

+

Aurelia c'est quoi ? Probablement Angular 2 en propre. Le futur, quoi !

+

Site web : http://aurelia.paris (pas encore prêt !)

Hashtag twitter : #aureliaparis

lon: 2.3399999141693115 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/d/e/0/f/highres_439076847.jpeg' - photo_id: 439076847 photo_link: 'http://photos3.meetupstatic.com/photos/event/d/e/0/f/600_439076847.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/d/e/0/f/thumb_439076847.jpeg' - join_mode: open - organizer: - member_id: 81720782 - name: Etienne Folio - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/4/6/3/4/highres_223997972.jpeg' - photo_id: 223997972 - photo_link: 'http://photos3.meetupstatic.com/photos/member/4/6/3/4/member_223997972.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/4/6/3/4/thumb_223997972.jpeg' - members: 248 - name: Aurelia Paris lat: 48.86000061035156 - who: Aurelians - - utc_offset: 7200000 - country: FR - visibility: public + - country: FR city: Paris - timezone: Europe/Paris - created: 1434992579000 link: 'http://www.meetup.com/Meetup-des-utilisateurs-de-Cozy-Cloud-en-France/' - rating: 4.64 + name: Meetup des utilisateurs de Cozy Cloud en France description: "

Venez rencontrer les développeurs de Cozy Cloud et les utilisateurs. On discute de l'évolution du produit, de ce qu'on pourrait y rajouter, des inévitables bogues qu'il faut résoudre en priorité ou des fonctionnalités pas faciles à comprendre. L'ambiance y est très détendue, la bonne humeur est de mise et on finit presque toujours par goûter à diverses boissons fermentées, sous prétexte que les problèmes rencontrés dans le logiciel libre sont presque tous solubles dans le houblon !

" lon: 2.3399999141693115 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/e/d/0/highres_443043792.jpeg' - photo_id: 443043792 photo_link: 'http://photos4.meetupstatic.com/photos/event/e/d/0/600_443043792.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/e/d/0/thumb_443043792.jpeg' - join_mode: open - organizer: - member_id: 79656882 - name: Tristan Nitot - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/1/e/c/2/highres_247267874.jpeg' - photo_id: 247267874 - photo_link: 'http://photos2.meetupstatic.com/photos/member/1/e/c/2/member_247267874.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/1/e/c/2/thumb_247267874.jpeg' - members: 372 - name: Meetup des utilisateurs de Cozy Cloud en France lat: 48.86000061035156 - who: Cozynautes - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE city: Frankfurt - timezone: Europe/Berlin - created: 1435145001000 link: 'http://www.meetup.com/Frankfurt-Google-Polymer-Webcomponents-Meetup/' - rating: 5 + name: 'Frankfurt Google Polymer & Webcomponents Meetup' description: "This is a group for those interested in the web components philosophy for the development of modern web and mobile applications. With web components you can basically create custom reusable HTML tags including styling und functionality. Discuss concepts like shadow DOM, the new declarative vs. imperative coding approach. Let's share our experience with the Google Polymer Framework." lon: 8.680000305175781 - join_mode: open - organizer: - member_id: 156469052 - name: Marko Petzold - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/b/9/2/0/highres_211367392.jpeg' - photo_id: 211367392 - photo_link: 'http://photos1.meetupstatic.com/photos/member/b/9/2/0/member_211367392.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/b/9/2/0/thumb_211367392.jpeg' - members: 67 - name: 'Frankfurt Google Polymer & Webcomponents Meetup' lat: 50.119998931884766 - who: Polymer Users - - utc_offset: 7200000 - country: NL - visibility: public + - country: NL city: Rotterdam - timezone: Europe/Amsterdam - created: 1435181908000 link: 'http://www.meetup.com/Lets-connect-now/' - description: >- + name: "Let's connect (entrepreneurs, designers and developers)" + description: |-

Hi meetup'ers! 

- -

This group is all about bringing entrepreneur/founders, - developers and designers together. Now a days there are plenty of - meetup groups. But this group is different, this group is not just for - the designers.. or the developer.. No, it's a group to bring all these - different kind of people with different kind of knowledge and - specialties together. 

- +

This group is all about bringing entrepreneur/founders, developers and designers together. Now a days there are plenty of meetup groups. But this group is different, this group is not just for the designers.. or the developer.. No, it's a group to bring all these different kind of people with different kind of knowledge and specialties together. 

This group is for: 

- -

- The guy with the fantastic idea, aka "The entrepreneur, the - founder" 

- -

- Back-end/Web app developers with knowledge of the newest - frameworks like AngularJS, NodeJS etc. 

- -

- Frontenders/designers with knowledge to design for web - / web-apps. 

- +

- The guy with the fantastic idea, aka "The entrepreneur, the founder" 

+

- Back-end/Web app developers with knowledge of the newest frameworks like AngularJS, NodeJS etc. 

+

- Frontenders/designers with knowledge to design for web / web-apps. 


-

Why this group? 

- -

I'm Remi Hammerstein and I've an idea. I'm looking for one or - more co-founders who see business in my idea and wanna help me build - a web app and be part of this startup/company.

- -

I can't be the only one who is looking for a partners/co-founders to - work with, so entrepreneurs/starters you're very welcome to join this - group! My vision is to bring people together with the right knowledge - to start and build new web-apps and companies together.

- +

I'm Remi Hammerstein and I've an idea. I'm looking for one or more co-founders who see business in my idea and wanna help me build a web app and be part of this startup/company.

+

I can't be the only one who is looking for a partners/co-founders to work with, so entrepreneurs/starters you're very welcome to join this group! My vision is to bring people together with the right knowledge to start and build new web-apps and companies together.


- -

 "Nobody have the knowledge to start or run a company all by - himself."

+

 "Nobody have the knowledge to start or run a company all by himself."

lon: 4.480000019073486 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/4/b/1/3/highres_439039219.jpeg' - photo_id: 439039219 photo_link: 'http://photos4.meetupstatic.com/photos/event/4/b/1/3/600_439039219.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/4/b/1/3/thumb_439039219.jpeg' - join_mode: open - organizer: - member_id: 188814127 - name: Remi Hammerstein - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/5/2/6/6/highres_247161094.jpeg' - photo_id: 247161094 - photo_link: 'http://photos1.meetupstatic.com/photos/member/5/2/6/6/member_247161094.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/5/2/6/6/thumb_247161094.jpeg' - members: 63 - name: "Let's connect (entrepreneurs, designers and developers)" lat: 51.93000030517578 - who: Members - - utc_offset: 3600000 - country: GB - visibility: public + - country: GB city: Dartford - timezone: Europe/London - created: 1435239469000 link: 'http://www.meetup.com/North-Kent-Web-Development-Meetup/' - rating: 5 - description: >- -

This meetup group is open to all with an interest in web development - and design to discuss tools and techniques useful to both developers - and designers. 

- -

The meetup will include at least one presentation followed by - Q&A and general discussion. Snacks and drinks will be - provided!!! 

- -

We will schedule the meetup as regular as interest and participation - allows.

- lon: 0.2800000011920929 - join_mode: open - organizer: - member_id: 108576092 - name: Andrew Dixon - photo: - photo_id: 157809842 - photo_link: 'http://photos3.meetupstatic.com/photos/member/2/6/7/2/member_157809842.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/2/6/7/2/thumb_157809842.jpeg' - members: 129 name: North Kent Web Development Meetup - state: G5 + description: |- +

This meetup group is open to all with an interest in web development and design to discuss tools and techniques useful to both developers and designers. 

+

The meetup will include at least one presentation followed by Q&A and general discussion. Snacks and drinks will be provided!!! 

+

We will schedule the meetup as regular as interest and participation allows.

+ lon: 0.2800000011920929 lat: 51.40999984741211 - who: Members - - utc_offset: 7200000 - country: DE - visibility: public + - country: ES + city: Las Palmas + link: 'http://www.meetup.com/Gran-Canaria-JavaScript-Community/' + name: Canarias JavaScript Community + description: '

Grupo para los amantes de este lenguaje de programación que quieran compartir sus experiencias, reunirse, debatir y también aprender de otros compañeros o todos juntos ha hacer un mejor JavaScript.

' + lon: -15.430000305175781 + group_photo: + photo_link: 'http://photos1.meetupstatic.com/photos/event/9/c/3/d/600_439779997.jpeg' + lat: 28.100000381469727 + - country: DE city: München - timezone: Europe/Berlin - created: 1436911523000 link: 'http://www.meetup.com/JS-Coding-Nights-Munich/' - rating: 4.86 - description: >- -

Come together to improve your JavaScript skills, learn new - technologies and meet other javascripters.

- + name: JavaScript Coding Nights Munich + description: |- +

Come together to improve your JavaScript skills, learn new technologies and meet other javascripters.


-

Meetup format:

-

• 30 minutes food, drinks and friendly banter

-

• 15 minute presentation on the topic of the day 

-

• 2h coding

-

• 15 minute wrap up of the day

-


-

You can work on:

-

• topic of the day 

-

• javascript basics 

-

• own projects 

-

• other people's projects

-
-

All experience levels are welcome.

lon: 11.579999923706055 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/a/1/4/6/highres_440081286.jpeg' - photo_id: 440081286 photo_link: 'http://photos1.meetupstatic.com/photos/event/a/1/4/6/600_440081286.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/a/1/4/6/thumb_440081286.jpeg' - join_mode: open - organizer: - member_id: 35727752 - name: Matt Beckstead - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/9/a/a/7/highres_247899591.jpeg' - photo_id: 247899591 - photo_link: 'http://photos4.meetupstatic.com/photos/member/9/a/a/7/member_247899591.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/9/a/a/7/thumb_247899591.jpeg' - members: 398 - name: JavaScript Coding Nights Munich lat: 48.13999938964844 - who: Members - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE city: Mannheim - timezone: Europe/Berlin - created: 1436951781000 link: 'http://www.meetup.com/Hackschool/' - rating: 5 - description: >- + name: Hackschool + description: |-


GERMAN - DEUTSCH

- -

Technik und Code gemeinsam erleben und verstehen.

Bei der - Hackschool steht die Atmosphäre und das freie Lernen im Vordergrund. - Dabei bietet Hackerstolz Hilfe zur Selbsthilfe. - -

Mitmachen kann Jede und Jeder; die Gruppe fokussiert sich auf Kinder - und Erwachsene ab 10 Jahren. Bitte bringt all eure Neugierde und Fragen - mit! Vorkenntnisse sind nicht erforderlich, da mit individueller - Betreuung auf die einzelnen Fähigkeiten eingegangen wird.

- -

Ein eigenes Laptop wäre von Vorteil, es gibt aber auch Geräte vor - Ort, die jeder mitverwenden kann.


ENGLISH - - ENGLISCH

- +

Technik und Code gemeinsam erleben und verstehen.

Bei der Hackschool steht die Atmosphäre und das freie Lernen im Vordergrund. Dabei bietet Hackerstolz Hilfe zur Selbsthilfe. +

Mitmachen kann Jede und Jeder; die Gruppe fokussiert sich auf Kinder und Erwachsene ab 10 Jahren. Bitte bringt all eure Neugierde und Fragen mit! Vorkenntnisse sind nicht erforderlich, da mit individueller Betreuung auf die einzelnen Fähigkeiten eingegangen wird.

+

Ein eigenes Laptop wäre von Vorteil, es gibt aber auch Geräte vor Ort, die jeder mitverwenden kann.


ENGLISH - ENGLISCH

Let's both experience and understand tech and code together.

- -

The hackschool empowers open learning with an atmosphere that helps - you help yourself and others.

- -

Everyone is invited to take part; the group is focussing on kids and - grown-ups aged 10+. Please bring all your curiosity and questions with - you! No experience required beforehand, as we offer an individual - mentor-based training for each skillset.

- -

An own Laptop would be awesome, but isn't required - we have some - available that everyone can use.

+

The hackschool empowers open learning with an atmosphere that helps you help yourself and others.

+

Everyone is invited to take part; the group is focussing on kids and grown-ups aged 10+. Please bring all your curiosity and questions with you! No experience required beforehand, as we offer an individual mentor-based training for each skillset.

+

An own Laptop would be awesome, but isn't required - we have some available that everyone can use.

lon: 8.470000267028809 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/b/a/2/c/highres_443867660.jpeg' - photo_id: 443867660 photo_link: 'http://photos2.meetupstatic.com/photos/event/b/a/2/c/600_443867660.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/b/a/2/c/thumb_443867660.jpeg' - join_mode: open - organizer: - member_id: 188707782 - name: Leonard Luthe - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/9/8/b/6/highres_248139094.jpeg' - photo_id: 248139094 - photo_link: 'http://photos1.meetupstatic.com/photos/member/9/8/b/6/member_248139094.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/9/8/b/6/thumb_248139094.jpeg' - members: 282 - name: Hackschool lat: 49.5 - who: Hackers - - utc_offset: 3600000 - country: PL - visibility: public + - country: PL city: Warsaw - timezone: Europe/Warsaw - created: 1437130817000 - link: 'http://www.meetup.com/React-js-Warsaw/' - rating: 4.67 - description: "

React.js group in Warsaw. React is UI framework build at Facebook:

\n

http://facebook.github.io/react/

" + link: 'http://www.meetup.com/React-Warsaw/' + name: React Warsaw + description: |- +

React is a fun, easy to use Javascript library built at Facebook for web and mobile. It has changed the way we think about client-side applications through concepts such as the virtual dom, one-way data flow, immutable data structures and isomorphism.

+

This is a group for anyone who has experience working with the React library or would like to learn more about it.

+

We meet once a month, generally have 2 speakers and loads of Q&A, pizzas and beer.

+

Join us if you'd like to learn more or if you have your own React experience to share that others can benefit from. If you're interested in giving a talk, write us here.

+

See you soon!

+

lon: 21.020000457763672 - join_mode: open - organizer: - member_id: 16279841 - name: Marcin Mieszek - photo: - photo_id: 49693552 - photo_link: 'http://photos2.meetupstatic.com/photos/member/3/4/f/0/member_49693552.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/4/f/0/thumb_49693552.jpeg' - members: 124 - name: React.js Warsaw + group_photo: + photo_link: 'http://photos4.meetupstatic.com/photos/event/d/0/6/3/600_445853347.jpeg' lat: 52.2599983215332 - who: Members - - utc_offset: 3600000 - country: GB - visibility: public + - country: GB city: Temple Meads - timezone: Europe/London - created: 1437212167000 link: 'http://www.meetup.com/Bristol-MEAN-School/' - rating: 4.75 + name: Bristol MEAN School description: '

Single page web apps and technologies such as MongoDB, Express, AngularJS and NodeJS are hot right now; however not many of us get to use these technologies in our day jobs. This meetup group is aimed at beginners through to pros and aims to produce an environment where we all can learn something new!

' lon: -2.5799999237060547 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/3/f/e/4/highres_439876356.jpeg' - photo_id: 439876356 photo_link: 'http://photos3.meetupstatic.com/photos/event/3/f/e/4/600_439876356.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/3/f/e/4/thumb_439876356.jpeg' - join_mode: approval - organizer: - member_id: 146221732 - name: James Kilford - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/c/8/f/c/highres_202671452.jpeg' - photo_id: 202671452 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/8/f/c/member_202671452.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/c/8/f/c/thumb_202671452.jpeg' - members: 102 - name: Bristol MEAN School - state: B7 lat: 51.45000076293945 - who: Meanies - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE city: Darmstadt - timezone: Europe/Berlin - created: 1437221914000 link: 'http://www.meetup.com/DarmstadtJS/' - rating: 4.89 + name: 'DarmstadtJS - JavaScript, AngularJS, React, Node.js Meetup' description: '

Diese Gruppe ist für begeisterte JavaScript Entwickler aber auch für interessierte Leute die sich von JavaScript begeistern lassen wollen :-)

' lon: 8.640000343322754 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/2/5/1/3/highres_439929491.jpeg' - photo_id: 439929491 photo_link: 'http://photos3.meetupstatic.com/photos/event/2/5/1/3/600_439929491.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/2/5/1/3/thumb_439929491.jpeg' - join_mode: open - organizer: - member_id: 190074609 - name: Markus Karsch - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/2/2/0/3/highres_248048707.jpeg' - photo_id: 248048707 - photo_link: 'http://photos1.meetupstatic.com/photos/member/2/2/0/3/member_248048707.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/2/2/0/3/thumb_248048707.jpeg' - members: 204 - name: 'DarmstadtJS - JavaScript, AngularJS, React, Node.js Meetup' lat: 49.869998931884766 - who: Members - - utc_offset: 7200000 - country: CZ - visibility: public + - country: CZ city: Prague - timezone: Europe/Prague - created: 1437477456000 link: 'http://www.meetup.com/ngParty/' - rating: 4.78 + name: ngParty description: '

This meetup is for all interested in modern apps development, currently we are mainly focusing on Angular framework, but we are open to all nexgen technologies.

' lon: 14.430000305175781 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/2/1/7/2/highres_447488562.jpeg' - photo_id: 447488562 photo_link: 'http://photos2.meetupstatic.com/photos/event/2/1/7/2/600_447488562.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/2/1/7/2/thumb_447488562.jpeg' - join_mode: open - organizer: - member_id: 190208188 - name: Mario Vejlupek - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/9/c/0/1/highres_248079937.jpeg' - photo_id: 248079937 - photo_link: 'http://photos2.meetupstatic.com/photos/member/9/c/0/1/member_248079937.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/9/c/0/1/thumb_248079937.jpeg' - members: 252 - name: ngParty lat: 50.08000183105469 - who: Next Generation Developers - - utc_offset: 7200000 - country: FR - visibility: public + - country: FR city: Paris - timezone: Europe/Paris - created: 1437576133000 link: 'http://www.meetup.com/Paris-Full-Stack-JavaScript-Meetup/' - rating: 5 + name: Paris Full Stack JavaScript Meetup description: '

Groupe destiné aux développeurs JavaScript, experts ou curieux, qui souhaitent échanger autour du concept Full Stack JavaScript.

' lon: 2.3399999141693115 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/a/5/1/5/highres_440082261.jpeg' - photo_id: 440082261 photo_link: 'http://photos1.meetupstatic.com/photos/event/a/5/1/5/600_440082261.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/a/5/1/5/thumb_440082261.jpeg' - join_mode: open - organizer: - member_id: 183776393 - name: Nicolas Briemant - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/a/3/4/3/highres_248141795.jpeg' - photo_id: 248141795 - photo_link: 'http://photos2.meetupstatic.com/photos/member/a/3/4/3/member_248141795.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/a/3/4/3/thumb_248141795.jpeg' - members: 321 - name: Paris Full Stack JavaScript Meetup lat: 48.86000061035156 - who: Membres - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE city: München - timezone: Europe/Berlin - created: 1438110874000 link: 'http://www.meetup.com/Munich-Fullstack-Dojo-AngularJS-Node-js/' - rating: 5 + name: Munich Full-Stack Dojo (AngularJS + Node.js) description: '

- Code Linting/Sharing coding best practices
- Dojos in small groups (solve problems & discuss solutions)
- Hackathons

' lon: 11.579999923706055 - join_mode: open - organizer: - member_id: 131457702 - name: Andreas Geissinger - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/a/e/1/2/highres_197984562.jpeg' - photo_id: 197984562 - photo_link: 'http://photos2.meetupstatic.com/photos/member/a/e/1/2/member_197984562.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/a/e/1/2/thumb_197984562.jpeg' - members: 80 - name: Munich Full-Stack Dojo (AngularJS + Node.js) lat: 48.13999938964844 - who: Mitglieder - - utc_offset: 7200000 - country: NL - visibility: public + - country: NL city: Amsterdam - timezone: Europe/Amsterdam - created: 1438341351000 link: 'http://www.meetup.com/javascript-lab-adam/' - rating: 4.44 - description: >- -

We love JavaScript and we thought it would be a great idea to put - together a place where people can talk, meet and share their knowledge - to bring their skills to the next level.
So join us and let's get - better at doing this, together.

- + name: JavaScript Lab Amsterdam + description: |- +

We love JavaScript and we thought it would be a great idea to put together a place where people can talk, meet and share their knowledge to bring their skills to the next level.
So join us and let's get better at doing this, together.


lon: 4.889999866485596 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/9/7/b/e/highres_440858846.jpeg' - photo_id: 440858846 photo_link: 'http://photos4.meetupstatic.com/photos/event/9/7/b/e/600_440858846.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/9/7/b/e/thumb_440858846.jpeg' - join_mode: open - organizer: - member_id: 153095522 - name: max czet - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/2/4/f/a/highres_245049466.jpeg' - photo_id: 245049466 - photo_link: 'http://photos1.meetupstatic.com/photos/member/2/4/f/a/member_245049466.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/2/4/f/a/thumb_245049466.jpeg' - members: 516 - name: JavaScript Lab Amsterdam lat: 52.369998931884766 - who: Javascripter - - utc_offset: 3600000 - country: GB - visibility: public + - country: GB city: London - timezone: Europe/London - created: 1439447455000 link: 'http://www.meetup.com/HackTrain-Innovating-at-200km-h/' + name: HackTrain - Innovating at 200km/h description: "HackTrain is a network of innovators and technologists that are ready to evangelise the railway industry. An initiative to bring innovation to the railway industry through a series of immersive and unique meetups, hackathons and accelerators. What makes the HackTrain hackathon unique is our thorough focus on impact in the industry. The HackTrain brings together the world's most driven, skilled, and bold developers, designers and entrepreneurs, and provides them with an immersive environment to build high-impact solutions to solve burning problems in the industry. This, together with the help of our industry partners, ignites creativity, and allows our Trainhackers to conceive, build and launch scalable startups that provide scalable long-term solutions that have the potential to grow and truly have an impact on the world. Crazy? Definitely! Impossible? Not even close! HackTrain alumni have managed to build prototypes at the hackathon that reached headlines in high profile news headlines, exited by selling to railway companies, obtained access as advisors to boards in railway companies, and continued growing their projects forward. Nothing can stop innovation when travelling at 200km/h." lon: -0.10000000149011612 - join_mode: open - organizer: - member_id: 191238076 - name: Hack Partners - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/1/2/d/1/highres_249244817.jpeg' - photo_id: 249244817 - photo_link: 'http://photos3.meetupstatic.com/photos/member/1/2/d/1/member_249244817.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/1/2/d/1/thumb_249244817.jpeg' - members: 139 - name: HackTrain - Innovating at 200km/h - state: '17' lat: 51.540000915527344 - who: Trainhackers - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE city: München - timezone: Europe/Berlin - created: 1439803798000 link: 'http://www.meetup.com/ReactJS-Meetup-Munich/' - rating: 4.71 + name: ReactJS Meetup Munich description: 'Are you new to ReactJS and want to learn more? Or feeling ready to share your experience and show us what you built? Join us for The ReactJS Meetup in Munich!' lon: 11.579999923706055 - join_mode: open - organizer: - member_id: 191430585 - name: Johann Romefort - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/1/c/4/f/highres_248887247.jpeg' - photo_id: 248887247 - photo_link: 'http://photos4.meetupstatic.com/photos/member/1/c/4/f/member_248887247.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/1/c/4/f/thumb_248887247.jpeg' - members: 374 - name: ReactJS Meetup Munich lat: 48.13999938964844 - who: Reactors - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE city: Dresden - timezone: Europe/Berlin - created: 1440410235000 link: 'http://www.meetup.com/DresdenJS-io-JavaScript-User-Group/' - rating: 4.75 + name: DresdenJS.io JavaScript User Group description: 'Wir wollen JavaScript in Dresden und Umgebung weiter voran bringen. Von Entwicklern für Entwickler wollen wir uns einmal im Monat treffen, um in gelockerter Atmosphäre mit kurzen Vorträgen interessante Neuigkeiten zu erfahren und danach noch uns austauschen. Wir sind offen für jeden, der mitmachen will! Vorträge, Ideen, Wünsche und Co. sind gern gesehen!' lon: 13.739999771118164 - join_mode: open - organizer: - member_id: 154547652 - name: Christian Ulbrich - members: 75 - name: DresdenJS.io JavaScript User Group lat: 51.04999923706055 - who: Entwickler - - utc_offset: 3600000 - country: GB - visibility: public + - country: GB city: Richmond - timezone: Europe/London - created: 1440504458000 link: 'http://www.meetup.com/West-London-JavaScript-Meetup/' - rating: 4 + name: West London JavaScript Meetup description: "

We're focusing on JavaScript both on server and client side technologies.
Please come and join us, if you are a software engineer, developer, tester who develop applications written in or used JavaScript. We also happy to welcome product managers, project managers who work with applications written in JavaScript.

" lon: -0.30000001192092896 - join_mode: open - organizer: - member_id: 6389398 - name: Géza Kiss - photo: - photo_id: 36763922 - photo_link: 'http://photos4.meetupstatic.com/photos/member/a/b/9/2/member_36763922.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/a/b/9/2/thumb_36763922.jpeg' - members: 127 - name: West London JavaScript Meetup - state: '17' lat: 51.459999084472656 - who: Members - - utc_offset: 10800000 - country: RO - visibility: public + - country: RO city: Cluj-Napoca - timezone: Europe/Bucharest - created: 1440628116000 link: 'http://www.meetup.com/Cluj-Javascripters/' - rating: 4.93 - description: >- -

If you believe that JavaScript is going to change our world, join - this this group and DO IT! :)

- -

Our site: https://cluj-javascripters.github.io/

- -

Join our Facebook group: https://www.facebook.com/groups/412304825640095/

+ name: Cluj JavaScripters + description: |- +

If you believe that JavaScript is going to change our world, join this this group and DO IT! :)

+

Our site: https://cluj-javascripters.github.io/

+

Join our Facebook group: https://www.facebook.com/groups/412304825640095/

lon: 23.59000015258789 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/1/d/5/6/highres_448087510.jpeg' - photo_id: 448087510 photo_link: 'http://photos3.meetupstatic.com/photos/event/1/d/5/6/600_448087510.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/1/d/5/6/thumb_448087510.jpeg' - join_mode: open - organizer: - member_id: 185099023 - name: Paul BRIE - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/6/4/0/7/highres_244405607.jpeg' - photo_id: 244405607 - photo_link: 'http://photos1.meetupstatic.com/photos/member/6/4/0/7/member_244405607.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/6/4/0/7/thumb_244405607.jpeg' - members: 454 - name: Cluj JavaScripters lat: 46.779998779296875 - who: 'clu[js]ers' - - utc_offset: 3600000 - country: NL - visibility: public + - country: NL city: Amsterdam - timezone: Europe/Amsterdam - created: 1440685348000 - link: 'http://www.meetup.com/Javascript-Utrecht-Amsterdam-Rotterdam-Den-Haag/' - description: 'Verwelkom de eerste en enige Nederlandse Frontend Developer Meetup. Omdat iedere Meetup in het Nederlands zal worden gehouden is deze zodoende enkel voor Nederlandse sprekers. De meerderheid (alle) van de Meetups wordt in het Engels gehouden, het werd daarom tijd om een Meetup specifiek voor de Nederlanders te organiseren. We zullen de best practices bespreken, kennis delen en in het algemeen hoe je een betere Javascript Frontend Developer kunt worden.' + link: 'http://www.meetup.com/BackendDevelopers/' + name: Backend Developer Meetup Group + description: '

After successfully creating The Frontend Developer Meetup and Angularjs Meetup its time to build up the Backend Developer community. This will eventually grow into individual Backend Developer Language groups or there will be specific Meetups for those programming languages. Lets have fun together, gro and share knowledge

' lon: 4.889999866485596 - join_mode: open - organizer: - member_id: 185185670 - name: Luke Thomas - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/1/a/1/b/highres_249186683.jpeg' - photo_id: 249186683 - photo_link: 'http://photos4.meetupstatic.com/photos/member/1/a/1/b/member_249186683.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/1/a/1/b/thumb_249186683.jpeg' - members: 121 - name: Javascript Utrecht / Amsterdam / Rotterdam / Den Haag + group_photo: + photo_link: 'http://photos4.meetupstatic.com/photos/event/4/2/2/9/600_447496937.jpeg' lat: 52.369998931884766 - who: Nederlandse Javascripters - - utc_offset: 7200000 - country: FR - visibility: public + - country: FR city: Antibes - timezone: Europe/Paris - created: 1441277431000 link: 'http://www.meetup.com/Sophia-Antipolis-Early-morning-software-discussions/' + name: Sophia Antipolis - Early morning software discussions description: "Rejoignons-nous de bonne heure à Sophia dans un petit café sympa et profitons-en pour prendre le petit déj et discuter des stacks technologiques que l'on aime utiliser au quotidien. L'idée est que chacun puisse présenter ses technos favorites (AngularJS, Node.js, Go, Docker, AWS, GKE, MongoDB, Cassandra, Hadoop, Ansible, …), en découvrir de nouvelles, et peut-être réaliser ensemble des projets les utilisant." lon: 7.119999885559082 - join_mode: approval - organizer: - member_id: 45689102 - name: Luc Juggery - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/e/3/5/highres_251163637.jpeg' - photo_id: 251163637 - photo_link: 'http://photos2.meetupstatic.com/photos/member/e/3/5/member_251163637.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/e/3/5/thumb_251163637.jpeg' - members: 37 - name: Sophia Antipolis - Early morning software discussions lat: 43.599998474121094 - who: Membres - - utc_offset: 7200000 - country: SE - visibility: public + - country: SE city: Göteborg - timezone: Europe/Stockholm - created: 1441281750000 link: 'http://www.meetup.com/ReactJS-Goteborg/' - rating: 4.57 - description: >- -

The groups focus is ReactJS, Flux, best practices and why ReactJS - brings sanity to the chaos of frontend architecture!

- + name: ReactJS Göteborg + description: |- +

The groups focus is ReactJS, Flux, best practices and why ReactJS brings sanity to the chaos of frontend architecture!

You can join our slack group here :

- -

https://reactjsgoteborg.herokuapp.com/

- +

https://reactjsgoteborg.herokuapp.com/

/Stephen

lon: 12.010000228881836 - join_mode: open - organizer: - member_id: 167813872 - name: Stephen white - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/4/e/0/9/highres_246859977.jpeg' - photo_id: 246859977 - photo_link: 'http://photos3.meetupstatic.com/photos/member/4/e/0/9/member_246859977.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/4/e/0/9/thumb_246859977.jpeg' - members: 240 - name: ReactJS Göteborg lat: 57.720001220703125 - who: neutrino - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE city: Berlin - timezone: Europe/Berlin - created: 1441304250000 link: 'http://www.meetup.com/More-Micro-Modules/' + name: More Micro Modules description: '

At MMM we build new tiny libraries that solve problems.

' lon: 13.380000114440918 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/e/7/d/1/highres_441599345.jpeg' - photo_id: 441599345 photo_link: 'http://photos3.meetupstatic.com/photos/event/e/7/d/1/600_441599345.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/e/7/d/1/thumb_441599345.jpeg' - join_mode: open - organizer: - member_id: 9235779 - name: Jan Lelis - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/5/9/d/9/highres_15263001.jpeg' - photo_id: 15263001 - photo_link: 'http://photos3.meetupstatic.com/photos/member/5/9/d/9/member_15263001.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/5/9/d/9/thumb_15263001.jpeg' - members: 73 - name: More Micro Modules lat: 52.52000045776367 - who: 'Library Authors & Learners' - - utc_offset: 7200000 - country: CH - visibility: public - city: Lugano - timezone: Europe/Zurich - created: 1443168528000 - link: 'http://www.meetup.com/Ticino-Javascript-Meetup/' - rating: 5 - description: Questo gruppo è per tutti gli interessati alla programmazione in javascript - lon: 8.9399995803833 - join_mode: open - organizer: - member_id: 189325554 - name: Fabio P. - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/a/0/8/1/highres_250001089.jpeg' - photo_id: 250001089 - photo_link: 'http://photos3.meetupstatic.com/photos/member/a/0/8/1/member_250001089.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/a/0/8/1/thumb_250001089.jpeg' - members: 63 - name: Ticino Javascript Meetup - lat: 46.0099983215332 - who: javascripters - - utc_offset: 3600000 - country: IT - visibility: public - city: Milano - timezone: Europe/Rome - created: 1443435342000 - link: 'http://www.meetup.com/Milano-Front-end-Web-Development-Meetup/' - rating: 4.66 - description: >- -

Questo è un gruppo per chiunque sia interessato allo sviluppo web - front-end. CSS, Javascript , jQuery , frameworks, performance, etc. - Incontriamoci per discuterne! This is a group for anyone interested in - front-end web development. CSS, Javascript, jQuery, Frameworks, - performances, etc. Let's meet to discuss about it! English-speaking - participants are welcome!

- -

su Twitter: @frontendmilano

+ - country: IE + city: Dublin + link: 'http://www.meetup.com/Dun-Laoghaire-node-Meetup/' + name: Dun Laoghaire Node/Angular/Meteor/React meetup + description: |- +

We are going to experiment with this meetup, We started with nodeJS and nodeschool, we are now thinking we can do more than just nodeJS, members drive what this group does so feel free to reach out and tell us what you would like to do, so far we have

+

• AngularJS

+

• ReactJS

+

• AWS Lambdas and AWS API gateway

+

• NodeJS

+

• SailsJS

+

Our guideline is that we write code or build products at the meet-up.

+ lon: -6.25 + lat: 53.33000183105469 + - country: CH + city: Lugano + link: 'http://www.meetup.com/Ticino-Javascript-Meetup/' + name: Ticino Javascript Meetup + description: Questo gruppo è per tutti gli interessati alla programmazione in javascript + lon: 8.9399995803833 + lat: 46.0099983215332 + - country: IT + city: Milano + link: 'http://www.meetup.com/milano-front-end/' + name: Milano Front End + description: |- +

Questo è un gruppo per chiunque sia interessato allo sviluppo web front-end. CSS, Javascript , jQuery , frameworks, performance, etc. Incontriamoci per discuterne! 

+

This is a group for anyone interested in front-end web development. CSS, Javascript, jQuery, Frameworks, performances, etc. Let's meet to discuss about it! English-speaking participants are welcome!

+

Join us on Slack, send us a message requesting to be added!

+

su Twitter: @milanofrontend

lon: 9.1899995803833 - join_mode: open - organizer: - member_id: 140072972 - name: Alessandro Muraro - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/2/2/0/highres_250080544.jpeg' - photo_id: 250080544 - photo_link: 'http://photos3.meetupstatic.com/photos/member/2/2/0/member_250080544.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/2/2/0/thumb_250080544.jpeg' - members: 179 - name: Milano Front-end Web Development Meetup - state: MI lat: 45.459999084472656 - who: Frontenders - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE city: Hannover - timezone: Europe/Berlin - created: 1443443103000 link: 'http://www.meetup.com/HannoverJS/' - rating: 5 - description: >- -

HannoverJS is a usergroup focused on JavaScript and related - stuff. The idea has gained great interest around lower saxonys - JavaScript folks. We meet regularly on the 4th Thursday every - month at 7pm.

- -

• Website: www.hannoverjs.de

- -

• Twitter: www.twitter.com/hannoverjs

- -

• Facebook: www.facebook.com/hannoverjs

- -

• Slack: slack.hannoverjs.de

- lon: 9.729999542236328 - join_mode: open - organizer: - member_id: 182822047 - name: Kai-Thomas Krause - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/8/d/5/3/highres_241956179.jpeg' - photo_id: 241956179 - photo_link: 'http://photos2.meetupstatic.com/photos/member/8/d/5/3/member_241956179.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/8/d/5/3/thumb_241956179.jpeg' - members: 129 name: HannoverJS + description: |- +

HannoverJS is a usergroup focused on JavaScript and related stuff. The idea has gained great interest around lower saxonys JavaScript folks. We meet regularly on the 4th Thursday every month at 7pm.

+

• Website: www.hannoverjs.de

+

• Twitter: www.twitter.com/hannoverjs

+

• Facebook: www.facebook.com/hannoverjs

+

• Slack: slack.hannoverjs.de

+ lon: 9.729999542236328 lat: 52.400001525878906 - who: JavaScripters - - utc_offset: 7200000 - country: HU - visibility: public + - country: HU city: Budapest - timezone: Europe/Budapest - created: 1443780759000 link: 'http://www.meetup.com/Web-Monday-Budapest/' - rating: 5 - description: >- + name: Web Monday Budapest + description: |-

We're bringing Web Monday to Budapest!

- -

Web Monday is an informal, non-commercial, and completely - community-driven event that aims to connect the people who are shaping - the future of the internet. Inspired by the culture of Silicon Valley, - it started out in Cologne, Germany in late 2005 in an effort to help - spread those sunny California vibes. Anyone involved in web 2.0 or - neighboring fields who is interested in learning and sharing with - others is most welcome to join. Whether you are a thinker, builder, - designer, founder or funder – Web Monday is your chance to present your - OSS, your product, your service, your startup, or your next big idea to - a growing audience of web aficionados and aficionadas.

- +

Web Monday is an informal, non-commercial, and completely community-driven event that aims to connect the people who are shaping the future of the internet. Inspired by the culture of Silicon Valley, it started out in Cologne, Germany in late 2005 in an effort to help spread those sunny California vibes. Anyone involved in web 2.0 or neighboring fields who is interested in learning and sharing with others is most welcome to join. Whether you are a thinker, builder, designer, founder or funder – Web Monday is your chance to present your OSS, your product, your service, your startup, or your next big idea to a growing audience of web aficionados and aficionadas.

(Text partly taken from webmontag.de)

lon: 19.079999923706055 - join_mode: open - organizer: - member_id: 65024262 - name: Christian - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/c/c/d/highres_250192429.jpeg' - photo_id: 250192429 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/c/c/d/member_250192429.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/c/c/d/thumb_250192429.jpeg' - members: 112 - name: Web Monday Budapest lat: 47.5099983215332 - who: Web Aficionados/as - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE city: Berlin - timezone: Europe/Berlin - created: 1444576583000 link: 'http://www.meetup.com/The-Berlin-Web-App-Builders-Meetup/' - rating: 4.93 + name: The Berlin Web App Builders Meetup description: "

Learn how to build web apps, share your experiences, discuss your challenges and network with like-minded app builders. 

\n

Free Beer & Pizza (thank you, sponsors!). Web Apps. In English. Enough Said \\o/ 

\n

If the TL;DR; is not enough for you, here is a few more info: 

\n

Who is the group for? 

\n

Berlin Web App Builders (BWAP) is a group for tech people who are working or want to work on web apps. 

\n

We have an amazing tech community in Berlin with a great diversity of backgrounds, tools and experiences.

\n

This is a chance to get together, share, learn and improve from that. If you have any interest in building web apps or if you are already working on any kind of web app, join us and let us know about it! 

\n

Where are we going to meet? 

\n

We have possible locations in mitte, Ku-damm and Prenzlauer Berg. We will always make sure to keep the location next to a train station (S-Bahn or U-Bahn). 

\n

What are we going to do? 

\n

Every evening will have one or two speakers, a small networking session (if you come alone, just let us know and we can introduce you around - only if you want :)!) and why not, we can have some coding as well. Of course, let's not forget beer and food from our sponsors. 

\n

When? 

\n

The first meetup will be in November, starting at 7.30pm. If you believe it is too late or too early, please drop us a note. If we have enough requests, we are happy to move it.

" lon: 13.380000114440918 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/3/b/b/highres_442920955.jpeg' - photo_id: 442920955 photo_link: 'http://photos4.meetupstatic.com/photos/event/3/b/b/600_442920955.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/3/b/b/thumb_442920955.jpeg' - join_mode: open - organizer: - member_id: 17577111 - name: Enrico Foschi - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/1/f/0/2/highres_250447938.jpeg' - photo_id: 250447938 - photo_link: 'http://photos3.meetupstatic.com/photos/member/1/f/0/2/member_250447938.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/1/f/0/2/thumb_250447938.jpeg' - members: 645 - name: The Berlin Web App Builders Meetup lat: 52.52000045776367 - who: Web App Builders - - utc_offset: 3600000 - country: GB - visibility: public + - country: GB city: Egham - timezone: Europe/London - created: 1444981865000 link: 'http://www.meetup.com/Egham-JavaScript-Meetup/' - rating: 5 + name: Egham JavaScript Meetup description: "This is a group for people doing serious stuff with JavaScript and NodeJS. If you are building rich applications, providing open-source contributions, looking forward to ES7, or crafting cool code, you'll find people to share your experiences with. If you are just starting out, come and meet others who have been there. This is a place to share knowledge, ask questions, learn and grumble; and an opportunity to prove that the best developers aren’t just in London. We meet monthly in Egham, Surrey for some informal talks, live coding, show-and-tell, questions and of course beer. Sign up and join us!" lon: -0.5699999928474426 - join_mode: open - organizer: - member_id: 195471003 - name: Sean Ennor - members: 76 - name: Egham JavaScript Meetup - state: N7 lat: 51.43000030517578 - who: NoderCoders - - utc_offset: 7200000 - country: FR - visibility: public + - country: FR city: Paris - timezone: Europe/Paris - created: 1444995846000 link: 'http://www.meetup.com/Paris-vert-x-Meetup/' - rating: 4.75 + name: Paris Vert.x Meetup description: '

Vert.x user community in Paris, sharing Vert.x best practices, discuss architecture problems, contribute to vert.x, launch regular meetup and spread Vert.x.

' lon: 2.3399999141693115 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/2/1/8/9/highres_443888585.jpeg' - photo_id: 443888585 photo_link: 'http://photos3.meetupstatic.com/photos/event/2/1/8/9/600_443888585.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/2/1/8/9/thumb_443888585.jpeg' - join_mode: open - organizer: - member_id: 13158549 - name: Guillaume Charhon - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/6/d/0/8/highres_250587912.jpeg' - photo_id: 250587912 - photo_link: 'http://photos1.meetupstatic.com/photos/member/6/d/0/8/member_250587912.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/6/d/0/8/thumb_250587912.jpeg' - members: 79 - name: Paris Vert.x Meetup lat: 48.86000061035156 - who: Vertexers - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE city: Berlin - timezone: Europe/Berlin - created: 1445003373000 link: 'http://www.meetup.com/Berlin-Realtime-Web-Meetup/' - rating: 5 + name: Berlin Realtime Web Meetup description: '

A group for everyone that feels the web should do more than just request-response. Let’s meet for talks and workshops to share experiences working with data-sync, websockets and pub-sub messaging, but also focus on realtime servers, databases, message buses and all the other bits and pieces necessary for building awesome realtime web applications.

' lon: 13.380000114440918 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/3/6/2/f/highres_444493871.jpeg' - photo_id: 444493871 photo_link: 'http://photos3.meetupstatic.com/photos/event/3/6/2/f/600_444493871.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/3/6/2/f/thumb_444493871.jpeg' - join_mode: open - organizer: - member_id: 193458912 - name: Wolfram Hempel - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/1/7/d/4/highres_250146100.jpeg' - photo_id: 250146100 - photo_link: 'http://photos3.meetupstatic.com/photos/member/1/7/d/4/member_250146100.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/1/7/d/4/thumb_250146100.jpeg' - members: 203 - name: Berlin Realtime Web Meetup lat: 52.52000045776367 - who: realtime enthusiasts - - utc_offset: 3600000 - country: GB - visibility: public + - country: GB city: London - timezone: Europe/London - created: 1445238221000 - link: 'http://www.meetup.com/Node-and-the-Internet-of-Things/' - description: >- -

This group will get together and go through various Node.js related - topics. 

- -

Amongst other topics, we intend to work though these workshops - - http://nodeschool.io/#workshopper-list

- -

Please get in touch if you can help out with - a venue...

+ link: 'http://www.meetup.com/NodeWorkshops/' + name: Node Workshops + description: |- +

This group will get together and go through various Node.js related topics. 

+

Amongst other topics, we intend to work though these workshops - http://nodeschool.io/#workshopper-list

+

Please get in touch if you can help out with a venue...

lon: -0.10000000149011612 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/e/0/9/8/highres_447177496.jpeg' - photo_id: 447177496 photo_link: 'http://photos3.meetupstatic.com/photos/event/e/0/9/8/600_447177496.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/e/0/9/8/thumb_447177496.jpeg' - join_mode: open - organizer: - member_id: 8507904 - name: Daryn - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/c/0/2/b/highres_253429195.jpeg' - photo_id: 253429195 - photo_link: 'http://photos3.meetupstatic.com/photos/member/c/0/2/b/member_253429195.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/c/0/2/b/thumb_253429195.jpeg' - members: 162 - name: Node and the Internet of Things - state: '17' lat: 51.52000045776367 - who: Members - - utc_offset: 7200000 - country: MT - visibility: public + - country: MT city: Mellieha - timezone: Europe/Malta - created: 1445523639000 link: 'http://www.meetup.com/nodejsmalta/' - description: >- -

A dedicated meetup for people with NodeJS skills, or an interest in - NodeJS, in Malta

- + name: NodeJS Malta + description: |- +

A dedicated meetup for people with NodeJS skills, or an interest in NodeJS, in Malta


-

On twitter: @nodejsmalta

-

And Facebook:  https://www.facebook.com/nodejsmalta

lon: 14.359999656677246 - join_mode: open - organizer: - member_id: 194416359 - name: Dave - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/4/b/d/4/highres_250759412.jpeg' - photo_id: 250759412 - photo_link: 'http://photos1.meetupstatic.com/photos/member/4/b/d/4/member_250759412.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/4/b/d/4/thumb_250759412.jpeg' - members: 45 - name: NodeJS Malta lat: 35.959999084472656 - who: Noders - - utc_offset: 7200000 - country: DE - visibility: public_limited + - country: DE city: Mannheim - timezone: Europe/Berlin - created: 1445651363000 link: 'http://www.meetup.com/fulljsma/' + name: 'Full.js Mannheim - Meteor, React & AngularJS' description: '

Explorers of Javascript with Fullstack capabilities wanted. Interested in the concept of JSEntanglement? Join our local meeting group for Isomorphic JS enthusiasts and clever web app builders. From beginner to professional, everybody welcome.

' lon: 8.470000267028809 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/3/f/5/a/highres_443356218.jpeg' - photo_id: 443356218 photo_link: 'http://photos1.meetupstatic.com/photos/event/3/f/5/a/600_443356218.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/3/f/5/a/thumb_443356218.jpeg' - join_mode: approval - organizer: - member_id: 193196406 - name: Martin Grossmann - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/7/9/7/d/highres_249991101.jpeg' - photo_id: 249991101 - photo_link: 'http://photos1.meetupstatic.com/photos/member/7/9/7/d/member_249991101.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/7/9/7/d/thumb_249991101.jpeg' - members: 21 - name: 'Full.js Mannheim - Meteor, React & AngularJS' lat: 49.5 - who: Astronauts - - utc_offset: 10800000 - country: RO - visibility: public + - country: RO city: Timisoara - timezone: Europe/Bucharest - created: 1445947452000 link: 'http://www.meetup.com/Node-js-Timisoara/' - rating: 4.75 + name: Node.js Timisoara description: "

An open community for Node.js passionates. Let's share our experience.

" lon: 21.229999542236328 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/a/e/6/9/highres_443564649.jpeg' - photo_id: 443564649 photo_link: 'http://photos4.meetupstatic.com/photos/event/a/e/6/9/600_443564649.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/a/e/6/9/thumb_443564649.jpeg' - join_mode: open - organizer: - member_id: 10801251 - name: Mihai Dima - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/a/f/b/a/highres_251864986.jpeg' - photo_id: 251864986 - photo_link: 'http://photos1.meetupstatic.com/photos/member/a/f/b/a/member_251864986.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/a/f/b/a/thumb_251864986.jpeg' - members: 105 - name: Node.js Timisoara lat: 45.7599983215332 - who: noders - - utc_offset: 7200000 - country: DK - visibility: public + - country: DK city: Copenhagen - timezone: Europe/Copenhagen - created: 1445952093000 link: 'http://www.meetup.com/make-my-website/' - rating: 5 - description: >- -

Anyone who wants a website soon discovers that the many different - options can be confusing. This meetup will clear things up - by covering the different tools and techniques to get yourself online. - Things we will cover include:

- + name: How to Make a Website + description: |- +

Anyone who wants a website soon discovers that the many different options can be confusing. This meetup will clear things up by covering the different tools and techniques to get yourself online. Things we will cover include:


-

- How to get a domain name such as MyWebsite.com

-

- Using HTML and CSS to build a website

-

- Building websites with Javascript

- -

- Using tools such as Wix, Weebly, SimpleSite, One.com, Adobe Muse, - Weld.io, and others to build a site

- -

- Building interactive websites with Meteor.js, Angular, and - Node.js

- +

- Using tools such as Wix, Weebly, SimpleSite, One.com, Adobe Muse, Weld.io, and others to build a site

+

- Building interactive websites with Meteor.js, Angular, and Node.js

- Building interactive websites with Java

-


- -

If you come to the location but you can't find us then call 3141 - 0514

+

If you come to the location but you can't find us then call 3141 0514

lon: 12.569999694824219 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/2/4/7/highres_444300583.jpeg' - photo_id: 444300583 photo_link: 'http://photos3.meetupstatic.com/photos/event/2/4/7/600_444300583.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/2/4/7/thumb_444300583.jpeg' - join_mode: open - organizer: - member_id: 183048005 - name: Soumen Chatterjee - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/a/8/9/8/highres_244483160.jpeg' - photo_id: 244483160 - photo_link: 'http://photos4.meetupstatic.com/photos/member/a/8/9/8/member_244483160.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/a/8/9/8/thumb_244483160.jpeg' - members: 274 - name: How to Make a Website lat: 55.68000030517578 - who: Website Builders - - utc_offset: 7200000 - country: PL - visibility: public + - country: PL city: Katowice - timezone: Europe/Warsaw - created: 1446032780000 link: 'http://www.meetup.com/ReactJS-Katowice/' + name: ReactJS Katowice description: '

ReactJS + ecosystem community based in Katowice. React is a JavaScript library for creating user interfaces by Facebook and Instagram.

' lon: 19.020000457763672 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/a/e/d/7/highres_443564759.jpeg' - photo_id: 443564759 photo_link: 'http://photos4.meetupstatic.com/photos/event/a/e/d/7/600_443564759.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/a/e/d/7/thumb_443564759.jpeg' - join_mode: approval - organizer: - member_id: 146794042 - name: Karol Górecki - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/9/f/9/8/highres_246040856.jpeg' - photo_id: 246040856 - photo_link: 'http://photos1.meetupstatic.com/photos/member/9/f/9/8/member_246040856.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/9/f/9/8/thumb_246040856.jpeg' - members: 40 - name: ReactJS Katowice lat: 50.2599983215332 - who: Reactors - - utc_offset: 3600000 - country: GB - visibility: public + - country: GB city: Milton Keynes - timezone: Europe/London - created: 1446117576000 link: 'http://www.meetup.com/mkjscript/' - rating: 4.75 - description: >- -

Oxford has a JavaScript meetup, London does, I thought MK needed - one. I don't have any firm plans as to what the meetup should be. - Initially I think that it would be good to just get some interested - people together and meet up somewhere and discuss what people are - interested in, what's new and what's exciting. When we build up a bit - of momentum, we can try organise a bit more formally and get people to - give talks and give people a platform to speak if they'd like. If - anyone has other ideas they think would be good, please get in touch, - it'd be great to get this meetup going. Hope to see some of you soon! - (Sorry about the extra full stop at the end of the group name. It had - to be six characters...)

- + name: MK.js. + description: |- +

Oxford has a JavaScript meetup, London does, I thought MK needed one. I don't have any firm plans as to what the meetup should be. Initially I think that it would be good to just get some interested people together and meet up somewhere and discuss what people are interested in, what's new and what's exciting. When we build up a bit of momentum, we can try organise a bit more formally and get people to give talks and give people a platform to speak if they'd like. If anyone has other ideas they think would be good, please get in touch, it'd be great to get this meetup going. Hope to see some of you soon! (Sorry about the extra full stop at the end of the group name. It had to be six characters...)


- -

We now have a github where you can submit talks and give feedback: - www.github.com/mkjs

- -

We're aiming for talks of around 20 minutes per slot, with up to - 3 slots at an event. We're also going to have some time for shorter - "Lightning Talks" of about 5 minutes each, so feel free to submit - a shorter talk if you'd like.

- -

For anyone who uses slack, we now have our very own channel, sign up - here: https://mkjs.herokuapp.com/

+

We now have a github where you can submit talks and give feedback: www.github.com/mkjs

+

We're aiming for talks of around 20 minutes per slot, with up to 3 slots at an event. We're also going to have some time for shorter "Lightning Talks" of about 5 minutes each, so feel free to submit a shorter talk if you'd like.

+

For anyone who uses slack, we now have our very own channel, sign up here: https://mkjs.herokuapp.com/

lon: -0.75 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/6/f/8/6/highres_444508550.jpeg' - photo_id: 444508550 photo_link: 'http://photos3.meetupstatic.com/photos/event/6/f/8/6/600_444508550.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/6/f/8/6/thumb_444508550.jpeg' - join_mode: open - organizer: - member_id: 182302932 - name: James Coward - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/8/a/c/2/highres_241115522.jpeg' - photo_id: 241115522 - photo_link: 'http://photos1.meetupstatic.com/photos/member/8/a/c/2/member_241115522.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/8/a/c/2/thumb_241115522.jpeg' - members: 142 - name: MK.js. - state: B9 lat: 52.02000045776367 - who: Members - - utc_offset: 7200000 - country: BE - visibility: public + - country: BE city: Brussels - timezone: Europe/Brussels - created: 1446212321000 link: 'http://www.meetup.com/jsbe-io/' - description: >- + name: jsbe.io + description: |-

New Belgium Front-end user group.

- -

When looking at the current landscape there are a lot of awesome - Frontend user groups already. However, they are either very localized - (Brussels, Antwerp) or very specialized (Angular, Ember, NodeJs).

- -

Jsbe.io aims to setup a user group where all sorts of frontend - topics will be discussed.
We foresee to hold meetups at various - locations all over the country. 

- -

Who is welcome? 
Well - everyone! 

- -

Still looking for steering committee members, speakers and - locations!

- +

When looking at the current landscape there are a lot of awesome Frontend user groups already. However, they are either very localized (Brussels, Antwerp) or very specialized (Angular, Ember, NodeJs).

+

Jsbe.io aims to setup a user group where all sorts of frontend topics will be discussed.
We foresee to hold meetups at various locations all over the country. 

+

Who is welcome? 
Well everyone! 

+

Still looking for steering committee members, speakers and locations!

Contact: 

- -

jan.jsbe@gmail.com -
dennis.jsbe@gmail.com

- -

Find us on github: 
https://github.com/jsbe -

+

jan.jsbe@gmail.com
dennis.jsbe@gmail.com

+

Find us on github: 
https://github.com/jsbe

lon: 4.329999923706055 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/8/9/8/9/highres_443615209.jpeg' - photo_id: 443615209 photo_link: 'http://photos4.meetupstatic.com/photos/event/8/9/8/9/600_443615209.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/8/9/8/9/thumb_443615209.jpeg' - join_mode: open - organizer: - member_id: 194855696 - name: Dennis Jaamann - members: 227 - name: jsbe.io lat: 50.83000183105469 - who: Jedis - - utc_offset: 7200000 - country: IT - visibility: public + - country: IT city: Roma - timezone: Europe/Rome - created: 1446548615000 link: 'http://www.meetup.com/RomaJS/' - rating: 4.78 - description: >- -

This is a JavaScript User Group based in the city of Roma, - Italia.

- -

Follow us on Facebbok!
And - on Twitter!
This - is our Youtube.

+ name: RomaJS + description: |- +

This is a JavaScript User Group based in the city of Roma, Italia.

+

Follow us on Facebbok!
And on Twitter!
This is our Youtube.

lon: 12.479999542236328 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/e/5/b/6/highres_443818806.jpeg' - photo_id: 443818806 photo_link: 'http://photos2.meetupstatic.com/photos/event/e/5/b/6/600_443818806.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/e/5/b/6/thumb_443818806.jpeg' - join_mode: open - organizer: - member_id: 77328052 - name: Matteo Manchi - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/a/2/d/5/highres_251081685.jpeg' - photo_id: 251081685 - photo_link: 'http://photos4.meetupstatic.com/photos/member/a/2/d/5/member_251081685.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/a/2/d/5/thumb_251081685.jpeg' - members: 198 - name: RomaJS - state: RM lat: 41.900001525878906 - who: javascripters - - utc_offset: 10800000 - country: FI - visibility: public + - country: FI city: Helsinki - timezone: Europe/Helsinki - created: 1447058437000 link: 'http://www.meetup.com/Futurice-WWWeeklies/' - rating: 4.75 + name: Futurice WWWeeklies description: '

Every week on Friday, Futurice frontend and backend developers meet to share latest web development news, show some new tools, interesting workflows, or show their code to their peers. This has been traditional an internal meetup only for Futurice, but we are now gladly welcoming some guests. Come and be one of our guests. ;)

If you work at Futurice, please do not RSVP to this event.

' lon: 24.940000534057617 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/6/8/d/highres_444241677.jpeg' - photo_id: 444241677 photo_link: 'http://photos4.meetupstatic.com/photos/event/6/8/d/600_444241677.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/6/8/d/thumb_444241677.jpeg' - join_mode: open - organizer: - member_id: 55319322 - name: André Medeiros - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/5/c/d/a/highres_251243770.jpeg' - photo_id: 251243770 - photo_link: 'http://photos4.meetupstatic.com/photos/member/5/c/d/a/member_251243770.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/5/c/d/a/thumb_251243770.jpeg' - members: 192 - name: Futurice WWWeeklies lat: 60.16999816894531 - who: Developers - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE + city: Köln + link: 'http://www.meetup.com/Cologne-js/' + name: Cologne.js + description: 'Cologne’s JavaScript user group. We meet bi-monthly on the second Tuesday. Our goal is to have an awesome, inclusive and safe community meetup where people meet, hang out together, chat, listen to talks, exchange ideas and make new friends. Any harmful or discriminating behaviour will not be tolerated and results in the offending person being expelled from the meetup.' + lon: 6.96999979019165 + group_photo: + photo_link: 'http://photos1.meetupstatic.com/photos/event/8/4/1/6/600_444513814.jpeg' + lat: 50.95000076293945 + - country: DE city: Ludwigsburg - timezone: Europe/Berlin - created: 1447338902000 link: 'http://www.meetup.com/lubunode/' - description: >- -

Let's discuss all things node! Whether it be ES6 features for - JavaScript, npm packages, continous integration or anything else. The - complete node ecosystem is ready to be explored :)

- -

We'll start off with monthly meetups at selected pubs in - Ludwigsburg until we get a decent group of regulars to organize bigger - events with dedicated locations and speakers. Everyone interested in - programming is welcome to join us!

- lon: 9.1899995803833 - join_mode: approval - organizer: - member_id: 191638517 - name: Andreas Offenhaeuser - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/5/f/0/8/highres_249024328.jpeg' - photo_id: 249024328 - photo_link: 'http://photos3.meetupstatic.com/photos/member/5/f/0/8/member_249024328.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/5/f/0/8/thumb_249024328.jpeg' - members: 46 name: Ludwigsburg Node.js Meetup + description: |- +

Let's discuss all things node! Whether it be ES6 features for JavaScript, npm packages, continous integration or anything else. The complete node ecosystem is ready to be explored :)

+

We'll start off with monthly meetups at selected pubs in Ludwigsburg until we get a decent group of regulars to organize bigger events with dedicated locations and speakers. Everyone interested in programming is welcome to join us!

+ lon: 9.1899995803833 lat: 48.900001525878906 - who: nodes - - utc_offset: 7200000 - country: HR - visibility: public + - country: HR city: Split - timezone: Europe/Zagreb - created: 1447766836000 link: 'http://www.meetup.com/Level-Up-Development/' - rating: 5 + name: Level Up Development description: '

Interested in discovering the newest technology trends? Excited about meeting people that share your passion? Join a group of prospective international developers at the monthly Level Up Development meetup. Learn more about the latest web technologies and how your community is using them. This meetup is open to anyone that has a curiosity and drive to explore what is offered, from experienced developers to students. Everybody knows that nothing works well on an empty stomach so, beside expanding your cognitions about technology and meeting new people, join us for free beer and pizza!

' lon: 16.450000762939453 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/b/5/b/6/highres_447646518.jpeg' - photo_id: 447646518 photo_link: 'http://photos4.meetupstatic.com/photos/event/b/5/b/6/600_447646518.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/b/5/b/6/thumb_447646518.jpeg' - join_mode: open - organizer: - member_id: 13030022 - name: Christopher Swenor - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/d/7/6/6/highres_197035142.jpeg' - photo_id: 197035142 - photo_link: 'http://photos1.meetupstatic.com/photos/member/d/7/6/6/member_197035142.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/d/7/6/6/thumb_197035142.jpeg' - members: 133 - name: Level Up Development lat: 43.5099983215332 - who: LUDs - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE city: Berlin - timezone: Europe/Berlin - created: 1447769192000 link: 'http://www.meetup.com/fullstack-berlin/' - rating: 4.93 - description: >- -

This group aims to explore the wonderful world of full-stack - JavaScript. There are no limits on what libraries or technologies apart - from heavy usage of JavaScript on the front and backend. Anyone wishing - to learn or show off some full-stack JS projects is more than welcome. - It's our time, ninjas.

- -

This is a bi-monthly meet-up extension of our already popular - FullstackJS London meetup (http://www.meetup.com/Fullstack-js-London/)

+ name: Fullstack.JS Berlin + description: |- +

This group aims to explore the wonderful world of full-stack JavaScript. There are no limits on what libraries or technologies apart from heavy usage of JavaScript on the front and backend. Anyone wishing to learn or show off some full-stack JS projects is more than welcome. It's our time, ninjas.

+

This is a bi-monthly meet-up extension of our already popular FullstackJS London meetup (http://www.meetup.com/Fullstack-js-London/)

lon: 13.380000114440918 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/a/4/7/6/highres_444342102.jpeg' - photo_id: 444342102 photo_link: 'http://photos2.meetupstatic.com/photos/event/a/4/7/6/600_444342102.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/a/4/7/6/thumb_444342102.jpeg' - join_mode: open - organizer: - member_id: 10540206 - name: Gregory Benr - photo: - photo_id: 154824872 - photo_link: 'http://photos4.meetupstatic.com/photos/member/6/1/2/8/member_154824872.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/6/1/2/8/thumb_154824872.jpeg' - members: 320 - name: Fullstack.JS Berlin lat: 52.52000045776367 - who: Fullstackers - - utc_offset: 7200000 - country: DE - visibility: public + - country: DE city: Berlin - timezone: Europe/Berlin - created: 1447854807000 link: 'http://www.meetup.com/Berlin-Cloud/' - rating: 5 - description: >- -

Diese Gruppe ist genau das richtige für alle cloud-begeisterten - Technologieenthusiasten in und um Berlin.

- -

Einmal im Monat sprechen wir über aktuelle Themen und neue - Technologien in der Cloud. Dafür haben wir regelmäßig wechselnde - Experten zu Gast, welche uns mit ihrem Fachwissen helfen noch mehr aus - der Cloud heraus zu holen.

- -

Du willst wissen, was die Cloud ist, - oder welche Möglichkeiten sie dir bietet? - Dann komm zu - unseren Meetups und erfahre mehr!

- -

Du arbeitest täglich mit der Cloud und möchtest dich mit anderen - Profis austauschen? - Dann bist du bei uns genau richtig!

- -

Oder bist du selbst Cloud-Experte? - Dann melde dich bei uns und - teile deine Erfahrungen und Best Practices mit der Gruppe!

- + name: Berlin Cloud Computing + description: |- +

Diese Gruppe ist genau das richtige für alle cloud-begeisterten Technologieenthusiasten in und um Berlin.

+

Einmal im Monat sprechen wir über aktuelle Themen und neue Technologien in der Cloud. Dafür haben wir regelmäßig wechselnde Experten zu Gast, welche uns mit ihrem Fachwissen helfen noch mehr aus der Cloud heraus zu holen.

+

Du willst wissen, was die Cloud ist, oder welche Möglichkeiten sie dir bietet? - Dann komm zu unseren Meetups und erfahre mehr!

+

Du arbeitest täglich mit der Cloud und möchtest dich mit anderen Profis austauschen? - Dann bist du bei uns genau richtig!

+

Oder bist du selbst Cloud-Experte? - Dann melde dich bei uns und teile deine Erfahrungen und Best Practices mit der Gruppe!

Wir freuen uns auf dich!

-


lon: 13.380000114440918 - join_mode: open - organizer: - member_id: 85350302 - name: Paul Reichelt - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/8/8/8/5/highres_251554949.jpeg' - photo_id: 251554949 - photo_link: 'http://photos3.meetupstatic.com/photos/member/8/8/8/5/member_251554949.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/8/8/8/5/thumb_251554949.jpeg' - members: 82 - name: Berlin Cloud Computing lat: 52.52000045776367 - who: Cloudies - - utc_offset: 10800000 - country: GR - visibility: public + - country: GR city: Athens - timezone: Europe/Athens - created: 1447940183000 link: 'http://www.meetup.com/nodejsathens/' - rating: 4.81 + name: NodeJS Athens Meetup description: '

This meetup is focused on spreading knowledge and best practices for the use of Node.js. Topics of discussion include open source projects, architectures, testing, code management, the future of Node.js and emerging trends.

' lon: 23.729999542236328 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/5/3/f/7/highres_444321495.jpeg' - photo_id: 444321495 photo_link: 'http://photos1.meetupstatic.com/photos/event/5/3/f/7/600_444321495.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/5/3/f/7/thumb_444321495.jpeg' - join_mode: open - organizer: - member_id: 195743482 - name: Avocarrot - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/9/c/2/7/highres_251499975.jpeg' - photo_id: 251499975 - photo_link: 'http://photos4.meetupstatic.com/photos/member/9/c/2/7/member_251499975.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/9/c/2/7/thumb_251499975.jpeg' - members: 375 - name: NodeJS Athens Meetup lat: 37.97999954223633 - who: JS Hackers - - utc_offset: 7200000 - country: 'NO' - visibility: public + - country: ES + city: Las Palmas + link: 'http://www.meetup.com/lpamean/' + name: 'LPA MEAN (MongoDB, Express, AngularJS, Node.js) & Phonegap' + description: |- +

Aprende, participa y asiste a eventos relacionados con MEAN Framework: MongoDB, ExpressJS, AngularJS y NodeJS. Además Phonegap y desarrollo móvil.

+

=== NodeJS ===

+

Javascript en el lado del servidor. Aprende a crear aplicaciones en tiempo real con Socket.io. Crea juegos multijuador y chats. Backends Flexibles en 5 minutos. Descubre la tecnología mejor pagada de Silicon Valley. === AngularJS ===

+

El mejor Framework JavaScript para desarrollar aplicaciones Móviles y Web. Desarrollado por Google. 

+

=== MongoDB ===

+

La mejor Base de Datos NoSQL por excelencia. Con Mongo veremos como construir aplicaciones y backends flexibles, para pivotar las funcionalidades de nuestra aplicación adaptándolas a nuestros clientes. Además veremos cómo utilizar Mongo para analizar BIGDATA.

+

=== PhoneGap === 

+

PhoneGap o mejor dicho Cordova nos permite empaquetar código Web en aplicaciones nativas para iOS, Android, WindowsPhone, FirefoxOS, etc. Discutiremos qué frameworks y cómo desarrollar aplicaciones móviles híbridas de aspecto y performance nativo.

+

=== En general === 

+

Las últimas tecnologías para el desarrollo Web y Móvil, siguiendo las filosofías Lean Startup, Mobile First, NoSQL, NoBackend, Agile Development, Gamification.

+

Si eres Entrepreneur / Emprendeodor, entonces necesitas conocer los mejores entornos de desarrollo, y estar al día. Aprende, Crece, Comparte

+

Recursos: 
MongoDB (Mongoose)
mean.io 
AngularJS 
Node.js (Express )

+

Build a Real-time Polls Application with Node.js, Express, AngularJS and MongoDB (IBM Tutorial)

+ lon: -15.430000305175781 + group_photo: + photo_link: 'http://photos1.meetupstatic.com/photos/event/6/7/3/6/600_444326422.jpeg' + lat: 28.100000381469727 + - country: ES + city: La Rioja + link: 'http://www.meetup.com/Angular-Hispano/' + name: Angular Hispano + description: '

Tú comunidad AngularJS en castellano. Tanto si has oído hablar de AngularJS pero aún no has tenido tiempo de probarlo, como si eres un usuario avanzado, este es el sitio para seguir aprendiendo.

' + lon: -2.440000057220459 + group_photo: + photo_link: 'http://photos4.meetupstatic.com/photos/event/6/6/d/e/600_444326334.jpeg' + lat: 42.470001220703125 + - country: 'NO' city: Oslo - timezone: Europe/Oslo - created: 1448267917000 link: 'http://www.meetup.com/ReactJS-Oslo-Meetup/' - rating: 4.89 - description: >- -

ReactJs is crazy easy to get started and fun once you get going. It - is a library developed by Facebook!

- -

Join us if you'd like to learn more or if you have your own - ReactJs experience to share that others can benefit from.

- -

We care about functional programming, bleeding-edge UIs, new - ways of thinking about modular UI implementations on web and - mobile!

- + name: ReactJS Oslo Meetup + description: |- +

ReactJs is crazy easy to get started and fun once you get going. It is a library developed by Facebook!

+

Join us if you'd like to learn more or if you have your own ReactJs experience to share that others can benefit from.

+

We care about functional programming, bleeding-edge UIs, new ways of thinking about modular UI implementations on web and mobile!


-

Read more about React and React Native:

- -

More info on - ReactJS

- -

More info on - React Native

- +

More info on ReactJS

+

More info on React Native


-

Join us :)

lon: 10.75 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/2/1/9/4/highres_444488596.jpeg' - photo_id: 444488596 photo_link: 'http://photos2.meetupstatic.com/photos/event/2/1/9/4/600_444488596.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/2/1/9/4/thumb_444488596.jpeg' - join_mode: open - organizer: - member_id: 182603216 - name: Geir Wiksén - members: 369 - name: ReactJS Oslo Meetup lat: 59.90999984741211 - who: Reactors + - country: ES + city: Madrid + link: 'http://www.meetup.com/Tecnologias-para-la-Transformacion-Digital/' + name: Tecnologías para la Transformación Digital + description: 'El grupo de usuarios de Tecnologías para la Transformación Digital pretende ser un punto de encuentro e intercambio de ideas acerca de tecnologías y metodologías que ayudan a los equipos IT a enfrentarse a los retos de la transformación digital, es decir, a desarrollar productos digitales con más foco en el usuario, más flexibilidad, mejor time to market, más escalabilidad, más disponibilidad y menos coste. Hablaremos por tanto de arquitecturas avanzadas con bajo acoplamiento, infraestructuras elásticas con escalado horizontal, tolerancia a fallos a nivel software, modelos de almacenamiento NoSQL, y de mejoras en el ciclo de vida del desarrollo software vía automatización de pruebas y continuous delivery.' + lon: -3.7100000381469727 + group_photo: + photo_link: 'http://photos1.meetupstatic.com/photos/event/a/0/f/b/600_447641211.jpeg' + lat: 40.41999816894531 + - country: ES + city: Barcelona + link: 'http://www.meetup.com/React-Barcelona/' + name: React Barcelona + description: |- +

React Barcelona nace con la intención de agrupar la comunidad de desarrolladores de React en Barcelona, organizando eventos del tipo Meetup y Workshops con la filosofía open source: libre y gratuito para todo el mundo. 

+

Próximamente en react.barcelona

+ lon: 2.1700000762939453 + lat: 41.400001525878906 - country: PT - visibility: public city: Lisbon - timezone: Europe/Lisbon - created: 1448481409000 link: 'http://www.meetup.com/por-uma-causa/' - description: >- - Tens ideias para projetos sem fins lucrativos que gostarias de ver - concretizados? - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + name: '' + description: |- +

Tens ideias para projetos sem fins lucrativos que gostarias de ver concretizados?

+

Queres aprender novas tecnologias e ao mesmo tempo contribuir para melhorar a comunidade?

+

Estas meetups têm como objectivo melhorar a qualidade de vida de uma comunidade fazendo uso de meios tecnológicos, nomeadamente através da programação de aplicações informáticas.

+ lon: -9.140000343322754 + lat: 38.720001220703125 + - country: FR + city: Pamiers + link: 'http://www.meetup.com/Meetup-JavaScript-NodeJS-Pamiers/' + name: Meetup JavaScript/NodeJS Pamiers + description: 'Parlons de développement, nouvelles techno, javascript, nos projets open-source ;)' + lon: 1.6200000047683716 + lat: 43.119998931884766 + - country: ES + city: Barcelona + link: 'http://www.meetup.com/AulaW3/' + name: AulaW3 + description: |- +

Un grupo para ponernos al día con talleres, seminarios y charlas gratuitas en Barcelona para descubrir las últimas tendencias en desarrollo web y mobile.

+

Únete a nosotros, comparte tus conocimientos y encuentra otros en nuestra comunidad!

+ lon: 2.1700000762939453 + group_photo: + photo_link: 'http://photos3.meetupstatic.com/photos/event/4/a/b/5/600_445639125.jpeg' + lat: 41.400001525878906 + - country: NL + city: Den Haag + link: 'http://www.meetup.com/Part-up-Hackathon/' + name: Part-up Hackathons and Developer meetups + description: |- +

Part-up is a platform for matching people to temporary teams. We will help you find and build the best team for your project, startup, community or organization. Organizations can get their own tribe on part-up.com to become a decentralized collaborative organizations (DCO) and allow for bottom-up collaboration within, on the edge or outside of the current organizational boundaries.

+

Part-up can be used by everyone, is developed by anyone and is going to be owned by the community that builds the platform and its use. We believe in building Part-up as a decentralized collaborative organization and therefore opensourced the Part-up codebase and Part-up development process. 

+

So, are you a coder, designer, or creative, …? Interested in Part-up, wanting to learn more about open source development and crowd(re)sourced projects? Then you don’t want to miss the hackathons and Developer meetups we organize!

+

Great to have you in the community. 

+

Cheers, Ralph (founder and product manager)

+ lon: 4.28000020980835 + group_photo: + photo_link: 'http://photos2.meetupstatic.com/photos/event/b/8/4/f/600_445667183.jpeg' + lat: 52.08000183105469 + - country: AT + city: Vienna + link: 'http://www.meetup.com/Commit-Vienna-Hackathons/' + name: Commit Vienna Hackathons + description: 'We are passionate about Open-Source Software and love to code. We organize and host hackathons and hackergartens on a regularly basis, to commit to Open-Source, code for competitions and enjoy hacking together.' + lon: 16.3700008392334 + lat: 48.220001220703125 + - country: DE + city: Karlsruhe + link: 'http://www.meetup.com/MEAN-Stack-Karlsruhe/' + name: MEAN Stack Karlsruhe + description: |- + Verwendest du den MEAN Stack oder möchtest du ihn verwenden? Link: http://mean.io/#!/ - - - - - - - - - - - - - - - - - - - - - - Queres aprender novas tecnologias e ao mesmo tempo contribuir para - melhorar a comunidade? - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Estas meetups têm como objectivo melhorar a qualidade de vida de uma - comunidade fazendo uso de meios tecnológicos, nomeadamente através da - programação de aplicações informáticas. - lon: -9.140000343322754 - join_mode: open - organizer: - member_id: 28030202 - name: Vitor fernandes - photo: - photo_id: 46808262 - photo_link: 'http://photos2.meetupstatic.com/photos/member/2/0/4/6/member_46808262.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/2/0/4/6/thumb_46808262.jpeg' - members: 1 - name: '' - lat: 38.720001220703125 - who: comunitários - - utc_offset: 7200000 - country: DE - visibility: public - city: Köln - timezone: Europe/Berlin - created: 1447159875000 - link: 'http://www.meetup.com/Cologne-js/' - description: 'Cologne’s JavaScript user group. We meet bi-monthly on the second Tuesday. Our goal is to have an awesome, inclusive and safe community meetup where people meet, hang out together, chat, listen to talks, exchange ideas and make new friends. Any harmful or discriminating behaviour will not be tolerated and results in the offending person being expelled from the meetup.' - lon: 6.96999979019165 + MEAN steht für Mongo-ExpressJS-AngularJS-NodeJS + lon: 8.399999618530273 + lat: 49 + - country: IE + city: Dublin + link: 'http://www.meetup.com/Dublin-Coder-Forge/' + name: Dublin - Coder Forge + description: 'A place to learn how to forge out code, to smyth out patterns and designs. Complete beginners welcome, bring your own laptop.' + lon: -6.25 + lat: 53.33000183105469 + - country: PT + city: Abrantes + link: 'http://www.meetup.com/tagusjs/' + name: TagusJS + description: '

Vem conhecer outros utilizadores, entusiastas ou interessados em Javascript na zona centro de Portugal.

' + lon: -8.1899995803833 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/8/4/1/6/highres_444513814.jpeg' - photo_id: 444513814 - photo_link: 'http://photos1.meetupstatic.com/photos/event/8/4/1/6/600_444513814.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/8/4/1/6/thumb_444513814.jpeg' - join_mode: open - organizer: - member_id: 177419652 - name: Sebastian Tilch - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/6/9/2/a/highres_234266922.jpeg' - photo_id: 234266922 - photo_link: 'http://photos2.meetupstatic.com/photos/member/6/9/2/a/member_234266922.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/6/9/2/a/thumb_234266922.jpeg' - members: 162 - name: Cologne.js - lat: 50.95000076293945 - who: JavaScripters - - utc_offset: 3600000 - country: PT - visibility: public - city: Lisbon - timezone: Europe/Lisbon - created: 1448481409000 - link: 'http://www.meetup.com/por-uma-causa/' - rating: 3.67 - description: >- -

Tens ideias para projetos sem fins lucrativos que gostarias de ver - concretizados?

- -

Queres aprender novas tecnologias e ao mesmo tempo contribuir para - melhorar a comunidade?

- -

Estas meetups têm como objectivo melhorar a qualidade de vida de uma - comunidade fazendo uso de meios tecnológicos, nomeadamente através da - programação de aplicações informáticas.

- lon: -9.140000343322754 - join_mode: open - organizer: - member_id: 28030202 - name: Vitor fernandes - photo: - photo_id: 46808262 - photo_link: 'http://photos2.meetupstatic.com/photos/member/2/0/4/6/member_46808262.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/2/0/4/6/thumb_46808262.jpeg' - members: 91 - name: '' - lat: 38.720001220703125 - who: membros + photo_link: 'http://photos1.meetupstatic.com/photos/event/d/f/0/4/600_446277092.jpeg' + lat: 39.470001220703125 + - country: UA + city: Chernihiv + link: 'http://www.meetup.com/chernihivjs/' + name: Chernihiv JavaScript Meetup Group + description: '

Meetup group for JavaScript professionals to discuss technology, share experience and find solutions.

' + lon: 31.290000915527344 + group_photo: + photo_link: 'http://photos4.meetupstatic.com/photos/event/5/c/1/1/600_445883569.jpeg' + lat: 51.5 - country: GB - visibility: public city: London - timezone: Europe/London - created: 1449324310000 - link: 'http://www.meetup.com/iDEAHack-Duke-of-York/' - description: >- -

iDEAHack - Duke of York

- -


iDEA Hack is the digital equivalent of the DoE award, the - Hackthon aims to reach out to the community to create the first - 5 badges for the bronze award. During the event we will be designing - online quizzes in your chosen digital area and successful candidates - will present their work at St James Palace and meet the Duke Of - York. 

- -

We are looking for 50 great adult digital creatives - we - need:

- -

• Digital Makers

- -

• CreativesHackers

- -

• Digital Engineers

- -

• Business Development Specialists

- -

• Developers

- -

• Full Stack Developers

- -

• UI/UX Developers

- -

• Graphic Designers 

- -

• Teachers!

- -

Find out more and register here: 

- -

http://www.badgeyourbrilliance.com

- -

Participants must be over 18.

- -


+ link: 'http://www.meetup.com/Node-js-Meetup-London/' + name: Node.js Meetup London + description: |- +

JavaScript is quickly becoming the language that drives your website, your server and your database. It can also run your operating system, your nintendo emulator and the new EPIC game engine. 

+

In this group we focus on the server side - Node.js. Thanks to v8, it runs many times faster than PHP, Ruby or Python, and thanks to the event-based design, it is the ultimate back-end for mobile and web applications. It is fast to code and needs less CPU & RAM - speeding up your development and saving you server costs. 

+

The group is open to anyone interested. Whether you're wondering why in the world you would want to put JavaScript on a server or want to discuss how async/await is the best thing since sliced bread, let's meet up!

lon: -0.10000000149011612 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/7/e/3/7/highres_444752311.jpeg' - photo_id: 444752311 - photo_link: 'http://photos3.meetupstatic.com/photos/event/7/e/3/7/600_444752311.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/7/e/3/7/thumb_444752311.jpeg' - join_mode: open - organizer: - member_id: 58572472 - name: Gary Fletcher - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/3/9/1/7/highres_251894615.jpeg' - photo_id: 251894615 - photo_link: 'http://photos1.meetupstatic.com/photos/member/3/9/1/7/member_251894615.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/3/9/1/7/thumb_251894615.jpeg' - members: 3 - name: iDEAHack - Duke of York - state: '17' + photo_link: 'http://photos4.meetupstatic.com/photos/event/3/e/7/5/600_445935989.jpeg' lat: 51.52000045776367 - who: hackers - - utc_offset: 7200000 - country: FR - visibility: public - city: Pamiers - timezone: Europe/Paris - created: 1450177474000 - link: 'http://www.meetup.com/Meetup-JavaScript-NodeJS-Pamiers/' - description: 'Parlons de développement, nouvelles techno, javascript, nos projets open-source ;)' - lon: 1.6200000047683716 - join_mode: open - organizer: - member_id: 156522002 - name: Marvin - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/3/0/4/8/highres_252132360.jpeg' - photo_id: 252132360 - photo_link: 'http://photos1.meetupstatic.com/photos/member/3/0/4/8/member_252132360.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/3/0/4/8/thumb_252132360.jpeg' - members: 26 - name: Meetup JavaScript/NodeJS Pamiers - lat: 43.119998931884766 - who: développeurs - - utc_offset: 7200000 - country: IT - visibility: public - city: Roma - timezone: Europe/Rome - created: 1337873449000 - link: 'http://www.meetup.com/MongoDB-Roma/' - rating: 4.73 - description: "

MongoDB Roma nasce con l'idea di attirare persone interessate alla tecnologia NoSQL ed in particolar modo quelle entusiaste di MongoDB. Le attività del gruppo saranno localizzate prevalentemente a Roma, da qui l'origine del nome. Ovviamente non si escludono eventi fuori dal contesto romano. Il gruppo è aperto a tutti, più siamo, meglio è!

" - lon: 12.479999542236328 + - country: RO + city: Bucharest + link: 'http://www.meetup.com/Bucharest-Full-Stack-Devs-Meetup/' + name: Bucharest Full Stack Devs Meetup + description: '

Devs who care about javascript from the front-end to the services in the back-end can meet other devs with similar interests. We speak javascript, node js, angular, elastic, you name it. Full vertical.

' + lon: 26.100000381469727 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/2/8/c/a/highres_332650442.jpeg' - photo_id: 332650442 - photo_link: 'http://photos3.meetupstatic.com/photos/event/2/8/c/a/600_332650442.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/2/8/c/a/thumb_332650442.jpeg' - join_mode: open - organizer: - member_id: 47839632 - name: MongoDB - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/highres_243915101.jpeg' - photo_id: 243915101 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/a/f/d/member_243915101.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/thumb_243915101.jpeg' - members: 184 - name: MongoDB Roma - state: RM - lat: 41.900001525878906 - who: Mongers - - utc_offset: 7200000 - country: DE - visibility: public - city: Münster - timezone: Europe/Berlin - created: 1344842081000 - link: 'http://www.meetup.com/monster-tech-tales-software-engineering-user-group-muenster/' - rating: 4.88 - description: >- -

"Monster Tech Tales" was originally founded as a Ruby on Rail user - group called "Monster on Rails". Over time, the focus changed towards - a technology- and development-centered user group that offers a broad - variety of different topics, such as (Web-)Technologies, - (Web-)Frameworks, Software Architecture, Design Patterns, (No)-SQL - DBMS, Programming Paradigms, Agile Development and many more . - Usually we meet monthly at the Zweitag office.

- + photo_link: 'http://photos3.meetupstatic.com/photos/event/3/3/5/600_446460821.jpeg' + lat: 44.439998626708984 + - country: NL + city: Amsterdam + link: 'http://www.meetup.com/Startup-Kerkstraat/' + name: Startup Kerkstraat + description: |- +

This group for people involved or interested in startups in or around the Kerkstraat in Amsterdam.

+

We want to create a monthly gathering for people of startup companies located in the Kerkstraat area. Are you a founder, hacker, freelancer or startup enthousiast living or working in the area of the Kerkstraat, this group is for you!

+


+ lon: 4.889999866485596 + lat: 52.369998931884766 + - country: FR + city: Lille + link: 'http://www.meetup.com/altima-front-end/' + name: altima front-end + description: |- +

Tous les 3 mois, l’équipe front-end altima vous propose d’échanger autour de sujets front-end.

+

2 à 3 talks d’experts pour partager sur ce métier qui évolue sans cesse.


- lon: 7.619999885559082 - group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/7/1/4/0/highres_148528992.jpeg' - photo_id: 148528992 - photo_link: 'http://photos4.meetupstatic.com/photos/event/7/1/4/0/600_148528992.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/7/1/4/0/thumb_148528992.jpeg' - join_mode: open - organizer: - member_id: 126893652 - name: Nicolas Dillmann - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/b/7/f/8/highres_254207096.jpeg' - photo_id: 254207096 - photo_link: 'http://photos2.meetupstatic.com/photos/member/b/7/f/8/member_254207096.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/b/7/f/8/thumb_254207096.jpeg' - members: 197 - name: Monster Tech Tales - lat: 51.959999084472656 - who: Devs - - utc_offset: 3600000 - country: GB - visibility: public - city: Manchester - timezone: Europe/London - created: 1364408692000 - link: 'http://www.meetup.com/Manchester-MongoDB-User-Group/' - rating: 4.86 - description: "

We're a community lead user group in the heard of Manchester, helping, aiding and teaching the leading NoSQL Database, MongoDB!

" - lon: -2.240000009536743 - group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/4/0/e/e/highres_218536622.jpeg' - photo_id: 218536622 - photo_link: 'http://photos3.meetupstatic.com/photos/event/4/0/e/e/600_218536622.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/4/0/e/e/thumb_218536622.jpeg' - join_mode: open - organizer: - member_id: 47839632 - name: MongoDB - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/highres_243915101.jpeg' - photo_id: 243915101 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/a/f/d/member_243915101.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/thumb_243915101.jpeg' - members: 94 - name: Manchester MongoDB User Group - state: '18' - lat: 53.4900016784668 - who: Mongoids - - utc_offset: 7200000 - country: PL - visibility: public - city: Kraków - timezone: Europe/Warsaw - created: 1365673497000 - link: 'http://www.meetup.com/Krakow-MongoDB-User-Group/' - rating: 4.75 - description: >- -

This is a group for developers and DB administrators to learn more - about building scalable MongoDB-based apps and administer MongoDB - installations. If you are interested in NoSQL, Scalability, Big Data or - just want to find out more about MongoDB please join us and attend our - meetups in Krakow.

- -

More at http://kmug.pl/

- lon: 19.959999084472656 +

Nous abordons tous les sujets front-end, HTML, CSS ou JS.

+


+

Les talks sont ouverts à tout public, que vous soyez débutant ou expert, geek ou nerd !

+ lon: 3.069999933242798 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/7/3/c/highres_223681852.jpeg' - photo_id: 223681852 - photo_link: 'http://photos3.meetupstatic.com/photos/event/7/3/c/600_223681852.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/7/3/c/thumb_223681852.jpeg' - join_mode: open - organizer: - member_id: 187766333 - name: Danilo Mitera - members: 280 - name: Krakow MongoDB User Group - lat: 50.060001373291016 - who: MongoDB users - - utc_offset: 3600000 - country: PT - visibility: public - city: Coimbra - timezone: Europe/Lisbon - created: 1368473654000 - link: 'http://www.meetup.com/Coimbra-MongoDB-User-Group/' - description: "

O objetivo desse grupo é reunir usuários, desenvolvedores, interessados e curiosos para discutir implementações, técnicas, receitas de bolo e\_cases de MongoDB.

\n

Se você utiliza, pensa em utilizar ou apenas tem curiosidade sobre MongoDB (e NoSQL em geral), junte-se ao Meetup.

\n

Sobre o MongoDB:

\n

MongoDB (do \"humongous\") é uma aplicação de código aberto, de alta performance, sem esquemas, orientado à documentos. Foi escrito na linguagem de programação C++.\_O banco de dados orientado à documentos, sendo formado por um conjunto de documentos JSON. Muitas aplicações podem, dessa forma, modelar informações de um modo muito mais natural, pois os dados podem ser aninhados\_em complexas hierarquias e continuar a ser indexáveis\_e fáceis de buscar.

\n

O desenvolvimento do MongoDB começou em outubro de 2007 pela 10gen. A primeira versão pública foi lançada em fevereiro de 2009. (fonte: Wikipedia)

" - lon: -8.430000305175781 + photo_link: 'http://photos4.meetupstatic.com/photos/event/8/6/9/3/600_446314451.jpeg' + lat: 50.63999938964844 + - country: FR + city: Paris + link: 'http://www.meetup.com/Vuejs-Paris/' + name: Vuejs Paris + description: |- +

Vue.js community in Paris

+

Groupe de talks, discussions, ateliers, etc. Autour de Vue.js

+

Nous Sommes à la recherche d'hébergeurs pour nos prochains Meetups ainsi que de sponsors et de speakers ! Si tu es intéressé, envoie un mail a vue@posva.net pour se mettre en contact !

+

We are actively looking for hosts, sponsors and speakers (and not just francophones, so don't be shy!). Get in touch by sending an email to vue@posva.net

+ lon: 2.3399999141693115 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/2/5/a/0/highres_261129632.jpeg' - photo_id: 261129632 - photo_link: 'http://photos4.meetupstatic.com/photos/event/2/5/a/0/600_261129632.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/2/5/a/0/thumb_261129632.jpeg' - join_mode: open - organizer: - member_id: 47839632 - name: MongoDB - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/highres_243915101.jpeg' - photo_id: 243915101 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/a/f/d/member_243915101.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/thumb_243915101.jpeg' - members: 40 - name: Coimbra MongoDB User Group - lat: 40.220001220703125 - who: MongoDB Fans - - utc_offset: 7200000 - country: DK - visibility: public - city: Copenhagen - timezone: Europe/Copenhagen - created: 1368585302000 - link: 'http://www.meetup.com/Copenhagen-MongoDB-User-Group/' - rating: 4.53 - description: "

This group is a place for developers to learn more about the non-relational, open source, document-oriented database MongoDB. MongoDB is the leading NoSQL database so if you are facing challenges with MySQL or Postgres or Oracle and want to explore a more flexible, scalable alternative, please join us at one of our monthly sessions. We're excited to have you join us for a presentation on MongoDB.

" - lon: 12.569999694824219 + photo_link: 'http://photos2.meetupstatic.com/photos/event/d/c/8/4/600_446336452.jpeg' + lat: 48.86000061035156 + - country: BE + city: Gent + link: 'http://www.meetup.com/JSValley/' + name: JSValley + description: |- +

We share valuable content related to the engineering of modern JavaScript applications.

+

We intend to fill each meetup with one larger content session and two shorter inspirational talks. Topic suggestions are more than welcome and we love to welcome you on stage.

+

Quality of content is key!

+

https://twitter.com/JSValley_be

+

https://www.facebook.com/JSValleyBe

+ lon: 3.7200000286102295 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/3/9/5/a/highres_276674682.jpeg' - photo_id: 276674682 - photo_link: 'http://photos2.meetupstatic.com/photos/event/3/9/5/a/600_276674682.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/3/9/5/a/thumb_276674682.jpeg' - join_mode: open - organizer: - member_id: 47839632 - name: MongoDB - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/highres_243915101.jpeg' - photo_id: 243915101 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/a/f/d/member_243915101.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/thumb_243915101.jpeg' - members: 213 - name: Copenhagen MongoDB User Group - lat: 55.68000030517578 - who: MongoDB Fans - - utc_offset: 7200000 - country: HU - visibility: public - city: Budapest - timezone: Europe/Budapest - created: 1377705617000 - link: 'http://www.meetup.com/MongoDB-Budapest/' - rating: 4.87 - description: '

This group is a place for developers to learn more about MongoDB, an open source, document-oriented, nosql database. If you are facing challenges with MySQL or Postgres or Oracle and want to explore a more flexible, scalable alternative, please join us at one of our monthly sessions.

' - lon: 19.079999923706055 + photo_link: 'http://photos4.meetupstatic.com/photos/event/3/6/2/0/600_447553856.jpeg' + lat: 51.04999923706055 + - country: FR + city: Paris + link: 'http://www.meetup.com/Loopback-Paris/' + name: Loopback Paris + description: '

Un groupe pour échanger autour de ce framework NodeJS, et des modules associés (différents SDK, Arc, ...). Ouvert aux gens débutants curieux de découvrir, tout comme aux personnes souhaitant partager leur expérience sur le sujet

' + lon: 2.3399999141693115 + lat: 48.86000061035156 + - country: NL + city: Amsterdam + link: 'http://www.meetup.com/WebDevelopment-Nederland/' + name: WebDevelopment Nederland + description: |- +

WebDevelopment Nederland organiseert MeetUps over de nieuwste technologieën en ontwikkelingen binnen webdevelopment. Deze groep richt zich uitsluitend op: PHP, Javascript, Python, Ruby on Rails en front-end development. Per kwartaal wordt er een lezing gegeven in hartje Amsterdam door een toonaangevende specialist binnen de markt.

+

Wil je je graag aanmelden als spreker of als attendee, laat het ons weten!

+ lon: 4.889999866485596 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/3/c/e/8/highres_283215592.jpeg' - photo_id: 283215592 - photo_link: 'http://photos2.meetupstatic.com/photos/event/3/c/e/8/600_283215592.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/3/c/e/8/thumb_283215592.jpeg' - join_mode: open - organizer: - member_id: 47839632 - name: MongoDB - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/highres_243915101.jpeg' - photo_id: 243915101 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/a/f/d/member_243915101.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/thumb_243915101.jpeg' - members: 259 - name: MongoDB Budapest - lat: 47.5099983215332 - who: Members - - utc_offset: 7200000 - country: CZ - visibility: public - city: Prague - timezone: Europe/Prague - created: 1379245962000 - link: 'http://www.meetup.com/MongoDB-Prague/' - rating: 4 - description: '

This group is a place for developers to learn more about MongoDB, an open source, document-oriented, nosql database. If you are facing challenges with MySQL or Postgres or Oracle and want to explore a more flexible, scalable alternative, please join us at one of our monthly sessions.

' - lon: 14.430000305175781 + photo_link: 'http://photos2.meetupstatic.com/photos/event/3/1/9/4/600_446532692.jpeg' + lat: 52.369998931884766 + - country: DE + city: Bonn + link: 'http://www.meetup.com/BonnJS/' + name: BonnJS + description: 'User group for JavaScript developers in Bonn to learn and discuss about JavaScript. All JavaScript levels are welcome. You can meet people, talk about JavaScript related technologies, find a mentor or someone to do pair programming with, or just work on your own tutorials, books, or projects. No matter if you are into Angular, React, jQuery, Backbone, Ember, Meteor, whatever... Everybody is welcome!' + lon: 7.099999904632568 + lat: 50.72999954223633 + - country: NL + city: Amsterdam + link: 'http://www.meetup.com/Spilberg-IT-Development-Meetup/' + name: Spilberg IT Development Meetup + description: "

This is a meetup group for all IT development professionals; from HTML/CSS to JAVA and from Swift to .NET. All skill levels are welcome. At each meetup, a speaker on a trending topic starts with sharing the latest insights, after which the floor is yours for discussion. All with the purpose to keep each other up to date on the latest development trends. We'll organise the meet up every month at venues in or around Amsterdam. Location, speakers, food and drinks will be arranged by Spilberg IT Development. The topic and the quality of discussion is up to you! Is there any specific topic or a speaker you would like to see at the next Meetup? Do you want to share your insights on a(trending) topic yourself? Let us know!

" + lon: 4.889999866485596 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/3/1/f/8/highres_283212792.jpeg' - photo_id: 283212792 - photo_link: 'http://photos2.meetupstatic.com/photos/event/3/1/f/8/600_283212792.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/3/1/f/8/thumb_283212792.jpeg' - join_mode: open - organizer: - member_id: 47839632 - name: MongoDB - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/highres_243915101.jpeg' - photo_id: 243915101 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/a/f/d/member_243915101.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/thumb_243915101.jpeg' - members: 87 - name: MongoDB Prague - lat: 50.08000183105469 - who: Members - - utc_offset: 7200000 - country: IT - visibility: public - city: Milano - timezone: Europe/Rome - created: 1379669141000 - link: 'http://www.meetup.com/MongoDB-Milan/' - rating: 4.64 - description: '

This group is a place for developers to learn more about MongoDB, an open source, document-oriented, nosql database. If you are facing challenges with MySQL or Postgres or Oracle and want to explore a more flexible, scalable alternative, please join us at one of our monthly sessions.

' - lon: 9.1899995803833 + photo_link: 'http://photos4.meetupstatic.com/photos/event/6/3/2/a/600_448405386.jpeg' + lat: 52.369998931884766 + - country: SE + city: Luleå + link: 'http://www.meetup.com/Lulea-Web-Application-Developers-Meetup/' + name: Luleå Web Application Developers Meetup + description: |- +

Startat denna grupp för utbyte av kunskaper och kontakter rörande utveckling av webbapplikationer. 

+

Vi på Context Sales Sweden etablerar vårt huvudkontor och utvecklingsteam i Luleå under första kvartalet 2016 och vill därför gärna bygga ett nätverk med likasinnade i och runt om Luleå. Vill träffa lokala förmågor för utbyte av erfarenheter, men också för möjligheter till framtida samarbeten. 

+

(CSS letar just nu både erfarna seniora- och talangfulla juniora utvecklare Att utöka teamet med.)

+

-----------

+

English:

+

Have started this group for exchange of knowledge and contacts regarding development of web applications. 

+

We at Context Sales Sweden are establishing our main office and development team in Luleå during the first quarter of 2016 and are therefore interested in building a network of likeminded in Luleå. Want to meet local talents for exchange of experiences, but also for the possibility of working together in the future.

+

(CSS are at this time looking for both experienced senior and talented junior developers to expand the team.)

+ lon: 22.15999984741211 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/7/d/b/c/highres_435932188.jpeg' - photo_id: 435932188 - photo_link: 'http://photos1.meetupstatic.com/photos/event/7/d/b/c/600_435932188.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/7/d/b/c/thumb_435932188.jpeg' - join_mode: open - organizer: - member_id: 47839632 - name: MongoDB - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/b/c/8/f/highres_242928271.jpeg' - photo_id: 242928271 - photo_link: 'http://photos2.meetupstatic.com/photos/member/b/c/8/f/member_242928271.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/b/c/8/f/thumb_242928271.jpeg' - members: 576 - name: MongoDB Milan - state: MI - lat: 45.459999084472656 - who: Members - - utc_offset: 3600000 - country: GB - visibility: public - city: Edinburgh - timezone: Europe/London - created: 1379675300000 - link: 'http://www.meetup.com/MongoDB-Edinburgh/' - rating: 4.71 - description: '

This group is a place for developers to learn more about MongoDB, an open source, document-oriented, nosql database. If you are facing challenges with MySQL or Postgres or Oracle and want to explore a more flexible, scalable alternative, please join us at one of our monthly sessions.

' - lon: -3.200000047683716 - group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/5/8/8/6/highres_285082662.jpeg' - photo_id: 285082662 - photo_link: 'http://photos2.meetupstatic.com/photos/event/5/8/8/6/600_285082662.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/5/8/8/6/thumb_285082662.jpeg' - join_mode: open - organizer: - member_id: 47839632 - name: MongoDB - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/highres_243915101.jpeg' - photo_id: 243915101 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/a/f/d/member_243915101.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/thumb_243915101.jpeg' - members: 83 - name: MongoDB Edinburgh - state: U8 - lat: 55.95000076293945 - who: Members - - utc_offset: 10800000 - country: TR - visibility: public - city: Istanbul - timezone: Europe/Istanbul - created: 1379677167000 - link: 'http://www.meetup.com/MongoDB-Istanbul/' - rating: 4 - description: '

This group is a place for developers in and around Madrid to learn more about the non-relational, open source, document-oriented database MongoDB. MongoDB is the leading NoSQL database and many of the key committers are based right here in Europe. So if you are facing challenges with MySQL or Postgres or Oracle and want to explore a more flexible, scalable alternative, please join us at one of our sessions.

' - lon: 28.959999084472656 + photo_link: 'http://photos4.meetupstatic.com/photos/event/8/e/d/3/600_446976563.jpeg' + lat: 65.5999984741211 + - country: IT + city: Salerno + link: 'http://www.meetup.com/JS-Salerno/' + name: 'JavaScript & NodeJS community Salerno' + description: "

JavaScript è qui da trent'anni ma è più vivo che mai! JS è passato da essere un semplice script di controllo dell'input nei browser a un linguaggio vero e proprio, con un ecosistema di framework e librerie da far impallidire linguaggi più blasonati. E' l'unico vero linguaggio universale, gira ovunque vi sia un browser (anche nel vostro telefonino) e anche su server! E' la porta d'accesso alle WebApp moderne. In questo gruppi saranno accettati i neofiti ed esperti. Organizzeremo incontri mensili (o bi-mensili) come conferenze, inviteremo esperti che soddisferanno le nostre curiosità e faremo rete.

" + lon: 14.779999732971191 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/6/b/1/e/highres_304467422.jpeg' - photo_id: 304467422 - photo_link: 'http://photos2.meetupstatic.com/photos/event/6/b/1/e/600_304467422.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/6/b/1/e/thumb_304467422.jpeg' - join_mode: open - organizer: - member_id: 47839632 - name: MongoDB - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/b/c/8/f/highres_242928271.jpeg' - photo_id: 242928271 - photo_link: 'http://photos2.meetupstatic.com/photos/member/b/c/8/f/member_242928271.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/b/c/8/f/thumb_242928271.jpeg' - members: 153 - name: MongoDB Istanbul - lat: 41.0099983215332 - who: Members - - utc_offset: 7200000 - country: AT - visibility: public - city: Vienna - timezone: Europe/Vienna - created: 1380095975000 - link: 'http://www.meetup.com/MongoDB-Vienna/' - rating: 4.51 - description: '

This group is a place for developers to learn more about the non-relational, open source, document-oriented database MongoDB. MongoDB is the leading NoSQL database and many of the key committers often travel to London. So if you are facing challenges with MySQL or Postgres or Oracle and want to explore a more flexible, scalable alternative, please join us at one of our monthly sessions.

' - lon: 16.3700008392334 + photo_link: 'http://photos1.meetupstatic.com/photos/event/9/d/4/3/600_447640259.jpeg' + lat: 40.68000030517578 + - country: FR + city: Paris + link: 'http://www.meetup.com/Web-Up-Tech/' + name: Web Up Tech + description: "Ce Meetup est destiné à toute la communauté de développement Open Source Web/Cloud/DevOps. Les Thèmes abordés couvrent tous les aspects développement Web (Spring Boot, Angulars JS, Node JS, Mean Stack, HTML5,...) ainsi que les nouvelles architectures Cloud (Micro services, Containers, Ansible, Docker,...) dans un contexte DevOps/Agile. Les sessions organisées se déroulent généralement en soirée et sont animées par des experts dans leur domaine ou des développeurs de tout horizon. Normasys SA (SSII en pleine expansion) sponsorise et gère l'organisation de ces événements avec des partenaires de la place. Votre contribution est la bienvenue pour partager avec les acteurs et développeurs parisiens, votre savoir faire et vos retours sur expériences très précieux. Big Up, Come Up, Web Up ;)" + lon: 2.3399999141693115 + lat: 48.86000061035156 + - country: GB + city: London + link: 'http://www.meetup.com/React-London-Bring-Your-Own-Project/' + name: 'React London : Bring Your Own Project' + description: "Join other JS and Node developers for a monthly React - Bring Your Own Project - Meetup at SapientNitro, London as we all work on group member's React projects. \n\nBring your questions, your code, and your desire to help. The sessions are informal, friendly, and organised with a loose agenda. Mix with fellow React developers and get learning." + lon: -0.07999999821186066 + lat: 51.52000045776367 + - country: SE + city: Göteborg + link: 'http://www.meetup.com/DevBar/' + name: DevBar + description: '

DevBar är mötesplatsen för alla Open Source-kunniga webbutvecklare i Göteborgsområdet som vill sia ny teknik och prata trender inom Open Source-utveckling. Vi står för maten, de kalla dryckerna och diskussionsämnena. Allt du behöver ta med dig är idéer, spaningar och ditt kunnande. Tillsammans skapar vi en härlig stämning i Open Source-utvecklingens tecken.

' + lon: 12.010000228881836 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/8/d/b/0/highres_324036272.jpeg' - photo_id: 324036272 - photo_link: 'http://photos3.meetupstatic.com/photos/event/8/d/b/0/600_324036272.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/8/d/b/0/thumb_324036272.jpeg' - join_mode: open - organizer: - member_id: 47839632 - name: MongoDB - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/highres_243915101.jpeg' - photo_id: 243915101 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/a/f/d/member_243915101.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/thumb_243915101.jpeg' - members: 249 - name: MongoDB Vienna - lat: 48.220001220703125 - who: Members - - utc_offset: 7200000 - country: 'NO' - visibility: public - city: Bergen - timezone: Europe/Oslo - created: 1385804115000 - link: 'http://www.meetup.com/Bergen-NoSQL/' - rating: 5 - description: >- -

Bergen NoSQL User Group is a place for developers to learn - more and share their experiences about all the new and shiny NoSQL - databases. We discuss databases such - as MongoDB and - CouchDB document - stores; Neo4J and - Giraph graph - stores; Riak, Berkeley DB - and Redis key-value stores, - and Cassandra and - HBase wide-column stores; and many many - more!

- -

If you are facing challenges with MySQL or Postgres or Oracle and - want to explore a more flexible, scalable alternative, please join us - at one of our meetups.

- lon: 5.340000152587891 + photo_link: 'http://photos4.meetupstatic.com/photos/event/3/7/e/600_447000894.jpeg' + lat: 57.720001220703125 + - country: GB + city: London + link: 'http://www.meetup.com/Serverless-London/' + name: Serverless London + description: "A group for anyone interested in building web, mobile and Internet-of-Things applications with serverless architectures using the Serverless Framework and more! We'll focus heavily on Amazon Web Services and discuss AWS Lambda as the focal point of AWS." + lon: -0.10000000149011612 + lat: 51.52000045776367 + - country: HU + city: Budapest + link: 'http://www.meetup.com/Corporate-JavaScript-Meetup-Budapest/' + name: Corporate JavaScript Meetup Budapest + description: '

A csoport célja a JavaScript technológia evangelizálása a hazai corporate fejlesztők körében. Szeretnénk megmutatni, hogy milyen bevált toolok és praktikák vannak a vállalati környezetben.

' + lon: 19.079999923706055 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/3/a/f/d/highres_445155101.jpeg' - photo_id: 445155101 - photo_link: 'http://photos2.meetupstatic.com/photos/event/3/a/f/d/600_445155101.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/3/a/f/d/thumb_445155101.jpeg' - join_mode: open - organizer: - member_id: 47839632 - name: MongoDB - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/highres_243915101.jpeg' - photo_id: 243915101 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/a/f/d/member_243915101.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/thumb_243915101.jpeg' - members: 32 - name: Bergen NoSQL User Group - lat: 60.380001068115234 - who: Members - - utc_offset: 10800000 - country: UA - visibility: public - city: "Dnipropetrovs'k" - timezone: Europe/Kiev - created: 1389379950000 - link: 'http://www.meetup.com/Dnipropetrovsk-MongoDB-User-Group/' - rating: 4.7 + photo_link: 'http://photos1.meetupstatic.com/photos/event/8/e/c/5/600_447216549.jpeg' + lat: 47.5099983215332 + - country: DE + city: Hamburg + link: 'http://www.meetup.com/Node-RED-Hamburg/' + name: Node-RED Hamburg + description: "

Let's connect – machines, apps, people, everything... If you like cyberphysical data-plumbing, then you gotta love Node-RED! We are looking for passionate Geeks (f/m) within the IoT sphere to hang out and share our latest hacks, technologies and ideas with. Regarding to one of the most impactful IoT-tools out there right now, we invite you to join us and show off your favorite Node-RED nodes and get inspiration from the community. Beginners, Makers, Scientists, Professionals – feel free to contribute!

" + lon: 10 + group_photo: + photo_link: 'http://photos4.meetupstatic.com/photos/event/b/d/8/3/600_448608515.jpeg' + lat: 53.54999923706055 + - country: GB + city: London + link: 'http://www.meetup.com/Coding-Hour-London-After-work-drinks-for-developers/' + name: Coding Hour London - After work drinks for developers description: |- -

{name: 'MUG', location: 'Dnepropetrovsk, Ukraine'}
- -

-

This group is a place for developers to learn more about MongoDB, an open source, document-oriented, nosql database. If you are facing challenges with MySQL or Postgres or Oracle and want to explore a more flexible, scalable alternative, please join us at one of our monthly sessions.

- lon: 35.040000915527344 +

This meetup group is gathering code enthusiasts in a chilled and fun atmosphere: while drinking beers, attendees will be invited to solve algorithm challenges in a limited time.

+

Coding Hour is the occasion for developers to get together and to improve their skills on a specific technology.

+ lon: -0.10000000149011612 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/a/2/a/a/highres_324401642.jpeg' - photo_id: 324401642 - photo_link: 'http://photos3.meetupstatic.com/photos/event/a/2/a/a/600_324401642.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/a/2/a/a/thumb_324401642.jpeg' - join_mode: open - organizer: - member_id: 47839632 - name: MongoDB - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/highres_243915101.jpeg' - photo_id: 243915101 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/a/f/d/member_243915101.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/thumb_243915101.jpeg' - members: 157 - name: "Dnipropetrovs'k MongoDB User Group" - lat: 48.45000076293945 - who: Members - - utc_offset: 7200000 - country: DE - visibility: public - city: Paderborn - timezone: Europe/Berlin - created: 1390308543000 - link: 'http://www.meetup.com/Paderborn-MongoDB-User-Group/' - description: '

This group is a place for developers to learn more about MongoDB, an open source, document-oriented, nosql database. If you are facing challenges with MySQL or Postgres or Oracle and want to explore a more flexible, scalable alternative, please join us at one of our monthly sessions.

' - lon: 8.739999771118164 - group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/4/8/f/a/highres_326058682.jpeg' - photo_id: 326058682 - photo_link: 'http://photos1.meetupstatic.com/photos/event/4/8/f/a/600_326058682.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/4/8/f/a/thumb_326058682.jpeg' - join_mode: open - organizer: - member_id: 47839632 - name: MongoDB - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/highres_243915101.jpeg' - photo_id: 243915101 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/a/f/d/member_243915101.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/thumb_243915101.jpeg' - members: 17 - name: Paderborn MongoDB User Group - lat: 51.720001220703125 - who: Members - - utc_offset: 7200000 - country: DE - visibility: public - city: Düsseldorf - timezone: Europe/Berlin - created: 1390309219000 - link: 'http://www.meetup.com/Dusseldorf-MongoDB-User-Group/' - rating: 4.25 - description: '

This group is a place for developers to learn more about MongoDB, an open source, document-oriented, nosql database. If you are facing challenges with MySQL or Postgres or Oracle and want to explore a more flexible, scalable alternative, please join us at one of our monthly sessions.

' - lon: 6.789999961853027 + photo_link: 'http://photos4.meetupstatic.com/photos/event/1/8/a/600_447240394.jpeg' + lat: 51.52000045776367 + - country: DE + city: Heidelberg + link: 'http://www.meetup.com/RheinNeckarJS/' + name: RheinNeckarJS + description: |- +

RheinNeckarJS is a JavaScript, HTML5 and NodeJS user group in Heidelberg, Mannheim and the whole region Rhein-Neckar organized by Martina Kraus and Christoph Martens.

+


+

Website: http://rheinneckarjs.github.io/

+

Twitter: https://twitter.com/RheinNeckarJS

+ lon: 8.6899995803833 + lat: 49.41999816894531 + - country: GB + city: London + link: 'http://www.meetup.com/Corporate-JavaScript-Meetup-London/' + name: Corporate JavaScript Meetup London + description: '

Our main goal is to evangelise JavaScript among corporate developers. We want to share the proven tools and the tips in corporate environment.
This is a place to share your knowledge, participate in Q & A and widen your sphere of knowledge.
Free admission!
Join us to participate in this professional forum where everyone is invited!

' + lon: -0.10000000149011612 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/d/6/7/7/highres_432114903.jpeg' - photo_id: 432114903 - photo_link: 'http://photos1.meetupstatic.com/photos/event/d/6/7/7/600_432114903.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/d/6/7/7/thumb_432114903.jpeg' - join_mode: open - organizer: - member_id: 47839632 - name: MongoDB - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/highres_243915101.jpeg' - photo_id: 243915101 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/a/f/d/member_243915101.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/thumb_243915101.jpeg' - members: 71 - name: Düsseldorf MongoDB User Group - lat: 51.2400016784668 - who: Members - - utc_offset: 7200000 - country: IT - visibility: public - city: Padova - timezone: Europe/Rome - created: 1394121668000 - link: 'http://www.meetup.com/Padova-MongoDB-User-Group/' - rating: 4.83 - description: "

Il gruppo si rivolte a sviluppatori, responsabili IT, DevOps e tutti coloro che vogliono scoprire, discutere e condividere le proprie esperienze su MongoDB.

\n

MongoDB è un database NoSQL , open source ed orientato ai documenti che offre un'alternativa flessibile, scalabili \_e agile ai tradizionali database relazionali MySQL, Postgres o Oracle.

\n

L'obiettivo del gruppo è crescere e condividere le esperienze! Cosa aspettate unitevi al gruppo!

" - lon: 11.880000114440918 - join_mode: open - organizer: - member_id: 47839632 - name: MongoDB - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/highres_243915101.jpeg' - photo_id: 243915101 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/a/f/d/member_243915101.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/thumb_243915101.jpeg' - members: 67 - name: Padova MongoDB User Group - state: PD - lat: 45.40999984741211 - who: Members - - utc_offset: 7200000 - country: FR - visibility: public + photo_link: 'http://photos1.meetupstatic.com/photos/event/3/4/9/d/600_447373469.jpeg' + lat: 51.52000045776367 + - country: NL + city: Amsterdam + link: 'http://www.meetup.com/Coding-Hour-Amsterdam-After-work-drinks-for-developers/' + name: Coding Hour Amsterdam - After work drinks for developers + description: 'This meetup group is gathering code enthusiasts in a chilled and fun atmosphere: while drinking beers, attendees will be invited to solve algorithm challenges in a limited time. Coding Hour is the occasion for developers to get together and to improve their skills on a specific technology.' + lon: 4.889999866485596 + lat: 52.369998931884766 + - country: FR city: Toulouse - timezone: Europe/Paris - created: 1394636565000 - link: 'http://www.meetup.com/Toulouse-MongoDB-User-Group/' - rating: 4.8 - description: '

This group is a place for developers to learn more about MongoDB, an open source, document-oriented, nosql database. If you are facing challenges with MySQL or Postgres or Oracle and want to explore a more flexible, scalable alternative, please join us at one of our monthly sessions.

' + link: 'http://www.meetup.com/Toulouse-AngularJS-Meetup/' + name: AngularJS Toulouse + description: |- +

Bienvenue,

+
+

Nous recherchons continuellement des speekers et Sponsors. Les sujets peuvent être de tous niveaux, sur Angular ou Ionic 1 & 2.

+
+

Si vous êtes intéressé merci de me contacter directement:  https://twitter.com/julienrenaux

+
+

PS: Un Slack de la communauté sera disponible en Avril.

lon: 1.4500000476837158 - group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/b/2/4/highres_341282852.jpeg' - photo_id: 341282852 - photo_link: 'http://photos2.meetupstatic.com/photos/event/b/2/4/600_341282852.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/b/2/4/thumb_341282852.jpeg' - join_mode: open - organizer: - member_id: 47839632 - name: MongoDB - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/highres_243915101.jpeg' - photo_id: 243915101 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/a/f/d/member_243915101.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/thumb_243915101.jpeg' - members: 101 - name: Toulouse MongoDB User Group lat: 43.619998931884766 - who: Members - - utc_offset: 7200000 - country: PL - visibility: public - city: Wroclaw - timezone: Europe/Warsaw - created: 1396358105000 - link: 'http://www.meetup.com/Wroclaw-MongoDB-User-Group/' - description: "

Ta grupa jest miejscem spotkań developerów, architektów i po prostu osób zainteresowanych NoSQL rozwiązaniem MongoDB. Lubimy Open ne technologię, ale napotykamy podobne problemy. Niech tematem spotkań naszej grupy będą sesję pokazujące case'y, rozwiązania lub problemy które napotykamy w codziennej pracy.\_

" - lon: 17.030000686645508 + - country: FR + city: Paris + link: 'http://www.meetup.com/JavaScript-Lab-Paris/' + name: JavaScript Lab Paris + description: |- +

Coder. Echanger. S'améliorer.

+

Nous sommes fans de JavaScript et nous nous sommes dit que ça serait vraiment bien d'avoir une communauté de passionnés où les gens peuvent échanger, se rencontrer et apprendre les uns des autres.

Rejoignez-nous et devenons de meilleurs programmeurs, ensemble.

+ lon: 2.3399999141693115 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/2/b/0/e/highres_348011022.jpeg' - photo_id: 348011022 - photo_link: 'http://photos2.meetupstatic.com/photos/event/2/b/0/e/600_348011022.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/2/b/0/e/thumb_348011022.jpeg' - join_mode: open - organizer: - member_id: 47839632 - name: MongoDB - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/highres_243915101.jpeg' - photo_id: 243915101 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/a/f/d/member_243915101.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/thumb_243915101.jpeg' - members: 60 - name: Wroclaw MongoDB User Group - lat: 51.11000061035156 - who: Members - - utc_offset: 7200000 - country: FR - visibility: public - city: Bordeaux - timezone: Europe/Paris - created: 1396821327000 - link: 'http://www.meetup.com/Bordeaux-MongoDB-User-Group/' - description: '

This group is a place for developers to learn more about MongoDB, an open source, document-oriented, nosql database. If you are facing challenges with MySQL or Postgres or Oracle and want to explore a more flexible, scalable alternative, please join us at one of our monthly sessions.

' - lon: -0.5799999833106995 + photo_link: 'http://photos3.meetupstatic.com/photos/event/7/2/3/2/600_447689234.jpeg' + lat: 48.86000061035156 + - country: CH + city: Bern + link: 'http://www.meetup.com/MarkLogic-User-Group-Switzerland/' + name: MarkLogic User Group Switzerland + description: 'Diese Gruppe ist für alle, die an Enterprise Data Stores für den Einsatz im Digital Business interessiert sind – für Neugierige und Experten. Enterprise Data Stores kommen immer dann zum Einsatz, wenn relationale Datenbanken an ihre Grenzen stossen. Bei unseren Treffen geben wir Tipps und Tricks, stellen Anwendungsbeispiele von Kunden vor und stellen neue Entwicklungen vor. Wir freuen uns auf jeden Teilnehmer und den Austausch mit unseren Gruppenmitgliedern. The MarkLogic User Group (MLUG) is for users and/or fans of MarkLogic and those who are interested in learning more about MarkLogic, XML, XQuery and related technologies. MUGL meetups are free and open to anyone that wishes to attend. There is no formal membership for the group. Our meetings are held quarterly in different regions in Germany. Want to know more about MarkLogic? Read on >> MarkLogic® is a new generation database platform that enables organisations to get more value from more data than ever before. Global enterprises and governments rely on MarkLogic to power intelligent, high performance applications aimed at analysing data for better insights and also running crucial day-to-day business operations. With MarkLogic, organisations achieve faster time-to-value than was possible with legacy databases, while minimising risk and improving data quality. MarkLogic is the only Enterprise NoSQL database—a powerful, agile, trusted database that has the speed and scale of NoSQL coupled with the enterprise features required. · Develop stronger applications faster with a flexible data model using Full-Stack JavaScript, JSON and Node.JS · Find relevant information easier with lightning fast, built-in search · Gain more intelligence in the data layer using semantics and bitemporal · Maintain data resiliency and consistency with ACID transactions, scalability and elasticity, certified security, and high availability and disaster recovery' + lon: 7.440000057220459 + lat: 46.95000076293945 + - country: FR + city: Paris + link: 'http://www.meetup.com/ParseServerParisianLovers/' + name: Parse Server Parisian Lovers + description: "Suite à leur récente annonce de la fin de Parse.com, Facebook a pris la décision de livrer en Open Source leur solution révolutionnaire de Back End As A Service : Parse Server. La quasi totalité de la suite et des SDKs est désormais open source. Pour que cette belle initiative perdure, il faut fédérer la communauté des développeurs Parse (600 000 à travers le monde) et quoi de mieux qu'un meet up ? Ce groupe s'adresse donc à tous ceux qui : - souhaitent contribuer au projet open source Parse Server - aiment/adorent la solution de Parse et l'utilisent dans leur développement - sont curieux de découvrir cette nouvelle opportunité" + lon: 2.3399999141693115 + lat: 48.86000061035156 + - country: IT + city: Ferrara + link: 'http://www.meetup.com/ferrarajs/' + name: Ferrara JavaScript Group - Mobile and cloud app developers + description: "

L'UserGroup di Ferrara e dintorni dedicato al JavaScript e al WebDevelopment! Lo scopo è quello di creare un gruppo di developer appassionati e ritrovi per discutere sulle nuove tecnologie e riscoperte nell'ambito dei nuovi frameworks e librerie, soprattutto nell'ambito dello sviluppo di app mobile, cloud, desktop e multipiattaforma!

" + lon: 11.619999885559082 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/d/3/d/8/highres_349674232.jpeg' - photo_id: 349674232 - photo_link: 'http://photos3.meetupstatic.com/photos/event/d/3/d/8/600_349674232.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/d/3/d/8/thumb_349674232.jpeg' - join_mode: open - organizer: - member_id: 47839632 - name: MongoDB - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/highres_243915101.jpeg' - photo_id: 243915101 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/a/f/d/member_243915101.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/thumb_243915101.jpeg' - members: 54 - name: Bordeaux MongoDB User Group + photo_link: 'http://photos3.meetupstatic.com/photos/event/9/0/3/c/600_447936924.jpeg' lat: 44.84000015258789 - who: Members - - utc_offset: 7200000 - country: FR - visibility: public - city: Nantes - timezone: Europe/Paris - created: 1398159124000 - link: 'http://www.meetup.com/Nantes-MongoDB-User-Group/' - rating: 4.67 - description: >- -

MongoDB est une base de données nosql Open Source orientée - document. Vous êtes curieux et voulez découvrir une base flexible et - scalable ? Vous connaissez déjà mais voulez partager vos solutions ou - problèmes ?

- -

Vous êtes au bon endroit.

- -

Suivez nous sur twitter @nantesmug

- lon: -1.5700000524520874 - group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/a/4/9/4/highres_355542132.jpeg' - photo_id: 355542132 - photo_link: 'http://photos2.meetupstatic.com/photos/event/a/4/9/4/600_355542132.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/a/4/9/4/thumb_355542132.jpeg' - join_mode: open - organizer: - member_id: 47839632 - name: MongoDB - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/highres_243915101.jpeg' - photo_id: 243915101 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/a/f/d/member_243915101.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/thumb_243915101.jpeg' - members: 186 - name: Nantes MongoDB User Group - lat: 47.22999954223633 - who: Members - - utc_offset: 3600000 - country: GB - visibility: public - city: Glasgow - timezone: Europe/London - created: 1398677652000 - link: 'http://www.meetup.com/Glasgow-MongoDB-User-Group/' - description: '

This group is a place for developers to learn more about the non-relational, open source, document-oriented database MongoDB. So if you are facing challenges with MySQL or Postgres or Oracle and want to explore a more flexible, scalable alternative, please join us at one of our monthly sessions.

' - lon: -4.25 - group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/b/4/d/e/highres_357706302.jpeg' - photo_id: 357706302 - photo_link: 'http://photos2.meetupstatic.com/photos/event/b/4/d/e/600_357706302.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/b/4/d/e/thumb_357706302.jpeg' - join_mode: open - organizer: - member_id: 47839632 - name: MongoDB - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/highres_243915101.jpeg' - photo_id: 243915101 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/a/f/d/member_243915101.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/thumb_243915101.jpeg' - members: 20 - name: Glasgow MongoDB User Group - state: V2 - lat: 55.869998931884766 - who: Members - - utc_offset: 10800000 - country: LT - visibility: public - city: Vilnius - timezone: Europe/Vilnius - created: 1399067916000 - link: 'http://www.meetup.com/Vilnius-MongoDB-User-Group/' - description: '

This group is a place for developers to learn more about the non-relational, open source, document-oriented database MongoDB. So if you are facing challenges with MySQL or Postgres or Oracle and want to explore a more flexible, scalable alternative, please join us at one of our monthly sessions.

' - lon: 25.270000457763672 - group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/c/0/a/a/highres_358969322.jpeg' - photo_id: 358969322 - photo_link: 'http://photos4.meetupstatic.com/photos/event/c/0/a/a/600_358969322.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/c/0/a/a/thumb_358969322.jpeg' - join_mode: open - organizer: - member_id: 47839632 - name: MongoDB - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/highres_243915101.jpeg' - photo_id: 243915101 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/a/f/d/member_243915101.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/thumb_243915101.jpeg' - members: 43 - name: Vilnius MongoDB User Group - lat: 54.70000076293945 - who: Members - - utc_offset: 7200000 - country: PL - visibility: public - city: Warsaw - timezone: Europe/Warsaw - created: 1401783650000 - link: 'http://www.meetup.com/Warsaw-MongoDB-User-Group/' - description: '

This group is a place for developers to learn more about the non-relational, open source, document-oriented database MongoDB. So if you are facing challenges with MySQL or Postgres or Oracle and want to explore a more flexible, scalable alternative, please join us at one of our monthly sessions.

' - lon: 21.020000457763672 - group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/7/5/f/0/highres_371310192.jpeg' - photo_id: 371310192 - photo_link: 'http://photos1.meetupstatic.com/photos/event/7/5/f/0/600_371310192.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/7/5/f/0/thumb_371310192.jpeg' - join_mode: open - organizer: - member_id: 47839632 - name: MongoDB - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/highres_243915101.jpeg' - photo_id: 243915101 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/a/f/d/member_243915101.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/thumb_243915101.jpeg' - members: 45 - name: Warsaw MongoDB User Group - lat: 52.2599983215332 - who: Members - - utc_offset: 7200000 - country: DE - visibility: public - city: Mannheim - timezone: Europe/Berlin - created: 1404221156000 - link: 'http://www.meetup.com/Mannheim-MongoDB-User-Group/' - rating: 4.79 - description: "

Our group is about modern web- and data technologies. We meet to learn and discuss new ways working with data. We do talks and work shops.
\n\n

\n

We're about exchanging our knowledge and ideas in a collegial, respectful manner.

\n

For more information visit our website.

\n

If you are interested in data and web stuff or mongoDB in particular\_this is the place to be.\_No matter if you are an expert\_or just curious.

\n

If you have a basic understanding of programming and databases \_there is nothing to worry about. We all have started small.

\n

We want\_to build up and curate a strong, open community in the Rhine-Neckar area.\_Exchange of ideas and expertise,\_help new users.

\n

Maybe world domination.

\n

Most of the time we speak English since we are are diverse group of people from all over the world. Don't worry if your Englisch is not pörfekt.
\n\n

\n

Members of our group are open, considerate & respectful. Our group is a diverse set of skills, personalities, and experiences.

\n

See You!

" - lon: 8.470000267028809 - group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/d/5/f/4/highres_398094772.jpeg' - photo_id: 398094772 - photo_link: 'http://photos2.meetupstatic.com/photos/event/d/5/f/4/600_398094772.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/d/5/f/4/thumb_398094772.jpeg' - join_mode: open - organizer: - member_id: 47839632 - name: MongoDB - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/highres_243915101.jpeg' - photo_id: 243915101 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/a/f/d/member_243915101.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/thumb_243915101.jpeg' - members: 198 - name: Mannheim MongoDB User Group - lat: 49.5 - who: Monthusiasts - - utc_offset: 3600000 - country: GB - visibility: public - city: London - timezone: Europe/London - created: 1407314293000 - link: 'http://www.meetup.com/London-dev/' - rating: 5 - description: >- -

Welcome to London.dev Meetup. 

- -

London.dev is aimed at professionals within the web industry - who have an interest in software development and computer science. -  It happens usually the last Tuesday of every Month.

- -

We are looking for volunteers, speakers, partners, sponsors and nice - places to host the event. We like to work with other meetups and - conferences too. If you are interested in or have some idea about, - please contact us.

- -

Thanks to our partners London IT - Contractors Group and ProgSCon Conference to help us - to organise this meetup.

- -


- -

Thanks for reading, and see you at our next meetup.

- -

Follow us on twitter: @londondev_mtp

- -


- -


- -


- lon: -0.09000000357627869 + - country: FR + city: Neuilly-sur-Seine + link: 'http://www.meetup.com/Meetup-AngularJS-Neuilly-sur-Seine/' + name: 'Meetup AngularJS & JavaScript' + description: "

Rejoignons-nous pour apprendre le code dans la bonne humeur ! Si vous avez envie d'apprendre AngularJS et le live coding, ainsi que l'évolution du JavaScript, mais pensez que cette activité est réservée aux scientifiques en herbe, révisez votre jugement et venez nous retrouver dans notre espace de co-working. Nous vous montrerons que coder n'est pas sorcier !

" + lon: 2.2699999809265137 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/1/2/6/e/highres_444964718.jpeg' - photo_id: 444964718 - photo_link: 'http://photos3.meetupstatic.com/photos/event/1/2/6/e/600_444964718.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/1/2/6/e/thumb_444964718.jpeg' - join_mode: open - organizer: - member_id: 13804899 - name: David Gimelle - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/4/b/c/0/highres_123559392.jpeg' - photo_id: 123559392 - photo_link: 'http://photos2.meetupstatic.com/photos/member/4/b/c/0/member_123559392.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/4/b/c/0/thumb_123559392.jpeg' - members: 684 - name: London.dev - state: '17' - lat: 51.52000045776367 - who: 'Developer, Engineer, Architect' - - utc_offset: 7200000 - country: ME - visibility: public - city: Podgorica - timezone: Europe/Belgrade - created: 1432192702000 - link: 'http://www.meetup.com/wavedevs/' - rating: 4 - description: >- -

It's group of passionate geeks who live near the sea. We like create - useful thinks, cool websites, mobile apps, robots and many other - things. And finally organise events, where we share our knowledge. If - you like technology, like create new things and share your experience - please join us. We always open for new members. We meet once a month at - the one of town of Montenegro usually it's Kotor or Budva, but can be - Herceg Novi and any other on a sea shore like Podgorica, Bar, Tivat and - etc.

- -

Official website: http://wave-developers.github.io/

- lon: 19.280000686645508 + photo_link: 'http://photos3.meetupstatic.com/photos/event/2/a/3/9/600_447970809.jpeg' + lat: 48.88999938964844 + - country: PL + city: Bydgoszcz + link: 'http://www.meetup.com/meet-js-Bydgoszcz/' + name: meet.js Bydgoszcz + description: '

Luźne, cykliczne spotkania dla osób zainteresowanych technologiami związanymi z JavaScript. Prezentacje prowadzone przez developerów dla developerów w luźnej formule barcampu. Poziom prelekcji jest zróżnicowany tak, że zarówno początkujący jak i JS Ninja znajdą coś dla siebie.

' + lon: 18.010000228881836 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/3/9/8/highres_447180920.jpeg' - photo_id: 447180920 - photo_link: 'http://photos2.meetupstatic.com/photos/event/3/9/8/600_447180920.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/3/9/8/thumb_447180920.jpeg' - join_mode: open - organizer: - member_id: 69575142 - name: Eugene Krevenets - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/b/c/2/0/highres_246348160.jpeg' - photo_id: 246348160 - photo_link: 'http://photos1.meetupstatic.com/photos/member/b/c/2/0/member_246348160.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/b/c/2/0/thumb_246348160.jpeg' - members: 57 - name: Wave Devs Meetup - lat: 42.470001220703125 - who: Wave Developers - - utc_offset: 3600000 - country: IE - visibility: public + photo_link: 'http://photos1.meetupstatic.com/photos/event/3/f/4/a/600_448216202.jpeg' + lat: 53.119998931884766 + - country: AT + city: Graz + link: 'http://www.meetup.com/Angular-Meetup-Graz/' + name: Angular Meetup Graz + description: Wir treffen uns regelmäßig um über Angular zu sprechen. + lon: 15.420000076293945 + lat: 47.08000183105469 + - country: IE city: Dublin - timezone: Europe/Dublin - created: 1434531198000 - link: 'http://www.meetup.com/nodeday/' - description: >- -

nodeday is a Node.js conference by the enterprise, for the - enterprise. This one-day industry conference brings together people - from companies that have adopted or are planning to adopt Node.js, and - focuses on the issues that these companies face. It gives participants - a forum to discuss and share their experiences with Node.js, share - advice, tips and tricks, and drive forward both the technology and the - community. 

- -


- -
- -


- -


+ link: 'http://www.meetup.com/fullstackjsdublin/' + name: FullstackJS Dublin + description: |- +

JavaScript's taking over the web development stack - if the idea of using one programming language for the front-end AND the back-end tickles your programming fancy, then join us!

+

We are a vibrant community of developers interested in learning, sharing our knowledge of Javascript and helping each other.

+

Have you got a coding problem? Or any question related to Javascript? Great!
Write your question in our message board. Our code mentors will be happy to help you at our next live coding tutorial or workshop session! :)

+

We meet once a month. All levels are welcome. Bring your laptop, have fun coding and meet cool people! ;)

+

So if you want to practice Javascript, jQuery, AngularJS, BackboneJS, ReactJS, Meteor, etc together with other enthusiastic members, join us now!

+

+

You can follow us on Twitter and Facebook and use our hashtag #fullstackjsdublin :)

See you very soon!

Sébastien
Your Gentle Organizer :)

lon: -6.25 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/1/6/e/0/highres_446105856.jpeg' - photo_id: 446105856 - photo_link: 'http://photos3.meetupstatic.com/photos/event/1/6/e/0/600_446105856.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/1/6/e/0/thumb_446105856.jpeg' - join_mode: open - organizer: - member_id: 189429713 - name: Tammy Contreraz - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/2/2/e/7/highres_247568935.jpeg' - photo_id: 247568935 - photo_link: 'http://photos1.meetupstatic.com/photos/member/2/2/e/7/member_247568935.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/2/2/e/7/thumb_247568935.jpeg' - members: 32 - name: nodeday + photo_link: 'http://photos3.meetupstatic.com/photos/event/3/8/0/a/600_448514346.jpeg' lat: 53.33000183105469 - who: Members - - utc_offset: 7200000 - country: PL - visibility: public - city: Warsaw - timezone: Europe/Warsaw - created: 1437130817000 - link: 'http://www.meetup.com/React-Warsaw/' - rating: 4.71 - description: >- -

React is a fun, easy - to use Javascript library built at Facebook for web and mobile. It has - changed the way we think about client-side applications through - concepts such as the virtual dom, one-way data flow, immutable data - structures and isomorphism.

- -

This is a group for anyone who has experience working with the React - library or would like to learn more about it.

- -

We meet once a month, generally have 2 speakers and loads of - Q&A, pizzas and beer.

- -

Join us if you'd like to learn more or if you have your own React - experience to share that others can benefit from. If you're interested - in giving a talk, write us here.

- -

See you soon!

- -

- lon: 21.020000457763672 - group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/d/0/6/3/highres_445853347.jpeg' - photo_id: 445853347 - photo_link: 'http://photos4.meetupstatic.com/photos/event/d/0/6/3/600_445853347.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/d/0/6/3/thumb_445853347.jpeg' - join_mode: open - organizer: - member_id: 16279841 - name: Marcin Mieszek - photo: - photo_id: 49693552 - photo_link: 'http://photos2.meetupstatic.com/photos/member/3/4/f/0/member_49693552.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/4/f/0/thumb_49693552.jpeg' - members: 290 - name: React Warsaw - lat: 52.2599983215332 - who: Members - - utc_offset: 7200000 - country: NL - visibility: public - city: Amsterdam - timezone: Europe/Amsterdam - created: 1440685348000 - link: 'http://www.meetup.com/BackendDevelopers/' - description: '

After successfully creating The Frontend Developer Meetup and Angularjs Meetup its time to build up the Backend Developer community. This will eventually grow into individual Backend Developer Language groups or there will be specific Meetups for those programming languages. Lets have fun together, gro and share knowledge

' - lon: 4.889999866485596 + - country: NL + city: Almere + link: 'http://www.meetup.com/Silicon-Polder-Almere/' + name: Silicon Polder (Almere) + description: "We bespreken de laatste ontwikkelingen in ons vakgebied. We kijken naar ontwikkelingen op het gebied van PHP Frameworks, REST API's, Angular, maar er wordt ook gesproken over zaken als continuous integration, software deployment, e.d." + lon: 5.170000076293945 + lat: 52.36000061035156 + - country: DE + city: Berlin + link: 'http://www.meetup.com/MariaDB-Developers-Berlin-Meetup/' + name: MariaDB Berlin Meetup + description: "

This is a MariaDB Developers meetup group. This group is for everyone interested in the development of MariaDB, MySQL and any other forks of MySQL. You don't necessarily have to be a database developer to join the meetups. The focus is not purely on development of MariaDB. There are a lot of other aspects as well including everything from all the tools around MariaDB to community related aspects to documentation and infrastructure. Simply, if you're interested in becoming involved in making MariaDB better, please join!

" + lon: 13.380000114440918 + lat: 52.52000045776367 + - country: DE + city: Karlsruhe + link: 'http://www.meetup.com/Hackschool-KA/' + name: Hackschool - Karlsruhe + description: |- +

GERMAN - DEUTSCH 

+

Technik und Code gemeinsam erleben und verstehen. Bei der Hackschool steht die Atmosphäre und das freie Lernen im Vordergrund. Dabei bietet Hackerstolz e.V. Hilfe zur Selbsthilfe. Mitmachen kann Jede und Jeder! Bitte bringt all eure Neugierde und Fragen mit! Vorkenntnisse sind nicht erforderlich, da mit individueller Betreuung auf die einzelnen Fähigkeiten eingegangen wird. Ein eigenes Laptop wäre von Vorteil, es gibt aber auch Geräte vor Ort, die jeder mitverwenden kann. 

+


+

ENGLISH - ENGLISCH 

+

Let's both experience and understand tech and code together. The Hackerstolz e.V. Hackschool empowers open learning with an atmosphere that helps you help yourself and others. Everyone is invited to take part! Bring all your curiosity and questions with you! No experience required beforehand, as we offer an individual mentor-based training for each skillset. An own Laptop would be awesome, but isn't required - we have some available that everyone can use.

+

+

An event made with love by Hackerstolz e.V.

+ lon: 8.399999618530273 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/4/2/2/9/highres_447496937.jpeg' - photo_id: 447496937 - photo_link: 'http://photos4.meetupstatic.com/photos/event/4/2/2/9/600_447496937.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/4/2/2/9/thumb_447496937.jpeg' - join_mode: open - organizer: - member_id: 185185670 - name: Luke Thomas - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/1/a/1/b/highres_249186683.jpeg' - photo_id: 249186683 - photo_link: 'http://photos4.meetupstatic.com/photos/member/1/a/1/b/member_249186683.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/1/a/1/b/thumb_249186683.jpeg' - members: 165 - name: Backend Developer Meetup Group - lat: 52.369998931884766 - who: Backend Developers - - utc_offset: 3600000 - country: IE - visibility: public - city: Dublin - timezone: Europe/Dublin - created: 1442311125000 - link: 'http://www.meetup.com/Dun-Laoghaire-node-Meetup/' - rating: 5 - description: >- -

We are going to experiment with this meetup, We started with nodeJS - and nodeschool, we are now thinking we can do more than just nodeJS, - members drive what this group does so feel free to reach out and tell - us what you would like to do, so far we have

- -

• AngularJS

- -

• ReactJS

- -

• AWS Lambdas and AWS API gateway

- -

• NodeJS

- -

• SailsJS

- -

Our guideline is that we write code or build products at the - meet-up.

- lon: -6.25 - join_mode: open - organizer: - member_id: 49776862 - name: Podge O BRien - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/2/0/1/highres_249720513.jpeg' - photo_id: 249720513 - photo_link: 'http://photos3.meetupstatic.com/photos/member/2/0/1/member_249720513.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/2/0/1/thumb_249720513.jpeg' - members: 198 - name: Dun Laoghaire Node/Angular/Meteor/React meetup - lat: 53.33000183105469 - who: coders - - utc_offset: 7200000 - country: IT - visibility: public - city: Milano - timezone: Europe/Rome - created: 1443435342000 - link: 'http://www.meetup.com/milano-front-end/' - rating: 4.53 - description: >- -

Questo è un gruppo per chiunque sia interessato allo sviluppo web - front-end. CSS, Javascript , jQuery , frameworks, performance, etc. - Incontriamoci per discuterne! 

- -

This is a group for anyone interested in front-end web development. - CSS, Javascript, jQuery, Frameworks, performances, etc. Let's meet to - discuss about it! English-speaking participants are welcome!

- -

Join us on Slack, send us a message requesting to be added!

- -

su Twitter: @milanofrontend

- lon: 9.1899995803833 - join_mode: open - organizer: - member_id: 140072972 - name: Alessandro Muraro - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/2/2/0/highres_250080544.jpeg' - photo_id: 250080544 - photo_link: 'http://photos3.meetupstatic.com/photos/member/2/2/0/member_250080544.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/2/2/0/thumb_250080544.jpeg' - members: 323 - name: Milano Front End - state: MI - lat: 45.459999084472656 - who: Frontenders - - utc_offset: 7200000 - country: NL - visibility: public - city: Den Haag - timezone: Europe/Amsterdam - created: 1451922925000 - link: 'http://www.meetup.com/Part-up-Hackathon/' - rating: 4.5 - description: >- -

Part-up is a platform for matching people to temporary teams. We - will help you find and build the best team for your project, startup, - community or organization. Organizations can get their own - tribe on part-up.com to become a decentralized collaborative - organizations (DCO) and allow for bottom-up collaboration within, on - the edge or outside of the current organizational - boundaries.

- -

Part-up can be used by everyone, is developed by anyone and is going - to be owned by the community that builds the platform and its use. We - believe in building Part-up as a decentralized collaborative - organization and therefore opensourced the Part-up codebase and - Part-up development process. 

- -

So, are you a coder, designer, or creative, …? Interested in - Part-up, wanting to learn more about open source development and - crowd(re)sourced projects? Then you don’t want to miss the hackathons - and Developer meetups we organize!

- -

Great to have you in the community. 

- -

Cheers, Ralph (founder and product manager)

- lon: 4.28000020980835 - group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/b/8/4/f/highres_445667183.jpeg' - photo_id: 445667183 - photo_link: 'http://photos2.meetupstatic.com/photos/event/b/8/4/f/600_445667183.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/b/8/4/f/thumb_445667183.jpeg' - join_mode: open - organizer: - member_id: 187900723 - name: Ralph Boeije - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/2/1/0/9/highres_246548457.jpeg' - photo_id: 246548457 - photo_link: 'http://photos1.meetupstatic.com/photos/member/2/1/0/9/member_246548457.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/2/1/0/9/thumb_246548457.jpeg' - members: 73 - name: Part-up Hackathons and Developer meetups - lat: 52.08000183105469 - who: Uppers - - utc_offset: 7200000 - country: AT - visibility: public - city: Vienna - timezone: Europe/Vienna - created: 1452028506000 - link: 'http://www.meetup.com/Commit-Vienna-Hackathons/' - rating: 5 - description: 'We are passionate about Open-Source Software and love to code. We organize and host hackathons and hackergartens on a regularly basis, to commit to Open-Source, code for competitions and enjoy hacking together.' - lon: 16.3700008392334 - join_mode: open - organizer: - member_id: 97133082 - name: Christoph Körner - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/c/4/2/4/highres_240650212.jpeg' - photo_id: 240650212 - photo_link: 'http://photos3.meetupstatic.com/photos/member/c/4/2/4/member_240650212.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/c/4/2/4/thumb_240650212.jpeg' - members: 85 - name: Commit Vienna Hackathons - lat: 48.220001220703125 - who: Hackers - - utc_offset: 7200000 - country: DE - visibility: public - city: Karlsruhe - timezone: Europe/Berlin - created: 1452189320000 - link: 'http://www.meetup.com/MEAN-Stack-Karlsruhe/' - description: >- - Verwendest du den MEAN Stack oder möchtest du ihn verwenden? Link: - http://mean.io/#!/ - - - - - - MEAN steht für Mongo-ExpressJS-AngularJS-NodeJS - lon: 8.399999618530273 - join_mode: open - organizer: - member_id: 98417622 - name: Martin Welker - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/f/d/f/highres_245884063.jpeg' - photo_id: 245884063 - photo_link: 'http://photos1.meetupstatic.com/photos/member/f/d/f/member_245884063.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/f/d/f/thumb_245884063.jpeg' - members: 33 - name: MEAN Stack Karlsruhe + photo_link: 'http://photos1.meetupstatic.com/photos/event/b/b/1/9/600_448607897.jpeg' lat: 49 - who: MEANers - - utc_offset: 3600000 - country: IE - visibility: public - city: Dublin - timezone: Europe/Dublin - created: 1452365210000 - link: 'http://www.meetup.com/Dublin-Coder-Forge/' - rating: 4.17 - description: 'A place to learn how to forge out code, to smyth out patterns and designs. Complete beginners welcome, bring your own laptop.' - lon: -6.25 - join_mode: open - organizer: - member_id: 183789567 - name: Daithi Coombes - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/c/d/f/c/highres_245212732.jpeg' - photo_id: 245212732 - photo_link: 'http://photos4.meetupstatic.com/photos/member/c/d/f/c/member_245212732.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/c/d/f/c/thumb_245212732.jpeg' - members: 182 - name: Dublin - Coder Forge - lat: 53.33000183105469 - who: Coders - - utc_offset: 3600000 - country: PT - visibility: public - city: Abrantes - timezone: Europe/Lisbon - created: 1452685350000 - link: 'http://www.meetup.com/tagusjs/' - description: '

Vem conhecer outros utilizadores, entusiastas ou interessados em Javascript na zona centro de Portugal.

' - lon: -8.1899995803833 - group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/d/f/0/4/highres_446277092.jpeg' - photo_id: 446277092 - photo_link: 'http://photos1.meetupstatic.com/photos/event/d/f/0/4/600_446277092.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/d/f/0/4/thumb_446277092.jpeg' - join_mode: open - organizer: - member_id: 98831682 - name: Pedro Dias - photo: - photo_id: 126569172 - photo_link: 'http://photos3.meetupstatic.com/photos/member/7/1/f/4/member_126569172.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/7/1/f/4/thumb_126569172.jpeg' - members: 27 - name: TagusJS - lat: 39.470001220703125 - who: Coder - - utc_offset: 10800000 - country: UA - visibility: public - city: Chernihiv - timezone: Europe/Kiev - created: 1452726511000 - link: 'http://www.meetup.com/chernihivjs/' - description: '

Meetup group for JavaScript professionals to discuss technology, share experience and find solutions.

' - lon: 31.290000915527344 - group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/5/c/1/1/highres_445883569.jpeg' - photo_id: 445883569 - photo_link: 'http://photos4.meetupstatic.com/photos/event/5/c/1/1/600_445883569.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/5/c/1/1/thumb_445883569.jpeg' - join_mode: approval - organizer: - member_id: 133442322 - name: Roman Liutikov - photo: - photo_id: 193869622 - photo_link: 'http://photos4.meetupstatic.com/photos/member/2/5/9/6/member_193869622.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/2/5/9/6/thumb_193869622.jpeg' - members: 15 - name: Chernihiv JavaScript Meetup Group - lat: 51.5 - who: Software Engineers - - utc_offset: 3600000 - country: GB - visibility: public - city: London - timezone: Europe/London - created: 1452963589000 - link: 'http://www.meetup.com/Node-js-Meetup-London/' - description: >- -

JavaScript is quickly becoming the language that drives your - website, your server and your database. It can also run your operating - system, your nintendo emulator and the new EPIC game engine.  -

- -

In this group we focus on the server side - Node.js. Thanks to v8, - it runs many times faster than PHP, Ruby or Python, and thanks to the - event-based design, it is the ultimate back-end for mobile and web - applications. It is fast to code and needs less CPU & RAM - - speeding up your development and saving you server costs. 

- -

The group is open to anyone interested. Whether you're wondering why - in the world you would want to put JavaScript on a server or want to - discuss how async/await is the best thing since sliced bread, let's - meet up!

- lon: -0.10000000149011612 - group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/3/e/7/5/highres_445935989.jpeg' - photo_id: 445935989 - photo_link: 'http://photos4.meetupstatic.com/photos/event/3/e/7/5/600_445935989.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/3/e/7/5/thumb_445935989.jpeg' - join_mode: open - organizer: - member_id: 37709632 - name: Andreas Lubbe - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/7/9/a/7/highres_245971143.jpeg' - photo_id: 245971143 - photo_link: 'http://photos4.meetupstatic.com/photos/member/7/9/a/7/member_245971143.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/7/9/a/7/thumb_245971143.jpeg' - members: 222 - name: Node.js Meetup London - state: '17' - lat: 51.52000045776367 - who: JavaScripters - - utc_offset: 10800000 - country: RO - visibility: public_limited - city: Bucharest - timezone: Europe/Bucharest - created: 1453212727000 - link: 'http://www.meetup.com/Bucharest-Full-Stack-Devs-Meetup/' - description: '

Devs who care about javascript from the front-end to the services in the back-end can meet other devs with similar interests. We speak javascript, node js, angular, elastic, you name it. Full vertical.

' - lon: 26.100000381469727 - group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/3/3/5/highres_446460821.jpeg' - photo_id: 446460821 - photo_link: 'http://photos3.meetupstatic.com/photos/event/3/3/5/600_446460821.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/3/3/5/thumb_446460821.jpeg' - join_mode: open - organizer: - member_id: 187352078 - name: Razvan Visan - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/3/b/0/9/highres_246315113.jpeg' - photo_id: 246315113 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/b/0/9/member_246315113.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/3/b/0/9/thumb_246315113.jpeg' - members: 117 - name: Bucharest Full Stack Devs Meetup - lat: 44.439998626708984 - who: devs - - utc_offset: 7200000 - country: NL - visibility: public - city: Amsterdam - timezone: Europe/Amsterdam - created: 1453553529000 - link: 'http://www.meetup.com/Startup-Kerkstraat/' - description: >- -

This group for people involved or interested in startups in or - around the Kerkstraat in Amsterdam.

- -

We want to create a monthly gathering for people of startup - companies located in the Kerkstraat area. Are you a founder, hacker, - freelancer or startup enthousiast living or working in the area of the - Kerkstraat, this group is for you!

- -


- lon: 4.889999866485596 - join_mode: open - organizer: - member_id: 14316294 - name: Jorg Van Der Ham - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/6/7/0/d/highres_242366381.jpeg' - photo_id: 242366381 - photo_link: 'http://photos2.meetupstatic.com/photos/member/6/7/0/d/member_242366381.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/6/7/0/d/thumb_242366381.jpeg' - members: 50 - name: Startup Kerkstraat - lat: 52.369998931884766 - who: Kerkstraat entrepreneurs - - utc_offset: 7200000 - country: FR - visibility: public - city: Lille - timezone: Europe/Paris - created: 1453890426000 - link: 'http://www.meetup.com/altima-front-end/' - rating: 5 - description: >- -

Tous les 3 mois, l’équipe front-end altima vous propose - d’échanger autour de sujets front-end.

- -

2 à 3 talks d’experts pour partager sur ce métier qui évolue sans - cesse.

- -


- -

Nous abordons tous les sujets front-end, HTML, CSS ou - JS.

- -


- -

Les talks sont ouverts à tout public, que vous soyez débutant - ou expert, geek ou nerd !

- lon: 3.069999933242798 - group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/8/6/9/3/highres_446314451.jpeg' - photo_id: 446314451 - photo_link: 'http://photos4.meetupstatic.com/photos/event/8/6/9/3/600_446314451.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/8/6/9/3/thumb_446314451.jpeg' - join_mode: open - organizer: - member_id: 183177391 - name: Alexis - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/5/5/2/3/highres_253341795.jpeg' - photo_id: 253341795 - photo_link: 'http://photos2.meetupstatic.com/photos/member/5/5/2/3/member_253341795.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/5/5/2/3/thumb_253341795.jpeg' - members: 104 - name: altima front-end - lat: 50.63999938964844 - who: altiDevs - - utc_offset: 7200000 - country: FR - visibility: public - city: Paris - timezone: Europe/Paris - created: 1453914130000 - link: 'http://www.meetup.com/Vuejs-Paris/' - rating: 5 - description: >- -

Vue.js community in Paris

- -

Groupe de talks, discussions, ateliers, etc. Autour de Vue.js

- -

Nous Sommes à la recherche d'hébergeurs pour nos prochains - Meetups ainsi que de sponsors et de speakers ! Si tu es - intéressé, envoie un mail a vue@posva.net pour se mettre en contact - !

- -

We are actively looking for hosts, sponsors and speakers (and - not just francophones, so don't be shy!). Get in touch by sending an - email to vue@posva.net

- lon: 2.3399999141693115 - group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/d/c/8/4/highres_446336452.jpeg' - photo_id: 446336452 - photo_link: 'http://photos2.meetupstatic.com/photos/event/d/c/8/4/600_446336452.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/d/c/8/4/thumb_446336452.jpeg' - join_mode: open - organizer: - member_id: 184943246 - name: Eduardo - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/6/4/7/f/highres_251965727.jpeg' - photo_id: 251965727 - photo_link: 'http://photos3.meetupstatic.com/photos/member/6/4/7/f/member_251965727.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/6/4/7/f/thumb_251965727.jpeg' - members: 180 - name: Vuejs Paris - lat: 48.86000061035156 - who: Vuers - - utc_offset: 7200000 - country: BE - visibility: public - city: Gent - timezone: Europe/Brussels - created: 1453999130000 - link: 'http://www.meetup.com/JSValley/' - rating: 4.11 - description: >- -

We share valuable content related to the engineering of modern - JavaScript applications.

- -

We intend to fill each meetup with one larger content session and - two shorter inspirational talks. Topic suggestions are more than - welcome and we love to welcome you on stage.

- -

Quality of content is key!

- -

https://twitter.com/JSValley_be

- -

https://www.facebook.com/JSValleyBe

- lon: 3.7200000286102295 - group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/3/6/2/0/highres_447553856.jpeg' - photo_id: 447553856 - photo_link: 'http://photos4.meetupstatic.com/photos/event/3/6/2/0/600_447553856.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/3/6/2/0/thumb_447553856.jpeg' - join_mode: open - organizer: - member_id: 130426882 - name: Jan Rauter - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/6/9/5/c/highres_173486972.jpeg' - photo_id: 173486972 - photo_link: 'http://photos4.meetupstatic.com/photos/member/6/9/5/c/member_173486972.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/6/9/5/c/thumb_173486972.jpeg' - members: 167 - name: JSValley - lat: 51.04999923706055 - who: JavaScript Engineers - - utc_offset: 7200000 - country: FR - visibility: public - city: Paris - timezone: Europe/Paris - created: 1454078489000 - link: 'http://www.meetup.com/Loopback-Paris/' - rating: 4 - description: '

Un groupe pour échanger autour de ce framework NodeJS, et des modules associés (différents SDK, Arc, ...). Ouvert aux gens débutants curieux de découvrir, tout comme aux personnes souhaitant partager leur expérience sur le sujet

' - lon: 2.3399999141693115 - join_mode: open - organizer: - member_id: 148652152 - name: Aurélie Violette - photo: - photo_id: 200464362 - photo_link: 'http://photos2.meetupstatic.com/photos/member/1/1/0/a/member_200464362.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/1/1/0/a/thumb_200464362.jpeg' - members: 209 - name: Loopback Paris - lat: 48.86000061035156 - who: Loopbackeurs - - utc_offset: 7200000 - country: NL - visibility: public - city: Amsterdam - timezone: Europe/Amsterdam - created: 1454508111000 - link: 'http://www.meetup.com/WebDevelopment-Nederland/' - rating: 4.5 - description: >- -

WebDevelopment Nederland organiseert MeetUps over de nieuwste - technologieën en ontwikkelingen binnen webdevelopment. Deze groep richt - zich uitsluitend op: PHP, Javascript, Python, Ruby on Rails en - front-end development. Per kwartaal wordt er een lezing gegeven in - hartje Amsterdam door een toonaangevende specialist binnen de - markt.

- -

Wil je je graag aanmelden als spreker of als attendee, laat het ons - weten!

- lon: 4.889999866485596 - group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/3/1/9/4/highres_446532692.jpeg' - photo_id: 446532692 - photo_link: 'http://photos2.meetupstatic.com/photos/event/3/1/9/4/600_446532692.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/3/1/9/4/thumb_446532692.jpeg' - join_mode: approval - organizer: - member_id: 199039707 - name: Folkert Mudde - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/b/6/e/highres_253552078.jpeg' - photo_id: 253552078 - photo_link: 'http://photos3.meetupstatic.com/photos/member/c/b/6/e/member_253552078.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/b/6/e/thumb_253552078.jpeg' - members: 159 - name: WebDevelopment Nederland - lat: 52.369998931884766 - who: Influencers - - utc_offset: 7200000 - country: DE - visibility: public - city: Bonn - timezone: Europe/Berlin - created: 1454515775000 - link: 'http://www.meetup.com/BonnJS/' - description: 'User group for JavaScript developers in Bonn to learn and discuss about JavaScript. All JavaScript levels are welcome. You can meet people, talk about JavaScript related technologies, find a mentor or someone to do pair programming with, or just work on your own tutorials, books, or projects. No matter if you are into Angular, React, jQuery, Backbone, Ember, Meteor, whatever... Everybody is welcome!' - lon: 7.099999904632568 - join_mode: open - organizer: - member_id: 140938412 - name: Timo Stollenwerk - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/d/1/1/2/highres_244553522.jpeg' - photo_id: 244553522 - photo_link: 'http://photos2.meetupstatic.com/photos/member/d/1/1/2/member_244553522.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/d/1/1/2/thumb_244553522.jpeg' - members: 47 - name: BonnJS - lat: 50.72999954223633 - who: JavaScripters - - utc_offset: 7200000 - country: NL - visibility: public - city: Amsterdam - timezone: Europe/Amsterdam - created: 1454664239000 - link: 'http://www.meetup.com/Spilberg-IT-Development-Meetup/' - description: "This is a meetup group for all IT development professionals; from HTML/CSS to JAVA and from Swift to .NET. All skill levels are welcome. At each meetup, a speaker on a trending topic starts with sharing the latest insights, after which the floor is yours for discussion. All with the purpose to keep each other up to date on the latest development trends. We'll organise the meet up every month at venues in or around Amsterdam. Location, speakers, food and drinks will be arranged by Spilberg IT Development. The topic and the quality of discussion is up to you! Is there any specific topic or speaker you would like to see at the next Meetup? Do you want to share your insights on a( trending) topic yourself? Let us know!" - lon: 4.889999866485596 - join_mode: open - organizer: - member_id: 199196537 - name: David van Brakel - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/6/b/7/c/highres_253587516.jpeg' - photo_id: 253587516 - photo_link: 'http://photos2.meetupstatic.com/photos/member/6/b/7/c/member_253587516.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/6/b/7/c/thumb_253587516.jpeg' - members: 48 - name: Spilberg IT Development Meetup - lat: 52.369998931884766 - who: Development Heroes - - utc_offset: 7200000 - country: SE - visibility: public - city: Luleå - timezone: Europe/Stockholm - created: 1454920998000 - link: 'http://www.meetup.com/Lulea-Web-Application-Developers-Meetup/' - rating: 4.75 - description: >- -

Startat denna grupp för utbyte av kunskaper och kontakter - rörande utveckling av webbapplikationer. 

- -

Vi på Context Sales Sweden etablerar vårt huvudkontor och - utvecklingsteam i Luleå under första kvartalet 2016 och vill därför - gärna bygga ett nätverk med likasinnade i och runt om Luleå. Vill - träffa lokala förmågor för utbyte av erfarenheter, men också för - möjligheter till framtida samarbeten. 

- -

(CSS letar just nu både erfarna seniora- och talangfulla juniora - utvecklare Att utöka teamet med.)

- -

-----------

- -

English:

- -

Have started this group for exchange of knowledge and contacts - regarding development of web applications. 

- -

We at Context Sales Sweden are establishing our main office and - development team in Luleå during the first quarter of 2016 and are - therefore interested in building a network of likeminded in Luleå. Want - to meet local talents for exchange of experiences, but also for the - possibility of working together in the future.

- -

(CSS are at this time looking for both experienced senior and - talented junior developers to expand the team.)

- lon: 22.15999984741211 - group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/8/e/d/3/highres_446976563.jpeg' - photo_id: 446976563 - photo_link: 'http://photos4.meetupstatic.com/photos/event/8/e/d/3/600_446976563.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/8/e/d/3/thumb_446976563.jpeg' - join_mode: open - organizer: - member_id: 196428372 - name: Kristoffer Karlsson - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/d/2/4/0/highres_251873824.jpeg' - photo_id: 251873824 - photo_link: 'http://photos4.meetupstatic.com/photos/member/d/2/4/0/member_251873824.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/d/2/4/0/thumb_251873824.jpeg' - members: 18 - name: Luleå Web Application Developers Meetup - lat: 65.5999984741211 - who: Members - - utc_offset: 7200000 - country: IT - visibility: public - city: Salerno - timezone: Europe/Rome - created: 1455007486000 - link: 'http://www.meetup.com/JS-Salerno/' - rating: 4.8 - description: "

JavaScript è qui da trent'anni ma è più vivo che mai! JS è passato da essere un semplice script di controllo dell'input nei browser a un linguaggio vero e proprio, con un ecosistema di framework e librerie da far impallidire linguaggi più blasonati. E' l'unico vero linguaggio universale, gira ovunque vi sia un browser (anche nel vostro telefonino) e anche su server! E' la porta d'accesso alle WebApp moderne. In questo gruppi saranno accettati i neofiti ed esperti. Organizzeremo incontri mensili (o bi-mensili) come conferenze, inviteremo esperti che soddisferanno le nostre curiosità e faremo rete.

" - lon: 14.779999732971191 - group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/9/d/4/3/highres_447640259.jpeg' - photo_id: 447640259 - photo_link: 'http://photos1.meetupstatic.com/photos/event/9/d/4/3/600_447640259.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/9/d/4/3/thumb_447640259.jpeg' - join_mode: open - organizer: - member_id: 190913308 - name: Michele Nasti - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/7/7/0/3/highres_248550467.jpeg' - photo_id: 248550467 - photo_link: 'http://photos2.meetupstatic.com/photos/member/7/7/0/3/member_248550467.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/7/7/0/3/thumb_248550467.jpeg' - members: 73 - name: 'JavaScript & NodeJS community Salerno' - state: SA - lat: 40.68000030517578 - who: Javascripters - - utc_offset: 7200000 - country: FR - visibility: public - city: Paris - timezone: Europe/Paris - created: 1455010504000 - link: 'http://www.meetup.com/Web-Up-Tech/' - rating: 4.5 - description: "Ce Meetup est destiné à toute la communauté de développement Open Source Web/Cloud/DevOps. Les Thèmes abordés couvrent tous les aspects développement Web (Spring Boot, Angulars JS, Node JS, Mean Stack, HTML5,...) ainsi que les nouvelles architectures Cloud (Micro services, Containers, Ansible, Docker,...) dans un contexte DevOps/Agile. Les sessions organisées se déroulent généralement en soirée et sont animées par des experts dans leur domaine ou des développeurs de tout horizon. Normasys SA (SSII en pleine expansion) sponsorise et gère l'organisation de ces événements avec des partenaires de la place. Votre contribution est la bienvenue pour partager avec les acteurs et développeurs parisiens, votre savoir faire et vos retours sur expériences très précieux. Big Up, Come Up, Web Up ;)" - lon: 2.3399999141693115 - join_mode: open - organizer: - member_id: 196997098 - name: Benbaqqal - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/5/e/1/e/highres_253704094.jpeg' - photo_id: 253704094 - photo_link: 'http://photos2.meetupstatic.com/photos/member/5/e/1/e/member_253704094.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/5/e/1/e/thumb_253704094.jpeg' - members: 196 - name: Web Up Tech - lat: 48.86000061035156 - who: Web Uppers - - utc_offset: 3600000 - country: GB - visibility: public - city: London - timezone: Europe/London - created: 1455358011000 - link: 'http://www.meetup.com/React-London-Bring-Your-Own-Project/' - description: "Join other JS and Node developers for a monthly React - Bring Your Own Project - Meetup at SapientNitro, London as we all work on group member's React projects. \n\nBring your questions, your code, and your desire to help. The sessions are informal, friendly, and organised with a loose agenda. Mix with fellow React developers and get learning." - lon: -0.07999999821186066 - join_mode: open - organizer: - member_id: 182823395 - name: James McLeod - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/7/f/a/0/highres_245852672.jpeg' - photo_id: 245852672 - photo_link: 'http://photos1.meetupstatic.com/photos/member/7/f/a/0/member_245852672.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/7/f/a/0/thumb_245852672.jpeg' - members: 137 - name: 'React London : Bring Your Own Project' - state: '17' - lat: 51.52000045776367 - who: Members - - utc_offset: 7200000 - country: SE - visibility: public - city: Göteborg - timezone: Europe/Stockholm - created: 1455811281000 - link: 'http://www.meetup.com/DevBar/' - rating: 5 - description: '

DevBar är mötesplatsen för alla Open Source-kunniga webbutvecklare i Göteborgsområdet som vill sia ny teknik och prata trender inom Open Source-utveckling. Vi står för maten, de kalla dryckerna och diskussionsämnena. Allt du behöver ta med dig är idéer, spaningar och ditt kunnande. Tillsammans skapar vi en härlig stämning i Open Source-utvecklingens tecken.

' - lon: 12.010000228881836 - group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/3/7/e/highres_447000894.jpeg' - photo_id: 447000894 - photo_link: 'http://photos4.meetupstatic.com/photos/event/3/7/e/600_447000894.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/3/7/e/thumb_447000894.jpeg' - join_mode: open - organizer: - member_id: 91824512 - name: Hannah Andersson - photo: - photo_id: 114866332 - photo_link: 'http://photos3.meetupstatic.com/photos/member/6/6/d/c/member_114866332.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/6/6/d/c/thumb_114866332.jpeg' - members: 96 - name: DevBar - lat: 57.720001220703125 - who: Devs - - utc_offset: 3600000 - country: GB - visibility: public - city: London - timezone: Europe/London - created: 1455829303000 - link: 'http://www.meetup.com/Serverless-London/' - description: "A group for anyone interested in building web, mobile and Internet-of-Things applications with serverless architectures using the Serverless Framework and more! We'll focus heavily on Amazon Web Services and discuss AWS Lambda as the focal point of AWS." - lon: -0.10000000149011612 - join_mode: open - organizer: - member_id: 60735482 - name: Austen Collins - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/c/3/d/4/highres_232010132.jpeg' - photo_id: 232010132 - photo_link: 'http://photos4.meetupstatic.com/photos/member/c/3/d/4/member_232010132.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/c/3/d/4/thumb_232010132.jpeg' - members: 177 - name: Serverless London - state: '17' - lat: 51.52000045776367 - who: Members - - utc_offset: 7200000 - country: HU - visibility: public_limited - city: Budapest - timezone: Europe/Budapest - created: 1455873122000 - link: 'http://www.meetup.com/Corporate-JavaScript-Meetup-Budapest/' - description: '

A csoport célja a JavaScript technológia evangelizálása a hazai corporate fejlesztők körében. Szeretnénk megmutatni, hogy milyen bevált toolok és praktikák vannak a vállalati környezetben.

' - lon: 19.079999923706055 - group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/8/e/c/5/highres_447216549.jpeg' - photo_id: 447216549 - photo_link: 'http://photos1.meetupstatic.com/photos/event/8/e/c/5/600_447216549.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/8/e/c/5/thumb_447216549.jpeg' - join_mode: open - organizer: - member_id: 142482482 - name: Orsolya Jusztin - photo: - photo_id: 191458652 - photo_link: 'http://photos3.meetupstatic.com/photos/member/e/5/1/c/member_191458652.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/e/5/1/c/thumb_191458652.jpeg' - members: 162 - name: Corporate JavaScript Meetup Budapest - lat: 47.5099983215332 - who: Member - - utc_offset: 7200000 - country: DE - visibility: public - city: Hamburg - timezone: Europe/Berlin - created: 1456180680000 - link: 'http://www.meetup.com/Node-RED-Hamburg/' - description: "

Let's connect – machines, apps, people, everything... If you like cyberphysical data-plumbing, then you gotta love Node-RED! We are looking for passionate Geeks (f/m) within the IoT sphere to hang out and share our latest hacks, technologies and ideas with. Regarding to one of the most impactful IoT-tools out there right now, we invite you to join us and show off your favorite Node-RED nodes and get inspiration from the community. Beginners, Makers, Scientists, Professionals – feel free to contribute!

" - lon: 10 - join_mode: open - organizer: - member_id: 200246228 - name: Marius Schmeding - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/6/d/e/e/highres_254128142.jpeg' - photo_id: 254128142 - photo_link: 'http://photos1.meetupstatic.com/photos/member/6/d/e/e/member_254128142.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/6/d/e/e/thumb_254128142.jpeg' - members: 52 - name: Node-RED Hamburg - lat: 53.54999923706055 - who: Connectors - - utc_offset: 3600000 - country: GB - visibility: public - city: London - timezone: Europe/London - created: 1456487848000 - link: 'http://www.meetup.com/Coding-Hour-London-After-work-drinks-for-developers/' - description: >- -

This meetup group is gathering code enthusiasts in a chilled and fun - atmosphere: while drinking beers, attendees will be invited to solve - algorithm challenges in a limited time.

- -

Coding Hour is the occasion for developers to get together and to - improve their skills on a specific technology.

- lon: -0.10000000149011612 - group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/1/8/a/highres_447240394.jpeg' - photo_id: 447240394 - photo_link: 'http://photos4.meetupstatic.com/photos/event/1/8/a/600_447240394.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/1/8/a/thumb_447240394.jpeg' - join_mode: open - organizer: - member_id: 188412542 - name: Julie - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/1/7/e/f/highres_250566127.jpeg' - photo_id: 250566127 - photo_link: 'http://photos3.meetupstatic.com/photos/member/1/7/e/f/member_250566127.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/1/7/e/f/thumb_250566127.jpeg' - members: 247 - name: Coding Hour London - After work drinks for developers - state: '17' - lat: 51.52000045776367 - who: Happy coders - - utc_offset: 7200000 - country: DE - visibility: public - city: Heidelberg - timezone: Europe/Berlin - created: 1456526508000 - link: 'http://www.meetup.com/RheinNeckarJS/' - description: >- -

RheinNeckarJS is a JavaScript, HTML5 and NodeJS user group in - Heidelberg, Mannheim and the whole region Rhein-Neckar organized by - Martina Kraus and Christoph Martens.

- -


- -

Website: http://rheinneckarjs.github.io/

- -

Twitter: https://twitter.com/RheinNeckarJS

- lon: 8.6899995803833 - join_mode: open - organizer: - member_id: 89188092 - name: Martina Kraus - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/8/c/c/d/highres_254256045.jpeg' - photo_id: 254256045 - photo_link: 'http://photos1.meetupstatic.com/photos/member/8/c/c/d/member_254256045.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/8/c/c/d/thumb_254256045.jpeg' - members: 56 - name: RheinNeckarJS - lat: 49.41999816894531 - who: JavaScriptler - - utc_offset: 3600000 - country: GB - visibility: public - city: London - timezone: Europe/London - created: 1456739168000 - link: 'http://www.meetup.com/Corporate-JavaScript-Meetup-London/' - description: '

Our main goal is to evangelise JavaScript among corporate developers. We want to share the proven tools and the tips in corporate environment.
This is a place to share your knowledge, participate in Q & A and widen your sphere of knowledge.
Free admission!
Join us to participate in this professional forum where everyone is invited!

' - lon: -0.10000000149011612 - group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/3/4/9/d/highres_447373469.jpeg' - photo_id: 447373469 - photo_link: 'http://photos1.meetupstatic.com/photos/event/3/4/9/d/600_447373469.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/3/4/9/d/thumb_447373469.jpeg' - join_mode: open - organizer: - member_id: 142482482 - name: Orsolya Jusztin - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/b/8/5/8/highres_254327192.jpeg' - photo_id: 254327192 - photo_link: 'http://photos2.meetupstatic.com/photos/member/b/8/5/8/member_254327192.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/b/8/5/8/thumb_254327192.jpeg' - members: 132 - name: Corporate JavaScript Meetup London - state: '17' - lat: 51.52000045776367 - who: Members - - utc_offset: 7200000 - country: NL - visibility: public - city: Amsterdam - timezone: Europe/Amsterdam - created: 1456826201000 - link: 'http://www.meetup.com/Coding-Hour-Amsterdam-After-work-drinks-for-developers/' - description: 'This meetup group is gathering code enthusiasts in a chilled and fun atmosphere: while drinking beers, attendees will be invited to solve algorithm challenges in a limited time. Coding Hour is the occasion for developers to get together and to improve their skills on a specific technology.' - lon: 4.889999866485596 - join_mode: open - organizer: - member_id: 198376589 - name: Lisa - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/9/f/3/highres_253671699.jpeg' - photo_id: 253671699 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/9/f/3/member_253671699.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/9/f/3/thumb_253671699.jpeg' - members: 120 - name: Coding Hour Amsterdam - After work drinks for developers - lat: 52.369998931884766 - who: Happy coders - - utc_offset: 7200000 - country: FR - visibility: public - city: Toulouse - timezone: Europe/Paris - created: 1456918208000 - link: 'http://www.meetup.com/Toulouse-AngularJS-Meetup/' - description: >- -

Bienvenue,

- -
- -

Nous recherchons continuellement des speekers et Sponsors. Les - sujets peuvent être de tous niveaux, sur Angular ou - Ionic 1 & 2.

- -
- -

Si vous êtes intéressé merci de me contacter - directement:  https://twitter.com/julienrenaux

- -
- -

PS: Un Slack de la communauté sera - disponible en Avril.

- lon: 1.4500000476837158 - join_mode: open - organizer: - member_id: 185979520 - name: julien renaux - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/c/c/7/1/highres_254392337.jpeg' - photo_id: 254392337 - photo_link: 'http://photos2.meetupstatic.com/photos/member/c/c/7/1/member_254392337.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/c/c/7/1/thumb_254392337.jpeg' - members: 89 - name: AngularJS Toulouse - lat: 43.619998931884766 - who: Angulariens - - utc_offset: 7200000 - country: FR - visibility: public - city: Paris - timezone: Europe/Paris - created: 1457023709000 - link: 'http://www.meetup.com/JavaScript-Lab-Paris/' - description: |- -

Coder. Echanger. S'améliorer.

-

Nous sommes fans de JavaScript et nous nous sommes dit que ça serait vraiment bien d'avoir une communauté de passionnés où les gens peuvent échanger, se rencontrer et apprendre les uns des autres.

Rejoignez-nous et devenons de meilleurs programmeurs, ensemble.

- lon: 2.3399999141693115 - group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/7/2/3/2/highres_447689234.jpeg' - photo_id: 447689234 - photo_link: 'http://photos3.meetupstatic.com/photos/event/7/2/3/2/600_447689234.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/7/2/3/2/thumb_447689234.jpeg' - join_mode: open - organizer: - member_id: 199107375 - name: max czet - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/7/b/4/6/highres_253531558.jpeg' - photo_id: 253531558 - photo_link: 'http://photos4.meetupstatic.com/photos/member/7/b/4/6/member_253531558.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/7/b/4/6/thumb_253531558.jpeg' - members: 294 - name: JavaScript Lab Paris - lat: 48.86000061035156 - who: JavaScripters - - utc_offset: 7200000 - country: CH - visibility: public - city: Bern - timezone: Europe/Zurich - created: 1457361775000 - link: 'http://www.meetup.com/MarkLogic-User-Group-Switzerland/' - description: 'Diese Gruppe ist für alle, die an Enterprise Data Stores für den Einsatz im Digital Business interessiert sind – für Neugierige und Experten. Enterprise Data Stores kommen immer dann zum Einsatz, wenn relationale Datenbanken an ihre Grenzen stossen. Bei unseren Treffen geben wir Tipps und Tricks, stellen Anwendungsbeispiele von Kunden vor und stellen neue Entwicklungen vor. Wir freuen uns auf jeden Teilnehmer und den Austausch mit unseren Gruppenmitgliedern. The MarkLogic User Group (MLUG) is for users and/or fans of MarkLogic and those who are interested in learning more about MarkLogic, XML, XQuery and related technologies. MUGL meetups are free and open to anyone that wishes to attend. There is no formal membership for the group. Our meetings are held quarterly in different regions in Germany. Want to know more about MarkLogic? Read on >> MarkLogic® is a new generation database platform that enables organisations to get more value from more data than ever before. Global enterprises and governments rely on MarkLogic to power intelligent, high performance applications aimed at analysing data for better insights and also running crucial day-to-day business operations. With MarkLogic, organisations achieve faster time-to-value than was possible with legacy databases, while minimising risk and improving data quality. MarkLogic is the only Enterprise NoSQL database—a powerful, agile, trusted database that has the speed and scale of NoSQL coupled with the enterprise features required. · Develop stronger applications faster with a flexible data model using Full-Stack JavaScript, JSON and Node.JS · Find relevant information easier with lightning fast, built-in search · Gain more intelligence in the data layer using semantics and bitemporal · Maintain data resiliency and consistency with ACID transactions, scalability and elasticity, certified security, and high availability and disaster recovery' - lon: 7.440000057220459 - join_mode: open - organizer: - member_id: 201068258 - name: Andreas Esser - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/6/2/6/2/highres_254545186.jpeg' - photo_id: 254545186 - photo_link: 'http://photos4.meetupstatic.com/photos/member/6/2/6/2/member_254545186.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/6/2/6/2/thumb_254545186.jpeg' - members: 10 - name: MarkLogic User Group Switzerland - lat: 46.95000076293945 - who: Mitglieder - - utc_offset: 7200000 - country: FR - visibility: public - city: Paris - timezone: Europe/Paris - created: 1458241991000 - link: 'http://www.meetup.com/ParseServerParisianLovers/' - description: "Suite à leur récente annonce de la fin de Parse.com, Facebook a pris la décision de livrer en Open Source leur solution révolutionnaire de Back End As A Service : Parse Server. La quasi totalité de la suite et des SDKs est désormais open source. Pour que cette belle initiative perdure, il faut fédérer la communauté des développeurs Parse (600 000 à travers le monde) et quoi de mieux qu'un meet up ? Ce groupe s'adresse donc à tous ceux qui : - souhaitent contribuer au projet open source Parse Server - aiment/adorent la solution de Parse et l'utilisent dans leur développement - sont curieux de découvrir cette nouvelle opportunité" - lon: 2.3399999141693115 - join_mode: open - organizer: - member_id: 181431952 - name: Ambroise Collon - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/8/0/1/1/highres_254852785.jpeg' - photo_id: 254852785 - photo_link: 'http://photos2.meetupstatic.com/photos/member/8/0/1/1/member_254852785.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/8/0/1/1/thumb_254852785.jpeg' - members: 55 - name: Parse Server Parisian Lovers - lat: 48.86000061035156 - who: parsers - - utc_offset: 7200000 - country: IT - visibility: public - city: Ferrara - timezone: Europe/Rome - created: 1458261695000 - link: 'http://www.meetup.com/ferrarajs/' - description: "

L'UserGroup di Ferrara e dintorni dedicato al JavaScript e al WebDevelopment! Lo scopo è quello di creare un gruppo di developer appassionati e ritrovi per discutere sulle nuove tecnologie e riscoperte nell'ambito dei nuovi frameworks e librerie, soprattutto nell'ambito dello sviluppo di app mobile, cloud, desktop e multipiattaforma!

" - lon: 11.619999885559082 - group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/9/0/3/c/highres_447936924.jpeg' - photo_id: 447936924 - photo_link: 'http://photos3.meetupstatic.com/photos/event/9/0/3/c/600_447936924.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/9/0/3/c/thumb_447936924.jpeg' - join_mode: open - organizer: - member_id: 194480260 - name: Mattia Manzati - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/9/b/6/9/highres_254859785.jpeg' - photo_id: 254859785 - photo_link: 'http://photos3.meetupstatic.com/photos/member/9/b/6/9/member_254859785.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/9/b/6/9/thumb_254859785.jpeg' - members: 6 - name: Ferrara JavaScript Group - Mobile and cloud app developers - state: FE - lat: 44.84000015258789 - who: developers - - utc_offset: 7200000 - country: FR - visibility: public - city: Neuilly-sur-Seine - timezone: Europe/Paris - created: 1458298725000 - link: 'http://www.meetup.com/Meetup-AngularJS-Neuilly-sur-Seine/' - description: "

Rejoignons-nous pour apprendre le code dans la bonne humeur ! Si vous avez envie d'apprendre AngularJS et le live coding, ainsi que l'évolution du JavaScript, mais pensez que cette activité est réservée aux scientifiques en herbe, révisez votre jugement et venez nous retrouver dans notre espace de co-working. Nous vous montrerons que coder n'est pas sorcier !

" - lon: 2.2699999809265137 - group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/2/a/3/9/highres_447970809.jpeg' - photo_id: 447970809 - photo_link: 'http://photos3.meetupstatic.com/photos/event/2/a/3/9/600_447970809.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/2/a/3/9/thumb_447970809.jpeg' - join_mode: open - organizer: - member_id: 201727236 - name: beezen_meetup_Paris - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/c/0/3/3/highres_254869203.jpeg' - photo_id: 254869203 - photo_link: 'http://photos2.meetupstatic.com/photos/member/c/0/3/3/member_254869203.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/c/0/3/3/thumb_254869203.jpeg' - members: 107 - name: 'Meetup AngularJS & JavaScript' - lat: 48.88999938964844 - who: full stack developer - - utc_offset: 7200000 - country: PL - visibility: public - city: Bydgoszcz - timezone: Europe/Warsaw - created: 1458986435000 - link: 'http://www.meetup.com/meet-js-Bydgoszcz/' - description: '

Luźne, cykliczne spotkania dla osób zainteresowanych technologiami związanymi z JavaScript. Prezentacje prowadzone przez developerów dla developerów w luźnej formule barcampu. Poziom prelekcji jest zróżnicowany tak, że zarówno początkujący jak i JS Ninja znajdą coś dla siebie.

' - lon: 18.010000228881836 - group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/3/f/4/a/highres_448216202.jpeg' - photo_id: 448216202 - photo_link: 'http://photos1.meetupstatic.com/photos/event/3/f/4/a/600_448216202.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/3/f/4/a/thumb_448216202.jpeg' - join_mode: open - organizer: - member_id: 144889162 - name: Michał Załęcki - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/c/8/7/4/highres_253671316.jpeg' - photo_id: 253671316 - photo_link: 'http://photos2.meetupstatic.com/photos/member/c/8/7/4/member_253671316.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/c/8/7/4/thumb_253671316.jpeg' - members: 16 - name: meet.js Bydgoszcz - lat: 53.119998931884766 - who: Devs - - utc_offset: 7200000 - country: AT - visibility: public - city: Graz - timezone: Europe/Vienna - created: 1459029445000 - link: 'http://www.meetup.com/Angular-Meetup-Graz/' - description: Wir treffen uns regelmäßig um über Angular zu sprechen. - lon: 15.420000076293945 - join_mode: open - organizer: - member_id: 188669686 - name: Manfred Steyer - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/a/6/e/d/highres_247062733.jpeg' - photo_id: 247062733 - photo_link: 'http://photos4.meetupstatic.com/photos/member/a/6/e/d/member_247062733.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/a/6/e/d/thumb_247062733.jpeg' - members: 17 - name: Angular Meetup Graz - lat: 47.08000183105469 - who: Angular-Entwickler - - region: Latin America nodeschools: - - name: Belo Horizonte NodeSchool - location: 'Belo Horizonte, BR' + - name: NodeSchool Amsterdam + location: 'Amsterdam, NL' organizers: - - paulohp - - obetomuniz - - victorferraz - - erickbelfy - website: 'http://nodeschool.io/belo-horizonte' - repo: 'http://github.com/nodeschool/belo-horizonte' - lat: -19.9166813 - lon: -43.9344931 - - name: NodeSchool Bogotá - location: 'Bogotá, CO' + - jpwesselink + - rickheere + - stefanmirck + - codeflyer + website: 'http://github.com/nodeschool/amsterdam' + twitter: NodeSchoolAMS + repo: 'http://github.com/nodeschool/amsterdam' + lat: 52.3702157 + lon: 4.895167900000001 + - name: NodeSchool Ankara / Turkey + location: 'Ankara, TR' organizers: - - davsket - - agar3s - - kuryaki - - zaccaro - - buritica - repo: 'http://github.com/nodeschool/bogota' - lat: 4.710988599999999 - lon: -74.072092 - - name: Buenos Aires NodeSchool - location: 'Buenos Aires, AR' + - trkozd + - skaan07 + website: 'http://nodeschool.io/ankara' + repo: 'http://github.com/nodeschool/ankara' + lat: 39.9333635 + lon: 32.8597419 + - name: Augsburg NodeSchool + location: 'Augsburg, DE' organizers: - - a0viedo - website: 'http://nodeschool.io/buenosaires' - twitter: nodeschoolba - repo: 'http://github.com/nodeschool/buenosaires' - lat: -34.6036844 - lon: -58.3815591 - - name: Campinas NodeSchool - location: 'Campinas, SP, BR' + - meaku + - jhnns + - sbat + - flootr + - matthaias + - topa + website: 'http://nodeschool.io/augsburg' + twitter: NodeschoolAugs + repo: 'http://github.com/nodeschool/augsburg' + lat: 48.3705449 + lon: 10.89779 + - name: Barcelona NodeSchool + location: 'Barcelona, ES' organizers: - - fmoliveira - - MiattoRocha - - edersonnascimento - website: 'http://nodeschool.io/campinas' - twitter: nodeschoolcps - repo: 'http://github.com/nodeschool/campinas' - lat: -22.9099384 - lon: -47.0626332 - - name: NodeSchool Cochabamba - location: 'Cochabamba, BO, BO' + - patrickheneise + website: 'http://nodeschool.io/barcelona/' + repo: 'http://github.com/nodeschool/barcelona' + lat: 41.3850639 + lon: 2.1734035 + - name: Belfast NodeSchool + location: 'Belfast, UK' organizers: - - chitopolo - - aquilardo - website: 'http://www.boliviajs.com' - twitter: 'https://www.twitter.com/BoliviaJS' - repo: 'http://github.com/nodeschool/Cochabamba' - lat: -17.4139766 - lon: -66.1653224 - - name: Córdoba NodeSchool - location: 'Córdoba, AR' + - gangleri + - lanazwart + - ablair08 + - chrisfowler + website: 'http://nodeschool.io/belfast' + twitter: '@nodeschoolbel' + repo: 'http://github.com/nodeschool/belfast' + lat: 54.59728500000001 + lon: -5.93012 + - name: NodeSchool Belgrade + location: 'Belgrade, RS' organizers: - - avilaton - website: 'http://nodeschool.io/cordoba' - repo: 'http://github.com/nodeschool/cordoba' - lat: -31.42008329999999 - lon: -64.1887761 - - name: 'NodeSchool Costa Rica ' - location: 'San José, CRI' + - stojanovic + - aysbg + - simalexan + website: 'http://nodeschool.io/belgrade' + repo: 'http://github.com/nodeschool/belgrade' + lat: 44.786568 + lon: 20.4489216 + - name: NodeSchool Berlin + location: 'Berlin, DE' organizers: - - gaboesquivel - website: 'http://meetup.com/costaricajs' - twitter: costaricajs - repo: 'http://github.com/nodeschool/costarica' - lat: 9.6257333 - lon: -84.010995 - - name: Florianópolis NodeSchool - location: 'Florianópolis, SC, BR' + - finnp + - stryju + - johannhof + website: 'http://nodeschool.io/berlin' + repo: 'http://github.com/nodeschool/berlin' + lat: 52.52000659999999 + lon: 13.404954 + - name: NodeSchool Bratislava + location: 'Bratislava, SK' + organizers: + - yangwao + website: 'http://nodeschool.io/bratislava' + repo: 'http://github.com/nodeschool/bratislava' + lat: 48.1485965 + lon: 17.1077477 + - name: Bristol NodeSchool + location: 'Bristol, UK' organizers: - - conrado - website: 'http://nodeschool.io/florianopolis' - twitter: nodeschoolFLN - repo: 'http://github.com/nodeschool/florianopolis' - lat: -27.5953778 - lon: -48.5480499 - - name: NodeSchool Ibagué - location: 'Ibagué, CO' + - permadesign + - fiznool + - katjad + website: 'http://nodeschool.io/bristol' + gitter: 'https://gitter.im/nodeschool/bristol' + repo: 'http://github.com/nodeschool/bristol' + lat: 51.454513 + lon: -2.58791 + - name: Chernivtsi NodeSchool + location: 'Chernivtsi, UA' organizers: - - gioyik - - yeisontapia - - pandres95 - - zheref - repo: 'http://github.com/nodeschool/ibague' - lat: 4.444675999999999 - lon: -75.24243799999999 - - name: Manizales NodeSchool - location: 'Manizales, CO' + - denysdovhan + twitter: denysdovhan + repo: 'http://github.com/nodeschool/chernivtsi' + lat: 48.2920787 + lon: 25.9358367 + - name: Dublin NodeSchool + location: 'Dublin, IE' organizers: - - gmauricio - repo: 'http://github.com/nodeschool/manizales' - lat: 5.070275 - lon: -75.5138166 - - name: NodeSchool Medellín - location: 'Medellín, CO' + - no9 + - johnbrett + - jasonmarah + - johnbrett + - akohli + - davecocoa + - lorcanmcdonald + - gangleri + website: 'http://nodeschool.io/dublin' + twitter: '@nodeschooldub' + repo: 'http://github.com/nodeschool/dublin' + lat: 53.3498053 + lon: -6.2603097 + - name: Faro NodeSchool + location: 'Faro, PT' organizers: - - julianduque - - edsadr - - academo - repo: 'http://github.com/nodeschool/medellin' - lat: 6.253040800000001 - lon: -75.5645737 - - name: Mexico City NodeSchool - location: 'Mexico City, MX' + - mcoquet + - nneves + - rsoares + repo: 'http://github.com/nodeschool/faro' + lat: 37.0193548 + lon: -7.9304397 + - name: Foyle NodeSchool + location: 'Derry/Londonderry, UK' organizers: - - jeduan - - rogr - - siedrix - website: 'http://nodeschool.io/mexicocity' - repo: 'http://github.com/nodeschool/mexicocity' - lat: 19.4326077 - lon: -99.133208 - - name: Montevideo NodeSchool - location: 'Montevideo, UY' + - sjmerrigan + - kieranheg + - vquigley + - CahalKearney + - gangleri + - diarmaidm + website: 'http://nodeschool.io/foyle-valley' + repo: 'http://github.com/nodeschool/foyle-valley' + lat: 54.9966124 + lon: -7.3085748 + - name: NodeSchool Haarlem + location: 'Haarlem, NL' organizers: - - pdjota - - pricco - - mprunell - repo: 'http://github.com/nodeschool/montevideo' - lat: -34.9011127 - lon: -56.16453139999999 - - name: NodeSchool Pereira - location: 'Pereira, CO' + - rickheere + - jpwesselink + - codeflyer + - stefanmirck + website: 'http://nodeschool.io/haarlem' + repo: 'https://github.com/nodeschool/haarlem' + lat: 52.3873878 + lon: 4.6462194 + - name: NodeSchool Hamburg + location: 'Hamburg, DE' organizers: - - cronopio - - pin3da - - jhonber - repo: 'http://github.com/nodeschool/pereira' - website: 'http://nodeschool.io/pereira' - twitter: PereiraJS_ - lat: 4.8087174 - lon: -75.690601 - - name: Puerto Rico NodeSchool - location: 'Puerto Rico, PR' + - greelgorke + website: 'http://nodeschool.io/hamburg' + repo: 'http://github.com/nodeschool/hamburg' + lat: 53.5510846 + lon: 9.9936818 + - name: NodeSchool Heidelberg + location: 'Heidelberg, DE' organizers: - - gcollazo - - jpadilla - - elving - - jomajoma - - froi - website: 'http://nodeschool.io/puertorico/' - repo: 'http://github.com/nodeschool/puertorico' - lat: 18.220833 - lon: -66.590149 - - name: Rio de Janeiro NodeSchool - location: 'Rio de Janeiro, RJ, BR' + - martensms + - iUsemws + website: 'http://nodeschool.io/heidelberg' + twitter: 'https://twitter.com/nodeschoolhd' + repo: 'http://github.com/nodeschool/heidelberg' + lat: 49.3987524 + lon: 8.6724335 + - name: Helsinki NodeSchool + location: 'Helsinki, FI' organizers: - - milesibastos - website: 'http://nodeschool.io/rio' - gitter: 'https://gitter.im/nodeschool/rio' - repo: 'http://github.com/nodeschool/rio' - lat: -22.9068467 - lon: -43.1728965 - - name: San Ignacio NodeSchool - location: 'San Ignacio, PY' + - laurisvan + - jubilem + website: 'http://nodeschool.io/helsinki/' + twitter: helnode + repo: 'https://github.com/nodeschool/helsinki' + lat: 60.16985569999999 + lon: 24.938379 + - name: NodeSchool Hradec Králové + location: 'Hradec Králové, CZ' organizers: - - matiasinsaurralde - - luchobenitez - - carloscarvallo - website: 'http://nodeschool.io/sanignacio' - repo: 'http://github.com/nodeschool/sanignacio' - lat: -26.8433512 - lon: -57.10131879999999 - - name: NodeSchool Santa Marta - location: 'Santa Marta, CO' + - bajtos + repo: 'http://github.com/nodeschool/hradec-kralove' + lat: 50.2103605 + lon: 15.825211 + - name: NodeSchool Istanbul + location: 'Istanbul, TR' organizers: - - pedroromn - - gengue - website: 'http://nodeschool.io/santamarta/' - repo: 'http://github.com/nodeschool/santamarta' - lat: 11.2403547 - lon: -74.2110227 - - name: Santiago NodeSchool - location: 'Santiago, CL' + - arifcakiroglu + - yasinaydin + - huseyinbabal + website: 'http://nodeschool.io/istanbul' + twitter: 'https://twitter.com/NodeSchool_Ist' + repo: 'http://github.com/nodeschool/istanbul' + lat: 41.0082376 + lon: 28.9783589 + - name: NodeSchool Italy + location: Italy organizers: - - forres - - noderscl - - maetschl - - josev55 - website: 'http://www.noders.cl' - twitter: noderscl - repo: 'http://github.com/nodeschool/Santiago' - lat: -33.4488897 - lon: -70.6692655 - - name: USAC NodeSchool - location: 'USAC, Guatemala City, GT' + - matteocollina + - MarcoPiraccini + website: 'http://nodeschool.io/italy' + repo: 'http://github.com/nodeschool/italy' + lat: 41.87194 + lon: 12.56738 + - name: NodeSchool Kyiv + location: 'Kyiv, UA' organizers: - - edwinallenz - - bladimir47 - - ottogiron - - osukaa - - gepser - - jossemarGT - - viktorcoradov - - braestuart - - cruzperez - - hhgn32 - - bvalenzuela - - louicruz - - Lucosenza2015 - repo: 'https://github.com/nodeschool/usac.gt' - lat: 14.5881064 - lon: -90.5477204 - meetups: - - utc_offset: -10800000 - country: CL - visibility: public - city: Santiago - timezone: America/Santiago - created: 1327104156000 - link: 'http://www.meetup.com/betazeta/' - rating: 4.83 - description: '

Aqui nos juntamos los nerds y geeks a jugar con las tecnologias que nos gustan, tincan o simplemente las que nos dan curiosidad. Usamos la base de IT de Betazeta para disparar las tecnologias que nos gustaria que construyan la proxima internet o lo que es lo mimo, con las que todos la estamos construyendo :)

' - lon: -70.63999938964844 - group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/4/4/d/6/highres_88277622.jpeg' - photo_id: 88277622 - photo_link: 'http://photos2.meetupstatic.com/photos/event/4/4/d/6/600_88277622.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/4/4/d/6/thumb_88277622.jpeg' - join_mode: open - organizer: - member_id: 14356399 - name: Yury Cancino - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/4/f/e/7/highres_12440455.jpeg' - photo_id: 12440455 - photo_link: 'http://photos1.meetupstatic.com/photos/member/4/f/e/7/member_12440455.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/4/f/e/7/thumb_12440455.jpeg' - members: 290 - name: Betazeta Tech Talks - lat: -33.459999084472656 - who: geeks - - utc_offset: -10800000 - country: AR - visibility: public - city: Buenos Aires - timezone: America/Buenos_Aires - created: 1345554423000 - link: 'http://www.meetup.com/NodeJS-Argentina/' - rating: 4.68 - description: "

Este grupo esta abierto para todo aquel interesado en conocer mas sobre Node.JS. La idea es generar un espacio donde podamos aprender unos de otros y adquirir o generar nuevo conocimientos.

\n

Los objetivos son:

\n
    \n

    Servir de guía a nuevos usuarios para que puedan desarrollarse

    \n

    Aportar buenas practicas y metodologías

    \n

    Servir de laboratorio de testeo de nuevas funcionalidades y/o módulos

    \n

    Difundir el conocimiento sobre Node.JS

    \n

    Difundir Node.JS dentro de la comunidad informática de Argentina

    \n
\n

Nota: esta es una primera definición y puede sufrir cambios a partir de las discusiones del foro o votaciones. Así que por favor dense una vuelta por el foro y las encuestas.

\n

Vínculos importantes para el grupo.

\n

No se permite SPAM de ningún tipo en la lista de correo electrónico, ni en los comentarios, ni en los canales de Slack.

\n

Para recruiters existe una sección en el foro para poner las ofertas laborales, tambien tenemos un canal en Slack.

\n\n

Slack TeamSite

\n

Slack es un sitio de chat similar a IRC. Tenemos un site de Slack en nodejsar.slack.com. Esto es por invitación asi que envien la solicitud por esta pagina.

\n

Google+

\n

También tenemos una Comunidad en G+

\n

Twitter

\n

Nuestro twitter es @NodeJSArgentina

\n

Dashboard de proyectos

\n

Tenemos un Dashboard de proyectos. Pueden sumarse o agregar alguno.

\n

Videos

\n

Aqui estan los videos de las meetups

\n

La marca Node.js y los logos son propiedad de Joyent.

\n

El presente grupo no tiene relación comercial alguna con la empresa Joyent.

" - lon: -58.369998931884766 - join_mode: open - organizer: - member_id: 46861012 - name: Juan Pablo Kutianski - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/f/c/a/highres_205804042.jpeg' - photo_id: 205804042 - photo_link: 'http://photos4.meetupstatic.com/photos/member/f/c/a/member_205804042.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/f/c/a/thumb_205804042.jpeg' - members: 546 - name: Node.JS Argentina - lat: -34.61000061035156 - who: Miembros - - utc_offset: -18000000 - country: CO - visibility: public - city: Medellín - timezone: America/Bogota - created: 1349047951000 - link: 'http://www.meetup.com/MedellinJS/' - rating: 4.83 - description: >- -

Hemos creado este grupo con el fin de reunir, compartir y aprender - de los desarrolladores JavaScript de la ciudad de Medellín, - Colombia.

- -

Nuestra filosofía será siempre la de mantener un ambiente informal, - nada estricto en ningún sentido. Así que cualquier colaboración, en - cualquier sentido, será muy bien recibida.

- -

¡Bienvenido!

- lon: -75.58999633789062 - group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/b/c/5/e/highres_164568222.jpeg' - photo_id: 164568222 - photo_link: 'http://photos3.meetupstatic.com/photos/event/b/c/5/e/600_164568222.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/b/c/5/e/thumb_164568222.jpeg' - join_mode: open - organizer: - member_id: 20198871 - name: Julián Duque - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/5/5/6/d/highres_254181869.jpeg' - photo_id: 254181869 - photo_link: 'http://photos4.meetupstatic.com/photos/member/5/5/6/d/member_254181869.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/5/5/6/d/thumb_254181869.jpeg' - members: 2137 - name: MedellínJS - lat: 6.25 - who: JavaScripters - - utc_offset: -21600000 - country: MX - visibility: public - city: México City - timezone: America/Mexico_City - created: 1349885108000 - link: 'http://www.meetup.com/web-mobile/' - rating: 5 - description: >- -

Desarrolladores y diseñadores apasionados por la web y temas - móviles. Programamos temas sobre HTML5, CSS5, JavaScript y desarrollo - móvil. Se discuten las herramientas y tecnologías como jQuery, Node.js, - Angular.js, Google Closure.

- -

Librerías del stack Web como Require.js, Backbone.js, - Underscore.js

- -

Grupo oficial de usuarios de Adobe(LiveData).

- lon: -99.13999938964844 - group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/a/3/a/e/highres_373781902.jpeg' - photo_id: 373781902 - photo_link: 'http://photos4.meetupstatic.com/photos/event/a/3/a/e/600_373781902.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/a/3/a/e/thumb_373781902.jpeg' - join_mode: open - members: 51 - name: 'Mexico City Web & Mobile' - lat: 19.43000030517578 - who: Creative Coders - - utc_offset: -10800000 - country: UY - visibility: public - city: Montevideo - timezone: America/Montevideo - created: 1352908556000 - link: 'http://www.meetup.com/montevideojs/' - rating: 4.56 - description: >- -

This is a group for anyone interested in js, html, css and - nodejs. Our GitHub.

- -

Code of Conduct: http://confcodeofconduct.com/

- lon: -56.16999816894531 - group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/4/6/5/d/highres_447618013.jpeg' - photo_id: 447618013 - photo_link: 'http://photos1.meetupstatic.com/photos/event/4/6/5/d/600_447618013.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/4/6/5/d/thumb_447618013.jpeg' - join_mode: open - organizer: - member_id: 69653572 - name: Pablo Ricco - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/8/7/9/8/highres_94534712.jpeg' - photo_id: 94534712 - photo_link: 'http://photos3.meetupstatic.com/photos/member/8/7/9/8/member_94534712.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/8/7/9/8/thumb_94534712.jpeg' - members: 628 - name: The Montevideo Javascript Meetup Group - lat: -34.869998931884766 - who: Javascripters - - utc_offset: -10800000 - country: BR - visibility: public - city: Belo Horizonte - timezone: America/Sao_Paulo - created: 1369243827000 - link: 'http://www.meetup.com/Ember-BH/' - description: '

Ember.js Belo Horizonte Meetup é o primeiro grupo de meetup de Ember.js no Brasil. Bora falar de JavaScript, web apps, frontend development e comer pizza!

' - lon: -43.939998626708984 - group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/6/2/2/c/highres_238885132.jpeg' - photo_id: 238885132 - photo_link: 'http://photos1.meetupstatic.com/photos/event/6/2/2/c/600_238885132.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/6/2/2/c/thumb_238885132.jpeg' - join_mode: open - organizer: - member_id: 94544782 - name: Fabrício Tavares - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/1/1/6/4/highres_119464452.jpeg' - photo_id: 119464452 - photo_link: 'http://photos4.meetupstatic.com/photos/member/1/1/6/4/member_119464452.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/1/1/6/4/thumb_119464452.jpeg' - members: 85 - name: Ember.js Meetup - Belo Horizonte - lat: -19.920000076293945 - who: Developers - - utc_offset: -7200000 - country: BR - visibility: public - city: São Paulo - timezone: America/Sao_Paulo - created: 1371662142000 - link: 'http://www.meetup.com/AngularJS-Sao-Paulo/' - rating: 4.83 - description: >- -

Grupo de meetups sobre o framework AngularJS localizado em São - Paulo, SP.

- -

Lista - de e-mails

- lon: -46.630001068115234 - group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/9/b/8/4/highres_252879812.jpeg' - photo_id: 252879812 - photo_link: 'http://photos3.meetupstatic.com/photos/event/9/b/8/4/600_252879812.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/9/b/8/4/thumb_252879812.jpeg' - join_mode: open - organizer: - member_id: 44294952 - name: Ciro Nunes - photo: - photo_id: 127765482 - photo_link: 'http://photos2.meetupstatic.com/photos/member/6/3/8/a/member_127765482.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/6/3/8/a/thumb_127765482.jpeg' - members: 1060 - name: AngularJS São Paulo - lat: -23.530000686645508 - who: superheroes - - utc_offset: -18000000 - country: CO - visibility: public - city: Cali - timezone: America/Bogota - created: 1378782793000 - link: 'http://www.meetup.com/CaliJS/' - rating: 4.45 - description: >- -

Hemos creado este grupo con el fin de reunir, compartir y aprender - de los desarrolladores Javascript de la ciudad de Cali, Colombia.

- -

Nuestra filosofía será siempre la de mantener un ambiente - informal, nada estricto en ningún sentido. Así que cualquier - colaboración, en cualquier sentido, será muy bien recibida.

- -

¡Bienvenido!

- lon: -76.51000213623047 - group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/d/e/9/6/highres_314816982.jpeg' - photo_id: 314816982 - photo_link: 'http://photos2.meetupstatic.com/photos/event/d/e/9/6/600_314816982.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/d/e/9/6/thumb_314816982.jpeg' - join_mode: open - organizer: - member_id: 77643122 - name: Felipe Janer - photo: - photo_id: 124527392 - photo_link: 'http://photos1.meetupstatic.com/photos/member/6/b/0/0/member_124527392.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/6/b/0/0/thumb_124527392.jpeg' - members: 475 - name: CaliJS - lat: 3.4200000762939453 - who: Javascripters - - utc_offset: -10800000 - country: BR - visibility: public - city: São Paulo - timezone: America/Sao_Paulo - created: 1380723582000 - link: 'http://www.meetup.com/Meteor-Sao-Paulo/' - rating: 4.62 - description: '

Grupo criado para reunir pessoas interessadas em conhecer / aprender / ensinar / testar / desenvolver aplicações utilizando o framework Meteor.js. Meteor é uma plataforma open-source para desenvolvimento rápido de aplicações web de alta qualidade, indicada para quem está apenas começando ou para quem já é expert. Uma aplicação Meteor é um mix de Javascript que roda dentro de um web browser, Javascript que roda no no lado servidor Meteor dentro de um container Node.js, fragmentos HTML, regras CSS e conteúdos estáticos (imagens, vídeos, etc.).

' - lon: -46.630001068115234 - group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/1/c/e/highres_429900462.jpeg' - photo_id: 429900462 - photo_link: 'http://photos4.meetupstatic.com/photos/event/1/c/e/600_429900462.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/1/c/e/thumb_429900462.jpeg' - join_mode: open - organizer: - member_id: 183697781 - name: Carlos Pereira - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/a/0/a/f/highres_243041135.jpeg' - photo_id: 243041135 - photo_link: 'http://photos3.meetupstatic.com/photos/member/a/0/a/f/member_243041135.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/a/0/a/f/thumb_243041135.jpeg' - members: 293 - name: Meteor São Paulo - lat: -23.530000686645508 - who: Meteoritos - - utc_offset: -10800000 - country: AR - visibility: public - city: Buenos Aires - timezone: America/Buenos_Aires - created: 1381519314000 - link: 'http://www.meetup.com/Meetup-js/' - rating: 4.7 - description: '

Grupo para debatir y compartir ideas en torno a Javascript (client-side y server-side), distintos frameworks, librerías y tecnologías en general. Un meetup mensual con charlas preparadas por miembros de la propia comunidad

' - lon: -58.369998931884766 - join_mode: open - organizer: - member_id: 96746282 - name: Juan Pablo Saraceno - photo: - photo_id: 123118732 - photo_link: 'http://photos1.meetupstatic.com/photos/member/e/5/6/c/member_123118732.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/e/5/6/c/thumb_123118732.jpeg' - members: 881 - name: Meetup.js - lat: -34.61000061035156 - who: Javascripters - - utc_offset: -10800000 - country: BR - visibility: public - city: São Paulo - timezone: America/Sao_Paulo - created: 1385225063000 - link: 'http://www.meetup.com/nodebr/' - rating: 4.69 - description: >- -

A NodeBR é uma comunidade fundada por pessoas com interesse em - aprender mais sobre Node.js assim como ajudar outras pessoas que - possuem dúvidas nessa plataforma. No momento a comunidade é constituída - por estes pontos de acesso principal

- -

* A - lista de e-mails é um grupo no Google onde você pode cadastrar - o seu endereço de e-mail para enviar e receber e-mails das outras - pessoas cadastradas. Esta lista mostrou-se extremamente eficaz na - resolução de dúvidas de pessoas iniciantes no Node.js, assim como - também é o ponto de encontro de discussões proveitosas e notícias sobre - a plataforma.

- -

* Nosso - canal #nodebr no IRC é uma ferramenta de bate papo em tempo real, - onde programadores trocam ideias e tiram dúvidas com outros membros que - estão online, a ferramenta é nova e cresce junto com a comunidade. Para - quem já possui instalado algum client IRC, nos achará facilmente no - canal #nodebr na rede freenode.net, para aqueles que ainda não possuem - um, podem acessar o link anterior para abrir o web chat e entrar - diretamente no canal.

- -

* O grupo de - Meetup de São Paulo é onde organizamos nossos encontros e marcamos - os eventos mensais que trazem informação e novidades sobre o mundo do - Node.js.

- -

* O site oficial da comunidade está - em fase de planejamento mas já é uma ferramenta extramente importante - na nossa comunidade, visto que ela abrigará as principais ferramentas - que a comunidade julga importante, como você pode ver no - brainstorming.

- -

* @nodebr no Twitter.

- - - -

Contribua para o projeto

- -

Para começar a contribuir você deve procurar por alguma - issue em aberto, veja aquela que você consiga resolver com - facilidade. O próximo passo é fazer o fork do projeto e mandar uma pull - request.

- - - -

Links importantes

- -

Lista de e-mail: https://groups.google.com/forum/?hl=pt#!forum/nodebr -
NodeBR no IRC: https://webchat.freenode.net/?channels=#nodebr -
Site da comunidade: http://nodebr.org
Site do Meetup de - São Paulo: http://www.meetup.com/Node-js-Sao-Paulo

- lon: -46.630001068115234 - group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/7/f/f/4/highres_447632756.jpeg' - photo_id: 447632756 - photo_link: 'http://photos3.meetupstatic.com/photos/event/7/f/f/4/600_447632756.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/7/f/f/4/thumb_447632756.jpeg' - join_mode: open - organizer: - member_id: 108520712 - name: Jean Lucas - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/5/d/a/b/highres_254363979.jpeg' - photo_id: 254363979 - photo_link: 'http://photos2.meetupstatic.com/photos/member/5/d/a/b/member_254363979.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/5/d/a/b/thumb_254363979.jpeg' - members: 1080 - name: NodeBR - São Paulo - lat: -23.530000686645508 - who: noders - - utc_offset: -7200000 - country: BR - visibility: public - city: Belo Horizonte - timezone: America/Sao_Paulo - created: 1387581798000 - link: 'http://www.meetup.com/AngularJS-BH/' - rating: 4.92 - description: 'Grupo de meetups sobre o framework AngularJS localizado em Belo Horizonte, MG.' - lon: -43.939998626708984 - join_mode: open - organizer: - member_id: 44294952 - name: Ciro Nunes - photo: - photo_id: 164994692 - photo_link: 'http://photos2.meetupstatic.com/photos/member/d/5/a/4/member_164994692.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/d/5/a/4/thumb_164994692.jpeg' - members: 460 - name: AngularJS BH - lat: -19.920000076293945 - who: Membros - - utc_offset: -10800000 - country: BR - visibility: public - city: São Paulo - timezone: America/Sao_Paulo - created: 1391817419000 - link: 'http://www.meetup.com/OpenShift-Sao-Paulo/' - rating: 4.75 - description: '

Grupo de interesse sobre OpenShift, uma plataforma como serviço open-source. O objetivo do grupo é discutir a adoção de PaaS, trocar experiências de desenvolvimento dentro de plataformas. Gostaríamos de ver no grupo desenvolvedores, empresas, blogueiros, lojas de e-commerce e até mesmo pessoas que queiram implantar sua própria nuvem privada.

' - lon: -46.630001068115234 - group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/7/0/8/c/highres_355648812.jpeg' - photo_id: 355648812 - photo_link: 'http://photos4.meetupstatic.com/photos/event/7/0/8/c/600_355648812.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/7/0/8/c/thumb_355648812.jpeg' - join_mode: open - organizer: - member_id: 46560402 - name: Diego Castro - photo: - photo_id: 52533922 - photo_link: 'http://photos1.meetupstatic.com/photos/member/8/4/8/2/member_52533922.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/8/4/8/2/thumb_52533922.jpeg' - members: 168 - name: OpenShift São Paulo - lat: -23.530000686645508 - who: OpenShifters - - utc_offset: -10800000 - country: BR - visibility: public - city: São Paulo - timezone: America/Sao_Paulo - created: 1392730592000 - link: 'http://www.meetup.com/Sao-Paulo-AngularJS-Real-apps-Meetup/' - rating: 5 - description: "

Esse é um grupo para aqueles que já tem alguma experiência com Angular.js. Nossas palestras serão sobre usos reais do framework em produção. Também haverá palestras sobre a interação de Node.js com Angular.js.\_

" - lon: -46.630001068115234 - join_mode: open - organizer: - member_id: 99829772 - name: Sebastião Relson - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/1/0/8/highres_246589416.jpeg' - photo_id: 246589416 - photo_link: 'http://photos3.meetupstatic.com/photos/member/c/1/0/8/member_246589416.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/1/0/8/thumb_246589416.jpeg' - members: 376 - name: São Paulo AngularJS Real apps Meetup - lat: -23.530000686645508 - who: Programmers - - utc_offset: -10800000 - country: BR - visibility: public - city: Campina Grande - timezone: America/Fortaleza - created: 1397763977000 - link: 'http://www.meetup.com/Women-Who-Code-Campina-Grande/' - description: >- -

Women Who Code é uma organização global dedicada a educar e a - inspirar as mulheres a buscarem conhecimento e se destacarem em - carreiras tecnológicas. A organização triplicou em 2013, cresceu para - 30000 membros em 18 países.

- -

Somos conhecidos por nossos grupos de estudo semanais gratuitos - e técnicos e eventos mensais maiores, incluindo palestras técnicas, - noites de hackers, e treinamentos de carreira. Mais de 100 empresas de - tecnologia , incluindo Square, Twitter, Etsy, Heroku, Yelp, e muitos - outros têm promovido eventos para esta organização popular e que - continua a crescer.

- -

Programe em qualquer framework

- -

qualquer nível de experiência

- -

ou apenas programe para se divertir!

- -

Programadoras e aspirantes a programadoras são bem vindas. Traga seu - laptop e uma amiga!

- -

Women Who Code (WWCode) is dedicated to providing an empowering - experience for everyone who participates in or supports our community, - regardless of gender, gender identity and expression, sexual - orientation, ability, physical appearance, body size, race, ethnicity, - age, religion, or socioeconomic status. Because we value the safety and - security of our members and strive to have an inclusive community, we - do not tolerate harassment of members or event participants in any - form. Our Code - of Conduct applies to all events run by Women Who Code, Inc. - If you would like to report an incident or contact our leadership team, - please submit an incident - report form.

- -

Nosso Código de Conduta aplica-se a todos os eventos executados pela - organização Women Who Code, Inc.

- -

WomenWhoCode.com

- -

Twitter | Facebook

- -


- lon: -35.880001068115234 - group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/b/6/d/1/highres_431686801.jpeg' - photo_id: 431686801 - photo_link: 'http://photos2.meetupstatic.com/photos/event/b/6/d/1/600_431686801.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/b/6/d/1/thumb_431686801.jpeg' - join_mode: open - organizer: - member_id: 129339582 - name: Women Who Code - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/8/5/c/2/highres_172594242.jpeg' - photo_id: 172594242 - photo_link: 'http://photos4.meetupstatic.com/photos/member/8/5/c/2/member_172594242.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/8/5/c/2/thumb_172594242.jpeg' - members: 26 - name: Women Who Code Campina Grande - lat: -7.230000019073486 - who: Coders - - utc_offset: -10800000 - country: BR - visibility: public - city: Fortaleza - timezone: America/Fortaleza - created: 1400701755000 - link: 'http://www.meetup.com/nug-ce/' - description: '

Grupo que visa fomentar e compartilhar conhecimentos sobre NodeJS e tecnologias relacionadas na comunidade cearense de desenvolvedores

' - lon: -38.59000015258789 - join_mode: open - organizer: - member_id: 147747082 - name: Lucas Oliveira - photo: - photo_id: 199196932 - photo_link: 'http://photos2.meetupstatic.com/photos/member/d/e/6/4/member_199196932.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/d/e/6/4/thumb_199196932.jpeg' - members: 182 - name: NodeJS User Group Ceará - lat: -3.7799999713897705 - who: Noders - - utc_offset: -10800000 - country: BR - visibility: public - city: São Paulo - timezone: America/Sao_Paulo - created: 1403370225000 - link: 'http://www.meetup.com/Aplicativos-Hibridos-Meetup/' - rating: 4.88 - description: >- -

Espero conhecer pessoas interessadas em construir a Web do futuro - - com ferramentas que entregam o resultado esperado para o usuário do - mundo real - espero descobrir um caminho para provar que a simplicidade - provoca escalabilidade - construindo soluções que funcionam, em - respeito aos nossos usuários e em honra aos contratos com nossos - investidores - soluções com experiências que mudam o dia-a-dia de quem - usa - soluções que passam despercebidas pelo olhar crítico elitizado, - pois são soluções que funcionam no mundo real.

- -

Os encontros desse meetup irão sempre vir com um senso crítico, - questionador das ferramentas adotadas - para que os dizeres acima se - tornem realidade e para que todos tenha entendimento do todo que - precisamos conhecer para levar uma carreira de Desenvolvedor Web - comprometida do inicio ao fim com os resultados.

- -

Minha opinião muda e gostaria que se você se sentiu interessado - nessa abordagem, envie um e-mail de apresentação para oi@felquis.com - e vamos juntos!

- lon: -46.630001068115234 - join_mode: open - organizer: - member_id: 107294002 - name: Felquis Gimenes - members: 329 - name: Aplicativos Híbridos Meetup - lat: -23.530000686645508 - who: Web Engineers - - utc_offset: -10800000 - country: BR - visibility: public - city: João Pessoa - timezone: America/Fortaleza - created: 1404081634000 - link: 'http://www.meetup.com/paraibajs/' - rating: 5 - description: '

O Paraiba.js é um grupo de discussão da linguagem Javascript na paraíba que também organiza eventos para a disseminação de novidades da linguagem

' - lon: -34.86000061035156 + - sudodoki + repo: 'http://github.com/nodeschool/kyiv' + lat: 50.4501 + lon: 30.5234 + - name: Kirovohrad NodeSchool + location: 'Kirovohrad, UA' + organizers: + - ghaiklor + website: 'http://nodeschool.io/kirovohrad' + twitter: ghaiklor + repo: 'http://github.com/nodeschool/kirovohrad' + lat: 48.50793300000001 + lon: 32.262317 + - name: Lisbon NodeSchool + location: 'Lisbon, PT' + organizers: + - diasdavid + repo: 'http://github.com/nodeschool/lisbon' + lat: 38.7222524 + lon: -9.1393366 + - name: NodeSchool Lodz + location: 'Lodz, PL' + organizers: + - adamniedzielski + - lipkap + website: 'http://nodeschool.io/lodz' + twitter: nodeschool_lodz + gitter: 'https://gitter.im/nodeschool/lodz' + repo: 'https://github.com/nodeschool/lodz' + lat: 51.7592485 + lon: 19.4559833 + - name: London NodeSchool + location: 'London, UK' + organizers: + - iancrowther + - olizilla + - alanshaw + - orliesaurus + - ezodude + website: 'http://nodeschool.io/london' + repo: 'http://github.com/nodeschool/london' + lat: 51.5073509 + lon: -0.1277583 + - name: Lyon NodeSchool + location: 'Lyon, FR' + organizers: + - maxlath + website: 'http://nodeschool.io/lyon' + repo: 'http://github.com/nodeschool/lyon' + lat: 45.764043 + lon: 4.835659 + - name: NodeSchool Madrid + location: 'Madrid, ES' + organizers: + - alexfernandez + - gootyfer + - javiervelezreyes + website: 'http://nodeschool.io/madrid' + twitter: '@NodeJsMadrid' + repo: 'http://github.com/nodeschool/madrid' + lat: 40.4167754 + lon: -3.7037902 + - name: NodeSchool Moscow + location: 'Moscow, RU' + organizers: + - AVVS + - freele + repo: 'http://github.com/nodeschool/moscow' + lat: 55.755826 + lon: 37.6173 + - name: Munich NodeSchool + location: 'Munich, DE' + organizers: + - meaku + - jhnns + - sbat + - flootr + - matthaias + - topa + website: 'http://nodeschool.io/munich' + twitter: nodeschoolmuc + repo: 'http://github.com/nodeschool/munich' + lat: 48.1351253 + lon: 11.5819806 + - name: Oslo NodeSchool + location: 'Oslo, NO' + organizers: + - Andersos + website: 'http://nodeschool.io/oslo' + gitter: 'https://gitter.im/nodeschool/oslo' + repo: 'http://github.com/nodeschool/oslo' + lat: 59.9138688 + lon: 10.7522454 + - name: NodeSchool Oxford + location: 'Oxford, UK' + organizers: + - roylines + - benfoxall + - ivanbokii + - nileshkale + - peterjwest + - lazywithclass + website: 'http://jsoxford.com/' + twitter: 'https://twitter.com/JSOxford' + repo: 'http://github.com/nodeschool/oxford' + lat: 51.7520209 + lon: -1.2577263 + - name: NodeSchool Paris + location: 'Paris, FR' + organizers: + - tdd + website: 'http://nodeschool.io/paris/' + twitter: NodeSchoolParis + repo: 'http://github.com/nodeschool/paris' + lat: 48.856614 + lon: 2.3522219 + - name: NodeSchool Sevilla + location: 'Seville, ES' + organizers: + - beltran-rubo + repo: 'http://github.com/nodeschool/seville' + lat: 37.3890924 + lon: -5.9844589 + - name: NodeSchool Silesia + location: 'Silesia, PL' + organizers: + - afronski + - rspective + website: 'http://nodeschool.io/silesia' + twitter: nodeschoolpl + gitter: 'https://gitter.im/nodeschool/silesia' + repo: 'https://github.com/nodeschool/silesia' + lat: 50.5716595 + lon: 19.3219768 + - name: Saint Petersburg NodeSchool + location: 'Saint Petersburg, RU' + organizers: + - marinintim + website: 'http://nodeschool.io/spb' + repo: 'https://github.com/nodeschool/spb' + lat: 59.9342802 + lon: 30.3350986 + - name: Nodeschool Stavanger + location: 'Stavanger, NO' + organizers: + - asbjornenge + - megatrond + - olavgg + - olekjormo + - persille + - joargp + - resurge + - jmyrland + - frodeanonsen + - VirtueMe + website: 'http://nodeschool.io/stavanger' + repo: 'https://github.com/nodeschool/stavanger' + lat: 58.9699756 + lon: 5.7331073 + - name: NodeSchool Strasbourg + location: 'Strasbourg, FR' + organizers: + - jsebfranck + website: 'http://nodeschool.io/strasbourg/' + repo: 'http://github.com/nodeschool/strasbourg' + lat: 48.5734053 + lon: 7.752111299999999 + - name: NodeSchool Stuttgart + location: 'Stuttgart, DE' + organizers: + - kwakayama + website: 'http://nodeschool.io/stuttgart' + repo: 'http://github.com/nodeschool/stuttgart' + lat: 48.7758459 + lon: 9.1829321 + - name: Utrecht NodeSchool + location: 'Utrecht, NL' + organizers: + - fritzvd + website: 'http://nodeschool.io/utrecht/' + repo: 'http://github.com/nodeschool/utrecht' + lat: 52.09073739999999 + lon: 5.1214201 + - name: Vienna NodeSchool + location: 'Vienna, AT' + organizers: + - thomaspeklak + - shm + - saintedlama + website: 'http://nodeschool.io/vienna' + repo: 'http://github.com/nodeschool/vienna' + lat: 48.2081743 + lon: 16.3738189 + - name: Wroclaw NodeSchool + location: 'Wroclaw, Dolnoslaskie, PL' + organizers: + - grabbou + - explosivetitles + website: 'http://nodeschool.io/wroclaw' + twitter: nodeschool_wro + gitter: 'https://gitter.im/nodeschool/wroclaw' + repo: 'http://github.com/nodeschool/wroclaw' + lat: 51.1078852 + lon: 17.0385376 + - name: NodeSchool Zagreb + location: 'Zagreb, HR' + organizers: + - shime + - dinodsaurus + website: 'http://nodeschool.io/zagreb' + repo: 'http://github.com/nodeschool/zagreb' + lat: 45.8150108 + lon: 15.981919 + - region: Latin America + meetups: + - country: CL + city: Santiago + link: 'http://www.meetup.com/betazeta/' + name: Betazeta Tech Talks + description: '

Aqui nos juntamos los nerds y geeks a jugar con las tecnologias que nos gustan, tincan o simplemente las que nos dan curiosidad. Usamos la base de IT de Betazeta para disparar las tecnologias que nos gustaria que construyan la proxima internet o lo que es lo mimo, con las que todos la estamos construyendo :)

' + lon: -70.63999938964844 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/7/9/4/highres_443821940.jpeg' - photo_id: 443821940 - photo_link: 'http://photos4.meetupstatic.com/photos/event/7/9/4/600_443821940.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/7/9/4/thumb_443821940.jpeg' - join_mode: open - organizer: - member_id: 123799012 - name: Sérgio Vilar - photo: - photo_id: 164141742 - photo_link: 'http://photos1.meetupstatic.com/photos/member/a/3/0/e/member_164141742.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/a/3/0/e/thumb_164141742.jpeg' - members: 83 - name: paraiba.js - lat: -7.119999885559082 - who: Membros - - utc_offset: -10800000 - country: BR - visibility: public - city: Porto Alegre - timezone: America/Sao_Paulo - created: 1404764599000 - link: 'http://www.meetup.com/AngularJS-Porto-Alegre/' - rating: 4.83 - description: '

Grupo de desenvolvedores apaixonados por tecnologias. O grupo tem enfoque na tecnologia AngularJS e em disseminar experiências e boas práticas dessa tecnologia.

' + photo_link: 'http://photos2.meetupstatic.com/photos/event/4/4/d/6/600_88277622.jpeg' + lat: -33.459999084472656 + - country: AR + city: Buenos Aires + link: 'http://www.meetup.com/NodeJS-Argentina/' + name: Node.JS Argentina + description: "

Este grupo esta abierto para todo aquel interesado en conocer mas sobre Node.JS. La idea es generar un espacio donde podamos aprender unos de otros y adquirir o generar nuevo conocimientos.

\n

Los objetivos son:

\n
    \n

    Servir de guía a nuevos usuarios para que puedan desarrollarse

    \n

    Aportar buenas practicas y metodologías

    \n

    Servir de laboratorio de testeo de nuevas funcionalidades y/o módulos

    \n

    Difundir el conocimiento sobre Node.JS

    \n

    Difundir Node.JS dentro de la comunidad informática de Argentina

    \n
\n

Nota: esta es una primera definición y puede sufrir cambios a partir de las discusiones del foro o votaciones. Así que por favor dense una vuelta por el foro y las encuestas.

\n

Vínculos importantes para el grupo.

\n

No se permite SPAM de ningún tipo en la lista de correo electrónico, ni en los comentarios, ni en los canales de Slack.

\n

Para recruiters existe una sección en el foro para poner las ofertas laborales, tambien tenemos un canal en Slack.

\n\n

Slack TeamSite

\n

Slack es un sitio de chat similar a IRC. Tenemos un site de Slack en nodejsar.slack.com. Esto es por invitación asi que envien la solicitud por esta pagina.

\n

Google+

\n

También tenemos una Comunidad en G+

\n

Twitter

\n

Nuestro twitter es @NodeJSArgentina

\n

Dashboard de proyectos

\n

Tenemos un Dashboard de proyectos. Pueden sumarse o agregar alguno.

\n

Videos

\n

Aqui estan los videos de las meetups

\n

La marca Node.js y los logos son propiedad de Joyent.

\n

El presente grupo no tiene relación comercial alguna con la empresa Joyent.

" + lon: -58.369998931884766 + lat: -34.61000061035156 + - country: CO + city: Medellín + link: 'http://www.meetup.com/MedellinJS/' + name: MedellínJS + description: |- +

Hemos creado este grupo con el fin de reunir, compartir y aprender de los desarrolladores JavaScript de la ciudad de Medellín, Colombia.

+

Nuestra filosofía será siempre la de mantener un ambiente informal, nada estricto en ningún sentido. Así que cualquier colaboración, en cualquier sentido, será muy bien recibida.

+

¡Bienvenido!

+ lon: -75.58999633789062 + group_photo: + photo_link: 'http://photos3.meetupstatic.com/photos/event/b/c/5/e/600_164568222.jpeg' + lat: 6.25 + - country: UY + city: Montevideo + link: 'http://www.meetup.com/montevideojs/' + name: The Montevideo Javascript Meetup Group + description: |- +

This is a group for anyone interested in js, html, css and nodejs. Our GitHub.

+

Code of Conduct: http://confcodeofconduct.com/

+ lon: -56.16999816894531 + group_photo: + photo_link: 'http://photos1.meetupstatic.com/photos/event/4/6/5/d/600_447618013.jpeg' + lat: -34.869998931884766 + - country: BR + city: Belo Horizonte + link: 'http://www.meetup.com/Ember-BH/' + name: Ember.js Meetup - Belo Horizonte + description: '

Ember.js Belo Horizonte Meetup é o primeiro grupo de meetup de Ember.js no Brasil. Bora falar de JavaScript, web apps, frontend development e comer pizza!

' + lon: -43.939998626708984 + group_photo: + photo_link: 'http://photos1.meetupstatic.com/photos/event/6/2/2/c/600_238885132.jpeg' + lat: -19.920000076293945 + - country: BR + city: São Paulo + link: 'http://www.meetup.com/AngularJS-Sao-Paulo/' + name: AngularSP + description: |- +

Grupo de meetups Angular em São Paulo, SP.

+

Lista de e-mails

+ lon: -46.630001068115234 + group_photo: + photo_link: 'http://photos3.meetupstatic.com/photos/event/9/b/8/4/600_252879812.jpeg' + lat: -23.530000686645508 + - country: CO + city: Cali + link: 'http://www.meetup.com/CaliJS/' + name: CaliJS + description: |- +

Hemos creado este grupo con el fin de reunir, compartir y aprender de los desarrolladores Javascript de la ciudad de Cali, Colombia.

+

Nuestra filosofía será siempre la de mantener un ambiente informal, nada estricto en ningún sentido. Así que cualquier colaboración, en cualquier sentido, será muy bien recibida.

+

¡Bienvenido!

+ lon: -76.51000213623047 + group_photo: + photo_link: 'http://photos2.meetupstatic.com/photos/event/d/e/9/6/600_314816982.jpeg' + lat: 3.4200000762939453 + - country: BR + city: São Paulo + link: 'http://www.meetup.com/Meteor-Sao-Paulo/' + name: Meteor São Paulo + description: '

Grupo criado para reunir pessoas interessadas em conhecer / aprender / ensinar / testar / desenvolver aplicações utilizando o framework Meteor.js. Meteor é uma plataforma open-source para desenvolvimento rápido de aplicações web de alta qualidade, indicada para quem está apenas começando ou para quem já é expert. Uma aplicação Meteor é um mix de Javascript que roda dentro de um web browser, Javascript que roda no no lado servidor Meteor dentro de um container Node.js, fragmentos HTML, regras CSS e conteúdos estáticos (imagens, vídeos, etc.).

' + lon: -46.630001068115234 + group_photo: + photo_link: 'http://photos4.meetupstatic.com/photos/event/1/c/e/600_429900462.jpeg' + lat: -23.530000686645508 + - country: AR + city: Buenos Aires + link: 'http://www.meetup.com/Meetup-js/' + name: Meetup.js + description: '

Grupo para debatir y compartir ideas en torno a Javascript (client-side y server-side), distintos frameworks, librerías y tecnologías en general. Un meetup mensual con charlas preparadas por miembros de la propia comunidad

' + lon: -58.369998931884766 + lat: -34.61000061035156 + - country: BR + city: São Paulo + link: 'http://www.meetup.com/nodebr/' + name: NodeBR - São Paulo + description: |- +

A NodeBR é uma comunidade fundada por pessoas com interesse em aprender mais sobre Node.js assim como ajudar outras pessoas que possuem dúvidas nessa plataforma. No momento a comunidade é constituída por estes pontos de acesso principal

+

* A lista de e-mails é um grupo no Google onde você pode cadastrar o seu endereço de e-mail para enviar e receber e-mails das outras pessoas cadastradas. Esta lista mostrou-se extremamente eficaz na resolução de dúvidas de pessoas iniciantes no Node.js, assim como também é o ponto de encontro de discussões proveitosas e notícias sobre a plataforma.

+

* Nosso canal #nodebr no IRC é uma ferramenta de bate papo em tempo real, onde programadores trocam ideias e tiram dúvidas com outros membros que estão online, a ferramenta é nova e cresce junto com a comunidade. Para quem já possui instalado algum client IRC, nos achará facilmente no canal #nodebr na rede freenode.net, para aqueles que ainda não possuem um, podem acessar o link anterior para abrir o web chat e entrar diretamente no canal.

+

* O grupo de Meetup de São Paulo é onde organizamos nossos encontros e marcamos os eventos mensais que trazem informação e novidades sobre o mundo do Node.js.

+

* O site oficial da comunidade está em fase de planejamento mas já é uma ferramenta extramente importante na nossa comunidade, visto que ela abrigará as principais ferramentas que a comunidade julga importante, como você pode ver no brainstorming.

+

* @nodebr no Twitter.

+ +

Contribua para o projeto

+

Para começar a contribuir você deve procurar por alguma issue em aberto, veja aquela que você consiga resolver com facilidade. O próximo passo é fazer o fork do projeto e mandar uma pull request.

+ +

Links importantes

+

Lista de e-mail: https://groups.google.com/forum/?hl=pt#!forum/nodebr
NodeBR no IRC: https://webchat.freenode.net/?channels=#nodebr
Site da comunidade: http://nodebr.org
Site do Meetup de São Paulo: http://www.meetup.com/Node-js-Sao-Paulo

+ lon: -46.630001068115234 + group_photo: + photo_link: 'http://photos3.meetupstatic.com/photos/event/7/f/f/4/600_447632756.jpeg' + lat: -23.530000686645508 + - country: BR + city: Belo Horizonte + link: 'http://www.meetup.com/AngularJS-BH/' + name: AngularBH + description: '

Grupo de meetups sobre o Angular de Belo Horizonte, MG.

' + lon: -43.939998626708984 + lat: -19.920000076293945 + - country: BR + city: São Paulo + link: 'http://www.meetup.com/OpenShift-Sao-Paulo/' + name: OpenShift São Paulo + description: '

Grupo de interesse sobre OpenShift, uma plataforma como serviço open-source. O objetivo do grupo é discutir a adoção de PaaS, trocar experiências de desenvolvimento dentro de plataformas. Gostaríamos de ver no grupo desenvolvedores, empresas, blogueiros, lojas de e-commerce e até mesmo pessoas que queiram implantar sua própria nuvem privada.

' + lon: -46.630001068115234 + group_photo: + photo_link: 'http://photos4.meetupstatic.com/photos/event/7/0/8/c/600_355648812.jpeg' + lat: -23.530000686645508 + - country: BR + city: São Paulo + link: 'http://www.meetup.com/Sao-Paulo-AngularJS-Real-apps-Meetup/' + name: São Paulo AngularJS Real apps Meetup + description: "

Esse é um grupo para aqueles que já tem alguma experiência com Angular.js. Nossas palestras serão sobre usos reais do framework em produção. Também haverá palestras sobre a interação de Node.js com Angular.js.\_

" + lon: -46.630001068115234 + lat: -23.530000686645508 + - country: BR + city: Campina Grande + link: 'http://www.meetup.com/Women-Who-Code-Campina-Grande/' + name: Women Who Code Campina Grande + description: |- +

Women Who Code é uma organização global dedicada a educar e a inspirar as mulheres a buscarem conhecimento e se destacarem em carreiras tecnológicas. A organização triplicou em 2013, cresceu para 30000 membros em 18 países.

+

Somos conhecidos por nossos grupos de estudo semanais gratuitos e técnicos e eventos mensais maiores, incluindo palestras técnicas, noites de hackers, e treinamentos de carreira. Mais de 100 empresas de tecnologia , incluindo Square, Twitter, Etsy, Heroku, Yelp, e muitos outros têm promovido eventos para esta organização popular e que continua a crescer.

+

Programe em qualquer framework

+

qualquer nível de experiência

+

ou apenas programe para se divertir!

+

Programadoras e aspirantes a programadoras são bem vindas. Traga seu laptop e uma amiga!

+

Women Who Code (WWCode) is dedicated to providing an empowering experience for everyone who participates in or supports our community, regardless of gender, gender identity and expression, sexual orientation, ability, physical appearance, body size, race, ethnicity, age, religion, or socioeconomic status. Because we value the safety and security of our members and strive to have an inclusive community, we do not tolerate harassment of members or event participants in any form. Our Code of Conduct applies to all events run by Women Who Code, Inc. If you would like to report an incident or contact our leadership team, please submit an incident report form.

+

Nosso Código de Conduta aplica-se a todos os eventos executados pela organização Women Who Code, Inc.

+

WomenWhoCode.com

+

Twitter | Facebook

+


+ lon: -35.880001068115234 + group_photo: + photo_link: 'http://photos2.meetupstatic.com/photos/event/b/6/d/1/600_431686801.jpeg' + lat: -7.230000019073486 + - country: BR + city: Fortaleza + link: 'http://www.meetup.com/nug-ce/' + name: NodeJS User Group Ceará + description: '

Grupo que visa fomentar e compartilhar conhecimentos sobre NodeJS e tecnologias relacionadas na comunidade cearense de desenvolvedores

' + lon: -38.59000015258789 + lat: -3.7799999713897705 + - country: BR + city: São Paulo + link: 'http://www.meetup.com/Aplicativos-Hibridos-Meetup/' + name: Aplicativos Híbridos Meetup + description: |- +

Espero conhecer pessoas interessadas em construir a Web do futuro - com ferramentas que entregam o resultado esperado para o usuário do mundo real - espero descobrir um caminho para provar que a simplicidade provoca escalabilidade - construindo soluções que funcionam, em respeito aos nossos usuários e em honra aos contratos com nossos investidores - soluções com experiências que mudam o dia-a-dia de quem usa - soluções que passam despercebidas pelo olhar crítico elitizado, pois são soluções que funcionam no mundo real.

+

Os encontros desse meetup irão sempre vir com um senso crítico, questionador das ferramentas adotadas - para que os dizeres acima se tornem realidade e para que todos tenha entendimento do todo que precisamos conhecer para levar uma carreira de Desenvolvedor Web comprometida do inicio ao fim com os resultados.

+

Minha opinião muda e gostaria que se você se sentiu interessado nessa abordagem, envie um e-mail de apresentação para oi@felquis.com e vamos juntos!

+ lon: -46.630001068115234 + lat: -23.530000686645508 + - country: BR + city: Porto Alegre + link: 'http://www.meetup.com/MongoDBBrazil-Meetup/' + name: MongoDBBrazil Meetup + description: Grupo de Usuários que visam ajudar qualquer pessoa interessada aprender sobre MongoDB. lon: -51.220001220703125 - join_mode: open - organizer: - member_id: 94472632 - name: Daniel Ricardo de Amorim - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/8/a/f/e/highres_149735582.jpeg' - photo_id: 149735582 - photo_link: 'http://photos2.meetupstatic.com/photos/member/8/a/f/e/member_149735582.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/8/a/f/e/thumb_149735582.jpeg' - members: 568 + lat: -30.040000915527344 + - country: BR + city: João Pessoa + link: 'http://www.meetup.com/paraibajs/' + name: paraiba.js + description: '

O Paraiba.js é um grupo de discussão da linguagem Javascript na paraíba que também organiza eventos para a disseminação de novidades da linguagem

' + lon: -34.86000061035156 + group_photo: + photo_link: 'http://photos4.meetupstatic.com/photos/event/7/9/4/600_443821940.jpeg' + lat: -7.119999885559082 + - country: BR + city: Porto Alegre + link: 'http://www.meetup.com/AngularJS-Porto-Alegre/' name: AngularJS Porto Alegre + description: '

Grupo de desenvolvedores apaixonados por tecnologias. O grupo tem enfoque na tecnologia AngularJS e em disseminar experiências e boas práticas dessa tecnologia.

' + lon: -51.220001220703125 lat: -30.040000915527344 - who: Desenvolvedores - - utc_offset: -21600000 - country: MX - visibility: public + - country: MX city: México City - timezone: America/Mexico_City - created: 1405016267000 link: 'http://www.meetup.com/NodeBotsMX/' - rating: 4.89 - description: >- -

Así es... si tienes algo de experiencia en JavaScript, puedes usar - tus poderes para controlar máquinas. Desde hacer parpadear un led hasta - manejar un carrito, jugar con tu gato de manera remota, o torear - multicóptero :-]

- -

Queremos compartir lo poco que sabemos y aprender mucho de ti. - Suscríbete a este grupo y mantente informado de las reuniones que - llevaremos a cabo. Cualquier nivel de experiencia es bienvenido.

- -

Si quieres compartir algo con la comunidad, favor de contactar - a jurasec[at]gmail[.]com ó @_JuraseC

+ name: NodeBots México + description: |- +

Así es... si tienes algo de experiencia en JavaScript, puedes usar tus poderes para controlar máquinas. Desde hacer parpadear un led hasta manejar un carrito, jugar con tu gato de manera remota, o torear multicóptero :-]

+

Queremos compartir lo poco que sabemos y aprender mucho de ti. Suscríbete a este grupo y mantente informado de las reuniones que llevaremos a cabo. Cualquier nivel de experiencia es bienvenido.

+

Si quieres compartir algo con la comunidad, favor de contactar a jurasec[at]gmail[.]com ó @_JuraseC

lon: -99.13999938964844 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/d/5/2/2/highres_405414562.jpeg' - photo_id: 405414562 photo_link: 'http://photos2.meetupstatic.com/photos/event/d/5/2/2/600_405414562.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/d/5/2/2/thumb_405414562.jpeg' - join_mode: open - organizer: - member_id: 103509152 - name: Antonio Quirarte - members: 556 - name: NodeBots México lat: 19.43000030517578 - who: Desarrolladores - - utc_offset: -18000000 - country: CO - visibility: public + - country: CO city: Popayán - timezone: America/Bogota - created: 1405400434000 link: 'http://www.meetup.com/PopayanJS/' - rating: 5 - description: >- -

Este es un grupo para todos aquellos programadores - y principiantes en programación que deseen aportar al desarrollo web - con Javascript, HTML5 y todos los frameworks relacionados con estas - tecnologias que sean tema de discusion en el grupo y generen contenido - libre y de calidad
- - + name: PopayánJS + description: |- +

Este es un grupo para todos aquellos programadores y principiantes en programación que deseen aportar al desarrollo web con Javascript, HTML5 y todos los frameworks relacionados con estas tecnologias que sean tema de discusion en el grupo y generen contenido libre y de calidad

lon: -76.61000061035156 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/9/b/2/a/highres_427779722.jpeg' - photo_id: 427779722 photo_link: 'http://photos3.meetupstatic.com/photos/event/9/b/2/a/600_427779722.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/9/b/2/a/thumb_427779722.jpeg' - join_mode: open - organizer: - member_id: 156200682 - name: Alexander HR-Z - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/2/b/2/2/highres_210971042.jpeg' - photo_id: 210971042 - photo_link: 'http://photos2.meetupstatic.com/photos/member/2/b/2/2/member_210971042.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/2/b/2/2/thumb_210971042.jpeg' - members: 138 - name: PopayánJS lat: 2.4200000762939453 - who: jsers - - utc_offset: -10800000 - country: BR - visibility: public + - country: BR city: São Paulo - timezone: America/Sao_Paulo - created: 1405605482000 link: 'http://www.meetup.com/PCF-Sao-Paulo/' - rating: 4.92 + name: Commerce Factory de São Paulo description: "

Commerce Factory é um meetup gratuito apoiado \_pela PayPal. O foco do CF são palestras técnicas sobre tecnologias para comercio e pagamentos utilizando hacks com Arduino, sistemas com hardware com Bluetooth Low Energy, Wearbles, tecnologias para celulares, linguagens de programação server-side. Também discutiremos tópicos sobre Design, boas práticas e bibliotecas para desenvolvimento de plataformas de e-Commerce.

\n

E há Commerce Factory em outras partes do mundo. Dê uma olhada:

\n

meetup.com/pcf-mexico-ci­ty

\n

meetup.com/pcf-miami

\n

meetup.com/pcf-london

\n

meetup.com/pcf-berlin

\n

meetup.com/pcf-sanjose

\n

meetup.com/pcf-sydney

\n

meetup.com/PCF-Singapore
\n\n

" lon: -46.630001068115234 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/c/3/0/2/highres_389449922.jpeg' - photo_id: 389449922 photo_link: 'http://photos2.meetupstatic.com/photos/event/c/3/0/2/600_389449922.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/c/3/0/2/thumb_389449922.jpeg' - join_mode: open - organizer: - member_id: 12592303 - name: Jeff Prestes - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/6/0/9/2/highres_227484722.jpeg' - photo_id: 227484722 - photo_link: 'http://photos1.meetupstatic.com/photos/member/6/0/9/2/member_227484722.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/6/0/9/2/thumb_227484722.jpeg' - members: 448 - name: Commerce Factory de São Paulo lat: -23.530000686645508 - who: Members - - utc_offset: -21600000 - country: MX - visibility: public - city: México City - timezone: America/Mexico_City - created: 1405950017000 - link: 'http://www.meetup.com/pcf-mexico-city/' - description: "

Commerce Factory es un meetup libre de PayPal, con charlas técnicas que se centran en la tecnología para el comercio y pagos usando Web, hacks Arduino, sistemas de hardware con Bluetooth Low Energy, Wearbles y también discuten temas sobre el Design y las mejores prácticas y las bibliotecas para el desarrollo de sistemas e-Commerce.\_

\n

Y hay Commerce Factory en otras partes del mundo. Mira:
\n\n

\n

meetup.com/pcf-sao-paulo
\n\n

\n

meetup.com/pcf-miami

\n

meetup.com/pcf-london

\n

meetup.com/pcf-berlin

\n

meetup.com/pcf-sanjose

\n

meetup.com/pcf-sydney

\n

meetup.com/PCF-Singapore
\n\n

\n
" - lon: -99.13999938964844 - group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/3/2/c/a/highres_389473002.jpeg' - photo_id: 389473002 - photo_link: 'http://photos1.meetupstatic.com/photos/event/3/2/c/a/600_389473002.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/3/2/c/a/thumb_389473002.jpeg' - join_mode: open - organizer: - member_id: 12592303 - name: Jeff Prestes - photo: - photo_id: 212756552 - photo_link: 'http://photos1.meetupstatic.com/photos/member/d/c/e/8/member_212756552.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/d/c/e/8/thumb_212756552.jpeg' - members: 57 - name: Commerce Factory de México City - lat: 19.43000030517578 - who: Desarrolladores - - utc_offset: -10800000 - country: CL - visibility: public + - country: CL city: Viña del Mar - timezone: America/Santiago - created: 1406649179000 link: 'http://www.meetup.com/javascript-vina-del-mar/' - rating: 4.75 + name: Javascript y NodeJs Viña del Mar description: 'A nosotros también nos interesa Javascript ¡Únetenos! Las aplicaciones web están dominando el mundo y el caballo de batalla es Javascript. Únete a nuestro grupo de peregrinos de este nuevo orden mundial ¡Y en Viña!' lon: -71.55000305175781 - join_mode: open - organizer: - member_id: 98755372 - name: Tomás Girardi Julio - photo: - photo_id: 126437862 - photo_link: 'http://photos3.meetupstatic.com/photos/member/4/5/c/6/member_126437862.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/4/5/c/6/thumb_126437862.jpeg' - members: 232 - name: Javascript y NodeJs Viña del Mar lat: -33.0099983215332 - who: Javascripters - - utc_offset: -18000000 - country: CO - visibility: public + - country: CO city: Bogotá - timezone: America/Bogota - created: 1409096508000 link: 'http://www.meetup.com/Meteor-Colombia/' + name: Meteor Colombia description: '

Conoce a otros desarrolladores usando MeteorComparte tu conocimiento, apps y obtén retroalimentación de otros. Meteor es una plataforma de código abierto para construir web apps de alta calidad en fracción de tiempo, aun si eres un experto desarrollador o solo estas comenzando.

' lon: -74.08999633789062 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/b/7/4/highres_402902932.jpeg' - photo_id: 402902932 photo_link: 'http://photos1.meetupstatic.com/photos/event/b/7/4/600_402902932.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/b/7/4/thumb_402902932.jpeg' - join_mode: open - organizer: - member_id: 81670332 - name: Nick Coe - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/highres_245331334.jpeg' - photo_id: 245331334 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/8/8/6/member_245331334.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/thumb_245331334.jpeg' - members: 187 - name: Meteor Colombia lat: 4.630000114440918 - who: Meteoritos - - utc_offset: -21600000 - country: MX - visibility: public + - country: MX city: México City - timezone: America/Mexico_City - created: 1409341277000 - link: 'http://www.meetup.com/ChelaJS/' - rating: 4.78 - description: '

Desarrolladores se reúnen a tomar Javascript para hablar del mejor lenguaje de hoy en día: Cerveza

' + link: 'http://www.meetup.com/javascriptmx/' + name: JavascriptMX + description: "

La comunidad de JavaScript de la Ciudad de México es una organización sin fines de lucro con el objetivo de elevar la competitividad técnica de la ciudad con base en la colaboración y el compartir experiencias de carácter profesional.

\n

Nuestro interés se concentra en éstas tres áreas:

\n
\n

Comunidad — Eventos mensuales orientados a una herramienta tecnológica específica.

\n
\n
\n

Educación — Talleres gratuitos para adquirir habilidades básicas e intermedias de código.

\n
\n
\n

Visibilidad — Iniciativas para demostrar la viabilidad del país como un lugar creador de tecnología.

\n
\n

La comunidad se rige por un código de conducta con el que procuramos mantener un ambiente agradable para todas las personas que nos acompañan. 

" lon: -99.13999938964844 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/3/6/2/6/highres_403573862.jpeg' - photo_id: 403573862 - photo_link: 'http://photos1.meetupstatic.com/photos/event/3/6/2/6/600_403573862.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/3/6/2/6/thumb_403573862.jpeg' - join_mode: open - organizer: - member_id: 41815302 - name: Jeduan Cornejo - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/2/4/6/a/highres_106569322.jpeg' - photo_id: 106569322 - photo_link: 'http://photos1.meetupstatic.com/photos/member/2/4/6/a/member_106569322.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/2/4/6/a/thumb_106569322.jpeg' - members: 1543 - name: ChelaJS + photo_link: 'http://photos4.meetupstatic.com/photos/event/9/6/c/600_445142412.jpeg' lat: 19.43000030517578 - who: Desarrolladores - - utc_offset: -21600000 - country: MX - visibility: public + - country: MX city: Matamoros - timezone: America/Monterrey - created: 1409489364000 link: 'http://www.meetup.com/RGV-bots/' + name: RGV bots description: 'This is a group for anyone interested in Hardware-Software Technologies Integration, mainly focused in OpenSource movment. All skills levels are welcome.' lon: -97.5 - join_mode: open - organizer: - member_id: 164987592 - name: Ezequiel - members: 33 - name: RGV bots lat: 25.8799991607666 - who: RGVBots - - utc_offset: -10800000 - country: AR - visibility: public + - country: AR city: Buenos Aires - timezone: America/Buenos_Aires - created: 1409503493000 link: 'http://www.meetup.com/Buenos-Aires-Node-js-Meetup/' - rating: 5 - description: >- -

Curso de Node.js iniciando desde los conceptos básico de JavaScript - hasta las técnicas de programación avanzada en Node.js y todo su - ecosistema.

- -

Curso - de Node.js en Buenos Aires
- - + name: Buenos Aires Node.js Meetup + description: |- +

Curso de Node.js iniciando desde los conceptos básico de JavaScript hasta las técnicas de programación avanzada en Node.js y todo su ecosistema.

+

Curso de Node.js en Buenos Aires

-


- -

-


- -

lon: -58.369998931884766 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/5/f/a/c/highres_405924492.jpeg' - photo_id: 405924492 photo_link: 'http://photos4.meetupstatic.com/photos/event/5/f/a/c/600_405924492.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/5/f/a/c/thumb_405924492.jpeg' - join_mode: open - organizer: - member_id: 165088742 - name: César Casas - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/a/1/7/4/highres_223001332.jpeg' - photo_id: 223001332 - photo_link: 'http://photos3.meetupstatic.com/photos/member/a/1/7/4/member_223001332.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/a/1/7/4/thumb_223001332.jpeg' - members: 393 - name: Buenos Aires Node.js Meetup lat: -34.61000061035156 - who: developers - - utc_offset: -21600000 - country: MX - visibility: public + - country: MX city: Monterrey - timezone: America/Monterrey - created: 1409791757000 link: 'http://www.meetup.com/nodejsmx/' + name: Node.js Comunidad Mexico description: '

¡Bienvenid@s sean tod@s l@s programadoræs Javascript de cualquier parte que anden en México! Este grupo meetup fue creado para el beneficio de todos, podemos vernos nomás por cotorreo pero estoy seguro que por ahí hay gente como yo, tratando de sacar adelante un idea para un startup o también puede haber quien quiera simplemente mejorar como programador intercambiando ideas y trucos, e incluso habrá quienes estén buscando contactillos profesionales para agarrarse una mejor chamba. El caso es, que node.js está padre y la gente que lo usa suele caerme bien, ¡hay que vernos!.

' lon: -100.31999969482422 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/4/a/8/0/highres_405739072.jpeg' - photo_id: 405739072 photo_link: 'http://photos2.meetupstatic.com/photos/event/4/a/8/0/600_405739072.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/4/a/8/0/thumb_405739072.jpeg' - join_mode: open - organizer: - member_id: 94161462 - name: JorgeArtware - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/c/1/a/highres_254883098.jpeg' - photo_id: 254883098 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/1/a/member_254883098.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/c/1/a/thumb_254883098.jpeg' - members: 171 - name: Node.js Comunidad Mexico lat: 25.670000076293945 - who: Noders - - utc_offset: -7200000 - country: BR - visibility: public - city: Rio de Janeiro - timezone: America/Sao_Paulo - created: 1410205320000 - link: 'http://www.meetup.com/NodeBR-Rio-de-Janeiro/' - description: >- -

A NodeBR é uma comunidade fundada por pessoas com interesse em - aprender mais sobre Node.js assim como ajudar outras pessoas que - possuem dúvidas nessa plataforma. No momento a comunidade é constituída - por estes pontos de acesso principal

- -

* A lista de e-mails é um grupo no Google onde você pode cadastrar - o seu endereço de e-mail para enviar e receber e-mails das outras - pessoas cadastradas. Esta lista mostrou-se extremamente eficaz na - resolução de dúvidas de pessoas iniciantes no Node.js, assim como - também é o ponto de encontro de discussões proveitosas e notícias sobre - a plataforma.

- -

* Nosso canal #nodebr no IRC é uma ferramenta de bate papo em tempo - real, onde programadores trocam ideias e tiram dúvidas com outros - membros que estão online, a ferramenta é nova e cresce junto com - a comunidade. Para quem já possui instalado algum client IRC, nos - achará facilmente no canal #nodebr na rede freenode.net, para aqueles - que ainda não possuem um, podem acessar o link anterior para abrir - o web chat e entrar diretamente no canal.

- -

* O grupo de Meetup de São Paulo é onde organizamos nossos encontros - e marcamos os eventos mensais que trazem informação e novidades sobre - o mundo do Node.js.

- -

* O site oficial da comunidade está em fase de planejamento mas já - é uma ferramenta extramente importante na nossa comunidade, visto que - ela abrigará as principais ferramentas que a comunidade julga - importante, como você pode ver no brainstorming.

- -

* @nodebr no Twitter.

- -

Contribua para o projeto

- -

Para começar a contribuir você deve procurar por alguma issue em - aberto, veja aquela que você consiga resolver com facilidade. O próximo - passo é fazer o fork do projeto e mandar uma pull request.

- -

Links importantes

- -

Lista de e-mail: https://groups.google.com/forum/?hl=pt#!forum/nodebr
- - - - - - - - - - NodeBR no IRC: https://webchat.freenode.net/?channels=#nodebr
- - - - - - - - - - Site da comunidade: http://nodebr.org
- - - - - - - - - - Site do Meetup de São Paulo: http://www.meetup.com/Node-js-Sao-Paulo

- lon: -43.20000076293945 - group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/6/2/7/c/highres_407725212.jpeg' - photo_id: 407725212 - photo_link: 'http://photos4.meetupstatic.com/photos/event/6/2/7/c/600_407725212.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/6/2/7/c/thumb_407725212.jpeg' - join_mode: open - organizer: - member_id: 115742772 - name: Alan Hoffmeister - photo: - photo_id: 152813812 - photo_link: 'http://photos2.meetupstatic.com/photos/member/d/2/3/4/member_152813812.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/d/2/3/4/thumb_152813812.jpeg' - members: 118 - name: NodeBR - Rio de Janeiro - lat: -22.90999984741211 - who: Noders - - utc_offset: -10800000 - country: BR - visibility: public + - country: BR city: Belo Horizonte - timezone: America/Sao_Paulo - created: 1410206602000 link: 'http://www.meetup.com/NodeBR-Minas-Gerais/' - rating: 4.97 - description: >- -

A NodeBR é uma comunidade fundada por pessoas com interesse em - aprender mais sobre Node.js assim como ajudar outras pessoas que - possuem dúvidas nessa plataforma. No momento a comunidade é constituída - por estes pontos de acesso principal

- -

* A lista de e-mails é um grupo no Google onde você pode cadastrar - o seu endereço de e-mail para enviar e receber e-mails das outras - pessoas cadastradas. Esta lista mostrou-se extremamente eficaz na - resolução de dúvidas de pessoas iniciantes no Node.js, assim como - também é o ponto de encontro de discussões proveitosas e notícias sobre - a plataforma.

- -

* Nosso canal #nodebr no IRC é uma ferramenta de bate papo em tempo - real, onde programadores trocam ideias e tiram dúvidas com outros - membros que estão online, a ferramenta é nova e cresce junto com - a comunidade. Para quem já possui instalado algum client IRC, nos - achará facilmente no canal #nodebr na rede freenode.net, para aqueles - que ainda não possuem um, podem acessar o link anterior para abrir - o web chat e entrar diretamente no canal.

- -

* O grupo de Meetup de São Paulo é onde organizamos nossos encontros - e marcamos os eventos mensais que trazem informação e novidades sobre - o mundo do Node.js.

- -

* O site oficial da comunidade está em fase de planejamento mas já - é uma ferramenta extramente importante na nossa comunidade, visto que - ela abrigará as principais ferramentas que a comunidade julga - importante, como você pode ver no brainstorming.

- + name: NodeBR - Minas Gerais + description: |- +

A NodeBR é uma comunidade fundada por pessoas com interesse em aprender mais sobre Node.js assim como ajudar outras pessoas que possuem dúvidas nessa plataforma. No momento a comunidade é constituída por estes pontos de acesso principal

+

* A lista de e-mails é um grupo no Google onde você pode cadastrar o seu endereço de e-mail para enviar e receber e-mails das outras pessoas cadastradas. Esta lista mostrou-se extremamente eficaz na resolução de dúvidas de pessoas iniciantes no Node.js, assim como também é o ponto de encontro de discussões proveitosas e notícias sobre a plataforma.

+

* Nosso canal #nodebr no IRC é uma ferramenta de bate papo em tempo real, onde programadores trocam ideias e tiram dúvidas com outros membros que estão online, a ferramenta é nova e cresce junto com a comunidade. Para quem já possui instalado algum client IRC, nos achará facilmente no canal #nodebr na rede freenode.net, para aqueles que ainda não possuem um, podem acessar o link anterior para abrir o web chat e entrar diretamente no canal.

+

* O grupo de Meetup de São Paulo é onde organizamos nossos encontros e marcamos os eventos mensais que trazem informação e novidades sobre o mundo do Node.js.

+

* O site oficial da comunidade está em fase de planejamento mas já é uma ferramenta extramente importante na nossa comunidade, visto que ela abrigará as principais ferramentas que a comunidade julga importante, como você pode ver no brainstorming.

* @nodebr no Twitter.

-

Contribua para o projeto

- -

Para começar a contribuir você deve procurar por alguma issue em - aberto, veja aquela que você consiga resolver com facilidade. O próximo - passo é fazer o fork do projeto e mandar uma pull request.

- +

Para começar a contribuir você deve procurar por alguma issue em aberto, veja aquela que você consiga resolver com facilidade. O próximo passo é fazer o fork do projeto e mandar uma pull request.

Links importantes

+

Lista de e-mail: https://groups.google.com/forum/?hl=pt#!forum/nodebr
-

Lista de e-mail: https://groups.google.com/forum/?hl=pt#!forum/nodebr
- - - - NodeBR no IRC: https://webchat.freenode.net/?channels=#nodebr
- - - - Site da comunidade: http://nodebr.org
- + NodeBR no IRC: https://webchat.freenode.net/?channels=#nodebr
+ Site da comunidade: http://nodebr.org
- Site do Meetup de São Paulo: http://www.meetup.com/Node-js-Sao-Paulo
+ Site do Meetup de São Paulo: http://www.meetup.com/Node-js-Sao-Paulo
- - - Site do Meetup do Rio de Janeiro: http://www.meetup.com/Node-js-Rio-de-Janeiro

+ Site do Meetup do Rio de Janeiro: http://www.meetup.com/Node-js-Rio-de-Janeiro

lon: -43.939998626708984 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/8/c/0/2/highres_407735842.jpeg' - photo_id: 407735842 photo_link: 'http://photos3.meetupstatic.com/photos/event/8/c/0/2/600_407735842.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/8/c/0/2/thumb_407735842.jpeg' - join_mode: open - organizer: - member_id: 133459732 - name: Olavo Shibata - photo: - photo_id: 177917162 - photo_link: 'http://photos3.meetupstatic.com/photos/member/4/3/0/a/member_177917162.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/4/3/0/a/thumb_177917162.jpeg' - members: 537 - name: NodeBR - Minas Gerais lat: -19.920000076293945 - who: Noders - - utc_offset: -10800000 - country: BR - visibility: public + - country: BR city: Sorocaba - timezone: America/Sao_Paulo - created: 1410442012000 link: 'http://www.meetup.com/HackLab-Sorocaba/' - rating: 4.83 + name: HackLab Sorocaba description: "

O\_HackLab\_é um hackerspace de Sorocaba, SP.
\n\n
\n\n Somos um grupo de (e para)\_entusiastas em tecnologia e nosso objetivo é projetar, testar, estudar e compartilhar conhecimentos sobre diversas tecnologias como programação, eletrônica, hardware, arduino, artes, música, RPG, jogos de tabuleiro e outros.

" lon: -47.470001220703125 - join_mode: open - organizer: - member_id: 150862652 - name: Guilherme Serrano - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/8/7/e/highres_225914462.jpeg' - photo_id: 225914462 - photo_link: 'http://photos2.meetupstatic.com/photos/member/3/8/7/e/member_225914462.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/8/7/e/thumb_225914462.jpeg' - members: 270 - name: HackLab Sorocaba lat: -23.489999771118164 - who: Hackers - - utc_offset: -21600000 - country: MX - visibility: public + - country: MX city: Monterrey - timezone: America/Monterrey - created: 1410630176000 link: 'http://www.meetup.com/Javascript-Monterrey/' - rating: 4.75 + name: Javascript Monterrey description: 'Grupo para interesados y curiosos del lenguaje de programación Javascript. Buscamos difundir el lenguaje, promover el aprendizaje, conectar a la comunidad local y compartir experiencias laborales en torno al lenguaje.' lon: -100.31999969482422 - join_mode: open - organizer: - member_id: 169273712 - name: Javascript Monterrey - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/1/1/8/highres_225949432.jpeg' - photo_id: 225949432 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/1/1/8/member_225949432.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/1/1/8/thumb_225949432.jpeg' - members: 481 - name: Javascript Monterrey lat: 25.670000076293945 - who: Miembros - - utc_offset: -18000000 - country: CO - visibility: public + - country: CO city: Cali - timezone: America/Bogota - created: 1410646572000 link: 'http://www.meetup.com/AngularJS-Cali/' + name: AngularJS Cali description: 'Este grupo es para aquellos fascinados por el increible AngularJS. Tambien queremos oir que otras tecnologias web te interesan, y por que.' lon: -76.51000213623047 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/b/d/8/highres_410703032.jpeg' - photo_id: 410703032 photo_link: 'http://photos3.meetupstatic.com/photos/event/b/d/8/600_410703032.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/b/d/8/thumb_410703032.jpeg' - join_mode: open - organizer: - member_id: 34127052 - name: isaac malca - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/3/3/1/0/highres_94453072.jpeg' - photo_id: 94453072 - photo_link: 'http://photos1.meetupstatic.com/photos/member/3/3/1/0/member_94453072.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/3/3/1/0/thumb_94453072.jpeg' - members: 143 - name: AngularJS Cali lat: 3.4200000762939453 - who: Curly Braces - - utc_offset: -21600000 - country: MX - visibility: public + - country: MX city: México City - timezone: America/Mexico_City - created: 1410988930000 link: 'http://www.meetup.com/Mexico-City-Angularjs-notes-Meetup/' + name: Mexico City Angularjs notes Meetup description: This is a group for anyone interested in contribute to angularjs notes for beginners and for any beginner who wants to get started with the angularjs framework. lon: -99.13999938964844 - join_mode: open - organizer: - member_id: 171761452 - name: Sixto - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/d/0/5/e/highres_227573342.jpeg' - photo_id: 227573342 - photo_link: 'http://photos1.meetupstatic.com/photos/member/d/0/5/e/member_227573342.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/d/0/5/e/thumb_227573342.jpeg' - members: 34 - name: Mexico City Angularjs notes Meetup lat: 19.43000030517578 - who: web developers - - utc_offset: -21600000 - country: MX - visibility: public + - country: MX city: Pachuca - timezone: America/Mexico_City - created: 1411000155000 link: 'http://www.meetup.com/Pachupar-Develop/' - rating: 5 - description: >- -

Un meetup para personas interesadas en el aprendizaje de técnicas, - herramientas, trucos, buenas prácticas y vicios del desarrollo de - aplicaciones y sistemas, así como personas que deseen compartir el - conocimiento adquirido a partir de su experiencia como - programadores.

- -

Conoce personas que lleven el mismo gusto al arte de codificar - y materializar ideas a traves de los muchos lenguajes de - programación.

- -

- + name: Pachupar Develop + description: |- +

Un meetup para personas interesadas en el aprendizaje de técnicas, herramientas, trucos, buenas prácticas y vicios del desarrollo de aplicaciones y sistemas, así como personas que deseen compartir el conocimiento adquirido a partir de su experiencia como programadores.

+

Conoce personas que lleven el mismo gusto al arte de codificar y materializar ideas a traves de los muchos lenguajes de programación.

+


- -

lon: -98.76000213623047 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/c/0/8/1/highres_440689281.jpeg' - photo_id: 440689281 photo_link: 'http://photos2.meetupstatic.com/photos/event/c/0/8/1/600_440689281.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/c/0/8/1/thumb_440689281.jpeg' - join_mode: open - organizer: - member_id: 171721612 - name: nahualli - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/7/7/4/4/highres_227610532.jpeg' - photo_id: 227610532 - photo_link: 'http://photos4.meetupstatic.com/photos/member/7/7/4/4/member_227610532.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/7/7/4/4/thumb_227610532.jpeg' - members: 81 - name: Pachupar Develop lat: 20.1200008392334 - who: Members - - utc_offset: -10800000 - country: BR - visibility: public + - country: BR city: Rio de Janeiro - timezone: America/Sao_Paulo - created: 1412036514000 link: 'http://www.meetup.com/Meteor-Rio-de-Janeiro/' - description: >- -

Conheça outros desenvolvedores que usam Meteor. Compartilhe - seus conhecimentos, apps, e receba - feedback dos membros.

- -


Meteor é uma plataforma open-source para a construção de - aplicações web de alta qualidade em um curto período do tempo, não - importa se você é um desenvolvedor especialista ou está apenas - começando.

+ name: Meteor Rio de Janeiro + description: |- +

Conheça outros desenvolvedores que usam Meteor. Compartilhe seus conhecimentos, apps, e receba feedback dos membros.

+


Meteor é uma plataforma open-source para a construção de aplicações web de alta qualidade em um curto período do tempo, não importa se você é um desenvolvedor especialista ou está apenas começando.

lon: -43.20000076293945 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/8/1/a/8/highres_415773192.jpeg' - photo_id: 415773192 photo_link: 'http://photos3.meetupstatic.com/photos/event/8/1/a/8/600_415773192.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/8/1/a/8/thumb_415773192.jpeg' - join_mode: open - organizer: - member_id: 81670332 - name: Nick Coe - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/highres_245331334.jpeg' - photo_id: 245331334 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/8/8/6/member_245331334.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/thumb_245331334.jpeg' - members: 112 - name: Meteor Rio de Janeiro lat: -22.90999984741211 - who: Meteorites - - utc_offset: -10800000 - country: BR - visibility: public + - country: BR city: Salvador - timezone: America/Bahia - created: 1412311048000 link: 'http://www.meetup.com/FrontendBa/' + name: Frontend Bahia description: Grupo destinado à realizar encontros sobre Frontend na Bahia. lon: -38.5 - join_mode: open - organizer: - member_id: 175004392 - name: Shankar Cabus - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/3/5/a/4/highres_231433732.jpeg' - photo_id: 231433732 - photo_link: 'http://photos1.meetupstatic.com/photos/member/3/5/a/4/member_231433732.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/3/5/a/4/thumb_231433732.jpeg' - members: 97 - name: Frontend Bahia lat: -12.970000267028809 - who: frontenders - - utc_offset: -21600000 - country: MX - visibility: public + - country: MX city: México City - timezone: America/Mexico_City - created: 1412762984000 link: 'http://www.meetup.com/nodersmx/' - rating: 4.81 + name: NodersMX description: "

Comunidad de Noders en México.

\n

Nos reunimos mensualmente no solo para compartir JavaScript entre el servidor y el navegador, también compartimos JavaScript con los desarrolladores... Y cerveza.

\n

Web: http://noders.mx

\n

Twitter:\_https://twitter.com/nodersmx
\n\n

\n

Facebook:\_https://www.facebook.com/Nodersmx

" lon: -99.13999938964844 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/8/c/3/2/highres_432095890.jpeg' - photo_id: 432095890 photo_link: 'http://photos4.meetupstatic.com/photos/event/8/c/3/2/600_432095890.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/8/c/3/2/thumb_432095890.jpeg' - join_mode: open - organizer: - member_id: 155928482 - name: Rogelio Alberto - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/8/1/b/c/highres_229113212.jpeg' - photo_id: 229113212 - photo_link: 'http://photos3.meetupstatic.com/photos/member/8/1/b/c/member_229113212.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/8/1/b/c/thumb_229113212.jpeg' - members: 600 - name: NodersMX lat: 19.43000030517578 - who: Noders - - utc_offset: -18000000 - country: CO - visibility: public + - country: CO city: Bucaramanga - timezone: America/Bogota - created: 1412883037000 link: 'http://www.meetup.com/BucaraDev-Web-Developers/' - rating: 5 + name: BucaraDev Web Developers description: '

Un grupo para encontrar a los desarrolladores cerca a Bucaramanga, que sean apasionados con el desarrollo web y que les gusta estar al tanto de lo ultimo en tecnología de desarrollo. reunamos developers de front end y backend, mobile developers e interesados en traer la verdadera web a Bucaramanga.

' lon: -73.13999938964844 - join_mode: open - organizer: - member_id: 175237642 - name: Jairo Mejia - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/1/b/6/4/highres_233287012.jpeg' - photo_id: 233287012 - photo_link: 'http://photos1.meetupstatic.com/photos/member/1/b/6/4/member_233287012.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/1/b/6/4/thumb_233287012.jpeg' - members: 162 - name: BucaraDev Web Developers lat: 7.130000114440918 - who: Nexters - - utc_offset: -10800000 - country: BR - visibility: public + - country: BR city: Porto Alegre - timezone: America/Sao_Paulo - created: 1412955703000 link: 'http://www.meetup.com/Meteor-Porto-Alegre/' - rating: 5 - description: >- -

Participe do nosso chat: https://demo.rocket.chat/channel/meetup-poa

- -

Grupo criado para reunir pessoas interessadas em conhecer / aprender - / ensinar / testar / desenvolver aplicações utilizando o framework - Meteor.js. Meteor é uma plataforma open-source para desenvolvimento - rápido de aplicações web de alta qualidade, indicada para quem está - apenas começando ou para quem já é expert. Uma aplicação Meteor é um - mix de Javascript que roda dentro de um web browser, Javascript que - roda no no lado servidor Meteor dentro de um container Node.js, - fragmentos HTML, regras CSS e conteúdos estáticos (imagens, vídeos, - etc.).

+ name: Meteor Porto Alegre + description: |- +

Participe do nosso chat: https://demo.rocket.chat/channel/meetup-poa

+

Grupo criado para reunir pessoas interessadas em conhecer / aprender / ensinar / testar / desenvolver aplicações utilizando o framework Meteor.js. Meteor é uma plataforma open-source para desenvolvimento rápido de aplicações web de alta qualidade, indicada para quem está apenas começando ou para quem já é expert. Uma aplicação Meteor é um mix de Javascript que roda dentro de um web browser, Javascript que roda no no lado servidor Meteor dentro de um container Node.js, fragmentos HTML, regras CSS e conteúdos estáticos (imagens, vídeos, etc.).

lon: -51.220001220703125 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/4/3/b/e/highres_424457342.jpeg' - photo_id: 424457342 photo_link: 'http://photos1.meetupstatic.com/photos/event/4/3/b/e/600_424457342.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/4/3/b/e/thumb_424457342.jpeg' - join_mode: open - organizer: - member_id: 12882247 - name: Gabriel Engel - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/a/4/4/f/highres_10662063.jpeg' - photo_id: 10662063 - photo_link: 'http://photos3.meetupstatic.com/photos/member/a/4/4/f/member_10662063.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/a/4/4/f/thumb_10662063.jpeg' - members: 174 - name: Meteor Porto Alegre lat: -30.040000915527344 - who: Meteoritos - - utc_offset: -21600000 - country: MX - visibility: public + - country: MX city: México City - timezone: America/Mexico_City - created: 1413826709000 link: 'http://www.meetup.com/Meteor-Mexico/' - rating: 5 + name: Meteor México description: "

Meet other developers using Meteor. Share your knowledge, apps, and get feedback from others. Meteor is an open-source platform for building top-quality web apps in a fraction of the time, whether you're an expert developer or just getting started.

" lon: -99.13999938964844 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/a/1/b/a/highres_426821402.jpeg' - photo_id: 426821402 photo_link: 'http://photos4.meetupstatic.com/photos/event/a/1/b/a/600_426821402.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/a/1/b/a/thumb_426821402.jpeg' - join_mode: open - organizer: - member_id: 60459072 - name: Joe Cohen - photo: - photo_id: 146920822 - photo_link: 'http://photos4.meetupstatic.com/photos/member/9/f/7/6/member_146920822.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/9/f/7/6/thumb_146920822.jpeg' - members: 160 - name: Meteor México lat: 19.43000030517578 - who: Meteoritas - - utc_offset: -14400000 - country: DO - visibility: public + - country: DO city: Santo Domingo - timezone: America/Santo_Domingo - created: 1414209764000 link: 'http://www.meetup.com/Meteor-Dominican-Republic/' - rating: 4.5 + name: Meteor Dominican Republic description: "

Meet other developers using Meteor. Share your knowledge, apps, and get feedback from others. Meteor is an open-source platform for building top-quality web apps in a fraction of the time, whether you're an expert developer or just getting started.

" lon: -69.91000366210938 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/1/b/f/0/highres_425047152.jpeg' - photo_id: 425047152 photo_link: 'http://photos1.meetupstatic.com/photos/event/1/b/f/0/600_425047152.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/1/b/f/0/thumb_425047152.jpeg' - join_mode: open - organizer: - member_id: 81670332 - name: Nick Coe - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/highres_245331334.jpeg' - photo_id: 245331334 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/8/8/6/member_245331334.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/thumb_245331334.jpeg' - members: 219 - name: Meteor Dominican Republic lat: 18.479999542236328 - who: Meteorites - - utc_offset: -21600000 - country: MX - visibility: public + - country: MX city: Guadalajara - timezone: America/Mexico_City - created: 1414509098000 link: 'http://www.meetup.com/Meteor-GDL/' - rating: 5 + name: Meteor GuadalajaraMX description: "

Meet other developers using Meteor. Share your knowledge, apps, and get feedback from others. Meteor is an open-source platform for building top-quality web apps in a fraction of the time, whether you're an expert developer or just getting started.

" lon: -103.3499984741211 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/9/d/d/c/highres_427480412.jpeg' - photo_id: 427480412 photo_link: 'http://photos2.meetupstatic.com/photos/event/9/d/d/c/600_427480412.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/9/d/d/c/thumb_427480412.jpeg' - join_mode: open - organizer: - member_id: 81670332 - name: Nick Coe - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/highres_245331334.jpeg' - photo_id: 245331334 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/8/8/6/member_245331334.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/thumb_245331334.jpeg' - members: 142 - name: Meteor GuadalajaraMX lat: 20.670000076293945 - who: Meteorites - - utc_offset: -25200000 - country: MX - visibility: public + - country: MX city: Culiacán - timezone: America/Mazatlan - created: 1414537484000 link: 'http://www.meetup.com/Culiacan-AngularJS-Meetup/' + name: Culiacán AngularJS Meetup description: Intercambio de conocimientos y experiencias en programación web. lon: -107.38999938964844 - join_mode: open - organizer: - member_id: 180581792 - name: oscar oceguera - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/3/1/a/f/highres_249372719.jpeg' - photo_id: 249372719 - photo_link: 'http://photos1.meetupstatic.com/photos/member/3/1/a/f/member_249372719.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/3/1/a/f/thumb_249372719.jpeg' - members: 60 - name: Culiacán AngularJS Meetup lat: 24.799999237060547 - who: developers - - utc_offset: -16200000 - country: VE - visibility: public + - country: VE city: Ciudad Bolívar - timezone: America/Caracas - created: 1414772185000 link: 'http://www.meetup.com/Ciudad-Bolivar-Arduino-Node-Meetup/' + name: Ciudad Bolívar Arduino-Node Meetup description: '"Arduino, Nodejs, tambien un poco de domotica y drones"' lon: -63.599998474121094 - join_mode: open - organizer: - member_id: 146321782 - name: Alejandro Moises - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/7/7/1/c/highres_239070492.jpeg' - photo_id: 239070492 - photo_link: 'http://photos4.meetupstatic.com/photos/member/7/7/1/c/member_239070492.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/7/7/1/c/thumb_239070492.jpeg' - members: 11 - name: Ciudad Bolívar Arduino-Node Meetup lat: 8.100000381469727 - who: Members - - utc_offset: -18000000 - country: CO - visibility: public + - country: CO city: Bogotá - timezone: America/Bogota - created: 1415643991000 link: 'http://www.meetup.com/Bogota-Startup-desde-0/' + name: Bogotá - Startup desde 0 description: '"La creación es un acto en grupo, es como desarrollamos autoestima & confianza en nosotros mismos" (By @lorenaescandon) y "Que emprenda el que tenga la actitud, no el que tenga la urgencia de ganar dinero" (By @loogic)' lon: -74.08999633789062 - join_mode: open - organizer: - member_id: 177790372 - name: Aly Inmobiliaria - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/9/3/6/4/highres_234637732.jpeg' - photo_id: 234637732 - photo_link: 'http://photos1.meetupstatic.com/photos/member/9/3/6/4/member_234637732.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/9/3/6/4/thumb_234637732.jpeg' - members: 143 - name: Bogotá - Startup desde 0 lat: 4.630000114440918 - who: LOS 4400 - - utc_offset: -10800000 - country: BR - visibility: public + - country: BR city: Rio de Janeiro - timezone: America/Sao_Paulo - created: 1415815158000 link: 'http://www.meetup.com/devbeers-Rio-de-Janeiro/' - description: >- -

devbeers é um evento focado em unir a comunidade de - desenvolvedores! Levante da sua mesa e junte-se a nós para conversar - sobre desenvolvimento e beber uma cerveja de graça. :)

- -

O evento segue um código de conduta que vale para todas as partes - (organizadores, participantes e patrocinadores), e queremos com a ajuda - de vocês criar uma comunidade segura e receptiva para todos. Você pode - encontrâ-lo nesse link: http://www.devbeers.io/codeofconduct/coc-portuguese.htm

- lon: -43.20000076293945 - join_mode: open - organizer: - member_id: 63038032 - name: Heitor Tashiro Sergent - photo: - photo_id: 155206732 - photo_link: 'http://photos2.meetupstatic.com/photos/member/b/6/8/c/member_155206732.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/b/6/8/c/thumb_155206732.jpeg' - members: 298 name: devbeers Rio de Janeiro + description: |- +

devbeers é um evento focado em unir a comunidade de desenvolvedores! Levante da sua mesa e junte-se a nós para conversar sobre desenvolvimento e beber uma cerveja de graça. :)

+

O evento segue um código de conduta que vale para todas as partes (organizadores, participantes e patrocinadores), e queremos com a ajuda de vocês criar uma comunidade segura e receptiva para todos. Você pode encontrâ-lo nesse link: http://www.devbeers.io/codeofconduct/coc-portuguese.htm

+ lon: -43.20000076293945 lat: -22.90999984741211 - who: awesome - - utc_offset: -21600000 - country: MX - visibility: public + - country: MX city: Cancun - timezone: America/Mexico_City - created: 1415820844000 link: 'http://www.meetup.com/Cancun-JavaScript-Meetup/' - rating: 5 + name: Cancun JavaScript Meetup description: 'En este grupo aprenderemos a desarrollar aplicaciones y juegos para web y dispositivos móviles utilizando JavaScript. La idea es desarrollar nuestras habilidades, conocer nuevas tecnologías y relacionarte con otras personas. Si sabes programar en JavaScript, no importando si eres experto o principiante, y te interesa aprender y compartir tus conocimientos, únete a nuestro grupo.' lon: -92.4800033569336 - join_mode: open - organizer: - member_id: 114317122 - name: Diego Banuelos - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/7/4/b/c/highres_241469884.jpeg' - photo_id: 241469884 - photo_link: 'http://photos2.meetupstatic.com/photos/member/7/4/b/c/member_241469884.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/7/4/b/c/thumb_241469884.jpeg' - members: 58 - name: Cancun JavaScript Meetup lat: 16.920000076293945 - who: js hackers cancunenses - - utc_offset: -18000000 - country: CO - visibility: public + - country: CO city: Montería - timezone: America/Bogota - created: 1415833108000 link: 'http://www.meetup.com/monteriajs/' - description: >- -

Hemos creado este grupo con el fin de reunir, compartir y aprender - de los desarrolladores JavaScript de la ciudad de Montería, Colombia. - Nuestra filosofía será siempre la de mantener un ambiente informal, - nada estricto en ningún sentido. Así que cualquier colaboración, en - cualquier sentido, será muy bien recibida.

- -

Es importante mantener el respeto hacia otras personas y por ello - seguimos el código de conducta el cual pueden observar aquí - --> Código - de Conducta

- + name: MonteríaJS + description: |- +

Hemos creado este grupo con el fin de reunir, compartir y aprender de los desarrolladores JavaScript de la ciudad de Montería, Colombia. Nuestra filosofía será siempre la de mantener un ambiente informal, nada estricto en ningún sentido. Así que cualquier colaboración, en cualquier sentido, será muy bien recibida.

+

Es importante mantener el respeto hacia otras personas y por ello seguimos el código de conducta el cual pueden observar aquí --> Código de Conducta

¡Bienvenido!

lon: -75.88999938964844 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/b/5/9/8/highres_433366488.jpeg' - photo_id: 433366488 photo_link: 'http://photos3.meetupstatic.com/photos/event/b/5/9/8/600_433366488.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/b/5/9/8/thumb_433366488.jpeg' - join_mode: open - organizer: - member_id: 182515529 - name: John Fredy Baquero Celis - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/5/5/6/1/highres_250701857.jpeg' - photo_id: 250701857 - photo_link: 'http://photos2.meetupstatic.com/photos/member/5/5/6/1/member_250701857.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/5/5/6/1/thumb_250701857.jpeg' - members: 242 - name: MonteríaJS lat: 8.75 - who: Javascripters - - utc_offset: -21600000 - country: MX - visibility: public + - country: MX city: Misantla - timezone: America/Mexico_City - created: 1416201618000 link: 'http://www.meetup.com/NodeBots-Misantla/' + name: NodeBots Misantla description: 'Personas interesadas en experimentar nuevas tecnologias, la robotica, nodejs, android, desarrollo web.' lon: -96.83000183105469 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/6/7/8/4/highres_440306500.jpeg' - photo_id: 440306500 photo_link: 'http://photos3.meetupstatic.com/photos/event/6/7/8/4/600_440306500.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/6/7/8/4/thumb_440306500.jpeg' - join_mode: open - organizer: - member_id: 76425012 - name: irahan - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/e/8/d/2/highres_229139602.jpeg' - photo_id: 229139602 - photo_link: 'http://photos3.meetupstatic.com/photos/member/e/8/d/2/member_229139602.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/e/8/d/2/thumb_229139602.jpeg' - members: 28 - name: NodeBots Misantla lat: 19.93000030517578 - who: NodeBots Developer - - utc_offset: -18000000 - country: CO - visibility: public + - country: CO city: Pereira - source_of_truth: true - timezone: America/Bogota - created: 1393477200000 link: 'http://pereirajs.org/' + name: PereiraJS description: Comunidad de aprendizaje del lenguaje Javascript lon: -75.68000030517578 - join_mode: open - organizer: - member_id: '' - name: '' - photo: - highres_link: '' - photo_id: '' - photo_link: '' - thumb_link: '' - members: 30 - name: PereiraJS lat: 4.809999942779541 - who: javascripters - - utc_offset: -21600000 - country: MX - visibility: public + source_of_truth: true + - country: MX city: Zapopan - timezone: America/Mexico_City - created: 1417715717000 link: 'http://www.meetup.com/TequilaJS-Zapopan/' + name: TequilaJS Zapopan description: 'Este es un grupo para aquellos interesados en el desarrollo de software basado principalmente en JavaScript, ya seas backend o frontend, ya seas un master de java o .net, ya seas un senesi de JavaScript o apenas estes comenzando en el desarrollo web, este meetup es para tí. This is a group for those interested on software development mainly based on JavaScript tecnologies, if you are a front or back end developer, if you are a java or .net master, if you are a JavaScript sensei or just starting on web development, this meetup is for you.' lon: -103.4000015258789 - join_mode: open - organizer: - member_id: 126134822 - name: Arturo - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/4/2/7/e/highres_238277022.jpeg' - photo_id: 238277022 - photo_link: 'http://photos3.meetupstatic.com/photos/member/4/2/7/e/member_238277022.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/4/2/7/e/thumb_238277022.jpeg' - members: 196 - name: TequilaJS Zapopan lat: 20.719999313354492 - who: JS Drunken Ninjas - - utc_offset: -10800000 - country: AR - visibility: public + - country: AR city: Buenos Aires - timezone: America/Buenos_Aires - created: 1418753282000 link: 'http://www.meetup.com/beerjs-ba/' - rating: 4.81 + name: Beer.js Buenos Aires description: '

A meetup group for beer-drinkers and technology-oriented individuals looking to become closer with the JavaScript community in Buenos Aires. Join us for casual drinking and nerd experience-swapping!

' lon: -58.369998931884766 - join_mode: open - organizer: - member_id: 69036372 - name: Nicolás Gabriel Bevacqua - photo: - photo_id: 81203622 - photo_link: 'http://photos4.meetupstatic.com/photos/member/5/c/4/6/member_81203622.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/5/c/4/6/thumb_81203622.jpeg' - members: 589 - name: Beer.js Buenos Aires lat: -34.61000061035156 - who: JavaScripters - - utc_offset: -10800000 - country: BR - visibility: public + - country: BR city: Rio de Janeiro - timezone: America/Sao_Paulo - created: 1419040354000 link: 'http://www.meetup.com/ClickIT-Bitbucket-Meetup/' + name: ClickIT Bitbucket Meetup description: Este grupo é para falar sobre as novas tecnologias que vão ser usadas na empresa ClickIT lon: -43.20000076293945 - join_mode: open - organizer: - member_id: 183051500 - name: Rafael Kerr - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/b/d/b/e/highres_246768574.jpeg' - photo_id: 246768574 - photo_link: 'http://photos4.meetupstatic.com/photos/member/b/d/b/e/member_246768574.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/b/d/b/e/thumb_246768574.jpeg' - members: 4 - name: ClickIT Bitbucket Meetup lat: -22.90999984741211 - who: ClickIts - - utc_offset: -10800000 - country: CL - visibility: public + - country: CL city: Santiago - timezone: America/Santiago - created: 1420464457000 link: 'http://www.meetup.com/HackSantiago/' - rating: 4.85 - description: >- -

Welcome to HackSantiago! Join local like-minded developers, - entrepreneurs and tech-enthusiasts for a night of pizza, beer, - giveaways and learning a new thing or two. We will have thought leaders - in the field speaking about hot topics in the startup and tech world. - We'll be discussing software development, project management, - programming languages and other tangential topics. Thanks for joining - our community! I look forward to meeting you. 

- + name: HackSantiago + description: |- +

Welcome to HackSantiago! Join local like-minded developers, entrepreneurs and tech-enthusiasts for a night of pizza, beer, giveaways and learning a new thing or two. We will have thought leaders in the field speaking about hot topics in the startup and tech world. We'll be discussing software development, project management, programming languages and other tangential topics. Thanks for joining our community! I look forward to meeting you. 

See you soon! 

-

Daniela

- -

¡Bienvenidos a HackSantiago! Únete desarrolladores, empresarios - y entusiastas locales de la tecnología para una noche de pizza, - cervezas, sorteos y aprender una o dos cosas nuevas. Tendremos expertos - hablando de las temas de actualidad en el mundo de los startups y la - tecnología. Discutiremos el desarrollo de software, project management, - nuevas lenguajes de programación y otros temas afínes. ¡Gracias por - unirte a nuestra comunidad! 

- +

¡Bienvenidos a HackSantiago! Únete desarrolladores, empresarios y entusiastas locales de la tecnología para una noche de pizza, cervezas, sorteos y aprender una o dos cosas nuevas. Tendremos expertos hablando de las temas de actualidad en el mundo de los startups y la tecnología. Discutiremos el desarrollo de software, project management, nuevas lenguajes de programación y otros temas afínes. ¡Gracias por unirte a nuestra comunidad! 

¡Hasta pronto! 

-

Daniela

-


- -

hacksantiago.com 

+

hacksantiago.com 

lon: -70.63999938964844 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/2/d/8/e/highres_440111662.jpeg' - photo_id: 440111662 photo_link: 'http://photos4.meetupstatic.com/photos/event/2/d/8/e/600_440111662.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/2/d/8/e/thumb_440111662.jpeg' - join_mode: open - organizer: - member_id: 111575152 - name: Ryan Naayem - photo: - photo_id: 146911782 - photo_link: 'http://photos1.meetupstatic.com/photos/member/7/c/2/6/member_146911782.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/7/c/2/6/thumb_146911782.jpeg' - members: 965 - name: HackSantiago lat: -33.459999084472656 - who: Hackers - - utc_offset: -18000000 - country: PA - visibility: public + - country: PA city: Panamá - timezone: America/Panama - created: 1421279086000 link: 'http://www.meetup.com/Panamajs/' - rating: 5 - description: >- -

PanamáJS es la comunidad de usuarios de Javascript. Únete a la - comunidad para aprender y compartir conocimiento sobre JavaScript. - Realizamos diferentes eventos mensuales que ampliarán tus conocimientos - sobre esta tecnología y otras tecnologías similares.

- -

En PanamáJS nos regimos bajo un código de conducta.

- + name: PanamáJS + description: |- +

PanamáJS es la comunidad de usuarios de Javascript. Únete a la comunidad para aprender y compartir conocimiento sobre JavaScript. Realizamos diferentes eventos mensuales que ampliarán tus conocimientos sobre esta tecnología y otras tecnologías similares.

+

En PanamáJS nos regimos bajo un código de conducta.

Entre nuestros eventos mensuales están los siguientes:

- -

PanamaJS: un evento mensual gratuito donde desarrolladores se reúnen - en un espacio y se comparten charlas y exposiciones acerca de - Javascript. 

- -

PanamáJS ayuda a crear espacios sociales que fortalezcan - comunidades alrededor del desarrollo - de software. No es requerimiento alguno consumir - alcohol para participar.

+

PanamaJS: un evento mensual gratuito donde desarrolladores se reúnen en un espacio y se comparten charlas y exposiciones acerca de Javascript. 

+

PanamáJS ayuda a crear espacios sociales que fortalezcan comunidades alrededor del desarrollo de software. No es requerimiento alguno consumir alcohol para participar.

lon: -79.52999877929688 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/1/0/c/4/highres_441064292.jpeg' - photo_id: 441064292 photo_link: 'http://photos2.meetupstatic.com/photos/event/1/0/c/4/600_441064292.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/1/0/c/4/thumb_441064292.jpeg' - join_mode: open - organizer: - member_id: 43150512 - name: Gabo Esquivel - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/d/f/0/1/highres_246717089.jpeg' - photo_id: 246717089 - photo_link: 'http://photos1.meetupstatic.com/photos/member/d/f/0/1/member_246717089.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/d/f/0/1/thumb_246717089.jpeg' - members: 183 - name: PanamáJS lat: 8.970000267028809 - who: Javascripters - - utc_offset: -18000000 - country: CO - visibility: public + - country: CO city: Medellín - timezone: America/Bogota - created: 1422219716000 link: 'http://www.meetup.com/Robotica-Medellin/' - rating: 5 + name: Robotica Medellín description: '

Interesado en temas de electrónica, computación y mecánica? Te gusta trabajar con las nuevas tecnologias open source? quieres saber algo mas allá de un robot seguidor de línea? Tienes algún proyecto para mostrar pero no sabes donde hacerlo? Este espacio estará creado para fomentar una cultura, que no es propia de los asíaticos ni de los norteamericanos. En medellín se puede hablar de robótica!!!

' lon: -75.58999633789062 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/5/0/d/6/highres_442160694.jpeg' - photo_id: 442160694 photo_link: 'http://photos1.meetupstatic.com/photos/event/5/0/d/6/600_442160694.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/5/0/d/6/thumb_442160694.jpeg' - join_mode: open - organizer: - member_id: 104182502 - name: Alejandro Gomez - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/a/5/f/a/highres_241662490.jpeg' - photo_id: 241662490 - photo_link: 'http://photos3.meetupstatic.com/photos/member/a/5/f/a/member_241662490.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/a/5/f/a/thumb_241662490.jpeg' - members: 520 - name: Robotica Medellín lat: 6.25 - who: Robotistas - - utc_offset: -18000000 - country: CO - visibility: public + - country: CO city: Manizales - timezone: America/Bogota - created: 1422551572000 link: 'http://www.meetup.com/ManizalesJS/' - rating: 4.66 + name: ManizalesJS description: '

Este es un grupo con el objetivo de integrar desarrolladores en la ciudad de Manizales, alrededor de Javascript; tecnología cuyo uso está en auge y crecimiento.
El objetivo es encontrar personas que compartan estos intereses, para compartir, aprender y crecer juntos profesionalmente.
La idea, como en grupos similares en otras ciudades es mantener un ambiente informal, donde es bienvenida cualquier tipo de participación y colaboración que nos ayude a todos a crecer como desarrolladores.

' lon: -75.5199966430664 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/d/f/b/c/highres_433977276.jpeg' - photo_id: 433977276 photo_link: 'http://photos1.meetupstatic.com/photos/event/d/f/b/c/600_433977276.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/d/f/b/c/thumb_433977276.jpeg' - join_mode: open - organizer: - member_id: 184003693 - name: Germán Mauricio Muñoz - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/7/4/e/highres_243361870.jpeg' - photo_id: 243361870 - photo_link: 'http://photos1.meetupstatic.com/photos/member/7/4/e/member_243361870.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/7/4/e/thumb_243361870.jpeg' - members: 285 - name: ManizalesJS lat: 5.059999942779541 - who: Javascripters - - utc_offset: -18000000 - country: PE - visibility: public + - country: PE city: Lima - timezone: America/Lima - created: 1422657366000 link: 'http://www.meetup.com/ReactJS-Peru/' - rating: 5 + name: ReactJS Lima description: '

Come for drinks, share stories, and hack using ReactJS

' lon: -77.05000305175781 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/8/3/b/2/highres_433833714.jpeg' - photo_id: 433833714 photo_link: 'http://photos3.meetupstatic.com/photos/event/8/3/b/2/600_433833714.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/8/3/b/2/thumb_433833714.jpeg' - join_mode: open - organizer: - member_id: 53663922 - name: Chris Ramón - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/1/9/a/2/highres_239046562.jpeg' - photo_id: 239046562 - photo_link: 'http://photos2.meetupstatic.com/photos/member/1/9/a/2/member_239046562.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/1/9/a/2/thumb_239046562.jpeg' - members: 458 - name: ReactJS Lima lat: -12.069999694824219 - who: developers - - utc_offset: -21600000 - country: MX - visibility: public + - country: MX city: Guanajuato - timezone: America/Mexico_City - created: 1422669148000 link: 'http://www.meetup.com/Meteor-Guanajuato/' - rating: 5 + name: Meteor Guanajuato description: "

Meet other developers using Meteor. Share your knowledge, apps, and get feedback from others. Meteor is an open-source platform for building top-quality web apps in a fraction of the time, whether you're an expert developer or just getting started.

" lon: -101.27999877929688 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/8/f/e/4/highres_433836836.jpeg' - photo_id: 433836836 photo_link: 'http://photos1.meetupstatic.com/photos/event/8/f/e/4/600_433836836.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/8/f/e/4/thumb_433836836.jpeg' - join_mode: open - organizer: - member_id: 81670332 - name: Nick Coe - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/highres_245331334.jpeg' - photo_id: 245331334 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/8/8/6/member_245331334.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/thumb_245331334.jpeg' - members: 121 - name: Meteor Guanajuato lat: 21.020000457763672 - who: Meteorites - - utc_offset: -10800000 - country: AR - visibility: public + - country: AR city: Buenos Aires - timezone: America/Buenos_Aires - created: 1422887727000 link: 'http://www.meetup.com/banodejs/' - rating: 4.66 + name: BA Node.js Meetup description: '

La idea de BANode surgió desde la comunidad y para la comunidad. Desde proponer las charlas, el proceso de selección de los temas hasta la ubicación de los meetups son discutidos entre organizadores. ¿Quiénes son los organizadores? Cualquier persona que colabore es considerada parte de la organización.

' lon: -58.369998931884766 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/c/e/d/a/highres_438712954.jpeg' - photo_id: 438712954 photo_link: 'http://photos4.meetupstatic.com/photos/event/c/e/d/a/600_438712954.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/c/e/d/a/thumb_438712954.jpeg' - join_mode: open - organizer: - member_id: 184100636 - name: Node Buenos Aires - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/a/9/d/8/highres_243463480.jpeg' - photo_id: 243463480 - photo_link: 'http://photos2.meetupstatic.com/photos/member/a/9/d/8/member_243463480.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/a/9/d/8/thumb_243463480.jpeg' - members: 892 - name: BA Node.js Meetup lat: -34.61000061035156 - who: Noders - - utc_offset: -10800000 - country: BR - visibility: public + - country: BR city: Natal - timezone: America/Fortaleza - created: 1423254353000 link: 'http://www.meetup.com/FEMUG-RN/' - description: >- + name: 'Natal.js -> FEMUG-RN' + description: |-

Dedicado à comunidade de desenvolvimento Front-End do RN.

- -

Qualquer pessoa que goste de compartilhar conhecimentos, trabalhe - com a linguagem profissionalmente ou que seja apenas um "hobbista", - é bem-vinda. 

- +

Qualquer pessoa que goste de compartilhar conhecimentos, trabalhe com a linguagem profissionalmente ou que seja apenas um "hobbista", é bem-vinda. 

O que é o FEMUG:

- -

O "Front-End Meet-Up Group" é um projeto que nasceu da necessidade - de unir os desenvolvedores Front-End de São Paulo, e então tornou-se - uma idéia coletiva, para que o acesso à informação seja feito em - qualquer lugar que haja interesse do aprendizado.

- -

O evento NÃO pode visar o lucro de um ou mais - organizadores. É igualmente restritivo a prática de qualquer - preconceito em relação a qualquer pessoa que tenha interesse de - aprender ou qualquer tecnologia.

- -

Trata-se de um evento para pessoas interessadas em aprender, evoluir - e dividir conhecimentos relacionados ao front-end e tecnologias - periféricas relacionadas.

https://github.com/braziljs/femug/ - +

O "Front-End Meet-Up Group" é um projeto que nasceu da necessidade de unir os desenvolvedores Front-End de São Paulo, e então tornou-se uma idéia coletiva, para que o acesso à informação seja feito em qualquer lugar que haja interesse do aprendizado.

+

O evento NÃO pode visar o lucro de um ou mais organizadores. É igualmente restritivo a prática de qualquer preconceito em relação a qualquer pessoa que tenha interesse de aprender ou qualquer tecnologia.

+

Trata-se de um evento para pessoas interessadas em aprender, evoluir e dividir conhecimentos relacionados ao front-end e tecnologias periféricas relacionadas.

https://github.com/braziljs/femug/
lon: -35.220001220703125 - join_mode: open - organizer: - member_id: 184222234 - name: Emmerson Siqueira - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/c/8/2/2/highres_243591234.jpeg' - photo_id: 243591234 - photo_link: 'http://photos4.meetupstatic.com/photos/member/c/8/2/2/member_243591234.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/c/8/2/2/thumb_243591234.jpeg' - members: 83 - name: 'Natal.js -> FEMUG-RN' lat: -5.800000190734863 - who: FEMUGUIANO - - utc_offset: -10800000 - country: AR - visibility: public + - country: AR city: Resistencia - timezone: America/Cordoba - created: 1424262198000 link: 'http://www.meetup.com/Resistencia-Corrientes-TechUpdate-Meetup/' + name: Resistencia - Corrientes TechUpdate Meetup description: 'Si sos desarrollador frontEnd o BackEnd, si solamente te gusta investigar y aprender sobre nuevas tecnologías de desarrollo, si te gusta estar actualizado sobre herramientas que ayudan a mejorar el mundo sistémico, te invito a unirte a esta meetup donde el lenguaje, los conocimientos o la experiencia no es un límite.' lon: -58.9900016784668 - join_mode: open - organizer: - member_id: 183726378 - name: Magalí Escobar - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/7/2/3/highres_245761827.jpeg' - photo_id: 245761827 - photo_link: 'http://photos3.meetupstatic.com/photos/member/7/2/3/member_245761827.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/7/2/3/thumb_245761827.jpeg' - members: 73 - name: Resistencia - Corrientes TechUpdate Meetup lat: -27.459999084472656 - who: 'desarrolladores, diseñadores' - - utc_offset: -18000000 - country: CO - visibility: public + - country: CO city: Villavicencio - timezone: America/Bogota - created: 1424627249000 link: 'http://www.meetup.com/Villavicencio-JS/' + name: VillavicencioJS description: 'Esta es la primer comunidad Javascript de la ciudad e Villavicencio, ayúdanos a crear actividades que incentiven el uso de tecnologías innovadoras en los proyectos de software de la región y el país.' lon: -73.63999938964844 - join_mode: open - organizer: - member_id: 120559872 - name: Iván Casanova - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/2/8/9/highres_247920649.jpeg' - photo_id: 247920649 - photo_link: 'http://photos3.meetupstatic.com/photos/member/2/8/9/member_247920649.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/2/8/9/thumb_247920649.jpeg' - members: 106 - name: VillavicencioJS lat: 4.150000095367432 - who: Javascripters - - utc_offset: -10800000 - country: BR - visibility: public + - country: BR city: Rio de Janeiro - timezone: America/Sao_Paulo - created: 1424826999000 link: 'http://www.meetup.com/tecnologia-e-cafe/' - rating: 5 - description: >- -

O Curto Café é um ambiente muito especial para conversar sobre - tecnologia: uma cafeteria open source escondida no coração do Centro do - Rio de Janeiro.

- -

Junte-se a nós para beber um café especial e conversar sobre - desenvolvimento web, café, sustentabilidade e como isso tudo se - relaciona.

+ name: 'Tecnologia & Café' + description: |- +

O Curto Café é um ambiente muito especial para conversar sobre tecnologia: uma cafeteria open source escondida no coração do Centro do Rio de Janeiro.

+

Junte-se a nós para beber um café especial e conversar sobre desenvolvimento web, café, sustentabilidade e como isso tudo se relaciona.

lon: -43.20000076293945 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/7/4/e/c/highres_434669932.jpeg' - photo_id: 434669932 photo_link: 'http://photos1.meetupstatic.com/photos/event/7/4/e/c/600_434669932.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/7/4/e/c/thumb_434669932.jpeg' - join_mode: open - organizer: - member_id: 68755492 - name: Felippe Nardi - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/e/7/f/d/highres_244079389.jpeg' - photo_id: 244079389 - photo_link: 'http://photos2.meetupstatic.com/photos/member/e/7/f/d/member_244079389.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/e/7/f/d/thumb_244079389.jpeg' - members: 571 - name: 'Tecnologia & Café' lat: -22.90999984741211 - who: coffeeholics - - utc_offset: -18000000 - country: PE - visibility: public + - country: PE city: Lima - timezone: America/Lima - created: 1424882471000 link: 'http://www.meetup.com/Lima-NodeJS-Meetup/' - rating: 4.37 + name: Lima NodeJS Meetup description: '

Llamando a todos los desarrolladores de software de Javascript. Reúnase con sus contemporáneos, aprender acerca de nuevas tecnologías y divertirse en nuestros eventos dedicados a NodeJS

' lon: -77.05000305175781 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/c/1/7/8/highres_434869528.jpeg' - photo_id: 434869528 photo_link: 'http://photos2.meetupstatic.com/photos/event/c/1/7/8/600_434869528.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/c/1/7/8/thumb_434869528.jpeg' - join_mode: open - organizer: - member_id: 178991782 - name: Rein Petersen - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/e/5/e/4/highres_236758852.jpeg' - photo_id: 236758852 - photo_link: 'http://photos1.meetupstatic.com/photos/member/e/5/e/4/member_236758852.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/e/5/e/4/thumb_236758852.jpeg' - members: 856 - name: Lima NodeJS Meetup lat: -12.069999694824219 - who: Nodistas - - utc_offset: -21600000 - country: MX - visibility: public + - country: MX city: Monterrey - timezone: America/Monterrey - created: 1425358272000 link: 'http://www.meetup.com/Monterrey-AngularJS-Meetup/' + name: Monterrey AngularJS Meetup description: '

Este es un grupo para promover buenas practicas y conocimiento fuerte sobre el desarrollo con la libreria Angularjs, así como para crear nuevo contenido de calidad. No es necesaria ninguna experiencia de desarrollo pero si muchas ganas de aprender y colaborar para crear grandes proyectos.

' lon: -100.31999969482422 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/a/7/2/3/highres_434862787.jpeg' - photo_id: 434862787 photo_link: 'http://photos2.meetupstatic.com/photos/event/a/7/2/3/600_434862787.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/a/7/2/3/thumb_434862787.jpeg' - join_mode: open - organizer: - member_id: 72623332 - name: Jesus Israel Perales Martinez - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/9/6/d/1/highres_244238609.jpeg' - photo_id: 244238609 - photo_link: 'http://photos2.meetupstatic.com/photos/member/9/6/d/1/member_244238609.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/9/6/d/1/thumb_244238609.jpeg' - members: 156 - name: Monterrey AngularJS Meetup lat: 25.670000076293945 - who: Developers - - utc_offset: -18000000 - country: CO - visibility: public + - country: CO city: Barranquilla - timezone: America/Bogota - created: 1425475932000 link: 'http://www.meetup.com/BarranquillaJS/' - rating: 4.75 - description: >- -

Este es un grupo para todos los desarrolladores, entusiastas - y apasionados por Javascript en Barranquilla y la costa atlantica.

- + name: BarranquillaJS + description: |- +

Este es un grupo para todos los desarrolladores, entusiastas y apasionados por Javascript en Barranquilla y la costa atlantica.

Github

-

Twitter

-

Come and join us (we have cookies)!

lon: -74.81999969482422 - join_mode: open - organizer: - member_id: 184307583 - name: Richard Roncancio - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/3/8/0/f/highres_244274351.jpeg' - photo_id: 244274351 - photo_link: 'http://photos1.meetupstatic.com/photos/member/3/8/0/f/member_244274351.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/3/8/0/f/thumb_244274351.jpeg' - members: 172 - name: BarranquillaJS lat: 11 - who: Javascripters - - utc_offset: -10800000 - country: AR - visibility: public + - country: AR city: Córdoba - timezone: America/Cordoba - created: 1426767842000 link: 'http://www.meetup.com/Meteor-Cordoba/' - rating: 4.25 + name: Meteor Cordoba description: '

Reunir otros desarrolladores que usen o quieran usar Meteor. Comparte tu conocimiento, aplicaciones y obtene recomendaciones de otros desarrolladores/programadores. Meteor es una plataforma de codigo abierto para construir rapidamente aplicaciones web y moviles de alta calidad para expertos o programadores novatos.

' lon: -64.19000244140625 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/7/e/8/6/highres_435392390.jpeg' - photo_id: 435392390 photo_link: 'http://photos4.meetupstatic.com/photos/event/7/e/8/6/600_435392390.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/7/e/8/6/thumb_435392390.jpeg' - join_mode: open - organizer: - member_id: 181839132 - name: Danilo - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/a/f/4/9/highres_244664873.jpeg' - photo_id: 244664873 - photo_link: 'http://photos2.meetupstatic.com/photos/member/a/f/4/9/member_244664873.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/a/f/4/9/thumb_244664873.jpeg' - members: 107 - name: Meteor Cordoba lat: -31.399999618530273 - who: Meteoritos - - utc_offset: -10800000 - country: BR - visibility: public + - country: BR city: Rio de Janeiro - timezone: America/Sao_Paulo - created: 1427306567000 link: 'http://www.meetup.com/barrajs/' - rating: 5 + name: Barra JS description: '

Esse grupo é para os amantes do JavaScript. Outras linguagens são bem vindas. =)

' lon: -43.20000076293945 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/d/8/6/6/highres_435775398.jpeg' - photo_id: 435775398 photo_link: 'http://photos1.meetupstatic.com/photos/event/d/8/6/6/600_435775398.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/d/8/6/6/thumb_435775398.jpeg' - join_mode: approval - organizer: - member_id: 174484682 - name: Danilo Reis - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/1/f/2/d/highres_244807981.jpeg' - photo_id: 244807981 - photo_link: 'http://photos2.meetupstatic.com/photos/member/1/f/2/d/member_244807981.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/1/f/2/d/thumb_244807981.jpeg' - members: 99 - name: Barra JS lat: -22.90999984741211 - who: Coders - - utc_offset: -10800000 - country: BR - visibility: public + - country: BR city: Belo Horizonte - timezone: America/Sao_Paulo - created: 1427317166000 link: 'http://www.meetup.com/MEAN-BH/' - rating: 5 + name: MEAN BH description: 'Desenvolvedores Full-Stack JavaScript. Desenvolvimento de aplicações web com MongoDB, Express, Angular e Node.' lon: -43.939998626708984 - join_mode: open - organizer: - member_id: 37453252 - name: Marcelo Costa de Oliveira - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/e/a/3/e/highres_243539966.jpeg' - photo_id: 243539966 - photo_link: 'http://photos1.meetupstatic.com/photos/member/e/a/3/e/member_243539966.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/e/a/3/e/thumb_243539966.jpeg' - members: 205 - name: MEAN BH lat: -19.920000076293945 - who: Full-Stack JavaScript Developers - - utc_offset: -10800000 - country: BR - visibility: public + - country: BR city: Ponta Grossa - timezone: America/Sao_Paulo - created: 1427831507000 link: 'http://www.meetup.com/PontaGrossaJS/' - description: >- -

Grupo dedicado aos desenvolvedores JavaScript em Ponta Grossa e na - região dos Campos Gerais. 

- -

Github: https://github.com/pgjs 

- -

Grupo no Facebook: https://www.facebook.com/groups/pontagrossa... -

+ name: PG.js + description: |- +

Grupo dedicado aos desenvolvedores JavaScript em Ponta Grossa e na região dos Campos Gerais. 

+

Github: https://github.com/pgjs 

+

Grupo no Facebook: https://www.facebook.com/groups/pontagrossa...

lon: -50.15999984741211 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/4/1/3/d/highres_436096701.jpeg' - photo_id: 436096701 photo_link: 'http://photos2.meetupstatic.com/photos/event/4/1/3/d/600_436096701.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/4/1/3/d/thumb_436096701.jpeg' - join_mode: open - organizer: - member_id: 185722626 - name: Jefferson mexkiv - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/1/7/6/7/highres_244985991.jpeg' - photo_id: 244985991 - photo_link: 'http://photos4.meetupstatic.com/photos/member/1/7/6/7/member_244985991.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/1/7/6/7/thumb_244985991.jpeg' - members: 50 - name: PG.js lat: -25.09000015258789 - who: DevNerds - - utc_offset: -10800000 - country: BR - visibility: public + - country: BR city: Fortaleza - timezone: America/Fortaleza - created: 1428432315000 link: 'http://www.meetup.com/Ionic-Fortaleza-Meetup/' + name: Ionic Fortaleza Meetup description: Meetups para interessantes no Ionic Framework e Aplicativos Híbridos em geral e sua vasta gama de tecnologias. lon: -38.59000015258789 - join_mode: open - organizer: - member_id: 107294002 - name: Felquis Gimenes - members: 84 - name: Ionic Fortaleza Meetup lat: -3.7799999713897705 - who: Ionites - - utc_offset: -21600000 - country: MX - visibility: public + - country: MX city: Guadalajara - timezone: America/Mexico_City - created: 1428465035000 link: 'http://www.meetup.com/Guadalajara-JS/' - rating: 4.67 - description: >- -

Este es un grupo para todos los interesado en el lenguaje - JavaScript. Tanto en el Front-end como en el Back-end. La meta es tener - reuniones mensuales, donde se hable sobre las capacidades del lenguaje - y como lo usamos para resolver problemas, para invitar a más gente - a usarlo y mejorar nuestras habilidades.

- -

El segundo objetivo es hacer que el último martes de cada mes sea el - mejor martes de cada mes :)

+ name: Guadalajara JS + description: |- +

Este es un grupo para todos los interesado en el lenguaje JavaScript. Tanto en el Front-end como en el Back-end. La meta es tener reuniones mensuales, donde se hable sobre las capacidades del lenguaje y como lo usamos para resolver problemas, para invitar a más gente a usarlo y mejorar nuestras habilidades.

+

El segundo objetivo es hacer que el último martes de cada mes sea el mejor martes de cada mes :)

lon: -103.3499984741211 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/9/6/5/f/highres_436298495.jpeg' - photo_id: 436298495 photo_link: 'http://photos2.meetupstatic.com/photos/event/9/6/5/f/600_436298495.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/9/6/5/f/thumb_436298495.jpeg' - join_mode: open - organizer: - member_id: 162443772 - name: Orlando Del Aguila Febres - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/6/5/8/8/highres_236725992.jpeg' - photo_id: 236725992 - photo_link: 'http://photos2.meetupstatic.com/photos/member/6/5/8/8/member_236725992.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/6/5/8/8/thumb_236725992.jpeg' - members: 513 - name: Guadalajara JS lat: 20.670000076293945 - who: Javascripters - - utc_offset: -18000000 - country: CO - visibility: public + - country: CO city: Medellín - timezone: America/Bogota - created: 1428534679000 link: 'http://www.meetup.com/Ember-Medellin/' - rating: 4.75 + name: Ember Medellin description: '

Ember.js Medellin Meetup para amantes de Ember.js, para mantenernos actualizados y en constante mejoramiento. Quienes deseen aprender son bienvenidos!

' lon: -75.58999633789062 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/5/7/1/6/highres_436102294.jpeg' - photo_id: 436102294 photo_link: 'http://photos2.meetupstatic.com/photos/event/5/7/1/6/600_436102294.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/5/7/1/6/thumb_436102294.jpeg' - join_mode: open - organizer: - member_id: 8207180 - name: John Acosta - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/7/9/1/0/highres_145470992.jpeg' - photo_id: 145470992 - photo_link: 'http://photos4.meetupstatic.com/photos/member/7/9/1/0/member_145470992.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/7/9/1/0/thumb_145470992.jpeg' - members: 166 - name: Ember Medellin lat: 6.25 - who: Embereños - - utc_offset: -10800000 - country: AR - visibility: public + - country: AR city: Córdoba - timezone: America/Cordoba - created: 1430144286000 link: 'http://www.meetup.com/EmberJS-Cba/' + name: Ember.js Cba description: '

Grupo de cordobeses embereños que comparten experiencias, novedades, curiosidades y alguna que otra demostración interesante del día a día con el framework Ember.js.

' lon: -64.19000244140625 - join_mode: open - organizer: - member_id: 186646619 - name: Marcelo Mira - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/2/f/0/highres_245700752.jpeg' - photo_id: 245700752 - photo_link: 'http://photos1.meetupstatic.com/photos/member/2/f/0/member_245700752.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/2/f/0/thumb_245700752.jpeg' - members: 61 - name: Ember.js Cba lat: -31.399999618530273 - who: embereños - - utc_offset: -10800000 - country: AR - visibility: public + - country: AR city: Rosario - timezone: America/Cordoba - created: 1430328726000 link: 'http://www.meetup.com/JavaScript-Everywhere-in-Rosario/' - rating: 4.75 + name: JavaScript Everywhere in Rosario description: '

La idea es juntarnos a compartir ideas y experiencias sobre el pasado, presente y futuro de JavaScript, sin importar el nivel con el que cuente cada uno, o si conocen o no el lenguaje. Te invitamos a sumarte a esta página y también a nuestro grupo de facebook en donde llevamos el día a día de nuestra comunidad: https://www.facebook.com/groups/js.everywhere/

' lon: -60.66999816894531 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/6/e/c/9/highres_436888361.jpeg' - photo_id: 436888361 photo_link: 'http://photos4.meetupstatic.com/photos/event/6/e/c/9/600_436888361.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/6/e/c/9/thumb_436888361.jpeg' - join_mode: open - organizer: - member_id: 171944432 - name: Leandro Bessone - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/7/b/a/3/highres_247951651.jpeg' - photo_id: 247951651 - photo_link: 'http://photos1.meetupstatic.com/photos/member/7/b/a/3/member_247951651.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/7/b/a/3/thumb_247951651.jpeg' - members: 184 - name: JavaScript Everywhere in Rosario lat: -32.95000076293945 - who: Javascripters - - utc_offset: -10800000 - country: BR - visibility: public + - country: BR city: Salvador - timezone: America/Bahia - created: 1432617127000 link: 'http://www.meetup.com/Salvador-MeteorJS-Meetup/' + name: Salvador MeteorJS Meetup description: 'Grupo de interessados na mágica do MeteorJS, aplicações real-time, mongodb em aplicações e desenvolvimento de novas ideias e do empreendedorismo inovador.' lon: -38.5 - join_mode: open - organizer: - member_id: 187806389 - name: Yuri Matheus - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/b/7/f/highres_246482943.jpeg' - photo_id: 246482943 - photo_link: 'http://photos2.meetupstatic.com/photos/member/b/7/f/member_246482943.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/b/7/f/thumb_246482943.jpeg' - members: 31 - name: Salvador MeteorJS Meetup lat: -12.970000267028809 - who: Meteorus - - utc_offset: -10800000 - country: AR - visibility: public + - country: AR city: Buenos Aires - timezone: America/Buenos_Aires - created: 1433949708000 link: 'http://www.meetup.com/Buenos-Aires-DEVS-have-the-power-Choose-your-next-work/' + name: Buenos Aires. DEVS have the power. Choose your next work. description: 'We believe the best developers have the power and opportunity to choose their next work, their next company or a partner for a startup. Here is a space were we can meet and make that happen.' lon: -58.369998931884766 - join_mode: open - organizer: - member_id: 184557132 - name: Ariel Jolo - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/4/5/2/0/highres_243917696.jpeg' - photo_id: 243917696 - photo_link: 'http://photos4.meetupstatic.com/photos/member/4/5/2/0/member_243917696.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/4/5/2/0/thumb_243917696.jpeg' - members: 188 - name: Buenos Aires. DEVS have the power. Choose your next work. lat: -34.61000061035156 - who: Dev Rock Star - - utc_offset: -10800000 - country: BR - visibility: public + - country: BR city: São Carlos - timezone: America/Sao_Paulo - created: 1434023763000 link: 'http://www.meetup.com/opensanca/' - rating: 4.67 - description: >- + name: opensanca + description: |-

Olá, se você veio até aqui, ficamos felizes!

- -

Esse é um dos canais para discutirmos sobre desenvolvimento Open - Source, queremos que esses encontros sejam além de tecnologias; - esperamos que ele forneça apoio à todos em diversos segmentos - e vertentes; seja parte disso e ajude a comunidade - Open-Sanca para que este Meetup ganhe força, não importa se você - é iniciante, ninja-samurai ou Goku das profundezas do Egeu.

- -

Afinal, o que a comunidade espera de você desenvolvedor? - Quando você ouve a palavra contribua, espera-se que - possamos ir além de githubs, palestras, workshops e afins, por isto - você é uma peça importante nessa engrenagem, - contribua!

- -

Queremos proporcionar um bate-papo(OpenTalks) no qual todos - possam colaborar e  fomentar um networking com empresas, - desenvolvedores, comunidades acadêmicas, afinal hoje praticamente o que - todos falam, respiram e exalam é sobre - tecnologia .

- -

Faça parte do OpenSanca, traga seus amigos, independente da - carreira que segue, todos podem colaborar, abaixo enumeramos alguns - assuntos que abordamos durante nossos encontros, mas fique a vontade - para apontar tópicos que você julgar válido também, afinal estamos - falando sobre ser OPEN.

- +

Esse é um dos canais para discutirmos sobre desenvolvimento Open Source, queremos que esses encontros sejam além de tecnologias; esperamos que ele forneça apoio à todos em diversos segmentos e vertentes; seja parte disso e ajude a comunidade Open-Sanca para que este Meetup ganhe força, não importa se você é iniciante, ninja-samurai ou Goku das profundezas do Egeu.

+

Afinal, o que a comunidade espera de você desenvolvedor? Quando você ouve a palavra contribua, espera-se que possamos ir além de githubs, palestras, workshops e afins, por isto você é uma peça importante nessa engrenagem, contribua!

+

Queremos proporcionar um bate-papo(OpenTalks) no qual todos possam colaborar e  fomentar um networking com empresas, desenvolvedores, comunidades acadêmicas, afinal hoje praticamente o que todos falam, respiram e exalam é sobre tecnologia .

+

Faça parte do OpenSanca, traga seus amigos, independente da carreira que segue, todos podem colaborar, abaixo enumeramos alguns assuntos que abordamos durante nossos encontros, mas fique a vontade para apontar tópicos que você julgar válido também, afinal estamos falando sobre ser OPEN.

Tópicos:

- -

- Oferecer Palestras (OpenTalks)  
- Oferecer - Workshops 
- Oferecer Hangouts (Spin-Off) 

- -

E o que você vai ver nesse tópicos? Oras, será sobre desenvolvimento - de software adotando as principais linguagens e tecnologias do mercado - Open Source como Java, Python, Groovy, Ruby, Embarcados, JavaScript, - Android, Swift, entre outras! ;)

- +

- Oferecer Palestras (OpenTalks)  
- Oferecer Workshops 
- Oferecer Hangouts (Spin-Off) 

+

E o que você vai ver nesse tópicos? Oras, será sobre desenvolvimento de software adotando as principais linguagens e tecnologias do mercado Open Source como Java, Python, Groovy, Ruby, Embarcados, JavaScript, Android, Swift, entre outras! ;)

Esperamos vocês!  ;)

-

Opensanca 

- -

 www.opensanca.com | - opensanca@gmail.com

+

 www.opensanca.com | opensanca@gmail.com

lon: -47.88999938964844 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/c/f/d/8/highres_438773208.jpeg' - photo_id: 438773208 photo_link: 'http://photos3.meetupstatic.com/photos/event/c/f/d/8/600_438773208.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/c/f/d/8/thumb_438773208.jpeg' - join_mode: open - organizer: - member_id: 188091197 - name: Lucas Marques - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/e/a/c/highres_246952908.jpeg' - photo_id: 246952908 - photo_link: 'http://photos3.meetupstatic.com/photos/member/c/e/a/c/member_246952908.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/e/a/c/thumb_246952908.jpeg' - members: 445 - name: opensanca lat: -22.020000457763672 - who: Membros - - utc_offset: -21600000 - country: MX - visibility: public + - country: MX city: Cuernavaca - timezone: America/Mexico_City - created: 1434825476000 link: 'http://www.meetup.com/CuernavacaJS/' - rating: 4 - description: >- -

El objetivo principal es que la comunidad se conozca, - intercambie experiencias y conocimientos, no importa si recién empiezas - o si usas otro lenguaje por que sin importarlo todos convergemos en un - mismo punto : javascript.

- -

Planeamos reunirnos al menos 1 vez al mes, con platicas de temas que - la comunidad proponga y otras veces tendremos talleres para ir - mejorando y afinando nuestras habilidades.

- + name: CuernavacaJS + description: |- +

El objetivo principal es que la comunidad se conozca, intercambie experiencias y conocimientos, no importa si recién empiezas o si usas otro lenguaje por que sin importarlo todos convergemos en un mismo punto : javascript.

+

Planeamos reunirnos al menos 1 vez al mes, con platicas de temas que la comunidad proponga y otras veces tendremos talleres para ir mejorando y afinando nuestras habilidades.


-


lon: -99.25 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/3/b/c/d/highres_438975309.jpeg' - photo_id: 438975309 photo_link: 'http://photos4.meetupstatic.com/photos/event/3/b/c/d/600_438975309.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/3/b/c/d/thumb_438975309.jpeg' - join_mode: open - organizer: - member_id: 114738202 - name: Marcos - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/5/2/d/5/highres_246501205.jpeg' - photo_id: 246501205 - photo_link: 'http://photos1.meetupstatic.com/photos/member/5/2/d/5/member_246501205.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/5/2/d/5/thumb_246501205.jpeg' - members: 143 - name: CuernavacaJS lat: 18.920000076293945 - who: Miembros - - utc_offset: -21600000 - country: GT - visibility: public + - country: GT city: Guatemala - timezone: America/Guatemala - created: 1435031604000 link: 'http://www.meetup.com/Guatemala-AngularJS-Meetup/' - rating: 4.5 + name: Guatemala AngularJS Meetup description: '

Este grupo es creado con la finalidad de dar a conocer la comunidad de AngularJS en Guatemala y reunirse para conocer más acerca del framework, transmitir todos nuestros conocimientos como aprender de ustedes, queremos ser mejores cada día y apuesto a que ustedes también, estamos en búsqueda de reunir a todos los amantes de la tecnología web, los invitamos a compartir con la comunidad de AngularJs.

' lon: -90.55000305175781 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/b/3/b/c/highres_446506012.jpeg' - photo_id: 446506012 photo_link: 'http://photos4.meetupstatic.com/photos/event/b/3/b/c/600_446506012.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/b/3/b/c/thumb_446506012.jpeg' - join_mode: open - organizer: - member_id: 188733210 - name: Diego Chavez - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/5/7/0/f/highres_247282287.jpeg' - photo_id: 247282287 - photo_link: 'http://photos2.meetupstatic.com/photos/member/5/7/0/f/member_247282287.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/5/7/0/f/thumb_247282287.jpeg' - members: 196 - name: Guatemala AngularJS Meetup lat: 14.630000114440918 - who: Anguleros - - utc_offset: -10800000 - country: BR - visibility: public + - country: BR city: Recife - timezone: America/Recife - created: 1436227039000 link: 'http://www.meetup.com/NodeBotsRec/' - description: >- -

Este é o primeiro ano do evento NodeBots Day aqui Recife (NodebotsRec) e nós estamos - extremamente agradecidos e honrados por puder contar com o apoio - da Arena - ROBOthink do CESARRobô livre e do CSBC, com o patrocínio deles - o evento deste ano será totalmente grátis, não vamos precisar pagar - nada para participar deste evento. Eles gentilmente cederam o espaço, - kits de robótica e computadores, muito obrigado a todos vocês que estão - apoioando e viabilizando este evento.

- -

O foco do NodeBots day Recife é compartilhar e desfrutar do - conhecimento e da companhia um do outro, vamos nos encontrar - e construir robôs juntos. 

- -

Não haverá negociações e nem vendas de nada. Não haverá - prêmios, para nós o maior prêmio é a satisfação de fazer algo incrível - juntos.

- -

Concordamos e seguimos o código de conduta do Nodebots Day - Internacional.

- lon: -34.91999816894531 - join_mode: open - organizer: - member_id: 189574429 - name: Felipe de Albuquerque - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/4/1/0/7/highres_250216647.jpeg' - photo_id: 250216647 - photo_link: 'http://photos3.meetupstatic.com/photos/member/4/1/0/7/member_250216647.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/4/1/0/7/thumb_250216647.jpeg' - members: 141 name: NodeBotsRec + description: |- +

Este é o primeiro ano do evento NodeBots Day aqui Recife (NodebotsRec) e nós estamos extremamente agradecidos e honrados por puder contar com o apoio da Arena ROBOthink do CESARRobô livre e do CSBC, com o patrocínio deles o evento deste ano será totalmente grátis, não vamos precisar pagar nada para participar deste evento. Eles gentilmente cederam o espaço, kits de robótica e computadores, muito obrigado a todos vocês que estão apoioando e viabilizando este evento.

+

O foco do NodeBots day Recife é compartilhar e desfrutar do conhecimento e da companhia um do outro, vamos nos encontrar e construir robôs juntos. 

+

Não haverá negociações e nem vendas de nada. Não haverá prêmios, para nós o maior prêmio é a satisfação de fazer algo incrível juntos.

+

Concordamos e seguimos o código de conduta do Nodebots Day Internacional.

+ lon: -34.91999816894531 lat: -8.079999923706055 - who: NodeBots - - utc_offset: -18000000 - country: CO - visibility: public + - country: CO city: Medellín - timezone: America/Bogota - created: 1437488446000 link: 'http://www.meetup.com/Emergent-Software-Technologies-by-VP/' - rating: 5 + name: Emergent Software Technologies by VP description: '

We are a group of people who loves to adopt new technologies for software development. We share our knowledge and invite experts on different fields to talk about their experiences so that we can apply them in our own projects.

' lon: -75.58999633789062 - join_mode: open - organizer: - member_id: 189645163 - name: Santiago Zapata - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/a/d/c/f/highres_248084495.jpeg' - photo_id: 248084495 - photo_link: 'http://photos4.meetupstatic.com/photos/member/a/d/c/f/member_248084495.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/a/d/c/f/thumb_248084495.jpeg' - members: 276 - name: Emergent Software Technologies by VP + group_photo: + photo_link: 'http://photos4.meetupstatic.com/photos/event/6/f/8/9/600_448408553.jpeg' lat: 6.25 - who: Members - - utc_offset: -10800000 - country: AR - visibility: public - city: Buenos Aires - timezone: America/Buenos_Aires - created: 1438006689000 - link: 'http://www.meetup.com/Autodidactas-Emprendedores-y-Programadores/' - description: >- -

Es un grupo para reunir a todos aquellos que no tuvimos una - educacion formal en esta rama, pero que gracias a diversas formas - e impulsados por una pasión innata, nos hicimos de las herramientas del - mundo del emprendedurismo y la programación.
Este grupo no es - excluyente! Si sos emprendedor y no sos programador, sos bienvenido. - A la vez, si sos programador pero no emprendedor también lo sos!

- -

¿Por qué surge este grupo?
-Para nuclear a todos aquellos que - nos debemos encontrar en situaciones similares.
-Para compartir los - mejores recursos de aprendizaje
-Para ayudar a algun compañero que - esté pasando por un problema que nosotros ya resolvimos.
-Para - recibir la ayuda de alguien que ya atravesó la situación en la que - estamos y nos puede aconsejar!
-Para armar grupos y equipos para - futuros proyectos y Startups
-Para hacer networking con personas - del ambiente

- lon: -58.369998931884766 - join_mode: open - organizer: - member_id: 163100132 - name: miguel - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/d/0/f/c/highres_248273500.jpeg' - photo_id: 248273500 - photo_link: 'http://photos4.meetupstatic.com/photos/member/d/0/f/c/member_248273500.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/d/0/f/c/thumb_248273500.jpeg' - members: 50 - name: 'Autodidactas: Emprendedores y Programadores' - lat: -34.61000061035156 - who: Miembros - - utc_offset: -10800000 - country: BR - visibility: public + - country: BR city: Florianópolis - timezone: America/Sao_Paulo - created: 1438341752000 link: 'http://www.meetup.com/meteor-floripa/' - description: >- -

Grupo pra reunir a galera que já programa ou está aprendendo a mexer - com o Meteor, uma plataforma para NodeJS (server side em - JavaScript).

- -

Também são bem vindos empreendedores que pensam ou estão pensando em - abrir uma startup ou um novo negócio nesta plataforma.

- -

A ideia é programarmos alguns encontros informais para trocarmos - conhecimentos, ideias, processos, oportunidades... Colaboração!

- + name: Meteor Floripa + description: |- +

Grupo pra reunir a galera que já programa ou está aprendendo a mexer com o Meteor, uma plataforma para NodeJS (server side em JavaScript).

+

Também são bem vindos empreendedores que pensam ou estão pensando em abrir uma startup ou um novo negócio nesta plataforma.

+

A ideia é programarmos alguns encontros informais para trocarmos conhecimentos, ideias, processos, oportunidades... Colaboração!

Sugestões são bem vindas! =)

lon: -48.540000915527344 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/5/f/a/5/highres_440364485.jpeg' - photo_id: 440364485 photo_link: 'http://photos3.meetupstatic.com/photos/event/5/f/a/5/600_440364485.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/5/f/a/5/thumb_440364485.jpeg' - join_mode: open - organizer: - member_id: 184023713 - name: Alex Tondello - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/5/a/4/5/highres_243383109.jpeg' - photo_id: 243383109 - photo_link: 'http://photos2.meetupstatic.com/photos/member/5/a/4/5/member_243383109.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/5/a/4/5/thumb_243383109.jpeg' - members: 119 - name: Meteor Floripa lat: -27.600000381469727 - who: Meteors - - utc_offset: -10800000 - country: AR - visibility: public + - country: AR city: Buenos Aires - timezone: America/Buenos_Aires - created: 1438979455000 link: 'http://www.meetup.com/Sencha-Buenos-Aires/' + name: Sencha Buenos Aires description: '

Si desarrollas con algún producto Sencha, como Extjs, Touch, Architect, etc o planeas interiorizarte en este framework unite, estamos proponiendo juntarnos ni bien tengamos varios miembros inscriptos.

' lon: -58.369998931884766 - join_mode: open - organizer: - member_id: 14435592 - name: Leandro Cura - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/5/f/e/a/highres_12504554.jpeg' - photo_id: 12504554 - photo_link: 'http://photos3.meetupstatic.com/photos/member/5/f/e/a/member_12504554.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/5/f/e/a/thumb_12504554.jpeg' - members: 20 - name: Sencha Buenos Aires lat: -34.61000061035156 - who: Miembros - - utc_offset: -21600000 - country: MX - visibility: public + - country: MX city: Pátzcuaro - timezone: America/Mexico_City - created: 1439689143000 link: 'http://www.meetup.com/Tardes-de-Hackers-Makers/' - rating: 4 - description: >- -

Es un grupo donde promovemos las culturas maker y hacker, las cuales - actualmente están provocando un cambio en el mundo dando como - resultado, Startups, PYMES y nuevos paradigmas en nuestra - sociedad.

- -


- -


- -

https://youtu.be/tmmPlISETJg

- -
- -

https://youtu.be/mklywR7TQxs

- lon: -101.62000274658203 - group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/d/7/4/7/highres_440935111.jpeg' - photo_id: 440935111 - photo_link: 'http://photos2.meetupstatic.com/photos/event/d/7/4/7/600_440935111.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/d/7/4/7/thumb_440935111.jpeg' - join_mode: open - organizer: - member_id: 99624042 - name: Everardo Guadalupe - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/7/c/f/7/highres_248851991.jpeg' - photo_id: 248851991 - photo_link: 'http://photos4.meetupstatic.com/photos/member/7/c/f/7/member_248851991.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/7/c/f/7/thumb_248851991.jpeg' - members: 77 name: 'Hackers & Makers Michoacán' - lat: 19.520000457763672 - who: 'Hackers & Makers' - - utc_offset: -10800000 - country: AR - visibility: public - city: Córdoba - timezone: America/Cordoba - created: 1439854047000 - link: 'http://www.meetup.com/DronCba/' - description: '

Este grupo esta destinado a compartir código abierto y experiencias en el control de Drones.

' - lon: -64.19000244140625 - join_mode: open - organizer: - member_id: 25162082 - name: Oscar Bustamante - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/d/3/2/e/highres_114534062.jpeg' - photo_id: 114534062 - photo_link: 'http://photos4.meetupstatic.com/photos/member/d/3/2/e/member_114534062.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/d/3/2/e/thumb_114534062.jpeg' - members: 55 - name: DronCba - lat: -31.399999618530273 - who: Droneros - - utc_offset: -10800000 - country: BR - visibility: public - city: Recife - timezone: America/Recife - created: 1441202276000 - link: 'http://www.meetup.com/NodeJS-Recife-Meetup/' - rating: 4.8 - description: 'Grupo sobre desenvolvimento voltado ao Node.js e todo seu ecossistema. Sejam todos bem vindos e "Always bet on JS"!' - lon: -34.91999816894531 - join_mode: open - organizer: - member_id: 115104062 - name: Wilson Mendes - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/4/a/b/5/highres_245539125.jpeg' - photo_id: 245539125 - photo_link: 'http://photos2.meetupstatic.com/photos/member/4/a/b/5/member_245539125.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/4/a/b/5/thumb_245539125.jpeg' - members: 249 - name: NodeJS Recife Meetup - lat: -8.079999923706055 - who: Membros - - utc_offset: -10800000 - country: AR - visibility: public - city: Santa Fé - timezone: America/Cordoba - created: 1442165825000 - link: 'http://www.meetup.com/Node-js-Litoral/' - rating: 5 - description: Este es un grupo para los interesados en Node.js y tecnologías Javascript en general. También para juntarnos a tomar cerveza y hacer amigos. Sumate. - lon: -60.689998626708984 - join_mode: open - organizer: - member_id: 191847889 - name: Alexis Charytonow - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/1/b/f/5/highres_249667157.jpeg' - photo_id: 249667157 - photo_link: 'http://photos1.meetupstatic.com/photos/member/1/b/f/5/member_249667157.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/1/b/f/5/thumb_249667157.jpeg' - members: 50 - name: Node.js Litoral - lat: -31.600000381469727 - who: Members - - utc_offset: -10800000 - country: BR - visibility: public - city: Belo Horizonte - timezone: America/Sao_Paulo - created: 1442426196000 - link: 'http://www.meetup.com/MinasJS/' - description: 'Grupo de discussão sobre conceitos, ferramentas e/ou tecnologias que se relacionem com JavaScript, seja no Client-Side, Server-Side ou qualquer outro meio que a linguagem esteja presente.' - lon: -43.939998626708984 - join_mode: open - organizer: - member_id: 116578392 - name: Beto Muniz - photo: - photo_id: 154812832 - photo_link: 'http://photos3.meetupstatic.com/photos/member/3/2/2/0/member_154812832.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/3/2/2/0/thumb_154812832.jpeg' - members: 47 - name: MinasJS - lat: -19.920000076293945 - who: javascripters - - utc_offset: -18000000 - country: EC - visibility: public - city: Quito - timezone: America/Guayaquil - created: 1442865949000 - link: 'http://www.meetup.com/Quito-js/' - description: 'Este es un grupo de programadores con la visión de que Javascript es el nuevo lenguage de máquina. Trataremos sobre todo el mundo de Javascript: nuevos tipos de bases de datos, aprendizaje automático de máquina, lenguajes de consulta de JSON, mapas geográficos, diseño 3D, frameworks, librerías, aplicaciones híbridas, y en general todas las nuevas tecnologías que tienen a Javascript como su centro. El cielo es el límite! (y el espacio en disco :)' - lon: -78.5 - join_mode: open - organizer: - member_id: 167781162 - name: Edgar Valarezo - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/d/3/9/highres_249903385.jpeg' - photo_id: 249903385 - photo_link: 'http://photos4.meetupstatic.com/photos/member/d/3/9/member_249903385.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/d/3/9/thumb_249903385.jpeg' - members: 50 - name: Quito.js - lat: -0.1899999976158142 - who: jotaeses - - utc_offset: -10800000 - country: BR - visibility: public - city: Joinville - timezone: America/Sao_Paulo - created: 1442971732000 - link: 'http://www.meetup.com/JS4Girls-Joinville/' - description: 'Evangelizar Javascript para incentivar garotas a participarem mais de eventos, palestrarem em eventos, compartilhar conteúdo, aprender e conhecer outras pessoas :D' - lon: -48.84000015258789 - join_mode: open - organizer: - member_id: 17789371 - name: Fernando Daciuk - photo: - photo_id: 16083911 - photo_link: 'http://photos1.meetupstatic.com/photos/member/f/4/7/member_16083911.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/f/4/7/thumb_16083911.jpeg' - members: 13 - name: JS4Girls Joinville - lat: -26.31999969482422 - who: Members - - utc_offset: -18000000 - country: PE - visibility: public - city: Lima - timezone: America/Lima - created: 1443211593000 - link: 'http://www.meetup.com/Abakio-Javascript-Group/' - description: '

Este es un grupo para todos los interesados en la tecnologia web basada en javascript.

' - lon: -77.05000305175781 - group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/a/4/1/0/highres_442662000.jpeg' - photo_id: 442662000 - photo_link: 'http://photos4.meetupstatic.com/photos/event/a/4/1/0/600_442662000.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/a/4/1/0/thumb_442662000.jpeg' - join_mode: open - organizer: - member_id: 147705892 - name: Jiguel - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/d/4/0/5/highres_250014277.jpeg' - photo_id: 250014277 - photo_link: 'http://photos3.meetupstatic.com/photos/member/d/4/0/5/member_250014277.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/d/4/0/5/thumb_250014277.jpeg' - members: 174 - name: Abakio Javascript Group - lat: -12.069999694824219 - who: Developers - - utc_offset: -18000000 - country: CO - visibility: public - city: Cali - timezone: America/Bogota - created: 1444709741000 - link: 'http://www.meetup.com/Meteor-Cali/' - description: '

Conoce a otros desarrolladores usando Meteor. Comparte tu conocimiento, aplicaciones y obtén retroalimentación de otros. Meteor es una plataforma open-source que permite desarrollar aplicaciones de alta calidad en una fracción de tiempo, no importa si eres un desarrollador experimentado o tan solo estás empezando! Para más información puedes visitar la página oficial de Meteor http://meteor.com y su repositorio oficial en Github https://github.com/meteor/meteor

' - lon: -76.51000213623047 - group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/6/9/5/4/highres_443006964.jpeg' - photo_id: 443006964 - photo_link: 'http://photos2.meetupstatic.com/photos/event/6/9/5/4/600_443006964.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/6/9/5/4/thumb_443006964.jpeg' - join_mode: open - organizer: - member_id: 184506526 - name: Andrés Alejandro García - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/d/f/9/1/highres_250497233.jpeg' - photo_id: 250497233 - photo_link: 'http://photos1.meetupstatic.com/photos/member/d/f/9/1/member_250497233.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/d/f/9/1/thumb_250497233.jpeg' - members: 38 - name: Meteor Cali - lat: 3.4200000762939453 - who: Meteorites - - utc_offset: -10800000 - country: BR - visibility: public - city: São Paulo - timezone: America/Sao_Paulo - created: 1444870155000 - link: 'http://www.meetup.com/Free-Code-Camp-Sao-Paulo/' - description: 'Esse é um grupo para interessados em se reunir, aprender, fazer os exercícios do Free Code Camp. Estudantes de todos os níveis de serão aceitos.' - lon: -46.630001068115234 - join_mode: open - organizer: - member_id: 182806392 - name: Guilherme Guimarães - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/e/1/8/d/highres_243957741.jpeg' - photo_id: 243957741 - photo_link: 'http://photos2.meetupstatic.com/photos/member/e/1/8/d/member_243957741.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/e/1/8/d/thumb_243957741.jpeg' - members: 97 - name: Free Code Camp São Paulo - lat: -23.530000686645508 - who: Campers - - utc_offset: -25200000 - country: MX - visibility: public - city: Culiacán - timezone: America/Mazatlan - created: 1444884931000 - link: 'http://www.meetup.com/Culiacan-front-end/' - description: 'Imagina un Sinaloa sin frontends, que CAOS :(, reunámonos y compartamos nuestras experiencias como desarrolladores.' - lon: -107.38999938964844 - join_mode: open - organizer: - member_id: 180581792 - name: oscar oceguera - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/3/1/a/f/highres_249372719.jpeg' - photo_id: 249372719 - photo_link: 'http://photos1.meetupstatic.com/photos/member/3/1/a/f/member_249372719.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/3/1/a/f/thumb_249372719.jpeg' - members: 20 - name: Culiacán front-end - lat: 24.799999237060547 - who: frontends - - utc_offset: -18000000 - country: CO - visibility: public - city: Bogotá - timezone: America/Bogota - created: 1445387670000 - link: 'http://www.meetup.com/Meteor-Bogota/' - rating: 5 - description: '

Este es un grupo para todos los interesados en aprender sobre METEOR. Son bienvenidos desde expertos desarrolladores, hasta principiantes que están creando su primera aplicación.

' - lon: -74.08999633789062 - group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/2/4/7/1/highres_443289329.jpeg' - photo_id: 443289329 - photo_link: 'http://photos2.meetupstatic.com/photos/event/2/4/7/1/600_443289329.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/2/4/7/1/thumb_443289329.jpeg' - join_mode: open - organizer: - member_id: 54581592 - name: Juan David Reyes - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/b/4/2/d/highres_254206125.jpeg' - photo_id: 254206125 - photo_link: 'http://photos1.meetupstatic.com/photos/member/b/4/2/d/member_254206125.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/b/4/2/d/thumb_254206125.jpeg' - members: 323 - name: Meteor Bogotá - lat: 4.630000114440918 - who: meteoritos - - utc_offset: -10800000 - country: CL - visibility: public - city: Santiago - timezone: America/Santiago - created: 1446477831000 - link: 'http://www.meetup.com/Javascript-Chile/' - rating: 4.97 - description: >- -

¡Llamando a todos los JS Fans! (Y los JS Curious - también) 

- -
- -

Javascript es el lenguaje más popular de la web, y ahora...¡fuera de - ella! Este grupo está enfocado en armar y ser un espacio los diferentes - meetups de Javascript, NodeJS,  y todos sus sabores en Chile - (Typescript, JSX, y el resto son todos bienvenidos)
:) 

- -
- -

Nos juntamos a lo largo del país, una vez al mes, a aprender, - compartir y conocer otros dudes and dudettes que les gusta este mítico - personaje llamado "El Javascripto" en latinoamérica (o - Javascript para los más amigos). 

- -
- -

Un abrazo asíncrono, ¡y nos vemos en los meetups!

- -
- lon: -70.63999938964844 - join_mode: open - organizer: - member_id: 58337862 - name: Felipe Torres - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/b/e/4/highres_251055332.jpeg' - photo_id: 251055332 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/b/e/4/member_251055332.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/b/e/4/thumb_251055332.jpeg' - members: 369 - name: Javascript Chile - lat: -33.459999084472656 - who: Javascriptos - - utc_offset: -10800000 - country: BR - visibility: public - city: Natal - timezone: America/Fortaleza - created: 1447807512000 - link: 'http://www.meetup.com/Meetup-Microcontroladores-IoT-Natal/' - description: >- -

Pessoal entusiasta em microcontroladores (arduino, launchpad, pic - ...) e que gosta de realizar projetos DIY aliando internet das coisas. - Queremos conhecer pessoas que gostem de aprender e partilhar - conhecimentos acerca desta temática. Revolucionadores, empreendedores, - malucos por fazer acontecer e sonhadores são todos bem vindos!

- -

Também temos um grupo no Facebook, entre - aqui!

- lon: -35.220001220703125 - group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/4/9/f/f/highres_444378943.jpeg' - photo_id: 444378943 - photo_link: 'http://photos3.meetupstatic.com/photos/event/4/9/f/f/600_444378943.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/4/9/f/f/thumb_444378943.jpeg' - join_mode: open - organizer: - member_id: 194719078 - name: Joao Campos - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/6/0/4/f/highres_251484655.jpeg' - photo_id: 251484655 - photo_link: 'http://photos2.meetupstatic.com/photos/member/6/0/4/f/member_251484655.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/6/0/4/f/thumb_251484655.jpeg' - members: 50 - name: Microcontroladores IoT Natal - lat: -5.800000190734863 - who: fazedores - - utc_offset: -10800000 - country: BR - visibility: public - city: Porto Alegre - timezone: America/Sao_Paulo - created: 1448241839000 - link: 'http://www.meetup.com/Node-js-Porto-Alegre-Meetup/' - description: "

Meet other Node.js developers. Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine. Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient.

" - lon: -51.220001220703125 - group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/4/0/0/9/highres_444676393.jpeg' - photo_id: 444676393 - photo_link: 'http://photos3.meetupstatic.com/photos/event/4/0/0/9/600_444676393.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/4/0/0/9/thumb_444676393.jpeg' - join_mode: open - organizer: - member_id: 195939272 - name: Nicolas Peixoto - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/7/9/1/0/highres_251610992.jpeg' - photo_id: 251610992 - photo_link: 'http://photos4.meetupstatic.com/photos/member/7/9/1/0/member_251610992.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/7/9/1/0/thumb_251610992.jpeg' - members: 189 - name: Node.js Porto Alegre Meetup - lat: -30.040000915527344 - who: Members - - utc_offset: -21600000 - country: MX - visibility: public - city: Monterrey - timezone: America/Monterrey - created: 1448410964000 - link: 'http://www.meetup.com/Tecnologia-Digital/' - rating: 5 - description: 'Grupo para interesados en IT, en programación, testing y metodología Ágil. Buscamos difundir diferentes pláticas técnicas donde los participantes puedan aprender las tecnologías digitales modernas como Angular, IOS, Devops, etc. Contaremos con al menos un evento por mes.' - lon: -100.31999969482422 - join_mode: open - organizer: - member_id: 191810826 - name: Jorge Alanís - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/3/3/1/highres_249133105.jpeg' - photo_id: 249133105 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/3/3/1/member_249133105.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/3/3/1/thumb_249133105.jpeg' - members: 210 - name: Tecnología Digital - lat: 25.670000076293945 - who: profesionistas - - utc_offset: -10800000 - country: BR - visibility: public - city: São Paulo - timezone: America/Sao_Paulo - created: 1371662142000 - link: 'http://www.meetup.com/AngularJS-Sao-Paulo/' - rating: 4.85 description: |- -

Grupo de meetups Angular em São Paulo, SP.

-

Lista de e-mails

- lon: -46.630001068115234 - group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/9/b/8/4/highres_252879812.jpeg' - photo_id: 252879812 - photo_link: 'http://photos3.meetupstatic.com/photos/event/9/b/8/4/600_252879812.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/9/b/8/4/thumb_252879812.jpeg' - join_mode: open - organizer: - member_id: 124933132 - name: Rodolfo Dias - photo: - photo_id: 165666032 - photo_link: 'http://photos2.meetupstatic.com/photos/member/1/7/9/0/member_165666032.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/1/7/9/0/thumb_165666032.jpeg' - members: 1195 - name: AngularSP - lat: -23.530000686645508 - who: superheroes - - utc_offset: -10800000 - country: BR - visibility: public - city: Belo Horizonte - timezone: America/Sao_Paulo - created: 1387581798000 - link: 'http://www.meetup.com/AngularJS-BH/' - rating: 4.94 - description: '

Grupo de meetups sobre o Angular de Belo Horizonte, MG.

' - lon: -43.939998626708984 - join_mode: open - organizer: - member_id: 49002132 - name: Ivo Santiago - photo: - photo_id: 59489722 - photo_link: 'http://photos1.meetupstatic.com/photos/member/7/4/1/a/member_59489722.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/7/4/1/a/thumb_59489722.jpeg' - members: 600 - name: AngularBH - lat: -19.920000076293945 - who: Membros - - utc_offset: -21600000 - country: MX - visibility: public - city: México City - timezone: America/Mexico_City - created: 1409341277000 - link: 'http://www.meetup.com/javascriptmx/' - rating: 4.79 - description: '

La comunidad de JavaScript de la Ciudad de México

' - lon: -99.13999938964844 - group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/9/6/c/highres_445142412.jpeg' - photo_id: 445142412 - photo_link: 'http://photos4.meetupstatic.com/photos/event/9/6/c/600_445142412.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/9/6/c/thumb_445142412.jpeg' - join_mode: open - organizer: - member_id: 41815302 - name: Jeduan Cornejo - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/2/4/6/a/highres_106569322.jpeg' - photo_id: 106569322 - photo_link: 'http://photos1.meetupstatic.com/photos/member/2/4/6/a/member_106569322.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/2/4/6/a/thumb_106569322.jpeg' - members: 1964 - name: JavascriptMX - lat: 19.43000030517578 - who: Desarrolladores - - utc_offset: -10800000 - country: AR - visibility: public - city: Santa Fe - timezone: America/Cordoba - created: 1442165825000 - link: 'http://www.meetup.com/js-Litoral/' - rating: 4.89 - description: >- -

Este es un grupo para los interesados en tecnologías JavaScript. - También para juntarnos a tomar cerveza y hacer amigos. Sumate.

- -


- -

tambien estamos en Slack!

- -

http://jslitoral-slackin.herokuapp.com

- lon: -60.689998626708984 - join_mode: open - organizer: - member_id: 191847889 - name: Alexis Charytonow - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/1/b/f/5/highres_249667157.jpeg' - photo_id: 249667157 - photo_link: 'http://photos1.meetupstatic.com/photos/member/1/b/f/5/member_249667157.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/1/b/f/5/thumb_249667157.jpeg' - members: 100 - name: JavaScript Litoral - lat: -31.600000381469727 - who: javascripters - - utc_offset: -10800000 - country: BR - visibility: public - city: Moji das Cruzes - timezone: America/Sao_Paulo - created: 1449831116000 - link: 'http://www.meetup.com/Front-Back-Mogi/' - description: >- -

O Front&Back é um grupo de estudos gratuito para a região - de Mogi das Cruzes e Alto Tietê. 

- -

O objetivo principal do grupo é promover o networking e disseminar - o conhecimento FrontEnd e BackEnd. Abordamos diversos assuntos como - HTML, CSS, JavaScript, MEAN(MongoDb, Express, AngularJS e NodeJS), - JQuery, Arquitetura. 

- -

Sobre os Eventos

- -

Os eventos (Mini Cursos e Palestras) são para qualquer pessoa que - esteja interessada em participar(independente do nível de - conhecimento). 

- -

A entrada para os eventos é 1 kg de alimento não perecível que será - doado para alguma instituição de caridade (Você aprende e ainda ajuda - quem precisa). 

- -

Sempre teremos eventos.

- lon: -46.209999084472656 - group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/1/2/a/e/highres_444964782.jpeg' - photo_id: 444964782 - photo_link: 'http://photos1.meetupstatic.com/photos/event/1/2/a/e/600_444964782.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/1/2/a/e/thumb_444964782.jpeg' - join_mode: open - organizer: - member_id: 162889882 - name: Janaína Santos - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/5/f/4/8/highres_221424392.jpeg' - photo_id: 221424392 - photo_link: 'http://photos4.meetupstatic.com/photos/member/5/f/4/8/member_221424392.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/5/f/4/8/thumb_221424392.jpeg' - members: 40 - name: 'Front&Back Mogi' - lat: -23.520000457763672 - who: Geeks - - utc_offset: -7200000 - country: BR - visibility: public - city: Joinville - timezone: America/Sao_Paulo - created: 1449860893000 - link: 'http://www.meetup.com/joinvillejs-org/' - description: 'Comunidade de frontend e programadores javascript de Jonville. Formado para compartilhar experiências, conteúdo, network, etc sobre Front End, Desenvolvimento Web, Javascript. Da uma olhada na nossa organização no Github: https://github.com/joinvillejs-org Uma comunidade forte para organizar eventos e metups de forma constante na cidade de Joinville, inventir o coworking e troca de experiências. Além disso, a comunidade é um espaço para mostrar seu trabalho, aprender e crescer.' - lon: -48.84000015258789 - join_mode: open - organizer: - member_id: 195462162 - name: Matheus Poleza - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/4/3/e/a/highres_252137386.jpeg' - photo_id: 252137386 - photo_link: 'http://photos2.meetupstatic.com/photos/member/4/3/e/a/member_252137386.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/4/3/e/a/thumb_252137386.jpeg' - members: 16 - name: JoinvilleJS - lat: -26.31999969482422 - who: joinvillers - - utc_offset: -16200000 - country: VE - visibility: public - city: Caracas - timezone: America/Caracas - created: 1449866547000 - link: 'http://www.meetup.com/Meetup-de-JavaScript-en-Caracas/' - description: 'Somos un sitio de encuentro para todas las personas relacionadas con javascript desde los que quieren estar informados en este nuevo paradigma de desarrollo, hasta por los clientes que estan buscando soluciones javascript para sus necesidades informáticas. Ven a compartir, ven a conocer, ver a instruir, ven a aprender, ven a construir una comunidad.' - lon: -66.93000030517578 - join_mode: open - organizer: - member_id: 27479392 - name: Robinson Ochoa - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/c/6/9/4/highres_252050836.jpeg' - photo_id: 252050836 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/6/9/4/member_252050836.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/c/6/9/4/thumb_252050836.jpeg' - members: 16 - name: Meetup de JavaScript en Caracas - lat: 10.539999961853027 - who: Miembros - - utc_offset: -21600000 - country: MX - visibility: public - city: México City - timezone: America/Mexico_City - created: 1349277302000 - link: 'http://www.meetup.com/Mexico-City-MongoDB-User-Group/' - rating: 5 - description: '

This group is a place for developers to learn more about the non-relational, open source, document-oriented database MongoDB. MongoDB is the leading NoSQL database. If you are facing challenges with MySQL or Postgres or Oracle and want to explore a more flexible, scalable alternative, please join us at one of our sessions.

' - lon: -99.13999938964844 - group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/1/6/1/e/highres_165725662.jpeg' - photo_id: 165725662 - photo_link: 'http://photos3.meetupstatic.com/photos/event/1/6/1/e/600_165725662.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/1/6/1/e/thumb_165725662.jpeg' - join_mode: open - organizer: - member_id: 47839632 - name: MongoDB - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/highres_243915101.jpeg' - photo_id: 243915101 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/a/f/d/member_243915101.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/thumb_243915101.jpeg' - members: 378 - name: Mexico City MongoDB User Group - lat: 19.43000030517578 - who: MongoDB Fans - - utc_offset: -14400000 - country: DO - visibility: public - city: Santo Domingo - timezone: America/Santo_Domingo - created: 1363805022000 - link: 'http://www.meetup.com/Santo-Domingo-MongoDB-User-Group/' - rating: 4.82 - description: '

This group is a place for developers to learn more about the non-relational, open source, document-oriented database MongoDB.

' - lon: -69.91000366210938 - group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/b/e/c/a/highres_216108842.jpeg' - photo_id: 216108842 - photo_link: 'http://photos1.meetupstatic.com/photos/event/b/e/c/a/600_216108842.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/b/e/c/a/thumb_216108842.jpeg' - join_mode: open - organizer: - member_id: 47839632 - name: MongoDB - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/highres_243915101.jpeg' - photo_id: 243915101 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/a/f/d/member_243915101.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/thumb_243915101.jpeg' - members: 214 - name: MongoDB Dominican Republic - lat: 18.479999542236328 - who: MongoDB Fans - - utc_offset: -18000000 - country: CO - visibility: public - city: Medellín - timezone: America/Bogota - created: 1372372503000 - link: 'http://www.meetup.com/MongoDB-Medellin/' - rating: 4.95 - description: '

Grupo de interés ubicados en colombia. Interesados en conocer, aprender, desarrollar, divertirse en el Mundo NoSQL con MongoDB.

' - lon: -75.58999633789062 - group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/3/c/a/2/highres_253275522.jpeg' - photo_id: 253275522 - photo_link: 'http://photos4.meetupstatic.com/photos/event/3/c/a/2/600_253275522.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/3/c/a/2/thumb_253275522.jpeg' - join_mode: open - organizer: - member_id: 99848012 - name: Édison Valencia Díaz - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/9/f/3/0/highres_128260752.jpeg' - photo_id: 128260752 - photo_link: 'http://photos1.meetupstatic.com/photos/member/9/f/3/0/member_128260752.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/9/f/3/0/thumb_128260752.jpeg' - members: 494 - name: MongoDB Medellin - lat: 6.25 - who: MongoMakers - - utc_offset: -18000000 - country: PE - visibility: public - city: Lima - timezone: America/Lima - created: 1372685304000 - link: 'http://www.meetup.com/mongodbperu/' - rating: 4.78 - description: >- -

Éste es el Meetup Group para la comunidad de usuarios de MongoDB en - el Perú.

- -

MongoDB, nombre que proviene de "humongous" ("descomunal" en - inglés). Aquí se abordará casi todo relacionado con el banco de datos - NoSQL MongoDB: instalación, exploración, desarrollo, mantenimiento, - etc.

- -

Podemos encontrarnos en los siguientes sitios:

- - - lon: -77.05000305175781 - group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/8/9/0/a/highres_254615082.jpeg' - photo_id: 254615082 - photo_link: 'http://photos1.meetupstatic.com/photos/event/8/9/0/a/600_254615082.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/8/9/0/a/thumb_254615082.jpeg' - join_mode: open - organizer: - member_id: 47839632 - name: MongoDB - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/highres_243915101.jpeg' - photo_id: 243915101 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/a/f/d/member_243915101.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/thumb_243915101.jpeg' - members: 568 - name: MongoDB Perú - lat: -12.069999694824219 - who: MongoDB Fans - - utc_offset: -10800000 - country: BR - visibility: public - city: Porto Alegre - timezone: America/Sao_Paulo - created: 1404064025000 - link: 'http://www.meetup.com/MongoDBBrazil-Meetup/' - description: Grupo de Usuários que visam ajudar qualquer pessoa interessada aprender sobre MongoDB. - lon: -51.220001220703125 - join_mode: open - organizer: - member_id: 153951332 - name: Paulo Fagundes - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/d/f/4/a/highres_207777162.jpeg' - photo_id: 207777162 - photo_link: 'http://photos2.meetupstatic.com/photos/member/d/f/4/a/member_207777162.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/d/f/4/a/thumb_207777162.jpeg' - members: 88 - name: MongoDBBrazil Meetup - lat: -30.040000915527344 - who: mongos - - utc_offset: -10800000 - country: BR - visibility: public - city: Porto Alegre - timezone: America/Sao_Paulo - created: 1413993525000 - link: 'http://www.meetup.com/MongoDB-Porto-Alegre/' - description: "O objetivo desse grupo é reunir usuários, desenvolvedores, interessados e curiosos para discutir implementações, técnicas, receitas de bolo e cases de MongoDB. \n\nSe você utiliza, pensa em utilizar ou apenas tem curiosidade sobre MongoDB (e NoSQL em geral), junte-se ao Meetup.\n\nSobre o MongoDB:\n\nMongoDB (do \"humongous\") é uma aplicação de código aberto, de alta performance, sem esquemas, orientado à documentos. Foi escrito na linguagem de programação C++. O banco de dados orientado à documentos, sendo formado por um conjunto de documentos JSON. Muitas aplicações podem, dessa forma, modelar informações de um modo muito mais natural, pois os dados podem ser aninhados em complexas hierarquias e continuar a ser indexáveis e fáceis de buscar.\n\nO desenvolvimento do MongoDB começou em outubro de 2007 pela 10gen. A primeira versão pública foi lançada em fevereiro de 2009. (fonte: Wikipedia)" - lon: -51.220001220703125 - join_mode: open - organizer: - member_id: 12882247 - name: Gabriel Engel - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/a/4/4/f/highres_10662063.jpeg' - photo_id: 10662063 - photo_link: 'http://photos3.meetupstatic.com/photos/member/a/4/4/f/member_10662063.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/a/4/4/f/thumb_10662063.jpeg' - members: 107 - name: MongoDB Porto Alegre - lat: -30.040000915527344 - who: Mongos - - utc_offset: -10800000 - country: BR - visibility: public - city: Joinville - timezone: America/Sao_Paulo - created: 1449860893000 - link: 'http://www.meetup.com/femug-jlle/' - rating: 4.67 - description: >- -

O "Front-End Meet-Up Group" é um projeto que nasceu da - necessidade de unir os desenvolvedores para que o acesso à informação - seja feito em qualquer lugar que haja interesse do aprendizado. - Trata-se de um evento para pessoas interessadas em aprender, evoluir - e dividir conhecimentos.

- -

github.com/braziljs/femug -

https://groups.google.com/forum/#!forum/fem... -

- lon: -48.84000015258789 - join_mode: open - organizer: - member_id: 17789371 - name: Fernando Daciuk - photo: - photo_id: 16083911 - photo_link: 'http://photos1.meetupstatic.com/photos/member/f/4/7/member_16083911.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/f/4/7/thumb_16083911.jpeg' - members: 100 - name: FEMUG JLLE - lat: -26.31999969482422 - who: front-enders - - utc_offset: -16200000 - country: VE - visibility: public - city: Caracas - timezone: America/Caracas - created: 1449866547000 - link: 'http://www.meetup.com/Meetup-de-JavaScript-en-Caracas/' - rating: 5 - description: >- -

Somos un sitio de encuentro para todas las personas relacionadas con - javascript desde los que quieren estar informados en este nuevo - paradigma de desarrollo, hasta por los clientes que estan buscando - soluciones javascript para sus necesidades informáticas. Ven - a compartir, ven a conocer, ver a instruir, ven a aprender, ven - a construir una comunidad.

- -

Estamos tambien en FaceBook, con el grupo "JavaScript Venezuela", - agregate, aporta y construye. Para una mejor Venezuela.

- lon: -66.93000030517578 - join_mode: open - organizer: - member_id: 27479392 - name: Robinson Ochoa - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/c/6/9/4/highres_252050836.jpeg' - photo_id: 252050836 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/6/9/4/member_252050836.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/c/6/9/4/thumb_252050836.jpeg' - members: 50 - name: 'JavaScript en Caracas, FaceBook: "JavaScript Venezuela"' - lat: 10.539999961853027 - who: Miembros - - utc_offset: -14400000 - country: DO - visibility: public - city: Santo Domingo - timezone: America/Santo_Domingo - created: 1450292062000 - link: 'http://www.meetup.com/Azure-Open-Source-Santo-Domingo/' - rating: 5 - description: '

Este grupo es para todos los interesados en tratar y aprender temas relacionados a Open Source en Azure, esta última es la Nube Abierta de Microsoft… Lo cual nos deja mucho de qué hablar :) !! Conoce más sobre Open Source en Microsoft http://microsoft.com/openness http://openness.microsoft.com/es-latam/blog/

' - lon: -69.91000366210938 - join_mode: open - organizer: - member_id: 196430050 - name: Juan Jhordanny Hernández - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/d/5/c/5/highres_251874725.jpeg' - photo_id: 251874725 - photo_link: 'http://photos2.meetupstatic.com/photos/member/d/5/c/5/member_251874725.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/d/5/c/5/thumb_251874725.jpeg' - members: 50 - name: 'Azure {Open Source}; Santo Domingo' - lat: 18.479999542236328 - who: Members - - utc_offset: -10800000 - country: BR - visibility: public - city: São Paulo - timezone: America/Sao_Paulo - created: 1451759513000 - link: 'http://www.meetup.com/Javascript-SP/' - rating: 5 - description: '

Este é um grupo para os interessados ​​em javascript. Todos os níveis são bem-vindos. Eu comecamos este grupo para conhecer outros entusiastas de javascript.

' - lon: -46.630001068115234 - group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/d/2/2/2/highres_445613794.jpeg' - photo_id: 445613794 - photo_link: 'http://photos3.meetupstatic.com/photos/event/d/2/2/2/600_445613794.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/d/2/2/2/thumb_445613794.jpeg' - join_mode: open - organizer: - member_id: 123175652 - name: Daniel Castro - photo: - photo_id: 163292942 - photo_link: 'http://photos2.meetupstatic.com/photos/member/8/0/a/e/member_163292942.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/8/0/a/e/thumb_163292942.jpeg' - members: 367 - name: Meetup Javascript São Paulo - lat: -23.530000686645508 - who: Members - - utc_offset: -18000000 - country: CO - visibility: public - city: Bogotá - timezone: America/Bogota - created: 1452025837000 - link: 'http://www.meetup.com/Beer-JS-Bogota/' - rating: 5 - description: >- -

BeerJS es un encuentro de desarrolladores apasionados por crear - código JavaScript y que disfrutan de una buena cerveza. Se realiza - mundialmente por ciudades, y en Colombia no tenemos porque quedarnos - atrás!

- -

El repositorio y el resto de la organización está en https://github.com/beerjs/bogota, - así que es mejor que estén pendientes de ese medio, al igual que por Slack y por Gitter, gracias - y salud!

- -


- lon: -74.08999633789062 - group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/1/f/d/f/highres_446108159.jpeg' - photo_id: 446108159 - photo_link: 'http://photos1.meetupstatic.com/photos/event/1/f/d/f/600_446108159.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/1/f/d/f/thumb_446108159.jpeg' - join_mode: open - organizer: - member_id: 145718032 - name: Miguel Angel Asencio Hurtado - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/b/3/d/b/highres_253126043.jpeg' - photo_id: 253126043 - photo_link: 'http://photos3.meetupstatic.com/photos/member/b/3/d/b/member_253126043.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/b/3/d/b/thumb_253126043.jpeg' - members: 215 - name: BeerJS Bogotá - lat: 4.630000114440918 - who: Drunken Javascripters - - utc_offset: -10800000 - country: AR - visibility: public - city: Buenos Aires - timezone: America/Buenos_Aires - created: 1452137971000 - link: 'http://www.meetup.com/React-js-en-Buenos-Aires/' - rating: 4.58 - description: '

Un meetup para discutir, investigar, implementar los últimos avances sobre React.js/Flux, y cualquier derivado: Redux, react-bootstrap, material-ui, routing, isomorphic SPA, ...

' - lon: -58.369998931884766 - group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/2/6/a/b/highres_447849899.jpeg' - photo_id: 447849899 - photo_link: 'http://photos3.meetupstatic.com/photos/event/2/6/a/b/600_447849899.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/2/6/a/b/thumb_447849899.jpeg' - join_mode: open - organizer: - member_id: 14228569 - name: sebasjm - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/1/1/a/3/highres_250204515.jpeg' - photo_id: 250204515 - photo_link: 'http://photos2.meetupstatic.com/photos/member/1/1/a/3/member_250204515.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/1/1/a/3/thumb_250204515.jpeg' - members: 266 - name: React.js en Buenos Aires - lat: -34.61000061035156 - who: reactors - - utc_offset: -21600000 - country: MX - visibility: public - city: Puebla - timezone: America/Mexico_City - created: 1452792620000 - link: 'http://www.meetup.com/DevNightsMX/' - rating: 5 - description: '

Este es un grupo para todos los interesados en temas como OpenSource, Node.js, Javascript, Startups, Frameworks y demás… Sé que Puebla puede ser un hub muy interesante para el código en México ya que estamos cerca de todos lados. Ven, da una plática o escucha una, conoce gente haz networking habla sobre tu siguiente emprendimiento y encuentra a tu co-fundador. Pero principalmente: pizza & beer :)

' - lon: -98.22000122070312 - group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/2/b/7/9/highres_446711129.jpeg' - photo_id: 446711129 - photo_link: 'http://photos1.meetupstatic.com/photos/event/2/b/7/9/600_446711129.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/2/b/7/9/thumb_446711129.jpeg' - join_mode: open - organizer: - member_id: 194425639 - name: Miguel Palau - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/d/e/8/highres_250732712.jpeg' - photo_id: 250732712 - photo_link: 'http://photos3.meetupstatic.com/photos/member/c/d/e/8/member_250732712.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/d/e/8/thumb_250732712.jpeg' - members: 94 - name: 'DevNights - Code Pizza & Beer' - lat: 19.049999237060547 - who: Devs - - utc_offset: -10800000 - country: BR - visibility: public - city: São Paulo - timezone: America/Sao_Paulo - created: 1453131600000 - link: 'http://www.meetup.com/spember/' - rating: 4 - description: 'Vamos conhecer e nos aprofundar no framework do Hamster, e descobrir como podemos usar seus poderes para aplicações web ambiciosas, estáveis e que permitam visualizar o futuro dos padrões da web! Venha conversar, conhecer, chorar e desabafar sobre os percalços dessa jornada de aprendizado, e vamos sempre compartilhar nossas experiências para criar melhores projetos!' - lon: -46.630001068115234 - join_mode: open - organizer: - member_id: 43757772 - name: Rafael Ventura - photo: - photo_id: 48902022 - photo_link: 'http://photos4.meetupstatic.com/photos/member/7/e/6/member_48902022.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/7/e/6/thumb_48902022.jpeg' - members: 116 - name: Ember.sp - lat: -23.530000686645508 - who: Members - - utc_offset: -18000000 - country: CO - visibility: public - city: Armenia - timezone: America/Bogota - created: 1455680288000 - link: 'http://www.meetup.com/ArmeniaJS/' - description: 'Entérate del desarrollo Web local, conoce otros desarrolladores para compartir el conocimiento, aprender tecnologias modernas, revisar el estado de nuestra comunidad o tener otra vision sobre el desarrollo local.' - lon: -75.69000244140625 - join_mode: open - organizer: - member_id: 193793372 - name: Alejandro Baez Arcila - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/6/5/5/f/highres_253945951.jpeg' - photo_id: 253945951 - photo_link: 'http://photos1.meetupstatic.com/photos/member/6/5/5/f/member_253945951.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/6/5/5/f/thumb_253945951.jpeg' - members: 16 - name: ArmeniaJS - lat: 4.53000020980835 - who: Miembros - - utc_offset: -18000000 - country: CO - visibility: public - city: Cúcuta - timezone: America/Bogota - created: 1456698936000 - link: 'http://www.meetup.com/Cucuta-NodeJS-Meetup/' - rating: 5 - description: 'Cansado de programar en viejos lenguajes o de no encontrar proyectos que no sean un gran reto? Unete a a este grupo creado para todos los curiosos de la programación que deseen explorar esta gran tecnología, crear proyectos openSource, mejorar habilidades en javascript y encontrar nuevas oportunidades laborales. Personas de todos los niveles son bienvenidas y entre todos nos ayudaremos a crecer.' - lon: -72.51000213623047 - join_mode: open - organizer: - member_id: 200615183 - name: Jesus Duarte - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/8/3/2/7/highres_254313575.jpeg' - photo_id: 254313575 - photo_link: 'http://photos3.meetupstatic.com/photos/member/8/3/2/7/member_254313575.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/8/3/2/7/thumb_254313575.jpeg' - members: 50 - name: Cúcuta NodeJS Meetup - lat: 7.909999847412109 - who: Noders - - utc_offset: -10800000 - country: AR - visibility: public - city: Buenos Aires - timezone: America/Buenos_Aires - created: 1458327214000 - link: 'http://www.meetup.com/MuleSoft-Developers-Argentina/' - description: 'Es un grupo para profesionales del área de desarrollo que estén interesados en tecnologías utilizadas en MuleSoft, como Mule ESB, Anypoint Studio, enterprise integration, web services, IoT, APIs REST, microservices y otros.' - lon: -58.369998931884766 - join_mode: open - organizer: - member_id: 184557132 - name: Ariel Jolo - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/4/5/2/0/highres_243917696.jpeg' - photo_id: 243917696 - photo_link: 'http://photos4.meetupstatic.com/photos/member/4/5/2/0/member_243917696.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/4/5/2/0/thumb_243917696.jpeg' - members: 34 - name: MuleSoft Developers Argentina - lat: -34.61000061035156 - who: Muleys - - region: North America - conferences: - - name: Node.js Interactive - dates: - - 2015-12-08T00:00:00.000Z - - 2015-12-09T00:00:00.000Z - link: 'http://events.linuxfoundation.org/events/node-interactive' - image: 'http://events.linuxfoundation.org/sites/events/files/nodeint15_400x400.png' - desc: Node.js Foundation lead conference. - location: 'Hilton Portland & Executive Tower, Portland, OR' - lat: 45.5167983 - lon: -122.6815443 - - name: NodeConf Adventure - link: 'http://nodeconf.com' - desc: Unconference for Node.js developers. - location: 'Walker Creek Ranch, Marin County, CA, USA' - lat: 38.1665953 - lon: -122.8083025 - - name: Empire Node - link: 'http://2015.empirenode.org/' - desc: Yearly Node.js conference in New York City. - lat: 40.704031 - lon: -74.013747 - location: 'National Museum of the American Indian, NYC, NY' - - name: EmpireJS - desc: Yearly JS Conference in New York City. - lat: 40.704031 - lon: -74.013747 - location: 'National Museum of the American Indian, NYC, NY' - - name: Node Community Convention - dates: - - 2016-01-26T00:00:00.000Z - - 2016-01-27T00:00:00.000Z - - 2016-01-28T00:00:00.000Z - link: 'http://nodecommunityconvention.com/?gclid=CK6y2d_-rMkCFQ8yaQod_mkBMQ' - desc: Real Time Innovation for the Node.js Community - lat: 37.788678 - lon: -122.4126467 - location: "Marine's Memorial Theatre, 609 Sutter Street, San Francisco, CA 94102" - nodeschools: - - name: Anchorage NodeSchool - location: 'Anchorage, AK, US' - organizers: - - thejones - website: 'http://nodeschool.io/anchorage' - repo: 'http://github.com/nodeschool/anchorage' - lat: 61.2180556 - lon: -149.9002778 - - name: NodeSchool ATL - location: 'Atlanta, GA, US' - organizers: - - airportyh - repo: 'http://github.com/nodeschool/atlanta' - lat: 33.7489954 - lon: -84.3879824 - - name: Austin NodeSchool - location: 'Austin, TX, US' - organizers: - - stefanmve - repo: 'http://github.com/nodeschool/austin' - lat: 30.267153 - lon: -97.7430608 - - name: Bainbridge Island NodeSchool - location: 'Bainbridge Island, WA, US' - organizers: - - awaterma - - crtr0 - - twleung - repo: 'http://github.com/nodeschool/bainbridge' - lat: 47.6262081 - lon: -122.5212448 - - name: Baltimore NodeSchool - location: 'Baltimore, MD, US' - organizers: - - jasonrhodes - website: 'http://nodeschool.io/baltimore' - twitter: bmorenodeschool - repo: 'http://github.com/nodeschool/baltimore' - lat: 39.2903848 - lon: -76.6121893 - - name: BayNode - location: 'Mountain View, CA, US' - organizers: - - tonypujals - - rosskukulinski - - CrabDude - repo: 'http://github.com/nodeschool/baynode' - lat: 37.3860517 - lon: -122.0838511 - - name: Boston NodeSchool - location: 'Boston, MA, US' - organizers: - - jstreb - - twalling - website: 'https://github.com/nodeschool/boston' - repo: 'http://github.com/nodeschool/boston' - lat: 42.3600825 - lon: -71.0588801 - - name: Chicago NodeSchool - location: 'Chicago, IL, US' - organizers: - - azizali - website: 'http://nodeschool.io/chicago' - twitter: '@heyaziz' - repo: 'http://github.com/nodeschool/chicago' - lat: 41.8781136 - lon: -87.6297982 - - name: Cincinnati NodeSchool - location: 'Cincinnati, OH, US' - organizers: - - fiveisprime - - jackboberg - - Tzmanics - website: 'https://github.com/nodeschool/cincinnati' - twitter: CincyNodeSchool - repo: 'http://github.com/nodeschool/cincinnati' - lat: 39.1031182 - lon: -84.5120196 - - name: Cleveland NodeSchool - location: 'Cleveland, OH, US' - organizers: - - kmckee - - kwpeters - website: 'http://nodeschool.io/cleveland' - twitter: nodeSchoolCLE - repo: 'http://github.com/nodeschool/cleveland' - lat: 41.49932 - lon: -81.6943605 - - name: NodeSchool Dallas - location: 'Dallas, TX, US' - organizers: - - prochafilho - - gangstead - - leongaban - website: 'http://nodeschool.io/dallas' - repo: 'http://github.com/nodeschool/dallas' - lat: 32.7766642 - lon: -96.79698789999999 - - name: Denver-Boulder-Ft. Collins NodeSchool - location: 'Denver, CO, US' - organizers: - - ralucas - - patrick-steele-idem - - legittalon - - mjhea0 - twitter: '@nodejscolorado' - repo: 'http://github.com/nodeschool/denver-boulder' - lat: 39.7392358 - lon: -104.990251 - - name: Edmonton NodeSchool - location: 'Edmonton, AB, CA' - organizers: - - ryanramage - website: 'https://github.com/nodeschool/edmonton' - twitter: '@ryan_ramage_' - repo: 'http://github.com/nodeschool/edmonton' - lat: 53.544389 - lon: -113.4909267 - - name: NodeSchool Fort Lauderdale - location: 'Fort Lauderdale, FL, US' - organizers: - - khalifenizar - - dambalah - - onel0p3z - repo: 'http://github.com/nodeschool/fort-lauderdale' - lat: 26.1224386 - lon: -80.13731740000001 - - name: 'Gainesville, FL NodeSchool' - location: 'Gainesville, FL, US' - organizers: - - aaronbdixon - website: 'http://gnvjs.com' - twitter: gnvjs - repo: 'http://github.com/nodeschool/gainesville' - lat: 29.6516344 - lon: -82.32482619999999 - - name: NodeSchool - Glendora Javascript - location: 'Glendora, CA, US' - organizers: - - uptownhr - website: 'http://nodeschool.io/glendora' - repo: 'http://github.com/nodeschool/glendora' - lat: 34.1361187 - lon: -117.865339 - - name: NodeSchool Wisconsin - location: 'Green Bay, WI, US' - organizers: - - blakehall - - zo0o0ot - website: 'http://nodeschool.io/wisconsin' - twitter: '@greenbayjs' - repo: 'http://github.com/nodeschool/wisconsin' - lat: 44.51915899999999 - lon: -88.019826 - - name: Honolulu NodeSchool - location: 'Honolulu, HI, US' - organizers: - - keokilee - - taesup - - mrbarbasa - - jaywon - - thgaskell - website: 'http://nodeschool.io/honolulu' - repo: 'http://github.com/nodeschool/honolulu' - lat: 21.3069444 - lon: -157.8583333 - - name: NodeSchool Kamloops - location: 'Kamloops, BC, CA' - organizers: - - jonotron - - chadfawcett - - chrisfosterelli - repo: 'http://github.com/nodeschool/kamloops' - lat: 50.674522 - lon: -120.3272674 - - name: 'NodeSchool: LA Edition' - location: 'Los Angeles, CA, US' - organizers: - - jxson - - emkay - website: 'http://nodeschool.io/los-angeles' - repo: 'http://github.com/nodeschool/los-angeles' - lat: 34.0522342 - lon: -118.2436849 - - name: NodeSchool Manchester - location: 'Manchester, NH, US' - organizers: - - AlabamaMike - - antishow - - swinter2 - website: 'http://nodeschool.io/manchester' - twitter: nodemanchvegas - repo: 'http://github.com/nodeschool/manchester' - lat: 42.9956397 - lon: -71.4547891 - - name: NodeSchool Miami - location: 'Miami, FL, US' - organizers: - - khalifenizar - - dambalah - - onel0p3z - repo: 'http://github.com/nodeschool/miami' - lat: 25.7616798 - lon: -80.1917902 - - name: NodeSchool Minneapolis - location: 'Minneapolis, MN, US' - organizers: - - mikefrey - repo: 'http://github.com/nodeschool/minneapolis' - lat: 44.977753 - lon: -93.2650108 - - name: NodeSchool Normal - location: 'Normal, IL, US' - organizers: - - BrainBacon - - codysherman - - shwnstrmn - website: 'http://nodeschool.io/normal' - twitter: NodeNormal - repo: 'http://github.com/nodeschool/normal' - lat: 40.5142026 - lon: -88.9906312 - - name: NodeSchool NYC - location: 'New York, NY, US' - organizers: - - hackygolucky - - brianloveswords - - toolness - - hsin421 - - acingraham - - gautamarora - website: 'http://nodeschool.io/nyc' - repo: 'http://github.com/nodeschool/nyc' - lat: 40.7127837 - lon: -74.0059413 - - name: NodeSchool OC - location: 'Orange County, CA, US' +

Es un grupo donde promovemos las culturas maker y hacker, las cuales actualmente están provocando un cambio en el mundo dando como resultado, Startups, PYMES y nuevos paradigmas en nuestra sociedad.

+


+


+

https://youtu.be/tmmPlISETJg

+
+

https://youtu.be/mklywR7TQxs

+ lon: -101.62000274658203 + group_photo: + photo_link: 'http://photos2.meetupstatic.com/photos/event/d/7/4/7/600_440935111.jpeg' + lat: 19.520000457763672 + - country: AR + city: Córdoba + link: 'http://www.meetup.com/DronCba/' + name: DronCba + description: '

Este grupo esta destinado a compartir código abierto y experiencias en el control de Drones.

' + lon: -64.19000244140625 + lat: -31.399999618530273 + - country: BR + city: Recife + link: 'http://www.meetup.com/NodeJS-Recife-Meetup/' + name: NodeJS Recife Meetup + description: 'Grupo sobre desenvolvimento voltado ao Node.js e todo seu ecossistema. Sejam todos bem vindos e "Always bet on JS"!' + lon: -34.91999816894531 + lat: -8.079999923706055 + - country: AR + city: Santa Fe + link: 'http://www.meetup.com/js-Litoral/' + name: JavaScript Litoral + description: |- +

Este es un grupo para los interesados en tecnologías JavaScript. También para juntarnos a tomar cerveza y hacer amigos. Sumate.

+


+

tambien estamos en Slack!

+

http://jslitoral-slackin.herokuapp.com

+ lon: -60.689998626708984 + lat: -31.600000381469727 + - country: BR + city: Belo Horizonte + link: 'http://www.meetup.com/MinasJS/' + name: MinasJS + description: 'Grupo de discussão sobre conceitos, ferramentas e/ou tecnologias que se relacionem com JavaScript, seja no Client-Side, Server-Side ou qualquer outro meio que a linguagem esteja presente.' + lon: -43.939998626708984 + lat: -19.920000076293945 + - country: EC + city: Quito + link: 'http://www.meetup.com/Quito-js/' + name: Quito.js + description: 'Este es un grupo de programadores con la visión de que Javascript es el nuevo lenguage de máquina. Trataremos sobre todo el mundo de Javascript: nuevos tipos de bases de datos, aprendizaje automático de máquina, lenguajes de consulta de JSON, mapas geográficos, diseño 3D, frameworks, librerías, aplicaciones híbridas, y en general todas las nuevas tecnologías que tienen a Javascript como su centro. El cielo es el límite! (y el espacio en disco :)' + lon: -78.5 + lat: -0.1899999976158142 + - country: BR + city: Joinville + link: 'http://www.meetup.com/JS4Girls-Joinville/' + name: JS4Girls Joinville + description: 'Evangelizar Javascript para incentivar garotas a participarem mais de eventos, palestrarem em eventos, compartilhar conteúdo, aprender e conhecer outras pessoas :D' + lon: -48.84000015258789 + lat: -26.31999969482422 + - country: PE + city: Lima + link: 'http://www.meetup.com/Abakio-Javascript-Group/' + name: Abakio Javascript Group + description: '

Este es un grupo para todos los interesados en la tecnologia web basada en javascript.

' + lon: -77.05000305175781 + group_photo: + photo_link: 'http://photos4.meetupstatic.com/photos/event/a/4/1/0/600_442662000.jpeg' + lat: -12.069999694824219 + - country: CO + city: Cali + link: 'http://www.meetup.com/Meteor-Cali/' + name: Meteor Cali + description: '

Conoce a otros desarrolladores usando Meteor. Comparte tu conocimiento, aplicaciones y obtén retroalimentación de otros. Meteor es una plataforma open-source que permite desarrollar aplicaciones de alta calidad en una fracción de tiempo, no importa si eres un desarrollador experimentado o tan solo estás empezando! Para más información puedes visitar la página oficial de Meteor http://meteor.com y su repositorio oficial en Github https://github.com/meteor/meteor

' + lon: -76.51000213623047 + group_photo: + photo_link: 'http://photos2.meetupstatic.com/photos/event/6/9/5/4/600_443006964.jpeg' + lat: 3.4200000762939453 + - country: BR + city: São Paulo + link: 'http://www.meetup.com/Free-Code-Camp-Sao-Paulo/' + name: Free Code Camp São Paulo + description: 'Esse é um grupo para interessados em se reunir, aprender, fazer os exercícios do Free Code Camp. Estudantes de todos os níveis de serão aceitos.' + lon: -46.630001068115234 + lat: -23.530000686645508 + - country: MX + city: Culiacán + link: 'http://www.meetup.com/Culiacan-front-end/' + name: Culiacán front-end + description: 'Imagina un Sinaloa sin frontends, que CAOS :(, reunámonos y compartamos nuestras experiencias como desarrolladores.' + lon: -107.38999938964844 + lat: 24.799999237060547 + - country: CO + city: Bogotá + link: 'http://www.meetup.com/Meteor-Bogota/' + name: Meteor Bogotá + description: '

Este es un grupo para todos los interesados en aprender sobre METEOR. Son bienvenidos desde expertos desarrolladores, hasta principiantes que están creando su primera aplicación.

' + lon: -74.08999633789062 + group_photo: + photo_link: 'http://photos2.meetupstatic.com/photos/event/2/4/7/1/600_443289329.jpeg' + lat: 4.630000114440918 + - country: CL + city: Santiago + link: 'http://www.meetup.com/Javascript-Chile/' + name: Javascript Chile + description: |- +

¡Llamando a todos los JS Fans! (Y los JS Curious también) 

+
+

Javascript es el lenguaje más popular de la web, y ahora...¡fuera de ella! Este grupo está enfocado en armar y ser un espacio los diferentes meetups de Javascript, NodeJS,  y todos sus sabores en Chile (Typescript, JSX, y el resto son todos bienvenidos)
:) 

+
+

Nos juntamos a lo largo del país, una vez al mes, a aprender, compartir y conocer otros dudes and dudettes que les gusta este mítico personaje llamado "El Javascripto" en Latinoamérica (o JavaScript para los más amigos). 

+
+

Un abrazo asíncrono, ¡y nos vemos en los meetups!

+
+ lon: -70.63999938964844 + lat: -33.459999084472656 + - country: BR + city: Natal + link: 'http://www.meetup.com/Meetup-Microcontroladores-IoT-Natal/' + name: Microcontroladores IoT Natal + description: |- +

Pessoal entusiasta em microcontroladores (arduino, launchpad, pic ...) e que gosta de realizar projetos DIY aliando internet das coisas. Queremos conhecer pessoas que gostem de aprender e partilhar conhecimentos acerca desta temática. Revolucionadores, empreendedores, malucos por fazer acontecer e sonhadores são todos bem vindos!

+

Também temos um grupo no Facebook, entre aqui!

+ lon: -35.220001220703125 + group_photo: + photo_link: 'http://photos3.meetupstatic.com/photos/event/4/9/f/f/600_444378943.jpeg' + lat: -5.800000190734863 + - country: BR + city: Porto Alegre + link: 'http://www.meetup.com/Node-js-Porto-Alegre-Meetup/' + name: Node.js Porto Alegre Meetup + description: "

Meet other Node.js developers. Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine. Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient.

" + lon: -51.220001220703125 + group_photo: + photo_link: 'http://photos3.meetupstatic.com/photos/event/4/0/0/9/600_444676393.jpeg' + lat: -30.040000915527344 + - country: MX + city: Monterrey + link: 'http://www.meetup.com/Tecnologia-Digital/' + name: Tecnología Digital + description: 'Grupo para interesados en IT, en programación, testing y metodología Ágil. Buscamos difundir diferentes pláticas técnicas donde los participantes puedan aprender las tecnologías digitales modernas como Angular, IOS, Devops, etc. Contaremos con al menos un evento por mes.' + lon: -100.31999969482422 + lat: 25.670000076293945 + - country: BR + city: Moji das Cruzes + link: 'http://www.meetup.com/Front-Back-Mogi/' + name: 'Front&Back Mogi' + description: |- +

O Front&Back é um grupo de estudos gratuito para a região de Mogi das Cruzes e Alto Tietê. 

+

O objetivo principal do grupo é promover o networking e disseminar o conhecimento FrontEnd e BackEnd. Abordamos diversos assuntos como HTML, CSS, JavaScript, MEAN(MongoDb, Express, AngularJS e NodeJS), JQuery, Arquitetura. 

+

Sobre os Eventos

+

Os eventos (Mini Cursos e Palestras) são para qualquer pessoa que esteja interessada em participar(independente do nível de conhecimento). 

+

A entrada para os eventos é 1 kg de alimento não perecível que será doado para alguma instituição de caridade (Você aprende e ainda ajuda quem precisa). 

+

Sempre teremos eventos.

+ lon: -46.209999084472656 + group_photo: + photo_link: 'http://photos1.meetupstatic.com/photos/event/1/2/a/e/600_444964782.jpeg' + lat: -23.520000457763672 + - country: BR + city: Joinville + link: 'http://www.meetup.com/femug-jlle/' + name: FEMUG JLLE + description: |- +

O "Front-End Meet-Up Group" é um projeto que nasceu da necessidade de unir os desenvolvedores para que o acesso à informação seja feito em qualquer lugar que haja interesse do aprendizado. Trata-se de um evento para pessoas interessadas em aprender, evoluir e dividir conhecimentos.

+

github.com/braziljs/femug

https://groups.google.com/forum/#!forum/fem...

+ lon: -48.84000015258789 + lat: -26.31999969482422 + - country: VE + city: Caracas + link: 'http://www.meetup.com/Meetup-de-JavaScript-en-Caracas/' + name: 'JavaScript en Caracas, FaceBook: "JavaScript Venezuela"' + description: |- +

Somos un sitio de encuentro para todas las personas relacionadas con javascript desde los que quieren estar informados en este nuevo paradigma de desarrollo, hasta por los clientes que estan buscando soluciones javascript para sus necesidades informáticas. Ven a compartir, ven a conocer, ver a instruir, ven a aprender, ven a construir una comunidad.

+

Estamos tambien en FaceBook, con el grupo "JavaScript Venezuela", agregate, aporta y construye. Para una mejor Venezuela.

+ lon: -66.93000030517578 + lat: 10.539999961853027 + - country: DO + city: Santo Domingo + link: 'http://www.meetup.com/Azure-Open-Source-Santo-Domingo/' + name: 'Azure {Open Source}; Santo Domingo' + description: '

Este grupo es para todos los interesados en tratar y aprender temas relacionados a Open Source en Azure, esta última es la Nube Abierta de Microsoft… Lo cual nos deja mucho de qué hablar :) !! Conoce más sobre Open Source en Microsoft http://microsoft.com/openness http://openness.microsoft.com/es-latam/blog/

' + lon: -69.91000366210938 + lat: 18.479999542236328 + - country: BR + city: São Paulo + link: 'http://www.meetup.com/Javascript-SP/' + name: Meetup Javascript São Paulo + description: '

Este é um grupo para os interessados ​​em javascript. Todos os níveis são bem-vindos. Eu comecamos este grupo para conhecer outros entusiastas de javascript.

' + lon: -46.630001068115234 + group_photo: + photo_link: 'http://photos3.meetupstatic.com/photos/event/d/2/2/2/600_445613794.jpeg' + lat: -23.530000686645508 + - country: CO + city: Bogotá + link: 'http://www.meetup.com/Beer-JS-Bogota/' + name: BeerJS Bogotá + description: |- +

BeerJS es un encuentro de desarrolladores apasionados por crear código JavaScript y que disfrutan de una buena cerveza. Se realiza mundialmente por ciudades, y en Colombia no tenemos porque quedarnos atrás!

+

El repositorio y el resto de la organización está en https://github.com/beerjs/bogota, así que es mejor que estén pendientes de ese medio, al igual que por Slack y por Gitter, gracias y salud!

+


+ lon: -74.08999633789062 + group_photo: + photo_link: 'http://photos1.meetupstatic.com/photos/event/1/f/d/f/600_446108159.jpeg' + lat: 4.630000114440918 + - country: AR + city: Buenos Aires + link: 'http://www.meetup.com/React-js-en-Buenos-Aires/' + name: React.js en Buenos Aires + description: '

Un meetup para discutir, investigar, implementar los últimos avances sobre React.js/Flux, y cualquier derivado: Redux, react-bootstrap, material-ui, routing, isomorphic SPA, ...

' + lon: -58.369998931884766 + group_photo: + photo_link: 'http://photos3.meetupstatic.com/photos/event/2/6/a/b/600_447849899.jpeg' + lat: -34.61000061035156 + - country: MX + city: Puebla + link: 'http://www.meetup.com/DevNightsMX/' + name: 'DevNights - Code Pizza & Beer' + description: '

Este es un grupo para todos los interesados en temas como OpenSource, Node.js, Javascript, Startups, Frameworks y demás… Sé que Puebla puede ser un hub muy interesante para el código en México ya que estamos cerca de todos lados. Ven, da una plática o escucha una, conoce gente haz networking habla sobre tu siguiente emprendimiento y encuentra a tu co-fundador. Pero principalmente: pizza & beer :)

' + lon: -98.22000122070312 + group_photo: + photo_link: 'http://photos1.meetupstatic.com/photos/event/2/b/7/9/600_446711129.jpeg' + lat: 19.049999237060547 + - country: BR + city: São Paulo + link: 'http://www.meetup.com/spember/' + name: Ember.sp + description: 'Vamos conhecer e nos aprofundar no framework do Hamster, e descobrir como podemos usar seus poderes para aplicações web ambiciosas, estáveis e que permitam visualizar o futuro dos padrões da web! Venha conversar, conhecer, chorar e desabafar sobre os percalços dessa jornada de aprendizado, e vamos sempre compartilhar nossas experiências para criar melhores projetos!' + lon: -46.630001068115234 + lat: -23.530000686645508 + - country: CO + city: Armenia + link: 'http://www.meetup.com/ArmeniaJS/' + name: ArmeniaJS + description: 'Entérate del desarrollo Web local, conoce otros desarrolladores para compartir el conocimiento, aprender tecnologias modernas, revisar el estado de nuestra comunidad o tener otra vision sobre el desarrollo local.' + lon: -75.69000244140625 + lat: 4.53000020980835 + - country: CO + city: Cúcuta + link: 'http://www.meetup.com/Cucuta-NodeJS-Meetup/' + name: Cúcuta NodeJS Meetup + description: 'Cansado de programar en viejos lenguajes o de no encontrar proyectos que no sean un gran reto? Unete a a este grupo creado para todos los curiosos de la programación que deseen explorar esta gran tecnología, crear proyectos openSource, mejorar habilidades en javascript y encontrar nuevas oportunidades laborales. Personas de todos los niveles son bienvenidas y entre todos nos ayudaremos a crecer.' + lon: -72.51000213623047 + lat: 7.909999847412109 + - country: AR + city: Buenos Aires + link: 'http://www.meetup.com/muleysba/' + name: MuleSoft Developers Argentina + description: '

Es un grupo para profesionales del área de desarrollo que estén interesados en tecnologías utilizadas en MuleSoft, como Mule ESB, Anypoint Studio, enterprise integration, web services, IoT, APIs REST, microservices y otros.

' + lon: -58.369998931884766 + group_photo: + photo_link: 'http://photos4.meetupstatic.com/photos/event/5/9/d/e/600_448403006.jpeg' + lat: -34.61000061035156 + - country: BR + city: Belo Horizonte + link: 'http://www.meetup.com/Javascript-Dojo-Belo-Horizonte/' + name: Javascript Dojo - Belo Horizonte + description: '

Se você quer aprender/aprofundar mais sobre closures, es6, prototype inheritance, promise, js frameworks de forma prática inscreva-se.
O objetivo é promover dojos é aprender coletivamente sobre javascript metendo a mão na massa.

' + lon: -43.939998626708984 + lat: -19.920000076293945 + - country: BR + city: São Paulo + link: 'http://www.meetup.com/Free-Code-Camp-SP/' + name: Free Code Camp SP + description: 'Esse grupo tem como objetivo reunir estudantes do Free Code Camp residentes na cidade de São Paulo. Se você já está fazendo, em qualquer estágio do curso, ou tem interesse em aprender mais sobre desenvolvimento web full stack focado em Javascript, esse é o lugar! Entre os eventos desse Meetup teremos coffee & codes, workshops, webcasts e qualquer outro tipo de encontro que possibilite a troca de experiências e um aprendizado com mais qualidade! Sintam-se livres para propor eventos! Por último, peço para que, por enquanto, só entrem no grupo se forem de São Paulo e realmente pretenderem ir nos encontros, pois estou fazendo uma conta free.' + lon: -46.630001068115234 + lat: -23.530000686645508 + - country: AR + city: Buenos Aires + link: 'http://www.meetup.com/Alquimistas-de-la-programacion/' + name: Alquimistas de la programación + description: 'Este es un grupo donde todos los amantes de: PHP, HTML5, IONIC, Phonegap y MySql se juntan de forma ONLINE y presencia charlas creadas por un grupo de desarrolladores que intenta crecer día a día profesionalmente.' + lon: -58.369998931884766 + lat: -34.61000061035156 + nodeschools: + - name: Belo Horizonte NodeSchool + location: 'Belo Horizonte, BR' organizers: - - markhuge - repo: 'http://github.com/nodeschool/oc' - lat: 33.7174708 - lon: -117.8311428 - - name: Orlando NodeSchool - location: 'Orlando, FL, US' + - paulohp + - obetomuniz + - victorferraz + - erickbelfy + website: 'http://nodeschool.io/belo-horizonte' + repo: 'http://github.com/nodeschool/belo-horizonte' + lat: -19.9166813 + lon: -43.9344931 + - name: NodeSchool Bogotá + location: 'Bogotá, CO' organizers: - - lancehudson - - bradplank - - calebrosario - repo: 'http://github.com/nodeschool/orlando' - lat: 28.5383355 - lon: -81.3792365 - - name: Oakland NodeSchool - location: 'Oakland, CA, US' + - davsket + - agar3s + - kuryaki + - zaccaro + - buritica + repo: 'http://github.com/nodeschool/bogota' + lat: 4.710988599999999 + lon: -74.072092 + - name: Buenos Aires NodeSchool + location: 'Buenos Aires, AR' organizers: - - maxogden - repo: 'http://github.com/nodeschool/oakland' - lat: 37.8043637 - lon: -122.2711137 - - name: NodeSchool PDX - location: 'Portland, OR, US' + - a0viedo + website: 'http://nodeschool.io/buenosaires' + twitter: nodeschoolba + repo: 'http://github.com/nodeschool/buenosaires' + lat: -34.6036844 + lon: -58.3815591 + - name: Campinas NodeSchool + location: 'Campinas, SP, BR' organizers: - - nrn - - dlmanning - - wraithan - - meandavejustice - - justinabrahms - - nvcexploder - - ngoldman - website: 'http://nodeschool.io/pdx/' - repo: 'http://github.com/nodeschool/pdx' - lat: 45.5230622 - lon: -122.6764816 - - name: 'Nodeschool Portland, ME' - location: 'Portland, ME, US' + - fmoliveira + - MiattoRocha + - edersonnascimento + website: 'http://nodeschool.io/campinas' + twitter: nodeschoolcps + repo: 'http://github.com/nodeschool/campinas' + lat: -22.9099384 + lon: -47.0626332 + - name: NodeSchool Cochabamba + location: 'Cochabamba, BO, BO' organizers: - - carlodicelico - - jaegerpicker - website: 'http://nodeschool.io/portland-me' - repo: 'http://github.com/nodeschool/portland-me' - other: 'http://www.meetup.com/Portland-Maine-Nodeschool' - lat: 43.66147100000001 - lon: -70.2553259 - - name: NodeSchool Philadelphia - location: 'Philadelphia, PA, US' + - chitopolo + - aquilardo + website: 'http://www.boliviajs.com' + twitter: 'https://www.twitter.com/BoliviaJS' + repo: 'http://github.com/nodeschool/Cochabamba' + lat: -17.4139766 + lon: -66.1653224 + - name: Córdoba NodeSchool + location: 'Córdoba, AR' organizers: - - adobley - website: 'http://nodeschool.io/philadelphia' - twitter: nodeschoolphl - repo: 'http://github.com/nodeschool/philadelphia' - lat: 39.9525839 - lon: -75.1652215 - - name: NodeSchool Reno - location: 'Reno, NV, US' + - avilaton + website: 'http://nodeschool.io/cordoba' + repo: 'http://github.com/nodeschool/cordoba' + lat: -31.42008329999999 + lon: -64.1887761 + - name: 'NodeSchool Costa Rica ' + location: 'San José, CRI' organizers: - - colinloretz - - hmudesign - - w1zeman1p - website: 'http://nodeschool.io/reno/' - repo: 'http://github.com/nodeschool/reno' - lat: 39.5296329 - lon: -119.8138027 - - name: NodeSchool SF - location: 'San Francisco, CA, US' + - gaboesquivel + - yeco + - laubits + - brolag + - stevenperez + - kevinblanco + - laurensortiz + - jarias + - rubenabix + - cayasso + - avenidanet + website: 'http://nodeschool.io/costarica/' + twitter: costaricajs + repo: 'http://github.com/nodeschool/costarica' + lat: 9.6257333 + lon: -84.010995 + - name: Florianópolis NodeSchool + location: 'Florianópolis, SC, BR' organizers: - - duquet - - llkats - - jedireza - website: 'http://nodeschool.io/sanfrancisco/' - twitter: nodeschoolsf - repo: 'http://github.com/nodeschool/sanfrancisco' - lat: 37.7749295 - lon: -122.4194155 - - name: NodeSchool SLO - location: 'San Luis Obispo, CA, US' + - conrado + website: 'http://nodeschool.io/florianopolis' + twitter: nodeschoolFLN + repo: 'http://github.com/nodeschool/florianopolis' + lat: -27.5953778 + lon: -48.5480499 + - name: Havana NodeSchool + location: 'Havana, CU' + organizers: + - phinfonet + - elMor3no + - olemis + - robertkowalski + - aurium + website: 'http://nodeschool.io/havana' + repo: 'http://github.com/nodeschool/havana' + lat: 23.1135925 + lon: -82.3665956 + - name: NodeSchool Hermosillo + location: 'Hermosillo, Son, MX' + organizers: + - dayrachiu + - jrsalgado + - keogh + - abrahamhinojo + website: 'http://nodeschool.io/hermosillo' + repo: 'http://github.com/nodeschool/hermosillo' + lat: 29.0729673 + lon: -110.9559192 + - name: NodeSchool Ibagué + location: 'Ibagué, CO' organizers: - - ecwyne - website: 'http://nodeschool.io/san-luis-obispo/' - repo: 'http://github.com/nodeschool/san-luis-obispo' - lat: 35.2827524 - lon: -120.6596156 - - name: Seattle NodeSchool - location: 'Seattle, WA, US' + - gioyik + - yeisontapia + - pandres95 + - zheref + repo: 'http://github.com/nodeschool/ibague' + lat: 4.444675999999999 + lon: -75.24243799999999 + - name: Manizales NodeSchool + location: 'Manizales, CO' organizers: - - sethvincent - - YonasBerhe - - blakmatrix - website: 'http://nodeschool.io/seattle' - repo: 'http://github.com/nodeschool/seattle' - lat: 47.6062095 - lon: -122.3320708 - - name: Raleigh-Durham NodeSchool - location: 'Raleigh-Durham, NC, US' + - gmauricio + repo: 'http://github.com/nodeschool/manizales' + lat: 5.070275 + lon: -75.5138166 + - name: NodeSchool Medellín + location: 'Medellín, CO' organizers: - - brianpmarks - - jbelmont - website: 'http://nodeschool.io/raleigh-durham' - twitter: rdunodeschool - repo: 'http://github.com/nodeschool/raleigh-durham' - lat: 35.8991678 - lon: -78.86364019999999 - - name: Stanford University NodeSchool - location: 'Stanford, CA, US' + - julianduque + - edsadr + - academo + repo: 'http://github.com/nodeschool/medellin' + lat: 6.253040800000001 + lon: -75.5645737 + - name: Mexico City NodeSchool + location: 'Mexico City, MX' organizers: - - feross - - jhiesey - - abi - repo: 'https://github.com/nodeschool/stanford' - lat: 37.42410599999999 - lon: -122.1660756 - - name: Tacoma NodeSchool - location: 'Tacoma, WA, US' + - jeduan + - rogr + - siedrix + website: 'http://nodeschool.io/mexicocity' + repo: 'http://github.com/nodeschool/mexicocity' + lat: 19.4326077 + lon: -99.133208 + - name: Montevideo NodeSchool + location: 'Montevideo, UY' organizers: - - NorthDecoder - website: 'http://nodeschool.io/tacoma' - repo: 'http://github.com/nodeschool/tacoma' - lat: 47.2528768 - lon: -122.4442906 - - name: Tampa Nodeschool - location: 'Tampa, FL, US' + - pdjota + - pricco + - mprunell + repo: 'http://github.com/nodeschool/montevideo' + lat: -34.9011127 + lon: -56.16453139999999 + - name: NodeSchool Pereira + location: 'Pereira, CO' organizers: - - eliwheaton - repo: 'https://github.com/nodeschool/tampa' - lat: 27.950575 - lon: -82.4571776 - - name: NodeSchool Toronto - location: 'Toronto, CA' + - cronopio + - pin3da + - jhonber + repo: 'http://github.com/nodeschool/pereira' + website: 'http://nodeschool.io/pereira' + twitter: PereiraJS_ + lat: 4.8087174 + lon: -75.690601 + - name: Puerto Rico NodeSchool + location: 'Puerto Rico, PR' organizers: - - rmillr - - darcyclarke - - richgilbank - - jeffjewiss - - brenna - - andrewdamelio - - tessalt - website: 'http://nodeschool.io/toronto' - twitter: 'https://twitter.com/nodeschoolto' - repo: 'http://github.com/nodeschool/toronto' - lat: 43.653226 - lon: -79.3831843 - - name: Utah Node Ninjas - location: 'Provo, UT, US' + - gcollazo + - jpadilla + - elving + - jomajoma + - froi + website: 'http://nodeschool.io/puertorico/' + repo: 'http://github.com/nodeschool/puertorico' + lat: 18.220833 + lon: -66.590149 + - name: Rio de Janeiro NodeSchool + location: 'Rio de Janeiro, RJ, BR' organizers: - - therebelrobot - website: 'http://www.meetup.com/Node-Ninjas/' - repo: 'https://github.com/Utah-Node-Ninjas' - lat: 40.2338438 - lon: -111.6585337 - - name: NodeSchoolDC - location: 'Washington, DC, US' + - milesibastos + website: 'http://nodeschool.io/rio' + gitter: 'https://gitter.im/nodeschool/rio' + repo: 'http://github.com/nodeschool/rio' + lat: -22.9068467 + lon: -43.1728965 + - name: San Ignacio NodeSchool + location: 'San Ignacio, PY' organizers: - - robbiethegeek - - joshfinnie - - JuanCaicedo - - danpaz - website: 'http://nodeschool.io/washingtondc/' - twitter: NodeSchoolDC - repo: 'http://github.com/nodeschool/washingtondc' - lat: 38.9071923 - lon: -77.0368707 - - name: NodeSchool Vancouver - location: 'Vancouver, BC, CA' + - matiasinsaurralde + - luchobenitez + - carloscarvallo + website: 'http://nodeschool.io/sanignacio' + repo: 'http://github.com/nodeschool/sanignacio' + lat: -26.8433512 + lon: -57.10131879999999 + - name: NodeSchool Santa Marta + location: 'Santa Marta, CO' + organizers: + - pedroromn + - gengue + website: 'http://nodeschool.io/santamarta/' + repo: 'http://github.com/nodeschool/santamarta' + lat: 11.2403547 + lon: -74.2110227 + - name: Santiago NodeSchool + location: 'Santiago, CL' organizers: - - sintaxi - - notmatt - - afabbro - - lvivier - - gyaresu - website: 'http://nodeschool.io/vancouver/' - repo: 'http://github.com/nodeschool/vancouver' - lat: 49.2827291 - lon: -123.1207375 - - name: Western Massachusetts NodeSchool - location: 'Western Massachusetts, US' + - forres + - xabadu + website: 'http://www.noders.cl' + twitter: nodeschoolstgo + repo: 'http://github.com/nodeschool/Santiago' + lat: -33.4488897 + lon: -70.6692655 + - name: USAC NodeSchool + location: 'USAC, Guatemala City, GT' organizers: - - Sequoia - - a-pasquale - website: 'http://nodeschool.io/western-mass/' - repo: 'https://github.com/nodeschool/western-mass' - lat: 42.5944125 - lon: -70.68915439999999 + - edwinallenz + - bladimir47 + - ottogiron + - osukaa + - gepser + - jossemarGT + - viktorcoradov + - braestuart + - cruzperez + - hhgn32 + - bvalenzuela + - louicruz + - Lucosenza2015 + repo: 'https://github.com/nodeschool/usac.gt' + lat: 14.5881064 + lon: -90.5477204 + - region: North America + conferences: + - name: Node.js Interactive + dates: + - 2015-12-08T00:00:00.000Z + - 2015-12-09T00:00:00.000Z + link: 'http://events.linuxfoundation.org/events/node-interactive' + image: 'http://events.linuxfoundation.org/sites/events/files/nodeint15_400x400.png' + desc: Node.js Foundation lead conference. + location: 'Hilton Portland & Executive Tower, Portland, OR' + lat: 45.5167983 + lon: -122.6815443 + - name: NodeConf Adventure + link: 'http://nodeconf.com' + desc: Unconference for Node.js developers. + location: 'Walker Creek Ranch, Marin County, CA, USA' + lat: 38.1665953 + lon: -122.8083025 + - name: Empire Node + link: 'http://2015.empirenode.org/' + desc: Yearly Node.js conference in New York City. + lat: 40.704031 + lon: -74.013747 + location: 'National Museum of the American Indian, NYC, NY' + - name: EmpireJS + desc: Yearly JS Conference in New York City. + lat: 40.704031 + lon: -74.013747 + location: 'National Museum of the American Indian, NYC, NY' + - name: Node Community Convention + dates: + - 2016-01-26T00:00:00.000Z + - 2016-01-27T00:00:00.000Z + - 2016-01-28T00:00:00.000Z + link: 'http://nodecommunityconvention.com/?gclid=CK6y2d_-rMkCFQ8yaQod_mkBMQ' + desc: Real Time Innovation for the Node.js Community + lat: 37.788678 + lon: -122.4126467 + location: "Marine's Memorial Theatre, 609 Sutter Street, San Francisco, CA 94102" meetups: - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Fort Lauderdale - timezone: US/Eastern - created: 1034097732000 link: 'http://www.meetup.com/web-development-frameworks/' - rating: 4.5 + name: Web Frameworks Meetup lon: -80.18000030517578 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/2/6/f/c/highres_69980.jpeg' - photo_id: 69980 photo_link: 'http://photos1.meetupstatic.com/photos/event/2/6/f/c/600_69980.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/2/6/f/c/thumb_69980.jpeg' - join_mode: open - organizer: - member_id: 1144980 - name: Paul Kruger - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/6/5/6/9/highres_21205961.jpeg' - photo_id: 21205961 - photo_link: 'http://photos4.meetupstatic.com/photos/member/6/5/6/9/member_21205961.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/6/5/6/9/thumb_21205961.jpeg' - members: 75 - name: Web Frameworks Meetup - state: FL lat: 26.18000030517578 - who: developers - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Fort Lauderdale - timezone: US/Eastern - created: 1064970356000 link: 'http://www.meetup.com/webdesign-27/' - rating: 4.04 + name: The Broward County Web Design Meetup Group description: '

This Meetup Group focuses on web related design issues. We privilege conceptual vs. technical. (i.e. how to do good design vs. what application to use) Tech sessions at the end, if requested. Business issues welcome too!

' lon: -80.18000030517578 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/5/4/8/a/highres_53781642.jpeg' - photo_id: 53781642 photo_link: 'http://photos4.meetupstatic.com/photos/event/5/4/8/a/600_53781642.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/5/4/8/a/thumb_53781642.jpeg' - join_mode: open - organizer: - member_id: 1144980 - name: Paul Kruger - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/6/5/6/9/highres_21205961.jpeg' - photo_id: 21205961 - photo_link: 'http://photos4.meetupstatic.com/photos/member/6/5/6/9/member_21205961.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/6/5/6/9/thumb_21205961.jpeg' - members: 213 - name: The Broward County Web Design Meetup Group - state: FL lat: 26.18000030517578 - who: Web Designers - - utc_offset: -14400000 - country: US - visibility: public + - country: US + city: Chicago + link: 'http://www.meetup.com/Lakefront-Web-Developers/' + name: Lakefront Web Developers + description: '

Meet other web developers and continue your education in HTML, CSS, JavaScript, PHP, and other technologies. Industry trends are always changing and we cover what you need to stay up to date. Each meetup has an hour-long technical presentation with food, drinks, and good people. So come join us sometime near the beautiful Chicago lakefront.

' + lon: -87.62999725341797 + group_photo: + photo_link: 'http://photos1.meetupstatic.com/photos/event/4/8/0/c/600_448158444.jpeg' + lat: 41.88999938964844 + - country: US city: Lansing - timezone: US/Eastern - created: 1192378075000 link: 'http://www.meetup.com/lansingweb/' - rating: 4.23 - description: >- + name: Lansing Web Meetup Group + description: |-

Come hang out with other local web developers and designers!

- -

Lansing Web Meetups are agenda-free events where you can share your - latest project, talk about tools you’re using, network, trade career - advice, or just chat about the web.

- -

We also host occasional talks, so if there’s a topic you’d like to - learn more about or give a talk on, please let us know!

+

Lansing Web Meetups are agenda-free events where you can share your latest project, talk about tools you’re using, network, trade career advice, or just chat about the web.

+

We also host occasional talks, so if there’s a topic you’d like to learn more about or give a talk on, please let us know!

lon: -84.55000305175781 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/5/e/e/0/highres_438504288.jpeg' - photo_id: 438504288 photo_link: 'http://photos3.meetupstatic.com/photos/event/5/e/e/0/600_438504288.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/5/e/e/0/thumb_438504288.jpeg' - join_mode: open - organizer: - member_id: 159596292 - name: Monica Salter - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/d/6/9/2/highres_254754930.jpeg' - photo_id: 254754930 - photo_link: 'http://photos2.meetupstatic.com/photos/member/d/6/9/2/member_254754930.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/d/6/9/2/thumb_254754930.jpeg' - members: 478 - name: Lansing Web Meetup Group - state: MI lat: 42.72999954223633 - who: Lansing Web Members - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Francisco - timezone: US/Pacific - created: 1205357247000 link: 'http://www.meetup.com/jsmeetup/' - rating: 4.53 - description: >- -

Hang out and discuss JavaScript tips, tricks, hacks, and frameworks - with some of the best scripters around. Show off cool stuff you've done - and learn about what else is going on in the JS community. No pressure, - no mandatory presentations. Come, hang out, and hear great people talk - about cutting edge scripting.

- -

The SF JavaScript Meetup is committed to maintaining an - inclusive, harassment-free atmosphere. Attendees, speakers and sponsors - must all abide by our Code of - Conduct. Please do not spam the group with job postings/contact - info or bring collateral to the events.

+ name: The SF JavaScript Meetup + description: |- +

Hang out and discuss JavaScript tips, tricks, hacks, and frameworks with some of the best scripters around. Show off cool stuff you've done and learn about what else is going on in the JS community. No pressure, no mandatory presentations. Come, hang out, and hear great people talk about cutting edge scripting.

+

The SF JavaScript Meetup is committed to maintaining an inclusive, harassment-free atmosphere. Attendees, speakers and sponsors must all abide by our Code of Conduct. Please do not spam the group with job postings/contact info or bring collateral to the events.

lon: -122.41000366210938 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/4/6/8/4/highres_59778052.jpeg' - photo_id: 59778052 photo_link: 'http://photos3.meetupstatic.com/photos/event/4/6/8/4/600_59778052.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/4/6/8/4/thumb_59778052.jpeg' - join_mode: open - organizer: - member_id: 2642494 - name: Dave Nugent - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/5/8/d/highres_244981421.jpeg' - photo_id: 244981421 - photo_link: 'http://photos3.meetupstatic.com/photos/member/5/8/d/member_244981421.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/5/8/d/thumb_244981421.jpeg' - members: 10837 - name: The SF JavaScript Meetup - state: CA lat: 37.790000915527344 - who: JS Hackers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Mountain View - timezone: US/Pacific - created: 1206761791000 link: 'http://www.meetup.com/Hackers-and-Founders/' - rating: 4.6 - description: >- -

You should really go over there and learn - more about us.

- -

We have a founder's co-operative. -  Learn more here.

- -

Hackers/Founders is the largest community of early tech founders in - Silicon Valley ( that includes SF ).

- -

Like reviewing startups? Sign - up here!

- -

We host networking events and meetups in Silicon - Valley, San Francisco, Berkeley and San Jose.

- -

Subscribe to Hackers/Founders - Newsletter

- -

Looking to invest in startups? Subscribe to our Investor - Newsletter

+ name: Hackers and Founders + description: |- +

You should really go over there and learn more about us.

+

We have a founder's co-operative.  Learn more here.

+

Hackers/Founders is the largest community of early tech founders in Silicon Valley ( that includes SF ).

+

Like reviewing startups? Sign up here!

+

We host networking events and meetups in Silicon Valley, San Francisco, Berkeley and San Jose.

+

Subscribe to Hackers/Founders Newsletter

+

Looking to invest in startups? Subscribe to our Investor Newsletter

lon: -122.08000183105469 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/4/6/1/a/highres_439817946.jpeg' - photo_id: 439817946 photo_link: 'http://photos1.meetupstatic.com/photos/event/4/6/1/a/600_439817946.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/4/6/1/a/thumb_439817946.jpeg' - join_mode: open - organizer: - member_id: 6851835 - name: Jonathan Nelson - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/3/5/e/a/highres_183073802.jpeg' - photo_id: 183073802 - photo_link: 'http://photos2.meetupstatic.com/photos/member/3/5/e/a/member_183073802.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/5/e/a/thumb_183073802.jpeg' - members: 13331 - name: Hackers and Founders - state: CA lat: 37.40999984741211 - who: Hackers / Founders - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: New York - timezone: US/Eastern - created: 1217044334000 link: 'http://www.meetup.com/NY-JavaScript/' - rating: 4.78 - description: >- -

Welcome to the NY JavaScript meetup group. We host regular workshops - and tech talks on a variety of different JavaScript topics.

- -

We look forward to hearing from you, and to seeing you at an - upcoming event.

- -

 Get in touch at jovena@nyjavascript.com if you'd like to - be involved.

- + name: NY JavaScript + description: |- +

Welcome to the NY JavaScript meetup group. We host regular workshops and tech talks on a variety of different JavaScript topics.

+

We look forward to hearing from you, and to seeing you at an upcoming event.

+

 Get in touch at jovena@nyjavascript.com if you'd like to be involved.

 

lon: -74 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/2/c/c/d/highres_437171469.jpeg' - photo_id: 437171469 photo_link: 'http://photos4.meetupstatic.com/photos/event/2/c/c/d/600_437171469.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/2/c/c/d/thumb_437171469.jpeg' - join_mode: open - organizer: - member_id: 25303412 - name: Jovena Whatmoor - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/6/7/2/2/highres_24146402.jpeg' - photo_id: 24146402 - photo_link: 'http://photos4.meetupstatic.com/photos/member/6/7/2/2/member_24146402.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/6/7/2/2/thumb_24146402.jpeg' - members: 3595 - name: NY JavaScript - state: NY lat: 40.720001220703125 - who: JavaScripters - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Austin - timezone: US/Central - created: 1219011353000 link: 'http://www.meetup.com/austincoders_hackers/' - rating: 4.68 + name: 'Austin Coders & Hackers by The Tech^map' description: "


Welcome to Austin Coders & Hackers Meetup group by The Tech^map!

\n

If you are interested to attend hackethon, tech, or coding events or anything related to technology and partying you want to be part of this group. Everyone is welcome to our group! Software developers, UX designers, hardware architects and students looking for a more exciting and challenging opportunity in Austin. Come on in, join us!

\n

Our meetups are always a great opportunity to meet engineering and creative talent from Austin, TX, to find out what is happening in the techie universe in Silicon Hills join us.

\n

To list your company, post jobs, connect with others or find events going on signup to www.thetechmap.com. It is FREE!

\n

Cheers,
Johan Borge
CEO & Founder

" lon: -97.76000213623047 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/8/1/5/8/highres_396573112.jpeg' - photo_id: 396573112 photo_link: 'http://photos1.meetupstatic.com/photos/event/8/1/5/8/600_396573112.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/8/1/5/8/thumb_396573112.jpeg' - join_mode: open - organizer: - member_id: 133976882 - name: Johan Borge - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/5/e/0/8/highres_178704072.jpeg' - photo_id: 178704072 - photo_link: 'http://photos4.meetupstatic.com/photos/member/5/e/0/8/member_178704072.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/5/e/0/8/thumb_178704072.jpeg' - members: 888 - name: 'Austin Coders & Hackers by The Tech^map' - state: TX lat: 30.290000915527344 - who: 'Coders & Hackers' - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Baltimore - timezone: US/Eastern - created: 1231978646000 link: 'http://www.meetup.com/bmorejs/' - rating: 4.63 - description: >- -

Check out Charm City JS for - meetups http://www.meetup.com/charmcityjs/

- + name: BmoreJS – The Baltimore JavaScript Users Group + description: |- +

Check out Charm City JS for meetups http://www.meetup.com/charmcityjs/


- -

Meet other local JavaScripters to share knowledge, help each other - out, review new technology and dream up new ways to use and make - JavaScript the most loved language around. We encourage knowledge - sharing and a comfortable environment to be yourself.

- -

Our meetings cover general Web Development topics focused on the - programming side of things. We often cover popular JavaScript libraries - and frameworks.

+

Meet other local JavaScripters to share knowledge, help each other out, review new technology and dream up new ways to use and make JavaScript the most loved language around. We encourage knowledge sharing and a comfortable environment to be yourself.

+

Our meetings cover general Web Development topics focused on the programming side of things. We often cover popular JavaScript libraries and frameworks.

lon: -76.62000274658203 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/2/8/d/4/highres_96070452.jpeg' - photo_id: 96070452 photo_link: 'http://photos3.meetupstatic.com/photos/event/2/8/d/4/600_96070452.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/2/8/d/4/thumb_96070452.jpeg' - join_mode: open - organizer: - member_id: 8483948 - name: Shea Frederick (VinylFox) - photo: - photo_id: 185237692 - photo_link: 'http://photos4.meetupstatic.com/photos/member/4/5/1/c/member_185237692.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/4/5/1/c/thumb_185237692.jpeg' - members: 918 - name: BmoreJS – The Baltimore JavaScript Users Group - state: MD lat: 39.290000915527344 - who: JavaScripters - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Tampa - timezone: US/Eastern - created: 1244243885000 link: 'http://www.meetup.com/florida-web-developers/' - rating: 4.83 + name: Central Florida Web Developers description: '

The Central Florida Web Developers user group’s mission is to provide environment for accelerated growth and development of our members by organizing monthly group meetings rich on discussions and exercises that advance technical skills, use best practices, teach methodologies and attract opportunities.


' lon: -82.51000213623047 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/5/5/3/2/highres_446301810.jpeg' - photo_id: 446301810 photo_link: 'http://photos2.meetupstatic.com/photos/event/5/5/3/2/600_446301810.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/5/5/3/2/thumb_446301810.jpeg' - join_mode: open - organizer: - member_id: 8892398 - name: Aaron Greenlee - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/4/2/e/2/highres_230597122.jpeg' - photo_id: 230597122 - photo_link: 'http://photos2.meetupstatic.com/photos/member/4/2/e/2/member_230597122.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/4/2/e/2/thumb_230597122.jpeg' - members: 690 - name: Central Florida Web Developers - state: FL lat: 27.940000534057617 - who: Members - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Francisco - timezone: US/Pacific - created: 1245304637000 link: 'http://www.meetup.com/sfnodejs/' - rating: 4.8 + name: SF Node.js description: "

Expand your Node.js knowledge!

\n

If you are in San Francisco and interested in diving deeper into Node.js this is the group for you. Please provide your GitHub username when signing up. Forks or public repos containing Node.js code are required for membership.

\n

\_

\n

NO RECRUITERS ALLOWED!

" lon: -122.4000015258789 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/b/7/c/c/highres_107207052.jpeg' - photo_id: 107207052 photo_link: 'http://photos1.meetupstatic.com/photos/event/b/7/c/c/600_107207052.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/b/7/c/c/thumb_107207052.jpeg' - join_mode: approval - organizer: - member_id: 13141766 - name: Toby Morning - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/c/a/f/b/highres_11391963.jpeg' - photo_id: 11391963 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/a/f/b/member_11391963.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/c/a/f/b/thumb_11391963.jpeg' - members: 1115 - name: SF Node.js - state: CA lat: 37.77000045776367 - who: Hackers - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Omaha - timezone: US/Central - created: 1252816159000 link: 'http://www.meetup.com/nebraskajs/' - rating: 4.73 - description: >- -

Formerly known as Omaha jQuery - Meetup (2009) and Omaha Front-End Web & jQuery - (2011).

- -

NebraskaJS - was founded in fall of - 2009 by local front-end heros Jonathan Sharp, Andrew Wirick, and Eli - Perelman. It was originally focused solely on jQuery, but later - expanded to include other front end technologies.

- -

In 2012, group leadership duties were - passed on to Zach Leatherman and the group decided to move away from - a jQuery focus toward a more generic JavaScript focus. Nick Nisi - joined mid-2013 primarily to get more JavaScript developers to use Vim. - In 2014, Blaine Kasten joined to bring NebraskaJS to Lincoln.

- + name: NebraskaJS + description: |- +

Formerly known as Omaha jQuery Meetup (2009) and Omaha Front-End Web & jQuery (2011).

+

NebraskaJS was founded in fall of 2009 by local front-end heros Jonathan Sharp, Andrew Wirick, and Eli Perelman. It was originally focused solely on jQuery, but later expanded to include other front end technologies.

+

In 2012, group leadership duties were passed on to Zach Leatherman and the group decided to move away from a jQuery focus toward a more generic JavaScript focus. Nick Nisi joined mid-2013 primarily to get more JavaScript developers to use Vim. In 2014, Blaine Kasten joined to bring NebraskaJS to Lincoln.

Our goals:

-
    - -
  • Encourage open source/community - contributions by our members. A portion of every meeting is dedicated - to small lightning talks on GitHub issues that members in the community - have contributed to/closed out (no issue too small!).
    - - +
  • Encourage open source/community contributions by our members. A portion of every meeting is dedicated to small lightning talks on GitHub issues that members in the community have contributed to/closed out (no issue too small!).
  • - -
  • Sharing workflow and - useful tools. Small coding exercises dedicated to showing how others - work can expose useful tips and tricks to separate the wheat from the - chaff in development tooling.
    - - +
  • Sharing workflow and useful tools. Small coding exercises dedicated to showing how others work can expose useful tips and tricks to separate the wheat from the chaff in development tooling.
  • - -
  • All presentations - are recorded and published online, in the hopes that it will improve - the quality of presentations and offer nice exposure and incentive to - present.
    - - +
  • All presentations are recorded and published online, in the hopes that it will improve the quality of presentations and offer nice exposure and incentive to present.
  • -
- -

We seek to bring - together the developer and designer community in and around Omaha and - cover interesting topics relevant to front end web development. Come - join us for an informative event and a great community!

+

We seek to bring together the developer and designer community in and around Omaha and cover interesting topics relevant to front end web development. Come join us for an informative event and a great community!

lon: -95.93000030517578 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/4/d/2/8/highres_150379752.jpeg' - photo_id: 150379752 photo_link: 'http://photos3.meetupstatic.com/photos/event/4/d/2/8/600_150379752.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/4/d/2/8/thumb_150379752.jpeg' - join_mode: open - organizer: - member_id: 3445980 - name: Zach Leatherman - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/9/b/7/6/highres_242859798.jpeg' - photo_id: 242859798 - photo_link: 'http://photos4.meetupstatic.com/photos/member/9/b/7/6/member_242859798.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/9/b/7/6/thumb_242859798.jpeg' - members: 996 - name: NebraskaJS - state: NE lat: 41.2599983215332 - who: JavaScripters - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Durham - timezone: US/Eastern - created: 1256446688000 link: 'http://www.meetup.com/Triangle-JavaScript/' - rating: 4.63 + name: Triangle JavaScript description: 'Welcome to Triangle JavaScript, a group for people in the Raleigh-Durham area interested in discussing all things JavaScript.' lon: -78.91999816894531 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/b/d/c/9/highres_437808585.jpeg' - photo_id: 437808585 photo_link: 'http://photos4.meetupstatic.com/photos/event/b/d/c/9/600_437808585.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/b/d/c/9/thumb_437808585.jpeg' - join_mode: open - organizer: - member_id: 12593209 - name: Kyle Buchanan - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/c/9/6/a/highres_38811562.jpeg' - photo_id: 38811562 - photo_link: 'http://photos3.meetupstatic.com/photos/member/c/9/6/a/member_38811562.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/c/9/6/a/thumb_38811562.jpeg' - members: 1818 - name: Triangle JavaScript - state: NC lat: 35.91999816894531 - who: Members - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Las Vegas - timezone: US/Pacific - created: 1268351321000 link: 'http://www.meetup.com/VegasJS/' - rating: 4.59 + name: VegasJS description: '

To discuss, learn, teach, and play JavaScript!

' lon: -115.12000274658203 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/8/7/5/2/highres_269074642.jpeg' - photo_id: 269074642 photo_link: 'http://photos2.meetupstatic.com/photos/event/8/7/5/2/600_269074642.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/8/7/5/2/thumb_269074642.jpeg' - join_mode: open - organizer: - member_id: 31466672 - name: Jimmy Jacobson - photo: - photo_id: 71873552 - photo_link: 'http://photos4.meetupstatic.com/photos/member/d/1/3/0/member_71873552.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/d/1/3/0/thumb_71873552.jpeg' - members: 632 - name: VegasJS - state: NV lat: 36.16999816894531 - who: Javascripters - - utc_offset: -14400000 - country: CA - visibility: public + - country: CA city: Toronto - timezone: Canada/Eastern - created: 1278469076000 link: 'http://www.meetup.com/torontojs/' - rating: 4.69 + name: Toronto JavaScript description: '

Toronto JavaScript is a meet up for those interested in all things JavaScript. Client side, server side, we love it all!

' lon: -79.4000015258789 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/3/8/c/4/highres_430214532.jpeg' - photo_id: 430214532 photo_link: 'http://photos4.meetupstatic.com/photos/event/3/8/c/4/600_430214532.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/3/8/c/4/thumb_430214532.jpeg' - join_mode: open - organizer: - member_id: 12957153 - name: Tasveer Singh - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/7/1/f/e/highres_41009182.jpeg' - photo_id: 41009182 - photo_link: 'http://photos2.meetupstatic.com/photos/member/7/1/f/e/member_41009182.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/7/1/f/e/thumb_41009182.jpeg' - members: 2751 - name: Toronto JavaScript - state: 'ON' lat: 43.65999984741211 - who: Members - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: New York - timezone: US/Eastern - created: 1286171343000 link: 'http://www.meetup.com/nodejs/' - rating: 4.51 + name: nodejs description: "

Thanks to the brilliant work of Ryan Dahl, we have node.js, a beautiful and elegant server-side framework built on top of Google's V8 Javascript engine. This opens up a whole new world of possibility for developing web apps, APIs, and lightweight HTTP servers.

\n

\_

\n

We meet on Wednesday at 6:30pm. \_Each week we'll have a group discussion on a particular aspect of NodeJS, or a whackiest. \_Occasionally, we'll may have a more formal presentation.

\n

\_

\n

If you'd like to present, please send a note with your topic and when you'd like to give it to the leadership staff.

\n

\_

\n

If you have a suggestion for a topic, feel free to submit it.

\n

\_

\n

We are always looking for spaces to use for the meetups. \_If you'd like to offer a space for us to use, please reach out to the leadership team.

" lon: -73.98999786376953 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/5/d/d/highres_39301501.jpeg' - photo_id: 39301501 photo_link: 'http://photos4.meetupstatic.com/photos/event/5/d/d/600_39301501.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/5/d/d/thumb_39301501.jpeg' - join_mode: open - organizer: - member_id: 4320647 - name: Peter Bell - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/3/9/2/d/highres_5474637.jpeg' - photo_id: 5474637 - photo_link: 'http://photos2.meetupstatic.com/photos/member/3/9/2/d/member_5474637.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/3/9/2/d/thumb_5474637.jpeg' - members: 3540 - name: nodejs - state: NY lat: 40.7599983215332 - who: Noders - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Dallas - timezone: US/Central - created: 1288839823000 link: 'http://www.meetup.com/DallasNode/' - rating: 4.72 - description: >- -

Ever wish there was a world where people talked about nothing but - node.js all day everyday even while they slept?

- -

Well we did too! So we started Dallas.node to further this Utopian - vision to it's breaking limit! Join us if you're a fellow async - junkie.

+ name: Dallas.node + description: |- +

Ever wish there was a world where people talked about nothing but node.js all day everyday even while they slept?

+

Well we did too! So we started Dallas.node to further this Utopian vision to it's breaking limit! Join us if you're a fellow async junkie.

lon: -96.79000091552734 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/d/f/f/4/highres_19377332.jpeg' - photo_id: 19377332 photo_link: 'http://photos3.meetupstatic.com/photos/event/d/f/f/4/600_19377332.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/d/f/f/4/thumb_19377332.jpeg' - join_mode: open - organizer: - member_id: 10422423 - name: Adam Crabtree - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/b/1/9/1/highres_7665457.jpeg' - photo_id: 7665457 - photo_link: 'http://photos3.meetupstatic.com/photos/member/b/1/9/1/member_7665457.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/b/1/9/1/thumb_7665457.jpeg' - members: 686 - name: Dallas.node - state: TX lat: 32.93000030517578 - who: Noders - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Francisco - timezone: US/Pacific - created: 1289027839000 link: 'http://www.meetup.com/Node-js-Serverside-Javascripters-Club-SF/' - rating: 4.41 - description: >- -

This meetup is focused on spreading knowledge and best practices for - the use of Node.js. Node is exploding with a massive and dedicated - developer community, and is moving into enterprise stacks. There is an - incredible talent pool out there who can bring their experience back to - the community, and our goal is to get them into the group to speak. - Topics of discussion include OSS projects, architectures, testing, - devops, code management, deployment strategies, the future - of Node and emerging trends.

- -

And of course we want to continue making the Node.js community - a great atmosphere to be in. If you use Node.js or even have - a beginner's interest, come join us and hear about the latest and - greatest from Node.

+ name: Node.js Club SF + description: |- +

This meetup is focused on spreading knowledge and best practices for the use of Node.js. Node is exploding with a massive and dedicated developer community, and is moving into enterprise stacks. There is an incredible talent pool out there who can bring their experience back to the community, and our goal is to get them into the group to speak. Topics of discussion include OSS projects, architectures, testing, devops, code management, deployment strategies, the future of Node and emerging trends.

+

And of course we want to continue making the Node.js community a great atmosphere to be in. If you use Node.js or even have a beginner's interest, come join us and hear about the latest and greatest from Node.

lon: -122.41999816894531 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/d/1/e/3/highres_434453731.jpeg' - photo_id: 434453731 photo_link: 'http://photos3.meetupstatic.com/photos/event/d/1/e/3/600_434453731.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/d/1/e/3/thumb_434453731.jpeg' - join_mode: open - organizer: - member_id: 14503364 - name: Matt Pardee - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/4/d/0/d/highres_243799725.jpeg' - photo_id: 243799725 - photo_link: 'http://photos2.meetupstatic.com/photos/member/4/d/0/d/member_243799725.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/4/d/0/d/thumb_243799725.jpeg' - members: 3569 - name: Node.js Club SF - state: CA lat: 37.779998779296875 - who: Members - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Oakland - timezone: US/Pacific - created: 1295920185000 link: 'http://www.meetup.com/eastbayjavascript/' - rating: 4.66 - description: >- -

A group for people in the SF East Bay who love/use/want to learn - JavaScript, including libraries like jQuery, Angular, Ember, React and - many more. We'll also cover plenty of Node.js related topics!

- -

There is something for everyone to learn, from novices to - experts alike.

+ name: JavaScript in the SF East Bay + description: |- +

A group for people in the SF East Bay who love/use/want to learn JavaScript, including libraries like jQuery, Angular, Ember, React and many more. We'll also cover plenty of Node.js related topics!

+

There is something for everyone to learn, from novices to experts alike.

lon: -122.29000091552734 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/6/e/c/a/highres_433768362.jpeg' - photo_id: 433768362 photo_link: 'http://photos3.meetupstatic.com/photos/event/6/e/c/a/600_433768362.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/6/e/c/a/thumb_433768362.jpeg' - join_mode: open - organizer: - member_id: 8631251 - name: Antonio Lettieri - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/3/a/3/highres_9230083.jpeg' - photo_id: 9230083 - photo_link: 'http://photos3.meetupstatic.com/photos/member/c/3/a/3/member_9230083.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/3/a/3/thumb_9230083.jpeg' - members: 837 - name: JavaScript in the SF East Bay - state: CA lat: 37.810001373291016 - who: Developers - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Chicago - timezone: US/Central - created: 1297208410000 link: 'http://www.meetup.com/Chicago-Nodejs/' - rating: 4.56 + name: Chicago Node.js description: '

A group to discuss Node.js, its frameworks, and best practices. Email mike.hostetler@gmail.com with any questions.

' lon: -87.63999938964844 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/9/9/c/1/highres_47379361.jpeg' - photo_id: 47379361 photo_link: 'http://photos4.meetupstatic.com/photos/event/9/9/c/1/600_47379361.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/9/9/c/1/thumb_47379361.jpeg' - join_mode: open - organizer: - member_id: 8420361 - name: Mike Hostetler - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/3/e/6/f/highres_11355983.jpeg' - photo_id: 11355983 - photo_link: 'http://photos3.meetupstatic.com/photos/member/3/e/6/f/member_11355983.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/3/e/6/f/thumb_11355983.jpeg' - members: 2065 - name: Chicago Node.js - state: IL lat: 41.880001068115234 - who: Members - - utc_offset: -14400000 - country: US - visibility: public - city: Indianapolis - timezone: US/Eastern - created: 1297637516000 - link: 'http://www.meetup.com/indyjs/' - rating: 4.8 - description: "

Indy.js is Indianapolis' JavaScript meetup.

" - lon: -86.16000366210938 - group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/2/b/4/a/highres_21431082.jpeg' - photo_id: 21431082 - photo_link: 'http://photos4.meetupstatic.com/photos/event/2/b/4/a/600_21431082.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/2/b/4/a/thumb_21431082.jpeg' - join_mode: open - organizer: - member_id: 11791408 - name: Tony Dewan - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/f/5/d/highres_243136221.jpeg' - photo_id: 243136221 - photo_link: 'http://photos2.meetupstatic.com/photos/member/3/f/5/d/member_243136221.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/f/5/d/thumb_243136221.jpeg' - members: 757 - name: 'Indy.js : Indy JavaScript Society' - state: IN - lat: 39.790000915527344 - who: Scripters - - utc_offset: -21600000 - country: US - visibility: public + - country: US city: Boulder - timezone: US/Mountain - created: 1299548920000 link: 'http://www.meetup.com/Boulder-JS/' - rating: 4.27 - description: >- -

While there are some great groups in town that discuss a bunch of - cool languages, there wasn't one that focused specifically on the - language that you and I both love, JavaScript.

- + name: Boulder JS + description: |- +

While there are some great groups in town that discuss a bunch of cool languages, there wasn't one that focused specifically on the language that you and I both love, JavaScript.

Until now.

- -

These are fascinating times for JavaScript development, and this - group will attempt to explore topics including, but by no means limited - to:

- -

* the power of raw JavaScript;
* Ajax;
* libraries like - jQuery and Prototype;
* techniques for building your own library; -
* server-side JavaScript with Node.js;
* optimization - techniques;
* test-driven development;
* and so much more!

- -

We're a friendly group and we welcome developers of all skill - levels, beginner to expert. We want to foster an environment where it's - okay to ask questions and it's okay not to know about certain aspects - of the language. We're willing to share what we know, and are open to - learning from others.

+

These are fascinating times for JavaScript development, and this group will attempt to explore topics including, but by no means limited to:

+

* the power of raw JavaScript;
* Ajax;
* libraries like jQuery and Prototype;
* techniques for building your own library;
* server-side JavaScript with Node.js;
* optimization techniques;
* test-driven development;
* and so much more!

+

We're a friendly group and we welcome developers of all skill levels, beginner to expert. We want to foster an environment where it's okay to ask questions and it's okay not to know about certain aspects of the language. We're willing to share what we know, and are open to learning from others.

lon: -105.20999908447266 - join_mode: open - organizer: - member_id: 8489935 - name: Chris McAvoy - photo: - photo_id: 96295962 - photo_link: 'http://photos1.meetupstatic.com/photos/member/d/a/9/a/member_96295962.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/d/a/9/a/thumb_96295962.jpeg' - members: 1034 - name: Boulder JS - state: CO lat: 40.04999923706055 - who: Members - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Austin - timezone: US/Central - created: 1301417850000 link: 'http://www.meetup.com/noders/' - rating: 4.45 + name: 'Node.JS User Group - Austin, TX' description: '

Node.js is an event-driven I/O framework for the V8 JavaScript engine. It makes building scalable and elegant network applications easy. Praised for its brilliant design and simplicity it is quickly being adopted and extended by many developers, companies, and entusiasts around the world. Visit http://www.nodejs.org/ and http://npmjs.org/ to get started today!

' lon: -97.73999786376953 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/5/5/9/6/highres_22341910.jpeg' - photo_id: 22341910 photo_link: 'http://photos3.meetupstatic.com/photos/event/5/5/9/6/600_22341910.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/5/5/9/6/thumb_22341910.jpeg' - join_mode: open - organizer: - member_id: 185415427 - name: Irl Nathan - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/5/2/3/2/highres_244701042.jpeg' - photo_id: 244701042 - photo_link: 'http://photos4.meetupstatic.com/photos/member/5/2/3/2/member_244701042.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/5/2/3/2/thumb_244701042.jpeg' - members: 1599 - name: 'Node.JS User Group - Austin, TX' - state: TX lat: 30.290000915527344 - who: noders - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Boston - timezone: US/Eastern - created: 1305236157000 link: 'http://www.meetup.com/Node-JS-Boston/' - rating: 4.52 + name: Node.JS Boston description: "

A group dedicated to Node.JS, the server side framework for Google's V8 JavaScript engine.

" lon: -71.04000091552734 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/9/c/0/5/highres_448119941.jpeg' - photo_id: 448119941 photo_link: 'http://photos4.meetupstatic.com/photos/event/9/c/0/5/600_448119941.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/9/c/0/5/thumb_448119941.jpeg' - join_mode: open - organizer: - member_id: 26364022 - name: Freedom Dumlao - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/d/d/c/4/highres_119396772.jpeg' - photo_id: 119396772 - photo_link: 'http://photos4.meetupstatic.com/photos/member/d/d/c/4/member_119396772.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/d/d/c/4/thumb_119396772.jpeg' - members: 1417 - name: Node.JS Boston - state: MA lat: 42.349998474121094 - who: Members - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Los Angeles - timezone: US/Pacific - created: 1306972608000 link: 'http://www.meetup.com/SoCal-Node-JS/' - rating: 4.65 + name: SoCal Node.js description: "

Los Angeles, Orange Country, San Diego meetup focused on Server Side Javascript, and in particular, Node.js. Goals for the group are to spread ideas about Server Side Javascript, Node.js in particular, socialize projects, and discuss the technology and best practices. We'd like to keep the group informal but focused on technology and interesting projects. I think the ideal group would be made up of developers on OSS projects, site/app builders, systems integrators, architects, designers, freelancers/consultants, and even a few engineering managers who manage projects using node.js.

" lon: -118.30999755859375 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/4/8/c/7/highres_45618631.jpeg' - photo_id: 45618631 photo_link: 'http://photos4.meetupstatic.com/photos/event/4/8/c/7/600_45618631.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/4/8/c/7/thumb_45618631.jpeg' - join_mode: open - organizer: - member_id: 4483764 - name: David Aktary - photo: - photo_id: 124160632 - photo_link: 'http://photos3.meetupstatic.com/photos/member/5/0/9/8/member_124160632.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/5/0/9/8/thumb_124160632.jpeg' - members: 1892 - name: SoCal Node.js - state: CA lat: 34.060001373291016 - who: Noders - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Fort Lauderdale - timezone: US/Eastern - created: 1307039219000 link: 'http://www.meetup.com/NodeJS-Enthusiasts-SE-Florida/' - rating: 4.93 + name: NodeJS Enthusiasts SE Florida description: "

NodeJS is emerging as a powerful platform for building Internet applications. As an emergent technology, NodeJS does not yet have the ensemble of tools and infrastructural parts that mature language systems have. The NodeJS community is relatively small, and we all need to learn from each other's efforts to work with it. The NodeJS Enthusiasts SE Florida group exists to foster interaction among NodeJS developers. The goals for this group are to build our local NodeJS developer community, encourage adoption of NodeJS by businesses in the area, and help people better understand and use NodeJS in applications, both for personal and business uses.

" lon: -80.12999725341797 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/e/b/b/highres_41883771.jpeg' - photo_id: 41883771 photo_link: 'http://photos3.meetupstatic.com/photos/event/e/b/b/600_41883771.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/e/b/b/thumb_41883771.jpeg' - join_mode: open - organizer: - member_id: 9652913 - name: Stuart Malin - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/9/6/d/3/highres_15098611.jpeg' - photo_id: 15098611 - photo_link: 'http://photos3.meetupstatic.com/photos/member/9/6/d/3/member_15098611.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/9/6/d/3/thumb_15098611.jpeg' - members: 445 - name: NodeJS Enthusiasts SE Florida - state: FL lat: 26.1200008392334 - who: Noders - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Saint Louis - timezone: US/Central - created: 1307122004000 link: 'http://www.meetup.com/STL-JS-meetup/' - rating: 4.77 + name: STLJS description: "

Hang out and discuss JavaScript tips, tricks, hacks, and frameworks with fellow scripters in the Saint Louis area. Show off cool stuff you've done and discuss developments in the greater JS community:\_stljs.org | node.js meatspace | youtube |\_github | twitter | facebook | linkedin | google+ | google groups | irc://irc.freenode.net/stljs

\n" lon: -90.20999908447266 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/5/f/8/e/highres_105684462.jpeg' - photo_id: 105684462 photo_link: 'http://photos2.meetupstatic.com/photos/event/5/f/8/e/600_105684462.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/5/f/8/e/thumb_105684462.jpeg' - join_mode: open - organizer: - member_id: 16694281 - name: Michael Bradley - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/b/d/7/5/highres_14928501.jpeg' - photo_id: 14928501 - photo_link: 'http://photos2.meetupstatic.com/photos/member/b/d/7/5/member_14928501.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/b/d/7/5/thumb_14928501.jpeg' - members: 717 - name: STLJS - state: MO lat: 38.630001068115234 - who: JS Hackers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Mountain View - timezone: US/Pacific - created: 1308551556000 link: 'http://www.meetup.com/BayNode/' - rating: 4.62 + name: BayNode - The Bay Area Node.js Meetup description: "

BayNode was started because we were sick of waiting for someone else to start start a node.js group! Come out if you want to sharpen your Javascript skills and find out why node.js rocks! The great thing about node.js is it's so new none of us are experts... yet... So all are welcome!

" lon: -122.08000183105469 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/1/5/2/d/highres_33605421.jpeg' - photo_id: 33605421 photo_link: 'http://photos4.meetupstatic.com/photos/event/1/5/2/d/600_33605421.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/1/5/2/d/thumb_33605421.jpeg' - join_mode: open - organizer: - member_id: 10422423 - name: Adam Crabtree - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/e/1/d/d/highres_244257821.jpeg' - photo_id: 244257821 - photo_link: 'http://photos3.meetupstatic.com/photos/member/e/1/d/d/member_244257821.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/e/1/d/d/thumb_244257821.jpeg' - members: 2177 - name: BayNode - The Bay Area Node.js Meetup - state: CA lat: 37.380001068115234 - who: Callbacks - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Cleveland - timezone: US/Eastern - created: 1309639370000 link: 'http://www.meetup.com/NodejsCleveland/' - rating: 4.52 + name: Cleveland Node.js User Group description: '

Node.js is hot and heavy. Come meet with other Node.js enthusiasts and see how server-side JavaScript is not only new but a very powerful way to develop. We will also aim to cover topics regarding jQuery, JavaScript performance and other popular front-end development. We hope to share and develop with all who are welcome to join us here in Northeast Ohio.

' lon: -81.68000030517578 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/1/c/b/7/highres_45547351.jpeg' - photo_id: 45547351 photo_link: 'http://photos3.meetupstatic.com/photos/event/1/c/b/7/600_45547351.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/1/c/b/7/thumb_45547351.jpeg' - join_mode: open - organizer: - member_id: 13253382 - name: Michael Uzquiano - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/5/0/0/6/highres_11120486.jpeg' - photo_id: 11120486 - photo_link: 'http://photos2.meetupstatic.com/photos/member/5/0/0/6/member_11120486.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/5/0/0/6/thumb_11120486.jpeg' - members: 241 - name: Cleveland Node.js User Group - state: OH lat: 41.5099983215332 - who: NodeJs Ninjas - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Diego - timezone: US/Pacific - created: 1310765404000 link: 'http://www.meetup.com/sandiegojs/' - rating: 4.81 - description: >- -

The premier San Diego user group based around the web platform. Join - us to hear about the state of the art in web development around - JavaScript, hack on open source projects, or learn from some of the - best in the community.

- -

Visit our site at sandiegojs.org for information on - upcoming meetups or to write an article.  Join our mailing - list for javascript related discussions. Follow @sandiegojs on twitter, and - post in the meetup message - board!

+ name: sandiego.js (Javascript User Group) + description: |- +

The premier San Diego user group based around the web platform. Join us to hear about the state of the art in web development around JavaScript, hack on open source projects, or learn from some of the best in the community.

+

Visit our site at sandiegojs.org for information on upcoming meetups or to write an article.  Join our mailing list for javascript related discussions. Follow @sandiegojs on twitter, and post in the meetup message board!

lon: -117.19999694824219 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/9/c/6/a/highres_81100042.jpeg' - photo_id: 81100042 photo_link: 'http://photos3.meetupstatic.com/photos/event/9/c/6/a/600_81100042.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/9/c/6/a/thumb_81100042.jpeg' - join_mode: open - organizer: - member_id: 12742622 - name: Heather Alexandra Brysiewicz - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/c/3/8/f/highres_244490063.jpeg' - photo_id: 244490063 - photo_link: 'http://photos4.meetupstatic.com/photos/member/c/3/8/f/member_244490063.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/c/3/8/f/thumb_244490063.jpeg' - members: 2259 - name: sandiego.js (Javascript User Group) - state: CA lat: 32.88999938964844 - who: JavaScripters - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Francisco - timezone: US/Pacific - created: 1311280845000 link: 'http://www.meetup.com/talesofjavascript/' - rating: 4.64 + name: T.O.J. - Tales Of JavaScript description: "

Expanding content to handle a wealth of overflow from the HTML5DevConf. Meetup content now covers general JavaScript, HTML5, CSS3, WebGL, node.js, and Apps and Games using those technologies. In addition we look forward to a great year for WebGL, HTML5, and JavaScript Games from the traditional Games.js content which we will continue to bring.

\n

Meetings will be held in both SF and Mountain View.

\n

\_

\n

\_

" lon: -122.4000015258789 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/9/4/3/6/highres_323917942.jpeg' - photo_id: 323917942 photo_link: 'http://photos2.meetupstatic.com/photos/event/9/4/3/6/600_323917942.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/9/4/3/6/thumb_323917942.jpeg' - join_mode: open - organizer: - member_id: 9519666 - name: Ann Burkett - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/6/b/4/highres_7561716.jpeg' - photo_id: 7561716 - photo_link: 'http://photos4.meetupstatic.com/photos/member/6/b/4/member_7561716.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/6/b/4/thumb_7561716.jpeg' - members: 2130 - name: T.O.J. - Tales Of JavaScript - state: CA lat: 37.790000915527344 - who: Members - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Francisco - timezone: US/Pacific - created: 1311633398000 link: 'http://www.meetup.com/DeveloperAdvocates/' - rating: 4.81 - description: >- -

This group is focused on helping - Developer Advocates and Evangelists to share best practices, - value-based insights on building communities around API's and cloud - based products plus any humorous examples of nerd - shepherding.

- -

This group isn't for: Marketing or - recruiters to spam with annoying messages.

- -

This group is for: Those who - work/live/play in the developer relations space and live in the Bay - Area (we cannot accept members who live elsewhere more than 75% of the - time).

+ name: SF Developer Advocates + description: |- +

This group is focused on helping Developer Advocates and Evangelists to share best practices, value-based insights on building communities around API's and cloud based products plus any humorous examples of nerd shepherding.

+

This group isn't for: Marketing or recruiters to spam with annoying messages.

+

This group is for: Those who work/live/play in the developer relations space and live in the Bay Area (we cannot accept members who live elsewhere more than 75% of the time).

lon: -122.4000015258789 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/2/4/9/1/highres_43689361.jpeg' - photo_id: 43689361 photo_link: 'http://photos2.meetupstatic.com/photos/event/2/4/9/1/600_43689361.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/2/4/9/1/thumb_43689361.jpeg' - join_mode: open - organizer: - member_id: 2133277 - name: Adria Richards - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/6/d/f/9/highres_253108153.jpeg' - photo_id: 253108153 - photo_link: 'http://photos1.meetupstatic.com/photos/member/6/d/f/9/member_253108153.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/6/d/f/9/thumb_253108153.jpeg' - members: 326 - name: SF Developer Advocates - state: CA lat: 37.77000045776367 - who: Advocates - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Downey - timezone: US/Pacific - created: 1312401105000 link: 'http://www.meetup.com/oclajs/' - rating: 4.5 + name: OC/LA JavaScript -- Downey description: "

Let's learn and share what we know about JavaScript, its frameworks and libraries.

" lon: -118.12999725341797 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/3/2/9/0/highres_441372944.jpeg' - photo_id: 441372944 photo_link: 'http://photos2.meetupstatic.com/photos/event/3/2/9/0/600_441372944.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/3/2/9/0/thumb_441372944.jpeg' - join_mode: open - organizer: - member_id: 8211168 - name: Aureliano - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/5/f/9/highres_20690681.jpeg' - photo_id: 20690681 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/5/f/9/member_20690681.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/5/f/9/thumb_20690681.jpeg' - members: 362 - name: OC/LA JavaScript -- Downey - state: CA lat: 33.939998626708984 - who: JSNodes - - utc_offset: -21600000 - country: US - visibility: public + - country: US city: Herriman - timezone: US/Mountain - created: 1313536057000 link: 'http://www.meetup.com/Big-Data-Salt-Lake/' - rating: 4.8 + name: Big Data Salt Lake description: 'Present and discuss issues, use cases, related to Big Data. Cassandra, Hadoop, etc.' lon: -111.97000122070312 - join_mode: open - organizer: - member_id: 95402442 - name: DataStax - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/d/a/a/4/highres_120895972.jpeg' - photo_id: 120895972 - photo_link: 'http://photos1.meetupstatic.com/photos/member/d/a/a/4/member_120895972.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/d/a/a/4/thumb_120895972.jpeg' - members: 243 - name: Big Data Salt Lake - state: UT lat: 40.56999969482422 - who: Members - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Madison - timezone: US/Central - created: 1314586509000 link: 'http://www.meetup.com/MadisonJS/' - rating: 4.61 - description: >- -

Madison professionals, enthusiasts, and hobbyists who share - a passion for great JavaScript, and making JavaScript work for them and - their users through terrific, engaging, and intuitive apps.

- + name: MadJS + description: |- +

Madison professionals, enthusiasts, and hobbyists who share a passion for great JavaScript, and making JavaScript work for them and their users through terrific, engaging, and intuitive apps.

 

- -

Google Group: http://groups.google.com/group/madjs

+

Google Group: http://groups.google.com/group/madjs

lon: -89.37999725341797 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/1/4/8/e/highres_84245262.jpeg' - photo_id: 84245262 photo_link: 'http://photos1.meetupstatic.com/photos/event/1/4/8/e/600_84245262.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/1/4/8/e/thumb_84245262.jpeg' - join_mode: open - organizer: - member_id: 30567872 - name: Josh Thomas - photo: - photo_id: 30608752 - photo_link: 'http://photos2.meetupstatic.com/photos/member/2/2/3/0/member_30608752.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/2/2/3/0/thumb_30608752.jpeg' - members: 925 - name: MadJS - state: WI lat: 43.08000183105469 - who: MadJSers - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Austin - timezone: US/Central - created: 1315546454000 link: 'http://www.meetup.com/javascript-austin/' - rating: 4.74 + name: The JavaScript Austin Meetup Group description: '

This group is for anyone who wants to learn about JavaScript and related frameworks and tools. Hopefully we can discuss development with the latest and greatest JavaScript stuff, so bring your computer and get ready for some hands-on Meetups!

' lon: -97.73999786376953 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/7/e/b/a/highres_63272442.jpeg' - photo_id: 63272442 photo_link: 'http://photos3.meetupstatic.com/photos/event/7/e/b/a/600_63272442.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/7/e/b/a/thumb_63272442.jpeg' - join_mode: open - organizer: - member_id: 8397761 - name: Johnathan Hebert - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/c/4/c/d/highres_14810381.jpeg' - photo_id: 14810381 - photo_link: 'http://photos4.meetupstatic.com/photos/member/c/4/c/d/member_14810381.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/c/4/c/d/thumb_14810381.jpeg' - members: 1896 - name: The JavaScript Austin Meetup Group - state: TX lat: 30.5 - who: JavaScripters - - utc_offset: -14400000 - country: CA - visibility: public + - country: CA city: Toronto - timezone: Canada/Eastern - created: 1316631402000 link: 'http://www.meetup.com/toronto-node-js/' - rating: 4.76 + name: Toronto Node.js description: "

If you're interested in developing apps in Node.js, keeping up to date on the latest Node frameworks and packages, then join us for our monthly gathering in Toronto. Each meetup will feature at least one presentation, and the opportunity to meet other Toronto Node enthusiasts.

" lon: -79.41000366210938 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/b/5/b/0/highres_387826512.jpeg' - photo_id: 387826512 photo_link: 'http://photos3.meetupstatic.com/photos/event/b/5/b/0/600_387826512.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/b/5/b/0/thumb_387826512.jpeg' - join_mode: open - organizer: - member_id: 2328656 - name: Neal Pollock - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/a/f/c/highres_24782812.jpeg' - photo_id: 24782812 - photo_link: 'http://photos1.meetupstatic.com/photos/member/a/f/c/member_24782812.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/a/f/c/thumb_24782812.jpeg' - members: 998 - name: Toronto Node.js - state: 'ON' lat: 43.66999816894531 - who: Members - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Huntington - timezone: US/Eastern - created: 1318350198000 link: 'http://www.meetup.com/Code-Strong-Island/' - rating: 4.58 - description: >- -

Yes there are developers on Long Island. We're a group of Long - Island developers who share an interest in code craftsmanship and new - technology.

- -

Professionally we work in Node.js, Ruby, Clojure, Hadoop (EMR), - Mongodb, and a long list of related technologies. We organize, and - contribute to, open source projects on github. We work hard and love to - have fun in the process.

+ name: Code Strong Island + description: |- +

Yes there are developers on Long Island. We're a group of Long Island developers who share an interest in code craftsmanship and new technology.

+

Professionally we work in Node.js, Ruby, Clojure, Hadoop (EMR), Mongodb, and a long list of related technologies. We organize, and contribute to, open source projects on github. We work hard and love to have fun in the process.

lon: -73.41000366210938 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/2/8/a/c/highres_63490412.jpeg' - photo_id: 63490412 photo_link: 'http://photos1.meetupstatic.com/photos/event/2/8/a/c/600_63490412.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/2/8/a/c/thumb_63490412.jpeg' - join_mode: open - organizer: - member_id: 13069147 - name: Micah Silverman - photo: - photo_id: 26871412 - photo_link: 'http://photos4.meetupstatic.com/photos/member/c/8/d/4/member_26871412.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/c/8/d/4/thumb_26871412.jpeg' - members: 173 - name: Code Strong Island - state: NY lat: 40.869998931884766 - who: Coders - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Minneapolis - timezone: US/Central - created: 1318430584000 link: 'http://www.meetup.com/JavaScriptMN/' - rating: 4.5 + name: JavaScriptMN description: '

This is a group of Minnesotans getting together to discuss programming JavaScript in the browser, on the server, on mobile devices, and everything in between. JavaScript veterans and newbies alike are welcomed and encouraged to attend! Meets the last Wednesday of the month at CoCo in Uptown Minneapolis.

' lon: -93.26000213623047 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/3/7/0/2/highres_172934082.jpeg' - photo_id: 172934082 photo_link: 'http://photos4.meetupstatic.com/photos/event/3/7/0/2/600_172934082.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/3/7/0/2/thumb_172934082.jpeg' - join_mode: open - organizer: - member_id: 26366422 - name: Kevin Whinnery - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/6/d/9/9/highres_244468057.jpeg' - photo_id: 244468057 - photo_link: 'http://photos4.meetupstatic.com/photos/member/6/d/9/9/member_244468057.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/6/d/9/9/thumb_244468057.jpeg' - members: 1919 - name: JavaScriptMN - state: MN lat: 44.97999954223633 - who: JavaScripters - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Francisco - timezone: US/Pacific - created: 1320869098000 link: 'http://www.meetup.com/Stripe/' - rating: 4.62 + name: The Stripe Meetup Group description: '

Meet the Stripe team and members of the Stripe community.

' lon: -122.41999816894531 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/3/9/8/c/highres_421694732.jpeg' - photo_id: 421694732 photo_link: 'http://photos1.meetupstatic.com/photos/event/3/9/8/c/600_421694732.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/3/9/8/c/thumb_421694732.jpeg' - join_mode: open - organizer: - member_id: 183355680 - name: Courtney Correll Chaves - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/6/e/9/e/highres_246868318.jpeg' - photo_id: 246868318 - photo_link: 'http://photos3.meetupstatic.com/photos/member/6/e/9/e/member_246868318.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/6/e/9/e/thumb_246868318.jpeg' - members: 719 - name: The Stripe Meetup Group - state: CA lat: 37.75 - who: People - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Palo Alto - timezone: US/Pacific - created: 1320891844000 link: 'http://www.meetup.com/SVHack/' - rating: 5 + name: Silicon Valley Hackathons description: 'Attend Hackathons in Silicon Valley!' lon: -122.1500015258789 - join_mode: open - organizer: - member_id: 192546120 - name: Adrian Kaehler - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/f/e/d/highres_252664077.jpeg' - photo_id: 252664077 - photo_link: 'http://photos1.meetupstatic.com/photos/member/f/e/d/member_252664077.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/f/e/d/thumb_252664077.jpeg' - members: 809 - name: Silicon Valley Hackathons - state: CA lat: 37.439998626708984 - who: Hackers - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Atlanta - timezone: US/Eastern - created: 1320963438000 link: 'http://www.meetup.com/Atlanta-Nodejs-Developers/' - rating: 4.65 + name: Atlanta Nodejs Developers description: "

The focus of this group will be to learn node js through a practical approach. We will have speakers followed by \"open spaces\" discussions.

\n

Members may be developers of all skill levels, designers looking to leverave javascript skill sets, architects looking for faster ways to build scalable systems, and engineering managers who want to understand how this technology can be utilized in their company.

\n

And of course anyone interested in changing the world.

\n

We will have a heavy focus on mobile computing devices and other smart devices like TVs with less focus on plain desktop pc.

" lon: -84.37999725341797 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/4/e/7/2/highres_91340082.jpeg' - photo_id: 91340082 photo_link: 'http://photos1.meetupstatic.com/photos/event/4/e/7/2/600_91340082.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/4/e/7/2/thumb_91340082.jpeg' - join_mode: open - organizer: - member_id: 8674185 - name: Ryan Connelly - photo: - photo_id: 204204612 - photo_link: 'http://photos3.meetupstatic.com/photos/member/6/0/2/4/member_204204612.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/6/0/2/4/thumb_204204612.jpeg' - members: 1410 - name: Atlanta Nodejs Developers - state: GA lat: 33.77000045776367 - who: Node.lers - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Detroit - timezone: US/Eastern - created: 1321463034000 link: 'http://www.meetup.com/DetNode/' - rating: 4.8 + name: 'DetNode: The Detroit Node.js User Group' description: "

Detroit Node aims to bring together developers interested in this up and coming technology.  We're looking to have open hack sessions and are open to facilitating presentations in the future.  Come be a part of the Technology Revolution in Detroit!

" lon: -83.05000305175781 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/d/8/9/2/highres_73315442.jpeg' - photo_id: 73315442 photo_link: 'http://photos4.meetupstatic.com/photos/event/d/8/9/2/600_73315442.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/d/8/9/2/thumb_73315442.jpeg' - join_mode: open - organizer: - member_id: 30956862 - name: "Kevin O'Hara" - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/b/0/4/c/highres_31125132.jpeg' - photo_id: 31125132 - photo_link: 'http://photos1.meetupstatic.com/photos/member/b/0/4/c/member_31125132.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/b/0/4/c/thumb_31125132.jpeg' - members: 375 - name: 'DetNode: The Detroit Node.js User Group' - state: MI lat: 42.33000183105469 - who: Members - - utc_offset: -21600000 - country: CA - visibility: public + - country: CA city: Calgary - timezone: Canada/Mountain - created: 1322031354000 link: 'http://www.meetup.com/yyc-js/' - rating: 4.69 + name: YYCjs description: "

YYC.js is comprised of a group of Calgary web developers and JavaScript aficionados with a passion for open source software.  Our passion for software written in JavaScript stems from the ability to be extremely creative due to JavaScript's flexible nature.  NodeJS allows us to bring this creativity to the server side while also affording the ability to create large-scale performant systems.  Our group meets regularly to perform demos, provide tutorials, collaborate on open source software, and generally discuss the world of JS.

" lon: -114.08999633789062 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/c/0/7/2/highres_440869266.jpeg' - photo_id: 440869266 photo_link: 'http://photos1.meetupstatic.com/photos/event/c/0/7/2/600_440869266.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/c/0/7/2/thumb_440869266.jpeg' - join_mode: open - organizer: - member_id: 31357642 - name: Eric Kryski - photo: - photo_id: 31674252 - photo_link: 'http://photos3.meetupstatic.com/photos/member/d/3/e/c/member_31674252.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/d/3/e/c/thumb_31674252.jpeg' - members: 716 - name: YYCjs - state: AB lat: 51.04999923706055 - who: Scripters - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Chicago - timezone: US/Central - created: 1322523640000 link: 'http://www.meetup.com/Chicago-Heroku-Meetup-Group/' - rating: 3.94 + name: Chicago Heroku User Group description: '

Heroku User Groups (HUGS) are a casual gatherings of developers who are interested in learning about Heroku technologies. It provides developers an opportunity to explore Heroku (a polygot platform), as well learn how to run and scale any type of app, written in Java, Ruby, Node.js, Clojure, Python or Scala. This is a great place to meet Heroku experts and network with peer.

' lon: -87.66999816894531 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/e/6/8/e/highres_125219022.jpeg' - photo_id: 125219022 photo_link: 'http://photos2.meetupstatic.com/photos/event/e/6/8/e/600_125219022.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/e/6/8/e/thumb_125219022.jpeg' - join_mode: open - organizer: - member_id: 9406816 - name: JC Grubbs - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/b/1/0/0/highres_199485312.jpeg' - photo_id: 199485312 - photo_link: 'http://photos1.meetupstatic.com/photos/member/b/1/0/0/member_199485312.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/b/1/0/0/thumb_199485312.jpeg' - members: 199 - name: Chicago Heroku User Group - state: IL lat: 41.900001525878906 - who: Heroku Community Members - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Washington - timezone: US/Eastern - created: 1323109597000 link: 'http://www.meetup.com/node-dc/' - rating: 4.74 + name: node.dc description: '

NodeDC brings node.js developers together to share ideas and solutions in Washington, DC. For updates, join the group at http://www.meetup.com/node-dc and/or follow us at @NodeDC.

' lon: -77.04000091552734 - join_mode: open - organizer: - member_id: 17692571 - name: Andrew Dunkman - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/a/4/8/highres_224042632.jpeg' - photo_id: 224042632 - photo_link: 'http://photos3.meetupstatic.com/photos/member/a/4/8/member_224042632.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/a/4/8/thumb_224042632.jpeg' - members: 1601 - name: node.dc - state: DC lat: 38.91999816894531 - who: Node programmers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Francisco - timezone: US/Pacific - created: 1324106824000 link: 'http://www.meetup.com/Joyent-Cloud-User-Group/' - rating: 4.21 + name: Joyent description: '

This is a group for developers and other technical types interested in Joyent technology. Any technical professional is welcome to join. We regularly announce meetups and events featuring interesting and innovative technologies like Node.js, OS virtualization, best practices on improving performance and new innovations like the Manta storage service with in situ compute.

' lon: -122.4000015258789 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/b/2/5/4/highres_202365652.jpeg' - photo_id: 202365652 photo_link: 'http://photos2.meetupstatic.com/photos/event/b/2/5/4/600_202365652.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/b/2/5/4/thumb_202365652.jpeg' - join_mode: open - organizer: - member_id: 111733622 - name: RAW - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/3/8/2/4/highres_147134372.jpeg' - photo_id: 147134372 - photo_link: 'http://photos3.meetupstatic.com/photos/member/3/8/2/4/member_147134372.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/3/8/2/4/thumb_147134372.jpeg' - members: 283 - name: Joyent - state: CA lat: 37.79999923706055 - who: Joyeurs - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Seattle - timezone: US/Pacific - created: 1326155040000 link: 'http://www.meetup.com/Seattle-Node-js/' - rating: 4.76 - description: >- -

This is a group dedicated to learning, spreading the knowledge of, - and improving Node.js - the evented, server side javascript platform - harnessing the underlying power of Google's V8 JS engine.

- -

You should join us if you want to learn about, share experiences - with, or work to improve Node.js and its modules.

+ name: Seattle Node.js + description: |- +

This is a group dedicated to learning, spreading the knowledge of, and improving Node.js - the evented, server side javascript platform harnessing the underlying power of Google's V8 JS engine.

+

You should join us if you want to learn about, share experiences with, or work to improve Node.js and its modules.

lon: -122.33999633789062 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/4/8/5/0/highres_331158512.jpeg' - photo_id: 331158512 photo_link: 'http://photos4.meetupstatic.com/photos/event/4/8/5/0/600_331158512.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/4/8/5/0/thumb_331158512.jpeg' - join_mode: open - organizer: - member_id: 12751151 - name: Ryan Roemer - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/7/1/4/a/highres_89609002.jpeg' - photo_id: 89609002 - photo_link: 'http://photos3.meetupstatic.com/photos/member/7/1/4/a/member_89609002.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/7/1/4/a/thumb_89609002.jpeg' - members: 2332 - name: Seattle Node.js - state: WA lat: 47.630001068115234 - who: Node-jsers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Seattle - timezone: US/Pacific - created: 1326405017000 link: 'http://www.meetup.com/gamedevjs/' - rating: 4.6 + name: Seattle JavaScript Game Development description: '

Our focus is on the expanding HTML5 field and javascript game development. This is a place to learn or teach, to share tips on programming, game engines, sdks, tools for development on the web and cross platform solutions. Meetings will be held in the greater Seattle area.

' lon: -122.33999633789062 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/9/5/2/6/highres_88538182.jpeg' - photo_id: 88538182 photo_link: 'http://photos3.meetupstatic.com/photos/event/9/5/2/6/600_88538182.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/9/5/2/6/thumb_88538182.jpeg' - join_mode: open - organizer: - member_id: 84354312 - name: Craig Robinson - photo: - photo_id: 103274002 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/6/b/2/member_103274002.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/3/6/b/2/thumb_103274002.jpeg' - members: 539 - name: Seattle JavaScript Game Development - state: WA lat: 47.61000061035156 - who: Members - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Seattle - timezone: US/Pacific - created: 1326937368000 link: 'http://www.meetup.com/seattle-software-craftsmanship/' - rating: 4.49 + name: Seattle Software Craftsmanship Community description: '

We are a community of software professionals who are passionate about our craft and are committed to learning better ways of doing what we do, sharing with others, and growing as professionals in the process.

' lon: -122.33000183105469 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/4/2/2/e/highres_103156942.jpeg' - photo_id: 103156942 photo_link: 'http://photos2.meetupstatic.com/photos/event/4/2/2/e/600_103156942.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/4/2/2/e/thumb_103156942.jpeg' - join_mode: open - organizer: - member_id: 22909041 - name: Michael Ibarra - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/1/0/9/c/highres_122764252.jpeg' - photo_id: 122764252 - photo_link: 'http://photos4.meetupstatic.com/photos/member/1/0/9/c/member_122764252.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/1/0/9/c/thumb_122764252.jpeg' - members: 1652 - name: Seattle Software Craftsmanship Community - state: WA lat: 47.599998474121094 - who: Members - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Pittsburgh - timezone: US/Eastern - created: 1327630306000 link: 'http://www.meetup.com/Pittsburgh-Node-js/' - rating: 4.77 - description: >- -

Welcome to the Pittsburgh Node.js community - Meetup!

- -

This is a meetup to discuss Node.js, popular npm modules, general - web development and JavaScript running on the server. If you're - interested in Node personally or professionally, we'd love to hear from - you. Stop by to hear about something cool or, even better, stop by to - tell others about something cool! This group is intended for beginners - all the way up to veteran Node and JavaScript developers. 

+ name: node.pgh + description: |- +

Welcome to the Pittsburgh Node.js community Meetup!

+

This is a meetup to discuss Node.js, popular npm modules, general web development and JavaScript running on the server. If you're interested in Node personally or professionally, we'd love to hear from you. Stop by to hear about something cool or, even better, stop by to tell others about something cool! This group is intended for beginners all the way up to veteran Node and JavaScript developers. 

lon: -79.97000122070312 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/4/d/3/c/highres_276679772.jpeg' - photo_id: 276679772 photo_link: 'http://photos3.meetupstatic.com/photos/event/4/d/3/c/600_276679772.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/4/d/3/c/thumb_276679772.jpeg' - join_mode: open - organizer: - member_id: 106729662 - name: Colin Ihrig - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/a/9/1/2/highres_139783282.jpeg' - photo_id: 139783282 - photo_link: 'http://photos4.meetupstatic.com/photos/member/a/9/1/2/member_139783282.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/a/9/1/2/thumb_139783282.jpeg' - members: 354 - name: node.pgh - state: PA lat: 40.400001525878906 - who: Noders - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Arlington - timezone: US/Eastern - created: 1328806999000 link: 'http://www.meetup.com/Nova-Node/' - rating: 4.85 + name: Nova Node description: '

Learn about Node.js and related technologies, meet other Javscript developers, and discover new tools and tricks to make your next project with Node.js a success.

' lon: -77.06999969482422 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/a/7/5/a/highres_92262842.jpeg' - photo_id: 92262842 photo_link: 'http://photos3.meetupstatic.com/photos/event/a/7/5/a/600_92262842.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/a/7/5/a/thumb_92262842.jpeg' - join_mode: open - organizer: - member_id: 16514511 - name: Chris Cummings - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/b/4/b/f/highres_14746271.jpeg' - photo_id: 14746271 - photo_link: 'http://photos4.meetupstatic.com/photos/member/b/4/b/f/member_14746271.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/b/4/b/f/thumb_14746271.jpeg' - members: 755 - name: Nova Node - state: VA lat: 38.88999938964844 - who: Noders - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Bangor - timezone: US/Eastern - created: 1328988634000 link: 'http://www.meetup.com/Hacker-Club/' - rating: 4.83 + name: Hacker Club description: "

Have a hankering for hacking? Been pounding away at a programming project? It's time to come out of the woodwork and pool our hacker minds for our mutual benefit. Bring your ideas, projects, and laptops to this shared hacking experience.

" lon: -68.77999877929688 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/2/6/9/0/highres_220869872.jpeg' - photo_id: 220869872 photo_link: 'http://photos3.meetupstatic.com/photos/event/2/6/9/0/600_220869872.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/2/6/9/0/thumb_220869872.jpeg' - join_mode: open - organizer: - member_id: 112748342 - name: Justin Mecham - photo: - photo_id: 148540392 - photo_link: 'http://photos4.meetupstatic.com/photos/member/9/d/c/8/member_148540392.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/9/d/c/8/thumb_148540392.jpeg' - members: 216 - name: Hacker Club - state: ME lat: 44.810001373291016 - who: Hackers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Los Angeles - timezone: US/Pacific - created: 1329264909000 link: 'http://www.meetup.com/Los-Angeles-Hack-Night/' - rating: 4.84 + name: Los Angeles Hack Night description: "

Prerequisites

\n

Hackers only. Bring your laptop and a project or tutorial to work on. Recruiters, spectators, etc. are not allowed.

\n


\n\n

\n

What to expect

\n

Expect to find people sitting around tables talking about and working on their own projects and tutorials. We don't have presentations or structure so bring your own project, tutorial, etc., introduce yourself, ask people \"what are you working on\", find a seat and get yourself set up, hack away on your project, and have fun.

\n

We frequently see people learning and hacking on software projects using Java, Scala, Ruby, Python, Node, JavaScript, CoffeeScript, among other languages and hardware projects using Arduino.

\n

Our members include beginners working through the Learn Code the Hard Way,\_Code Academy, One Month Rails, etc. as well as experienced developers working on side projects.

\n

\_

\n

Sponsors

\n

\n

\_

\n

\_

\n

\_

\n

\_

\n

\_

\n

Panda Strike sponsors hack night regularly. Panda Strike is\_a consultancy focused on rich client, high-performance Web and mobile experiences and lightweight solutions for big data, primarily using CoffeeScript, Node.js, Elaticsearch, and a stack of innovative open source technologies. Panda Strike is hiring talented engineers.

\n


\n\n

\n

Sponsoring

\n

If you're interested in hosting hack night or sponsoring food or drinks then send me an email.

\n


\n\n

\n

Contact

\n

You can email me through meetup.com
\n\n Follow us on Twitter: @lahacknight

\n


\n\n

" lon: -118.3499984741211 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/2/9/3/8/highres_93910552.jpeg' - photo_id: 93910552 photo_link: 'http://photos2.meetupstatic.com/photos/event/2/9/3/8/600_93910552.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/2/9/3/8/thumb_93910552.jpeg' - join_mode: open - organizer: - member_id: 14958671 - name: Lance Lakey - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/1/0/4/highres_42949412.jpeg' - photo_id: 42949412 - photo_link: 'http://photos3.meetupstatic.com/photos/member/c/1/0/4/member_42949412.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/1/0/4/thumb_42949412.jpeg' - members: 1194 - name: Los Angeles Hack Night - state: CA lat: 34.06999969482422 - who: Hackers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Redwood City - timezone: US/Pacific - created: 1331284252000 link: 'http://www.meetup.com/MindfulQS/' - description: >- -

Compassion Technology is Self-discovery, Self-development, and - Service via logical and technological extensions of mindfulness!

- -

We welcome developers, designers, and all other Good People who are - trying to become even better through daily practice, deeply honest - self-appraisal, and/or dedicated inspired study.

- -

In particular, tech folks with a fondness for prayer, meditation, or - other forms of mind/body awareness are especially likely to find a home - here amongst like-minded souls.

+ name: 'Compassion Technology: Mindful QS' + description: |- +

Compassion Technology is Self-discovery, Self-development, and Service via logical and technological extensions of mindfulness!

+

We welcome developers, designers, and all other Good People who are trying to become even better through daily practice, deeply honest self-appraisal, and/or dedicated inspired study.

+

In particular, tech folks with a fondness for prayer, meditation, or other forms of mind/body awareness are especially likely to find a home here amongst like-minded souls.

lon: -122.2699966430664 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/b/1/5/a/highres_100125402.jpeg' - photo_id: 100125402 photo_link: 'http://photos4.meetupstatic.com/photos/event/b/1/5/a/600_100125402.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/b/1/5/a/thumb_100125402.jpeg' - join_mode: open - organizer: - member_id: 14162253 - name: Stephen R - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/a/2/1/e/highres_44621502.jpeg' - photo_id: 44621502 - photo_link: 'http://photos1.meetupstatic.com/photos/member/a/2/1/e/member_44621502.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/a/2/1/e/thumb_44621502.jpeg' - members: 117 - name: 'Compassion Technology: Mindful QS' - state: CA lat: 37.45000076293945 - who: Compassion Technologists - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Washington - timezone: US/Eastern - created: 1331301170000 link: 'http://www.meetup.com/DC-Web-Design-Development-Tech-and-Media-Authority/' - rating: 4.4 - description: >- -

If you are interested in learning or sharing anything about - designing, developing and supporting a great web site, - service, app or online social network community, this group will not - just explore, but we will discuss and possibly build, - together.  This includes Javascript, HTML5, Ruby - on Rails, MongoDB, mobile web support, CakePHP, WordPress and other - content management systems.  But it does not stop - there. 

- -

This group will identify and explore the use of - technologies, content, - media and social elements that goes - into supporting a Web 2.0/3.0 environment. -  We won't just talk about these elements, we will use them - to help each other build something.  In-depth - exploration, discussion, experimentation and implementation of - HTML5, Javascript, - CSS, PHP, Ruby on - Rails, any and all elements that support - today's web environment and services will be executed.  

- + name: 'DC Web Design, Development, Tech, and Media Authority' + description: |- +

If you are interested in learning or sharing anything about designing, developing and supporting a great web site, service, app or online social network community, this group will not just explore, but we will discuss and possibly build, together.  This includes Javascript, HTML5, Ruby on Rails, MongoDB, mobile web support, CakePHP, WordPress and other content management systems.  But it does not stop there. 

+

This group will identify and explore the use of technologies, content, media and social elements that goes into supporting a Web 2.0/3.0 environment.  We won't just talk about these elements, we will use them to help each other build something.  In-depth exploration, discussion, experimentation and implementation of HTML5, Javascript, CSS, PHP, Ruby on Rails, any and all elements that support today's web environment and services will be executed.  

 

- -

Meet our new organizers for DC Web Design Development Tech and Media - Authority 

- -

- +

Meet our new organizers for DC Web Design Development Tech and Media Authority 

+

 

- -

There's more to a web site than just the front end and various types - of engines that do the work, you have to have somewhere to store the - data itself right?  We will explore and discuss the different - database models such as MySQL, - MongoDB, CouchDB and many others that - can be used, depending on the requirements of the web - project.  While we we are at it, let's explore - Cassandra.

- -

So we will cover the web tech, content, media and the social - elements of a website/service, but there is still more to it.  So - web hosting services, types and features will be - identified.  Everything from the use of shared hosting plans all - the way up to Amazon Web Service (AWS) will be - explored.  Members will be able to make better more informed - decisions on hosting service selections based on what we experience - together.

- -

There is a lot involved in developing a website, a service platform, - social network or other online environment.  You have the content, - media, front and back ends of the solution that may leverage many - pieces of technology fused together to make everything look great and - function well.  Some of us don't have the skills, time and/or - resources to design, develop and maintain a website. For those members - we will identify the best content management system (CMS that meets - their needs such s WordPress and other popular CMS - solutions.  We will also explore emerging CMS solutions based on - Ruby on Rails such as Locomotive, Radiant and Browser CMS to determine - if they are worth the attention and time to implement.

- +

There's more to a web site than just the front end and various types of engines that do the work, you have to have somewhere to store the data itself right?  We will explore and discuss the different database models such as MySQL, MongoDB, CouchDB and many others that can be used, depending on the requirements of the web project.  While we we are at it, let's explore Cassandra.

+

So we will cover the web tech, content, media and the social elements of a website/service, but there is still more to it.  So web hosting services, types and features will be identified.  Everything from the use of shared hosting plans all the way up to Amazon Web Service (AWS) will be explored.  Members will be able to make better more informed decisions on hosting service selections based on what we experience together.

+

There is a lot involved in developing a website, a service platform, social network or other online environment.  You have the content, media, front and back ends of the solution that may leverage many pieces of technology fused together to make everything look great and function well.  Some of us don't have the skills, time and/or resources to design, develop and maintain a website. For those members we will identify the best content management system (CMS that meets their needs such s WordPress and other popular CMS solutions.  We will also explore emerging CMS solutions based on Ruby on Rails such as Locomotive, Radiant and Browser CMS to determine if they are worth the attention and time to implement.

Big ambitions right, well this is going to be a big group.

- -

Using methods pioneered - by JumpstartLab and Hungry - Academy, we want to grow our own developers, including Ruby on - Rails.

- -

Folks, presentations are great, but this group is about more than - that.  We are actually going to build developers, build web sites - and new types of online services.

- +

Using methods pioneered by JumpstartLab and Hungry Academy, we want to grow our own developers, including Ruby on Rails.

+

Folks, presentations are great, but this group is about more than that.  We are actually going to build developers, build web sites and new types of online services.

How will we accomplish all of this?

-
    - -
  • Presentations from Ruby on Rails Pros, - Javascript, HTML5, WordPress, CakePHP and other evangelists.
  • - -
  • Workshops (Hands On) introductions to new - development tools, coding techniques, plugins, advance features and - more
  • - -
  • Study Groups weekly smaller sessions at - different locations to continue using web development toolkits on - real world projects or just for fun
  • - -
  • Plugin development to extend the capabilities -  of WordPress and other CMS solutions
  • - -
  • Hackathons  small and large, including - conference size events hosted by - our partners.
  • - +
  • Presentations from Ruby on Rails Pros, Javascript, HTML5, WordPress, CakePHP and other evangelists.
  • +
  • Workshops (Hands On) introductions to new development tools, coding techniques, plugins, advance features and more
  • +
  • Study Groups weekly smaller sessions at different locations to continue using web development toolkits on real world projects or just for fun
  • +
  • Plugin development to extend the capabilities  of WordPress and other CMS solutions
  • +
  • Hackathons  small and large, including conference size events hosted by our partners.
- -

Talking about web design and development tech - and not doing anything useful with it is not - what this group is about.  We expect more and want to turn this - into a real community of developers of all - levels to learn,share and - possibly collaborate on real - world projects.

- -

If this sound like something interesting that you want to be a part - of, join us.  If you want to contribute to meetups, become an - organizer or even be a moderator at our study halls, just let us - know.

- +

Talking about web design and development tech and not doing anything useful with it is not what this group is about.  We expect more and want to turn this into a real community of developers of all levels to learn,share and possibly collaborate on real world projects.

+

If this sound like something interesting that you want to be a part of, join us.  If you want to contribute to meetups, become an organizer or even be a moderator at our study halls, just let us know.

 

- -

DC Web Design Development Tech and Media Authority is a part - of Just Dev It (One) Network

- +

DC Web Design Development Tech and Media Authority is a part of Just Dev It (One) Network

 

lon: -77.0199966430664 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/8/2/2/a/highres_101013322.jpeg' - photo_id: 101013322 photo_link: 'http://photos2.meetupstatic.com/photos/event/8/2/2/a/600_101013322.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/8/2/2/a/thumb_101013322.jpeg' - join_mode: open - organizer: - member_id: 56921012 - name: Existence - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/6/9/4/8/highres_100346952.jpeg' - photo_id: 100346952 - photo_link: 'http://photos3.meetupstatic.com/photos/member/6/9/4/8/member_100346952.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/6/9/4/8/thumb_100346952.jpeg' - members: 1388 - name: 'DC Web Design, Development, Tech, and Media Authority' - state: DC lat: 38.90999984741211 - who: Web Heads - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Oakland - timezone: US/Pacific - created: 1335487199000 link: 'http://www.meetup.com/EBJavaScript/' - rating: 4.66 + name: East Bay JavaScript Meetup Group description: "

Come discuss Javascript with some of the most talented programmers in the East Bay. Show off some of the cool projects you've been working on and talk about everything happening in the JS community. Let's share tips, tricks, hacks and frameworks! We don't have a JavaScript group in the East Bay so I thought I'd start one. Our first topic is an intro to Node. Come check it out!

\n

\_

\n

Logo provided by Oakland's Where It's AT-AT.\_http://www.oaklandiswhereitsatat.com/

" lon: -122.26000213623047 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/3/7/f/2/highres_113954322.jpeg' - photo_id: 113954322 photo_link: 'http://photos4.meetupstatic.com/photos/event/3/7/f/2/600_113954322.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/3/7/f/2/thumb_113954322.jpeg' - join_mode: open - organizer: - member_id: 13853316 - name: Dan McAulay - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/4/9/0/f/highres_244278703.jpeg' - photo_id: 244278703 - photo_link: 'http://photos4.meetupstatic.com/photos/member/4/9/0/f/member_244278703.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/4/9/0/f/thumb_244278703.jpeg' - members: 2099 - name: East Bay JavaScript Meetup Group - state: CA lat: 37.83000183105469 - who: JS Hackers - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Kansas City - timezone: US/Central - created: 1337169352000 link: 'http://www.meetup.com/JavaScriptKC/' - rating: 4.6 - description: "

JavaScriptKC is for those who use Node.JS and JavaScript in general..

\n

Come join us to talk and code in JavaScript!

\n

Find our github at https://github.com/JavaScriptKC

" + name: JavaScript KC + description: |- +

JavaScript KC is for those who use Node.js and JavaScript in general. Come join us to talk and code in JavaScript!

+

http://www.JavaScriptKC.com

lon: -94.56999969482422 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/e/2/5/e/highres_433557950.jpeg' - photo_id: 433557950 - photo_link: 'http://photos4.meetupstatic.com/photos/event/e/2/5/e/600_433557950.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/e/2/5/e/thumb_433557950.jpeg' - join_mode: open - organizer: - member_id: 151932702 - name: Justin Durkes - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/c/8/7/c/highres_251451324.jpeg' - photo_id: 251451324 - photo_link: 'http://photos4.meetupstatic.com/photos/member/c/8/7/c/member_251451324.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/c/8/7/c/thumb_251451324.jpeg' - members: 1226 - name: JavaScriptKC - state: MO + photo_link: 'http://photos2.meetupstatic.com/photos/event/c/6/f/2/600_448430930.jpeg' lat: 39.099998474121094 - who: Developers - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Philadelphia - timezone: US/Eastern - created: 1337185974000 link: 'http://www.meetup.com/nodejs-philly/' - rating: 4.72 + name: Node.js Philly description: For those working with or interested in Node.js. lon: -75.16000366210938 - join_mode: open - organizer: - member_id: 340436 - name: Alex Urevick-Ackelsberg - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/5/d/0/4/highres_6623812.jpeg' - photo_id: 6623812 - photo_link: 'http://photos3.meetupstatic.com/photos/member/5/d/0/4/member_6623812.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/5/d/0/4/thumb_6623812.jpeg' - members: 941 - name: Node.js Philly - state: PA lat: 39.95000076293945 - who: Nodes - - utc_offset: -25200000 - country: CA - visibility: public + - country: CA city: Vancouver - timezone: Canada/Pacific - created: 1338070179000 link: 'http://www.meetup.com/node-brigade-vancouver/' - rating: 4.72 + name: Node Brigade Vancouver description: '

All about NodeJS.

' lon: -123.0999984741211 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/7/c/f/8/highres_123031992.jpeg' - photo_id: 123031992 photo_link: 'http://photos4.meetupstatic.com/photos/event/7/c/f/8/600_123031992.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/7/c/f/8/thumb_123031992.jpeg' - join_mode: open - organizer: - member_id: 4940493 - name: Brock - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/8/3/9/2/highres_56673682.jpeg' - photo_id: 56673682 - photo_link: 'http://photos3.meetupstatic.com/photos/member/8/3/9/2/member_56673682.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/8/3/9/2/thumb_56673682.jpeg' - members: 565 - name: Node Brigade Vancouver - state: BC lat: 49.279998779296875 - who: Members - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Los Angeles - timezone: US/Pacific - created: 1338807294000 link: 'http://www.meetup.com/bbdevla/' - rating: 4.67 + name: Enterprise Developer Group description: "

The Enterprise Developer Group is sponsored by BlackBerry. We focus on business productivity services and solutions spanning mobility, server, wearable and embedded computing aka IoT.

\n

We welcome a healthy discourse in an objective and collegial setting dedicated to everyone's success.

\n

\_

" lon: -118.33000183105469 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/4/1/2/highres_203341042.jpeg' - photo_id: 203341042 photo_link: 'http://photos3.meetupstatic.com/photos/event/4/1/2/600_203341042.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/4/1/2/thumb_203341042.jpeg' - join_mode: open - organizer: - member_id: 8954362 - name: George McKinney - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/2/4/2/e/highres_48549262.jpeg' - photo_id: 48549262 - photo_link: 'http://photos3.meetupstatic.com/photos/member/2/4/2/e/member_48549262.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/2/4/2/e/thumb_48549262.jpeg' - members: 46 - name: Enterprise Developer Group - state: CA lat: 34.099998474121094 - who: Enterprise Developers - - utc_offset: -14400000 - country: CA - visibility: public_limited + - country: CA city: Ottawa - timezone: Canada/Eastern - created: 1338832283000 link: 'http://www.meetup.com/Ottawa-JavaScript/' - rating: 4.6 + name: Ottawa JavaScript description: '

Ottawa JavaScript is a friendly and fast-growing community of local developers exploring new, innovative technologies related to JavaScript. We cover everything from node, noSQL, HTML5, mobile apps, big data, and hardware hacking... to flying robots! Our monthly meetups feature interesting talks and demos by members at all levels.

' lon: -75.66999816894531 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/1/1/9/6/highres_332884502.jpeg' - photo_id: 332884502 photo_link: 'http://photos2.meetupstatic.com/photos/event/1/1/9/6/600_332884502.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/1/1/9/6/thumb_332884502.jpeg' - join_mode: open - organizer: - member_id: 50116312 - name: Darren DeRidder - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/5/4/3/0/highres_58281552.jpeg' - photo_id: 58281552 - photo_link: 'http://photos4.meetupstatic.com/photos/member/5/4/3/0/member_58281552.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/5/4/3/0/thumb_58281552.jpeg' - members: 1313 - name: Ottawa JavaScript - state: 'ON' lat: 45.400001525878906 - who: Members - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Westlake - timezone: US/Eastern - created: 1339115036000 link: 'http://www.meetup.com/Cleveland-JavaScript-Meetup/' - rating: 4.79 + name: Cleveland JavaScript Meetup description: "

It's time that Cleveland pulled together all the tech gurus playing around with JavaScript, ECMAScript, jQuery, Dojo, YUI, Sencha, CoffeeScript and much more, no matter whether on the server-side or in the browser. JavaScript is an extremely versatile (nicely put) language with some fantastic innovations happening. Backbone, Ember, NodeJS and many other new technologies are paving the way for very exciting things to come. Let's get together and teach each other about what is hip and happening!

" lon: -81.93000030517578 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/a/b/a/6/highres_138463942.jpeg' - photo_id: 138463942 photo_link: 'http://photos2.meetupstatic.com/photos/event/a/b/a/6/600_138463942.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/a/b/a/6/thumb_138463942.jpeg' - join_mode: open - organizer: - member_id: 13253382 - name: Michael Uzquiano - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/5/0/0/6/highres_11120486.jpeg' - photo_id: 11120486 - photo_link: 'http://photos2.meetupstatic.com/photos/member/5/0/0/6/member_11120486.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/5/0/0/6/thumb_11120486.jpeg' - members: 352 - name: Cleveland JavaScript Meetup - state: OH lat: 41.45000076293945 - who: JavaScript Ninjas - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Palo Alto - timezone: US/Pacific - created: 1339202252000 link: 'http://www.meetup.com/NodeSummit/' + name: Node Summit description: '

Meet ups organized to talk about Node.js and related technologies, learn about new projects using Node.js and connect with cutting edge geeks.

' lon: -122.12999725341797 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/1/2/e/0/highres_129304832.jpeg' - photo_id: 129304832 photo_link: 'http://photos2.meetupstatic.com/photos/event/1/2/e/0/600_129304832.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/1/2/e/0/thumb_129304832.jpeg' - join_mode: open - organizer: - member_id: 50635842 - name: Asynch Media - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/e/8/5/0/highres_58499472.jpeg' - photo_id: 58499472 - photo_link: 'http://photos2.meetupstatic.com/photos/member/e/8/5/0/member_58499472.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/e/8/5/0/thumb_58499472.jpeg' - members: 192 - name: Node Summit - state: CA lat: 37.45000076293945 - who: Geeks - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Jacksonville Beach - timezone: US/Eastern - created: 1341598228000 link: 'http://www.meetup.com/Jax-js/' - rating: 4.47 + name: Jax.js description: "

We're a local group of Web workers with an interest in front-end technologies, including HTML/HAML, CSS/SASS, Javascript/CoffeeScript, and all things related to these languages.

" lon: -81.41999816894531 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/3/6/9/e/highres_175333982.jpeg' - photo_id: 175333982 photo_link: 'http://photos4.meetupstatic.com/photos/event/3/6/9/e/600_175333982.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/3/6/9/e/thumb_175333982.jpeg' - join_mode: open - organizer: - member_id: 13268051 - name: Micah Cooper - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/4/3/d/b/highres_18617371.jpeg' - photo_id: 18617371 - photo_link: 'http://photos3.meetupstatic.com/photos/member/4/3/d/b/member_18617371.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/4/3/d/b/thumb_18617371.jpeg' - members: 233 - name: Jax.js - state: FL lat: 30.280000686645508 - who: Members - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Boston - timezone: US/Eastern - created: 1342628232000 link: 'http://www.meetup.com/Node-js-in-the-wild/' - rating: 4.58 + name: Node.js in the wild description: '

Node.js in the wild was started to discuss Node.js and its application in real live application...both large and small. Come out if you want to hear how others are using Node.js to solve real problems.

' lon: -71.04000091552734 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/e/5/d/a/highres_263278842.jpeg' - photo_id: 263278842 photo_link: 'http://photos3.meetupstatic.com/photos/event/e/5/d/a/600_263278842.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/e/5/d/a/thumb_263278842.jpeg' - join_mode: open - organizer: - member_id: 7160115 - name: Tim Walling - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/5/6/0/a/highres_9742026.jpeg' - photo_id: 9742026 - photo_link: 'http://photos4.meetupstatic.com/photos/member/5/6/0/a/member_9742026.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/5/6/0/a/thumb_9742026.jpeg' - members: 1395 - name: Node.js in the wild - state: MA lat: 42.349998474121094 - who: Members - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Cincinnati - timezone: US/Eastern - created: 1343413475000 link: 'http://www.meetup.com/Node-cincy/' - rating: 4.92 + name: 'Node.cincy : Cincinnati Node.js Meetup' description: "

Are you interested in learning more about Node.js? Well then Node.cincy is the meetup for you. We'll be helping people get a handle on what Node.js is, how you can use it, and the best ways to build awesome stuff.

\n


\n

We have a Code of Conduct for all of our events that we adhere to. This makes it so we all have a good time & feel comfortable \uD83D\uDE03

Code of Conduct

\n

We, the organizers of Node.cincy, are dedicated to providing a harassment-free community for everyone, regardless of sex, gender identity or expression, sexual orientation, disability, physical appearance, age, body size, race, nationality, or religious beliefs. We do not tolerate harassment of community members in any form. Participants violating these rules may be sanctioned or expelled from the community at the discretion of the organizers of Node.cincy.

\n

Harassment includes offensive verbal or written comments related to sex, gender identity or expression, sexual orientation, disability, physical appearance, age, body size, race, nationality, or religious beliefs, deliberate intimidation, threats, stalking, following, harassing photography or recording, sustained disruption of talks or other events, inappropriate physical contact, and unwelcome sexual attention. Sexual language and imagery is not appropriate for any events at Nodeschool Cincinnatimeetups or in any related communication channels. Community members asked to stop any harassing behavior are expected to comply immediately. Sponsors and presenters are also subject to the anti-harassment policy.

\n

If a community member engages in harassing behavior, the organizers of Node.cincy may take any action they deem appropriate, including warning the offender or expulsion from the community. If you are being harassed, notice that someone else is being harassed, or have any concerns, please contact an organizer immediately.

" lon: -84.5 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/a/1/b/0/highres_143021392.jpeg' - photo_id: 143021392 photo_link: 'http://photos3.meetupstatic.com/photos/event/a/1/b/0/600_143021392.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/a/1/b/0/thumb_143021392.jpeg' - join_mode: open - organizer: - member_id: 36176502 - name: Matt Hernandez - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/b/9/8/7/highres_245087495.jpeg' - photo_id: 245087495 - photo_link: 'http://photos4.meetupstatic.com/photos/member/b/9/8/7/member_245087495.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/b/9/8/7/thumb_245087495.jpeg' - members: 561 - name: 'Node.cincy : Cincinnati Node.js Meetup' - state: OH lat: 39.11000061035156 - who: Devs - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Los Angeles - timezone: US/Pacific - created: 1343952224000 link: 'http://www.meetup.com/nodela/' - rating: 4.55 + name: Socal Software Developers description: '

Anyone interested in or using Node.js, Javascript, CoffeeScript, and other related frameworks/technologies in the Los Angeles / Southern California Area

' lon: -118.33999633789062 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/a/5/a/c/highres_145182412.jpeg' - photo_id: 145182412 photo_link: 'http://photos2.meetupstatic.com/photos/event/a/5/a/c/600_145182412.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/a/5/a/c/thumb_145182412.jpeg' - join_mode: open - organizer: - member_id: 14958671 - name: Lance Lakey - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/1/0/4/highres_42949412.jpeg' - photo_id: 42949412 - photo_link: 'http://photos3.meetupstatic.com/photos/member/c/1/0/4/member_42949412.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/1/0/4/thumb_42949412.jpeg' - members: 403 - name: Socal Software Developers - state: CA lat: 34.09000015258789 - who: Members - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Chicago - timezone: US/Central - created: 1344876145000 link: 'http://www.meetup.com/Chicago-Ember-js/' - rating: 4.7 + name: Chicago Ember.js description: "

Chicago's Ember.js group is\_committed\_to creating a robust community built around the\_philosophy\_of building\_beautifully\_crafted web applications with the help of Ember.js.

\n

Meetups should be fun and\_engaging\_to\_promote\_a wealth of knowledge among your peers. We will always keep this as a core concept.

" lon: -87.6500015258789 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/a/d/9/a/highres_284384442.jpeg' - photo_id: 284384442 photo_link: 'http://photos4.meetupstatic.com/photos/event/a/d/9/a/600_284384442.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/a/d/9/a/thumb_284384442.jpeg' - join_mode: open - organizer: - member_id: 9165956 - name: Trek Glowacki - photo: - photo_id: 192885592 - photo_link: 'http://photos2.meetupstatic.com/photos/member/b/2/1/8/member_192885592.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/b/2/1/8/thumb_192885592.jpeg' - members: 719 - name: Chicago Ember.js - state: IL lat: 41.91999816894531 - who: Developers - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Minneapolis - timezone: US/Central - created: 1345840693000 link: 'http://www.meetup.com/NodeSummitMN/' - rating: 4.5 + name: Node Summit Minnesota description: '

Meet ups organized to talk about Node.js and related technologies, learn about new projects using Node.js and connect with cutting edge geeks.

' lon: -93.2699966430664 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/2/highres_151980002.jpeg' - photo_id: 151980002 photo_link: 'http://photos3.meetupstatic.com/photos/event/2/600_151980002.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/2/thumb_151980002.jpeg' - join_mode: open - organizer: - member_id: 50635842 - name: Asynch Media - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/e/8/5/0/highres_58499472.jpeg' - photo_id: 58499472 - photo_link: 'http://photos2.meetupstatic.com/photos/member/e/8/5/0/member_58499472.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/e/8/5/0/thumb_58499472.jpeg' - members: 89 - name: Node Summit Minnesota - state: MN lat: 44.97999954223633 - who: Geeks - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Phoenix - timezone: US/Arizona - created: 1346877496000 link: 'http://www.meetup.com/Phoenix-JavaScript/' - rating: 4.75 + name: Phoenix JavaScript description: "

Phoenix JavaScript hosts monthly events that allows members to network and hear technology presentations. Meetings are generally held on Wednesdays and we usually have stuff from sponsors to provide to members such as pizza and a t-shirt drawing. Membership is free, I only ask that you use Meetup's RSVP system to let us know you're coming. Our goal is to provide a regular event that allows our community to come together and learn from each other. We will always try to appeal to both experienced and inexperienced developers.

" lon: -112.02999877929688 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/9/f/e/4/highres_221080932.jpeg' - photo_id: 221080932 photo_link: 'http://photos3.meetupstatic.com/photos/event/9/f/e/4/600_221080932.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/9/f/e/4/thumb_221080932.jpeg' - join_mode: open - organizer: - member_id: 11081813 - name: Brad Westfall - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/1/3/7/6/highres_201844982.jpeg' - photo_id: 201844982 - photo_link: 'http://photos1.meetupstatic.com/photos/member/1/3/7/6/member_201844982.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/1/3/7/6/thumb_201844982.jpeg' - members: 1361 - name: Phoenix JavaScript - state: AZ lat: 33.380001068115234 - who: JavaScript Warriors - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Indianapolis - timezone: US/Eastern - created: 1347590504000 link: 'http://www.meetup.com/Node-indy/' - rating: 4.64 + name: 'Node.indy : Indianapolis Node.js Meetup' description: "

Are you interested in learning more about Node.js? Well then Node.indy is the meetup for you. We'll be helping people get a handle on what Node.js is, how you can use it, and the best ways to build awesome stuff.

" lon: -86.11000061035156 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/e/8/4/6/highres_158639462.jpeg' - photo_id: 158639462 photo_link: 'http://photos1.meetupstatic.com/photos/event/e/8/4/6/600_158639462.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/e/8/4/6/thumb_158639462.jpeg' - join_mode: open - organizer: - member_id: 183838139 - name: John Hurst - members: 652 - name: 'Node.indy : Indianapolis Node.js Meetup' - state: IN lat: 39.869998931884766 - who: Devs - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Brooklyn - timezone: US/Eastern - created: 1348272785000 link: 'http://www.meetup.com/Brooklyn-Node-JS-Meetup/' + name: Brooklyn Node JS Meetup description: '

Node JS has gained a lot of attention in the press citing all the wonderful things being done with it. Rather than hearing about it, our meetup group is about doing things with Node JS (and related technologies like Socket.IO) that pushes the envelope. If you want to learn from others or show others what you can do, this is the community to join.

' lon: -73.98999786376953 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/2/5/5/a/highres_161229562.jpeg' - photo_id: 161229562 photo_link: 'http://photos3.meetupstatic.com/photos/event/2/5/5/a/600_161229562.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/2/5/5/a/thumb_161229562.jpeg' - join_mode: open - organizer: - member_id: 33527322 - name: Loren Abdulezer - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/7/8/5/c/highres_36630812.jpeg' - photo_id: 36630812 - photo_link: 'http://photos2.meetupstatic.com/photos/member/7/8/5/c/member_36630812.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/7/8/5/c/thumb_36630812.jpeg' - members: 223 - name: Brooklyn Node JS Meetup - state: NY lat: 40.70000076293945 - who: Coders - - utc_offset: -25200000 - country: US - visibility: public + - country: US + city: Mountain View + link: 'http://www.meetup.com/fullstackers/' + name: Bay Area Full Stack Developers + description: '

This meetup is for bringing together full stack developers. Talk Talks, tutorials related to full stack development and pitching events with participation from leading VCs and investors. Send email to organizer if you would like to propose any event topics.

' + lon: -122.06999969482422 + lat: 37.38999938964844 + - country: US + city: Milwaukee + link: 'http://www.meetup.com/milwaukeejs/' + name: MilwaukeeJS + description: |- +

A group for JavaScript enthusiasts and those looking to learn JavaScript in the Milwaukee area.  We meet monthly to talk about different JavaScript and topics and are open to anyone from beginners and those who have been using JavaScript for years.  Also be sure to join us in #JavaScript channel on the Milwaukee developer slack. Get an invite at http://mke-slack.herokuapp.com/

+

Code of Conduct

+ lon: -87.91000366210938 + group_photo: + photo_link: 'http://photos2.meetupstatic.com/photos/event/9/3/0/a/600_171457642.jpeg' + lat: 43.06999969482422 + - country: US + city: Cambridge + link: 'http://www.meetup.com/Full-Stack-Boston/' + name: Full Stack Boston + description: |- +

Keep up with the latest you need to know in making your Internet based apps sing on a wide range of mobile and less-mobile platforms such as Android, Arduino, iOS, Mac, Raspberry PI, & Windows.

+

We evaluate technologies and methodologies applicable anywhere within the software stack, but always in the context of multi-platform development and architectural impact. Preference is given to standards-oriented browser/web technologies, such as HTML/HTML5, CSS/CSS3, Javascript, etc. and cross-platform tools from Adobe and others. Discussions evaluate the technical merits of a subject and how it plays with other elements in the bigger picture, such as integration, workflow, maintenance and market/marketing considerations.

+

Our hope is to help each developer find their own answer to the never ending question: Is there a core skill set that can enable me to efficiently create elegant solutions that have the desired reach.

+

Please sign up for free & join us on the journey.

+

Best regards,
Douglas McCarroll & Ira Hochman
Co-Organizers, Full Stack Boston

+ lon: -71.08999633789062 + group_photo: + photo_link: 'http://photos2.meetupstatic.com/photos/event/9/0/7/2/600_442536978.jpeg' + lat: 42.369998931884766 + - country: US city: Redwood City - timezone: US/Pacific - created: 1351887148000 link: 'http://www.meetup.com/PersonalCapital/' - rating: 5 - description: >- -

Personal Capital Engineering is a group about how we can use - technology to bring order to the chaos of finance.

- -

It's a group for mobile, web and back-end developers and designers - to learn and share their knowledge of building large, multi-client - cloud-based systems.

- -

Things like architecting single page apps, advanced charting for - mobile and Amazon's simple notification service are par for the course, - which will typically be a two part talk complemented by food and - drink.

- -

At Personal Capital we have developed clients for web, iOS and - Android supported by a lean Java stack and cloud based back-end in - Redwood City and want to jumpstart a more collaborative tech community - here. Our engineering blog is here: - http://techblog.personalcapital.com/

- + name: Personal Capital Engineering + description: |- +

Personal Capital Engineering is a group about how we can use technology to bring order to the chaos of finance.

+

It's a group for mobile, web and back-end developers and designers to learn and share their knowledge of building large, multi-client cloud-based systems.

+

Things like architecting single page apps, advanced charting for mobile and Amazon's simple notification service are par for the course, which will typically be a two part talk complemented by food and drink.

+

At Personal Capital we have developed clients for web, iOS and Android supported by a lean Java stack and cloud based back-end in Redwood City and want to jumpstart a more collaborative tech community here. Our engineering blog is here: http://techblog.personalcapital.com/

</Personal Capital Engineers>

lon: -122.19999694824219 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/b/2/0/e/highres_176145582.jpeg' - photo_id: 176145582 photo_link: 'http://photos4.meetupstatic.com/photos/event/b/2/0/e/600_176145582.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/b/2/0/e/thumb_176145582.jpeg' - join_mode: open - organizer: - member_id: 68327832 - name: Ehsan Lavassani - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/b/e/d/4/highres_80268852.jpeg' - photo_id: 80268852 - photo_link: 'http://photos2.meetupstatic.com/photos/member/b/e/d/4/member_80268852.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/b/e/d/4/thumb_80268852.jpeg' - members: 142 - name: Personal Capital Engineering - state: CA lat: 37.4900016784668 - who: Engineers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Tempe - timezone: US/Arizona - created: 1352841645000 link: 'http://www.meetup.com/NodeAZ/' - rating: 4.74 + name: NodeAZ description: '

@NodeAZ - Phoenix developer group for server-side JavaScript/CoffeeScript using Node.js. Real-time web, websockets, HTML5 and much more. 7PM 3rd Mon at UAT, rm 201

' lon: -111.93000030517578 - join_mode: open - organizer: - member_id: 6990850 - name: Hafthor - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/6/d/1/2/highres_80727922.jpeg' - photo_id: 80727922 - photo_link: 'http://photos2.meetupstatic.com/photos/member/6/d/1/2/member_80727922.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/6/d/1/2/thumb_80727922.jpeg' - members: 776 - name: NodeAZ - state: AZ lat: 33.369998931884766 - who: Developers - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Saint Petersburg - timezone: US/Eastern - created: 1353967741000 link: 'http://www.meetup.com/suncoast-js/' - rating: 4.63 + name: Suncoast.js description: |-

A group for Tampa bay area JavaScript developers.

Code of Conduct: https://github.com/suncoast-devs/code-of-co...

lon: -82.7300033569336 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/d/8/e/2/highres_185755522.jpeg' - photo_id: 185755522 photo_link: 'http://photos1.meetupstatic.com/photos/event/d/8/e/2/600_185755522.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/d/8/e/2/thumb_185755522.jpeg' - join_mode: open - organizer: - member_id: 20198871 - name: Julián Duque - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/c/5/3/2/highres_254630482.jpeg' - photo_id: 254630482 - photo_link: 'http://photos3.meetupstatic.com/photos/member/c/5/3/2/member_254630482.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/c/5/3/2/thumb_254630482.jpeg' - members: 483 - name: Suncoast.js - state: FL lat: 27.790000915527344 - who: JavaScript Developers - - utc_offset: -28800000 - country: US - visibility: public - city: San Bruno - timezone: US/Pacific - created: 1354132028000 - link: 'http://www.meetup.com/Peninsula-Web-Technology/' - rating: 5 - description: "

A place to learn and discuss new developments in web technologies. We are not focused exclusively on any one language or framework. Instead, this group is to help developers explore the rapidly changing world of web development and understand new technologies and techniques that might fit their needs. We'll try to have a diverse set of events from speakers, to tutorials, to hack nights.

" - lon: -122.43000030517578 - join_mode: open - organizer: - member_id: 4900815 - name: Ken Turner - members: 124 - name: SF Peninsula Web Technology - state: CA - lat: 37.630001068115234 - who: Developers - - utc_offset: -14400000 - country: US - visibility: public_limited + - country: US city: Philadelphia - timezone: US/Eastern - created: 1354249294000 link: 'http://www.meetup.com/Philly-Startup-Hackers/' - rating: 4.69 - description: >- -

We have monthly hackathons in the Philly area for people working on - or interested in startups (primarily Internet related). A hackathon is - an event with no specific agenda--everyone comes and "hacks" on their - projects. It is a great place to meet other local hackers and get - feedback/help on your projects.

- -

Every month we have the meetup at a local Philly company where cool - hacking is going on. We have pizza for dinner, hang out and talk about - our startup experiences, and hack on our projects together.

+ name: Philly Startup Hackers + description: |- +

We have monthly hackathons in the Philly area for people working on or interested in startups (primarily Internet related). A hackathon is an event with no specific agenda--everyone comes and "hacks" on their projects. It is a great place to meet other local hackers and get feedback/help on your projects.

+

Every month we have the meetup at a local Philly company where cool hacking is going on. We have pizza for dinner, hang out and talk about our startup experiences, and hack on our projects together.

lon: -75.13999938964844 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/d/b/0/8/highres_183776072.jpeg' - photo_id: 183776072 photo_link: 'http://photos1.meetupstatic.com/photos/event/d/b/0/8/600_183776072.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/d/b/0/8/thumb_183776072.jpeg' - join_mode: approval - organizer: - member_id: 15807391 - name: Josh Matthias - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/7/5/5/a/highres_84270042.jpeg' - photo_id: 84270042 - photo_link: 'http://photos3.meetupstatic.com/photos/member/7/5/5/a/member_84270042.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/7/5/5/a/thumb_84270042.jpeg' - members: 199 - name: Philly Startup Hackers - state: PA lat: 39.95000076293945 - who: Friendly local hackers - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Lexington - timezone: US/Eastern - created: 1354310844000 link: 'http://www.meetup.com/Kentucky-JavaScript-Users-Group/' - rating: 4.92 + name: Kentucky JavaScript Users Group description: "

Its the Kentucky JavaScript Users Group. Doesn't that just say it all?

" lon: -84.4800033569336 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/3/9/6/e/highres_184994702.jpeg' - photo_id: 184994702 photo_link: 'http://photos3.meetupstatic.com/photos/event/3/9/6/e/600_184994702.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/3/9/6/e/thumb_184994702.jpeg' - join_mode: open - organizer: - member_id: 71346032 - name: Ron Northrip - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/b/e/a/2/highres_84348802.jpeg' - photo_id: 84348802 - photo_link: 'http://photos3.meetupstatic.com/photos/member/b/e/a/2/member_84348802.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/b/e/a/2/thumb_84348802.jpeg' - members: 230 - name: Kentucky JavaScript Users Group - state: KY lat: 38 - who: JavaScripters - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Charlottesville - timezone: US/Eastern - created: 1354482333000 link: 'http://www.meetup.com/Central-Virginia-Javascript-Enthusiasts-CVJSE/' - rating: 4.61 + name: Central Virginia Javascript Enthusiasts (CVJS) description: "

Javascript has good parts, bad parts, and parts you're most likely to only discover from the JS genius next door. Join the Central Virginia Javascript Enthusiasts if you want to tap the rich brain trust of web, node, and mobile developers using \"the worlds most popular language\" in Charlottesville, VA and surrounding areas. We meet every 4th Wednesday of the month in Charlottesville (exact location TBD) to share presos, code, tools, techniques and tall tales of Javascript (and Coffeescript) wonders. See also:\_http://cvjs.net

" lon: -78.5199966430664 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/d/9/9/6/highres_188695702.jpeg' - photo_id: 188695702 photo_link: 'http://photos2.meetupstatic.com/photos/event/d/9/9/6/600_188695702.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/d/9/9/6/thumb_188695702.jpeg' - join_mode: open - organizer: - member_id: 12291099 - name: Steve Johnson - photo: - photo_id: 9931885 - photo_link: 'http://photos1.meetupstatic.com/photos/member/7/c/8/d/member_9931885.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/7/c/8/d/thumb_9931885.jpeg' - members: 309 - name: Central Virginia Javascript Enthusiasts (CVJS) - state: VA lat: 38.040000915527344 - who: Developers - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Buffalo - timezone: US/Eastern - created: 1355031822000 link: 'http://www.meetup.com/Buffalojs/' - rating: 4.67 - description: >- -

JavaScript Manifest Destiny: Whatever program can be written - in JavaScript eventually WILL be written in JavaScript. - Isaac - Schlueter

- -

Javascript is kicking ass and taking names right now. It is - THE language that enables you to be a full-stack engineer and lets you - to write once run anywhere. Let us show you the world of JS and remind - you that not everything in Buffalo misses wide right.

+ name: BuffaloJS + description: |- +

JavaScript Manifest Destiny: Whatever program can be written in JavaScript eventually WILL be written in JavaScript. - Isaac Schlueter

+

Javascript is kicking ass and taking names right now. It is THE language that enables you to be a full-stack engineer and lets you to write once run anywhere. Let us show you the world of JS and remind you that not everything in Buffalo misses wide right.

lon: -78.80000305175781 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/2/6/0/3/highres_447489731.jpeg' - photo_id: 447489731 photo_link: 'http://photos4.meetupstatic.com/photos/event/2/6/0/3/600_447489731.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/2/6/0/3/thumb_447489731.jpeg' - join_mode: open - organizer: - member_id: 44602382 - name: Eric Adams - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/8/f/e/0/highres_50016832.jpeg' - photo_id: 50016832 - photo_link: 'http://photos2.meetupstatic.com/photos/member/8/f/e/0/member_50016832.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/8/f/e/0/thumb_50016832.jpeg' - members: 386 - name: BuffaloJS - state: NY lat: 42.970001220703125 - who: javascripters - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Philadelphia - timezone: US/Eastern - created: 1355248457000 link: 'http://www.meetup.com/EmberJS-Philly/' - rating: 4.8 - description: >- -

This is a group for people interested in Ember.js, whether - developing Ember.js for your day job, or just interested in learning - more about it. We'll meet monthly or quarterly in Center City - Philadelphia.

- -

Join us on the http://phillydev.org Slack group - in the #emberjsphilly channel.

+ name: Ember.js Philly + description: |- +

This is a group for people interested in Ember.js, whether developing Ember.js for your day job, or just interested in learning more about it. We'll meet monthly or quarterly in Center City Philadelphia.

+

Join us on the http://phillydev.org Slack group in the #emberjsphilly channel.

lon: -75.1500015258789 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/3/a/7/f/highres_435614975.jpeg' - photo_id: 435614975 photo_link: 'http://photos3.meetupstatic.com/photos/event/3/a/7/f/600_435614975.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/3/a/7/f/thumb_435614975.jpeg' - join_mode: open - organizer: - member_id: 10182493 - name: Mike Nicholaides - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/8/1/6/highres_167391222.jpeg' - photo_id: 167391222 - photo_link: 'http://photos3.meetupstatic.com/photos/member/c/8/1/6/member_167391222.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/8/1/6/thumb_167391222.jpeg' - members: 314 - name: Ember.js Philly - state: PA lat: 39.939998626708984 - who: Embereños - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Austin - timezone: US/Central - created: 1356646986000 link: 'http://www.meetup.com/Austin-Backbone-js-Ninjas/' - rating: 4.92 + name: Austin Backbone.js Ninjas description: "

Rich User Experiences are moving to the web browser. This means jQuery spaghetti if you aren't already modularlizing your code. Make your Apps easier to maintain, improve, and test with Backbone.js and a suite of other hot technologies. Require.js (Dynamic Code/CSS Loading) Jasmine.js (Unit and Functional Test Framework) Node.js (Event Based Server Side Framework) Backbone-Marionette (Improved Event Handling, View Management)

" lon: -97.73999786376953 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/d/0/c/e/highres_440093454.jpeg' - photo_id: 440093454 photo_link: 'http://photos3.meetupstatic.com/photos/event/d/0/c/e/600_440093454.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/d/0/c/e/thumb_440093454.jpeg' - join_mode: open - organizer: - member_id: 52568912 - name: Fernando - photo: - photo_id: 157968912 - photo_link: 'http://photos1.meetupstatic.com/photos/member/b/f/1/0/member_157968912.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/b/f/1/0/thumb_157968912.jpeg' - members: 154 - name: Austin Backbone.js Ninjas - state: TX lat: 30.270000457763672 - who: Code Ninjas - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: New York - timezone: US/Eastern - created: 1357085052000 link: 'http://www.meetup.com/NYC-Titanium-Users-Group/' - rating: 4.61 + name: NYC Titanium Users Group description: "

The purpose of the group is to support developers, designers, and other Titanium platform users with product knowledge, development skills and networking opportunities. Titanium is an open source development toolset and SDK that accelerates the development of native mobile applications for iOS, Android, BlackBerry 10, Tizen, and Windows Phone 8 (1Q13) devices. Appcelerator is the company that makes the Titanium platform and offers support, training and one of the best cloud service back-ends called Appcelerator Cloud Service (ACS).

\n

\_

\n

Looking for a NYC Area Titanium Consultant/Professional? Want to be added to the list?

\n

Titanium Help Wanted Postings. Want to add a posting?

" lon: -73.98999786376953 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/8/a/e/0/highres_194075552.jpeg' - photo_id: 194075552 photo_link: 'http://photos2.meetupstatic.com/photos/event/8/a/e/0/600_194075552.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/8/a/e/0/thumb_194075552.jpeg' - join_mode: open - organizer: - member_id: 12662308 - name: Charles Loflin - photo: - photo_id: 10394459 - photo_link: 'http://photos3.meetupstatic.com/photos/member/3/8/7/b/member_10394459.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/3/8/7/b/thumb_10394459.jpeg' - members: 181 - name: NYC Titanium Users Group - state: NY lat: 40.72999954223633 - who: Members - - utc_offset: -28800000 - country: US - visibility: public - city: Las Vegas - timezone: US/Pacific - created: 1357674093000 - link: 'http://www.meetup.com/NodeJS-Vegas/' - rating: 4.75 - description: '

A group for practicing and aspiring NodeJS developers

' - lon: -115.11000061035156 - group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/8/2/2/highres_196202082.jpeg' - photo_id: 196202082 - photo_link: 'http://photos1.meetupstatic.com/photos/event/8/2/2/600_196202082.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/8/2/2/thumb_196202082.jpeg' - join_mode: open - members: 103 - name: NodeJS Vegas - state: NV - lat: 36.150001525878906 - who: Developers - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Raleigh - timezone: US/Eastern - created: 1357743716000 link: 'http://www.meetup.com/triangle-nodejs/' - rating: 4.79 + name: Triangle Node.js description: '

A group for people in the Raleigh-Durham-Chapel Hill area working with (or interested in) Node.js.

' lon: -78.63999938964844 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/5/c/1/e/highres_194303582.jpeg' - photo_id: 194303582 photo_link: 'http://photos1.meetupstatic.com/photos/event/5/c/1/e/600_194303582.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/5/c/1/e/thumb_194303582.jpeg' - join_mode: open - organizer: - member_id: 13868345 - name: Brian Marks - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/6/9/8/e/highres_27507022.jpeg' - photo_id: 27507022 - photo_link: 'http://photos3.meetupstatic.com/photos/member/6/9/8/e/member_27507022.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/6/9/8/e/thumb_27507022.jpeg' - members: 579 - name: Triangle Node.js - state: NC lat: 35.77000045776367 - who: Members - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Portland - timezone: US/Pacific - created: 1358364561000 link: 'http://www.meetup.com/pdxnode/' - rating: 4.72 + name: PDXnode description: "

Our group is open and geared to engage all levels of programmer. We seek to build a community of developers who enjoy each other's company while being excited about developing JavaScript. \_Whether you're wondering why in the world you would want to put JavaScript on a server or want to discuss the different implementations of the promises/A+ standard and the eternal struggle with callbacks, we're here to help!

\n

We've hosted\_PDX International NodeBots day,\_Hacker Train, and host a\_monthly presentation night and Code & Learn night as well. Look forward to workshops and many great talks to come!

\n

We support our\_Code of Conduct and welcome input to improve upon it via issues submission and pull requests--long story short: \"Don't be a jerk.\"

\n

To contribute please look at our\_https://github.com/PDXNode/pdxnode

" lon: -122.68000030517578 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/5/e/4/4/highres_335364132.jpeg' - photo_id: 335364132 photo_link: 'http://photos2.meetupstatic.com/photos/event/5/e/4/4/600_335364132.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/5/e/4/4/thumb_335364132.jpeg' - join_mode: open - organizer: - member_id: 10130124 - name: Aaron Rosen - photo: - photo_id: 136781422 - photo_link: 'http://photos4.meetupstatic.com/photos/member/a/1/c/e/member_136781422.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/a/1/c/e/thumb_136781422.jpeg' - members: 1245 - name: PDXnode - state: OR lat: 45.529998779296875 - who: Nodesters - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Philadelphia - timezone: US/Eastern - created: 1360080256000 link: 'http://www.meetup.com/Philadelphia-JavaScript-Developers/' - rating: 4.8 - description: >- -

This is a group for developers to meet up and exchange knowledge - about the latest trends in JavaScript Development in Philadelphia. We - have longer talks on the odd months, lightning talks/project night on - the even months. Come meet your fellow JavaScripters, whether you've - been writing it since 1997 or since last week. Welcome!

- -

If you'd like to speak, drop us a line at http://bit.ly/1tkLzGD. And follow us - on Twitter at @phillyjsdev.

+ name: Philadelphia JavaScript Developers + description: |- +

This is a group for developers to meet up and exchange knowledge about the latest trends in JavaScript Development in Philadelphia. We have longer talks on the odd months, lightning talks/project night on the even months. Come meet your fellow JavaScripters, whether you've been writing it since 1997 or since last week. Welcome!

+

If you'd like to speak, drop us a line at http://bit.ly/1tkLzGD. And follow us on Twitter at @phillyjsdev.

lon: -75.16000366210938 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/1/6/0/a/highres_343745642.jpeg' - photo_id: 343745642 photo_link: 'http://photos4.meetupstatic.com/photos/event/1/6/0/a/600_343745642.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/1/6/0/a/thumb_343745642.jpeg' - join_mode: open - organizer: - member_id: 12576205 - name: James Sacra - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/7/5/8/0/highres_10290080.jpeg' - photo_id: 10290080 - photo_link: 'http://photos4.meetupstatic.com/photos/member/7/5/8/0/member_10290080.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/7/5/8/0/thumb_10290080.jpeg' - members: 1315 - name: Philadelphia JavaScript Developers - state: PA lat: 39.95000076293945 - who: JS Developers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Santa Cruz - timezone: US/Pacific - created: 1360087212000 link: 'http://www.meetup.com/node-sc/' - rating: 4.7 - description: >- -

Node.SC aims to bring together Santa Cruz developers and - technologists who use node.js or want to learn about node.

- -

I'd like to build a community of experts and newcomers in an - atmosphere where people feel comfortable teaching, learning, - collaborating, and just nerding-out!

- + name: node.sc + description: |- +

Node.SC aims to bring together Santa Cruz developers and technologists who use node.js or want to learn about node.

+

I'd like to build a community of experts and newcomers in an atmosphere where people feel comfortable teaching, learning, collaborating, and just nerding-out!

I picture our typical meetup running something like:

-
    -
  1. Meet and greet
  2. - -
  3. A couple 'lightning talks' (5 mins) on topics such as 'Quick - Tips', 'Hot Modules', 'Node.JS Core Update', etc.
  4. - -
  5. One or two longer talks (20 mins) on topics such as 'How To - .....', 'Module Review', 'Case Study', 'Project Pitch', etc. I'd like - to encourage these longer talks to include 'live coding' and actual - execution of sample code. In my experience, showing people how stuff - really works is both more engaging and more impressive :)
  6. - -
  7. Keep the conversation going over drinks and - snacks.
  8. - -
  9. Wifi and seating to encourage hacking after the talks are - over.
  10. - +
  11. A couple 'lightning talks' (5 mins) on topics such as 'Quick Tips', 'Hot Modules', 'Node.JS Core Update', etc.
  12. +
  13. One or two longer talks (20 mins) on topics such as 'How To .....', 'Module Review', 'Case Study', 'Project Pitch', etc. I'd like to encourage these longer talks to include 'live coding' and actual execution of sample code. In my experience, showing people how stuff really works is both more engaging and more impressive :)
  14. +
  15. Keep the conversation going over drinks and snacks.
  16. +
  17. Wifi and seating to encourage hacking after the talks are over.
- -

I'm excited to get this group going but I'll be looking for your - help and look forward to building something exciting and - long-lasting!

- -

What is node.js? - Node.js is a platform built on Chrome's - JavaScript runtime for easily building fast, scalable network - applications. http://nodejs.org/

+

I'm excited to get this group going but I'll be looking for your help and look forward to building something exciting and long-lasting!

+

What is node.js? - Node.js is a platform built on Chrome's JavaScript runtime for easily building fast, scalable network applications. http://nodejs.org/

lon: -122.05999755859375 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/d/6/d/a/highres_202675002.jpeg' - photo_id: 202675002 photo_link: 'http://photos3.meetupstatic.com/photos/event/d/6/d/a/600_202675002.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/d/6/d/a/thumb_202675002.jpeg' - join_mode: open - organizer: - member_id: 7505862 - name: Brian Link - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/5/d/4/9/highres_20243881.jpeg' - photo_id: 20243881 - photo_link: 'http://photos2.meetupstatic.com/photos/member/5/d/4/9/member_20243881.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/5/d/4/9/thumb_20243881.jpeg' - members: 194 - name: node.sc - state: CA lat: 36.9900016784668 - who: Asychronistas - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Francisco - timezone: US/Pacific - created: 1360319560000 link: 'http://www.meetup.com/Escape-from-dev-null-CA/' + name: Escape from /dev/null CA description: "

Escape from /dev/null (or just /dev/null for short) is series of unique and engaging programming competitions.

\n

Actually, they differ from traditional programming competitions in that they are not boring, not about boring things, mostly shy away from abstract algorithmic brain-twisters and instead focus on practicality and having fun.

\n

The 'outer game' is played by logging int to a web-based interface. It could theoretically be played online entirely, but it's always done in a ballroom setting where all players as teams and the judges meet in person during the game.

\n

The 'inner game' is revealed one challenge at a time where teams create their own way of interacting with it.

\n

\_

" lon: -122.41999816894531 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/4/c/1/a/highres_202759482.jpeg' - photo_id: 202759482 photo_link: 'http://photos4.meetupstatic.com/photos/event/4/c/1/a/600_202759482.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/4/c/1/a/thumb_202759482.jpeg' - join_mode: open - organizer: - member_id: 8146053 - name: Peter Svensson - photo: - photo_id: 95700282 - photo_link: 'http://photos1.meetupstatic.com/photos/member/1/1/a/member_95700282.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/1/1/a/thumb_95700282.jpeg' - members: 57 - name: Escape from /dev/null CA - state: CA lat: 37.779998779296875 - who: devnullers - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: New Orleans - timezone: US/Central - created: 1360812204000 link: 'http://www.meetup.com/FrontEndParty/' - rating: 4.77 + name: '#FrontEndParty' description: "

Are you a developer on the front-end side of things, looking to learn the latest HTML5 / CSS3 / Javascript tricks and best practices? Are you a designer who would love a second set of eyes on their latest work, or to talk about the newest design trends and styles? If this sounds like you, then come join us at FrontEndParty and throw your ideas into the mix. We’ll host three 15 minute presentations from developers and designers around New Orleans on the last Thursday of every month.

\n

Looking for more details? \_Check out\_http://www.frontendparty.com for the latest info!

\n

Want to present at FrontEndParty? Apply to present

" lon: -90.08000183105469 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/4/8/e/6/highres_204798662.jpeg' - photo_id: 204798662 photo_link: 'http://photos3.meetupstatic.com/photos/event/4/8/e/6/600_204798662.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/4/8/e/6/thumb_204798662.jpeg' - join_mode: open - organizer: - member_id: 483991 - name: Joe Ellis - photo: - photo_id: 124607652 - photo_link: 'http://photos2.meetupstatic.com/photos/member/b/a/2/4/member_124607652.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/b/a/2/4/thumb_124607652.jpeg' - members: 663 - name: '#FrontEndParty' - state: LA lat: 29.959999084472656 - who: Partiers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Francisco - timezone: US/Pacific - created: 1360888668000 link: 'http://www.meetup.com/TwilioSF/' - rating: 4.91 + name: Twilio San Francisco Meetup Group description: '

Join our meetup group for events centered around building with Twilio cloud communications, design and development, APIs, and more.

' lon: -122.4000015258789 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/9/f/b/2/highres_204940882.jpeg' - photo_id: 204940882 photo_link: 'http://photos2.meetupstatic.com/photos/event/9/f/b/2/600_204940882.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/9/f/b/2/thumb_204940882.jpeg' - join_mode: open - organizer: - member_id: 13218881 - name: Ricky Robinett - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/3/7/b/highres_241680891.jpeg' - photo_id: 241680891 - photo_link: 'http://photos2.meetupstatic.com/photos/member/3/7/b/member_241680891.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/7/b/thumb_241680891.jpeg' - members: 315 - name: Twilio San Francisco Meetup Group - state: CA lat: 37.790000915527344 - who: Twilions - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Francisco - timezone: US/Pacific - created: 1361405911000 link: 'http://www.meetup.com/apidiscovery/' - rating: 4.9 - description: >- -

This group is designed for developers looking to discover APIs and - services that can help speed up and modularize their development and so - time is not wasted re-inventing wheels. We will meet and learn the ins - and outs of a new API every week, and why that API is relevant to - development. Every API demo will be fun and engaging, and the goal of - this meetup is not only to learn, but to also have a great time and - make friends!

- -

SPONSOR MESSAGE
Lyft is currently offering members of our Meetup - free ride credit to try the service! Visit https://www.lyft.com/invited/DEV - to get your free credit. 

+ name: API Discovery + description: |- +

This group is designed for developers looking to discover APIs and services that can help speed up and modularize their development and so time is not wasted re-inventing wheels. We will meet and learn the ins and outs of a new API every week, and why that API is relevant to development. Every API demo will be fun and engaging, and the goal of this meetup is not only to learn, but to also have a great time and make friends!

+

SPONSOR MESSAGE
Lyft is currently offering members of our Meetup free ride credit to try the service! Visit https://www.lyft.com/invited/DEV to get your free credit. 

lon: -122.4000015258789 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/2/e/3/8/highres_392651832.jpeg' - photo_id: 392651832 photo_link: 'http://photos1.meetupstatic.com/photos/event/2/e/3/8/600_392651832.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/2/e/3/8/thumb_392651832.jpeg' - join_mode: open - organizer: - member_id: 197103628 - name: M. A. - members: 613 - name: API Discovery - state: CA lat: 37.790000915527344 - who: Devs - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Francisco - timezone: US/Pacific - created: 1361777614000 link: 'http://www.meetup.com/hackreactor/' - rating: 4.69 - description: >- -

Hack Reactor is a 12-week immersive coding school offering classes - onsite in San Francisco and online through Hack Reactor Remote Beta. -  Our Meetup group exists to help both aspiring & established - coders level up. 

- -

http://hackreactor.com -
Twitter:
@HackReactor

+ name: 'Hack Reactor: Learn to Code' + description: |- +

Hack Reactor is a 12-week immersive coding school offering classes onsite in San Francisco and online through Hack Reactor Remote Beta.  Our Meetup group exists to help both aspiring & established coders level up. 

+

http://hackreactor.com
Twitter:
@HackReactor

lon: -122.41999816894531 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/a/c/4/6/highres_231404102.jpeg' - photo_id: 231404102 photo_link: 'http://photos3.meetupstatic.com/photos/event/a/c/4/6/600_231404102.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/a/c/4/6/thumb_231404102.jpeg' - join_mode: open - organizer: - member_id: 193834707 - name: Hack Reactor Team - members: 4328 - name: 'Hack Reactor: Learn to Code' - state: CA lat: 37.779998779296875 - who: Engineers - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Washington - timezone: US/Eastern - created: 1361902062000 link: 'http://www.meetup.com/DC-Hack-and-Tell/' - rating: 4.95 + name: DC Hack and Tell description: "

It's Hack and Tell, in DC! There's a web site with descriptions of past events! http://dc.hackandtell.org/ See the meetup event descriptions for more!

" lon: -77.0199966430664 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/b/0/b/0/highres_388245232.jpeg' - photo_id: 388245232 photo_link: 'http://photos3.meetupstatic.com/photos/event/b/0/b/0/600_388245232.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/b/0/b/0/thumb_388245232.jpeg' - join_mode: open - organizer: - member_id: 122522842 - name: Travis Hoppe - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/1/0/8/8/highres_171844232.jpeg' - photo_id: 171844232 - photo_link: 'http://photos3.meetupstatic.com/photos/member/1/0/8/8/member_171844232.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/1/0/8/8/thumb_171844232.jpeg' - members: 1007 - name: DC Hack and Tell - state: DC lat: 38.90999984741211 - who: Hackers - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Birmingham - timezone: US/Central - created: 1362250245000 link: 'http://www.meetup.com/bhm-js/' - rating: 4.75 + name: Birmingham Javascript Meetup description: '

Birmingham JavaScript meetup. #bhmjs on social media.

' lon: -86.80999755859375 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/6/b/d/2/highres_233487602.jpeg' - photo_id: 233487602 photo_link: 'http://photos3.meetupstatic.com/photos/event/6/b/d/2/600_233487602.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/6/b/d/2/thumb_233487602.jpeg' - join_mode: open - organizer: - member_id: 11883583 - name: Nathan Stott - photo: - photo_id: 121432012 - photo_link: 'http://photos4.meetupstatic.com/photos/member/c/b/2/c/member_121432012.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/c/b/2/c/thumb_121432012.jpeg' - members: 270 - name: Birmingham Javascript Meetup - state: AL lat: 33.459999084472656 - who: JavaScripters - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Austin - timezone: US/Central - created: 1362429905000 link: 'http://www.meetup.com/Sails-js-Austin/' - rating: 4.83 + name: Sails.js Austin description: '

This has always been a group for developing ideas and apps with Sails.js, the MVC framework for Node.js...now find us over on the Austin Node.js Meetup page~ http://www.meetup.com/noders/

' lon: -97.7699966430664 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/e/1/2/a/highres_214197642.jpeg' - photo_id: 214197642 photo_link: 'http://photos1.meetupstatic.com/photos/event/e/1/2/a/600_214197642.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/e/1/2/a/thumb_214197642.jpeg' - join_mode: open - organizer: - member_id: 3987123 - name: Rachael - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/a/0/3/4/highres_184421012.jpeg' - photo_id: 184421012 - photo_link: 'http://photos3.meetupstatic.com/photos/member/a/0/3/4/member_184421012.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/a/0/3/4/thumb_184421012.jpeg' - members: 97 - name: Sails.js Austin - state: TX lat: 30.350000381469727 - who: Sea Anemones - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Francisco - timezone: US/Pacific - created: 1362642547000 link: 'http://www.meetup.com/js-read/' - rating: 4.9 + name: JavaScript Reading Group description: "

If your growing list of JavaScript books, articles, and tutorials to read through is as long as your list of projects to experiment with--and you know you're never going to finish all of them alone--this group is for you. Considering the pace of evolution in the JavaScript world, trying to stay on top of all that's happening is at best optimistic, and at worst a fool's game. But don't surrender! Enjoy the support and encouragement of a community of like-minded JavaScript coders and enthusiasts. We agree on what we most want to read, commit to a timeframe, and then get together to discuss what we've learned. Together we are building an environment where we can exchange informed opinions and insights with peers, while reading a curated selection of expert writings about JavaScript and its various flavors, libraries, and implementations.

" lon: -122.4000015258789 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/e/4/e/a/highres_213418602.jpeg' - photo_id: 213418602 photo_link: 'http://photos2.meetupstatic.com/photos/event/e/4/e/a/600_213418602.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/e/4/e/a/thumb_213418602.jpeg' - join_mode: open - organizer: - member_id: 1765613 - name: M. David Green - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/5/4/d/0/highres_23481712.jpeg' - photo_id: 23481712 - photo_link: 'http://photos3.meetupstatic.com/photos/member/5/4/d/0/member_23481712.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/5/4/d/0/thumb_23481712.jpeg' - members: 390 - name: JavaScript Reading Group - state: CA lat: 37.77000045776367 - who: Readers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Santa Monica - timezone: US/Pacific - created: 1363306772000 link: 'http://www.meetup.com/Los-Angeles-CoffeeScript/' - rating: 4.97 + name: Los Angeles CoffeeScript description: "

What is CoffeeScript?

\n

CoffeeScript is a little language that compiles into JavaScript. Underneath that awkward Java-esque patina, JavaScript has always had a gorgeous heart. CoffeeScript is an attempt to expose the good parts of JavaScript in a simple way.

\n

For a quick introduction to CoffeeScript check out Panda Strike's Introduction to CoffeeScript

\n

\_

\n

Who We Are

\n

We're a group of professionals so in love with CoffeeScript we've developed our own tutorials. We're starting this meetup to show others why we enjoy developing in CoffeeScript and to interact with others who are also using CoffeeScript.

\n

\_

\n

What To Expect

\n

Some programming experience is assumed.\_For people who are new to CoffeeScript we'll provide self-paced tutorials. For people who are further advanced we'll have projects to work on and talk about, people to argue with.

\n

\_

\n

Sponsors

\n

\n

\_

\n

\_

\n

\_

\n

\_

\n

Panda Strike is\_a consultancy focused on rich client, high-performance Web and mobile experiences and lightweight solutions for big data, primarily using CoffeeScript, Node.js, Elaticsearch, and a stack of innovative open source technologies. Panda Strike is hiring talented engineers.

\n


\n\n

\n

Sponsoring

\n

If you're interested in hosting hack night or sponsoring food or drinks then send Lance Lakey an email through meetup.com

\n

\_

" lon: -118.5 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/7/7/4/e/highres_213990542.jpeg' - photo_id: 213990542 photo_link: 'http://photos4.meetupstatic.com/photos/event/7/7/4/e/600_213990542.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/7/7/4/e/thumb_213990542.jpeg' - join_mode: open - organizer: - member_id: 14958671 - name: Lance Lakey - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/1/0/4/highres_42949412.jpeg' - photo_id: 42949412 - photo_link: 'http://photos3.meetupstatic.com/photos/member/c/1/0/4/member_42949412.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/1/0/4/thumb_42949412.jpeg' - members: 205 - name: Los Angeles CoffeeScript - state: CA lat: 34.02000045776367 - who: CoffeeScripters - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Francisco - timezone: US/Pacific - created: 1364354213000 link: 'http://www.meetup.com/lever-open-source/' - rating: 4.75 + name: Lever Open Source description: '

Lever is the company behind the Derby JavaScript MVC Framework. Learn more at http://derbyjs.com/

' lon: -122.41000366210938 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/7/9/4/c/highres_303871052.jpeg' - photo_id: 303871052 photo_link: 'http://photos2.meetupstatic.com/photos/event/7/9/4/c/600_303871052.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/7/9/4/c/thumb_303871052.jpeg' - join_mode: open - organizer: - member_id: 9776751 - name: Ian Johnson - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/a/6/4/2/highres_70182562.jpeg' - photo_id: 70182562 - photo_link: 'http://photos4.meetupstatic.com/photos/member/a/6/4/2/member_70182562.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/a/6/4/2/thumb_70182562.jpeg' - members: 71 - name: Lever Open Source - state: CA lat: 37.790000915527344 - who: Members - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: New York - timezone: US/Eastern - created: 1364405311000 link: 'http://www.meetup.com/nyfrontendcoders/' - rating: 4.89 + name: New York Front End Coders description: "

We're a group of New York based front end developers passionate about the technologies we work with on a daily basis. We are hoping to create a community of people to explore ideas, learn, teach and share information around user experience, design, and new emerging techniques and technologies. This group will host talks and workshops to discuss best practices, HTML5, CSS, cross-browser support and testing, mobile, optimization techniques and more. Get updates via @Shuttertech on Twitter.

" lon: -74.01000213623047 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/d/7/2/a/highres_226375082.jpeg' - photo_id: 226375082 photo_link: 'http://photos3.meetupstatic.com/photos/event/d/7/2/a/600_226375082.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/d/7/2/a/thumb_226375082.jpeg' - join_mode: open - organizer: - member_id: 98794792 - name: Steve Blaurock - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/2/4/2/b/highres_248349259.jpeg' - photo_id: 248349259 - photo_link: 'http://photos4.meetupstatic.com/photos/member/2/4/2/b/member_248349259.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/2/4/2/b/thumb_248349259.jpeg' - members: 1128 - name: New York Front End Coders - state: NY lat: 40.70000076293945 - who: front end enthusiasts - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Santa Rosa - timezone: US/Pacific - created: 1364506192000 link: 'http://www.meetup.com/Norcal-Javascript-Hackers/' - rating: 4.93 + name: Norcal Javascript Hackers description: "

Mission:

\n

\n

\n

\n
    \n

    Finding all the best engineers...

    \n

    Bring us together to expand our networks...

    \n

    Make people better at what they do!

    \n
\n

\n

\n

At Meetups We Typically:

\n

\n

\n

\n
    \n

    Bounce ideas off friends and peers

    \n

    Validate our assertions

    \n

    Lean on each others experience

    \n

    Give short talks on stuff we are leaning

    \n

    Drink Coke

    \n

    Drink Beer

    \n

    Win more

    \n
\n

\n

\n

 

" lon: -122.69000244140625 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/d/9/2/f/highres_436915599.jpeg' - photo_id: 436915599 photo_link: 'http://photos2.meetupstatic.com/photos/event/d/9/2/f/600_436915599.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/d/9/2/f/thumb_436915599.jpeg' - join_mode: open - organizer: - member_id: 8693278 - name: Peter Banka - photo: - photo_id: 32642392 - photo_link: 'http://photos4.meetupstatic.com/photos/member/9/5/8/member_32642392.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/9/5/8/thumb_32642392.jpeg' - members: 161 - name: Norcal Javascript Hackers - state: CA lat: 38.459999084472656 - who: Hackers - - utc_offset: -28800000 - country: US - visibility: public - city: Las Vegas - timezone: US/Pacific - created: 1366059113000 - link: 'http://www.meetup.com/producthunt/' - description: >- -

Product Hunt (www.producthunt.com) is a community that exposes - innovators and early adopters to cool new products - is that you? Then - join the Meetup Group and let's bring people together in Las Vegas for - pitch free events with lots of substance.

- -

We are admirers of beautiful, useful tech products that solve real - problems. We plan to host regular meetups featuring product demos and - networking over drinks and nibbles. Join the group to get updated about - our first scheduled meetup. 

- lon: -115.31999969482422 - group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/7/c/7/e/highres_436651870.jpeg' - photo_id: 436651870 - photo_link: 'http://photos2.meetupstatic.com/photos/event/7/c/7/e/600_436651870.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/7/c/7/e/thumb_436651870.jpeg' - join_mode: open - organizer: - member_id: 9201291 - name: Kyle Kelly - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/a/9/8/0/highres_119443392.jpeg' - photo_id: 119443392 - photo_link: 'http://photos2.meetupstatic.com/photos/member/a/9/8/0/member_119443392.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/a/9/8/0/thumb_119443392.jpeg' - members: 24 - name: Product Hunt Las Vegas - state: NV - lat: 36.060001373291016 - who: Product Hunters - - utc_offset: -21600000 - country: US - visibility: public + - country: US city: Salt Lake City - timezone: US/Mountain - created: 1366155450000 link: 'http://www.meetup.com/UtahJS/' - rating: 4.47 - description: >- + name: UtahJS + description: |-

This group is all about JavaScript in Utah.

- -

We meet the 1st Thursday of the month in Orem, the 3rd Tuesday of - the month in SLC, and at least monthly in Logan. On the 4th Thursday of - the month in Sandy is our Angular meetup.

- +

We meet the 1st Thursday of the month in Orem, the 3rd Tuesday of the month in SLC, and at least monthly in Logan. On the 4th Thursday of the month in Sandy is our Angular meetup.

See also utahjs.com

- -

Join our mailing list at https://groups.google.com/forum/#!forum/uta...

- -

Join us on Slack at - http://slack.utahjavascript.com.

+

Join our mailing list at https://groups.google.com/forum/#!forum/uta...

+

Join us on Slack at http://slack.utahjavascript.com.

lon: -111.88999938964844 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/a/9/a/8/highres_226003432.jpeg' - photo_id: 226003432 photo_link: 'http://photos3.meetupstatic.com/photos/event/a/9/a/8/600_226003432.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/a/9/a/8/thumb_226003432.jpeg' - join_mode: open - organizer: - member_id: 89575692 - name: Kip Lawrence - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/1/8/9/e/highres_111606302.jpeg' - photo_id: 111606302 - photo_link: 'http://photos3.meetupstatic.com/photos/member/1/8/9/e/member_111606302.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/1/8/9/e/thumb_111606302.jpeg' - members: 1249 - name: UtahJS - state: UT lat: 40.709999084472656 - who: JavaScriptafarians - - utc_offset: -21600000 - country: US - visibility: public + - country: US city: Lindon - timezone: US/Mountain - created: 1366156848000 link: 'http://www.meetup.com/UtahJS-Orem-Meetup/' - rating: 4.51 + name: UtahJS Orem Meetup description: "

This group is all about JavaScript in the Orem, Utah area.

\n

We meet every 1st Thursday of the month... each and every month. We also have other hackathons, lunches, etc... on other days.

\n

We are having our second UtahJS 2013 conference in SLC, Utah on May 17th, 2013.

\n

http://lanyrd.com/2013/utahjs/

\n

See utahjs.com for what we'll be talking about this month!

\n

\_

" lon: -111.7300033569336 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/a/9/f/8/highres_226003512.jpeg' - photo_id: 226003512 photo_link: 'http://photos3.meetupstatic.com/photos/event/a/9/f/8/600_226003512.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/a/9/f/8/thumb_226003512.jpeg' - join_mode: open - organizer: - member_id: 89575692 - name: Kip Lawrence - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/1/8/9/e/highres_111606302.jpeg' - photo_id: 111606302 - photo_link: 'http://photos3.meetupstatic.com/photos/member/1/8/9/e/member_111606302.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/1/8/9/e/thumb_111606302.jpeg' - members: 405 - name: UtahJS Orem Meetup - state: UT lat: 40.34000015258789 - who: UtahJS Members - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: York - timezone: US/Eastern - created: 1366294516000 link: 'http://www.meetup.com/york-js/' - rating: 4.98 + name: york.js description: york.js is a group for discussing all things JavaScript. lon: -76.7699966430664 - join_mode: open - organizer: - member_id: 10468376 - name: Scott González - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/7/e/6/a/highres_9632362.jpeg' - photo_id: 9632362 - photo_link: 'http://photos4.meetupstatic.com/photos/member/7/e/6/a/member_9632362.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/7/e/6/a/thumb_9632362.jpeg' - members: 207 - name: york.js - state: PA lat: 39.970001220703125 - who: Members - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Austin - timezone: US/Central - created: 1366387574000 link: 'http://www.meetup.com/Ember-ATX/' - rating: 4.93 + name: Ember ATX description: 'Ember ATX is a group for people of all skill levels to come together, learn, and help one another build ambitious web applications.' lon: -97.7300033569336 - join_mode: open - organizer: - member_id: 44439642 - name: Brandon Hays - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/c/e/2/4/highres_111832772.jpeg' - photo_id: 111832772 - photo_link: 'http://photos4.meetupstatic.com/photos/member/c/e/2/4/member_111832772.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/c/e/2/4/thumb_111832772.jpeg' - members: 471 - name: Ember ATX - state: TX lat: 30.290000915527344 - who: Embereños - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Santa Monica - timezone: US/Pacific - created: 1366675893000 link: 'http://www.meetup.com/socal-angular/' - rating: 4.73 + name: SoCal AngularJS description: |-

If you love testable JavaScript, this group is for you!

If you want to getting into testing your code, jump in!

lon: -118.5 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/3/5/4/0/highres_228133632.jpeg' - photo_id: 228133632 photo_link: 'http://photos4.meetupstatic.com/photos/event/3/5/4/0/600_228133632.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/3/5/4/0/thumb_228133632.jpeg' - join_mode: open - organizer: - member_id: 5375132 - name: Rit Li - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/b/3/9/0/highres_250425968.jpeg' - photo_id: 250425968 - photo_link: 'http://photos3.meetupstatic.com/photos/member/b/3/9/0/member_250425968.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/b/3/9/0/thumb_250425968.jpeg' - members: 1239 - name: SoCal AngularJS - state: CA lat: 34.02000045776367 - who: Members - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Portland - timezone: US/Pacific - created: 1366831108000 link: 'http://www.meetup.com/Portland-JavaScript-Admirers/' - rating: 4.64 - description: >- -

We host monthly presentations and discussions on everything - JavaScript-related - including client-side application frameworks, - node.js, CoffeeScript, and whatever else comes up.
- - + name: Portland JavaScript Admirers + description: |- +

We host monthly presentations and discussions on everything JavaScript-related - including client-side application frameworks, node.js, CoffeeScript, and whatever else comes up.

- - - Join the conversation by subscribing to our mailing - list on Google Groups.
- - + Join the conversation by subscribing to our mailing list on Google Groups.

- - - Follow the Portland JavaScript Admirers on Twitter or - on Google+.
- - + Follow the Portland JavaScript Admirers on Twitter or on Google+.

- - - Find out about other groups and events in Portland on Calagator.

+ Find out about other groups and events in Portland on Calagator.

lon: -122.69000244140625 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/c/6/0/e/highres_228590702.jpeg' - photo_id: 228590702 photo_link: 'http://photos1.meetupstatic.com/photos/event/c/6/0/e/600_228590702.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/c/6/0/e/thumb_228590702.jpeg' - join_mode: open - organizer: - member_id: 7391716 - name: Jesse Hallett - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/b/6/f/0/highres_113026832.jpeg' - photo_id: 113026832 - photo_link: 'http://photos4.meetupstatic.com/photos/member/b/6/f/0/member_113026832.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/b/6/f/0/thumb_113026832.jpeg' - members: 1149 - name: Portland JavaScript Admirers - state: OR lat: 45.52000045776367 - who: Admirers - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Dallas - timezone: US/Central - created: 1367361055000 link: 'http://www.meetup.com/Club-AJAX/' - rating: 4.74 + name: Club AJAX description: '

Club AJAX is a site devoted to JavaScript and related technologies, such as CSS3 and HTML5, and strives to be the portal for the latest information, news and discussions surrounding front end development. The DFW Club AJAX User Group was founded by Bob Byron and Mike Wilcox in January 2009. The goal for the group is to gather a community of professionals with like-minded interests and everything involved in making great apps and websites.

' lon: -96.80000305175781 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/6/7/2/2/highres_337586402.jpeg' - photo_id: 337586402 photo_link: 'http://photos1.meetupstatic.com/photos/event/6/7/2/2/600_337586402.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/6/7/2/2/thumb_337586402.jpeg' - join_mode: open - organizer: - member_id: 32257602 - name: Mike Wilcox - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/2/7/8/a/highres_180490122.jpeg' - photo_id: 180490122 - photo_link: 'http://photos1.meetupstatic.com/photos/member/2/7/8/a/member_180490122.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/2/7/8/a/thumb_180490122.jpeg' - members: 461 - name: Club AJAX - state: TX lat: 32.970001220703125 - who: Ninjas - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Dublin - timezone: US/Eastern - created: 1367850536000 link: 'http://www.meetup.com/Columbus-Nodejs-User-Group/' - rating: 4.56 - description: >- -

With Columbus' Node.js community small but growing, it is time for - an avenue to share knowledge and to meet like-minded people. This group - hopes to do just that. We will meet to discuss favorite modules or - testing libraries, share our experiences, and most of all to share the - joy of Node.js with anyone interested.

- + name: Columbus Node.js User Group + description: |- +

With Columbus' Node.js community small but growing, it is time for an avenue to share knowledge and to meet like-minded people. This group hopes to do just that. We will meet to discuss favorite modules or testing libraries, share our experiences, and most of all to share the joy of Node.js with anyone interested.

Also join us on Google+.

-

https://plus.google.com/u/0/communities/107657401765720049052

lon: -83.12000274658203 - join_mode: open - organizer: - member_id: 89676002 - name: Keith McCanless - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/a/d/a/4/highres_115664452.jpeg' - photo_id: 115664452 - photo_link: 'http://photos2.meetupstatic.com/photos/member/a/d/a/4/member_115664452.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/a/d/a/4/thumb_115664452.jpeg' - members: 157 - name: Columbus Node.js User Group - state: OH lat: 40.099998474121094 - who: Callbacks - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Portland - timezone: US/Pacific - created: 1368054188000 link: 'http://www.meetup.com/ngpdxers/' - rating: 4.55 - description: >- -

We are a community of javascript enthusiasts that share a love for - Angular.  Some of us have been using it for years and others are - just hearing about it.  

- -

Each month we get together to hear about all the great things that - make up the Angular framework and see what great things people are - creating with it.

+ name: Angular Portland Meetup + description: |- +

We are a community of javascript enthusiasts that share a love for Angular.  Some of us have been using it for years and others are just hearing about it.  

+

Each month we get together to hear about all the great things that make up the Angular framework and see what great things people are creating with it.

lon: -122.69000244140625 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/9/f/c/b/highres_435640907.jpeg' - photo_id: 435640907 photo_link: 'http://photos2.meetupstatic.com/photos/event/9/f/c/b/600_435640907.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/9/f/c/b/thumb_435640907.jpeg' - join_mode: open - organizer: - member_id: 90651732 - name: Ryan Webber - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/9/b/1/6/highres_142539702.jpeg' - photo_id: 142539702 - photo_link: 'http://photos3.meetupstatic.com/photos/member/9/b/1/6/member_142539702.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/9/b/1/6/thumb_142539702.jpeg' - members: 1041 - name: Angular Portland Meetup - state: OR lat: 45.5 - who: Members - - utc_offset: -25200000 - country: CA - visibility: public + - country: CA city: Vancouver - timezone: Canada/Pacific - created: 1368140276000 link: 'http://www.meetup.com/CSS-Brigade-Vancouver/' - rating: 4.66 + name: CSS Brigade Vancouver description: "

It's been long overdue the need for a CSS meetup in Vancouver...

\n

The world of CSS is changing extremely fast and it's getting harder and harder to keep up. There are no shortage of challenges when it comes to writing and maintaining CSS for modern web applications.

\n

Let's solve that problem. Come to share and learn the latest CSS techniques at CSS Brigade.

\n
    \n

    Responsive/Adaptive Design

    \n

    Semantic Grids

    \n

    SMACSS, OOCSS and BEM

    \n

    CSS Frameworks

    \n

    Anything related to CSS...

    \n
" lon: -123.0999984741211 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/7/f/2/8/highres_234332552.jpeg' - photo_id: 234332552 photo_link: 'http://photos2.meetupstatic.com/photos/event/7/f/2/8/600_234332552.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/7/f/2/8/thumb_234332552.jpeg' - join_mode: open - organizer: - member_id: 45905542 - name: Kenneth Ormandy - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/b/3/4/e/highres_193545902.jpeg' - photo_id: 193545902 - photo_link: 'http://photos2.meetupstatic.com/photos/member/b/3/4/e/member_193545902.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/b/3/4/e/thumb_193545902.jpeg' - members: 984 - name: CSS Brigade Vancouver - state: BC lat: 49.279998779296875 - who: Members - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Stevens Point - timezone: US/Central - created: 1368498326000 link: 'http://www.meetup.com/Central-WI-Developers-Group/' - rating: 4.26 + name: Central WI Developers Group description: '

This is a group for anyone who is interested in software development and/or related topics. All skill levels are welcome.

' lon: -89.55999755859375 - join_mode: open - organizer: - member_id: 93354112 - name: Tim Hess - members: 376 - name: Central WI Developers Group - state: WI lat: 44.540000915527344 - who: Members - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Richmond - timezone: US/Eastern - created: 1368805950000 link: 'http://www.meetup.com/rva-js/' - rating: 4.6 + name: RVA.js description: "

Let's get together to talk about how to use JavaScript to build applications. Visit our site here: http://rvajs.com/

" lon: -77.48999786376953 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/d/1/b/2/highres_338873682.jpeg' - photo_id: 338873682 photo_link: 'http://photos3.meetupstatic.com/photos/event/d/1/b/2/600_338873682.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/d/1/b/2/thumb_338873682.jpeg' - join_mode: open - organizer: - member_id: 117044032 - name: Gaelen Kash - members: 469 - name: RVA.js - state: VA lat: 37.560001373291016 - who: Members - - utc_offset: -14400000 - country: CA - visibility: public + - country: CA city: Toronto - timezone: Canada/Eastern - created: 1368813619000 link: 'http://www.meetup.com/AngularJS-Toronto/' - rating: 4.79 + name: 'AngularJS Toronto (#AngularJSTO)' description: "

Welcome to the Toronto AngularJS meetup. We generally try to meet the 3rd Wednesday of every month. Join our group and follow us\_on twitter for updates, @NGToronto.

\n

AngularJS is the future of web development. It's so much better than everything else you'll shed tears of joy as you finally shed the trauma of out-of-control unobtrusive JavaScript (how on earth do you figure out what a page does?), jQuery (amazing but it doesn't scale), overloaded CSS (update at your own risk!) and the resulting expensive and unmaintainable web applications. AngularJS is to jQuery what jQuery is to non-library JavaScript. It's that good.

\n

The 5 D's of AngularJS:

\n

1. DRY. Don't repeat yourself, which means no boilerplate.

\n

2. Declarative. HTML is the template and markup with AngularJS directives is the templating language. This works perfectly thanks to the next two D's.

\n

3. Dependency injection. Now I'm crying. You can actually test AngularJS apps, but more importantly you have scoping kung-fu where everything is modular, decoupled, and has a clearly logical place to go. It's pretty, implicit, magical, and it fixes 90% of what's wrong with every other JavaScript framework.

\n

4. Data-binding. Now I'm openly weeping with joy. Data-binding in a dependency managed, magically scoped, declarative, and DRY language is beautiful, amazingly succinct and powerful. Data-binding isn't the start with Angular- it's result. And this is the essence of Angular- the magic is in how everything works together. Dry + Declarative + Dependency Injection + Data-binding ALL work together. Remove one of them and AngularJS isn't AngularJS.

\n

5. Designer-Friendly. Your CSS will no longer look like you wrote it while on crack, and you can see within the HTML the general outline of what those developers are doing. And with that, you are free to go to town on the markup so long as you don't delete the ng- magic tags. Yes, dear designer, you can change the markup and style the application without destroying the business logic. How cool is that.

\n

So there you have it.

\n

Tweet insights to @NGToronto using the #AngularJSTO hashtag.

\n

PRESENTING:

\n

We are always looking for speakers & presenters for future meetups, so if you are using or teaching AngularJS, please submit to speak:

\n

http://tinyurl.com/AJSTO-Speaker

\n

If you wish to recommend someone to speak or a topic you want covered, please submit to:

\n

http://tinyurl.com/AJSTO-Recommend

\n

if you have an interest in sharing your work with the group.

\n

Watch these and other AngularJS-Toronto meetup talks at\_youtube.com/rangleio

" lon: -79.37999725341797 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/1/0/3/highres_436380259.jpeg' - photo_id: 436380259 photo_link: 'http://photos3.meetupstatic.com/photos/event/1/0/3/600_436380259.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/1/0/3/thumb_436380259.jpeg' - join_mode: open - organizer: - member_id: 8968154 - name: Nick Van Weerdenburg - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/1/c/e/a/highres_118267402.jpeg' - photo_id: 118267402 - photo_link: 'http://photos1.meetupstatic.com/photos/member/1/c/e/a/member_118267402.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/1/c/e/a/thumb_118267402.jpeg' - members: 1988 - name: 'AngularJS Toronto (#AngularJSTO)' - state: 'ON' lat: 43.650001525878906 - who: Members - - utc_offset: -28800000 - country: US - visibility: public + - country: US city: Berkeley - timezone: US/Pacific - created: 1369354897000 link: 'http://www.meetup.com/Angular-js-Meetup/' - rating: 5 + name: East Bay AngularJS + description: |- -

East Bay AngularJS. More info coming soon!

+

East Bay AngularJS. We'll be talking about Angular 2, ES6, Typescript, and JavaScript in general.

+

If you would like to present about Angular 2 topics, please contact me through the link in the sidebar.

If you're interested in helping to organize events, or know of a good venue, send an email. Be sure to also join the Code Self Study group!

lon: -122.26000213623047 - join_mode: open - organizer: - member_id: 13305837 - name: Itay Herskovits - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/4/0/e/7/highres_248056615.jpeg' - photo_id: 248056615 - photo_link: 'http://photos3.meetupstatic.com/photos/member/4/0/e/7/member_248056615.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/4/0/e/7/thumb_248056615.jpeg' - members: 448 - name: East Bay AngularJS Meetup - state: CA lat: 37.869998931884766 - who: Front End Engineers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Berkeley - timezone: US/Pacific - created: 1369849716000 link: 'http://www.meetup.com/Javascript-from-Zero-to-Hero/' - rating: 4.78 - description: >- -

Often considered as not so serious in the recent past, Javascript - has come a long way in becoming the most popular language used on all - size projects. A handful of libraries such as jQuery brought it to the - masses and unveiled the true potential of JS resulting in a widespread - adoption of it. As you may find out it is very easy to get started with - Javascript, almost instantly you can see your code being executed in - the browser window and strike a superhero pose thinking out loud "I - rock!!!." In reality as easy it is to write JS code it's even easier to - write bad code or over engineered chunks to do simple or complex - tasks. 

- -


This meetup is geared toward the beginner in programing in - general with a focus on Javascript. We will take the baby steps to - learn the core language first and slowly but surely look at libraries - and frameworks.
If you are a print or web designer who has never - coded before but want to add a new skill to your toolbox, a hobbyist - who is enthusiastic about new languages and technologies in general, or - want to unlock the true potential of HTML5 with the new APIs such as - geolocation, File, websockets and more, this is definitely the meetup - for you. 

- -


This will be run workshop style with a lot of hands on training - and a small amount of lectures and presentations. So come and get ready - to get your hands dirty.

- lon: -122.26000213623047 - join_mode: open - organizer: - member_id: 60481092 - name: Bianca Gandolfo - photo: - photo_id: 151311872 - photo_link: 'http://photos2.meetupstatic.com/photos/member/c/a/a/0/member_151311872.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/c/a/a/0/thumb_151311872.jpeg' - members: 1104 name: Javascript from Zero to Hero - state: CA + description: |- +

Often considered as not so serious in the recent past, Javascript has come a long way in becoming the most popular language used on all size projects. A handful of libraries such as jQuery brought it to the masses and unveiled the true potential of JS resulting in a widespread adoption of it. As you may find out it is very easy to get started with Javascript, almost instantly you can see your code being executed in the browser window and strike a superhero pose thinking out loud "I rock!!!." In reality as easy it is to write JS code it's even easier to write bad code or over engineered chunks to do simple or complex tasks. 

+


This meetup is geared toward the beginner in programing in general with a focus on Javascript. We will take the baby steps to learn the core language first and slowly but surely look at libraries and frameworks.
If you are a print or web designer who has never coded before but want to add a new skill to your toolbox, a hobbyist who is enthusiastic about new languages and technologies in general, or want to unlock the true potential of HTML5 with the new APIs such as geolocation, File, websockets and more, this is definitely the meetup for you. 

+


This will be run workshop style with a lot of hands on training and a small amount of lectures and presentations. So come and get ready to get your hands dirty.

+ lon: -122.26000213623047 lat: 37.880001068115234 - who: hero - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Diego - timezone: US/Pacific - created: 1370325300000 link: 'http://www.meetup.com/San-Diego-JavaScript-Study-Group/' - description: >- -

Trying to work through a JavaScript book or tutorial you found on - the web? Have questions about a specific js concept? Bring it to the - study group! This is your chance to make progress and ask questions in - a non-intimidating environment. Our small group setting is perfect for - in-depth discussions.

- -

Suggest a book or article and we will work through the exercises - together. We can also work through various JavaScript concepts to get - a better understanding of the language.

- lon: -117.19999694824219 - join_mode: open - organizer: - member_id: 61180792 - name: Todd Bashor - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/e/6/7/0/highres_122518992.jpeg' - photo_id: 122518992 - photo_link: 'http://photos1.meetupstatic.com/photos/member/e/6/7/0/member_122518992.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/e/6/7/0/thumb_122518992.jpeg' - members: 111 name: San Diego JavaScript Study Group - state: CA + description: |- +

Trying to work through a JavaScript book or tutorial you found on the web? Have questions about a specific js concept? Bring it to the study group! This is your chance to make progress and ask questions in a non-intimidating environment. Our small group setting is perfect for in-depth discussions.

+

Suggest a book or article and we will work through the exercises together. We can also work through various JavaScript concepts to get a better understanding of the language.

+ lon: -117.19999694824219 lat: 32.88999938964844 - who: Javascripters - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Leesburg - timezone: US/Eastern - created: 1370617931000 link: 'http://www.meetup.com/Ruby-LoCo/' - rating: 4.89 + name: Ruby LoCo description: '

Rubyists of Loudoun County, VA. We meet the last Friday of every month for lunch. We also meet the second Monday of every month for a hack night. Please join us.

' lon: -77.61000061035156 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/a/0/9/8/highres_247241112.jpeg' - photo_id: 247241112 photo_link: 'http://photos2.meetupstatic.com/photos/event/a/0/9/8/600_247241112.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/a/0/9/8/thumb_247241112.jpeg' - join_mode: open - organizer: - member_id: 8134066 - name: Chris Mar - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/6/2/6/highres_60313862.jpeg' - photo_id: 60313862 - photo_link: 'http://photos2.meetupstatic.com/photos/member/3/6/2/6/member_60313862.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/3/6/2/6/thumb_60313862.jpeg' - members: 306 - name: Ruby LoCo - state: VA lat: 39.08000183105469 - who: Members - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Irvine - timezone: US/Pacific - created: 1371488426000 link: 'http://www.meetup.com/Node-JS-OC/' - rating: 4.75 + name: Node.js OC description: '

Lets Learn, Hack, Build with Javascript and Node JS. All skills welcome.

' lon: -117.83000183105469 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/8/3/e/c/highres_419193772.jpeg' - photo_id: 419193772 photo_link: 'http://photos2.meetupstatic.com/photos/event/8/3/e/c/600_419193772.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/8/3/e/c/thumb_419193772.jpeg' - join_mode: open - organizer: - member_id: 64067082 - name: Mark Wilkerson - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/6/c/8/6/highres_233547782.jpeg' - photo_id: 233547782 - photo_link: 'http://photos2.meetupstatic.com/photos/member/6/c/8/6/member_233547782.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/6/c/8/6/thumb_233547782.jpeg' - members: 560 - name: Node.js OC - state: CA lat: 33.68000030517578 - who: NodeJS Ninjas - - utc_offset: -25200000 - country: US - visibility: public_limited - city: San Francisco - timezone: US/Pacific - created: 1371537496000 - link: 'http://www.meetup.com/Startup-Engineering-Course-Summer-2013-SF-Bay-Area/' - rating: 4.89 - description: '

This is a group for SF Bay Area people who want to work on learning Javascript and related tools (node.js, backbone.js, etc.) for use in a course like the Stanford Startup Engineering course on Coursera that ran in the summer of 2013. The intended audience is non-programmers who want to learn and experienced programmers who want to teach. It is a follow on to the meetup group for the course.

' - lon: -122.45999908447266 - join_mode: approval - organizer: - member_id: 12238436 - name: Mark V Wilson - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/1/f/4/c/highres_125888012.jpeg' - photo_id: 125888012 - photo_link: 'http://photos3.meetupstatic.com/photos/member/1/f/4/c/member_125888012.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/1/f/4/c/thumb_125888012.jpeg' - members: 216 - name: Programming Prep for Startup Engineering - SF Bay Area - state: CA - lat: 37.779998779296875 - who: Startup Engineers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Santa Barbara - timezone: US/Pacific - created: 1371600292000 link: 'http://www.meetup.com/Santa-Barbara-JavaScript-Meetup/' - rating: 4.84 + name: Santa Barbara JavaScript description: '

SB has Rails. SB has Python. SB has UX! But where is the JavaScript love? Want to escape your jQuery hammer? Want to learn the ins and outs of JavaScript the language?  Interested in ES6 and 7? Interested in using sweet new frameworks like React, Angular, Aurelia, Ember. Or maybe Node is your thing? Want to know different styles of programming like imperative, object-oriented, functional, or even functional reactive? Maybe learn how to test and organize your code better? Want to hack on cool projects? This could be for you! Come and join us.

' lon: -119.70999908447266 - join_mode: open - organizer: - member_id: 4088323 - name: Tim Doherty - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/5/1/7/e/highres_249560862.jpeg' - photo_id: 249560862 - photo_link: 'http://photos4.meetupstatic.com/photos/member/5/1/7/e/member_249560862.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/5/1/7/e/thumb_249560862.jpeg' - members: 316 - name: Santa Barbara JavaScript - state: CA lat: 34.41999816894531 - who: Prototypes - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: New York - timezone: US/Eastern - created: 1371835076000 link: 'http://www.meetup.com/statsd/' + name: StatsD NY Meetup description: '

This Meetup is about supporting the community and users that are using StatsD to measure their own custom application metrics. Meetups will go over how others are using StatsD, and connecting the community with each other to share war stories and best practices.

' lon: -74 - join_mode: open - organizer: - member_id: 13498584 - name: 'Trend Micro, Inc.' - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/a/2/2/8/highres_68681512.jpeg' - photo_id: 68681512 - photo_link: 'http://photos4.meetupstatic.com/photos/member/a/2/2/8/member_68681512.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/a/2/2/8/thumb_68681512.jpeg' - members: 11 - name: StatsD NY Meetup - state: NY lat: 40.7400016784668 - who: Developers - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Austin - timezone: US/Central - created: 1372133519000 link: 'http://www.meetup.com/openhackatx/' - rating: 4.66 + name: OpenHack Austin description: "

OpenHack, as the name implies, is an open \"forum\" for all software engineers in the city to come together and work on any project they like in a setting conducive to meeting new people, getting work done, and/or learning new skills. It's a great chance to get out and pair with others (or work by yourself), bounce ideas off other people, and connect with other developers in the city. Any project, any programming language, any platform, any reason - everyone who's looking to write some code (or pair program) is welcome. Take some time to work on that side project, learn a new skill, and make some new friends by coming out to OpenHack Austin.

" lon: -97.73999786376953 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/2/c/3/a/highres_252311322.jpeg' - photo_id: 252311322 photo_link: 'http://photos2.meetupstatic.com/photos/event/2/c/3/a/600_252311322.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/2/c/3/a/thumb_252311322.jpeg' - join_mode: open - organizer: - member_id: 118781102 - name: Joshua Johnson - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/1/8/8/a/highres_217146282.jpeg' - photo_id: 217146282 - photo_link: 'http://photos3.meetupstatic.com/photos/member/1/8/8/a/member_217146282.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/1/8/8/a/thumb_217146282.jpeg' - members: 1433 - name: OpenHack Austin - state: TX lat: 30.270000457763672 - who: OpenHackers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Chandler - timezone: US/Arizona - created: 1372707250000 link: 'http://www.meetup.com/Phoenix-Angular-js/' - rating: 5 + name: Phoenix Angular.js description: '

Angular.js is on FIRE. Whether you are already working with angularJS or you are a front end developer working with javascript, ember, jquery, etc, we are bringing people together to grow and strengthen the community of people who use AngularJS.

' lon: -111.91999816894531 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/b/7/c/c/highres_258347052.jpeg' - photo_id: 258347052 photo_link: 'http://photos1.meetupstatic.com/photos/event/b/7/c/c/600_258347052.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/b/7/c/c/thumb_258347052.jpeg' - join_mode: open - organizer: - member_id: 9231723 - name: Tim Thomas - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/6/3/8/highres_6241592.jpeg' - photo_id: 6241592 - photo_link: 'http://photos1.meetupstatic.com/photos/member/6/3/8/member_6241592.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/6/3/8/thumb_6241592.jpeg' - members: 203 - name: Phoenix Angular.js - state: AZ lat: 33.310001373291016 - who: Angularians - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Minneapolis - timezone: US/Central - created: 1372800496000 link: 'http://www.meetup.com/NodeMN/' - rating: 4.72 + name: NodeMN description: '

A group for anyone interested in Node.js regardless of skill level or experience. Join us in discussing the latest frameworks, projects, conferences and hacks using anything node.

' lon: -93.25 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/5/a/c/0/highres_373703232.jpeg' - photo_id: 373703232 photo_link: 'http://photos1.meetupstatic.com/photos/event/5/a/c/0/600_373703232.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/5/a/c/0/thumb_373703232.jpeg' - join_mode: open - organizer: - member_id: 32783162 - name: Mike Frey - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/7/0/2/8/highres_139168712.jpeg' - photo_id: 139168712 - photo_link: 'http://photos3.meetupstatic.com/photos/member/7/0/2/8/member_139168712.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/7/0/2/8/thumb_139168712.jpeg' - members: 677 - name: NodeMN - state: MN lat: 45 - who: Developers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Jose - timezone: US/Pacific - created: 1373669024000 link: 'http://www.meetup.com/Samsung-Developers/' - rating: 4.08 - description: >- -

Samsung Developer Connection is a team dedicated to serving you by - connecting people with BIG opportunities at Samsung—tools, workshops, - networking events, introductions to Samsung business leaders. Access to - our powerful smartphones, tablets, Samsung GALAXY Apps store, Smart - tv’s, wearables, virtual reality—we are here to pave new roads to help - you stand out above the crowd.

- + name: Samsung Developer Connection + description: |- +

Samsung Developer Connection is a team dedicated to serving you by connecting people with BIG opportunities at Samsung—tools, workshops, networking events, introductions to Samsung business leaders. Access to our powerful smartphones, tablets, Samsung GALAXY Apps store, Smart tv’s, wearables, virtual reality—we are here to pave new roads to help you stand out above the crowd.


lon: -121.88999938964844 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/8/7/2/3/highres_439294595.jpeg' - photo_id: 439294595 photo_link: 'http://photos2.meetupstatic.com/photos/event/8/7/2/3/600_439294595.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/8/7/2/3/thumb_439294595.jpeg' - join_mode: open - organizer: - member_id: 185970783 - name: Tho Nguyen - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/7/0/4/a/highres_245188746.jpeg' - photo_id: 245188746 - photo_link: 'http://photos3.meetupstatic.com/photos/member/7/0/4/a/member_245188746.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/7/0/4/a/thumb_245188746.jpeg' - members: 337 - name: Samsung Developer Connection - state: CA lat: 37.33000183105469 - who: Hackers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Mountain View - timezone: US/Pacific - created: 1374380628000 link: 'http://www.meetup.com/Meteor-South-Bay/' - rating: 4.84 - description: >- -

We're all about Meteor! Meteor is a complete open source - platform for building web and mobile apps in pure JavaScript. - Learn more about it at http://meteor.com.

- -

We do various kinds of meetups all over the South Bay. Most of them - focus on speakers and lightning talks, but we also like to get together - for hands on working sessions and occasionally do more social events - too! Our favourite hangout spots are tech companies in the area - we've - been to Google, Mozilla, MongoDB, ShareThis, Nook, Elastic, Shape and - more so far.

- -

This is a meetup for newbies and advanced users alike. If you're - looking to learn about Meteor, we'll be there to help you out! Just - come to a hands on working session, generally organised by Laurie, and - get to know other early Meteor developers. If you've built something - with Meteor and you'd like to share, let us know and we can schedule - a lightning talk for you at the next meetup!

- + name: Meteor South Bay + description: |- +

We're all about Meteor! Meteor is a complete open source platform for building web and mobile apps in pure JavaScript. Learn more about it at http://meteor.com.

+

We do various kinds of meetups all over the South Bay. Most of them focus on speakers and lightning talks, but we also like to get together for hands on working sessions and occasionally do more social events too! Our favourite hangout spots are tech companies in the area - we've been to Google, Mozilla, MongoDB, ShareThis, Nook, Elastic, Shape and more so far.

+

This is a meetup for newbies and advanced users alike. If you're looking to learn about Meteor, we'll be there to help you out! Just come to a hands on working session, generally organised by Laurie, and get to know other early Meteor developers. If you've built something with Meteor and you'd like to share, let us know and we can schedule a lightning talk for you at the next meetup!


lon: -122.05000305175781 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/7/7/b/4/highres_438270644.jpeg' - photo_id: 438270644 photo_link: 'http://photos2.meetupstatic.com/photos/event/7/7/b/4/600_438270644.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/7/7/b/4/thumb_438270644.jpeg' - join_mode: open - organizer: - member_id: 81670332 - name: Nick Coe - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/3/6/1/b/highres_246673851.jpeg' - photo_id: 246673851 - photo_link: 'http://photos2.meetupstatic.com/photos/member/3/6/1/b/member_246673851.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/3/6/1/b/thumb_246673851.jpeg' - members: 601 - name: Meteor South Bay - state: CA lat: 37.40999984741211 - who: Meteorites - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Portland - timezone: US/Pacific - created: 1374822869000 link: 'http://www.meetup.com/PDX-Web-Development/' - rating: 4.9 + name: PDX Web Development description: "

This group will focus on anything about development and technologies that run on the browsers (i.e. JavaScript (JS), JS frameworks (AngularJs, Backbone), HTML5, CSS3, Web Performance, etc..). I started this group because I want to share what I know about web development with other people and learning from them at the same time. I hope this meetup will also be a place where people can network and enjoy good conversations.

\n

\_

\n

Best,

\n

Your Organizers
\n\n

" lon: -122.66999816894531 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/c/8/f/2/highres_279831442.jpeg' - photo_id: 279831442 photo_link: 'http://photos1.meetupstatic.com/photos/event/c/8/f/2/600_279831442.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/c/8/f/2/thumb_279831442.jpeg' - join_mode: approval - organizer: - member_id: 79566332 - name: Dwight Morrow - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/6/0/1/a/highres_149004602.jpeg' - photo_id: 149004602 - photo_link: 'http://photos4.meetupstatic.com/photos/member/6/0/1/a/member_149004602.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/6/0/1/a/thumb_149004602.jpeg' - members: 622 - name: PDX Web Development - state: OR lat: 45.52000045776367 - who: Web Ninjas - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Diego - timezone: US/Pacific - created: 1375303706000 link: 'http://www.meetup.com/thestartersacademy/' - rating: 5 + name: "The Starter's Academy" description: "

Learn how to design, code, and deliver web applications. The Starter's Academy is creating a growing, vibrant community of people with the skills to build the web applications they envision. Our instructors tailor the workshop to your knowledge and goals. We will teach you how to imagine, build, and demo\_minimum viable products. using HTML, CSS, JavaScript, Backbone.js, and Node.js. Learning these skills can help you start a new career, launch a product, or create a company.

" lon: -117.19999694824219 - join_mode: open - organizer: - member_id: 61180792 - name: Todd Bashor - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/e/6/7/0/highres_122518992.jpeg' - photo_id: 122518992 - photo_link: 'http://photos1.meetupstatic.com/photos/member/e/6/7/0/member_122518992.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/e/6/7/0/thumb_122518992.jpeg' - members: 105 - name: "The Starter's Academy" - state: CA lat: 32.88999938964844 - who: Starters - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: San Antonio - timezone: US/Central - created: 1375844219000 link: 'http://www.meetup.com/San-Antonio-JavaScript-User-Group/' - rating: 4.74 - description: >- -

Hill Country JS is a monthly meetup in San Antonio, Texas. - Come to listen to industry leaders, work with other JavaScript - enthusiasts  and nerd out to the latest in web development. We - have members with all sorts of backgrounds and experiences, so no - worries if you're new to JavaScript.

- -

Follow us on Twitter - for the latest updates. Chat with - us.

- -

Interested in speaking? Submit a proposal!

+ name: Hill Country JavaScript + description: |- +

Hill Country JS is a monthly meetup in San Antonio, Texas. Come to listen to industry leaders, work with other JavaScript enthusiasts  and nerd out to the latest in web development. We have members with all sorts of backgrounds and experiences, so no worries if you're new to JavaScript.

+

Follow us on Twitter for the latest updates. Chat with us.

+

Interested in speaking? Submit a proposal!

lon: -98.48999786376953 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/b/1/5/a/highres_278445402.jpeg' - photo_id: 278445402 photo_link: 'http://photos3.meetupstatic.com/photos/event/b/1/5/a/600_278445402.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/b/1/5/a/thumb_278445402.jpeg' - join_mode: open - organizer: - member_id: 11734531 - name: Kevin Lamping - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/7/0/c/8/highres_138088872.jpeg' - photo_id: 138088872 - photo_link: 'http://photos3.meetupstatic.com/photos/member/7/0/c/8/member_138088872.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/7/0/c/8/thumb_138088872.jpeg' - members: 305 - name: Hill Country JavaScript - state: TX lat: 29.420000076293945 - who: JavaScripters - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Francisco - timezone: US/Pacific - created: 1375918195000 link: 'http://www.meetup.com/the-future-of-software-design-sf/' - rating: 4.4 + name: The Future of Software Design - San Francisco Meetup description: "

Like the tortoise and the hare, software and hardware race ahead at wildly different paces. \_Hardware leaps every 2 years, but the steps into the future of software happen maybe every 20 years. Join us on an adventure to find the little known shortcuts to the future of software design.

\n

This Meetup is for designers, developers and innovators who make digital things. \_Come expecting a gamut of the technical, inspirational and the wild. Come nerd-out with us!

" lon: -122.44000244140625 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/1/6/4/6/highres_269525702.jpeg' - photo_id: 269525702 photo_link: 'http://photos1.meetupstatic.com/photos/event/1/6/4/6/600_269525702.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/1/6/4/6/thumb_269525702.jpeg' - join_mode: open - organizer: - member_id: 18254851 - name: D4 Tocchini - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/a/5/2/highres_138602642.jpeg' - photo_id: 138602642 - photo_link: 'http://photos3.meetupstatic.com/photos/member/a/5/2/member_138602642.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/a/5/2/thumb_138602642.jpeg' - members: 269 - name: The Future of Software Design - San Francisco Meetup - state: CA lat: 37.779998779296875 - who: Members - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Chicago - timezone: US/Central - created: 1376480719000 link: 'http://www.meetup.com/Chicago-Backbone/' - rating: 4.72 + name: Chicago Backbone JS description: "

A group based on furthering JavaScript and Backbone development in Chicago We focus on web technologies, but won't leave HTML-native mobile or NodeJS spheres out! Come share your experiences, opinions and questions with fellow JS superheroes :)

" lon: -87.63999938964844 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/a/3/6/8/highres_292061832.jpeg' - photo_id: 292061832 photo_link: 'http://photos3.meetupstatic.com/photos/event/a/3/6/8/600_292061832.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/a/3/6/8/thumb_292061832.jpeg' - join_mode: open - organizer: - member_id: 3717520 - name: Mattie T Langenberg - photo: - photo_id: 83905122 - photo_link: 'http://photos4.meetupstatic.com/photos/member/6/2/2/2/member_83905122.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/6/2/2/2/thumb_83905122.jpeg' - members: 503 - name: Chicago Backbone JS - state: IL lat: 41.880001068115234 - who: Backbonians - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Nashville - timezone: US/Central - created: 1377740622000 link: 'http://www.meetup.com/nashjs/' - rating: 4.71 + name: NashJS description: '

A group for people interested in software development using Javascript. http://nashjs.org

' lon: -86.77999877929688 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/4/d/9/6/highres_277219862.jpeg' - photo_id: 277219862 photo_link: 'http://photos1.meetupstatic.com/photos/event/4/d/9/6/600_277219862.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/4/d/9/6/thumb_277219862.jpeg' - join_mode: open - organizer: - member_id: 8111102 - name: William Golden - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/6/2/d/4/highres_12265300.jpeg' - photo_id: 12265300 - photo_link: 'http://photos1.meetupstatic.com/photos/member/6/2/d/4/member_12265300.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/6/2/d/4/thumb_12265300.jpeg' - members: 1167 - name: NashJS - state: TN lat: 36.16999816894531 - who: members - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Atlanta - timezone: US/Eastern - created: 1378008554000 link: 'http://www.meetup.com/meansters/' - rating: 5 + name: 'Atlanta MEAN (Mongo, Express, Angular, Node) Developers' description: "

\_

\n

\n

\_

\n

\_

\n

\_

\n

\_

\n

\_

\n

\_

\n

\_

\n

A group for software development professionals, who are interested to exchange ideas and share their experience on application development using MEAN Stack (Mongo, Express, Angular, Node).

\n

\_

\n

\_

" lon: -84.38999938964844 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/3/1/e/4/highres_289872772.jpeg' - photo_id: 289872772 photo_link: 'http://photos1.meetupstatic.com/photos/event/3/1/e/4/600_289872772.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/3/1/e/4/thumb_289872772.jpeg' - join_mode: open - organizer: - member_id: 54795932 - name: Tejas - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/6/9/2/highres_140341682.jpeg' - photo_id: 140341682 - photo_link: 'http://photos1.meetupstatic.com/photos/member/6/9/2/member_140341682.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/6/9/2/thumb_140341682.jpeg' - members: 213 - name: 'Atlanta MEAN (Mongo, Express, Angular, Node) Developers' - state: GA lat: 33.75 - who: meansters - - utc_offset: -14400000 - country: US - visibility: public_limited + - country: US city: New York - timezone: US/Eastern - created: 1378124171000 link: 'http://www.meetup.com/nodebots/' - rating: 4.87 - description: >- -

Nodebots NYC is a meetup for hardware and - javascript enthusiasts and hackers of all skill levels. 

- -

We run monthly workshops where you can get advice, show off what - you're working on, help others, and play with the latest and greatest - hardware. Nodebots are by name robots powered by NodeJS and Javascript - but often includes software in all languages. They're a great way to - learn JavaScript and Hardware concepts.

- -

http://johnny-five.io is a great - place to get started if you want to get familiar before an - event. 

- -

So come join us and solve a problem, play with - hardware or learn something new!

+ name: Nodebots NYC + description: |- +

Nodebots NYC is a meetup for hardware and javascript enthusiasts and hackers of all skill levels. 

+

We run monthly workshops where you can get advice, show off what you're working on, help others, and play with the latest and greatest hardware. Nodebots are by name robots powered by NodeJS and Javascript but often includes software in all languages. They're a great way to learn JavaScript and Hardware concepts.

+

http://johnny-five.io is a great place to get started if you want to get familiar before an event. 

+

So come join us and solve a problem, play with hardware or learn something new!

lon: -74 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/2/c/4/4/highres_278771332.jpeg' - photo_id: 278771332 photo_link: 'http://photos3.meetupstatic.com/photos/event/2/c/4/4/600_278771332.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/2/c/4/4/thumb_278771332.jpeg' - join_mode: open - organizer: - member_id: 27859152 - name: Francis Gulotta - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/a/b/6/6/highres_251683878.jpeg' - photo_id: 251683878 - photo_link: 'http://photos3.meetupstatic.com/photos/member/a/b/6/6/member_251683878.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/a/b/6/6/thumb_251683878.jpeg' - members: 678 - name: Nodebots NYC - state: NY lat: 40.720001220703125 - who: robot-hackers - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: East Troy - timezone: US/Central - created: 1378826523000 link: 'http://www.meetup.com/East-Troy-Computer-Club/' - rating: 4.68 + name: East Troy Computer Club description: "

The East Troy Computer Club is a community-driven group of all-age, all-skill level tinkerers interested in playing with technology. We meet every other week (or so) over a variety of topics at a cafe on the historic square of East Troy, WI.

\n

This club is about a year old now. Smaller meetups tend to take on a roudntable discussion format while larger turnouts/topics are more formal in presentation. Feel free to jump in on the conversation, show & tell your latest project or challenge.

\n

Each meetup will have a theme and loose agenda to guide the group. Some will be geared towards kids, or helping grandparents out with getting their email to work. Others, and likely most consistently, we'll be a group of adults talking mostly about internet and hardware technologies. A little on the advanced side, but what better group of talented folks to serve as a backbone to a club such as this!

\n

Things we're open to meeting over:

\n

• Arts & Craft projects utilizing technology.\_
\n\n Robotics. Ardiuno, Raspberry Pi, Tessel hardware projects.\_
\n\n•
Web development, design, scaling and performance.\_
\n\n•
Hands-on workshops. Such as 'intro to electronics' for children.\_
\n\n•
Summer 'bootup camps'—Computer summer camp for kids.\_
\n\n•
Programming, Unit tests, Development tools and tips.\_
\n\n•
GNU/Linux, UNIX and general System Administration.\_
\n\n•
Productivity, Workflow and staying focus.\_
\n\n•
Collecting/Mining local (meta) data.
\n\n•
Practicing your presentation skills with us.\_
\n\n•
Sprints (work on projects together, right then and there).\_
\n\n•
Tutorials / HOWTO's - An instructor walks the group through a particular topic.\_
\n\n•
Helping Seniors stay connected.\_
\n\n•
Sharing tips, tricks and software.

\n

As we grow, certain interests or projects may branch out of this club, such as working with the Public Library and other facilities. We also have a GitHub organization; http://github.com/etcc/

\n

We're a patient body of tinkerers invested in local community and set out to foster discovery and education of technology.

\n

You don't have to be from East Troy to participate. Come on over!

" lon: -88.41999816894531 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/9/6/1/7/highres_433298423.jpeg' - photo_id: 433298423 photo_link: 'http://photos1.meetupstatic.com/photos/event/9/6/1/7/600_433298423.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/9/6/1/7/thumb_433298423.jpeg' - join_mode: open - organizer: - member_id: 11428412 - name: Ben Keating - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/2/a/4/6/highres_148990822.jpeg' - photo_id: 148990822 - photo_link: 'http://photos4.meetupstatic.com/photos/member/2/a/4/6/member_148990822.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/2/a/4/6/thumb_148990822.jpeg' - members: 217 - name: East Troy Computer Club - state: WI lat: 42.79999923706055 - who: Members - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Jacksonville - timezone: US/Eastern - created: 1379101145000 link: 'http://www.meetup.com/Jax-Node-js-UG/' - rating: 4.85 - description: >- -

Want to learn more about Node.js, a great way of running - non-blocking javascript on the server. Join our meetup!

- + name: Jax Node.js UG + description: |- +

Want to learn more about Node.js, a great way of running non-blocking javascript on the server. Join our meetup!

Come to our web site.

lon: -81.51000213623047 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/3/6/b/c/highres_287834012.jpeg' - photo_id: 287834012 photo_link: 'http://photos1.meetupstatic.com/photos/event/3/6/b/c/600_287834012.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/3/6/b/c/thumb_287834012.jpeg' - join_mode: open - organizer: - member_id: 6582383 - name: David Fekke - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/1/2/e/0/highres_100504832.jpeg' - photo_id: 100504832 - photo_link: 'http://photos3.meetupstatic.com/photos/member/1/2/e/0/member_100504832.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/1/2/e/0/thumb_100504832.jpeg' - members: 294 - name: Jax Node.js UG - state: FL lat: 30.309999465942383 - who: Noders - - utc_offset: -21600000 - country: US - visibility: public + - country: US city: Denver - timezone: US/Mountain - created: 1379557107000 link: 'http://www.meetup.com/Meteor-Denver/' - rating: 4.8 + name: Meteor Denver description: "

Meet other developers using Meteor. Share your knowledge, apps, and get feedback from others. Meteor is an open-source platform for building top-quality web apps in a fraction of the time, whether you're an expert developer or just getting started.

" lon: -104.98999786376953 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/8/c/3/1/highres_445115889.jpeg' - photo_id: 445115889 photo_link: 'http://photos2.meetupstatic.com/photos/event/8/c/3/1/600_445115889.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/8/c/3/1/thumb_445115889.jpeg' - join_mode: open - organizer: - member_id: 81670332 - name: Nick Coe - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/c/d/4/8/highres_247192552.jpeg' - photo_id: 247192552 - photo_link: 'http://photos4.meetupstatic.com/photos/member/c/d/4/8/member_247192552.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/c/d/4/8/thumb_247192552.jpeg' - members: 216 - name: Meteor Denver - state: CO lat: 39.75 - who: Meteorites - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Los Angeles - timezone: US/Pacific - created: 1380065892000 link: 'http://www.meetup.com/causathon/' - rating: 5 + name: Hack for a Cause description: "

A technology enthusiast group comprised of talented product architects, designers and engineers looking to push product in the most efficient and effective way possible. If you enjoy collaborating with like minded individuals to get better and share what you do best, then you're going to find this to be very beneficial.

\n

Causathon is an event series around the country that brings together developers, designers and marketers for an intensive 24 hour collaboration to produce impactful technology solutions for non-profit organizations.

" lon: -118.44999694824219 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/b/2/c/8/highres_434025768.jpeg' - photo_id: 434025768 photo_link: 'http://photos4.meetupstatic.com/photos/event/b/2/c/8/600_434025768.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/b/2/c/8/thumb_434025768.jpeg' - join_mode: approval - organizer: - member_id: 79757372 - name: Russell Meyerowitz - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/2/a/b/4/highres_148630932.jpeg' - photo_id: 148630932 - photo_link: 'http://photos1.meetupstatic.com/photos/member/2/a/b/4/member_148630932.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/2/a/b/4/thumb_148630932.jpeg' - members: 32 - name: Hack for a Cause - state: CA lat: 34.040000915527344 - who: Cause Hackers - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Columbia - timezone: US/Central - created: 1381152837000 link: 'http://www.meetup.com/devcomo/' - rating: 4.64 + name: devcomo description: '

devcomo is a monthly user group Columbia, MO that is focused on development and design. Simply put, if it is interesting then it’ll be discussed!

' lon: -92.31999969482422 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/1/d/3/0/highres_292327472.jpeg' - photo_id: 292327472 photo_link: 'http://photos4.meetupstatic.com/photos/event/1/d/3/0/600_292327472.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/1/d/3/0/thumb_292327472.jpeg' - join_mode: approval - organizer: - member_id: 13020670 - name: James Carr - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/b/b/c/8/highres_151128072.jpeg' - photo_id: 151128072 - photo_link: 'http://photos4.meetupstatic.com/photos/member/b/b/c/8/member_151128072.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/b/b/c/8/thumb_151128072.jpeg' - members: 180 - name: devcomo - state: MO lat: 39 - who: Members - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Francisco - timezone: US/Pacific - created: 1382037562000 link: 'http://www.meetup.com/Real-Estate-Developer-Meetup-Group/' + name: Real Estate Developer Meetup Group description: This group is for anyone interested in developing for the real estate field using property listing data. So if you love JS and NodeJS and are interested in creating and talking about open source components lets all connect. lon: -122.41000366210938 - join_mode: open - organizer: - member_id: 107621452 - name: Joshua Lopour - photo: - photo_id: 153252502 - photo_link: 'http://photos2.meetupstatic.com/photos/member/3/0/d/6/member_153252502.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/0/d/6/thumb_153252502.jpeg' - members: 97 - name: Real Estate Developer Meetup Group - state: CA lat: 37.77000045776367 - who: Developers - - utc_offset: -25200000 - country: US - visibility: public - city: Mesa - timezone: US/Arizona - created: 1382641828000 - link: 'http://www.meetup.com/Coffee-and-Code-East-Valley/' - rating: 4.93 - description: "

Don't work from home.  Instead come spend the day coworking with other software developers at HeatSync Labs in downtown Mesa.

" - lon: -111.83999633789062 - join_mode: open - organizer: - member_id: 11491425 - name: Luis Montes - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/4/6/0/a/highres_8957930.jpeg' - photo_id: 8957930 - photo_link: 'http://photos2.meetupstatic.com/photos/member/4/6/0/a/member_8957930.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/4/6/0/a/thumb_8957930.jpeg' - members: 380 - name: Coffee and Code East Valley - state: AZ - lat: 33.43000030517578 - who: Members - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Francisco - timezone: US/Pacific - created: 1383328579000 link: 'http://www.meetup.com/cultivate/' - rating: 4.66 - description: >- -

Cultivate is for people who love building software - not for - software's sake, but for it's ability to create dramatic change in the - world. We are designers and developers using our talents to create - positive change that benefits our communities, our children and those - who come after us.

- -

In-person events cover a range of topics and formats. Learn the - latest on building web applications with Angular and Node.js. Hack on - tools to improve a farmer's productivity. Find a collaborator to work - on your next big idea. Regardless of the topic or the format, we - guarantee the food will always be great.

- -

Good Eggs is the sponsor - of Cultivate and is a new kind of grocery store where you buy online - directly from farmers and foodmakers producing high quality food with - integrity. If you believe in our mission to grow and sustain local food - systems and think Good Eggs might be the right place for you, let us know.

+ name: Cultivate + description: |- +

Cultivate is for people who love building software - not for software's sake, but for it's ability to create dramatic change in the world. We are designers and developers using our talents to create positive change that benefits our communities, our children and those who come after us.

+

In-person events cover a range of topics and formats. Learn the latest on building web applications with Angular and Node.js. Hack on tools to improve a farmer's productivity. Find a collaborator to work on your next big idea. Regardless of the topic or the format, we guarantee the food will always be great.

+

Good Eggs is the sponsor of Cultivate and is a new kind of grocery store where you buy online directly from farmers and foodmakers producing high quality food with integrity. If you believe in our mission to grow and sustain local food systems and think Good Eggs might be the right place for you, let us know.

lon: -122.4000015258789 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/2/9/4/2/highres_304510562.jpeg' - photo_id: 304510562 photo_link: 'http://photos3.meetupstatic.com/photos/event/2/9/4/2/600_304510562.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/2/9/4/2/thumb_304510562.jpeg' - join_mode: open - organizer: - member_id: 5665364 - name: Alon Salant - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/6/e/1/6/highres_156208182.jpeg' - photo_id: 156208182 - photo_link: 'http://photos1.meetupstatic.com/photos/member/6/e/1/6/member_156208182.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/6/e/1/6/thumb_156208182.jpeg' - members: 281 - name: Cultivate - state: CA lat: 37.790000915527344 - who: Members - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Raleigh - timezone: US/Eastern - created: 1383430165000 link: 'http://www.meetup.com/Triangle-Titanium-Developers/' + name: Triangle Titanium Developers description: "The Triangle Titanium Developers' group was created to bring together the Triangle's growing Titanium community. Our goal is to provide the latest information about Titanium and other mobile related technologies while creating opportunities for community members to network." lon: -78.63999938964844 - join_mode: approval - organizer: - member_id: 6966183 - name: Jamil Spain - photo: - photo_id: 156412022 - photo_link: 'http://photos3.meetupstatic.com/photos/member/c/b/3/6/member_156412022.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/b/3/6/thumb_156412022.jpeg' - members: 20 - name: Triangle Titanium Developers - state: NC lat: 35.77000045776367 - who: Members - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Charlotte - timezone: US/Eastern - created: 1383674177000 link: 'http://www.meetup.com/Meteor-Charlotte/' - rating: 4.66 - description: >- -

Meet other developers using Meteor. Share your knowledge, apps, and - get feedback from others. Meteor is an open-source platform for - building top-quality web apps in a fraction of the time, whether you're - an expert developer or just getting started.

- + name: Meteor Charlotte + description: |- +

Meet other developers using Meteor. Share your knowledge, apps, and get feedback from others. Meteor is an open-source platform for building top-quality web apps in a fraction of the time, whether you're an expert developer or just getting started.

Find us on irc.freenode.net at #meteor-clt

lon: -80.79000091552734 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/1/7/c/2/highres_425526082.jpeg' - photo_id: 425526082 photo_link: 'http://photos3.meetupstatic.com/photos/event/1/7/c/2/600_425526082.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/1/7/c/2/thumb_425526082.jpeg' - join_mode: open - organizer: - member_id: 81670332 - name: Nick Coe - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/c/d/4/8/highres_247192552.jpeg' - photo_id: 247192552 - photo_link: 'http://photos4.meetupstatic.com/photos/member/c/d/4/8/member_247192552.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/c/d/4/8/thumb_247192552.jpeg' - members: 228 - name: Meteor Charlotte - state: NC lat: 35.16999816894531 - who: Meteorites - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Norfolk - timezone: US/Eastern - created: 1383862916000 link: 'http://www.meetup.com/NorfolkJS/' - rating: 4.93 + name: Norfolk.js description: '

Join us in talking about, brainstorming, and building Javascript tools and applications. See more information at norfolkjs.org or github.com/norfolkjs.

' lon: -76.30000305175781 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/6/5/d/3/highres_434126067.jpeg' - photo_id: 434126067 photo_link: 'http://photos1.meetupstatic.com/photos/event/6/5/d/3/600_434126067.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/6/5/d/3/thumb_434126067.jpeg' - join_mode: approval - organizer: - member_id: 119055712 - name: Travis Webb - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/5/8/2/c/highres_157462572.jpeg' - photo_id: 157462572 - photo_link: 'http://photos1.meetupstatic.com/photos/member/5/8/2/c/member_157462572.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/5/8/2/c/thumb_157462572.jpeg' - members: 398 - name: Norfolk.js - state: VA lat: 36.86000061035156 - who: JavaScript Ninjas - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Tampa - timezone: US/Eastern - created: 1384004446000 link: 'http://www.meetup.com/AngularJS-Tampa/' - rating: 4.72 - description: >- + name: AngularJS-Tampa + description: |-

AngularJS meetup group in Tampa, FL

- -

Meetups are held the third Wednesday of every month; the goal is - sharing AngularJS knowledge and best-practices; providing a place where - people can meet with other AngularJS enthusiasts. We love Angular.

- +

Meetups are held the third Wednesday of every month; the goal is sharing AngularJS knowledge and best-practices; providing a place where people can meet with other AngularJS enthusiasts. We love Angular.

Resources:
+ http://www.angularjs.org/
- - http://www.angularjs.org/
- - - - http://www.youtube.com/angularjs

+ http://www.youtube.com/angularjs

lon: -82.51000213623047 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/3/4/f/0/highres_304633552.jpeg' - photo_id: 304633552 photo_link: 'http://photos4.meetupstatic.com/photos/event/3/4/f/0/600_304633552.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/3/4/f/0/thumb_304633552.jpeg' - join_mode: open - organizer: - member_id: 12326621 - name: Kris Ivanov - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/5/7/9/6/highres_63562422.jpeg' - photo_id: 63562422 - photo_link: 'http://photos1.meetupstatic.com/photos/member/5/7/9/6/member_63562422.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/5/7/9/6/thumb_63562422.jpeg' - members: 386 - name: AngularJS-Tampa - state: FL lat: 27.940000534057617 - who: Angularians - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Francisco - timezone: US/Pacific - created: 1384989901000 link: 'http://www.meetup.com/codecrewsf/' - rating: 5 - description: >- + name: Code Crew San Francisco + description: |-

Hackers + Designers + Entrepreneurs = Code Crew!

- -

Passionate about learning how to code, creating beautiful designs or - building the prototype for your business idea and tired of doing it - alone? Then this is the group for you!

- -

This is the perfect group for people serious about learning how to - code through self-study using resources on the web like Code School, - Codecademy, Treehouse, P2PU, Coursera, edX, Udacity, programming books, - screencasts or whatever else is out there on the internet. We also - share a helpful suggested reading on our blog and issue occasional code - challenges. If you're just starting out and want to get a head start - then check out some cool resources here.

- -

We are a group of software engineers, designers and entrepreneurs - that enjoy building cool stuff with code at our collaborative - coding/pair programming sessions. We currently have members building - with HTML, CSS, Javascript, Ruby, Ruby on Rails, Python, Django, PHP, - Objective C and more. So come join us and meet some cool and - interesting people while picking up a new skill!

+

Passionate about learning how to code, creating beautiful designs or building the prototype for your business idea and tired of doing it alone? Then this is the group for you!

+

This is the perfect group for people serious about learning how to code through self-study using resources on the web like Code School, Codecademy, Treehouse, P2PU, Coursera, edX, Udacity, programming books, screencasts or whatever else is out there on the internet. We also share a helpful suggested reading on our blog and issue occasional code challenges. If you're just starting out and want to get a head start then check out some cool resources here.

+

We are a group of software engineers, designers and entrepreneurs that enjoy building cool stuff with code at our collaborative coding/pair programming sessions. We currently have members building with HTML, CSS, Javascript, Ruby, Ruby on Rails, Python, Django, PHP, Objective C and more. So come join us and meet some cool and interesting people while picking up a new skill!

lon: -122.4000015258789 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/8/9/a/highres_337202202.jpeg' - photo_id: 337202202 photo_link: 'http://photos2.meetupstatic.com/photos/event/8/9/a/600_337202202.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/8/9/a/thumb_337202202.jpeg' - join_mode: open - organizer: - member_id: 134139722 - name: Code Crew - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/2/a/d/2/highres_178930962.jpeg' - photo_id: 178930962 - photo_link: 'http://photos2.meetupstatic.com/photos/member/2/a/d/2/member_178930962.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/2/a/d/2/thumb_178930962.jpeg' - members: 289 - name: Code Crew San Francisco - state: CA lat: 37.77000045776367 - who: Swabbies - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Boston - timezone: US/Eastern - created: 1385055343000 link: 'http://www.meetup.com/CouchDB-Boston/' - rating: 4.66 - description: >- -

Relax, it's CouchDB! CouchDB Boston brings together developers, - technologists, and anyone else passionate or curious about CouchDB to - swap stories, share projects, code apps, and otherwise relax on the - couch. All skill levels are welcome, whether you've got hundreds of - nodes replicating petabytes around the world, or just heard about - CouchDB when you found this page. Join us for good food, good folks, - and good times :D

- -

All events organized by this meetup group fall under the Apache CouchDB™ Code of - Conduct and Diversity Statement.

- -

Apache CouchDB™, CouchDB™ and Apache are either registered - trademarks or trademarks of the Apache - Software Foundation in the United States and/or other countries, - and are used - with permission. The Apache Software Foundation has no affiliation - with and does not endorse, or review the materials provided at this - event, which is managed by IBM Cloud - Data Services.

- lon: -71.05000305175781 - join_mode: open - organizer: - member_id: 9125434 - name: Raj Singh - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/9/2/0/5/highres_6277381.jpeg' - photo_id: 6277381 - photo_link: 'http://photos4.meetupstatic.com/photos/member/9/2/0/5/member_6277381.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/9/2/0/5/thumb_6277381.jpeg' - members: 87 name: CouchDB™ Boston - state: MA + description: |- +

Relax, it's CouchDB! CouchDB Boston brings together developers, technologists, and anyone else passionate or curious about CouchDB to swap stories, share projects, code apps, and otherwise relax on the couch. All skill levels are welcome, whether you've got hundreds of nodes replicating petabytes around the world, or just heard about CouchDB when you found this page. Join us for good food, good folks, and good times :D

+

All events organized by this meetup group fall under the Apache CouchDB™ Code of Conduct and Diversity Statement.

+

Apache CouchDB™, CouchDB™ and Apache are either registered trademarks or trademarks of the Apache Software Foundation in the United States and/or other countries, and are used with permission. The Apache Software Foundation has no affiliation with and does not endorse, or review the materials provided at this event, which is managed by IBM Cloud Data Services.

+ lon: -71.05000305175781 lat: 42.369998931884766 - who: CouchDBers - - utc_offset: -14400000 - country: CA - visibility: public + - country: CA city: Montréal - timezone: Canada/Eastern - created: 1385692543000 link: 'http://www.meetup.com/js-montreal/' - rating: 4.64 + name: "js-montreal - montreal's javascript user group" description: "

New: Help us make the group better by filling up our Yearly Survey

\n

Want to learn more about JavaScript? Meet other people who are passionate about writing software? Show off your latest project?
\n\n

\n

We meet on every second tuesday of the month. The details are always available on js-montreal.org

\n

Front-end, backend with Node and other tools, other interesting uses for JavaScript: We got you covered.

\n

If you wish to sponsor one of our events, get in touch. We often do beer + pizza before the meetup and give you a chance to talk about your company and what you're looking for in terms of developers.

\n

Our goal is to bring the MTL JS development community together and promote the use and understanding of the language, inside and outside the browser. We've been doing this since 2010.\_

" lon: -73.58000183105469 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/b/b/3/2/highres_312887922.jpeg' - photo_id: 312887922 photo_link: 'http://photos1.meetupstatic.com/photos/event/b/b/3/2/600_312887922.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/b/b/3/2/thumb_312887922.jpeg' - join_mode: open - organizer: - member_id: 77350232 - name: Bruno Carriere - photo: - photo_id: 161592832 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/2/2/0/member_161592832.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/2/2/0/thumb_161592832.jpeg' - members: 1686 - name: "js-montreal - montreal's javascript user group" - state: QC lat: 45.47999954223633 - who: Javascripters - - utc_offset: -18000000 - country: US - visibility: public - city: Waltham - timezone: US/Eastern - created: 1386200160000 - link: 'http://www.meetup.com/Digital-Collision/' - rating: 4.75 - description: "

A group for developers interested in making digital stuff.

\n

The focus is not on one particular language, \_framework or client -vs- server-side code.

\n

It’s about coming together, ( usually ) the THIRD Wednesday of every month to :

\n

~ code with someone new …
\n\n ~ trying out different technologies …
\n\n ~ perhaps start a new project …
\n\n ~ or dusting off an old one …

\n

No experience necessary

\n


\n\n

\n

We will be adding new locations & more weeks as the group grows.

" - lon: -71.26000213623047 - group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/6/5/c/4/highres_408626052.jpeg' - photo_id: 408626052 - photo_link: 'http://photos3.meetupstatic.com/photos/event/6/5/c/4/600_408626052.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/6/5/c/4/thumb_408626052.jpeg' - join_mode: open - organizer: - member_id: 8842606 - name: Brian - photo: - photo_id: 33229352 - photo_link: 'http://photos3.meetupstatic.com/photos/member/c/0/c/8/member_33229352.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/0/c/8/thumb_33229352.jpeg' - members: 161 - name: Digital Collision - state: MA - lat: 42.400001525878906 - who: Digital Creators - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Herndon - timezone: US/Eastern - created: 1386216508000 link: 'http://www.meetup.com/NOVA-MEAN/' - rating: 4.69 + name: NOVA MEAN description: "

Are you developing (or interested in developing) software using MongoDB, Express, AngularJS, and Node.js, but you don't really want to join 3-4 different Meetups to cover these architecture topics? Well that's what we were thinking, so we started a Meetup to cover all of these in one group. We'll have a few Meetups on each topic over the course of the year. \_Together we'll learn ways to develop better enterprise JavaScript solutions.

" lon: -77.4000015258789 - join_mode: open - organizer: - member_id: 24832182 - name: Doug Schnelzer - photo: - photo_id: 162460272 - photo_link: 'http://photos2.meetupstatic.com/photos/member/9/d/5/0/member_162460272.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/9/d/5/0/thumb_162460272.jpeg' - members: 699 - name: NOVA MEAN - state: VA lat: 38.93000030517578 - who: MEANers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Francisco - timezone: US/Pacific - created: 1386630228000 link: 'http://www.meetup.com/Node-js-Beer/' - rating: 4.95 + name: 'Node.js && Beer' description: Talk about Node.js and drink beer. Or just talk about Node.js. Or just drink beer. lon: -122.41000366210938 - join_mode: open - organizer: - member_id: 11429384 - name: Tony Pujals - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/c/1/3/5/highres_252169461.jpeg' - photo_id: 252169461 - photo_link: 'http://photos4.meetupstatic.com/photos/member/c/1/3/5/member_252169461.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/c/1/3/5/thumb_252169461.jpeg' - members: 201 - name: 'Node.js && Beer' - state: CA lat: 37.77000045776367 - who: Members - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Dallas - timezone: US/Central - created: 1386887446000 link: 'http://www.meetup.com/Women-Who-Code-Dallas/' - rating: 4.94 - description: >- + name: Women Who Code Dallas/Ft. Worth + description: |-

Mission:

- -

Women Who Code is a global nonprofit organization dedicated to - inspiring women to excel in technology careers by creating a global, - connected community of women in technology. The organization tripled in - 2013 and has grown to be one of the largest communities of women - engineers in the world.

- +

Women Who Code is a global nonprofit organization dedicated to inspiring women to excel in technology careers by creating a global, connected community of women in technology. The organization tripled in 2013 and has grown to be one of the largest communities of women engineers in the world.

Empowerment:

- -

Women Who code is a professional community for women in - tech. We provide an avenue for women to pursue a career in - technology, help them gain new skills and hone existing skills for - professional advancement, and foster environments where networking and - mentorship are valued.

- +

Women Who code is a professional community for women in tech. We provide an avenue for women to pursue a career in technology, help them gain new skills and hone existing skills for professional advancement, and foster environments where networking and mentorship are valued.

Key Initiatives:

-

Free technical study groups

- -

Events featuring influential tech industry experts and - investors

- +

Events featuring influential tech industry experts and investors

Hack events

-

Career and leadership development

-

Current and aspiring coders are welcome. 

-

Bring your laptop and a friend! 

-

Support Women Who Code:

- -

Donating to Women Who - Code, Inc. (#46-4218859) directly impacts our ability to - efficiently run this growing organization, helps us produce new - programs that will increase our reach, and enables us to expand into - new cities around the world ensuring that women and girls everywhere - have the opportunity to pursue a career in technology.

- -

Women Who Code (WWCode) is dedicated to providing an empowering - experience for everyone who participates in or supports our community, - regardless of gender, gender identity and expression, sexual - orientation, ability, physical appearance, body size, race, ethnicity, - age, religion, or socioeconomic status. Because we value the safety and - security of our members and strive to have an inclusive community, we - do not tolerate harassment of members or event participants in any - form. Our Code - of Conduct applies to all events run by Women Who Code, Inc. - If you would like to report an incident or contact our leadership team, - please submit an incident - report form.

- +

Donating to Women Who Code, Inc. (#46-4218859) directly impacts our ability to efficiently run this growing organization, helps us produce new programs that will increase our reach, and enables us to expand into new cities around the world ensuring that women and girls everywhere have the opportunity to pursue a career in technology.

+

Women Who Code (WWCode) is dedicated to providing an empowering experience for everyone who participates in or supports our community, regardless of gender, gender identity and expression, sexual orientation, ability, physical appearance, body size, race, ethnicity, age, religion, or socioeconomic status. Because we value the safety and security of our members and strive to have an inclusive community, we do not tolerate harassment of members or event participants in any form. Our Code of Conduct applies to all events run by Women Who Code, Inc. If you would like to report an incident or contact our leadership team, please submit an incident report form.

WomenWhoCode.com

- -

Twitter | Facebook | Blog

- +

Twitter | Facebook | Blog

-


lon: -96.80000305175781 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/b/7/a/9/highres_431687017.jpeg' - photo_id: 431687017 photo_link: 'http://photos4.meetupstatic.com/photos/event/b/7/a/9/600_431687017.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/b/7/a/9/thumb_431687017.jpeg' - join_mode: open - organizer: - member_id: 129339582 - name: Women Who Code - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/8/5/c/2/highres_172594242.jpeg' - photo_id: 172594242 - photo_link: 'http://photos4.meetupstatic.com/photos/member/8/5/c/2/member_172594242.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/8/5/c/2/thumb_172594242.jpeg' - members: 678 - name: Women Who Code Dallas/Ft. Worth - state: TX lat: 32.790000915527344 - who: Coders - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Oklahoma City - timezone: US/Central - created: 1387315002000 link: 'http://www.meetup.com/OKC-js/' - rating: 4.82 + name: OKC.js description: '

Oklahoma City Javascript User Group The Legend of OKC.js http://okcjs.com/the-legend-of-okcjs/index.html

' lon: -97.5199966430664 - join_mode: open - organizer: - member_id: 186454903 - name: Techlahoma - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/1/7/9/highres_245569529.jpeg' - photo_id: 245569529 - photo_link: 'http://photos3.meetupstatic.com/photos/member/c/1/7/9/member_245569529.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/1/7/9/thumb_245569529.jpeg' - members: 396 - name: OKC.js - state: OK lat: 35.470001220703125 - who: js devs - - utc_offset: -28800000 - country: US - visibility: public - city: Mountain View - timezone: US/Pacific - created: 1387444907000 - link: 'http://www.meetup.com/Node-Hackers-at-Hacker-Dojo/' - rating: 4.65 - description: "Hello fellow (or future) node hackers - if you're looking for a regularly scheduled meetup that focuses on node programming, this meetup is for you. Starting in February, there will be at least one regularly scheduled meetup on the first Tuesday of the month at Hacker Dojo in Mountain View. Events will be scheduled on the meetup calendar here and at events.hackerdojo.com. Cheers!" - lon: -122.06999969482422 - join_mode: open - organizer: - member_id: 11429384 - name: Tony Pujals - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/8/7/c/a/highres_169234762.jpeg' - photo_id: 169234762 - photo_link: 'http://photos1.meetupstatic.com/photos/member/8/7/c/a/member_169234762.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/8/7/c/a/thumb_169234762.jpeg' - members: 626 - name: Node Hackers at Hacker Dojo - state: CA - lat: 37.38999938964844 - who: Node Hackers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Bend - timezone: US/Pacific - created: 1387527790000 link: 'http://www.meetup.com/Meteor-Bend/' + name: Meteor Bend description: "

Meet other developers using Meteor. Share your knowledge, apps, and get feedback from others. Meteor is an open-source platform for building top-quality web apps in a fraction of the time, whether you're an expert developer or just getting started.

" lon: -121.29000091552734 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/c/0/a/highres_317163082.jpeg' - photo_id: 317163082 photo_link: 'http://photos4.meetupstatic.com/photos/event/c/0/a/600_317163082.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/c/0/a/thumb_317163082.jpeg' - join_mode: open - organizer: - member_id: 81670332 - name: Nick Coe - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/highres_245331334.jpeg' - photo_id: 245331334 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/8/8/6/member_245331334.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/thumb_245331334.jpeg' - members: 24 - name: Meteor Bend - state: OR lat: 44.099998474121094 - who: Meteorites - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Seattle - timezone: US/Pacific - created: 1389638858000 link: 'http://www.meetup.com/Escape-from-dev-null-Washington/' - rating: 5 + name: Escape from /dev/null Washington description: "

Escape from /dev/null is a silly, creative and challenging series of developer games. Part board-game, part SF/Fantasy narrative, part laidback programming competition. You might like it.

\n

http://swdc.se/devnull
\n\n

\n

It's also a bit of a travelling circus with different sponsors each time, like a meetup. The focus is on having fun and solving always new challenges in a variety of live web-based API setups.\_

\n

OK, so it is of course at its roots a kind of sourcing event where you can show your skills for a sponsors if you care to, but the hat is on the other foot compared to other events of its kind. This is an option for you while you're having fun, nothing else.

" lon: -122.33000183105469 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/3/f/9/0/highres_324196272.jpeg' - photo_id: 324196272 photo_link: 'http://photos4.meetupstatic.com/photos/event/3/f/9/0/600_324196272.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/3/f/9/0/thumb_324196272.jpeg' - join_mode: open - organizer: - member_id: 118703872 - name: Peter Svensson - photo: - photo_id: 169870012 - photo_link: 'http://photos3.meetupstatic.com/photos/member/2/7/1/c/member_169870012.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/2/7/1/c/thumb_169870012.jpeg' - members: 32 - name: Escape from /dev/null Washington - state: WA lat: 47.61000061035156 - who: escapees - - utc_offset: -25200000 - country: CA - visibility: public + - country: CA city: Victoria - timezone: Canada/Pacific - created: 1389897381000 link: 'http://www.meetup.com/Victoria-NodeJS-Meetup/' - rating: 4.95 + name: Victoria NodeJS Meetup description: '

All things Node. Packages, patterns, problems, polyfills, prototypes, other things that start with P, including pints.

' lon: -123.3499984741211 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/a/c/6/e/highres_327704142.jpeg' - photo_id: 327704142 photo_link: 'http://photos1.meetupstatic.com/photos/event/a/c/6/e/600_327704142.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/a/c/6/e/thumb_327704142.jpeg' - join_mode: open - organizer: - member_id: 13356291 - name: Matthew Christopher Davidson - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/c/9/8/8/highres_53451592.jpeg' - photo_id: 53451592 - photo_link: 'http://photos4.meetupstatic.com/photos/member/c/9/8/8/member_53451592.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/c/9/8/8/thumb_53451592.jpeg' - members: 68 - name: Victoria NodeJS Meetup - state: BC lat: 48.439998626708984 - who: Developers - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Saint Louis - timezone: US/Central - created: 1389921027000 link: 'http://www.meetup.com/Saint-Louis-Node-js-Meetup/' - rating: 4.88 + name: Saint Louis Node.js Meetup description: 'This group is for anyone interesting in Node.js or that is already using it. I started this group to help build the Node.js and back-end JavaScript community. All skill levels are welcome, but bring a positive attitude.' lon: -90.20999908447266 - join_mode: open - organizer: - member_id: 6048879 - name: Nick Apperson - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/7/a/highres_5640122.jpeg' - photo_id: 5640122 - photo_link: 'http://photos2.meetupstatic.com/photos/member/7/a/member_5640122.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/7/a/thumb_5640122.jpeg' - members: 113 - name: Saint Louis Node.js Meetup - state: MO lat: 38.630001068115234 - who: Code Monkeys - - utc_offset: -21600000 - country: US - visibility: public + - country: US city: Denver - timezone: US/Mountain - created: 1390239907000 link: 'http://www.meetup.com/Node-js-Denver-Boulder/' - rating: 4.7 + name: Node.js Denver/Boulder/Ft. Collins description: "

This is a group for anyone who is currently using or interested in knowing more about Node.js. A great place to meet, interact, and learn with other developers, designers, managers, and like-minded individuals. Come and share your knowledge, applications, roadblocks, and get feedback from others. We'll organize regularly scheduled meetings that will focus on Node.js and many of the associated technologies. About Node.js: Node.js is a platform built on Chrome's JavaScript runtime for easily building fast, scalable network applications. Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient, perfect for data-intensive real-time applications that run across distributed devices.

" lon: -104.98999786376953 - join_mode: open - organizer: - member_id: 79866532 - name: Michael Herman - photo: - photo_id: 151639602 - photo_link: 'http://photos3.meetupstatic.com/photos/member/4/c/9/2/member_151639602.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/4/c/9/2/thumb_151639602.jpeg' - members: 1377 - name: Node.js Denver/Boulder/Ft. Collins - state: CO lat: 39.75 - who: Members - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Bothell - timezone: US/Pacific - created: 1391060376000 link: 'http://www.meetup.com/Bothell-Web-Developers-Meetup/' - rating: 4.83 + name: Bothell Web Developers Meetup description: "

Apply your programming skills to personal projects you want to tackle, share ideas with fellow developers, and deepen your knowledge of web development programming. Whether you are new to the field or have years of experience, we welcome anyone who has a passion to become a better developer and tackle challenging problems. Use this time to focus on your own projects or talk with other developers.\_Please do not use this group to self promote or recruit people for other projects.

" lon: -122.22000122070312 - join_mode: open - organizer: - member_id: 130741192 - name: Chris Kincanon - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/9/5/d/0/highres_173918352.jpeg' - photo_id: 173918352 - photo_link: 'http://photos3.meetupstatic.com/photos/member/9/5/d/0/member_173918352.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/9/5/d/0/thumb_173918352.jpeg' - members: 230 - name: Bothell Web Developers Meetup - state: WA lat: 47.790000915527344 - who: Developers - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Troy - timezone: US/Eastern - created: 1391199922000 link: 'http://www.meetup.com/Node-js-Meetup-12180/' - rating: 3.67 + name: 'Node.js Meetup: 12180' description: "We're a group of web developers looking to mix and mingle with other folks leveraging Node.js for new and exciting solutions - all levels are welcome. We're prepared to meet, discuss, lecture, hack and code with this event driven, server-side platform built on V8 and see what we can learn, share & create. supporting technology like client-side JavaScript development & NoSQL data storage is fair game too. We're open to taking the group in any direction the membership wants to go... but yo, we're keeping our base in the 12180: Troy NY" lon: -73.61000061035156 - join_mode: open - organizer: - member_id: 95719912 - name: Troy Web Consulting - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/7/4/2/e/highres_121409742.jpeg' - photo_id: 121409742 - photo_link: 'http://photos2.meetupstatic.com/photos/member/7/4/2/e/member_121409742.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/7/4/2/e/thumb_121409742.jpeg' - members: 105 - name: 'Node.js Meetup: 12180' - state: NY lat: 42.7400016784668 - who: nodes - - utc_offset: -21600000 - country: US - visibility: public + - country: US city: Jackson - timezone: US/Mountain - created: 1391370645000 link: 'http://www.meetup.com/Jackson-Hole-Tech-Meetup/' - rating: 4.71 + name: Jackson Hole Tech Meetup description: "

Jackson Hole's first tech meetup. This is a group for programmers, designers, entrepreneurs and anyone interested in software development in beautiful Jackson Hole, Wy. This group will cover deep technical topics w/ guest speakers giving short presentations at each meetup. The group will meet at Jackson's newest coworking community, Spark Jackson Hole (sparkjh.com).

" lon: -110.7699966430664 - join_mode: open - organizer: - member_id: 66224592 - name: Jeremy - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/5/1/9/c/highres_189740892.jpeg' - photo_id: 189740892 - photo_link: 'http://photos4.meetupstatic.com/photos/member/5/1/9/c/member_189740892.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/5/1/9/c/thumb_189740892.jpeg' - members: 115 - name: Jackson Hole Tech Meetup - state: WY lat: 43.470001220703125 - who: Technologists - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Seattle - timezone: US/Pacific - created: 1391468891000 link: 'http://www.meetup.com/codefellows/' - rating: 4.59 + name: Code Fellows Seattle Meetup description: "

Code Fellows offers full-time and part-time programs to train software developers at every experience level. We strongly believe in the power of community and want to contribute in any way we can. Whether you're just starting out or have been a coding for years, come join us!

" lon: -122.33999633789062 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/5/7/4/6/highres_334882342.jpeg' - photo_id: 334882342 photo_link: 'http://photos3.meetupstatic.com/photos/event/5/7/4/6/600_334882342.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/5/7/4/6/thumb_334882342.jpeg' - join_mode: open - organizer: - member_id: 131469362 - name: 'Code Fellows ' - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/9/5/6/c/highres_248318252.jpeg' - photo_id: 248318252 - photo_link: 'http://photos2.meetupstatic.com/photos/member/9/5/6/c/member_248318252.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/9/5/6/c/thumb_248318252.jpeg' - members: 918 - name: Code Fellows Seattle Meetup - state: WA lat: 47.630001068115234 - who: Members - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Francisco - timezone: US/Pacific - created: 1391553081000 link: 'http://www.meetup.com/San-Francisco-JS-Breakfast/' - rating: 4.47 + name: San Francisco JS Breakfast description: 'Meet other JS developers and learn more about your favorite language, all before 10am.' lon: -122.4000015258789 - join_mode: open - organizer: - member_id: 3423305 - name: Mark Percival - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/1/8/1/2/highres_254826162.jpeg' - photo_id: 254826162 - photo_link: 'http://photos4.meetupstatic.com/photos/member/1/8/1/2/member_254826162.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/1/8/1/2/thumb_254826162.jpeg' - members: 177 - name: San Francisco JS Breakfast - state: CA lat: 37.79999923706055 - who: Early risers - - utc_offset: -14400000 - country: CA - visibility: public + - country: CA city: Kingston - timezone: Canada/Eastern - created: 1391739866000 link: 'http://www.meetup.com/Kingston-Developers/' - rating: 4.71 + name: Kingston Developers description: '

This is a group for anyone interested in developing for the web and web apps The main focus is on HTML, CSS and JavaScript but there is major cross over with many other domains such as PHP, R, Python, SQL etc. All skill levels are welcome. I started this group to meet other people who want to exchange ideas, tips, tricks, troubleshoot and work on solving problems through the web, and maybe start a business along the way. We hope to meet weekly or bi-weekly and sometimes for weekend hack-a-thons.

' lon: -76.4800033569336 - join_mode: open - organizer: - member_id: 110391862 - name: Cliff Coulter - photo: - photo_id: 176555072 - photo_link: 'http://photos1.meetupstatic.com/photos/member/8/9/0/0/member_176555072.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/8/9/0/0/thumb_176555072.jpeg' - members: 190 - name: Kingston Developers - state: 'ON' lat: 44.22999954223633 - who: Developers - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Durham - timezone: US/Eastern - created: 1392136264000 link: 'http://www.meetup.com/Stacked/' - rating: 4.66 - description: >- -

Stacked! is a Meetup group for anyone passionate about technology - and dedicated to lifelong learning. And, while many of our talks lean - towards advanced topics, we strongly encourage those newer to - programming (as well as non-programmers with an interest in technology) - to attend. 

- + name: 'Stacked! Building Better Developers' + description: |- +

Stacked! is a Meetup group for anyone passionate about technology and dedicated to lifelong learning. And, while many of our talks lean towards advanced topics, we strongly encourage those newer to programming (as well as non-programmers with an interest in technology) to attend. 

-

-

- -

Our events typically begin with some time for networking and a bite - to eat followed by back-to-back speakers or a series of lightening - talks. We place a heavy emphasis on selecting speakers who are - passionate and engaging as well as creating a warm - and welcoming environment for programmers and - non-programmers alike. 

- +

Our events typically begin with some time for networking and a bite to eat followed by back-to-back speakers or a series of lightening talks. We place a heavy emphasis on selecting speakers who are passionate and engaging as well as creating a warm and welcoming environment for programmers and non-programmers alike. 

-

-

- -

At the end of the day, this group is about learning, meeting new - people, discussing technology, and having a good time. Stacked! is - powered by Smashing - Boxes

- +

At the end of the day, this group is about learning, meeting new people, discussing technology, and having a good time. Stacked! is powered by Smashing Boxes

-

-

- -

P.S. We're planning Durham's first developer conference for Spring - 2015!

- +

P.S. We're planning Durham's first developer conference for Spring 2015!

-

-

- -

Ideas? Suggestions? Whispers of endearment? Tweet us @StackedTriangle

+

Ideas? Suggestions? Whispers of endearment? Tweet us @StackedTriangle

lon: -78.9000015258789 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/e/0/6/c/highres_371097452.jpeg' - photo_id: 371097452 photo_link: 'http://photos2.meetupstatic.com/photos/event/e/0/6/c/600_371097452.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/e/0/6/c/thumb_371097452.jpeg' - join_mode: open - organizer: - member_id: 12126824 - name: Brandon Mathis - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/e/6/b/6/highres_242159062.jpeg' - photo_id: 242159062 - photo_link: 'http://photos4.meetupstatic.com/photos/member/e/6/b/6/member_242159062.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/e/6/b/6/thumb_242159062.jpeg' - members: 626 - name: 'Stacked! Building Better Developers' - state: NC lat: 36 - who: Members - - utc_offset: -14400000 - country: CA - visibility: public + - country: CA city: Toronto - timezone: Canada/Eastern - created: 1392234639000 link: 'http://www.meetup.com/Toronto-Ember-JS-Meetup/' - rating: 4.7 + name: Toronto Ember.js Meetup description: "

We're a merry, nomadic gang of Ember enthusiasts led by Unspace and Discourse that get together for presentations and socialize, typically on the first Thursday of every month.\_

\n

To stay abreast on all the updates and special goings-on in the Toronto Ember community, we suggest you sign up for our mailing list: http://torontoemberjs.com

\n

The format is pretty simple: we'll start with a short presentation about something Ember related (FYI, we welcome any talk submissions to line up for future events). Then people can ask questions, talk to each other and discuss all things Ember in a fun environment (usually Unspace or Pharmacy Bar) with lovely sponsors usually picking up the tab.

" lon: -79.43000030517578 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/9/a/9/e/highres_332859582.jpeg' - photo_id: 332859582 photo_link: 'http://photos3.meetupstatic.com/photos/event/9/a/9/e/600_332859582.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/9/a/9/e/thumb_332859582.jpeg' - join_mode: open - organizer: - member_id: 66348562 - name: Mattia Gheda - photo: - photo_id: 77659692 - photo_link: 'http://photos4.meetupstatic.com/photos/member/4/c/e/c/member_77659692.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/4/c/e/c/thumb_77659692.jpeg' - members: 454 - name: Toronto Ember.js Meetup - state: 'ON' lat: 43.65999984741211 - who: Emberists - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Stanford - timezone: US/Pacific - created: 1392503505000 link: 'http://www.meetup.com/South-Bay-Hackathons/' - rating: 5 + name: South Bay Hackathons description: "

For anyone who loves to create.\_

\n

We will be hosting regular hackathons where you can come and meet other awesome developers and work on cool projects with them!

\n

South Bay Hackathons!

" lon: -122.16000366210938 - join_mode: open - organizer: - member_id: 133370482 - name: Chris B - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/d/6/7/6/highres_177774902.jpeg' - photo_id: 177774902 - photo_link: 'http://photos1.meetupstatic.com/photos/member/d/6/7/6/member_177774902.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/d/6/7/6/thumb_177774902.jpeg' - members: 155 - name: South Bay Hackathons - state: CA lat: 37.41999816894531 - who: Builders - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Tallahassee - timezone: US/Eastern - created: 1392581542000 link: 'http://www.meetup.com/TallyJS/' - rating: 5 + name: TallyJS description: "TallyJS is a group focused on JavaScript and related topics. Let's meet up to discuss and learn about new JavaScript frameworks and best practices. Whether you use JS for your job or you're completely new to javascript, this meetup can help you build more dynamic and interesting things on the web. Come out and help build the javascript community in Tallahassee!" lon: -84.31999969482422 - join_mode: open - organizer: - member_id: 101619082 - name: Andrew Hart - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/5/2/3/b/highres_243561051.jpeg' - photo_id: 243561051 - photo_link: 'http://photos1.meetupstatic.com/photos/member/5/2/3/b/member_243561051.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/5/2/3/b/thumb_243561051.jpeg' - members: 232 - name: TallyJS - state: FL lat: 30.479999542236328 - who: Tally scripters - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Princeton - timezone: US/Eastern - created: 1392645214000 link: 'http://www.meetup.com/javaScript-io/' - rating: 4.94 + name: javaScript.io description: '

Have you ever shut off your MacBook Pro at the end of the day only to encounter a world of family, friends, bartenders and manicurists who’s eyes glaze over when you attempt to share your passion for JavaScript? If so, despair no longer. javaScript.io is a place where you can come to meet like minded, savants who live or work near Princeton, NJ, and discuss frameworks, design patterns, and interesting applications of this delightfully versatile language. NOTE: If the phrase “prototypical inheritance” is something you feel should be discussed with an accountant or lawyer, this is probably not the meetup for you.

' lon: -74.66999816894531 - join_mode: open - organizer: - member_id: 63071702 - name: Howard Engelhart - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/4/4/e/highres_73441102.jpeg' - photo_id: 73441102 - photo_link: 'http://photos2.meetupstatic.com/photos/member/4/4/e/member_73441102.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/4/4/e/thumb_73441102.jpeg' - members: 113 - name: javaScript.io - state: NJ lat: 40.369998931884766 - who: Savants - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: New York - timezone: US/Eastern - created: 1392958107000 link: 'http://www.meetup.com/MEAN-Stack-NYC/' - rating: 4.89 - description: "

This group is for anyone interested in learning more about building web applications with the MEAN (MongoDB, Express, AngularJS, Node.js) Stack. Experts and the curious are welcome to join!
\n\n

\n

Resources:
\n\n mean.io
\n\n MongoDB\_| Mongoose
\n\n Express
\n\n AngularJS
\n\n Node.js

\n

Build a Real-time Polls Application with Node.js, Express, AngularJS and MongoDB (IBM Tutorial)

\n


\n\n

" + name: 'MEAN (MongoDB, Express, AngularJS, Node.js) Stack NYC' + description: |- +

This group is for anyone interested in learning more about building web applications with the MEAN (MongoDB, Express, AngularJS, Node.js) Stack. Experts and the curious are welcome to join!

+

Resources:
mean.io
MongoDB | Mongoose
Express
AngularJS
Node.js

+

Build a Real-time Polls Application with Node.js, Express, AngularJS and MongoDB (IBM Tutorial)

+


lon: -73.94000244140625 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/8/7/b/4/highres_444754740.jpeg' - photo_id: 444754740 - photo_link: 'http://photos2.meetupstatic.com/photos/event/8/7/b/4/600_444754740.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/8/7/b/4/thumb_444754740.jpeg' - join_mode: open - organizer: - member_id: 48157942 - name: Jamal - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/9/3/0/a/highres_186697642.jpeg' - photo_id: 186697642 - photo_link: 'http://photos4.meetupstatic.com/photos/member/9/3/0/a/member_186697642.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/9/3/0/a/thumb_186697642.jpeg' - members: 970 - name: 'MEAN (MongoDB, Express, AngularJS, Node.js) Stack NYC' - state: NY + photo_link: 'http://photos3.meetupstatic.com/photos/event/a/d/2/2/600_446324322.jpeg' lat: 40.810001373291016 - who: MEANies - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Pittsburgh - timezone: US/Eastern - created: 1393263962000 link: 'http://www.meetup.com/Angular-js-Pittsburgh/' - rating: 4.72 + name: ngPittsburgh description: "

Angular is a superheroic JavaScript 'Model View Whatever' framework. If you're looking for an alternative to writing unmaintainable and buggy jQuery spaghetti code come on down and give Angular.js a try!

" lon: -79.98999786376953 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/4/8/7/f/highres_443238559.jpeg' - photo_id: 443238559 photo_link: 'http://photos4.meetupstatic.com/photos/event/4/8/7/f/600_443238559.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/4/8/7/f/thumb_443238559.jpeg' - join_mode: open - organizer: - member_id: 71983412 - name: Jeremy Wells - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/4/7/d/0/highres_248718384.jpeg' - photo_id: 248718384 - photo_link: 'http://photos2.meetupstatic.com/photos/member/4/7/d/0/member_248718384.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/4/7/d/0/thumb_248718384.jpeg' - members: 640 - name: ngPittsburgh - state: PA lat: 40.45000076293945 - who: Angulari - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Cambridge - timezone: US/Eastern - created: 1393614189000 link: 'http://www.meetup.com/Firebase-Cambridge/' - rating: 5 + name: Firebase Cambridge Meetup description: "

This group is to learn about using Firebase in web and mobile application development. The point of this group is to help each other progress in our projects, not to just sit back and listen to guest speakers.

\n

Firebase is a powerful API to store and sync data in realtime and has full-featured libraries\_for all major web and mobile platforms\_and bindings for the most popular frameworks.

\n

We will have speakers, demos, lightning talks, workshops and socializing to help connect our members and help each other.\_

\n

Come brainstorm ideas, share insights, and exchange feedback on your apps, and most of all, make progress.
\n\n

\n


\n\n

\n

@FirebaseCamb is our twitter handle.

" lon: -71.12999725341797 - join_mode: open - organizer: - member_id: 13364661 - name: Michael Byrne - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/b/b/e/6/highres_151128102.jpeg' - photo_id: 151128102 - photo_link: 'http://photos2.meetupstatic.com/photos/member/b/b/e/6/member_151128102.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/b/b/e/6/thumb_151128102.jpeg' - members: 79 - name: Firebase Cambridge Meetup - state: MA lat: 42.380001068115234 - who: Members - - utc_offset: -21600000 - country: US - visibility: public + - country: US city: Colorado Springs - timezone: US/Mountain - created: 1394461959000 link: 'http://www.meetup.com/coloradospringsjs/' - rating: 4.78 - description: >- -

This is a group for people who work with JavaScript on - a professional level or hobbyists who hack in their spare time. We're - looking for people who know JavaScript and want to learn and share - their knowledge alike. Topics at meetups should be anything that is - even remotely JavaScript related, from web development to hardware - hacking.

- + name: coloradoSprings.js (JavaScript User Group) + description: |- +

This is a group for people who work with JavaScript on a professional level or hobbyists who hack in their spare time. We're looking for people who know JavaScript and want to learn and share their knowledge alike. Topics at meetups should be anything that is even remotely JavaScript related, from web development to hardware hacking.


- -

Join us in #coloradoSprings.js on - freenode

- -

Wiki: https://hackpad.com/collection/E9kKDGDJ9Uu

- -

Code: https://github.com/coloradoSpringsJS

- -

Website: http://coloradospringsjs.org

+

Join us in #coloradoSprings.js on freenode

+

Wiki: https://hackpad.com/collection/E9kKDGDJ9Uu

+

Code: https://github.com/coloradoSpringsJS

+

Website: http://coloradospringsjs.org

lon: -104.81999969482422 - join_mode: open - organizer: - member_id: 13964577 - name: Jerad Bitner - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/1/4/d/4/highres_182705332.jpeg' - photo_id: 182705332 - photo_link: 'http://photos2.meetupstatic.com/photos/member/1/4/d/4/member_182705332.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/1/4/d/4/thumb_182705332.jpeg' - members: 190 - name: coloradoSprings.js (JavaScript User Group) - state: CO lat: 38.83000183105469 - who: JavaScripters - - utc_offset: -21600000 - country: US - visibility: public + - country: US city: Boulder - timezone: US/Mountain - created: 1394552847000 link: 'http://www.meetup.com/Full-Stack-Boulder/' - rating: 4.62 + name: Full Stack Boulder description: "

A group for web professionals and newbies. From rich client user interfaces to multi cluster server deployments. Let's explore together what the web technologies have to offer.

" lon: -105.30999755859375 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/d/9/d/2/highres_341395762.jpeg' - photo_id: 341395762 photo_link: 'http://photos1.meetupstatic.com/photos/event/d/9/d/2/600_341395762.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/d/9/d/2/thumb_341395762.jpeg' - join_mode: open - organizer: - member_id: 6638353 - name: Thomas Frey - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/e/7/0/6/highres_214679142.jpeg' - photo_id: 214679142 - photo_link: 'http://photos4.meetupstatic.com/photos/member/e/7/0/6/member_214679142.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/e/7/0/6/thumb_214679142.jpeg' - members: 368 - name: Full Stack Boulder - state: CO lat: 40.040000915527344 - who: Web Geek - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Luis Obispo - timezone: US/Pacific - created: 1394596608000 link: 'http://www.meetup.com/codeslo/' - rating: 4.79 + name: CodeSLO description: '

CodeSLO is a place for learning to code, and for helping others to learn. We offer free coding classes for anyone who wants to learn, and we meet multiple times per month. To learn more about what we do and why we do it, visit our website at www.codeslo.com.

' lon: -120.6500015258789 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/d/b/6/5/highres_436196165.jpeg' - photo_id: 436196165 photo_link: 'http://photos2.meetupstatic.com/photos/event/d/b/6/5/600_436196165.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/d/b/6/5/thumb_436196165.jpeg' - join_mode: open - organizer: - member_id: 116589242 - name: Matt West - photo: - photo_id: 154015552 - photo_link: 'http://photos1.meetupstatic.com/photos/member/d/9/0/0/member_154015552.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/d/9/0/0/thumb_154015552.jpeg' - members: 335 - name: CodeSLO - state: CA lat: 35.2599983215332 - who: Coders - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: New York - timezone: US/Eastern - created: 1394663403000 link: 'http://www.meetup.com/WomenWhoCodeNYC/' - rating: 4.75 - description: >- + name: Women Who Code NYC + description: |-

Mission:

- -

Women Who Code is a global nonprofit organization dedicated to - inspiring women to excel in technology careers by creating a global, - connected community of women in technology. The organization tripled in - 2013 and has grown to be one of the largest communities of women - engineers in the world.

- +

Women Who Code is a global nonprofit organization dedicated to inspiring women to excel in technology careers by creating a global, connected community of women in technology. The organization tripled in 2013 and has grown to be one of the largest communities of women engineers in the world.

Empowerment:

- -

Women Who code is a professional community for women in - tech. We provide an avenue for women to pursue a career in - technology, help them gain new skills and hone existing skills for - professional advancement, and foster environments where networking and - mentorship are valued.

- +

Women Who code is a professional community for women in tech. We provide an avenue for women to pursue a career in technology, help them gain new skills and hone existing skills for professional advancement, and foster environments where networking and mentorship are valued.

Key Initiatives:

-

Free technical study groups

- -

Events featuring influential tech industry experts and - investors

- +

Events featuring influential tech industry experts and investors

Hack events

-

Career and leadership development

-

Current and aspiring coders are welcome. 

-

Bring your laptop and a friend! 

-

Support Women Who Code:

- -

Donating to Women Who - Code, Inc. (#46-4218859) directly impacts our ability to - efficiently run this growing organization, helps us produce new - programs that will increase our reach, and enables us to expand into - new cities around the world ensuring that women and girls everywhere - have the opportunity to pursue a career in technology.

- -

Women Who Code (WWCode) is dedicated to providing an empowering - experience for everyone who participates in or supports our community, - regardless of gender, gender identity and expression, sexual - orientation, ability, physical appearance, body size, race, ethnicity, - age, religion, or socioeconomic status. Because we value the safety and - security of our members and strive to have an inclusive community, we - do not tolerate harassment of members or event participants in any - form. Our Code - of Conduct applies to all events run by Women Who Code, Inc. - If you would like to report an incident or contact our leadership team, - please submit an incident - report form.

- +

Donating to Women Who Code, Inc. (#46-4218859) directly impacts our ability to efficiently run this growing organization, helps us produce new programs that will increase our reach, and enables us to expand into new cities around the world ensuring that women and girls everywhere have the opportunity to pursue a career in technology.

+

Women Who Code (WWCode) is dedicated to providing an empowering experience for everyone who participates in or supports our community, regardless of gender, gender identity and expression, sexual orientation, ability, physical appearance, body size, race, ethnicity, age, religion, or socioeconomic status. Because we value the safety and security of our members and strive to have an inclusive community, we do not tolerate harassment of members or event participants in any form. Our Code of Conduct applies to all events run by Women Who Code, Inc. If you would like to report an incident or contact our leadership team, please submit an incident report form.

WomenWhoCode.com

- -

Twitter | Facebook

+

Twitter | Facebook

lon: -74 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/7/b/8/0/highres_446191616.jpeg' - photo_id: 446191616 photo_link: 'http://photos3.meetupstatic.com/photos/event/7/b/8/0/600_446191616.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/7/b/8/0/thumb_446191616.jpeg' - join_mode: open - organizer: - member_id: 129339582 - name: Women Who Code - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/8/5/c/2/highres_172594242.jpeg' - photo_id: 172594242 - photo_link: 'http://photos4.meetupstatic.com/photos/member/8/5/c/2/member_172594242.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/8/5/c/2/thumb_172594242.jpeg' - members: 5853 - name: Women Who Code NYC - state: NY lat: 40.7400016784668 - who: Badass Female Coders - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Bismarck - timezone: US/Central - created: 1394813450000 link: 'http://www.meetup.com/DakotaJS/' - rating: 4.93 + name: DakotaJS description: "We're a group of JavaScript enthusiasts that get together to learn from each other and talk about the latest in the world of JavaScript." lon: -100.77999877929688 - join_mode: open - organizer: - member_id: 13460509 - name: Justin Walsh - photo: - photo_id: 65848632 - photo_link: 'http://photos4.meetupstatic.com/photos/member/6/f/d/8/member_65848632.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/6/f/d/8/thumb_65848632.jpeg' - members: 32 - name: DakotaJS - state: ND lat: 46.81999969482422 - who: Coders - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Manchester - timezone: US/Eastern - created: 1395865297000 link: 'http://www.meetup.com/Front-End-Rally/' - rating: 5 + name: Front End Rally description: 'The web is rapidly changing. New standards, technology and techniques are being created daily; making it difficult to stay on top of your game. The Front End Rally is a community of Professional Front End Developers and enthusiasts dedicated to meeting, talking and sharing ideas about the latest and greatest technology, techniques and workflows together.' lon: -71.44999694824219 - join_mode: open - organizer: - member_id: 139186552 - name: Front End Rally - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/6/1/e/6/highres_186565062.jpeg' - photo_id: 186565062 - photo_link: 'http://photos1.meetupstatic.com/photos/member/6/1/e/6/member_186565062.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/6/1/e/6/thumb_186565062.jpeg' - members: 156 - name: Front End Rally - state: NH lat: 43 - who: MFERs - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Tampa - timezone: US/Eastern - created: 1396913991000 link: 'http://www.meetup.com/tampa-nodejs/' - rating: 4.74 + name: Tampa NodeJS description: "

The purpose of Tampa NodeJS is to bring together developers that are interested in learning more about Node.js and all things related. This group is open to anyone that's interested, no experience necessary, if you want to learn more about Node or you want to share your knowledge then please join us!

" lon: -82.45999908447266 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/6/5/e/c/highres_402806092.jpeg' - photo_id: 402806092 photo_link: 'http://photos2.meetupstatic.com/photos/event/6/5/e/c/600_402806092.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/6/5/e/c/thumb_402806092.jpeg' - join_mode: open - organizer: - member_id: 14096341 - name: Eli Wheaton - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/d/5/8/6/highres_213354662.jpeg' - photo_id: 213354662 - photo_link: 'http://photos1.meetupstatic.com/photos/member/d/5/8/6/member_213354662.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/d/5/8/6/thumb_213354662.jpeg' - members: 432 - name: Tampa NodeJS - state: FL lat: 27.959999084472656 - who: Noders - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Francisco - timezone: US/Pacific - created: 1397512923000 link: 'http://www.meetup.com/Famo-us-Hacking-Meetup-in-San-Francisco/' - rating: 4.41 + name: Famo.us Hacking Meetup in San Francisco description: 'An unofficial hackers group for those interested in learning about and building apps with Famo.us, a JavaScript platform that enables engineers to build beautiful, cross-platform web apps that perform as well as the very best native apps.' lon: -122.44000244140625 - join_mode: open - organizer: - member_id: 9952356 - name: Augustin Bralley - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/5/e/e/e/highres_193284302.jpeg' - photo_id: 193284302 - photo_link: 'http://photos4.meetupstatic.com/photos/member/5/e/e/e/member_193284302.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/5/e/e/e/thumb_193284302.jpeg' - members: 413 - name: Famo.us Hacking Meetup in San Francisco - state: CA lat: 37.7599983215332 - who: Famo.us Hackers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Mountain View - timezone: US/Pacific - created: 1397683105000 link: 'http://www.meetup.com/Silicon-Valley-EmberJS-Meetup/' - rating: 5 - lon: -122.08000183105469 - join_mode: open - organizer: - member_id: 2604303 - name: Erik Bryn - photo: - photo_id: 81824222 - photo_link: 'http://photos2.meetupstatic.com/photos/member/a/c/b/e/member_81824222.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/a/c/b/e/thumb_81824222.jpeg' - members: 597 name: Silicon Valley Ember.js Meetup - state: CA + lon: -122.08000183105469 lat: 37.40999984741211 - who: Embereños - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Boston - timezone: US/Eastern - created: 1398100182000 link: 'http://www.meetup.com/Future-of-Technology-in-Education-at-Cengage-Learning/' + name: Future of Technology in Education at Cengage Learning description: "Want to learn future of technology in Education Industry and learn how you could help? Cengage Learning would like to invite you on Monday, April 28th from 6:00pm - 8:30pm at 10 Channel Center, 3rd Floor South Boston. (10 Channel Center is on A Street in South Boston, 500 feet to the right of Barlow's Restaurant), to share how Education Industry is transforming in this age of data & analytics. Cengage will share the vision of the future of technology in the Education industry, product & technology roadmap over the next several years and corporate culture & environment. This event will be a fast-track ride into the world of education as seen by Cengage. Come and join the discussion. The following agenda is planned for the evening: 6:00pm - 6:30pm: Registration & Conversation 6:30pm - 6:50pm: George Moore, Chief Technology Officer - Mr. Moore will be providing his perspective on the trends in the Education Industry and how technology will play a significant role in defining and shaping the future of how students learning activities will be changing and how learning institutions will adapt over time 6:50pm - 7:10pm: Doug Mealing, Chief Architect - Mr. Mealing will be describing the current technology landscape at Cengage Learning and the challenges it faces and the direction of its enterprise architecture and frameworks 7:10pm - 7:30pm: Ryan Martin, Principal Architect/Designer - Mr. Martin will portray what it's like to be a technologist in Cengage's environment and the culture of the organization 7:30pm - 8:30pm: Q&A Open Discussion Please RSVP, and looking forward to seeing you all at the event." lon: -71.05000305175781 - join_mode: open - organizer: - member_id: 105407212 - name: Anoop Gupta - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/4/a/8/a/highres_138139082.jpeg' - photo_id: 138139082 - photo_link: 'http://photos3.meetupstatic.com/photos/member/4/a/8/a/member_138139082.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/4/a/8/a/thumb_138139082.jpeg' - members: 48 - name: Future of Technology in Education at Cengage Learning - state: MA lat: 42.36000061035156 - who: javascript gurus - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Seattle - timezone: US/Pacific - created: 1398270744000 link: 'http://www.meetup.com/seattlejshackers/' - rating: 4.89 - description: >- -

Seattle JS Hackers is an open and inclusive after-hours - community of JavaScript hackers who learn and hack in JavaScript - together. We are entrepreneurs, creatives, professionals, - tinkerers, computer scientists, educators, marketers, and more -- - all working to ignite and amplify our personal productivity and - collaboration.

- -

How we do it: We organize hacking sessions at WiFi-ready - offices, cafes and bars around Seattle each week. Our hacking - sessions encourage peer ideation and review, knowledge sharing, new - champions for causes and projects, personal productivity, and - a heightened sense of community.

- -

If you want to to learn and hack with together, come join - us!

+ name: SeattleJS Hackers + description: |- +

Seattle JS Hackers is an open and inclusive after-hours community of JavaScript hackers who learn and hack in JavaScript together. We are entrepreneurs, creatives, professionals, tinkerers, computer scientists, educators, marketers, and more -- all working to ignite and amplify our personal productivity and collaboration.

+

How we do it: We organize hacking sessions at WiFi-ready offices, cafes and bars around Seattle each week. Our hacking sessions encourage peer ideation and review, knowledge sharing, new champions for causes and projects, personal productivity, and a heightened sense of community.

+

If you want to to learn and hack with together, come join us!

lon: -122.33000183105469 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/b/5/1/9/highres_443266361.jpeg' - photo_id: 443266361 photo_link: 'http://photos4.meetupstatic.com/photos/event/b/5/1/9/600_443266361.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/b/5/1/9/thumb_443266361.jpeg' - join_mode: open - organizer: - member_id: 13604544 - name: Sam Eubank - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/5/2/6/7/highres_246141095.jpeg' - photo_id: 246141095 - photo_link: 'http://photos4.meetupstatic.com/photos/member/5/2/6/7/member_246141095.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/5/2/6/7/thumb_246141095.jpeg' - members: 631 - name: SeattleJS Hackers - state: WA lat: 47.61000061035156 - who: Hackers - - utc_offset: -21600000 - country: US - visibility: public + - country: US city: Boise - timezone: US/Mountain - created: 1398445529000 link: 'http://www.meetup.com/frontend-devs/' - rating: 5 - description: >- -

Front end technologies, tools, processes and the way it interacts - with other tiers.

- -

We got great talent looking forward to share their expertise on - AngularJS, React, Swift, ExtJS, etc

- + name: Frontend Development + description: |- +

Front end technologies, tools, processes and the way it interacts with other tiers.

+

We got great talent looking forward to share their expertise on AngularJS, React, Swift, ExtJS, etc

Come and make the difference!

lon: -116.20999908447266 - join_mode: open - organizer: - member_id: 34043592 - name: Mauricio Inguanzo - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/4/4/f/a/highres_250937658.jpeg' - photo_id: 250937658 - photo_link: 'http://photos2.meetupstatic.com/photos/member/4/4/f/a/member_250937658.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/4/4/f/a/thumb_250937658.jpeg' - members: 327 - name: Frontend Development - state: ID lat: 43.630001068115234 - who: Frontend developers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Francisco - timezone: US/Pacific - created: 1398562115000 link: 'http://www.meetup.com/MEAN-SF-Developers/' - rating: 5 + name: MEAN SF Developers description: "We are MEAN (MongoDB, Express, AngularJS and Node.js) developers. We love the stack, love to share and learn together. We'll have social events, to-the-point-presentations and hacking nights. All levels welcome. ...to get started: http://meanjs.org" lon: -122.41999816894531 - join_mode: open - organizer: - member_id: 60231382 - name: Mike Moser - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/c/b/6/highres_69855542.jpeg' - photo_id: 69855542 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/c/b/6/member_69855542.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/c/b/6/thumb_69855542.jpeg' - members: 298 - name: MEAN SF Developers - state: CA lat: 37.75 - who: MEAN Developers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Mountain View - timezone: US/Pacific - created: 1398728074000 link: 'http://www.meetup.com/RethinkDB-Bay-Area-Meetup-Group/' - rating: 4.92 + name: RethinkDB Bay Area Group description: "

Welcome to the official RethinkDB Bay Area meetup group!\_RethinkDB is an open-source, distributed database, built to store JSON documents at scale.

\n

Come meet the RethinkDB team, learn how to build better apps with existing and upcoming features, and get one-on-one support from fellow RethinkDB users and makers at the office hours.

\n

Let's learn, teach, and build software together!

" lon: -122.06999969482422 - join_mode: open - organizer: - member_id: 143407172 - name: Christina Keelan - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/2/1/4/d/highres_242288525.jpeg' - photo_id: 242288525 - photo_link: 'http://photos3.meetupstatic.com/photos/member/2/1/4/d/member_242288525.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/2/1/4/d/thumb_242288525.jpeg' - members: 465 - name: RethinkDB Bay Area Group - state: CA lat: 37.38999938964844 - who: Creators - - utc_offset: -18000000 - country: US - visibility: public_limited + - country: US city: Lakewood - timezone: US/Eastern - created: 1399392139000 - link: 'http://www.meetup.com/Lakewood-Web-Developers/' - rating: 4.89 + link: 'http://www.meetup.com/Lakewood-Software-Developers/' + name: Lakewood Software Developers description: '

This is a meetup for frum web developers from the Lakewood community interested in learning, discussing and showcasing the latest web related tools and technologies. All skill levels are welcome. We hope to meet once a month.

' lon: -74.19999694824219 - join_mode: approval - organizer: - member_id: 127780642 - name: Mordy Tikotzky - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/a/1/e/c/highres_169601452.jpeg' - photo_id: 169601452 - photo_link: 'http://photos4.meetupstatic.com/photos/member/a/1/e/c/member_169601452.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/a/1/e/c/thumb_169601452.jpeg' - members: 61 - name: Lakewood Web Developers - state: NJ lat: 40.08000183105469 - who: Developers - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Grand Rapids - timezone: US/Eastern - created: 1399401921000 link: 'http://www.meetup.com/GRNodeDev/' - rating: 5 - description: >- -

We're a group of developers that are experimenting with and are - using Node.js for web and app development.

- -

Our goal is to explore the platform, to share what we're learning - with others, and to meet others that are interested in Node.js.

- -

Whether you're using Node.js in several projects or have just heard - about it and want to learn more, we'd love to chat.

- lon: -85.52999877929688 - join_mode: open - organizer: - member_id: 46894162 - name: Nic Jansma - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/b/1/b/e/highres_159765502.jpeg' - photo_id: 159765502 - photo_link: 'http://photos2.meetupstatic.com/photos/member/b/1/b/e/member_159765502.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/b/1/b/e/thumb_159765502.jpeg' - members: 168 name: GrNodeDev - state: MI + description: |- +

We're a group of developers that are experimenting with and are using Node.js for web and app development.

+

Our goal is to explore the platform, to share what we're learning with others, and to meet others that are interested in Node.js.

+

Whether you're using Node.js in several projects or have just heard about it and want to learn more, we'd love to chat.

+ lon: -85.52999877929688 lat: 42.93000030517578 - who: NodeJSers - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: New York - timezone: US/Eastern - created: 1399407729000 link: 'http://www.meetup.com/Yahoo-Tech-Talks/' - rating: 4.75 - description: >- + name: Yahoo Tech Talks - NYC + description: |-

-

- -

Looking for a Mobile Tech Talk series in NYC that covers, not - only iOS and Android development, but mobile backends, performance at - scale, quality engineering and mobile design? 

- +

Looking for a Mobile Tech Talk series in NYC that covers, not only iOS and Android development, but mobile backends, performance at scale, quality engineering and mobile design? 

- -

Whether you are a designer, mobile programmer, or backend engineer, - or full-stack developer, we think you will want to attend this series - of multi-platform NYC Tech Talks, sponsored by Yahoo. 

- +

Whether you are a designer, mobile programmer, or backend engineer, or full-stack developer, we think you will want to attend this series of multi-platform NYC Tech Talks, sponsored by Yahoo. 

- -

• Native development, • UI/UX, • - Architecture, • Graphics, • Serving at - scale, • Cross-platform technologies and more...

- +

• Native development, • UI/UX, • Architecture, • Graphics, • Serving at scale, • Cross-platform technologies and more...

-

Hope to see you soon! =)

-

-


-

- -

- +

-

lon: -73.98999786376953 - join_mode: open - organizer: - member_id: 17222411 - name: Pierre Maloka - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/1/4/e/8/highres_196025352.jpeg' - photo_id: 196025352 - photo_link: 'http://photos1.meetupstatic.com/photos/member/1/4/e/8/member_196025352.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/1/4/e/8/thumb_196025352.jpeg' - members: 703 - name: Yahoo Tech Talks - NYC - state: NY lat: 40.7599983215332 - who: Members - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Francisco - timezone: US/Pacific - created: 1399588129000 link: 'http://www.meetup.com/ReactJS-San-Francisco/' - rating: 4.92 - description: >- -

ReactJs is a fun, easy to use Javascript library started by Facebook - and maintained by *you*.

- -

http://facebook.github.io/react/

- -

ReactJs is crazy easy to get started and so fun once you get going. -  

- -

Join us if you'd like to learn more or if you have your own ReactJs - experience to share that others can benefit from.

+ name: ReactJS San Francisco Bay Area meetup + description: |- +

ReactJs is a fun, easy to use Javascript library started by Facebook and maintained by *you*.

+

http://facebook.github.io/react/

+

ReactJs is crazy easy to get started and so fun once you get going.  

+

Join us if you'd like to learn more or if you have your own ReactJs experience to share that others can benefit from.

lon: -122.4000015258789 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/b/d/8/a/highres_361668522.jpeg' - photo_id: 361668522 photo_link: 'http://photos4.meetupstatic.com/photos/event/b/d/8/a/600_361668522.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/b/d/8/a/thumb_361668522.jpeg' - join_mode: open - organizer: - member_id: 9014437 - name: devon lindsey - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/7/4/a/c/highres_251789868.jpeg' - photo_id: 251789868 - photo_link: 'http://photos1.meetupstatic.com/photos/member/7/4/a/c/member_251789868.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/7/4/a/c/thumb_251789868.jpeg' - members: 2899 - name: ReactJS San Francisco Bay Area meetup - state: CA lat: 37.79999923706055 - who: Developers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Sunnyvale - timezone: US/Pacific - created: 1399992406000 link: 'http://www.meetup.com/Women-Who-Code-Silicon-Valley/' - rating: 4.9 - description: >- + name: Women Who Code Silicon Valley + description: |-

Mission:

- -

Women Who Code is a global nonprofit organization dedicated to - inspiring women to excel in technology careers by creating a global, - connected community of women in technology. The organization tripled in - 2013 and has grown to be one of the largest communities of women - engineers in the world.

- +

Women Who Code is a global nonprofit organization dedicated to inspiring women to excel in technology careers by creating a global, connected community of women in technology. The organization tripled in 2013 and has grown to be one of the largest communities of women engineers in the world.

Empowerment:

- -

Women Who code is a professional community for women in - tech. We provide an avenue for women to pursue a career in - technology, help them gain new skills and hone existing skills for - professional advancement, and foster environments where networking and - mentorship are valued.

- +

Women Who code is a professional community for women in tech. We provide an avenue for women to pursue a career in technology, help them gain new skills and hone existing skills for professional advancement, and foster environments where networking and mentorship are valued.

Key Initiatives:

-

Free technical study groups

- -

Events featuring influential tech industry experts and - investors

- +

Events featuring influential tech industry experts and investors

Hack events

-

Career and leadership development

-

Current and aspiring coders are welcome. 

-

Bring your laptop and a friend! 

-

Support Women Who Code:

- -

Donating to Women Who - Code, Inc. (#46-4218859) directly impacts our ability to - efficiently run this growing organization, helps us produce new - programs that will increase our reach, and enables us to expand into - new cities around the world ensuring that women and girls everywhere - have the opportunity to pursue a career in technology.

- -

Women Who Code (WWCode) is dedicated to providing an empowering - experience for everyone who participates in or supports our community, - regardless of gender, gender identity and expression, sexual - orientation, ability, physical appearance, body size, race, ethnicity, - age, religion, or socioeconomic status. Because we value the safety and - security of our members and strive to have an inclusive community, we - do not tolerate harassment of members or event participants in any - form. Our Code - of Conduct applies to all events run by Women Who Code, Inc. - If you would like to report an incident or contact our leadership team, - please submit an incident - report form.

- +

Donating to Women Who Code, Inc. (#46-4218859) directly impacts our ability to efficiently run this growing organization, helps us produce new programs that will increase our reach, and enables us to expand into new cities around the world ensuring that women and girls everywhere have the opportunity to pursue a career in technology.

+

Women Who Code (WWCode) is dedicated to providing an empowering experience for everyone who participates in or supports our community, regardless of gender, gender identity and expression, sexual orientation, ability, physical appearance, body size, race, ethnicity, age, religion, or socioeconomic status. Because we value the safety and security of our members and strive to have an inclusive community, we do not tolerate harassment of members or event participants in any form. Our Code of Conduct applies to all events run by Women Who Code, Inc. If you would like to report an incident or contact our leadership team, please submit an incident report form.

WomenWhoCode.com

- -

Twitter | Facebook

- +

Twitter | Facebook


lon: -122.01000213623047 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/b/9/1/3/highres_431687379.jpeg' - photo_id: 431687379 photo_link: 'http://photos3.meetupstatic.com/photos/event/b/9/1/3/600_431687379.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/b/9/1/3/thumb_431687379.jpeg' - join_mode: open - organizer: - member_id: 129339582 - name: Women Who Code - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/8/5/c/2/highres_172594242.jpeg' - photo_id: 172594242 - photo_link: 'http://photos4.meetupstatic.com/photos/member/8/5/c/2/member_172594242.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/8/5/c/2/thumb_172594242.jpeg' - members: 1836 - name: Women Who Code Silicon Valley - state: CA lat: 37.400001525878906 - who: Coders - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Johnson City - timezone: US/Eastern - created: 1400001934000 link: 'http://www.meetup.com/Tri-JS/' - rating: 4.83 + name: TriJS description: "

PHP, .NET, Java, Ruby/Rails, Node.JS, Python/Django. No matter what kind of web developer you are, you're using JavaScript. This group is dedicated to the language that brings us all together - the world's most popular language and the world's most horribly used. We'll talk JavaScript, Angular.JS, jQuery, Node.JS and more.

" lon: -82.37999725341797 - join_mode: open - organizer: - member_id: 13811271 - name: Ryan Hayes - photo: - photo_id: 201355252 - photo_link: 'http://photos2.meetupstatic.com/photos/member/d/7/d/4/member_201355252.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/d/7/d/4/thumb_201355252.jpeg' - members: 86 - name: TriJS - state: TN lat: 36.310001373291016 - who: JavaScribes - - utc_offset: -14400000 - country: CA - visibility: public + - country: CA city: Toronto - timezone: Canada/Eastern - created: 1400342058000 link: 'http://www.meetup.com/JS-Code-Club/' - rating: 4.61 - description: >- -

The JS Code Club is a group of people that come together to - hack on anything with JavaScript. The group will help motivate you to - start on your ideas, and help you along the way. Bring your ideas, pair - with other developers, and start building!

- -

JS Code Club is open to all. If you are a seasoned developer or just - starting out, and have an interest in JavaScript, join the club!

- + name: JS Code Club + description: |- +

The JS Code Club is a group of people that come together to hack on anything with JavaScript. The group will help motivate you to start on your ideas, and help you along the way. Bring your ideas, pair with other developers, and start building!

+

JS Code Club is open to all. If you are a seasoned developer or just starting out, and have an interest in JavaScript, join the club!


lon: -79.38999938964844 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/2/c/0/highres_444300704.jpeg' - photo_id: 444300704 photo_link: 'http://photos2.meetupstatic.com/photos/event/2/c/0/600_444300704.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/2/c/0/thumb_444300704.jpeg' - join_mode: open - organizer: - member_id: 8845990 - name: Paul Dowman - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/d/2/7/a/highres_209513882.jpeg' - photo_id: 209513882 - photo_link: 'http://photos2.meetupstatic.com/photos/member/d/2/7/a/member_209513882.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/d/2/7/a/thumb_209513882.jpeg' - members: 786 - name: JS Code Club - state: 'ON' lat: 43.650001525878906 - who: Hackers - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: New York - timezone: US/Eastern - created: 1400443208000 link: 'http://www.meetup.com/init-developer/' - rating: 4.88 - description: >- -

We're a group dedicated to helping new software developers get - started. We welcome mentors, educators, software developers of all - skill levels, and companies interested in hiring new developers for - internships, apprenticeships, first-hires, or junior roles.

- -

As mentors, instructors and educators, how do we develop curricula - that gets developers ready for software development? How do we test and - iterate?

- -

As software developers and architects, how do we write codebases - that are straightforward and clean? How do we best optimize for - productivity from newer developers?

- -

As newer software developers, how do we filter out the noise? How do - we find career coaching and mentorship? How do we move from - a structured learning environment to a self-taught one?

- -

There are a lot of people in the software community in NYC who want - to help new developers succeed. That's our goal.

- -

We'll be hosting roundtable discussions, planning sessions, and - other, more tech-focused events.

- lon: -73.98999786376953 - join_mode: open - organizer: - member_id: 7716046 - name: Gabe Kneisley - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/c/c/9/4/highres_198472372.jpeg' - photo_id: 198472372 - photo_link: 'http://photos4.meetupstatic.com/photos/member/c/c/9/4/member_198472372.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/c/c/9/4/thumb_198472372.jpeg' - members: 73 name: init developer - state: NY + description: |- +

We're a group dedicated to helping new software developers get started. We welcome mentors, educators, software developers of all skill levels, and companies interested in hiring new developers for internships, apprenticeships, first-hires, or junior roles.

+

As mentors, instructors and educators, how do we develop curricula that gets developers ready for software development? How do we test and iterate?

+

As software developers and architects, how do we write codebases that are straightforward and clean? How do we best optimize for productivity from newer developers?

+

As newer software developers, how do we filter out the noise? How do we find career coaching and mentorship? How do we move from a structured learning environment to a self-taught one?

+

There are a lot of people in the software community in NYC who want to help new developers succeed. That's our goal.

+

We'll be hosting roundtable discussions, planning sessions, and other, more tech-focused events.

+ lon: -73.98999786376953 lat: 40.720001220703125 - who: developer developers - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Orlando - timezone: US/Eastern - created: 1400680837000 link: 'http://www.meetup.com/OrlandoJS/' - rating: 4.92 + name: OrlandoJS description: The Orlando JavaScript group is a place to talk about all things JavaScript. lon: -81.37000274658203 - join_mode: open - organizer: - member_id: 10428868 - name: Carlos Souza - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/4/f/e/e/highres_94280462.jpeg' - photo_id: 94280462 - photo_link: 'http://photos3.meetupstatic.com/photos/member/4/f/e/e/member_94280462.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/4/f/e/e/thumb_94280462.jpeg' - members: 461 - name: OrlandoJS - state: FL lat: 28.540000915527344 - who: Members - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Nashville - timezone: US/Central - created: 1400743020000 link: 'http://www.meetup.com/Nashville-MEAN-Stack-Development-Meetup/' + name: Nashville MEAN Stack Development Meetup description: '

A group for anyone interested in the MEAN stack, Javascript,  Node.js, Javascript frameworks, AngularJS, Express and related tools.

' lon: -86.95999908447266 - join_mode: open - organizer: - member_id: 147827242 - name: Chris Schaub - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/5/8/1/8/highres_199342552.jpeg' - photo_id: 199342552 - photo_link: 'http://photos4.meetupstatic.com/photos/member/5/8/1/8/member_199342552.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/5/8/1/8/thumb_199342552.jpeg' - members: 114 - name: Nashville MEAN Stack Development Meetup - state: TN lat: 36.060001373291016 - who: Members - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: East Lansing - timezone: US/Eastern - created: 1400811066000 link: 'http://www.meetup.com/Lansing-Javascript-Meetup/' - rating: 4.83 + name: Lansing Javascript Meetup description: "

Calling all Lansing area Javascript enthusiasts (or those who might like to be)! The Lansing Javascript Meetup is a group dedicated to growing the Javascript and startup community in the Mid-Michigan area. Meetups try to include stuff for beginners, as well as more advanced topics for experienced developers. We're all learning (and we were all 'noobs' once!), so don't be shy about attending, regardless of your experience level. Just come, hang out, eat, drink, meet, and learn. It's free. It's fun. It's Javascript.

" lon: -84.47000122070312 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/5/3/7/8/highres_437661368.jpeg' - photo_id: 437661368 photo_link: 'http://photos1.meetupstatic.com/photos/event/5/3/7/8/600_437661368.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/5/3/7/8/thumb_437661368.jpeg' - join_mode: open - organizer: - member_id: 123126832 - name: Jesse - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/4/e/7/2/highres_163220082.jpeg' - photo_id: 163220082 - photo_link: 'http://photos4.meetupstatic.com/photos/member/4/e/7/2/member_163220082.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/4/e/7/2/thumb_163220082.jpeg' - members: 236 - name: Lansing Javascript Meetup - state: MI lat: 42.75 - who: Javascript Developers - - utc_offset: -14400000 - country: CA - visibility: public + - country: CA city: Toronto - timezone: Canada/Eastern - created: 1400980721000 link: 'http://www.meetup.com/Reactive-TO/' - rating: 4.78 + name: Reactive Programming Toronto description: "

Reactive is an emerging paradigm to help define and create the next generation of applications.\_

\n

Reactive applications:\_

\n

•\_React to events

\n

•\_React to load

\n

•\_React to failure

\n

•\_React to users

\n

http://www.reactivemanifesto.org

\n

Reactive is language agnostic. If you have suggestions please get in touch!

\n

Visit http://reactiveto.com for more details.

" lon: -79.4000015258789 - join_mode: open - organizer: - member_id: 147929052 - name: Kevin Webber - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/4/0/f/8/highres_240916632.jpeg' - photo_id: 240916632 - photo_link: 'http://photos3.meetupstatic.com/photos/member/4/0/f/8/member_240916632.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/4/0/f/8/thumb_240916632.jpeg' - members: 352 - name: Reactive Programming Toronto - state: 'ON' lat: 43.63999938964844 - who: Reactors - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Las Vegas - timezone: US/Pacific - created: 1401663901000 link: 'http://www.meetup.com/Las-Vegas-Virtual-Reality-Meetup/' - rating: 4.67 + name: Virtual Reality Las Vegas Meetup description: '

Virtual Reality Las Vegas Meetup is building a local community of VR enthusiasts. The Oculus Rift is an easy to use new development platform that allows you to experience VR and create it as well. Everyone is welcome: Engineers, Designers, Game Developers, Entrepreneurs, and VR fans. We will have demos, presentations, speakers, and educational sessions. We will also conduct Hackathons with Oculus Dev Kits. Share, Learn, Experience the future... Today!

' lon: -115.20999908447266 - join_mode: open - organizer: - member_id: 11129575 - name: Rob Mallery - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/4/c/3/8/highres_201619512.jpeg' - photo_id: 201619512 - photo_link: 'http://photos1.meetupstatic.com/photos/member/4/c/3/8/member_201619512.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/4/c/3/8/thumb_201619512.jpeg' - members: 202 - name: Virtual Reality Las Vegas Meetup - state: NV lat: 36.08000183105469 - who: VR Troopers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Los Angeles - timezone: US/Pacific - created: 1401737048000 link: 'http://www.meetup.com/NodeDTLA/' - rating: 4.71 + name: Node.DTLA description: "

Node.DTLA is a community for dreamers, builders, and JavaScript programmers. \_Come explore projects, learnings, and the future of new technologies. \_We're based in Downtown LA and encourage anyone and everyone to join our events!

" lon: -118.23999786376953 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/3/e/e/c/highres_432076108.jpeg' - photo_id: 432076108 photo_link: 'http://photos3.meetupstatic.com/photos/event/3/e/e/c/600_432076108.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/3/e/e/c/thumb_432076108.jpeg' - join_mode: open - organizer: - member_id: 182498698 - name: Vixlet - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/a/7/c/f/highres_241782959.jpeg' - photo_id: 241782959 - photo_link: 'http://photos2.meetupstatic.com/photos/member/a/7/c/f/member_241782959.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/a/7/c/f/thumb_241782959.jpeg' - members: 771 - name: Node.DTLA - state: CA lat: 34.04999923706055 - who: Builders - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Mountain View - timezone: US/Pacific - created: 1401824331000 link: 'http://www.meetup.com/southbayjs/' - rating: 4.82 + name: South Bay JavaScript Meetup description: '

A group dedicated to sharing knowledge through promoting software development best practices. Sessions will cover a range of technologies and languages, primarily related to building software and systems on the web.

' lon: -122.06999969482422 - join_mode: open - organizer: - member_id: 149895822 - name: Lewis Ellis - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/7/0/3/f/highres_249748735.jpeg' - photo_id: 249748735 - photo_link: 'http://photos1.meetupstatic.com/photos/member/7/0/3/f/member_249748735.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/7/0/3/f/thumb_249748735.jpeg' - members: 1420 - name: South Bay JavaScript Meetup - state: CA lat: 37.38999938964844 - who: javascraps - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Minneapolis - timezone: US/Central - created: 1401832267000 link: 'http://www.meetup.com/Skyway-Software-Symposium/' - rating: 4.79 + name: Skyway Software Symposium description: '

We are a group of software engineers that meet monthly (or so) to discuss new software platforms, trends and lessons learned in our respective professional settings.

' lon: -93.27999877929688 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/1/e/a/2/highres_371527842.jpeg' - photo_id: 371527842 photo_link: 'http://photos4.meetupstatic.com/photos/event/1/e/a/2/600_371527842.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/1/e/a/2/thumb_371527842.jpeg' - join_mode: open - organizer: - member_id: 151083772 - name: Brynn Kampinen - members: 1234 - name: Skyway Software Symposium - state: MN lat: 44.970001220703125 - who: tech folk - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Miami - timezone: US/Eastern - created: 1401906869000 link: 'http://www.meetup.com/Miami-node-js-Meetup/' - rating: 5 + name: Miami node.js Meetup description: This is a group for software developers using node.js and Javascript in general. We plan to meet once a month around downtown Miami. lon: -80.19000244140625 - join_mode: open - organizer: - member_id: 3901982 - name: Luc Castera - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/8/9/1/f/highres_1595103.jpeg' - photo_id: 1595103 - photo_link: 'http://photos4.meetupstatic.com/photos/member/8/9/1/f/member_1595103.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/8/9/1/f/thumb_1595103.jpeg' - members: 256 - name: Miami node.js Meetup - state: FL lat: 25.770000457763672 - who: node.js enthusiasts - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Las Vegas - timezone: US/Pacific - created: 1401998884000 link: 'http://www.meetup.com/Meteor-Las-Vegas/' - rating: 5 + name: Meteor Las Vegas description: "

Meet other developers using Meteor. Share your knowledge, apps, and get feedback from others. Meteor is an open-source platform for building top-quality web apps in a fraction of the time, whether you're an expert developer or just getting started.

" lon: -115.13999938964844 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/a/9/8/highres_411602712.jpeg' - photo_id: 411602712 photo_link: 'http://photos3.meetupstatic.com/photos/event/a/9/8/600_411602712.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/a/9/8/thumb_411602712.jpeg' - join_mode: open - organizer: - member_id: 54118672 - name: Abdul Zalil - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/5/5/7/0/highres_61881872.jpeg' - photo_id: 61881872 - photo_link: 'http://photos4.meetupstatic.com/photos/member/5/5/7/0/member_61881872.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/5/5/7/0/thumb_61881872.jpeg' - members: 70 - name: Meteor Las Vegas - state: NV lat: 36.09000015258789 - who: Meteorites - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Columbia - timezone: US/Eastern - created: 1402170720000 link: 'http://www.meetup.com/Maryland-Javascript-Meetup/' - rating: 4.17 + name: Maryland Javascript Meetup description: "

This is a group for Maryland Javascript developers. Whether it's AngularJS, NodeJS, or just plain vanilla Javascript, we'll discuss and present about best practices and the latest trends in Web Development. Join this group & follow https://twitter.com/JsMaryland for updates, and reach out if you have a great idea for a presentation topic!

" lon: -76.83000183105469 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/2/1/9/0/highres_373868592.jpeg' - photo_id: 373868592 photo_link: 'http://photos1.meetupstatic.com/photos/event/2/1/9/0/600_373868592.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/2/1/9/0/thumb_373868592.jpeg' - join_mode: open - organizer: - member_id: 8360488 - name: Andy Winder - photo: - photo_id: 203107972 - photo_link: 'http://photos2.meetupstatic.com/photos/member/1/f/2/4/member_203107972.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/1/f/2/4/thumb_203107972.jpeg' - members: 586 - name: Maryland Javascript Meetup - state: MD lat: 39.20000076293945 - who: Javascript Developers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Portland - timezone: US/Pacific - created: 1402441024000 link: 'http://www.meetup.com/Women-Who-Code-Portland/' - rating: 4.6 - description: >- + name: Women Who Code Portland + description: |-

Mission:

- -

Women Who Code is a global nonprofit organization dedicated to - inspiring women to excel in technology careers by creating a global, - connected community of women in technology. The organization tripled in - 2013 and has grown to be one of the largest communities of women - engineers in the world.

- +

Women Who Code is a global nonprofit organization dedicated to inspiring women to excel in technology careers by creating a global, connected community of women in technology. The organization tripled in 2013 and has grown to be one of the largest communities of women engineers in the world.

Empowerment:

- -

Women Who code is a professional community for women in - tech. We provide an avenue for women to pursue a career in - technology, help them gain new skills and hone existing skills for - professional advancement, and foster environments where networking and - mentorship are valued.

- +

Women Who code is a professional community for women in tech. We provide an avenue for women to pursue a career in technology, help them gain new skills and hone existing skills for professional advancement, and foster environments where networking and mentorship are valued.

Key Initiatives:

-

• Free technical study groups

- -

• Events featuring influential tech industry experts and - investors

- +

• Events featuring influential tech industry experts and investors

• Hack events

-

• Career and leadership development

-

Current and aspiring coders are welcome. 

-

Bring your laptop and a friend! 

-

Support Women Who Code:

- -

Donating to Women Who - Code, Inc. (#46-4218859) directly impacts our ability to - efficiently run this growing organization, helps us produce new - programs that will increase our reach, and enables us to expand into - new cities around the world ensuring that women and girls everywhere - have the opportunity to pursue a career in technology.

- -

Women Who Code (WWCode) is dedicated to providing an - empowering experience for everyone who participates in or supports our - community, regardless of gender, gender identity and expression, sexual - orientation, ability, physical appearance, body size, race, ethnicity, - age, religion, or socioeconomic status. Because we value the safety and - security of our members and strive to have an inclusive community, we - do not tolerate harassment of members or event participants in any - form. Our Code - of Conduct applies to all events run by Women Who Code, Inc. - If you would like to report an incident or contact our leadership team, - please submit an incident - report form.

- +

Donating to Women Who Code, Inc. (#46-4218859) directly impacts our ability to efficiently run this growing organization, helps us produce new programs that will increase our reach, and enables us to expand into new cities around the world ensuring that women and girls everywhere have the opportunity to pursue a career in technology.

+

Women Who Code (WWCode) is dedicated to providing an empowering experience for everyone who participates in or supports our community, regardless of gender, gender identity and expression, sexual orientation, ability, physical appearance, body size, race, ethnicity, age, religion, or socioeconomic status. Because we value the safety and security of our members and strive to have an inclusive community, we do not tolerate harassment of members or event participants in any form. Our Code of Conduct applies to all events run by Women Who Code, Inc. If you would like to report an incident or contact our leadership team, please submit an incident report form.

WomenWhoCode.com

- -

Twitter | Facebook | Blog

- +

Twitter | Facebook | Blog


-

lon: -122.66999816894531 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/a/6/c/9/highres_446262697.jpeg' - photo_id: 446262697 photo_link: 'http://photos1.meetupstatic.com/photos/event/a/6/c/9/600_446262697.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/a/6/c/9/thumb_446262697.jpeg' - join_mode: open - organizer: - member_id: 129339582 - name: Women Who Code - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/8/5/c/2/highres_172594242.jpeg' - photo_id: 172594242 - photo_link: 'http://photos4.meetupstatic.com/photos/member/8/5/c/2/member_172594242.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/8/5/c/2/thumb_172594242.jpeg' - members: 1225 - name: Women Who Code Portland - state: OR lat: 45.52000045776367 - who: Coders - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Katy - timezone: US/Central - created: 1402527600000 link: 'http://www.meetup.com/LearnerJs/' - rating: 5 + name: LearnerJs description: A JavaScript fundamentals user group in Houston Tx. A Part of the HoustonJS group. lon: -95.80999755859375 - join_mode: open - organizer: - member_id: 42642652 - name: Devlin Liles - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/1/d/5/8/highres_203887512.jpeg' - photo_id: 203887512 - photo_link: 'http://photos4.meetupstatic.com/photos/member/1/d/5/8/member_203887512.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/1/d/5/8/thumb_203887512.jpeg' - members: 91 - name: LearnerJs - state: TX lat: 29.75 - who: Learners - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Playa del Rey - timezone: US/Pacific - created: 1402976091000 link: 'http://www.meetup.com/LA-Front-End/' - rating: 4.59 + name: 'LA Front-End Developers: Client-Side Sorcery' description: "

LA Front-End Developers is a haven for front-end engineers, designers, and server-side gurus looking to expand into the client. If you go home at night and ember.js, angular.js, Swift, d3.js or backbone.js code haunts your dreams, you have come to the right place.\_We're focused on presentations, demos and groups of people collaborating to create the best possible UX engineering and data visualization design experiences. Let's do this!

" lon: -118.45999908447266 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/5/e/4/4/highres_377004132.jpeg' - photo_id: 377004132 photo_link: 'http://photos3.meetupstatic.com/photos/event/5/e/4/4/600_377004132.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/5/e/4/4/thumb_377004132.jpeg' - join_mode: open - organizer: - member_id: 25946292 - name: Bryan - photo: - photo_id: 30022742 - photo_link: 'http://photos3.meetupstatic.com/photos/member/5/8/d/6/member_30022742.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/5/8/d/6/thumb_30022742.jpeg' - members: 746 - name: 'LA Front-End Developers: Client-Side Sorcery' - state: CA lat: 33.9900016784668 - who: Client-Siders - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Chattanooga - timezone: US/Eastern - created: 1403161440000 link: 'http://www.meetup.com/Meteor-Chattanooga/' + name: Meteor Chattanooga description: "

Meet other developers using Meteor. Share your knowledge, apps, and get feedback from others. Meteor is an open-source platform for building top-quality web apps in a fraction of the time, whether you're an expert developer or just getting started.

" lon: -85.37000274658203 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/9/6/c/8/highres_438218600.jpeg' - photo_id: 438218600 photo_link: 'http://photos2.meetupstatic.com/photos/event/9/6/c/8/600_438218600.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/9/6/c/8/thumb_438218600.jpeg' - join_mode: open - organizer: - member_id: 81670332 - name: Nick Coe - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/highres_245331334.jpeg' - photo_id: 245331334 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/8/8/6/member_245331334.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/thumb_245331334.jpeg' - members: 18 - name: Meteor Chattanooga - state: TN lat: 35.029998779296875 - who: Meteorites - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Astoria - timezone: US/Eastern - created: 1403279442000 link: 'http://www.meetup.com/QueensJS/' - rating: 4.65 - description: >- -

Do you have a love for JavaScript? Do you want to hear people talk - about JavaScript? Do you want to converse with others who know or are - learning… JavaScript? Then Queens JS is the place for you! On the first - Wednesday of every month, programmers from all over New York City - gather in New York’s largest borough to discuss the passions and - pitfalls of the language that is everywhere, JavaScript.

- -

Interested in being a sponsor? Want to give a talk? Email us at - organizers at queensjs dot com!

- -

Queens JS expects all speakers and attendees to follow the JSConf code of - conduct.

- + name: QueensJS + description: |- +

Do you have a love for JavaScript? Do you want to hear people talk about JavaScript? Do you want to converse with others who know or are learning… JavaScript? Then Queens JS is the place for you! On the first Wednesday of every month, programmers from all over New York City gather in New York’s largest borough to discuss the passions and pitfalls of the language that is everywhere, JavaScript.

+

Interested in being a sponsor? Want to give a talk? Email us at organizers at queensjs dot com!

+

Queens JS expects all speakers and attendees to follow the JSConf code of conduct.


- -

Admission: $5. All proceeds go towards charities that work - to increase code literacy among NYC youth.

- +

Admission: $5. All proceeds go towards charities that work to increase code literacy among NYC youth.

Meetup Structure: Three, 20 minute talks

lon: -73.93000030517578 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/4/4/0/e/highres_392597422.jpeg' - photo_id: 392597422 photo_link: 'http://photos4.meetupstatic.com/photos/event/4/4/0/e/600_392597422.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/4/4/0/e/thumb_392597422.jpeg' - join_mode: open - organizer: - member_id: 5844614 - name: Daniel Cousineau - photo: - photo_id: 207053452 - photo_link: 'http://photos2.meetupstatic.com/photos/member/d/0/c/c/member_207053452.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/d/0/c/c/thumb_207053452.jpeg' - members: 720 - name: QueensJS - state: NY lat: 40.7599983215332 - who: JS Transpilers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Santa Cruz - timezone: US/Pacific - created: 1403395598000 link: 'http://www.meetup.com/santacruzjs/' - rating: 4.77 + name: Santa Cruz JavaScript description: "
\n

We are an open group with meetups that can be presentations on a topic or informal hack/code/chat sessions.

\n

We accommodate all experience levels through a variety of events.

\n

For our hack/code/chat sessions: just show up, find an allocated table, sit with unfamiliar or familiar faces, introduce yourself, and do whatever you feel like in the JS-inspired environment. You most likely will learn something new with JS (framework, library, debugging strategies, etc.), meet cool people, get some stuff done, showcase some cool work you've done, or get help on some of your project.

\n
" lon: -122.05999755859375 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/3/f/0/e/highres_403576142.jpeg' - photo_id: 403576142 photo_link: 'http://photos4.meetupstatic.com/photos/event/3/f/0/e/600_403576142.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/3/f/0/e/thumb_403576142.jpeg' - join_mode: open - organizer: - member_id: 3846078 - name: Anthony Ettinger - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/c/a/9/6/highres_100971862.jpeg' - photo_id: 100971862 - photo_link: 'http://photos3.meetupstatic.com/photos/member/c/a/9/6/member_100971862.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/c/a/9/6/thumb_100971862.jpeg' - members: 285 - name: Santa Cruz JavaScript - state: CA lat: 36.9900016784668 - who: Hackers - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: New York - timezone: US/Eastern - created: 1403671487000 link: 'http://www.meetup.com/NYC-Real-Time-Computing-NYCRTC/' + name: NYC Real-Time Computing (NYCRTC) description: 'Web APIs such as MediaStream, DataChannel, and PeerConnection will change the way we build web applications. Come to share ideas, projects or learn about the upcoming real-time technologies that will revolutionize the web.' lon: -73.98999786376953 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/d/8/e/2/highres_380575522.jpeg' - photo_id: 380575522 photo_link: 'http://photos4.meetupstatic.com/photos/event/d/8/e/2/600_380575522.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/d/8/e/2/thumb_380575522.jpeg' - join_mode: open - organizer: - member_id: 13246737 - name: Esco Obong - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/4/2/d/d/highres_252257117.jpeg' - photo_id: 252257117 - photo_link: 'http://photos2.meetupstatic.com/photos/member/4/2/d/d/member_252257117.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/4/2/d/d/thumb_252257117.jpeg' - members: 42 - name: NYC Real-Time Computing (NYCRTC) - state: NY lat: 40.7599983215332 - who: real-timers - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: New York - timezone: US/Eastern - created: 1403727867000 link: 'http://www.meetup.com/nycgolang/' - rating: 4.54 - description: >- -

Our group is for true Go developers and enthusiasts. Join us every - month to connect with the local NYC community of Go engineers. We will - meet to share insight and listen to guest speakers on Go related - topics.

- -

New to Go? Ask questions and discuss technical topics with the rest - of the community at the beginning of each meetup. Attending monthly - meetups will help you get motivated and stay focused on your path to - mastering Go!

- lon: -74 - join_mode: open - organizer: - member_id: 8026130 - name: Nick Manning - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/e/2/9/2/highres_197338002.jpeg' - photo_id: 197338002 - photo_link: 'http://photos3.meetupstatic.com/photos/member/e/2/9/2/member_197338002.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/e/2/9/2/thumb_197338002.jpeg' - members: 871 name: NYC Golang - state: NY + description: |- +

Our group is for true Go developers and enthusiasts. Join us every month to connect with the local NYC community of Go engineers. We will meet to share insight and listen to guest speakers on Go related topics.

+

New to Go? Ask questions and discuss technical topics with the rest of the community at the beginning of each meetup. Attending monthly meetups will help you get motivated and stay focused on your path to mastering Go!

+ lon: -74 lat: 40.7400016784668 - who: Go Enthusiasts - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Diego - timezone: US/Pacific - created: 1403732662000 link: 'http://www.meetup.com/Meteor-San-Diego/' - rating: 4.31 + name: Meteor San Diego description: "

Meet other developers using Meteor. Share your knowledge, apps, and get feedback from others. Meteor is an open-source platform for building top-quality web apps in a fraction of the time, whether you're an expert developer or just getting started.

" lon: -117.19999694824219 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/a/9/6/c/highres_398383372.jpeg' - photo_id: 398383372 photo_link: 'http://photos3.meetupstatic.com/photos/event/a/9/6/c/600_398383372.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/a/9/6/c/thumb_398383372.jpeg' - join_mode: open - organizer: - member_id: 81670332 - name: Nick Coe - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/highres_245331334.jpeg' - photo_id: 245331334 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/8/8/6/member_245331334.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/thumb_245331334.jpeg' - members: 263 - name: Meteor San Diego - state: CA lat: 32.88999938964844 - who: Meteorites - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Venice - timezone: US/Pacific - created: 1403745406000 link: 'http://www.meetup.com/Los-Angeles-MEAN-Stack-Developers/' - rating: 4.85 - description: >- -

The term "MEAN stack" was coined to denote the all-JavaScript web - application stack of MongoDB, ExpressJS, AngularJS, and NodeJS... but - you already knew that, didn't you? We're a group of developers who are - at varying levels of expertise with the stack, but who are continuously - striving to improve our technical skills, our professional network, and - our beat-boxing abilities. Our meetups range from basic how-tos, to - best practice presentations, hackathons, bar crawls, and dance-offs. - You never know what we'll schedule next, but you do know it'll make you - smarter, better networked, or better looking.

- + name: Los Angeles MEAN Stack Developers + description: |- +

The term "MEAN stack" was coined to denote the all-JavaScript web application stack of MongoDB, ExpressJS, AngularJS, and NodeJS... but you already knew that, didn't you? We're a group of developers who are at varying levels of expertise with the stack, but who are continuously striving to improve our technical skills, our professional network, and our beat-boxing abilities. Our meetups range from basic how-tos, to best practice presentations, hackathons, bar crawls, and dance-offs. You never know what we'll schedule next, but you do know it'll make you smarter, better networked, or better looking.

Join up and get MEAN!

lon: -118.47000122070312 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/b/e/f/2/highres_379848882.jpeg' - photo_id: 379848882 photo_link: 'http://photos2.meetupstatic.com/photos/event/b/e/f/2/600_379848882.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/b/e/f/2/thumb_379848882.jpeg' - join_mode: open - organizer: - member_id: 4483764 - name: David Aktary - photo: - photo_id: 124160632 - photo_link: 'http://photos3.meetupstatic.com/photos/member/5/0/9/8/member_124160632.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/5/0/9/8/thumb_124160632.jpeg' - members: 509 - name: Los Angeles MEAN Stack Developers - state: CA lat: 33.9900016784668 - who: MEANies - - utc_offset: -14400000 - country: CA - visibility: public + - country: CA city: Kitchener - timezone: Canada/Eastern - created: 1404234857000 link: 'http://www.meetup.com/Kitchener-node-js-Meetup/' + name: Kitchener node.js Meetup description: "This meetup is for Javascript enthusiasts who want to improve their understanding of Node.js or share their knowledge and projects with the community. Kitchener-Waterloo is a great tech hub and there's lots of people using Node.js for projects or who want to learn more about the exciting technology. We'd like to make the discussions community driven so please suggest topics, but there will definitely be talks on architectures, testing strategies, code management, development tools, deployment strategies, the future of Node and emerging trends. See you there!" lon: -80.5 - join_mode: open - organizer: - member_id: 116390112 - name: Jared Evans - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/a/c/8/2/highres_208724162.jpeg' - photo_id: 208724162 - photo_link: 'http://photos2.meetupstatic.com/photos/member/a/c/8/2/member_208724162.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/a/c/8/2/thumb_208724162.jpeg' - members: 122 - name: Kitchener node.js Meetup - state: 'ON' lat: 43.45000076293945 - who: Noders - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Diego - timezone: US/Pacific - created: 1404406746000 link: 'http://www.meetup.com/SanDiegoCodeCamp/' - rating: 4.75 + name: San Diego Code Camp description: '

Please join the http://www.meetup.com/san-diego-code-school/ meetup group page.  This group is being merged/migrated to that group.  Thanks!

' lon: -117.19999694824219 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/7/2/2/8/highres_440309224.jpeg' - photo_id: 440309224 photo_link: 'http://photos1.meetupstatic.com/photos/event/7/2/2/8/600_440309224.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/7/2/2/8/thumb_440309224.jpeg' - join_mode: open - organizer: - member_id: 147007332 - name: Michael Roberts Jr - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/1/3/3/8/highres_245524920.jpeg' - photo_id: 245524920 - photo_link: 'http://photos4.meetupstatic.com/photos/member/1/3/3/8/member_245524920.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/1/3/3/8/thumb_245524920.jpeg' - members: 424 - name: San Diego Code Camp - state: CA lat: 32.88999938964844 - who: Campers - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Memphis - timezone: US/Central - created: 1404511884000 link: 'http://www.meetup.com/Meteor-Memphis/' - rating: 5 + name: Meteor Memphis description: "

Meet other developers using Meteor. Share your knowledge, apps, and get feedback from others. Meteor is an open-source platform for building top-quality web apps in a fraction of the time, whether you're an expert developer or just getting started.

" lon: -89.94000244140625 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/1/c/1/8/highres_382927192.jpeg' - photo_id: 382927192 photo_link: 'http://photos4.meetupstatic.com/photos/event/1/c/1/8/600_382927192.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/1/c/1/8/thumb_382927192.jpeg' - join_mode: open - organizer: - member_id: 81670332 - name: Nick Coe - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/highres_245331334.jpeg' - photo_id: 245331334 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/8/8/6/member_245331334.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/thumb_245331334.jpeg' - members: 124 - name: Meteor Memphis - state: TN lat: 35.119998931884766 - who: Meteorites - - utc_offset: -14400000 - country: CA - visibility: public + - country: CA city: Kitchener - timezone: Canada/Eastern - created: 1405078872000 link: 'http://www.meetup.com/porchJS/' - rating: 4.66 + name: porchJS description: 'Love JavaScript, nodeJS, development in general? Come join us on the bitHound.io porch for a casual meetup where we can chat about the language(s) we all love (or love to hate) over a nice cold beer, pop, or water.' lon: -80.48999786376953 - join_mode: open - organizer: - member_id: 10491198 - name: Dan Silivestru - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/d/7/9/8/highres_210475192.jpeg' - photo_id: 210475192 - photo_link: 'http://photos1.meetupstatic.com/photos/member/d/7/9/8/member_210475192.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/d/7/9/8/thumb_210475192.jpeg' - members: 132 - name: porchJS - state: 'ON' lat: 43.45000076293945 - who: porchjs lovers - - utc_offset: -21600000 - country: US - visibility: public - city: Rochester - timezone: US/Central - created: 1405116313000 - link: 'http://www.meetup.com/MedcityAngularMeteor/' - description: >- -

"AngularJS is the future of web development. It's so much better - than everything else you'll shed tears of joy as you finally shed the - trauma of out-of-control unobtrusive JavaScript (how on earth do you - figure out what a page does?), jQuery (amazing but it doesn't scale), - overloaded CSS (update at your own risk!) and the resulting expensive - and unmaintainable web applications.

- -

AngularJS is to jQuery what jQuery is to non-library JavaScript. - It's that good.

- -

The 5 D's of AngularJS:

- -

1. DRY. Don't repeat yourself, which means no boilerplate.
-

- -

2. Declarative. HTML is the template and markup with AngularJS - directives is the templating language. This works perfectly thanks to - the next two D's.

- -

3. Dependency injection. Now I'm crying. You can actually test - AngularJS apps, but more importantly you have scoping kung-fu where - everything is modular, decoupled, and has a clearly logical place to - go. It's pretty, implicit, magical, and it fixes 90% of what's wrong - with every other JavaScript framework.

- -

4. Data-binding. Now I'm openly weeping with joy. Data-binding in - a dependency managed, magically scoped, declarative, and DRY language - is beautiful, amazingly succinct and powerful. Data-binding isn't the - start with Angular- it's result. And this is the essence of Angular- - the magic is in how everything works together. Dry + Declarative - + Dependency Injection + Data-binding ALL work together. Remove one of - them and AngularJS isn't AngularJS.

- -

5. Designer-Friendly. Your CSS will no longer look like you wrote it - while on crack, and you can see within the HTML the general outline of - what those developers are doing. And with that, you are free to go to - town on the markup so long as you don't delete the ng- magic tags. Yes, - dear designer, you can change the markup and style the application - without destroying the business logic. How cool is that.

- lon: -92.5 - group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/4/1/5/5/highres_435136725.jpeg' - photo_id: 435136725 - photo_link: 'http://photos1.meetupstatic.com/photos/event/4/1/5/5/600_435136725.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/4/1/5/5/thumb_435136725.jpeg' - join_mode: open - organizer: - member_id: 111007992 - name: jkolade - members: 21 - name: Medcity Angular Meteor - state: MN - lat: 44.04999923706055 - who: Members - - utc_offset: -14400000 - country: CA - visibility: public + - country: CA city: Toronto - timezone: Canada/Eastern - created: 1405940878000 link: 'http://www.meetup.com/Ionic-Toronto/' - rating: 5 + name: Ionic Toronto description: "

The beautiful, open source front-end framework for developing hybrid mobile apps with HTML5. This Toronto Meetup group is aimed to educate, demonstrate and collaborate using the Ionic Mobile Development Framework.

\n

We welcome attendees of all skill levels and would love to hear about projects and apps that you are working on. 

\n

If you would like to present something related to Ionic at an upcoming event, please message me via the Ionic TO Meetup board. 

\n
" lon: -79.41999816894531 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/5/b/e/6/highres_433163526.jpeg' - photo_id: 433163526 photo_link: 'http://photos3.meetupstatic.com/photos/event/5/b/e/6/600_433163526.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/5/b/e/6/thumb_433163526.jpeg' - join_mode: open - organizer: - member_id: 13183474 - name: Bohdan Zabawskyj - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/a/9/9/c/highres_249283420.jpeg' - photo_id: 249283420 - photo_link: 'http://photos2.meetupstatic.com/photos/member/a/9/9/c/member_249283420.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/a/9/9/c/thumb_249283420.jpeg' - members: 380 - name: Ionic Toronto - state: 'ON' lat: 43.65999984741211 - who: Ions - - utc_offset: -14400000 - country: CA - visibility: public + - country: CA city: Toronto - timezone: Canada/Eastern - created: 1405954677000 link: 'http://www.meetup.com/Open-Source-Toronto/' + name: Open Source Toronto description: '

A group to discuss and develop on open source technologies, with a focus on the promotion of their use in enterprise settings. Anyone who works on, or wants to work on open source technologies is welcome!

' lon: -79.37000274658203 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/9/2/9/2/highres_389617522.jpeg' - photo_id: 389617522 photo_link: 'http://photos1.meetupstatic.com/photos/event/9/2/9/2/600_389617522.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/9/2/9/2/thumb_389617522.jpeg' - join_mode: open - organizer: - member_id: 157568162 - name: Kasra Zokaei - photo: - photo_id: 212859352 - photo_link: 'http://photos3.meetupstatic.com/photos/member/9/9/b/8/member_212859352.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/9/9/b/8/thumb_212859352.jpeg' - members: 109 - name: Open Source Toronto - state: 'ON' lat: 43.63999938964844 - who: Members - - utc_offset: -21600000 - country: US - visibility: public + - country: US city: Provo - timezone: US/Mountain - created: 1406436037000 link: 'http://www.meetup.com/Utah-Node-Ninjas/' - rating: 4.88 - description: >- -

NOTE:  We are currently looking for an Organizer to manage - Provo.  There will be no meetups in provo until one is found. -  The UNN meetup in - SLC is still active.

- + name: Utah Node.js Ninjas - Provo + description: |- +

NOTE:  We are currently looking for an Organizer to manage Provo.  There will be no meetups in provo until one is found.  The UNN meetup in SLC is still active.


- -

Utah web developers exploring different areas of Node.js such as - making RESTful APIs and exploring popular libraries and - frameworks.

- -

NodeJS is emerging as a powerful platform for building - Internet applications. As an emergent technology, NodeJS does not yet - have the ensemble of tools and infrastructural parts that mature - language systems have. The NodeJS community is relatively small, and we - all need to learn from each other's efforts to work with it. The Utah - Node.js Ninjas exist to foster interaction among NodeJS developers. The - goals for this group are to build our local NodeJS developer community, - encourage adoption of NodeJS by businesses in the area, and help people - better understand and use NodeJS in applications, both for personal and - business uses.

- -

We have weekly meetings, alternating between presentations and - hack nights. Hack nights also double as a beginners course, partnering - with Nodeschool.io. Anyone interested in learning Node from the ground - up is welcome to attend and learn with us!

+

Utah web developers exploring different areas of Node.js such as making RESTful APIs and exploring popular libraries and frameworks.

+

NodeJS is emerging as a powerful platform for building Internet applications. As an emergent technology, NodeJS does not yet have the ensemble of tools and infrastructural parts that mature language systems have. The NodeJS community is relatively small, and we all need to learn from each other's efforts to work with it. The Utah Node.js Ninjas exist to foster interaction among NodeJS developers. The goals for this group are to build our local NodeJS developer community, encourage adoption of NodeJS by businesses in the area, and help people better understand and use NodeJS in applications, both for personal and business uses.

+

We have weekly meetings, alternating between presentations and hack nights. Hack nights also double as a beginners course, partnering with Nodeschool.io. Anyone interested in learning Node from the ground up is welcome to attend and learn with us!

lon: -111.62000274658203 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/6/6/1/4/highres_405746132.jpeg' - photo_id: 405746132 photo_link: 'http://photos3.meetupstatic.com/photos/event/6/6/1/4/600_405746132.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/6/6/1/4/thumb_405746132.jpeg' - join_mode: open - organizer: - member_id: 11893070 - name: Michael Jackson - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/0/9/b/highres_243769307.jpeg' - photo_id: 243769307 - photo_link: 'http://photos3.meetupstatic.com/photos/member/c/0/9/b/member_243769307.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/0/9/b/thumb_243769307.jpeg' - members: 158 - name: Utah Node.js Ninjas - Provo - state: UT lat: 40.2599983215332 - who: Node Ninjas - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Tucson - timezone: US/Arizona - created: 1406654459000 link: 'http://www.meetup.com/TucsonJS/' - rating: 4.93 - description: >- -

JavaScript. It's everywhere on the web these days. Here we will - discuss client-side JavaScript, server-side JavaScript...and everything - in-between. So get your keyboards ready and join us for an adventure in - everything JavaScript!

- -

We want our meetup to be a safe place for everyone, so we have - a code of conduct.

+ name: TucsonJS + description: |- +

JavaScript. It's everywhere on the web these days. Here we will discuss client-side JavaScript, server-side JavaScript...and everything in-between. So get your keyboards ready and join us for an adventure in everything JavaScript!

+

We want our meetup to be a safe place for everyone, so we have a code of conduct.

lon: -110.98999786376953 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/b/a/5/a/highres_435647706.jpeg' - photo_id: 435647706 photo_link: 'http://photos1.meetupstatic.com/photos/event/b/a/5/a/600_435647706.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/b/a/5/a/thumb_435647706.jpeg' - join_mode: open - organizer: - member_id: 56379112 - name: Richard Key - photo: - photo_id: 91797552 - photo_link: 'http://photos4.meetupstatic.com/photos/member/e/0/d/0/member_91797552.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/e/0/d/0/thumb_91797552.jpeg' - members: 270 - name: TucsonJS - state: AZ lat: 32.33000183105469 - who: JavaScripters - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Boston - timezone: US/Eastern - created: 1406657201000 link: 'http://www.meetup.com/hacker-table-tennis-players/' - rating: 4.88 + name: HTTP // Hacker Table Tennis Players description: "

The core idea of HTTP is to create a Table Tennis club for Boston-area developers, who are interested in a social meetup with other devs over a light-hearted (or maybe, just maybe, sometimes uber-competitive) game of ping pong!\_

\n

We'll be hosting events at Blazing Paddles - the table tennis club at Game On! in Fenway - and possibly other venues as the club grows.

\n

All play levels welcome!!!

" lon: -71.06999969482422 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/1/a/e/2/highres_394686882.jpeg' - photo_id: 394686882 photo_link: 'http://photos3.meetupstatic.com/photos/event/1/a/e/2/600_394686882.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/1/a/e/2/thumb_394686882.jpeg' - join_mode: open - organizer: - member_id: 7638237 - name: Steven Moseley - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/9/7/2/e/highres_214718702.jpeg' - photo_id: 214718702 - photo_link: 'http://photos1.meetupstatic.com/photos/member/9/7/2/e/member_214718702.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/9/7/2/e/thumb_214718702.jpeg' - members: 231 - name: HTTP // Hacker Table Tennis Players - state: MA lat: 42.36000061035156 - who: Loopers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Spokane - timezone: US/Pacific - created: 1407167712000 link: 'http://www.meetup.com/Spokane-Frontend-Meetup/' - rating: 4.72 - description: >- -

The Spokane Frontend Meetup connects front-end developers to learn - and discuss topics related to frontend web development. We meet the 1st - Tuesday of each month at Mckinstry Innovation Center.

- -

Our discussions cover topics related to JavaScript, HTML5, CSS3, - Frameworks, best practices, etc. 

If you'd like to - share your event or product feel free to start a discussion or message - the organizers.

- lon: -117.43000030517578 - join_mode: open - organizer: - member_id: 36145232 - name: Zach Shallbetter - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/9/a/6/2/highres_220959522.jpeg' - photo_id: 220959522 - photo_link: 'http://photos2.meetupstatic.com/photos/member/9/a/6/2/member_220959522.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/9/a/6/2/thumb_220959522.jpeg' - members: 222 name: Spokane Frontend Developers Meetup - state: WA + description: |- +

The Spokane Frontend Meetup connects front-end developers to learn and discuss topics related to frontend web development. We meet the 1st Tuesday of each month at Mckinstry Innovation Center.

+

Our discussions cover topics related to JavaScript, HTML5, CSS3, Frameworks, best practices, etc. 

If you'd like to share your event or product feel free to start a discussion or message the organizers.

+ lon: -117.43000030517578 lat: 47.66999816894531 - who: Developers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Olympia - timezone: US/Pacific - created: 1407300699000 link: 'http://www.meetup.com/The-Percival/' + name: The Percival description: "

A meetup group The Percival, a startup news organization in Olympia, Washington. The Percival will host a number of workshops, hackathons, and other events about journalism and civic engagement.

\n

The Percival is a startup news organization for Olympia, Washington.\_The Percival will host a number of events and workshops about journalism and civic engagement with a technology focus.\_
\n\n

\n

If you are interested in journalism and using technology to beef up civic engagement in Olympia, then you should join this group.

\n

Types of events:

\n

•\_workshops -\_3-hour introductions to a technology like javascript, ruby, or jquery.

\n

•\_write-a-thons -\_Edit OlyWiki.org to help build a locally-focused community guide to Olympia and Thurston County.

\n


\n\n

" lon: -122.87000274658203 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/2/c/b/c/highres_395411452.jpeg' - photo_id: 395411452 photo_link: 'http://photos2.meetupstatic.com/photos/event/2/c/b/c/600_395411452.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/2/c/b/c/thumb_395411452.jpeg' - join_mode: open - organizer: - member_id: 27185822 - name: seth vincent - photo: - photo_id: 96744552 - photo_link: 'http://photos4.meetupstatic.com/photos/member/5/f/e/8/member_96744552.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/5/f/e/8/thumb_96744552.jpeg' - members: 32 - name: The Percival - state: WA lat: 46.9900016784668 - who: Members - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Louisville - timezone: US/Eastern - created: 1407466855000 link: 'http://www.meetup.com/JSLouKY/' - rating: 4.78 + name: "JSLou - Louisville's JavaScript Group" description: "

Louisville's JavaScript Group. Meets twice every month.

\n

1st Wed - Hack night

\n

Work on projects alone or in a group. Get help, pair up or ask questions of other JavaScript developers.

\n

3rd Wed - Learn Night

\n

Come listen to a great local JavaScript developer about web technology - talks are usually 20-30 min with questions to follow. Time to chat and network after.

\n

Come talk at\_JSLou's Learn Night - What to expect of you are speaking:

\n

Here are some ideas if you think you might want to speak.Share your experience with the group - it's a great way to help build the thriving JavaScript community here in Louisville!
\n\n
\n\n Tips:

\n

Talk about what you know - it's safe to assume others can learn from it.
\n\n Don't worry about your skill level, the group has a wide range of experience, and beginners can gain a lot from what you know even if you are a beginner working through the basics yourself.Ideas:Talk about a tool or framework you use.
\n\n Provide a real-world scenario, discuss a project, or how you solved a problem in a project.
\n\n Show & Tell - Show off a project you are working on or have completed.
\n\n Code Review/Ask for help - Talk about a project you are working on and get the group's feedback or help, we would love to do code review/ solve problems on the spot. The group has lots of really bright developers who would love to help.
\n\n
\n\n The format:
\n\nJSLou\_talks are around 20min, with a short Q&A period to follow.JSLou's attendance is usually around 10-15 people on learn nights, and the style is very relaxed so\_expect\_comments/questions to pop up during your talk as well.Talks are recorded video/audio unless you specify otherwise.Speaking at the group looks great on your linkedin profile or resume.

\n


\n\n Thanks again and\_\_​remember to either signup and reply to this list: http://kyoss.org/mailman/listinfo/jslou, or email\_jslouky@gmail.com\_and let me know you would like to speak.
\n\n

" lon: -85.76000213623047 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/3/d/7/4/highres_395715732.jpeg' - photo_id: 395715732 photo_link: 'http://photos4.meetupstatic.com/photos/event/3/d/7/4/600_395715732.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/3/d/7/4/thumb_395715732.jpeg' - join_mode: open - organizer: - member_id: 18422591 - name: Eric Lathrop - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/9/c/a/5/highres_253900101.jpeg' - photo_id: 253900101 - photo_link: 'http://photos3.meetupstatic.com/photos/member/9/c/a/5/member_253900101.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/9/c/a/5/thumb_253900101.jpeg' - members: 405 - name: "JSLou - Louisville's JavaScript Group" - state: KY lat: 38.25 - who: Javascript Developers - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Nashville - timezone: US/Central - created: 1407892569000 link: 'http://www.meetup.com/Meteor-Nashville/' - rating: 4.67 + name: Meteor Nashville description: "

Meet other developers using Meteor. Share your knowledge, apps, and get feedback from others. Meteor is an open-source platform for building top-quality web apps in a fraction of the time, whether you're an expert developer or just getting started.

" lon: -86.79000091552734 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/9/d/7/b/highres_438220315.jpeg' - photo_id: 438220315 photo_link: 'http://photos2.meetupstatic.com/photos/event/9/d/7/b/600_438220315.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/9/d/7/b/thumb_438220315.jpeg' - join_mode: open - organizer: - member_id: 81670332 - name: Nick Coe - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/highres_245331334.jpeg' - photo_id: 245331334 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/8/8/6/member_245331334.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/thumb_245331334.jpeg' - members: 119 - name: Meteor Nashville - state: TN lat: 36.15999984741211 - who: Meteorites - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Los Angeles - timezone: US/Pacific - created: 1408063003000 link: 'http://www.meetup.com/LA-RESTful-API-Working-Group/' + name: L.A. RESTful API Working Group description: "

This is a language-agnostic group for developers, sysadmins and PMs to discuss the creation and consumption of RESTful web services. Let's get together and address the problems we all face regardless of the languages/frameworks we work in:

\n

•\_How to structure our services

\n

•\_What http status codes to use for various conditions

\n

•\_How to handle sessions / user-logins / user-logouts

\n

•\_Best practices for CORS and JSONP

\n

•\_To force https or not?

\n

•\_How to version an API and keep multiple versions running live

\n

•\_How to test an API with SuperAgent, Postman, Curl, Selenium and others

\n

•\_How to integrate Oauth

\n

•\_How to write and generate documentation.

\n

• How to deploy and/or integrate our API development into CI tools

\n

Maybe this working group can set a unifying-standard for the creation of web services! And while we're at it, let's explore the various open apis available like Twilio, Twitter, AWS, and others. Let's consume as much as we create, and focus the discussions on the similarities between our implementations, instead of the differences.

" lon: -118.37000274658203 - join_mode: open - organizer: - member_id: 10383815 - name: Daniel Ice - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/7/f/2/8/highres_157472552.jpeg' - photo_id: 157472552 - photo_link: 'http://photos3.meetupstatic.com/photos/member/7/f/2/8/member_157472552.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/7/f/2/8/thumb_157472552.jpeg' - members: 198 - name: L.A. RESTful API Working Group - state: CA lat: 34.11000061035156 - who: RESTafarians - - utc_offset: -25200000 - country: US - visibility: public - city: Berkeley - timezone: US/Pacific - created: 1408128977000 - link: 'http://www.meetup.com/APIs-to-Electrons/' - rating: 5 - description: >- -

This group is for anyone interested in the intersection of hardware - and web development. Wherever you are along the spectrum from - electrical engineering, to firmware, to web development, come to share, - learn, and work on projects.

- -

Newbies absolutely welcome.

- -

Interested in speaking? Want to learn about something - specific? Just want a time and space to hack on something? Reach out to - kelsey at tessel.io

- -

This meetup group has a code - of conductFor any activities associated with this - meetup group, including all events and online interactions through this - page, you are expected to abide by the code of conduct.

- lon: -122.27999877929688 - group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/9/e/1/2/highres_435820466.jpeg' - photo_id: 435820466 - photo_link: 'http://photos3.meetupstatic.com/photos/event/9/e/1/2/600_435820466.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/9/e/1/2/thumb_435820466.jpeg' - join_mode: open - members: 617 - name: APIs to Electrons - state: CA - lat: 37.869998931884766 - who: Developers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Los Angeles - timezone: US/Pacific - created: 1408398795000 link: 'http://www.meetup.com/Los-Angeles-JavaScript-and-Node-js/' - rating: 4.93 + name: Los Angeles JavaScript and Node.js description: "

We are JS.LA, the oldest active JavaScript and Node.js meetup in Los Angeles.\_

\n

Find out more and see videos from our past meetups at JS.LA
\n\n

" lon: -118.25 - join_mode: open - organizer: - member_id: 5836611 - name: David Guttman - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/c/0/3/c/highres_163789212.jpeg' - photo_id: 163789212 - photo_link: 'http://photos2.meetupstatic.com/photos/member/c/0/3/c/member_163789212.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/c/0/3/c/thumb_163789212.jpeg' - members: 1827 - name: Los Angeles JavaScript and Node.js - state: CA lat: 34.040000915527344 - who: JavaScriptianados - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Mountain View - timezone: US/Pacific - created: 1408462107000 link: 'http://www.meetup.com/TechNext-Bay-Area/' + name: TechNext Bay Area description: "

Single Place to meet and discuss around new and emerging software technologies. Cover more of Breadth than the Depth. See how these emerging technologies work together.\_

" lon: -122.06999969482422 - join_mode: open - organizer: - member_id: 7399382 - name: Rohit Ghatol - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/d/a/5/0/highres_12715888.jpeg' - photo_id: 12715888 - photo_link: 'http://photos2.meetupstatic.com/photos/member/d/a/5/0/member_12715888.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/d/a/5/0/thumb_12715888.jpeg' - members: 70 - name: TechNext Bay Area - state: CA lat: 37.38999938964844 - who: Members - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Francisco - timezone: US/Pacific - created: 1409187155000 link: 'http://www.meetup.com/The-Blockchain-Garage/' - description: >- -

The Blockchain Garage is a monthly event for developers hosted by - Block.io

- -

The hardest challenge in building a crypto app is deciding how - to handle security, in addition to hosting your own blockchain(s), and - proper consulting. This hurdle can costs many startups weeks or months - of precious time that can be crucial to getting off the ground in the - early phase.

- -

During the event, you can follow along as our featured - presenter builds a Bitcoin, Dogecoin, or Litecoin application over the - course of several hours (with more currencies coming soon). Ask - questions, get personalized help, make connections and friends, let us - help you move faster!

- + name: The Blockchain Garage + description: |- +

The Blockchain Garage is a monthly event for developers hosted by Block.io

+

The hardest challenge in building a crypto app is deciding how to handle security, in addition to hosting your own blockchain(s), and proper consulting. This hurdle can costs many startups weeks or months of precious time that can be crucial to getting off the ground in the early phase.

+

During the event, you can follow along as our featured presenter builds a Bitcoin, Dogecoin, or Litecoin application over the course of several hours (with more currencies coming soon). Ask questions, get personalized help, make connections and friends, let us help you move faster!

Come find us at Blockchaingarage.com and join in!
- -

lon: -122.44000244140625 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/2/2/4/4/highres_403328772.jpeg' - photo_id: 403328772 photo_link: 'http://photos2.meetupstatic.com/photos/event/2/2/4/4/600_403328772.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/2/2/4/4/thumb_403328772.jpeg' - join_mode: open - organizer: - member_id: 129999742 - name: Marshall Hayner - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/d/b/a/8/highres_222116232.jpeg' - photo_id: 222116232 - photo_link: 'http://photos4.meetupstatic.com/photos/member/d/b/a/8/member_222116232.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/d/b/a/8/thumb_222116232.jpeg' - members: 145 - name: The Blockchain Garage - state: CA lat: 37.79999923706055 - who: Crypto Entrepreneurs - - utc_offset: -18000000 - country: US - visibility: public - city: Orlando - timezone: US/Eastern - created: 1409327799000 - link: 'http://www.meetup.com/Orlando-Server-Side-JavaScript-Group/' - rating: 5 - description: '

The group is tailored for JavaScript enthusiasts who enjoy exploring server-side JavaScript frameworks and technology to improve web development.

' - lon: -81.37000274658203 - group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/3/3/d/8/highres_403933272.jpeg' - photo_id: 403933272 - photo_link: 'http://photos3.meetupstatic.com/photos/event/3/3/d/8/600_403933272.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/3/3/d/8/thumb_403933272.jpeg' - join_mode: open - members: 101 - name: Orlando Server-Side JavaScript Group - state: FL - lat: 28.540000915527344 - who: Members - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Gainesville - timezone: US/Eastern - created: 1409371112000 link: 'http://www.meetup.com/gainesvillejs/' - rating: 5 + name: Gainesville JS description: "

Are you a forward thinking, bleeding edge tech enthusiast? Wondering what full stack JavaScript can do? End to end testing. The most inspiring frameworks. We will explore JavaScript in all it's incarnations. Server, client, DB, native. Let's cover it all.

" lon: -82.4000015258789 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/3/d/d/6/highres_445695830.jpeg' - photo_id: 445695830 photo_link: 'http://photos3.meetupstatic.com/photos/event/3/d/d/6/600_445695830.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/3/d/d/6/thumb_445695830.jpeg' - join_mode: open - organizer: - member_id: 14078056 - name: Aaron Dixon - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/4/f/e/4/highres_222680452.jpeg' - photo_id: 222680452 - photo_link: 'http://photos2.meetupstatic.com/photos/member/4/f/e/4/member_222680452.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/4/f/e/4/thumb_222680452.jpeg' - members: 190 - name: Gainesville JS - state: FL lat: 29.600000381469727 - who: Scripters - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Seattle - timezone: US/Pacific - created: 1409712066000 link: 'http://www.meetup.com/seattle-react-js/' - rating: 4.85 - description: >- -

React.js is a fun, easy to use Javascript library built at - Facebook.

- -

http://facebook.github.io/react/ -

- -

You should join us if you want to learn about, share experiences - with, or work with fellow js devs interested in React.  

+ name: Seattle React.js + description: |- +

React.js is a fun, easy to use Javascript library built at Facebook.

+

http://facebook.github.io/react/

+

You should join us if you want to learn about, share experiences with, or work with fellow js devs interested in React.  

lon: -122.31999969482422 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/9/3/0/highres_414122352.jpeg' - photo_id: 414122352 photo_link: 'http://photos3.meetupstatic.com/photos/event/9/3/0/600_414122352.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/9/3/0/thumb_414122352.jpeg' - join_mode: open - organizer: - member_id: 3632907 - name: Justin Soliz - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/c/d/c/highres_254043292.jpeg' - photo_id: 254043292 - photo_link: 'http://photos2.meetupstatic.com/photos/member/c/d/c/member_254043292.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/c/d/c/thumb_254043292.jpeg' - members: 1215 - name: Seattle React.js - state: WA lat: 47.630001068115234 - who: Members - - utc_offset: -25200000 - country: US - visibility: public - city: Laguna Hills - timezone: US/Pacific - created: 1410397227000 - link: 'http://www.meetup.com/OCJavaScript/' - rating: 4.66 - description: "

last modified 2014.09.24Wed17:06.\_\_Meetup, so including this our group site, is best accessed from a laptop/desktop\_-see footnote.\_Coming soon: Meetup's big announcement of this our group\_(footnote details).\_Join Now!\_
\n\n

\n

GRAND OPENING of OCJavaScript!\_--Orange County's very own JavaScript Community Group\_--with no other group like it for general JavaScript in the OC.
\n\n

\n

• So we're for all\_OC\_JS\_
\n\n coders/programmers\_&\_developers\_(software\_&\_web&apps,\_mobile&desktop&server),\_present & future.

\n

•\_Why choose\_JavaScript(JS)?\_It's the one\_programming language which runs\_everywhere: in most every web browser and now most everywhere else;\_and it's shockingly powerful, too!
\n\n

\n

• We're brand new, and projected to have lot of growth over the next 12 months\_(especially as your central hub for OC's already 8+\_speciality-JavaScript groups!), so sign up now to get notified.\_ Also your reviews & comments & fixes about this group design & website, including the signup process, we would very much appreciate & need:\_ASAP, please post in\_our website forum\_else, for repost here if possible,\_Meetup-message group top leadership.\_Heads-up:\_our profile Qs\_and Welcome message\_could use readability improvements, so we're working on that immediately; still the logic & message is solid, so still please complete them, thanks!

\n
\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

•\_Events include Main Meetings every month, Intro/Training & Co-working/Hacking every other week on both closed- & open-source projects, plus specialized Joint-group events & Conferences. -If it's JS community in the OC, you'll find it here!

\n

\n

\n

\n

\n
\n

\n

\n

\n

\n

•\_Topics\_include primarily JavaScript: (1)\_intros & training\_and (2) news & comparisons & reviews of tools & extensions & companion-technologies (as\_libraries\_(as Backbone.js,\_Bootstrap, Underscore.js, & many more) & even\_frameworks (jQuery\_and many more, plus\_Internet Rich Internet Application frameworks (as Angular, Flex, Titanium, Ember.js, and many more, plus\_Mobile (as Cordova/Phonegap and Sencha Touch)), & many, many more!), server-side execution\_(as Node.js & others), editors\_& online IDEs, build tools\_(including to assemble code both on server (as Grunt/Gulp/Bruch\_& many more) and on browser (as Browserify & Ender & RequireJS & more)), code conversion including compilation (as from JS-enhancements (CoffeeScript, DART, etc) and from even totally different programming langauges) + compaction + obfuscation, code hosting (as\_GitHub) & -revision control\_(as Git), templating, stylesheet languages (as Less,\_Sass, Stylus)\_and CSS&HTML integration, latest variations (as\_DART\_&\_Harmony/6),\_and more)\_--Learn & share & keep-up-with the latest hot JS stuff!
\n\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n
\n

•\_Founded\_by me\_DestinyArchitect, who, for many years now, am a big JS lover&coder (my primary programming language!), but for ~5years now, I found no general-JS group in my county OC. So in 2011 I starting planning & preparing-to-found OCJavaScript; but only now got the time to do it, as since the year before\_2010,\_I've been & am\_also a leading Orange County tech group leader & coordinator,\_overseeing & bringing together 12+ & increasing local tech groups\_--has taught me a lot about doing this, which hopefully you'll spot in this group website :-); plus I'm a\_former US military reserves \_officer&NCO&combat-vet for 8 years, which also taught me a ton on leading groups, especially leading with\_Army value\_Integrity; and\_I'm\_a MIT CS grad (BS+MS work+research intership+patent. And, um,\_handy here!\_Indeed JavaScript is based on what I learned&taught&did-my-bachelors-thesis-in,\_functional programming languages\_especially\_MIT's Scheme! :-).

\n

• In both admin and our topic, we're\_looking for presentations/presenters and helpers & leaders and even venues, including welcoming them from OC's many fine\_specialized-JavaScript & tech groups, simply offer or request in our forum(s)\_matching.

\n
\n

\n


\n\n

\n

\n

•\_\_We're\_run\_with\_integrity\_(basic group rules)\_plus fun!
\n\n

\n

• (1)\_To contact & talk with us\_(members&leaders),\_avoid private messaging (as email,SMS,call,& Meetup messages) and instead properly-post whereever practical: in our event listings' matching comment thread (create it if none, making the 1st line THE TOPIC IN CAPS, as \"WHEN --please put all on that here in this thread\"), else in our matching discusion forums -- we've many: jobs, volunteering, venues, JavaScript-talk, this website, & more\_ --be sure to Meetup-subscribe to be alerted of posts & replies.\_This vastly makes our groupsite come alive & sharing, notably attracting more participants; and it avoids leader monopolies and allows multiple-indeed-many helpers to sync, enabling everyone to be a participant, so generating a collective intelligence (plus friends & fun!); and another big reason...
\n\n

\n

• (2) Unlike many or most community groups where many member & most leader dicussions are in private email&talk&calls which no one else ever sees & hears (so tons of needless reinventing-the-wheel, neglecting, backstabbing, and worse), in what I see as the true spirit of a public & public-serving community group,\_I aim all our operations, including talk by even admin & management, to be: (1) open-source (as open-sourced talk including open-source government) say 95%, what I term(coin)\_as an \"open-sourced group\".\_and (2) documented especially written as much as possible, especially ideally every significant event&group&job-title/membership change is clearly archived telling\_\"who did what to whom/what how & when & why\", which by \"(1) open-source\" is then also public\_record nearly always.\_ --So (1) & (2) combined then:\_best insure right is done, plus insure\_maximum helpers&leaders&participation&sharing&collaboration&learning, between our own members & even with other groups.

\n

• (3) Like Burning Man (which also ton of fun \_& inspiring & enlightening), \"There are no spectators here, only participants\" --well, as much as we can pull off :-)\_
\n\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

•\_JOIN US!\_\_Then, for your specialized-JavaScript interests, join 0 or more of\_Orange County's 8+\_specialty-JavaScript groups: {server-side:\_NodeJS, Apache Sling,\_MongoDB}, {client-side:\_AngularJS, EmberJS, \_Cordova/Phonegap, Sencha Touch & ExtJS, Google (Angular, Dart, Chrome, AppScript, & more)}.
\n\n

\n
\n

More exicting details as you join the group and it grows.

\n

• Aside: What are the 6-digit alphanumeric codes that you will occassionally on this site? --as “NBTY69” \_at the end of this point. As part of a new machine-understanding writing system I'm developing, they're\_short IDs to date-stamp, uniquely-reference, & portably-track most any point or item\_--very useful for versioning & watermarking & tracking text including telling who-wrote-what-when, plus cross-referencing. And here especially on the \"About us\" and event listings, they are mostly 100% hidden (they're all over this page --can you find them? :-); but due to the limits of Meetup, sometimes it's very painful to hide them (as on the Discussion Boards posts) and sometimes simply impossible (as on pure-ASCII text fields), so this explanation :-) =NBTY69
\n\n

\n

• Footnote:\_Meetup.com, so this group site, is\_best accessed via a desktop web browser, as unfortunately some or all mobile phones & tablets have serious drawbacks using Meetup, including {all hyperlinks are stripped, so missing, from text for at least group descriptions (so including this one) --but at least on our site there are many & important)}, {Join/update-profile loses all your input when you try to edit it}, {every link to a location/anchor somewhere within web page just goes to top of the page}, and {likely more bugs}.

\n

\_Footnote \"Coming soon: Meetup's big announcement of this our group\":\_Per Meetup's non-user-changable settings for every new group, Meetup auto-announced this group 3 days after it was created.\_As is readily the case for new Meetup groups, this was not enough time to get everything ready for the group.\_Worst, per recent new non-user-settable Meetup defaults, default \"new group listen radius\" for new, and perhaps existing, Meetup users is a mere 5 miles (most OC residents drive up to 25 miles for a Meetup, the radius of the county), when it used to be indeed about 25miles for apparently all many years before, so only 1/25th the annoucement area, and while that may be maybe-ok for extremely-dense most-peple-dont-own-cars areas as NYC (where MeetupHQ is), it's terrible fro spauling often public-transitless suburbs as OC.\_And indeed from this Meetup squeek-announcement, instead of getting say ~100 starter members (say given our topic which is so popular where everyone even non-programmers knows the JavaScript name), instead we got ~10!\_For these reasons, we will soon request Meetup do a proper announcement of us and all Meetup groups who were similarly short-changed.
\n\n

\n
\n\n
\n

\_Document History\_in order:

\n

2014.09.10 (group creation): created, very minally: ~2 paragraphs.
\n\n

\n

\_bulk of text written
\n\n

\n

2014.09.13 1st std meetup announce; then update after to show this, ending with \"last mod 2014.09.14Sun21:37\"
\n\n

\n

\_add quote(Footnote\_\"Coming soon: Meetup's big announcement of this our group\").
\n\n

" - lon: -117.72000122070312 - group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/3/b/8/highres_408420952.jpeg' - photo_id: 408420952 - photo_link: 'http://photos4.meetupstatic.com/photos/event/3/b/8/600_408420952.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/3/b/8/thumb_408420952.jpeg' - join_mode: open - organizer: - member_id: 182890402 - name: Jayson Tran - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/5/8/a/a/highres_242062698.jpeg' - photo_id: 242062698 - photo_link: 'http://photos2.meetupstatic.com/photos/member/5/8/a/a/member_242062698.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/5/8/a/a/thumb_242062698.jpeg' - members: 113 - name: "US.CA.OrangeCounty's JavaScript Community Group" - state: CA - lat: 33.599998474121094 - who: Members - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Francisco - timezone: US/Pacific - created: 1410401733000 link: 'http://www.meetup.com/sfnode/' - rating: 4.88 - description: >- -

SFNode is a community run Node.js meetup in San Francisco created by - dshaw. We meet on the first - Thursday of each month.

Our location changes month to month. - If you have an event space, we'd love to have you host. The event host - typically provides food and drink, but if you're not able to we can - usually find a sponsor for that.

- -

Each month we feature 2-3 talks about Node.js, server-side - JavaScript, npm and the surrounding ecosystem. We try to find a good - balance between beginner and advanced topics.

- -

If you want to help, we are always looking for - contributors. Join us.

Follow us on Twitter at https://twitter.com/sfnode .

- lon: -122.4000015258789 - join_mode: open - organizer: - member_id: 5854033 - name: Dan Shaw - photo: - photo_id: 76757912 - photo_link: 'http://photos1.meetupstatic.com/photos/member/4/5/f/8/member_76757912.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/4/5/f/8/thumb_76757912.jpeg' - members: 1486 name: SFNode - state: CA + description: |- +

SFNode is a community run Node.js meetup in San Francisco created by dshaw. We meet on the first Thursday of each month.

Our location changes month to month. If you have an event space, we'd love to have you host. The event host typically provides food and drink, but if you're not able to we can usually find a sponsor for that.

+

Each month we feature 2-3 talks about Node.js, server-side JavaScript, npm and the surrounding ecosystem. We try to find a good balance between beginner and advanced topics.

+

If you want to help, we are always looking for contributors. Join us.

Follow us on Twitter at https://twitter.com/sfnode .

+ lon: -122.4000015258789 lat: 37.77000045776367 - who: Node Users - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Tampa - timezone: US/Eastern - created: 1410530733000 link: 'http://www.meetup.com/Tampa-Bay-JS-Meetup/' - rating: 4.93 - description: >- -

This meetup is designed for individuals who wish to learn and engage - in the latest in the world of JavaScript. The group's main focus is on - OOP JS development using tools such as Backbone.js, Angular.js and - Node.js. Anyone who has an interest in web development and JavaScript - development is encouraged to attend!

- + name: Tampa Bay JS Meetup + description: |- +

This meetup is designed for individuals who wish to learn and engage in the latest in the world of JavaScript. The group's main focus is on OOP JS development using tools such as Backbone.js, Angular.js and Node.js. Anyone who has an interest in web development and JavaScript development is encouraged to attend!

Events will be hosted and sponsored by Mad Mobile.
- -

-


- -

lon: -82.51000213623047 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/e/9/e/0/highres_418199872.jpeg' - photo_id: 418199872 photo_link: 'http://photos2.meetupstatic.com/photos/event/e/9/e/0/600_418199872.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/e/9/e/0/thumb_418199872.jpeg' - join_mode: open - organizer: - member_id: 174556912 - name: Babak Keradman - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/a/2/8/c/highres_232301612.jpeg' - photo_id: 232301612 - photo_link: 'http://photos2.meetupstatic.com/photos/member/a/2/8/c/member_232301612.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/a/2/8/c/thumb_232301612.jpeg' - members: 329 - name: Tampa Bay JS Meetup - state: FL lat: 27.969999313354492 - who: Developers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Francisco - timezone: US/Pacific - created: 1410571358000 link: 'http://www.meetup.com/nodebotssf/' - rating: 5 + name: NodeBotsSF description: '

NodeBotsSF is a monthly meetup for NodeBot hackers to create, explore and share.

' lon: -122.4000015258789 - join_mode: open - organizer: - member_id: 5854033 - name: Dan Shaw - photo: - photo_id: 76757912 - photo_link: 'http://photos1.meetupstatic.com/photos/member/4/5/f/8/member_76757912.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/4/5/f/8/thumb_76757912.jpeg' - members: 543 - name: NodeBotsSF - state: CA lat: 37.77000045776367 - who: NodeBots - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Orlando - timezone: US/Eastern - created: 1410875391000 link: 'http://www.meetup.com/University-Tech/' - rating: 4.94 - description: '

This is our once a month meetup about all things programming/developer related! We also have pizza and go for a round of beer after to mingle and network!

' + name: University Tech + description: |- +

This is our once a month Meetup about all things Tech related! 

+

If you are a programmer, developer or Tech professional:

+

•  Bring a Laptop or whatever gear you need 

+

•  Meet like minded people to collaborate with

+

•  Engage in a discussion on the Tech topics you are passionate about

+

•  Lead a discussion or demo a project you are working on

+

Mingle, network, do something cool, and enjoy a beer!

lon: -81.25 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/8/6/c/3/highres_439294499.jpeg' - photo_id: 439294499 photo_link: 'http://photos3.meetupstatic.com/photos/event/8/6/c/3/600_439294499.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/8/6/c/3/thumb_439294499.jpeg' - join_mode: open - organizer: - member_id: 805108 - name: Tim Brockman - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/c/c/7/1/highres_254632337.jpeg' - photo_id: 254632337 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/c/7/1/member_254632337.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/c/c/7/1/thumb_254632337.jpeg' - members: 725 - name: University Tech - state: FL lat: 28.579999923706055 - who: JavaScript Hackers - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Boca Raton - timezone: US/Eastern - created: 1410894600000 link: 'http://www.meetup.com/Boca-JS/' - rating: 4.64 - description: >- -

The Boca Raton JavaScript group (Boca-JS) is here to demonstrate the - power of this wonderful language to South Florida.

- -

In addition to vanilla java script, we'll be looking at frameworks - such - as Node, AngularJS, Ember.js, jQuery and Ionic.

- -

Founded in September 2014 by Adam and Hector, this group - continues to grow and thrive.

- -

IMPORTANT: This group has been created as a resource for - developers. We do welcome meeting sponsors for an opportunity to reach - out to members, please contact us for the details.

- + name: Boca JS + description: |- +

The Boca Raton JavaScript group (Boca-JS) is here to demonstrate the power of this wonderful language to South Florida.

+

In addition to vanilla java script, we'll be looking at frameworks such as Node, AngularJS, Ember.js, jQuery and Ionic.

+

Founded in September 2014 by Adam and Hector, this group continues to grow and thrive.

+

IMPORTANT: This group has been created as a resource for developers. We do welcome meeting sponsors for an opportunity to reach out to members, please contact us for the details.


lon: -80.08999633789062 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/4/a/9/e/highres_412879102.jpeg' - photo_id: 412879102 photo_link: 'http://photos3.meetupstatic.com/photos/event/4/a/9/e/600_412879102.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/4/a/9/e/thumb_412879102.jpeg' - join_mode: open - organizer: - member_id: 7759029 - name: Hector - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/5/0/9/9/highres_8900633.jpeg' - photo_id: 8900633 - photo_link: 'http://photos4.meetupstatic.com/photos/member/5/0/9/9/member_8900633.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/5/0/9/9/thumb_8900633.jpeg' - members: 533 - name: Boca JS - state: FL lat: 26.350000381469727 - who: JavaScripters - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Milan - timezone: US/Eastern - created: 1411072189000 link: 'http://www.meetup.com/Milan-Web-Development/' - rating: 5 + name: Milan Web Development description: This is a group for all those interested in web development. We are laid back and interested in expanding our web development knowledge and chatting about all the newest tech. All experience levels are welcome. lon: -83.68000030517578 - join_mode: open - organizer: - member_id: 171925812 - name: Bobby Cooper - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/9/b/2/0/highres_227799712.jpeg' - photo_id: 227799712 - photo_link: 'http://photos3.meetupstatic.com/photos/member/9/b/2/0/member_227799712.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/9/b/2/0/thumb_227799712.jpeg' - members: 64 - name: Milan Web Development - state: MI lat: 42.11000061035156 - who: Code Monkeys - - utc_offset: -25200000 - country: US - visibility: public + - country: US + city: Melbourne + link: 'http://www.meetup.com/GDGSpaceCoast/' + name: GDG Space Coast - Google Developers Group + description: |- +

Google Developer Group (GDG) Space Coast is a technology user group that meets to discuss the latest Google Technologies, Tools, SDKs, and APIs. We focus on learning about the broad spectrum of technologies provided by Google and finding ways that these technologies can be applied. This includes discussions of the technologies from a number of angles (startups, corporations, and individuals).

+


Here are a few of the topics that we have covered so far:
Android, AngularJS, Chrome, Chrome OS, Material Design, Google App Engine, Google Play Games Services, Google Cloud Platform, Google Maps, Dart, AngularDart, Polymer, Web Components, Ingress, Android Studio, GWT, JavaScript, Git, GitHub, NodeJS, TypeScript, Google Analytics, and more.

+


In addition to regular speaker focused meetings, we also organize code labs, hackathons, social events, DevFests, and study jams. We also assist with local TrepHub and Startup Weekend events.

+


The group is free to attend and open to all who are interested in discussing and learning more about software development with tools and technologies from Google or the open-source community.

+


If you would like to stay up to date with events and activities of the group, please follow us on Google+ and bookmark our website. If you would like to take part in discussions about the group, future events, and future content, please join the GDG Space Coast community linked from our About page on Google+.

+

DisclaimerGDG Space Coast is an independent group; our activities and the opinions expressed here should in no way be linked to Google, the corporation.

+ lon: -80.62999725341797 + group_photo: + photo_link: 'http://photos4.meetupstatic.com/photos/event/c/9/d/8/600_411591672.jpeg' + lat: 28.06999969482422 + - country: US city: Liberty Lake - timezone: US/Pacific - created: 1411874374000 link: 'http://www.meetup.com/dev-coop/' - rating: 4.89 + name: Dev Coop description: "

You're a developer, you love the web, you build web apps, you feel like the only one in town... You need to join us at the Dev Coop! We don't get together and talk, we get together and do. We're on the cutting edge of web tech and so freakin' excited to share our passion with our peers. Come with us and make something awesome. Get inspired, be challenged, show off, learn something, and love life.

" lon: -117.08000183105469 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/5/7/7/f/highres_435382399.jpeg' - photo_id: 435382399 photo_link: 'http://photos3.meetupstatic.com/photos/event/5/7/7/f/600_435382399.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/5/7/7/f/thumb_435382399.jpeg' - join_mode: approval - organizer: - member_id: 160784652 - name: Levi Thomason - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/b/8/6/highres_217432102.jpeg' - photo_id: 217432102 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/b/8/6/member_217432102.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/b/8/6/thumb_217432102.jpeg' - members: 84 - name: Dev Coop - state: WA lat: 47.650001525878906 - who: Soldiers - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Framingham - timezone: US/Eastern - created: 1412186676000 link: 'http://www.meetup.com/MetroWest-JS/' - rating: 4.67 + name: MetroWest JS description: '

This group is for anyone in the Metrowest area interested in Javascript. From frontend technologies like jQuery, AngularJS, Ember and D3.js to backend technologies like NodeJS and Express to NodeBots and the IoT. Javascript all the things!

' lon: -71.43000030517578 - join_mode: open - organizer: - member_id: 10586500 - name: Philip Borenstein - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/6/6/3/2/highres_53726162.jpeg' - photo_id: 53726162 - photo_link: 'http://photos3.meetupstatic.com/photos/member/6/6/3/2/member_53726162.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/6/6/3/2/thumb_53726162.jpeg' - members: 192 - name: MetroWest JS - state: MA lat: 42.31999969482422 - who: JavaScripters - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Chicago - timezone: US/Central - created: 1412782243000 link: 'http://www.meetup.com/Code-Cans-Developer-Meetup/' - rating: 4.93 + name: 'Code & Cans Developer Meetup' description: 'A meetup to share development stories, techniques and technology while enjoying cans of craft beer.' lon: -87.75 - join_mode: open - organizer: - member_id: 132576192 - name: Shawn Hilgart - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/7/8/d/4/highres_176610932.jpeg' - photo_id: 176610932 - photo_link: 'http://photos2.meetupstatic.com/photos/member/7/8/d/4/member_176610932.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/7/8/d/4/thumb_176610932.jpeg' - members: 624 - name: 'Code & Cans Developer Meetup' - state: IL lat: 41.939998626708984 - who: Members - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Tampa - timezone: US/Eastern - created: 1412974998000 link: 'http://www.meetup.com/Meteor-Tampa-Bay/' - rating: 4.88 - description: >- -

Meet other developers using Meteor. Share your knowledge, apps, and - get feedback from others.
- - + name: Meteor Tampa Bay + description: |- +

Meet other developers using Meteor. Share your knowledge, apps, and get feedback from others.
- Meteor is an open-source platform for building top-quality web apps in - a fraction of the time, whether you're an expert developer or just - getting started.

+ Meteor is an open-source platform for building top-quality web apps in a fraction of the time, whether you're an expert developer or just getting started.

lon: -82.45999908447266 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/d/c/7/0/highres_419396432.jpeg' - photo_id: 419396432 photo_link: 'http://photos3.meetupstatic.com/photos/event/d/c/7/0/600_419396432.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/d/c/7/0/thumb_419396432.jpeg' - join_mode: open - organizer: - member_id: 81670332 - name: Nick Coe - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/highres_245331334.jpeg' - photo_id: 245331334 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/8/8/6/member_245331334.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/thumb_245331334.jpeg' - members: 210 - name: Meteor Tampa Bay - state: FL lat: 27.959999084472656 - who: Meteorites - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Washington - timezone: US/Eastern - created: 1412977454000 link: 'http://www.meetup.com/TrackMaven-Monthly-Challenge/' - rating: 4.9 + name: Monthly Challenge description: "

TrackMaven's Monthly Challenge is a chance to experiment with new technologies and explore creative projects. Each month, we will name a general topic, a new technology, or something in between. We'll collect a few resources and examples to get you started, then it's up to you; make something interesting! At the end of the month, it's time to show off; we'll meet up to share rapid-fire presentations, as raw or as polished as you'd like.

" lon: -77.04000091552734 - join_mode: open - organizer: - member_id: 176927822 - name: TrackMaven - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/b/e/7/a/highres_233568762.jpeg' - photo_id: 233568762 - photo_link: 'http://photos3.meetupstatic.com/photos/member/b/e/7/a/member_233568762.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/b/e/7/a/thumb_233568762.jpeg' - members: 403 - name: Monthly Challenge - state: DC lat: 38.90999984741211 - who: "'); DROP TABLE Members;--" - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Norfolk - timezone: US/Eastern - created: 1412983430000 link: 'http://www.meetup.com/Meteor-Norfolk/' - rating: 5 + name: Meteor Norfolk/Virginia Beach description: "

This groups first event was\_Worldwide Meteor Day 2014.

\n

After that event, this group folded it's membership and energy into the awesome NorfolkJS meetup, and events are based out of that meetup. Go there to join Meteor meetups (as well as Node, Robots, and other JavaScript events).

\n


\n\n

" lon: -76.29000091552734 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/6/4/c/0/highres_422065792.jpeg' - photo_id: 422065792 photo_link: 'http://photos4.meetupstatic.com/photos/event/6/4/c/0/600_422065792.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/6/4/c/0/thumb_422065792.jpeg' - join_mode: open - organizer: - member_id: 81670332 - name: Nick Coe - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/highres_245331334.jpeg' - photo_id: 245331334 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/8/8/6/member_245331334.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/thumb_245331334.jpeg' - members: 165 - name: Meteor Norfolk/Virginia Beach - state: VA lat: 36.849998474121094 - who: Meteorites - - utc_offset: -14400000 - country: US - visibility: public - city: Athens - timezone: US/Eastern - created: 1412987525000 - link: 'http://www.meetup.com/Meteor-Athens/' - description: "

Meet other developers using Meteor. Share your knowledge, apps, and get feedback from others. Meteor is an open-source platform for building top-quality web apps in a fraction of the time, whether you're an expert developer or just getting started.

" - lon: -83.33999633789062 - group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/8/5/5/4/highres_419434132.jpeg' - photo_id: 419434132 - photo_link: 'http://photos3.meetupstatic.com/photos/event/8/5/5/4/600_419434132.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/8/5/5/4/thumb_419434132.jpeg' - join_mode: open - organizer: - member_id: 81670332 - name: Nick Coe - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/highres_245331334.jpeg' - photo_id: 245331334 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/8/8/6/member_245331334.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/thumb_245331334.jpeg' - members: 19 - name: Meteor Athens - state: GA - lat: 33.93000030517578 - who: Meteorites - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Phoenix - timezone: US/Arizona - created: 1413264260000 link: 'http://www.meetup.com/Meteor-Phoenix/' - rating: 4.86 + name: Meteor Phoenix description: "

Meet other developers using Meteor. Share your knowledge, apps, and get feedback from others. Meteor is an open-source platform for building top-quality web apps in a fraction of the time, whether you're an expert developer or just getting started.

" lon: -112.06999969482422 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/6/3/a/8/highres_421225512.jpeg' - photo_id: 421225512 photo_link: 'http://photos4.meetupstatic.com/photos/event/6/3/a/8/600_421225512.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/6/3/a/8/thumb_421225512.jpeg' - join_mode: open - organizer: - member_id: 81670332 - name: Nick Coe - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/highres_245331334.jpeg' - photo_id: 245331334 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/8/8/6/member_245331334.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/thumb_245331334.jpeg' - members: 288 - name: Meteor Phoenix - state: AZ lat: 33.45000076293945 - who: Meteorites - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Sacramento - timezone: US/Pacific - created: 1413440062000 link: 'http://www.meetup.com/The-Sacramento-Javascript-Meetup/' - rating: 4.9 - description: >- -

SacJS isn't just about teaching Javascript, jQuery, new APIs, - NodeJS, or micro-controllers. Its about people. We want you to come - hang out and meet new people, learn new things. That cool thing you - just learned about or launched at work? Come teach us about it!

- + name: The Sacramento JavaScript Meetup + description: |- +

SacJS isn't just about teaching Javascript, jQuery, new APIs, NodeJS, or micro-controllers. Its about people. We want you to come hang out and meet new people, learn new things. That cool thing you just learned about or launched at work? Come teach us about it!

- -

Interested in being a sponsor? Want to give a talk? Tweet us a @sac_js or open a Pull Request on - GitHub.

- +

Interested in being a sponsor? Want to give a talk? Tweet us a @sac_js or open a Pull Request on GitHub.

- -

SacJS expects all speakers and attendees to follow the SacJS Code of Conduct

- +

SacJS expects all speakers and attendees to follow the SacJS Code of Conduct

-
lon: -121.51000213623047 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/9/5/2/6/highres_421838182.jpeg' - photo_id: 421838182 photo_link: 'http://photos1.meetupstatic.com/photos/event/9/5/2/6/600_421838182.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/9/5/2/6/thumb_421838182.jpeg' - join_mode: open - organizer: - member_id: 13188390 - name: Derek Lindahl - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/9/4/1/1/highres_11017905.jpeg' - photo_id: 11017905 - photo_link: 'http://photos1.meetupstatic.com/photos/member/9/4/1/1/member_11017905.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/9/4/1/1/thumb_11017905.jpeg' - members: 716 - name: The Sacramento JavaScript Meetup - state: CA lat: 38.58000183105469 - who: JavaScripters - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Stamford - timezone: US/Eastern - created: 1413557129000 link: 'http://www.meetup.com/Meteor-Stamford/' - rating: 4.48 + name: Meteor Stamford description: "

Meteor is an open-source platform for building top-quality web apps in a fraction of the time, whether you're an expert developer or just getting started. Come\_Meet other developers using Meteor. Share your knowledge, apps, and get feedback from others.

" lon: -73.54000091552734 - join_mode: open - organizer: - member_id: 2836221 - name: Diego Scataglini - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/2/7/6/2/highres_235330082.jpeg' - photo_id: 235330082 - photo_link: 'http://photos1.meetupstatic.com/photos/member/2/7/6/2/member_235330082.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/2/7/6/2/thumb_235330082.jpeg' - members: 108 - name: Meteor Stamford - state: CT lat: 41.04999923706055 - who: Meteorites - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Schaumburg - timezone: US/Central - created: 1413587954000 link: 'http://www.meetup.com/Chicago-Suburban-Mobile-and-Web-Technology-Meetup/' - rating: 3.56 + name: Chicago Suburban Mobile and Web Technology Meetup description: 'Chicago suburban focuses on connecting technology professionals and decision makers in the Chicago land suburbs. The idea is to discuss innovative and disruptive technology aspects like Mobile App Development, Web Technology frameworks, connected devices i.e. Internet of Things and going over the industry trends and implementation of the technologies in terms of solutions.' lon: -88.08000183105469 - join_mode: open - organizer: - member_id: 20496981 - name: Prasad Bhojak - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/d/b/4/e/highres_235436142.jpeg' - photo_id: 235436142 - photo_link: 'http://photos1.meetupstatic.com/photos/member/d/b/4/e/member_235436142.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/d/b/4/e/thumb_235436142.jpeg' - members: 460 - name: Chicago Suburban Mobile and Web Technology Meetup - state: IL lat: 42.040000915527344 - who: Enthusiasts - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Santa Barbara - timezone: US/Pacific - created: 1414023648000 link: 'http://www.meetup.com/Santa-Barbara-AngularJS-Meetup/' - rating: 4.67 + name: Santa Barbara AngularJS Meetup description: 'AngularJS Meetup group in Santa Barbara, CA' lon: -119.73999786376953 - join_mode: open - organizer: - member_id: 12419688 - name: Sol Tran - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/3/a/8/f/highres_244514991.jpeg' - photo_id: 244514991 - photo_link: 'http://photos1.meetupstatic.com/photos/member/3/a/8/f/member_244514991.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/3/a/8/f/thumb_244514991.jpeg' - members: 92 - name: Santa Barbara AngularJS Meetup - state: CA lat: 34.45000076293945 - who: ng-developers - - utc_offset: -14400000 - country: CA - visibility: public + - country: CA city: Ottawa - timezone: Canada/Eastern - created: 1414117641000 link: 'http://www.meetup.com/Meteor-Ottawa/' - rating: 4.82 + name: Meteor Ottawa description: "

Meet other developers using Meteor. Share your knowledge, apps, and get feedback from others. Meteor is an open-source platform for building top-quality web apps in a fraction of the time, whether you're an expert developer or just getting started.

" lon: -75.69000244140625 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/c/f/c/a/highres_441593194.jpeg' - photo_id: 441593194 photo_link: 'http://photos1.meetupstatic.com/photos/event/c/f/c/a/600_441593194.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/c/f/c/a/thumb_441593194.jpeg' - join_mode: open - organizer: - member_id: 81670332 - name: Nick Coe - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/highres_245331334.jpeg' - photo_id: 245331334 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/8/8/6/member_245331334.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/thumb_245331334.jpeg' - members: 255 - name: Meteor Ottawa - state: 'ON' lat: 45.41999816894531 - who: Meteorites - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Glendale - timezone: US/Pacific - created: 1414430880000 link: 'http://www.meetup.com/WebApp-Builders/' - rating: 5 + name: WebApp Builders - WEEKLY - Fullstack Projects (LA Eastside) description: "

WebApp Builders

\n

Fullstack WebApp Development -- WEEKLY Meetup

\n

Projects & Study Group.

\n

L.A Eastside (Glendale)

\n

We are a weekly study group, coming together to improve our skills as full-stack WebApp developers.\_ We study together to expand our skills, stay sharp, and stay abreast of the latest trends and technologies.\_ Our ultimate goal is to strengthen our skills to produce the finest, most intuitive, scalable, industrial strength web-applications.\_ Our group is primarily composed of Rails developers using an assortment of JavaScript frontends (Angular, Backbone, etc.), but want to include all developers using any/all stacks for their projects.

\n

We use Rails, but want to learn from others:

\n

Share best-practices with developers building WebApps using the latest backend MVC (MV*) frameworks, together with the latest front-end frameworks.\_ Our environment is very welcoming, both to senior developers as well aspiring full-stack developers alike.\_ Our group grew out of a beginner's Ruby on Rails study group (itself an outgrowth of Rails Girls LA) -- and we've picked up a number of professional developers along the way.

\n

WEEKLY SCHEDULE:
\n\n \"WebApp Builders\" is a project-oriented study group.\_ We break up into project groups, work as teams, and learn together by discussing our projects as a group.

\n

A weekly meeting usually encompasses the following:

\n

(I.) Each project has time to:
\n\n - Present what you group did last week.
\n\n - Talk about design choices, options chosen and other ideas from the group.
\n\n - Discuss next weeks tasks and ask for group feedback.

\n

(II.) Layer in appropriate tutorials for the group:
\n\n - The emphasis is on \"full-stack\" development, so these will be tutorials emphasizing \"Using Rails with AngularJS.\" etc.
\n\n - We select a book, assign homework as a group, and discuss at the Meetup.

\n

(III.) A short weekly \"How To\" presentation:
\n\n - A \"How To\" presentation covering Rails fundamentals.
\n\n \_\_\_\_\_\_ For example: How to use \"rake routes.\"

\n


\n\n Note on Experience Level:
\n\n We are open to all developers -- please come join us! However, this group is intended as a intermediate (and up) group.\_ If you are a beginner, please feel free to join us, but we also have a \"Beginners Rails\" group that meets on Thursdays where we start from HTML & CSS and work our way through tutorials such as Hartl's Rails Tutorial: (https://www.railstutorial.org).

\n

Our Beginners Rails Study Group: http://www.meetup.com/LA-Eastside-Ruby-Rails-Study-Group

\n

Please feel free to come to both!

\n
\n\n

If you've already done tutorials such as Hartl's Rails Tutorial or gone to one the \"BootCamps\" such as General Assembly, this is a great group to maintain your skills, keep you up-to-date with software industry best practices, and explore fresh technologies as they emerge.

\n

JavaScript in the Front, WebApp Framework in the Back:
\n\n Though we tend to have our conversations around a Rails/Angular implementations, we encourage participation of WebApp developer using any modern full application stacks. We can all learn from each other and are interested in learning from developers using any of the following:

\n

Web Application Frameworks:
\n\n Rails4
\n\n Django
\n\n Drupal
\n\n Symfony2
\n\nFlask

\n

JavaScript Technologies:
\n\n Angular
\n\n Backbone
\n\n Ember
\n\n JQuery
\n\nReact

\n

MEAN stack (Mongo, Express, Angular, Node)

\n

AND many more...

\n

Most of the discussion will be around Rails, but any and all are welcome.

\n

We also use this group as an opportunity to stay up on trends.\_ Not all trends are worth pursuing, but many are worthy of discussion.\_ For example, these days, \"decoupled WebApps,\" is the new thing.\_ As interested developers, the group will be exploring decoupled design pattern, to see how this architecture pattern may fit within our projects.

\n

*This group is meant for developers.\_ Beginners through professionals are welcome, but please come prepared to learn.\_ We love participation!

\n

**The is not a place to pitch your business ideas, nor for recruitment.

" lon: -118.2699966430664 - join_mode: open - organizer: - member_id: 21099331 - name: Kobi - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/a/7/d/2/highres_134442962.jpeg' - photo_id: 134442962 - photo_link: 'http://photos3.meetupstatic.com/photos/member/a/7/d/2/member_134442962.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/a/7/d/2/thumb_134442962.jpeg' - members: 663 - name: WebApp Builders - WEEKLY - Fullstack Projects (LA Eastside) - state: CA lat: 34.150001525878906 - who: WebApp-Builders - - utc_offset: -18000000 - country: US - visibility: public - city: Wilmington - timezone: US/Eastern - created: 1414546609000 - link: 'http://www.meetup.com/Wilmington-Web-Developers/' - rating: 4.5 - description: '

This is a group for anyone interested in modern web technologies. Beginner and advanced users are welcome. Some things that we may cover are JavaScript frameworks, back-end development, best practices, and more. Come with questions or something to share. I look forward to meeting anyone in the Wilmington, NC area.

' - lon: -77.87000274658203 - join_mode: open - organizer: - member_id: 168236092 - name: Marc - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/6/9/2/8/highres_244826920.jpeg' - photo_id: 244826920 - photo_link: 'http://photos2.meetupstatic.com/photos/member/6/9/2/8/member_244826920.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/6/9/2/8/thumb_244826920.jpeg' - members: 50 - name: Wilmington Web Developers - state: NC - lat: 34.15999984741211 - who: Web Devs - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Savannah - timezone: US/Eastern - created: 1414681763000 link: 'http://www.meetup.com/SavannahJS/' - description: >- -

Meet and learn from other javascript developers with topics like - NodeJS, Javascript Frameworks, Mobile and more. Show off things you - have done and learn more about what is going on in the JS community in - and around Savannah, Georgia.

- + name: SavannahJS + description: |- +

Meet and learn from other javascript developers with topics like NodeJS, Javascript Frameworks, Mobile and more. Show off things you have done and learn more about what is going on in the JS community in and around Savannah, Georgia.


- -

-

Topics on our mind but not limited to!

-

- NodeJS

-

- Javascript

-

- Hardware hacking with Javascript

-

- Ghost (new blogging platform built on NodeJS)

-

- Building Mobile Apps using Javascript

-

- Drones using NodeJS

-


- -

lon: -81.11000061035156 - join_mode: open - organizer: - member_id: 67772502 - name: Will Dent - photo: - photo_id: 113163602 - photo_link: 'http://photos2.meetupstatic.com/photos/member/e/1/2/member_113163602.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/e/1/2/thumb_113163602.jpeg' - members: 29 - name: SavannahJS - state: GA lat: 32.06999969482422 - who: Developers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Portland - timezone: US/Pacific - created: 1414714826000 link: 'http://www.meetup.com/Portland-ReactJS/' - rating: 4.79 - description: >- -

This is a group for anyone who has experience working with the - Facebook React library or would like to learn more about it. We - (usually) host meetings on a monthly basis. There is room for reagents - to share their war stories, give lightning talks, share cool - tricks/projects and more.

- -

If you are interested in sharing or collaborating, please get in - touch with us!

- -

To submit a proposal to talk at one of our events, please fill out this - form.

- + name: Portland ReactJS + description: |- +

This is a group for anyone who has experience working with the Facebook React library or would like to learn more about it. We (usually) host meetings on a monthly basis. There is room for reagents to share their war stories, give lightning talks, share cool tricks/projects and more.

+

If you are interested in sharing or collaborating, please get in touch with us!

+

To submit a proposal to talk at one of our events, please fill out this form.


-


lon: -122.66999816894531 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/a/b/8/9/highres_434023913.jpeg' - photo_id: 434023913 photo_link: 'http://photos1.meetupstatic.com/photos/event/a/b/8/9/600_434023913.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/a/b/8/9/thumb_434023913.jpeg' - join_mode: open - organizer: - member_id: 128025862 - name: ben - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/9/4/4/a/highres_239077962.jpeg' - photo_id: 239077962 - photo_link: 'http://photos3.meetupstatic.com/photos/member/9/4/4/a/member_239077962.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/9/4/4/a/thumb_239077962.jpeg' - members: 779 - name: Portland ReactJS - state: OR lat: 45.52000045776367 - who: reactivists - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Huntsville - timezone: US/Central - created: 1414874794000 link: 'http://www.meetup.com/Huntsville-js-JavaScript-Meetup/' - rating: 5 + name: Huntsville.js JavaScript Meetup description: 'Our group will be open to all developers from those just starting to those with ninja status. Javascript has become pervasive in the browser, on the server, and even embedded devices. Our mission - create a community in Huntsville that can share experience, knowledge, and opportunities and enhance our own skills and value. Oh - and one more thing - we will have FUN!' lon: -86.55999755859375 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/1/f/c/4/highres_428588132.jpeg' - photo_id: 428588132 photo_link: 'http://photos1.meetupstatic.com/photos/event/1/f/c/4/600_428588132.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/1/f/c/4/thumb_428588132.jpeg' - join_mode: open - organizer: - member_id: 10251417 - name: Richard Williams - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/4/9/4/highres_239341172.jpeg' - photo_id: 239341172 - photo_link: 'http://photos4.meetupstatic.com/photos/member/4/9/4/member_239341172.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/4/9/4/thumb_239341172.jpeg' - members: 132 - name: Huntsville.js JavaScript Meetup - state: AL lat: 34.66999816894531 - who: Members - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Laguna Niguel - timezone: US/Pacific - created: 1415393633000 link: 'http://www.meetup.com/SoCal-Application-Developers/' - rating: 5 - description: >- -

This is a group for anyone interested in application development. We - will meet to present and discuss the latest trends in web and mobile - development. Our primary focus is the stack of technologies that - developers are using to build the modern Internet, including but not - limited to MVC/MV* frameworks, JavaScript, Ruby, Rails, Angular - JS, Ember JS, Backbone JS, Meteor JS, Knockout JS, the MEAN Stack - (MongoDB, Express JS, Angular JS, Node JS),  REST, JSON, JSONP, - RESTful APIs, CoffeeScript, the Yeoman workflow, Grunt, Gulp, npm, - Bower, Jasmine, Karma, Mocha, NoSQL, CouchDB, HTML5, CSS, Bootstrap, - LESS, SASS, PhoneGap, Ionic, Apache Cordova, and Firebase to name just - a few.

- -

We will focus on learning and best practices for integrating the - every combination and permutation of technologies that make up the - stack faced by developers in this fluid and dynamic ecosystem. We are - technology evangelists and at the same time technology agnostic. Please - use this as a place to freely share your knowledge and experiences as - well as discuss and debate your opinions. This is more than just - a Meetup... it is a marketplace for ideas and information.

- -

Please feel free to suggest topics, events, presenters, and - venues... we need your input. 

- -

Also, please feel free to use the forums to discuss technology, ask - for help, and offer help. This is our community so let's make the most - of it.

- + name: SoCal Application Developers + description: |- +

This is a group for anyone interested in application development. We will meet to present and discuss the latest trends in web and mobile development. Our primary focus is the stack of technologies that developers are using to build the modern Internet, including but not limited to MVC/MV* frameworks, JavaScript, Ruby, Rails, Angular JS, Ember JS, Backbone JS, Meteor JS, Knockout JS, the MEAN Stack (MongoDB, Express JS, Angular JS, Node JS),  REST, JSON, JSONP, RESTful APIs, CoffeeScript, the Yeoman workflow, Grunt, Gulp, npm, Bower, Jasmine, Karma, Mocha, NoSQL, CouchDB, HTML5, CSS, Bootstrap, LESS, SASS, PhoneGap, Ionic, Apache Cordova, and Firebase to name just a few.

+

We will focus on learning and best practices for integrating the every combination and permutation of technologies that make up the stack faced by developers in this fluid and dynamic ecosystem. We are technology evangelists and at the same time technology agnostic. Please use this as a place to freely share your knowledge and experiences as well as discuss and debate your opinions. This is more than just a Meetup... it is a marketplace for ideas and information.

+

Please feel free to suggest topics, events, presenters, and venues... we need your input. 

+

Also, please feel free to use the forums to discuss technology, ask for help, and offer help. This is our community so let's make the most of it.


lon: -117.70999908447266 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/a/b/5/d/highres_431743869.jpeg' - photo_id: 431743869 photo_link: 'http://photos1.meetupstatic.com/photos/event/a/b/5/d/600_431743869.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/a/b/5/d/thumb_431743869.jpeg' - join_mode: open - organizer: - member_id: 182223632 - name: David Max - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/7/8/c/a/highres_240990922.jpeg' - photo_id: 240990922 - photo_link: 'http://photos4.meetupstatic.com/photos/member/7/8/c/a/member_240990922.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/7/8/c/a/thumb_240990922.jpeg' - members: 212 - name: SoCal Application Developers - state: CA lat: 33.529998779296875 - who: Application Developers - - utc_offset: -21600000 - country: US - visibility: public + - country: US city: Provo - timezone: US/Mountain - created: 1415676318000 link: 'http://www.meetup.com/DevMountain-Alumni-Association/' - rating: 4.95 - description: >- + name: DevMountain Alumni Association + description: |-

This group is exclusively for DevMountain Alumni.

- -

Here is where DevMountain alumni will find networking opportunities, - exclusive events, and a plugin to the tech & developer communities. - This meetup group aims to provide a continued education for all - alumni.

- +

Here is where DevMountain alumni will find networking opportunities, exclusive events, and a plugin to the tech & developer communities. This meetup group aims to provide a continued education for all alumni.

L E A R N + L I V E + B U I L D + G I V E

lon: -111.69000244140625 - join_mode: approval - organizer: - member_id: 122649582 - name: Colt Henrie - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/a/c/c/2/highres_241424226.jpeg' - photo_id: 241424226 - photo_link: 'http://photos2.meetupstatic.com/photos/member/a/c/c/2/member_241424226.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/a/c/c/2/thumb_241424226.jpeg' - members: 220 - name: DevMountain Alumni Association - state: UT lat: 40.220001220703125 - who: DevMountaineers - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Mandeville - timezone: US/Central - created: 1415821271000 link: 'http://www.meetup.com/Mandeville-Web-Development-Meetup/' - rating: 4.77 + name: Mandeville - Web Development Meetup description: 'Meet fellow web developers and designers near you! Come to a Web Development Meetup to compare tools, languages, and templates; trade advice on careers, rates, and freelancing; and share cool websites. Make valuable contacts as you mingle with new friends!' lon: -90.01000213623047 - join_mode: open - organizer: - member_id: 182064152 - name: Chris Fontan - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/2/6/c/c/highres_240969932.jpeg' - photo_id: 240969932 - photo_link: 'http://photos4.meetupstatic.com/photos/member/2/6/c/c/member_240969932.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/2/6/c/c/thumb_240969932.jpeg' - members: 211 - name: Mandeville - Web Development Meetup - state: LA lat: 30.420000076293945 - who: Gurus - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: De Pere - timezone: US/Central - created: 1416064850000 link: 'http://www.meetup.com/devtrain-web-developer-community/' - rating: 5 + name: DevTrain Web Developer Community description: '

Interested in the latest open source technology? Want to find a career in web development? Maybe meet other developers who are passionate about the same technology as you? If you answered "yes" to any of those questions, you need to hop on the DevTrain.

' lon: -88.06999969482422 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/3/4/7/2/highres_431533426.jpeg' - photo_id: 431533426 photo_link: 'http://photos3.meetupstatic.com/photos/event/3/4/7/2/600_431533426.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/3/4/7/2/thumb_431533426.jpeg' - join_mode: open - organizer: - member_id: 10279408 - name: Chris Schmitz - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/a/2/c/a/highres_241541674.jpeg' - photo_id: 241541674 - photo_link: 'http://photos1.meetupstatic.com/photos/member/a/2/c/a/member_241541674.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/a/2/c/a/thumb_241541674.jpeg' - members: 53 - name: DevTrain Web Developer Community - state: WI lat: 44.43000030517578 - who: Developers - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Pensacola - timezone: US/Central - created: 1416334382000 link: 'http://www.meetup.com/Pensacola-javascript/' - rating: 5 + name: Pensacola.js The Premier Pensacola JavaScript Users Group description: "

Let's get together and learn about JS topics.  We are a group of hobbyists/enthusiasts, full time developers, sys admin, and students.  Regardless of your familiarity with Javascript, if long as you want to learn more about it then come out to a meetup and ask some questions!

" lon: -87.22000122070312 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/7/a/d/7/highres_434491447.jpeg' - photo_id: 434491447 photo_link: 'http://photos1.meetupstatic.com/photos/event/7/a/d/7/600_434491447.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/7/a/d/7/thumb_434491447.jpeg' - join_mode: open - organizer: - member_id: 8574330 - name: Steve Krzysiak - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/a/3/c/1/highres_7061921.jpeg' - photo_id: 7061921 - photo_link: 'http://photos2.meetupstatic.com/photos/member/a/3/c/1/member_7061921.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/a/3/c/1/thumb_7061921.jpeg' - members: 116 - name: Pensacola.js The Premier Pensacola JavaScript Users Group - state: FL lat: 30.420000076293945 - who: Scripters - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Chicago - timezone: US/Central - created: 1416363838000 link: 'http://www.meetup.com/React-Chicago/' - rating: 4.8 + name: React Chicago description: |-

Meetup focused on all things React. 

@@ -30820,8682 +9773,2882 @@ regions:

If you're interested in speaking, sign up here

lon: -87.63999938964844 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/5/e/c/d/highres_432564269.jpeg' - photo_id: 432564269 photo_link: 'http://photos4.meetupstatic.com/photos/event/5/e/c/d/600_432564269.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/5/e/c/d/thumb_432564269.jpeg' - join_mode: open - organizer: - member_id: 9635429 - name: Bill Gloff - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/8/4/6/e/highres_22833902.jpeg' - photo_id: 22833902 - photo_link: 'http://photos4.meetupstatic.com/photos/member/8/4/6/e/member_22833902.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/8/4/6/e/thumb_22833902.jpeg' - members: 880 - name: React Chicago - state: IL lat: 41.880001068115234 - who: Members - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Los Angeles - timezone: US/Pacific - created: 1416889378000 link: 'http://www.meetup.com/techDTLA/' - rating: 4.83 + name: techDT.LA description: "

Relax and enjoy a cozy atmosphere in the middle of DTLA's hustle, join informal presentations and group discussions with food, drinks and wifi.  Hang out with local tech professionals, chat about your latest project, and maybe even pick up a thing or two. Looking forward to seeing you at the next meetup.

" lon: -118.23999786376953 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/2/1/b/highres_437220539.jpeg' - photo_id: 437220539 photo_link: 'http://photos1.meetupstatic.com/photos/event/2/1/b/600_437220539.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/2/1/b/thumb_437220539.jpeg' - join_mode: open - organizer: - member_id: 50591082 - name: Tim Fulmer - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/3/0/9/2/highres_244452434.jpeg' - photo_id: 244452434 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/0/9/2/member_244452434.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/0/9/2/thumb_244452434.jpeg' - members: 916 - name: techDT.LA - state: CA lat: 34.04999923706055 - who: Technologelinos - - utc_offset: -14400000 - country: CA - visibility: public + - country: CA city: Toronto - timezone: Canada/Eastern - created: 1416895093000 link: 'http://www.meetup.com/Elasticsearch-Toronto/' - rating: 5 - description: >- -

Welcome to the Toronto meetup group for - elasticsearch!

- -

I have recently moved from Amsterdam to Toronto. In Amsterdam - I worked for the Netherlands Institute for Sound and Vision, the - national audiovisual archive of the Netherlands and one of the largest - archives in Europe. The institute was one of the early adopters of - elasticsearch, using it to power the archive's search engine: http://www.elasticsearch.org/case-study/sound-and-vision - (if you have a Dutch background or if you are into Dutch cultural - heritage, you might enjoy this site: http://in.beeldengeluid.nl).
- - + name: Elasticsearch Toronto + description: |- +

Welcome to the Toronto meetup group for elasticsearch!

+

I have recently moved from Amsterdam to Toronto. In Amsterdam I worked for the Netherlands Institute for Sound and Vision, the national audiovisual archive of the Netherlands and one of the largest archives in Europe. The institute was one of the early adopters of elasticsearch, using it to power the archive's search engine: http://www.elasticsearch.org/case-study/sound-and-vision (if you have a Dutch background or if you are into Dutch cultural heritage, you might enjoy this site: http://in.beeldengeluid.nl).

- -

I have already moved on to another project, but since I could not - find an elasticsearch meetup group here in Toronto, I thought that - I should start one. I'm happy to share my experience with mappings, - settings and bringing an elasticsearch cluster to production, and then - let the community take it forward. You all use elasticsearch, don't - you?
- - +

I have already moved on to another project, but since I could not find an elasticsearch meetup group here in Toronto, I thought that I should start one. I'm happy to share my experience with mappings, settings and bringing an elasticsearch cluster to production, and then let the community take it forward. You all use elasticsearch, don't you?

lon: -79.37999725341797 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/1/4/c/e/highres_431885326.jpeg' - photo_id: 431885326 photo_link: 'http://photos3.meetupstatic.com/photos/event/1/4/c/e/600_431885326.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/1/4/c/e/thumb_431885326.jpeg' - join_mode: open - organizer: - member_id: 182513481 - name: Amit - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/7/b/4/b/highres_241471563.jpeg' - photo_id: 241471563 - photo_link: 'http://photos2.meetupstatic.com/photos/member/7/b/4/b/member_241471563.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/7/b/4/b/thumb_241471563.jpeg' - members: 292 - name: Elasticsearch Toronto - state: 'ON' lat: 43.63999938964844 - who: elasticsearchers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Francisco - timezone: US/Pacific - created: 1417342787000 link: 'http://www.meetup.com/SF-Front-End/' - rating: 4.78 + name: 'SF Front-End Developers: Client-Side Sorcery' description: "

SF Front-End Developers is a community for front-end engineers, UX/UI designers and server-side fiends looking to expand into the client. If you go home at night and Ember.js, Angular.js, Polymer, Swift, d3.js or Backbone.js code haunts your dreams, you have come to the right place. We're focused on providing: engaging presentations, bleeding-edge tech demos and gathering groups of people together to explore the best possible UX engineering and design experiences. Let's do this!

" lon: -122.4000015258789 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/b/4/0/highres_432002880.jpeg' - photo_id: 432002880 photo_link: 'http://photos4.meetupstatic.com/photos/event/b/4/0/600_432002880.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/b/4/0/thumb_432002880.jpeg' - join_mode: open - organizer: - member_id: 25946292 - name: Bryan - photo: - photo_id: 30022742 - photo_link: 'http://photos3.meetupstatic.com/photos/member/5/8/d/6/member_30022742.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/5/8/d/6/thumb_30022742.jpeg' - members: 1609 - name: 'SF Front-End Developers: Client-Side Sorcery' - state: CA lat: 37.77000045776367 - who: Client-siders - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: New York - timezone: US/Eastern - created: 1417792863000 link: 'http://www.meetup.com/iojsnyc/' + name: New York io.js Meetup description: "We're dedicated to exploring and furthering io.js, the new fork of the game-changing node.js platform. We're application developers, backend engineers, open source contributors, and local New York technologists!" lon: -73.9800033569336 - join_mode: open - organizer: - member_id: 4929518 - name: Matt Walters - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/c/c/6/c/highres_114652332.jpeg' - photo_id: 114652332 - photo_link: 'http://photos4.meetupstatic.com/photos/member/c/c/6/c/member_114652332.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/c/c/6/c/thumb_114652332.jpeg' - members: 117 - name: New York io.js Meetup - state: NY lat: 40.720001220703125 - who: ioers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Mountain View - timezone: US/Pacific - created: 1418432576000 link: 'http://www.meetup.com/JS-Study-Group/' + name: Javascript Study Group description: "

This group is primarily focused on hosting and fostering study sessions for specific Javascript-specific technologies (frameworks, libraries, standards, etc.). We want to build various \"mini-communities\" for a variety of these JS technologies so that all members can accelerate their learning of the respective subject -- whether it's Angular, Firebase, Underscore/Lodash, MomentJS, Appgyver, Phonegap, Node, etc. We hope to have members achieve this accelerated learning by leveraging each others' knowledge and expertise.

" lon: -122.08000183105469 - join_mode: open - organizer: - member_id: 56066342 - name: Rachel - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/2/a/a/e/highres_242230926.jpeg' - photo_id: 242230926 - photo_link: 'http://photos1.meetupstatic.com/photos/member/2/a/a/e/member_242230926.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/2/a/a/e/thumb_242230926.jpeg' - members: 320 - name: Javascript Study Group - state: CA lat: 37.40999984741211 - who: Closures - - utc_offset: -28800000 - country: US - visibility: public + - country: US city: Los Angeles - timezone: US/Pacific - created: 1418526544000 link: 'http://www.meetup.com/Dev-Games-2015/' + name: 'Dev Games!' description: '

This is the Developer Olympics. Network with like-minded devs, make cool stuff, have a blast doing it.  We will have a series of short, timed coding challenges and there will be an opportunity to share stories from the trenches - how did that design pattern or library work in a real-world situation, on the job? What new frameworks and libraries are you interested in learning about?

' lon: -118.33000183105469 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/e/5/e/a/highres_432418858.jpeg' - photo_id: 432418858 - photo_link: 'http://photos1.meetupstatic.com/photos/event/e/5/e/a/600_432418858.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/e/5/e/a/thumb_432418858.jpeg' - join_mode: open - organizer: - member_id: 10518454 - name: Adam Haley - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/8/1/4/4/highres_87393092.jpeg' - photo_id: 87393092 - photo_link: 'http://photos2.meetupstatic.com/photos/member/8/1/4/4/member_87393092.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/8/1/4/4/thumb_87393092.jpeg' - members: 50 - name: Dev Games 2015 - state: CA + photo_link: 'http://photos4.meetupstatic.com/photos/event/a/f/600_445320175.jpeg' lat: 34.099998474121094 - who: Devs - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Pawtucket - timezone: US/Eastern - created: 1419357775000 link: 'http://www.meetup.com/Kenzan-Providence-Hack-Nights/' - rating: 5 - description: >- -

This is a group for developers interested in sharing code, helping - each other, learning new stuff, hanging out and having a few - beers. 

- -

Kenzan has a great space with lots of hardware and interesting - technology, stop by and let's work on something together or simply join - us for a conversation.

- lon: -71.38999938964844 - join_mode: open - organizer: - member_id: 4279870 - name: Jon - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/7/a/7/6/highres_242371350.jpeg' - photo_id: 242371350 - photo_link: 'http://photos2.meetupstatic.com/photos/member/7/a/7/6/member_242371350.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/7/a/7/6/thumb_242371350.jpeg' - members: 225 name: Kenzan Providence Hack Nights - state: RI + description: |- +

This is a group for developers interested in sharing code, helping each other, learning new stuff, hanging out and having a few beers. 

+

Kenzan has a great space with lots of hardware and interesting technology, stop by and let's work on something together or simply join us for a conversation.

+ lon: -71.38999938964844 lat: 41.869998931884766 - who: Hackers - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Worcester - timezone: US/Eastern - created: 1419365077000 link: 'http://www.meetup.com/Lets-Learn-Programming-in-Worcester-MA/' - rating: 5 + name: "Let's Learn Programming in Worcester, MA!" description: "

I want to become a Front End Developer, but I believe this endeavour will be much easier to tackle with like minded people. so, please join in! My aim is to became proficient in the MEAN stack (MongoDB, ExpressJS, AngularJS and node.js), but by no means I want to limit the group, so if you want to learn PHP or Ruby, and you would like to become part of the group, feel free! The idea of this meetup is purely the collaboration between 2 or more people in a common goal, learning how to be a proficient developer. We all learn at different pace, some of us will be able to learn in couple of months, and some of us will take longer, but don't let that deter you! I would like to welcome to the group, complete newbies, intermediary level and experience programmers! we all can learn something and help each other. I would love to hear from you, if you would like to help me on this venture, I will answer all questions and I will gladly accept all collaboration in developing a study guide/curriculum.

" lon: -71.80000305175781 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/7/6/b/5/highres_432870389.jpeg' - photo_id: 432870389 photo_link: 'http://photos2.meetupstatic.com/photos/event/7/6/b/5/600_432870389.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/7/6/b/5/thumb_432870389.jpeg' - join_mode: open - organizer: - member_id: 4817124 - name: John Rice - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/6/6/8/2/highres_235166242.jpeg' - photo_id: 235166242 - photo_link: 'http://photos1.meetupstatic.com/photos/member/6/6/8/2/member_235166242.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/6/6/8/2/thumb_235166242.jpeg' - members: 279 - name: "Let's Learn Programming in Worcester, MA!" - state: MA lat: 42.290000915527344 - who: theNewDevs - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Morgan Hill - timezone: US/Pacific - created: 1419784540000 link: 'http://www.meetup.com/South-County-Web-Developers/' - rating: 5 - description: >- -

South County Web Developers is a study group for web - designers and developers of all skill levels to get together, work on - some cool websites, make friends, network, learn some of the hottest - frameworks, and have fun!

- + name: South County Web Developers + description: |- +

South County Web Developers is a study group for web designers and developers of all skill levels to get together, work on some cool websites, make friends, network, learn some of the hottest frameworks, and have fun!

Mission

- -

This group aims to become a motivated and driven web - design/development community within and near the Morgan Hill area. Some - of our key initiatives are, but may not be limited to:

- -

• To connect together web designers/developers within the - Morgan Hill area 
• To provide resources for - designers/developers to learn and improve - skills
• To provide a friendly, - learning and collaborative environment for designers/developers to - jump-start and work on website projects alongside each other -
• To help aspiring - designers/developers discover a passion in the technology field  -

- -

All aspiring designers/developers are welcome! Bring your - laptop to events, and tell your friends about our group!

- -

Join our Facebook group here: https://www.facebook.com/groups/GilroyMorganHillWebDevelop... -

+

This group aims to become a motivated and driven web design/development community within and near the Morgan Hill area. Some of our key initiatives are, but may not be limited to:

+

• To connect together web designers/developers within the Morgan Hill area 
• To provide resources for designers/developers to learn and improve skills
• To provide a friendly, learning and collaborative environment for designers/developers to jump-start and work on website projects alongside each other
• To help aspiring designers/developers discover a passion in the technology field 

+

All aspiring designers/developers are welcome! Bring your laptop to events, and tell your friends about our group!

+

Join our Facebook group here: https://www.facebook.com/groups/GilroyMorganHillWebDevelop...

lon: -121.6500015258789 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/d/e/b/7/highres_433017015.jpeg' - photo_id: 433017015 photo_link: 'http://photos2.meetupstatic.com/photos/event/d/e/b/7/600_433017015.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/d/e/b/7/thumb_433017015.jpeg' - join_mode: open - organizer: - member_id: 135923792 - name: Jourdan Bul-lalayao - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/b/8/5/3/highres_246227187.jpeg' - photo_id: 246227187 - photo_link: 'http://photos3.meetupstatic.com/photos/member/b/8/5/3/member_246227187.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/b/8/5/3/thumb_246227187.jpeg' - members: 50 - name: South County Web Developers - state: CA lat: 37.119998931884766 - who: rockstar web developers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Portland - timezone: US/Pacific - created: 1420648423000 link: 'http://www.meetup.com/codefellowspdx/' - rating: 4.58 + name: Code Fellows Portland Meetup description: "

Code Fellows offers full-time and part-time programs to train software developers at every experience level. We strongly believe in the power of community and want to contribute in any way we can. Whether you're just starting out or have been a coding for years, come join us!

" lon: -122.69000244140625 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/b/e/2/8/highres_433128680.jpeg' - photo_id: 433128680 photo_link: 'http://photos2.meetupstatic.com/photos/event/b/e/2/8/600_433128680.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/b/e/2/8/thumb_433128680.jpeg' - join_mode: open - organizer: - member_id: 131469362 - name: 'Code Fellows ' - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/c/9/7/4/highres_175011572.jpeg' - photo_id: 175011572 - photo_link: 'http://photos4.meetupstatic.com/photos/member/c/9/7/4/member_175011572.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/c/9/7/4/thumb_175011572.jpeg' - members: 637 - name: Code Fellows Portland Meetup - state: OR lat: 45.5 - who: Members - - utc_offset: -14400000 - country: CA - visibility: public + - country: CA city: Cambridge - timezone: Canada/Eastern - created: 1420668459000 link: 'http://www.meetup.com/Meteor-Tri-City-Code-Club/' - rating: 5 + name: Meteor Tri-City Code Club description: '

Hoping to gather a group of people to meetup either Cambridge/Kitchener/Waterloo for ongoing MeteorJS hackathons and meetups. If you love Javascript and you are interested in Meteor or you are already developing with the framework, this group is for you!

' lon: -80.33000183105469 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/2/b/7/a/highres_433151130.jpeg' - photo_id: 433151130 photo_link: 'http://photos3.meetupstatic.com/photos/event/2/b/7/a/600_433151130.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/2/b/7/a/thumb_433151130.jpeg' - join_mode: open - organizer: - member_id: 81670332 - name: Nick Coe - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/highres_245331334.jpeg' - photo_id: 245331334 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/8/8/6/member_245331334.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/thumb_245331334.jpeg' - members: 45 - name: Meteor Tri-City Code Club - state: 'ON' lat: 43.349998474121094 - who: Meteorites - - utc_offset: -21600000 - country: US - visibility: public + - country: US city: Saint George - timezone: US/Mountain - created: 1420753336000 link: 'http://www.meetup.com/Saint-George-JavaScript-Meetup/' + name: Saint George JavaScript description: '

A group for developers that want to be JavaScript masters. All are welcome: young, old, new, experienced. We get together once a month to discuss hot topics in JavaScript, the industry, and programming. We understand that JavaScript is in web, mobile, and desktop applications, so we will also learn and discuss HTML, CSS, Android, iOS, Windows, Mac, and Linux. You will learn, socialize, teach, and help in this group. Go team JS!

' lon: -113.58000183105469 - join_mode: open - organizer: - member_id: 58922032 - name: James Brinkerhoff - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/4/f/4/8/highres_242780296.jpeg' - photo_id: 242780296 - photo_link: 'http://photos4.meetupstatic.com/photos/member/4/f/4/8/member_242780296.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/4/f/4/8/thumb_242780296.jpeg' - members: 93 - name: Saint George JavaScript - state: UT lat: 37.08000183105469 - who: JavaScripters - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Berkeley - timezone: US/Pacific - created: 1420848122000 link: 'http://www.meetup.com/BayArea-OpenROV-Users-Group/' + name: BayArea OpenROV Users Group description: 'This group is for OpenROV users and enthusiasts in the Bay Area. If you need help building your underwater robot, if you want to share with like minded individuals we are here to help. Activities include build days, local expeditions to fly ROVs, and hack days. All skill levels and ages welcome.' lon: -122.30000305175781 - join_mode: open - organizer: - member_id: 183457732 - name: Brian Adams - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/5/e/8/2/highres_242784194.jpeg' - photo_id: 242784194 - photo_link: 'http://photos1.meetupstatic.com/photos/member/5/e/8/2/member_242784194.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/5/e/8/2/thumb_242784194.jpeg' - members: 100 - name: BayArea OpenROV Users Group - state: CA lat: 37.869998931884766 - who: Open Rovers - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Washington - timezone: US/Eastern - created: 1420913222000 link: 'http://www.meetup.com/javascript-dc/' - rating: 4.67 + name: JavaScript DC description: "

JavaScript is becoming ever more popular on the client, server and mobile. Let's get together to learn new skills and network with like-minded JavaScript developers.\_

\n

Why another JavaScript group? Because with ES6 around the corner and with over 1 million JavaScript projects on GitHub, the Washington DC metro area can afford a new and different look at this fantastic language.

" lon: -77.0199966430664 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/c/c/8/e/highres_433192366.jpeg' - photo_id: 433192366 photo_link: 'http://photos4.meetupstatic.com/photos/event/c/c/8/e/600_433192366.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/c/c/8/e/thumb_433192366.jpeg' - join_mode: open - organizer: - member_id: 183474305 - name: Levent Gurses - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/a/6/5/b/highres_242802587.jpeg' - photo_id: 242802587 - photo_link: 'http://photos4.meetupstatic.com/photos/member/a/6/5/b/member_242802587.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/a/6/5/b/thumb_242802587.jpeg' - members: 607 - name: JavaScript DC - state: DC lat: 38.90999984741211 - who: JavaScript Developers - - utc_offset: -14400000 - country: US - visibility: public - city: Washington - timezone: US/Eastern - created: 1420916080000 - link: 'http://www.meetup.com/polymer-dc/' - rating: 5 - description: "

Welcome to Polymer DC,\_a developer-focused Meetup on developing web and mobile apps with Web Components and Google Polymer.

\n

\n

Web Components usher in a new era of web development based on encapsulated and interoperable custom elements that extend HTML itself. Built atop these new standards, Polymer makes it easier and faster to create anything from a button to a complete application across desktop, mobile, and beyond.

\n

Topics

\n

•\_Introduction to Web Components\_

\n

•\_Polymer

\n

•\_Current State of Browser Support

\n

•\_How to create high level concepts of code

\n

•\_Step by step demos on developing Polymer Web Components and mobile apps

" - lon: -77.0199966430664 - group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/c/e/3/b/highres_433192795.jpeg' - photo_id: 433192795 - photo_link: 'http://photos4.meetupstatic.com/photos/event/c/e/3/b/600_433192795.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/c/e/3/b/thumb_433192795.jpeg' - join_mode: open - organizer: - member_id: 183474305 - name: Levent Gurses - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/a/6/5/b/highres_242802587.jpeg' - photo_id: 242802587 - photo_link: 'http://photos4.meetupstatic.com/photos/member/a/6/5/b/member_242802587.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/a/6/5/b/thumb_242802587.jpeg' - members: 154 - name: Polymer DC - state: DC - lat: 38.90999984741211 - who: Polymers - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Charlotte - timezone: US/Eastern - created: 1421164792000 link: 'http://www.meetup.com/Makerspace-Charlotte/' - rating: 4.82 + name: Makerspace Charlotte description: "

Makerspace Charlotte is for make euthusiasts of all ages; we're into rockets, microcontroller, robots, etc... especially nodebots, and other IoT platforms for connecting all the things. Come by if you're into STEM education, sustainable tech, or building your next Burning Man exhibit. We can make IT together.

" lon: -80.83000183105469 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/7/1/3/highres_435601811.jpeg' - photo_id: 435601811 photo_link: 'http://photos3.meetupstatic.com/photos/event/7/1/3/600_435601811.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/7/1/3/thumb_435601811.jpeg' - join_mode: open - organizer: - member_id: 174750142 - name: Benjamin Gatti - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/4/4/a/3/highres_246077571.jpeg' - photo_id: 246077571 - photo_link: 'http://photos3.meetupstatic.com/photos/member/4/4/a/3/member_246077571.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/4/4/a/3/thumb_246077571.jpeg' - members: 597 - name: Makerspace Charlotte - state: NC lat: 35.189998626708984 - who: Makers - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Minneapolis - timezone: US/Central - created: 1421697053000 link: 'http://www.meetup.com/JAVA-USER-GROUP-JUG/' - rating: 5 + name: JAVA USER GROUP (JUG) description: 'Do you like to learn new technologies? Want to meet with other Java/UI developers in the Twin Cities? Enjoy free food and beverages?! Then come check us out! This group is for anyone and everyone who is interested in learning about the new technology trends in the Twin Cities Market. Set-Up: An hour of social time (catch up with other developers and eat food!), then an hour of presentation from a local software developer and technical evangelist. Topics range from web development w/backbone.js to best practices for RESFFUL API design. We cater to what the group is interested in hearing about! ***PLEASE check back with us on the next topic!' lon: -93.33999633789062 - join_mode: open - organizer: - member_id: 176885772 - name: Jessica Pellegrene - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/2/2/2/e/highres_243068750.jpeg' - photo_id: 243068750 - photo_link: 'http://photos4.meetupstatic.com/photos/member/2/2/2/e/member_243068750.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/2/2/2/e/thumb_243068750.jpeg' - members: 50 - name: JAVA USER GROUP (JUG) - state: MN lat: 44.81999969482422 - who: Members - - utc_offset: -21600000 - country: US - visibility: public + - country: US city: Saint Louis - timezone: US/Central - created: 1421770683000 - link: 'http://www.meetup.com/Saint-Louis-AngularJS-Meetup/' - rating: 5 - description: >- -

This is a great place to meet with great AngularJS and - JavaScript developers.

- -

If you are interested in speaking, please fill out our simple form for - submitting presentations. We will get back to you as soon as possible - and schedule a time for you to come speak! 

+ link: 'http://www.meetup.com/STL-AngularJS/' + name: STL AngularJS Meetup + description: |- +

Come to learn, discuss and get to know fellow AngularJS developers in the STL area. We love seeing new faces and most of the meetups end with some great discussion!

+

If you are interested in speaking please fill out the form here: http://goo.gl/forms/xlceG63Ukq and we will get you on the schedule as soon as possible.

lon: -90.25 - join_mode: open - organizer: - member_id: 84712232 - name: Yomi Toba - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/8/9/4/f/highres_243095151.jpeg' - photo_id: 243095151 - photo_link: 'http://photos3.meetupstatic.com/photos/member/8/9/4/f/member_243095151.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/8/9/4/f/thumb_243095151.jpeg' - members: 290 - name: Saint Louis AngularJS Meetup - state: MO lat: 38.63999938964844 - who: Coders - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Addison - timezone: US/Central - created: 1421770786000 link: 'http://www.meetup.com/DallasAngularJS/' - rating: 4.26 + name: Dallas AngularJS SuperHeros description: '

The Dallas AngularJS Super Heros DASH is a user group of front end AngularJS developers. We meet to broaden our knowledge on AngularJS and also other related front end technologies. The DASH meets on the fourth Tuesday of every month, with social / food at 6:30pm, and meeting content starting at 7:00pm. We meet at the Improving Enterprises office on the Dallas North Tollway.

' lon: -96.83000183105469 - join_mode: open - organizer: - member_id: 8970895 - name: Richard Lemieux - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/b/2/9/e/highres_6225726.jpeg' - photo_id: 6225726 - photo_link: 'http://photos4.meetupstatic.com/photos/member/b/2/9/e/member_6225726.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/b/2/9/e/thumb_6225726.jpeg' - members: 521 - name: Dallas AngularJS SuperHeros - state: TX lat: 32.959999084472656 - who: superheros - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Houston - timezone: US/Central - created: 1421862195000 link: 'http://www.meetup.com/NodejsHouston/' - rating: 4.99 - description: >- -

Node.js Houston was created to bring like minded software developers - with an interest of Node.js together. This group plans to facilitate - a learning environment for all those seeking to improve their - understanding with full stack javascript web development. This group - encourages and will be facilitating opportunities to expose and - announce collaborative efforts, opensource and local projects. We are - all looking forward to the future of web development with a full - javascript stack!

- -

For more information about Node.js Houston, please visit our - website: http://www.nodejshouston.com

- + name: Node.js Houston + description: |- +

Node.js Houston was created to bring like minded software developers with an interest of Node.js together. This group plans to facilitate a learning environment for all those seeking to improve their understanding with full stack javascript web development. This group encourages and will be facilitating opportunities to expose and announce collaborative efforts, opensource and local projects. We are all looking forward to the future of web development with a full javascript stack!

+

For more information about Node.js Houston, please visit our website: http://www.nodejshouston.com

Join us on slack at: http://chat.nodejshouston.com/

lon: -95.41999816894531 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/e/6/d/d/highres_433559101.jpeg' - photo_id: 433559101 photo_link: 'http://photos4.meetupstatic.com/photos/event/e/6/d/d/600_433559101.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/e/6/d/d/thumb_433559101.jpeg' - join_mode: open - organizer: - member_id: 13321460 - name: Alan Lee - photo: - photo_id: 42524052 - photo_link: 'http://photos3.meetupstatic.com/photos/member/a/c/1/4/member_42524052.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/a/c/1/4/thumb_42524052.jpeg' - members: 389 - name: Node.js Houston - state: TX lat: 29.799999237060547 - who: Noders - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Jersey City - timezone: US/Eastern - created: 1421965357000 link: 'http://www.meetup.com/Hudson-County-JavaScript-Meetup/' - rating: 4.89 - description: >- -

- + name: Hudson County JavaScript Meetup + description: |- +

- -

This group is for anyone interested in any and all things - JavaScript. Our meetups and presentations are intended for members to - share and level-up their JS skills. All skill levels are welcome.

+

This group is for anyone interested in any and all things JavaScript. Our meetups and presentations are intended for members to share and level-up their JS skills. All skill levels are welcome.

lon: -74.05000305175781 - join_mode: open - organizer: - member_id: 9676609 - name: Carlos Justiniano - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/f/9/e/highres_253023998.jpeg' - photo_id: 253023998 - photo_link: 'http://photos2.meetupstatic.com/photos/member/f/9/e/member_253023998.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/f/9/e/thumb_253023998.jpeg' - members: 304 - name: Hudson County JavaScript Meetup - state: NJ lat: 40.72999954223633 - who: JavaScripters - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Chalfont - timezone: US/Eastern - created: 1422302289000 link: 'http://www.meetup.com/Bucks-Co-Js/' - rating: 4.71 + name: Bucks County JS description: '

Bucks County JS is a group of professionals that are interested in, and involved with development in the browser and beyond. Topics include JavaScript, HTML, CSS, Node.js, Build Tools and Automation, Popular/Upcoming frameworks and libraries, etc.

' lon: -75.19999694824219 - join_mode: open - organizer: - member_id: 162881192 - name: Ben Spoon - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/a/d/2/c/highres_245984332.jpeg' - photo_id: 245984332 - photo_link: 'http://photos4.meetupstatic.com/photos/member/a/d/2/c/member_245984332.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/a/d/2/c/thumb_245984332.jpeg' - members: 309 - name: Bucks County JS - state: PA lat: 40.279998779296875 - who: Developers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Reno - timezone: US/Pacific - created: 1422317626000 link: 'http://www.meetup.com/RenoJS/' - rating: 4.94 - description: >- -

This is a group for anyone interested in JavaScript - development.  We will cover a wide variety of topics both - client-side and server-side (Node.js) as well as some embedded JS - development.

- + name: Reno.js + description: |- +

This is a group for anyone interested in JavaScript development.  We will cover a wide variety of topics both client-side and server-side (Node.js) as well as some embedded JS development.


-
lon: -119.80999755859375 - join_mode: open - organizer: - member_id: 10333803 - name: Darryl Rubarth - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/8/6/f/highres_10322159.jpeg' - photo_id: 10322159 - photo_link: 'http://photos4.meetupstatic.com/photos/member/8/6/f/member_10322159.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/8/6/f/thumb_10322159.jpeg' - members: 107 - name: Reno.js - state: NV lat: 39.529998779296875 - who: Devs - - utc_offset: -25200000 - country: CA - visibility: public + - country: CA city: Victoria - timezone: Canada/Pacific - created: 1422333249000 link: 'http://www.meetup.com/victoriajs/' - rating: 4.5 + name: 'VicJS: Victoria JavaScript Developers' description: "

VicJS is for JavaScript (including CoffeeScript!) developers based in Victoria, BC, Canada. The meetup format is a 30 to 60 minute presentation, followed by discussion at a nearby pub. We're planning to meet once every 2 months; contact us if you want to give a talk!

" lon: -123.37000274658203 - join_mode: open - organizer: - member_id: 3701816 - name: Peter Armstrong - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/2/8/c/6/highres_251530438.jpeg' - photo_id: 251530438 - photo_link: 'http://photos2.meetupstatic.com/photos/member/2/8/c/6/member_251530438.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/2/8/c/6/thumb_251530438.jpeg' - members: 180 - name: 'VicJS: Victoria JavaScript Developers' - state: BC lat: 48.43000030517578 - who: JavaScript Developers - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Collingswood - timezone: US/Eastern - created: 1422589331000 link: 'http://www.meetup.com/Beer-js-South-New-Jersey-Talk-JavaScript-at-Local-Pubs/' - rating: 4.72 + name: Beer.js South New Jersey - Talk JavaScript at Local Pubs description: "

Beer and JavaScript - what could be better? The South New Jersey (central to Audubon) chapter of the Beer.js group. Let's meet at some of our fine local establishments and talk JavaScript while enjoying a beverage and maybe some food. Despite the name, Beer.js is about creating social spaces to strengthen software communities. There is no requirement to drink to participate.

" lon: -75.06999969482422 - join_mode: open - organizer: - member_id: 26035632 - name: Christopher Cook - photo: - photo_id: 24874882 - photo_link: 'http://photos3.meetupstatic.com/photos/member/8/8/4/2/member_24874882.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/8/8/4/2/thumb_24874882.jpeg' - members: 111 - name: Beer.js South New Jersey - Talk JavaScript at Local Pubs - state: NJ lat: 39.90999984741211 - who: JavaScripters - - utc_offset: -28800000 - country: US - visibility: public - city: San Francisco - timezone: US/Pacific - created: 1422638667000 - link: 'http://www.meetup.com/San-Francisco-Nitrous-Group/' - description: This is a group for developers who want to learn more about building web applications using the Nitrous cloud-based IDE - lon: -122.4000015258789 - join_mode: open - organizer: - member_id: 2612073 - name: Justin - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/7/3/c/a/highres_243389642.jpeg' - photo_id: 243389642 - photo_link: 'http://photos3.meetupstatic.com/photos/member/7/3/c/a/member_243389642.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/7/3/c/a/thumb_243389642.jpeg' - members: 8 - name: San Francisco Nitrous Group - state: CA - lat: 37.77000045776367 - who: Developers - - utc_offset: -21600000 - country: US - visibility: public + - country: US city: Denver - timezone: US/Mountain - created: 1422906650000 link: 'http://www.meetup.com/DenverScript/' - rating: 4.9 - description: >- -

DenverScript is a community of developers focused on JavaScript in - downtown Denver. We will be discussing best practices, features coming - to ECMAScript, application development, what's going on in the JS - community, and more. If you have any interest in upping your JavaScript - knowledge, then please come check us out.

- -

Follow our Twitter account at @DenverScript for - JavaScript tweets and Meetup announcements, and join us at - #denverscript on Freenode to chat!

- -

We care about providing a safe harassment-free community, so read - our Code - of Conduct and know who to contact if there are issues.

+ name: DenverScript + description: |- +

DenverScript is a community of developers focused on JavaScript in downtown Denver. We will be discussing best practices, features coming to ECMAScript, application development, what's going on in the JS community, and more. If you have any interest in upping your JavaScript knowledge, then please come check us out.

+

Follow our Twitter account at @DenverScript for JavaScript tweets and Meetup announcements, and join us at #denverscript on Freenode to chat!

+

We care about providing a safe harassment-free community, so read our Code of Conduct and know who to contact if there are issues.

lon: -104.98999786376953 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/4/1/c/7/highres_434176839.jpeg' - photo_id: 434176839 photo_link: 'http://photos2.meetupstatic.com/photos/event/4/1/c/7/600_434176839.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/4/1/c/7/thumb_434176839.jpeg' - join_mode: open - organizer: - member_id: 14547812 - name: Matt Webb - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/6/1/4/8/highres_12624904.jpeg' - photo_id: 12624904 - photo_link: 'http://photos3.meetupstatic.com/photos/member/6/1/4/8/member_12624904.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/6/1/4/8/thumb_12624904.jpeg' - members: 882 - name: DenverScript - state: CO lat: 39.75 - who: Scriptonites - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Irvine - timezone: US/Pacific - created: 1422907862000 link: 'http://www.meetup.com/Meteor-Irvine/' - rating: 5 + name: Meteor Irvine description: "

Meet other developers using Meteor. Share your knowledge, apps, and get feedback from others. Meteor is an open-source platform for building top-quality web apps in a fraction of the time, whether you're an expert developer or just getting started.

" lon: -117.79000091552734 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/8/7/5/4/highres_433954644.jpeg' - photo_id: 433954644 photo_link: 'http://photos2.meetupstatic.com/photos/event/8/7/5/4/600_433954644.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/8/7/5/4/thumb_433954644.jpeg' - join_mode: open - organizer: - member_id: 81670332 - name: Nick Coe - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/highres_245331334.jpeg' - photo_id: 245331334 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/8/8/6/member_245331334.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/thumb_245331334.jpeg' - members: 232 - name: Meteor Irvine - state: CA lat: 33.689998626708984 - who: Meteorites - - utc_offset: -18000000 - country: US - visibility: public - city: Atlanta - timezone: US/Eastern - created: 1422914648000 - link: 'http://www.meetup.com/North-Atlanta-AngularJS-Meetup/' - rating: 5 - description: '

A group for discussing AngularJS and related technologies such as JavaScript, Ionic and various supporting back-end environments like NodeJS, .NET and Java.

' - lon: -84.31999969482422 - join_mode: open - organizer: - member_id: 11834553 - name: Trevor de Koekkoek - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/1/2/e/4/highres_9364836.jpeg' - photo_id: 9364836 - photo_link: 'http://photos3.meetupstatic.com/photos/member/1/2/e/4/member_9364836.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/1/2/e/4/thumb_9364836.jpeg' - members: 205 - name: North Atlanta AngularJS User Group - state: GA - lat: 33.939998626708984 - who: Angsters - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Palo Alto - timezone: US/Pacific - created: 1423028495000 link: 'http://www.meetup.com/modernwebui/' - rating: 4.94 - description: >- -

For meetups, please visit http://meetup.com/modernweb. For podcasts - and videos, visit http://modern-web.org.

- -

Topics: web components, ember, angular, react, polymer, async - programming, libraries such as bacon.js, rxjs, scalability, native - promises & performance, es6/es7 iterators and generators, reactive - extensions, object oriented design in es6, traits.js, design patterns - and more.

+ name: Modern Web UI + description: |- +

For meetups, please visit http://meetup.com/modernweb. For podcasts and videos, visit http://modern-web.org.

+

Topics: web components, ember, angular, react, polymer, async programming, libraries such as bacon.js, rxjs, scalability, native promises & performance, es6/es7 iterators and generators, reactive extensions, object oriented design in es6, traits.js, design patterns and more.

lon: -122.16000366210938 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/7/6/f/7/highres_439950455.jpeg' - photo_id: 439950455 photo_link: 'http://photos4.meetupstatic.com/photos/event/7/6/f/7/600_439950455.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/7/6/f/7/thumb_439950455.jpeg' - join_mode: open - organizer: - member_id: 8608562 - name: Tracy - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/c/0/highres_219780192.jpeg' - photo_id: 219780192 - photo_link: 'http://photos4.meetupstatic.com/photos/member/c/0/member_219780192.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/c/0/thumb_219780192.jpeg' - members: 2073 - name: Modern Web UI - state: CA lat: 37.45000076293945 - who: Members - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Monterey Park - timezone: US/Pacific - created: 1423202412000 link: 'http://www.meetup.com/LA-Web-Dev-Design/' - rating: 5 - description: >- -

Introduction: Our meetup is for anyone interested in HTML5, CSS3, - Javascript/JQuery, Dustjs/Templating Language, Less/Sass, - Backbonejs/Angularjs and the Nodejs/Expressjs Platform, Bootstrap, - Wordpress, Shopify, Google Analytics, Heroku, Parse, Twilio, also - Responsive Design, Mobile First and Content First, or anything else - people wants to learn and discuss.yeah! Our meetup is also to network - and connect local talented and skilled web developers who like to work - on side project or tutor(on nights and weekend from home) and make - a few extra money, with companies and startups in need of talents that - can get things done for and willing to work on their own hours for - a slightly reduced rate.

- + name: 'LA Web Dev & UX Design community' + description: |- +

Introduction: Our meetup is for anyone interested in HTML5, CSS3, Javascript/JQuery, Dustjs/Templating Language, Less/Sass, Backbonejs/Angularjs and the Nodejs/Expressjs Platform, Bootstrap, Wordpress, Shopify, Google Analytics, Heroku, Parse, Twilio, also Responsive Design, Mobile First and Content First, or anything else people wants to learn and discuss.yeah! Our meetup is also to network and connect local talented and skilled web developers who like to work on side project or tutor(on nights and weekend from home) and make a few extra money, with companies and startups in need of talents that can get things done for and willing to work on their own hours for a slightly reduced rate.


-

so you are welcome to join if:

-

1, you are talent web Developer/ designer

- -

2, you own or work for a startup company and have web development - needs and looking for solutions or user feedback .

- -

3, work on a project(or side project) and might need a helping hand - with your project from time to time.

- +

2, you own or work for a startup company and have web development needs and looking for solutions or user feedback .

+

3, work on a project(or side project) and might need a helping hand with your project from time to time.


lon: -118.1500015258789 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/d/b/4/7/highres_434036135.jpeg' - photo_id: 434036135 photo_link: 'http://photos4.meetupstatic.com/photos/event/d/b/4/7/600_434036135.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/d/b/4/7/thumb_434036135.jpeg' - join_mode: open - organizer: - member_id: 153198902 - name: Stephanielw - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/1/3/5/a/highres_249544954.jpeg' - photo_id: 249544954 - photo_link: 'http://photos2.meetupstatic.com/photos/member/1/3/5/a/member_249544954.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/1/3/5/a/thumb_249544954.jpeg' - members: 456 - name: 'LA Web Dev & UX Design community' - state: CA lat: 34.04999923706055 - who: Devs - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Diego - timezone: US/Pacific - created: 1423712493000 link: 'http://www.meetup.com/sandiego-ember/' - rating: 4.64 + name: San Diego Ember description: '

San Diego Ember is dedicated to providing a fun and engaging environment promoting Ember.

' lon: -117.23999786376953 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/7/c/f/c/highres_434251996.jpeg' - photo_id: 434251996 photo_link: 'http://photos4.meetupstatic.com/photos/event/7/c/f/c/600_434251996.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/7/c/f/c/thumb_434251996.jpeg' - join_mode: open - organizer: - member_id: 12742622 - name: Heather Alexandra Brysiewicz - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/c/3/8/f/highres_244490063.jpeg' - photo_id: 244490063 - photo_link: 'http://photos4.meetupstatic.com/photos/member/c/3/8/f/member_244490063.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/c/3/8/f/thumb_244490063.jpeg' - members: 158 - name: San Diego Ember - state: CA lat: 32.790000915527344 - who: Embereños - - utc_offset: -21600000 - country: US - visibility: public - city: Dallas - timezone: US/Central - created: 1423845325000 - link: 'http://www.meetup.com/nodebotsdfw/' - rating: 5 - description: >- -

Nodebots Dallas is a meetup for hardware/javascript enthusiasts and - hackers. This group will be participating in Nodebots Day [ July 25th - ] and NodeConf [ June 8th & 9th ], there will be very little - in the way of talks. We're going to get together, collaborate and hack. - The focus of NodeBots Day is on sharing and enjoying each other's - company. And JavaScript. Lots of JavaScript.

- -

Join us! Gather a group of people near you and hack together - something rad. We'll be meeting monthly to reboot our robotic - experiments and to host quick talks/demos from node nerds around - Dallas.

- -

Suggestions encouraged, participants welcome.

- -

Check out these links for more info on the international - community:

- -

https://github.com/nodebots/nodebotsday

- -

http://nodebots.io/

- lon: -96.83999633789062 - group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/7/d/a/8/highres_434852168.jpeg' - photo_id: 434852168 - photo_link: 'http://photos1.meetupstatic.com/photos/event/7/d/a/8/600_434852168.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/7/d/a/8/thumb_434852168.jpeg' - join_mode: open - organizer: - member_id: 10357243 - name: J Henderson - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/e/7/8/9/highres_243779273.jpeg' - photo_id: 243779273 - photo_link: 'http://photos1.meetupstatic.com/photos/member/e/7/8/9/member_243779273.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/e/7/8/9/thumb_243779273.jpeg' - members: 176 - name: NodeBots - DFW - state: TX - lat: 33 - who: Makers - - utc_offset: -14400000 - country: US - visibility: public + - country: US + city: Plano + link: 'http://www.meetup.com/amRobotics/' + name: 'amRobotics - LittleBits, JavaScript, Python, IoT, and More!' + description: |- +

The focus of our community is on developing and hacking the latest technology using JavaScript, Python, IoT, and LittleBits in order to create and enjoy a better way of life through technology.

+

AmRobotics will share information on (and host) several local Maker Faire & Hackathon events in 2016. Although group presentations and discussions are encouraged, our approach will be predominately ’hands on’.

+

We meet the last Monday of every other month starting March 2016.

+

Suggestions encouraged and ALL SKILL LEVELS welcome!

+



+

Check out the links below for more info on the international community and sponsors.

+

International Communities:

+

International NodeBots Day

+

NodeBots

+

PyCon

+

Arduino Day 2016

+


+

Sponsors:

+

AmRobotics

+

TechBubble Info

+

Zaniac Southlake

+

+ lon: -96.80000305175781 + group_photo: + photo_link: 'http://photos3.meetupstatic.com/photos/event/c/c/c/6/600_446572422.jpeg' + lat: 33.08000183105469 + - country: US city: Indianapolis - timezone: US/Eastern - created: 1424120726000 link: 'http://www.meetup.com/meteor-indy/' - rating: 4.9 - description: >- -

Join other area enthusiasts to share knowledge, apps and experience - with Meteor. 

- -

Meteor is a full stack open source, reactive platform for building - web and mobile apps in pure JavaScript. Meteor lets you build apps that - are a delight to use, faster than you ever thought possible. 

- + name: Meteor Indy + description: |- +

Join other area enthusiasts to share knowledge, apps and experience with Meteor. 

+

Meteor is a full stack open source, reactive platform for building web and mobile apps in pure JavaScript. Meteor lets you build apps that are a delight to use, faster than you ever thought possible. 

Everyone is welcome.

lon: -86.11000061035156 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/7/c/f/8/highres_434431992.jpeg' - photo_id: 434431992 photo_link: 'http://photos3.meetupstatic.com/photos/event/7/c/f/8/600_434431992.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/7/c/f/8/thumb_434431992.jpeg' - join_mode: open - organizer: - member_id: 13189803 - name: Mike Seidle - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/1/e/d/8/highres_249487896.jpeg' - photo_id: 249487896 - photo_link: 'http://photos3.meetupstatic.com/photos/member/1/e/d/8/member_249487896.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/1/e/d/8/thumb_249487896.jpeg' - members: 168 - name: Meteor Indy - state: IN lat: 39.869998931884766 - who: Meteorites - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Glendale - timezone: US/Arizona - created: 1424632976000 link: 'http://www.meetup.com/West-Valley-OSS-Web-Development-Meetup/' - rating: 5 - description: >- + name: West Valley OSS Web Development Meetup + description: |-

westvalleywebdev

- -

The West Valley OSS Web Development Meetup group is a friendly - learning-based meetup for people new to open-source web development. - This meetup is ideal for high school (with parents in tow...members - must be 18 but parents can join for their kids) and college students, - Jr. developers, and people new to web development (career change, - etc.). The goal of the meetup is to help foster the growth of - professional web developers here in the West Valley. We welcome people - of all skill levels but topics will be most beneficial to beginning and - intermediate developers. More seasoned developers are certainly welcome - to join as long as you are interested in guiding and helping other - members who want to learn.

- -

This meetup is a collaborative effort and thus members are expected - to not only be interested in learning all aspects of web development - but also willing to help their fellow developers when needed. Each - meetup will have a speaker who will give a short 30-45min presentation - followed by 30-60min of an open lab where members can work on the - topics covered or just seek help and guidance on their own projects - from other members. This group is about learning and problem solving as - much as it is about making professional connections.

- -

Because we are an OSS focused group, we will primarily cover - OSS-related topics like popular web languages (JavaScript, PHP, Python, - Ruby, etc.), databases (MySQL, MongoDB, etc.), Linux as a server, code - management (Git/Mercurial, DVCS, etc.), APIs and cloud services (AWS, - DigitalOcean, etc.), and a variety of other related topics! Ideas and - suggestions are always welcome.

- -

Meetups will be graciously hosted by the awesome START center at - West-MEC (http://west-mec.org/start/).

- -

Check out our slack (https://slack.com/) team at - "westvalleywebdev" Instructions for joining are here. - Ask development questions, connect with others, and make group-related - announcements. Please no spam!

+

The West Valley OSS Web Development Meetup group is a friendly learning-based meetup for people new to open-source web development. This meetup is ideal for high school (with parents in tow...members must be 18 but parents can join for their kids) and college students, Jr. developers, and people new to web development (career change, etc.). The goal of the meetup is to help foster the growth of professional web developers here in the West Valley. We welcome people of all skill levels but topics will be most beneficial to beginning and intermediate developers. More seasoned developers are certainly welcome to join as long as you are interested in guiding and helping other members who want to learn.

+

This meetup is a collaborative effort and thus members are expected to not only be interested in learning all aspects of web development but also willing to help their fellow developers when needed. Each meetup will have a speaker who will give a short 30-45min presentation followed by 30-60min of an open lab where members can work on the topics covered or just seek help and guidance on their own projects from other members. This group is about learning and problem solving as much as it is about making professional connections.

+

Because we are an OSS focused group, we will primarily cover OSS-related topics like popular web languages (JavaScript, PHP, Python, Ruby, etc.), databases (MySQL, MongoDB, etc.), Linux as a server, code management (Git/Mercurial, DVCS, etc.), APIs and cloud services (AWS, DigitalOcean, etc.), and a variety of other related topics! Ideas and suggestions are always welcome.

+

Meetups will be graciously hosted by the awesome START center at West-MEC (http://west-mec.org/start/).

+

Check out our slack (https://slack.com/) team at "westvalleywebdev" Instructions for joining are here. Ask development questions, connect with others, and make group-related announcements. Please no spam!

lon: -112.25 - join_mode: open - organizer: - member_id: 10218870 - name: Brandon C. - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/d/a/0/highres_244012640.jpeg' - photo_id: 244012640 - photo_link: 'http://photos3.meetupstatic.com/photos/member/c/d/a/0/member_244012640.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/d/a/0/thumb_244012640.jpeg' - members: 101 - name: West Valley OSS Web Development Meetup - state: AZ lat: 33.529998779296875 - who: Developers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Bakersfield - timezone: US/Pacific - created: 1424731034000 link: 'http://www.meetup.com/Bakersfield-JavaScript/' - rating: 5 + name: Bakersfield JavaScript description: '

Javascript is everywhere! If you are a programmer you will eventually need to get your hands dirty in JS. We will talk about frameworks, libraries, common practices and everything javascript. If you are coming from the HTML 5 Meetup group, welcome, this is the new place for meetups.

' lon: -118.93000030517578 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/e/a/3/8/highres_434639960.jpeg' - photo_id: 434639960 photo_link: 'http://photos3.meetupstatic.com/photos/event/e/a/3/8/600_434639960.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/e/a/3/8/thumb_434639960.jpeg' - join_mode: open - organizer: - member_id: 11617624 - name: Scott - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/8/a/f/highres_9111375.jpeg' - photo_id: 9111375 - photo_link: 'http://photos3.meetupstatic.com/photos/member/c/8/a/f/member_9111375.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/8/a/f/thumb_9111375.jpeg' - members: 159 - name: Bakersfield JavaScript - state: CA lat: 35.38999938964844 - who: Bako JavaScripters - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Carlsbad - timezone: US/Pacific - created: 1424921299000 link: 'http://www.meetup.com/San-Diego-Technology-Immersion-Group-SDTIG/' - rating: 4.93 - description: >- -

We are a technical book club. We read the same book on software - development and then meet once a month to discuss it. It takes us - between 3 - 5 months to read a book. We read three to four books - a year. We've been doing this for about four years and have about 150 - active members with about 40 people coming each month. Past books have - covered T-SQL, JavaScript, Angular.JS, Entity Framework, WPF, C#, etc. - Our next topic will be Python.

- + name: San Diego Technology Immersion Group (SDTIG) + description: |- +

We are a technical book club. We read the same book on software development and then meet once a month to discuss it. It takes us between 3 - 5 months to read a book. We read three to four books a year. We've been doing this for about four years and have about 150 active members with about 40 people coming each month. Past books have covered T-SQL, JavaScript, Angular.JS, Entity Framework, WPF, C#, etc. Our next topic will be Python.


- -

If you'd like to see past webcasts of our meetings, please visit - the - CraftingBytes YouTube channel.

- +

If you'd like to see past webcasts of our meetings, please visit the CraftingBytes YouTube channel.


-


lon: -117.30999755859375 - join_mode: open - organizer: - member_id: 31774012 - name: Ike Ellis - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/d/3/0/3/highres_248814019.jpeg' - photo_id: 248814019 - photo_link: 'http://photos1.meetupstatic.com/photos/member/d/3/0/3/member_248814019.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/d/3/0/3/thumb_248814019.jpeg' - members: 290 - name: San Diego Technology Immersion Group (SDTIG) - state: CA lat: 33.150001525878906 - who: TIGGERS - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: West Palm Beach - timezone: US/Eastern - created: 1425309614000 - link: 'http://www.meetup.com/PBG-Javascript-Group/' - rating: 4.79 - description: 'Calling all JavaScript nerds! If you are interested in anything related to JavaScript then this meet up is for you. This group is for anyone interested in JavaScript, client side, server side, and everything in between. All skill levels welcome. I am starting this group because I want to meet like minded people who are interested in the latest web technologies, not exclusively JavaScript but very heavily JavaScript. This group is to share ideas, talk about projects, listen to speakers, watch a demonstration and anything else one can think of. I look forward to meeting everyone and nerding out on some JavaScript.' + link: 'http://www.meetup.com/Palm-Beach-Javascript/' + name: Palm Beach JavaScript + description: |- +

If you're interested in anything related to JavaScript, then this meetup is for you!

+

This group is for anyone interested in JavaScript, client side, server side, and everything in between. We'll share ideas, talk about projects, listen to speakers, have demonstrations, and anything else one can think of. All skill levels welcome!

lon: -80.05999755859375 - join_mode: open - organizer: - member_id: 8077910 - name: 'Jeremy "Jermbo" Lawson' - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/b/b/e/a/highres_250008106.jpeg' - photo_id: 250008106 - photo_link: 'http://photos4.meetupstatic.com/photos/member/b/b/e/a/member_250008106.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/b/b/e/a/thumb_250008106.jpeg' - members: 152 - name: PBG Javascript Group - state: FL lat: 26.709999084472656 - who: Javascripters - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Melville - timezone: US/Eastern - created: 1425504242000 link: 'http://www.meetup.com/Long-Island-Programming-Meetup/' - rating: 5 + name: Long Island Programming Meetup description: '

Long Island Programming Meetup is a place for programmers to share ideas, challenges, and passion.  All languages are welcome and all types of development (web, back-end, etc.).  

' lon: -73.4000015258789 - join_mode: open - organizer: - member_id: 184959357 - name: Adam Alesandro - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/5/8/9/2/highres_244282674.jpeg' - photo_id: 244282674 - photo_link: 'http://photos1.meetupstatic.com/photos/member/5/8/9/2/member_244282674.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/5/8/9/2/thumb_244282674.jpeg' - members: 171 - name: Long Island Programming Meetup - state: NY lat: 40.79999923706055 - who: Members - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: West Palm Beach - timezone: US/Eastern - created: 1425575197000 link: 'http://www.meetup.com/Angular-Bootstrap-MVC-of-West-Palm-Beach-Meetup/' - rating: 5 - description: >- -

New to Angular? Finding yourself calling $scope.$apply for - everything? Don’t worry, we got you covered!

- -

I’m starting this group because I believe Angular is gaining - popularity in Palm Beach County and there is a need to collaborate and - exchange ideas.

- -

The goal is to create a welcoming atmosphere where people of all - levels can come together and expand their Angular awesomeness. Join - us!

- lon: -80.05999755859375 - join_mode: open - organizer: - member_id: 185806849 - name: Victor Hornback - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/e/b/e/highres_249352926.jpeg' - photo_id: 249352926 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/e/b/e/member_249352926.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/e/b/e/thumb_249352926.jpeg' - members: 228 name: 'Angular & Bootstrap & MVC of West Palm Beach Meetup' - state: FL + description: |- +

New to Angular? Finding yourself calling $scope.$apply for everything? Don’t worry, we got you covered!

+

I’m starting this group because I believe Angular is gaining popularity in Palm Beach County and there is a need to collaborate and exchange ideas.

+

The goal is to create a welcoming atmosphere where people of all levels can come together and expand their Angular awesomeness. Join us!

+ lon: -80.05999755859375 lat: 26.709999084472656 - who: Angularizers - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Chicago - timezone: US/Central - created: 1425938383000 link: 'http://www.meetup.com/Code-Fellows-Chicago-Meetup/' + name: Code Fellows Chicago Meetup description: "

Code Fellows offers full-time and part-time programs to train software developers at every experience level. We strongly believe in the power of community and want to contribute in any way we can. Whether you're just starting out or have been a coding for years, come join us!

" lon: -87.63999938964844 - join_mode: open - organizer: - member_id: 131469362 - name: 'Code Fellows ' - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/c/9/7/4/highres_175011572.jpeg' - photo_id: 175011572 - photo_link: 'http://photos4.meetupstatic.com/photos/member/c/9/7/4/member_175011572.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/c/9/7/4/thumb_175011572.jpeg' - members: 161 - name: Code Fellows Chicago Meetup - state: IL lat: 41.88999938964844 - who: Members - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Austin - timezone: US/Central - created: 1426208942000 link: 'http://www.meetup.com/Rockstar-Developers-Designers-Meetup/' - rating: 4.75 + name: Rockstar Developers description: '

Are you a rockstar developer? or want to become one? This group is for you. Come and network with some of the brightest minds in the industry and elevate your career. Great opportunity to learn from developers who have been successful, not just in development but also in their lives. Opportunity to learn some productivity techniques and relaxation techniques from some world class yoga gurus too. Complete personality development group for technocrats. Worth joining. See you soon!

' lon: -97.80999755859375 - join_mode: open - organizer: - member_id: 20234501 - name: Chander Dhall - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/e/5/1/1/highres_244498641.jpeg' - photo_id: 244498641 - photo_link: 'http://photos4.meetupstatic.com/photos/member/e/5/1/1/member_244498641.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/e/5/1/1/thumb_244498641.jpeg' - members: 405 - name: Rockstar Developers/Designers Meetup - state: TX lat: 30.299999237060547 - who: Rockstars - - utc_offset: -21600000 - country: US - visibility: public + - country: US city: Salt Lake City - timezone: US/Mountain - created: 1426687454000 link: 'http://www.meetup.com/utahnodejs/' - rating: 4.6 + name: Utah Node.js - Salt Lake City description: '

A meetup group dedicated to software development using Node.js.

' lon: -111.81999969482422 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/8/3/b/a/highres_446973722.jpeg' - photo_id: 446973722 photo_link: 'http://photos2.meetupstatic.com/photos/event/8/3/b/a/600_446973722.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/8/3/b/a/thumb_446973722.jpeg' - join_mode: open - organizer: - member_id: 11893070 - name: Michael Jackson - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/0/9/b/highres_243769307.jpeg' - photo_id: 243769307 - photo_link: 'http://photos3.meetupstatic.com/photos/member/c/0/9/b/member_243769307.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/0/9/b/thumb_243769307.jpeg' - members: 552 - name: Utah Node.js - Salt Lake City - state: UT lat: 40.619998931884766 - who: Node Ninjas - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Detroit - timezone: US/Eastern - created: 1426888530000 link: 'http://www.meetup.com/ng-detroit/' - rating: 4.44 + name: ng-detroit description: '

A group for AngularJS developers to network and share resources.

' lon: -83.05000305175781 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/5/c/9/1/highres_440783697.jpeg' - photo_id: 440783697 photo_link: 'http://photos2.meetupstatic.com/photos/event/5/c/9/1/600_440783697.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/5/c/9/1/thumb_440783697.jpeg' - join_mode: approval - organizer: - member_id: 184337512 - name: Amit - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/5/5/6/e/highres_244701870.jpeg' - photo_id: 244701870 - photo_link: 'http://photos4.meetupstatic.com/photos/member/5/5/6/e/member_244701870.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/5/5/6/e/thumb_244701870.jpeg' - members: 207 - name: ng-detroit - state: MI lat: 42.33000183105469 - who: ng-developer(s) - - utc_offset: -18000000 - country: US - visibility: public - city: Wilmington - timezone: US/Eastern - created: 1427296669000 - link: 'http://www.meetup.com/Wilmington-Learn-To-Code/' - rating: 5 - description: >- -

This group is for anyone interested in computer coding. This group - will help you to become a better coder by providing quality - presentations for different levels of experience including beginner, - intermediate and advanced levels. There will also be some networking - events with other like-minded technology groups in the area. 

- -


- lon: -77.87000274658203 - join_mode: approval - organizer: - member_id: 168236092 - name: Marc - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/6/9/2/8/highres_244826920.jpeg' - photo_id: 244826920 - photo_link: 'http://photos2.meetupstatic.com/photos/member/6/9/2/8/member_244826920.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/6/9/2/8/thumb_244826920.jpeg' - members: 34 - name: Wilmington Learn To Code Meetup - state: NC - lat: 34.15999984741211 - who: Coders - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Austin - timezone: US/Central - created: 1427733430000 link: 'http://www.meetup.com/Austin-Treeline/' + name: Austin Treeline description: '

Treeline lets you develop scalable Node.JS backend apps in your web browser without needing to know a lick of node syntax. Our meetup will introduce Treeline, showcase Treeline projects, and discus the world of rapid development for enterprise.

' lon: -97.70999908447266 - join_mode: open - organizer: - member_id: 96772662 - name: Christian Serna - photo: - photo_id: 140979772 - photo_link: 'http://photos1.meetupstatic.com/photos/member/9/b/5/c/member_140979772.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/9/b/5/c/thumb_140979772.jpeg' - members: 69 - name: Austin Treeline - state: TX lat: 30.270000457763672 - who: Treeliners - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Francisco - timezone: US/Pacific - created: 1427817414000 link: 'http://www.meetup.com/CodeClass-io/' + name: CodeClass.io description: 'CodeClass.io offer coding and technical workshops to help you get a jump start on your learning. We are a group of passionate developers, hackers, builders who love to learn and teach.' lon: -122.44000244140625 - join_mode: open - organizer: - member_id: 54387412 - name: Ruben Abergel - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/2/4/0/highres_244980576.jpeg' - photo_id: 244980576 - photo_link: 'http://photos4.meetupstatic.com/photos/member/2/4/0/member_244980576.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/2/4/0/thumb_244980576.jpeg' - members: 168 - name: CodeClass.io - state: CA lat: 37.77000045776367 - who: members - - utc_offset: -14400000 - country: CA - visibility: public + - country: CA city: Waterloo - timezone: Canada/Eastern - created: 1427821037000 link: 'http://www.meetup.com/Waterloo-Ember-js-Meetup/' + name: Kitchener-Waterloo Ember.js Meetup description: '

If you think the ember way is the only way, or you think the ember way will eventually be the only way or if you are just curious about the ember way, then this is for you. This meet ups will focus around Ember.js existing and future features, its progress in the way of Ember 2.0 and overall common front-end challenges Ember.js devs face

' lon: -80.51000213623047 - join_mode: open - organizer: - member_id: 152968662 - name: Tolga E - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/5/7/2/9/highres_244042313.jpeg' - photo_id: 244042313 - photo_link: 'http://photos4.meetupstatic.com/photos/member/5/7/2/9/member_244042313.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/5/7/2/9/thumb_244042313.jpeg' - members: 43 - name: Kitchener-Waterloo Ember.js Meetup - state: 'ON' lat: 43.470001220703125 - who: Embereños - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Los Angeles - timezone: US/Pacific - created: 1428303010000 link: 'http://www.meetup.com/makersquarela/' - rating: 4.88 + name: MakerSquare Los Angeles description: "

Ever thought about learning to code? If so, this meetup is for you! This meetup is run by MakerSquare, a 3 month immersive software engineering school part of the national Reactor Core Network. Our mission is to teach a driven community of students the latest in web development skills. We're educators first and software engineers second. We employ 21st century, rapid-iteration teaching principles to teach professionals the most in-demand skills in the most effective ways possible. Events we'll host will include coding workshops in HTML, CSS, JavaScript and Git, networking events for tech professionals in the Los Angeles area and community events to attract attention to the tech scene, just to name a few. Our goal is to provide the Los Angeles area with effective training that can support the lively tech ecosystem. Feel free to reach out if you're looking to get your hands dirty in some code!

" lon: -118.23999786376953 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/4/d/d/e/highres_448339934.jpeg' - photo_id: 448339934 photo_link: 'http://photos2.meetupstatic.com/photos/event/4/d/d/e/600_448339934.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/4/d/d/e/thumb_448339934.jpeg' - join_mode: open - organizer: - member_id: 83186762 - name: Shehzan Devani - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/b/0/b/0/highres_240225232.jpeg' - photo_id: 240225232 - photo_link: 'http://photos2.meetupstatic.com/photos/member/b/0/b/0/member_240225232.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/b/0/b/0/thumb_240225232.jpeg' - members: 508 - name: MakerSquare Los Angeles - state: CA lat: 33.970001220703125 - who: Future coders - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Baltimore - timezone: US/Eastern - created: 1428329232000 link: 'http://www.meetup.com/charmcityjs/' - rating: 4.71 + name: charmCityJs description: "

CharmCityJS brings the JS community of Baltimore together once a month for talks, hacking, and networking. We welcome newcomers of all experience levels. If you're new to web development and programming or if you're a CTO - we want to hang with you!

" lon: -76.62000274658203 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/9/e/c/1/highres_436060641.jpeg' - photo_id: 436060641 photo_link: 'http://photos2.meetupstatic.com/photos/event/9/e/c/1/600_436060641.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/9/e/c/1/thumb_436060641.jpeg' - join_mode: open - organizer: - member_id: 182841582 - name: Karl Groves - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/1/5/6/7/highres_241985479.jpeg' - photo_id: 241985479 - photo_link: 'http://photos4.meetupstatic.com/photos/member/1/5/6/7/member_241985479.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/1/5/6/7/thumb_241985479.jpeg' - members: 649 - name: charmCityJs - state: MD lat: 39.290000915527344 - who: JavaScripters - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Seattle - timezone: US/Pacific - created: 1428811380000 link: 'http://www.meetup.com/Seattle-Devmeetings/' - rating: 5 + name: Seattle Devmeetings description: '

We are looking forward to meet front-end engineers who would like to improve their skills in web technologies, share their knowledge and experience as well as software developers who are starting their adventure with web development and are eager to learn Javascript and related frameworks and tools. Devmeeting is a mix between hackaton, workshop and development training. We will code in teams with support from mentors and we will learn Javascript related tools, technologies and frameworks.

' lon: -122.37999725341797 - join_mode: open - organizer: - member_id: 185304352 - name: Gosia Zagozda - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/6/6/9/1/highres_245306257.jpeg' - photo_id: 245306257 - photo_link: 'http://photos2.meetupstatic.com/photos/member/6/6/9/1/member_245306257.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/6/6/9/1/thumb_245306257.jpeg' - members: 331 - name: Seattle Devmeetings - state: WA lat: 47.66999816894531 - who: developers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Francisco - timezone: US/Pacific - created: 1429043130000 link: 'http://www.meetup.com/treelinesails/' - description: >- -

Lets get together, learn and work with Sails.js & - Treeline.io 

- -


Sails.js is a web framework - that makes it easy to build custom, enterprise-grade Node.js apps. It - is designed to resemble the MVC architecture, but with support for the - more modern, data-oriented style of web app development. It's - especially good for building realtime features like chat.

- -

Treeline.io allows you to build - the back end of a web or mobile application by combining components - (aka “node-machines”) in - a visual environment. Your app is then compiled into a Sails.js project - that can be downloaded and deployed anywhere. In short, Treeline - eliminates the need for specialized knowledge to create back-end - apps.

- -

Collaborative Coding provides the opportunity for coders to work on - their own projects while sharing the company of other coders working - with the same language or framework. Lets share tips, code, and - experience with each other.

- + name: Sails.js + Treeline.io Raft.Up + description: |- +

Lets get together, learn and work with Sails.js & Treeline.io 

+


Sails.js is a web framework that makes it easy to build custom, enterprise-grade Node.js apps. It is designed to resemble the MVC architecture, but with support for the more modern, data-oriented style of web app development. It's especially good for building realtime features like chat.

+

Treeline.io allows you to build the back end of a web or mobile application by combining components (aka “node-machines”) in a visual environment. Your app is then compiled into a Sails.js project that can be downloaded and deployed anywhere. In short, Treeline eliminates the need for specialized knowledge to create back-end apps.

+

Collaborative Coding provides the opportunity for coders to work on their own projects while sharing the company of other coders working with the same language or framework. Lets share tips, code, and experience with each other.

Learning Sails Videos

- -

IRL Nathan - Sailscast Blog 

- -

Sailscast - on Youtube

- -

Platzi - Free Course Develop Web Apps in Node & Sails.js -

- -

Modern Web - Intro to Sails

- -

Markus - Padourek Sails and Ember

- +

IRL Nathan Sailscast Blog 

+

Sailscast on Youtube

+

Platzi Free Course Develop Web Apps in Node & Sails.js

+

Modern Web Intro to Sails

+

Markus Padourek Sails and Ember

Learning Sails Docs & Tuts

- -

In Progress "Sails.js in - Action" Book

- -

Sails.js - Official Docs

- +

In Progress "Sails.js in Action" Book

+

Sails.js Official Docs

Learning Treeline Videos

- -

Build - a Contact Form in Treeline 

- -

Treeline Sneak - Peek

- +

Build a Contact Form in Treeline 

+

Treeline Sneak Peek

Learning Treeline Docs & Tuts

- -

Treeline - FAQ

- -

Treeline Beta - Intro

- -

Super Secret Treeline - blog

- +

Treeline FAQ

+

Treeline Beta Intro

+

Super Secret Treeline blog

The Sails Treeline Node-Machine Universe

- -

Mike McNeill - What is Software? at Platzi Conference 

- -

"Pulling the - Plug" Node-Machine Intro

- -

Sails Rags to - Open Source

- +

Mike McNeill What is Software? at Platzi Conference 

+

"Pulling the Plug" Node-Machine Intro

+

Sails Rags to Open Source


lon: -122.4000015258789 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/3/9/c/f/highres_436334799.jpeg' - photo_id: 436334799 photo_link: 'http://photos1.meetupstatic.com/photos/event/3/9/c/f/600_436334799.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/3/9/c/f/thumb_436334799.jpeg' - join_mode: open - organizer: - member_id: 126468982 - name: John Scott - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/5/4/4/4/highres_200301572.jpeg' - photo_id: 200301572 - photo_link: 'http://photos1.meetupstatic.com/photos/member/5/4/4/4/member_200301572.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/5/4/4/4/thumb_200301572.jpeg' - members: 23 - name: Sails.js + Treeline.io Raft.Up - state: CA lat: 37.79999923706055 - who: Sailors - - utc_offset: -28800000 - country: US - visibility: public - city: Palo Alto - timezone: US/Pacific - created: 1429043141000 - link: 'http://www.meetup.com/JavaScript-Quality-Cats-South-Bay/' - description: 'We will periodically meet to host presentations, team coding, discussions, or just general networking of those interested in using and producing the best tools to ensure quality node.js development.' - lon: -122.1500015258789 - join_mode: open - members: 21 - name: JavaScript Quality Cats South Bay - state: CA - lat: 37.439998626708984 - who: Quality Cats - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Sunnyvale - timezone: US/Pacific - created: 1429810493000 link: 'http://www.meetup.com/GoLivelabs/' - rating: 5 - description: >- -

Go-Live Labs is a UI/UX & MEAN Stack focused company, - passionate about learning, educating, building great technology - products. 

- -

This group is created to invite local hackers/ programmers/ - developers/ designers to Learning Events @ Go-Live Labs.

- -

Developers will get to learn and practice emerging and - popular JavaScript Frameworks like React, AngularJS, Node.js, etc.

- -

Designers will get to do lot of live product reviews for - variety of bay area startups and interact with panel of UX - experts.

- -

Startup CEOs & Product Owners can present their - products for UX Critique from a panel of UX experts.

- -

We invite you all to join our small, focused and tightly knit - community.

- + name: 'GoLiveLabs.io - UI, UX & MEAN Stack Experts' + description: |- +

Go-Live Labs is a UI/UX & MEAN Stack focused company, passionate about learning, educating, building great technology products. 

+

This group is created to invite local hackers/ programmers/ developers/ designers to Learning Events @ Go-Live Labs.

+

Developers will get to learn and practice emerging and popular JavaScript Frameworks like React, AngularJS, Node.js, etc.

+

Designers will get to do lot of live product reviews for variety of bay area startups and interact with panel of UX experts.

+

Startup CEOs & Product Owners can present their products for UX Critique from a panel of UX experts.

+

We invite you all to join our small, focused and tightly knit community.

RA

-

CEO @ Go-Live Labs

-


-


-


lon: -122.0199966430664 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/7/8/f/4/highres_440970964.jpeg' - photo_id: 440970964 photo_link: 'http://photos2.meetupstatic.com/photos/event/7/8/f/4/600_440970964.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/7/8/f/4/thumb_440970964.jpeg' - join_mode: open - organizer: - member_id: 198438711 - name: Rose Mausling - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/3/7/d/7/highres_254774295.jpeg' - photo_id: 254774295 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/7/d/7/member_254774295.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/7/d/7/thumb_254774295.jpeg' - members: 707 - name: 'GoLiveLabs.io - UI, UX & MEAN Stack Experts' - state: CA lat: 37.380001068115234 - who: 'UI Developers & UX Designers' - - utc_offset: -14400000 - country: CA - visibility: public + - country: CA city: Toronto - timezone: Canada/Eastern - created: 1429815156000 link: 'http://www.meetup.com/Firebase-Toronto/' - rating: 4.5 + name: Firebase Toronto description: "

This group is for anyone interested in Firebase, a relatively new database service from Google. Firebase can help you quickly build web and mobile applications, get rid of servers and dev-ops, build push-capable real-time applications, scale easily, and save time and money overall. Firebase has a lot of potential for developers and companies that develop their own software. Let's get together and learn about Firebase and all its awesomeness.

" lon: -79.37000274658203 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/d/6/b/e/highres_436674974.jpeg' - photo_id: 436674974 photo_link: 'http://photos1.meetupstatic.com/photos/event/d/6/b/e/600_436674974.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/d/6/b/e/thumb_436674974.jpeg' - join_mode: open - organizer: - member_id: 24978782 - name: Antonio Sou - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/d/4/e/6/highres_23814502.jpeg' - photo_id: 23814502 - photo_link: 'http://photos2.meetupstatic.com/photos/member/d/4/e/6/member_23814502.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/d/4/e/6/thumb_23814502.jpeg' - members: 104 - name: Firebase Toronto - state: 'ON' lat: 43.650001525878906 - who: Members - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Irvine - timezone: US/Pacific - created: 1429819717000 link: 'http://www.meetup.com/ReactJS-OC/' - rating: 4.83 + name: ReactJS OC description: '

We are an Orange County meetup focused on developing with ReactJS, React Native, and Flux architecture. Our community is open-minded and welcome other front-end MVC enthusiasts too. Interestingly, React Native gives JS developers a way to write native mobile applications so we will cover related topics as well.

' lon: -117.75 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/8/6/c/5/highres_436654501.jpeg' - photo_id: 436654501 photo_link: 'http://photos2.meetupstatic.com/photos/event/8/6/c/5/600_436654501.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/8/6/c/5/thumb_436654501.jpeg' - join_mode: open - organizer: - member_id: 8229455 - name: Loc Nguyen - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/2/b/5/4/highres_130271092.jpeg' - photo_id: 130271092 - photo_link: 'http://photos4.meetupstatic.com/photos/member/2/b/5/4/member_130271092.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/2/b/5/4/thumb_130271092.jpeg' - members: 268 - name: ReactJS OC - state: CA lat: 33.7400016784668 - who: Reactivists - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Miami - timezone: US/Eastern - created: 1430105040000 link: 'http://www.meetup.com/MiamiJS/' + name: MiamiJS description: '

MiamiJS is a group for JavaScript developers to learn and share. Topics include both client and server side JS: ES6, frameworks and libraries, NodeJS, AngularJS, MeteorJS, mobile development, testing and more...

' lon: -80.20999908447266 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/6/e/1/3/highres_436828179.jpeg' - photo_id: 436828179 - photo_link: 'http://photos1.meetupstatic.com/photos/event/6/e/1/3/600_436828179.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/6/e/1/3/thumb_436828179.jpeg' - join_mode: open - organizer: - member_id: 12100148 - name: Cristina Solana - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/e/9/4/a/highres_36419722.jpeg' - photo_id: 36419722 - photo_link: 'http://photos3.meetupstatic.com/photos/member/e/9/4/a/member_36419722.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/e/9/4/a/thumb_36419722.jpeg' - members: 149 - name: MiamiJS - state: FL + photo_link: 'http://photos4.meetupstatic.com/photos/event/e/9/e/c/600_436799884.jpeg' lat: 25.81999969482422 - who: Coders - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Mountain View - timezone: US/Pacific - created: 1430181093000 link: 'http://www.meetup.com/ContainerNode/' - rating: 5 + name: ContainerNode description: '

We <3 Node and Docker developers, architects and enthusiasts! Join us for a series of meetups at Hacker Dojo and online dedicated to microservice architecture & orchestration topics based on Node and Docker technology.

' lon: -122.06999969482422 - join_mode: open - organizer: - member_id: 11429384 - name: Tony Pujals - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/c/1/3/5/highres_252169461.jpeg' - photo_id: 252169461 - photo_link: 'http://photos4.meetupstatic.com/photos/member/c/1/3/5/member_252169461.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/c/1/3/5/thumb_252169461.jpeg' - members: 379 - name: ContainerNode - state: CA lat: 37.38999938964844 - who: Members - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Los Angeles - timezone: US/Pacific - created: 1430189958000 link: 'http://www.meetup.com/React-Native-Los-Angeles/' - rating: 5 + name: React Native Los Angeles description: '

React Native Los Angeles is a meetup dedicated to people building mobile apps with React Native.

' lon: -118.27999877929688 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/c/3/1/8/highres_436849944.jpeg' - photo_id: 436849944 photo_link: 'http://photos4.meetupstatic.com/photos/event/c/3/1/8/600_436849944.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/c/3/1/8/thumb_436849944.jpeg' - join_mode: open - organizer: - member_id: 186672448 - name: Christopher Dro - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/c/b/b/1/highres_251332145.jpeg' - photo_id: 251332145 - photo_link: 'http://photos4.meetupstatic.com/photos/member/c/b/b/1/member_251332145.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/c/b/b/1/thumb_251332145.jpeg' - members: 372 - name: React Native Los Angeles - state: CA lat: 34.029998779296875 - who: Engineers - - utc_offset: -21600000 - country: US - visibility: public + - country: US city: Boulder - timezone: US/Mountain - created: 1430409735000 link: 'http://www.meetup.com/RefactorU-Education-Technology/' - rating: 4.6 - description: >- - Interested in learning about up-and-coming technology? Want to harness - your technical knowledge to develop innovative apps? Looking to network - with people across all technological platforms? - - As a group of passionate people who love making things, solving - problems, and spreading knowledge, we want to host and create events - that will inspire the community to join us in our creative endeavors. - lon: -105.30999755859375 - join_mode: open - organizer: - member_id: 83022342 - name: RefactorU - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/5/1/3/b/highres_253100795.jpeg' - photo_id: 253100795 - photo_link: 'http://photos3.meetupstatic.com/photos/member/5/1/3/b/member_253100795.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/5/1/3/b/thumb_253100795.jpeg' - members: 225 name: 'RefactorU Education & Technology' - state: CO + description: |- + Interested in learning about up-and-coming technology? Want to harness your technical knowledge to develop innovative apps? Looking to network with people across all technological platforms? + As a group of passionate people who love making things, solving problems, and spreading knowledge, we want to host and create events that will inspire the community to join us in our creative endeavors. + lon: -105.30999755859375 lat: 40.040000915527344 - who: Creatives - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Sacramento - timezone: US/Pacific - created: 1430696535000 link: 'http://www.meetup.com/Sacramento-ReactJS-Meetup/' - rating: 5 + name: 'Reacto: The Sacramento ReactJS Meetup' description: "

This is a meetup for anyone interested in programming applications with React and React Native. The React.js meetup will bring together the local React community to share ideas, tricks, and triumphs to help make working with the library even more fun. Since this group is new, we're excited to collaborate to make the group useful for everyone, so please don't hesitate to get in touch!

" lon: -121.48999786376953 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/3/3/5/a/highres_437053146.jpeg' - photo_id: 437053146 photo_link: 'http://photos3.meetupstatic.com/photos/event/3/3/5/a/600_437053146.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/3/3/5/a/thumb_437053146.jpeg' - join_mode: open - organizer: - member_id: 143548502 - name: Eve Porcello - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/7/5/f/0/highres_196530192.jpeg' - photo_id: 196530192 - photo_link: 'http://photos4.meetupstatic.com/photos/member/7/5/f/0/member_196530192.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/7/5/f/0/thumb_196530192.jpeg' - members: 207 - name: 'Reacto: The Sacramento ReactJS Meetup' - state: CA lat: 38.58000183105469 - who: Developers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Santa Monica - timezone: US/Pacific - created: 1430851226000 link: 'http://www.meetup.com/GirlHack-A-weekly-hack-for-the-ladies/' - rating: 5 - description: >- -

Tired of always being the only chick at tech meetups? Tired of - for-profit girl-only meetups that cite feminist empowerment as - a motivation to program? We started a hack for the ladies who want to - keep it real. We don't want to hear about the glass ceiling. We don't - want to be asked if our dad/brother/boyfriend got us into programming. - We just want to get our hack on. GirlHack is every Thursday. Bring your - latest project, bring a friend, bring your A-Game. 

- -

We have 1weeks and 0weeks. 0weeks are are informal hacks: - opportunities to pair, get feedback, or get help. 1weeks are hacks with - a purpose, where we will be tackling specific topics, or hosting - speakers. Occasionally, we'll host hikes, beach days, or even go rock - climbing. And, tech conferences? Ooooh girl. Good times will be had by - all. Location independent: We'll host in or around West LA / Santa - Monica, until we find an optimal central location for our major - patrons. (There's an algorithm for that!) 

- -

We prefer to keep it open source. Our talks will probably never - encompass Microsoft or Oracle technologies, due to cost (just like our - meetups, we like our software FREE). Unix based operating systems are - assumed (Linux, Mac, BSD). Let us know if you are a Windows user, - hoping to come to the dark side. We have distros of Mint or Ubuntu - waiting! UEFI notwithstanding. We're interested in: anything .js, ruby, - php, python, functional, or c-based. We'll focus on: algorithms, - version control, agile, TDD and BDD, workflow, frameworks, security, - cryptography, maths, scientific programming, best practices, and - more. 

- -

It's all free, unless there are entry or venue fees. We want to keep - this as free as possible. Girlhack has only one request: don't be - a dick, and don't have one.

- lon: -118.5 - join_mode: open - organizer: - member_id: 57790632 - name: Jessica M Colding - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/9/d/0/0/highres_245920192.jpeg' - photo_id: 245920192 - photo_link: 'http://photos1.meetupstatic.com/photos/member/9/d/0/0/member_245920192.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/9/d/0/0/thumb_245920192.jpeg' - members: 79 name: GirlHack - A weekly hack for the ladies. - state: CA + description: |- +

Tired of always being the only chick at tech meetups? Tired of for-profit girl-only meetups that cite feminist empowerment as a motivation to program? We started a hack for the ladies who want to keep it real. We don't want to hear about the glass ceiling. We don't want to be asked if our dad/brother/boyfriend got us into programming. We just want to get our hack on. GirlHack is every Thursday. Bring your latest project, bring a friend, bring your A-Game. 

+

We have 1weeks and 0weeks. 0weeks are are informal hacks: opportunities to pair, get feedback, or get help. 1weeks are hacks with a purpose, where we will be tackling specific topics, or hosting speakers. Occasionally, we'll host hikes, beach days, or even go rock climbing. And, tech conferences? Ooooh girl. Good times will be had by all. Location independent: We'll host in or around West LA / Santa Monica, until we find an optimal central location for our major patrons. (There's an algorithm for that!) 

+

We prefer to keep it open source. Our talks will probably never encompass Microsoft or Oracle technologies, due to cost (just like our meetups, we like our software FREE). Unix based operating systems are assumed (Linux, Mac, BSD). Let us know if you are a Windows user, hoping to come to the dark side. We have distros of Mint or Ubuntu waiting! UEFI notwithstanding. We're interested in: anything .js, ruby, php, python, functional, or c-based. We'll focus on: algorithms, version control, agile, TDD and BDD, workflow, frameworks, security, cryptography, maths, scientific programming, best practices, and more. 

+

It's all free, unless there are entry or venue fees. We want to keep this as free as possible. Girlhack has only one request: don't be a dick, and don't have one.

+ lon: -118.5 lat: 34.02000045776367 - who: Babes of Binary - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Redding - timezone: US/Pacific - created: 1430936399000 link: 'http://www.meetup.com/ReddingGDG/' + name: Redding Google Developers Group Meetup description: "This group is for anyone interested in Google's developer technology; generally we focus on Android development with connectivity to Google API's. In addition we tend to enjoy everything from Android, Chrome, App Engine, HTML5, to product APIs like the YouTube and prediction engine." lon: -122.41999816894531 - join_mode: open - organizer: - member_id: 186744367 - name: Brandy Camacho - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/2/7/8/3/highres_245770115.jpeg' - photo_id: 245770115 - photo_link: 'http://photos2.meetupstatic.com/photos/member/2/7/8/3/member_245770115.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/2/7/8/3/thumb_245770115.jpeg' - members: 32 - name: Redding Google Developers Group Meetup - state: CA lat: 40.560001373291016 - who: developers - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Houston - timezone: US/Central - created: 1431010939000 link: 'http://www.meetup.com/Connected-Car-Houston/' - rating: 5 + name: Connected Car Houston description: '

This group is all about the future of urban mobility, transportation and the connected car. If you love cars (connected ones, autonomous ones, electric ones or even shared ones) this is the group for you. We are a group of tech and car enthusiasts who come together to share the biggest and brightest ideas and companies in the space. We host monthly meetups with some of the most progressive startups, entrepreneurs and companies in Houston. We hope you will join us and look forward to meeting you.

' lon: -95.22000122070312 - join_mode: open - organizer: - member_id: 185700529 - name: Chris George - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/b/8/5/a/highres_244967194.jpeg' - photo_id: 244967194 - photo_link: 'http://photos4.meetupstatic.com/photos/member/b/8/5/a/member_244967194.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/b/8/5/a/thumb_244967194.jpeg' - members: 174 - name: Connected Car Houston - state: TX lat: 29.719999313354492 - who: Urban Movers - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Fayetteville - timezone: US/Central - created: 1431451320000 link: 'http://www.meetup.com/fayettevillejs/' - rating: 5 + name: '{ fayetteville.js };' description: '{ fayetteville.js }; is a monthly group for anyone interested in the JavaScript programming language. All skill levels are welcome. The purpose of this group is to teach each other about new JavaScript technologies and meet other NWA area developers. For the majority of meetups, we will follow a conference-style approach, where someone in the community will volunteer to present for 20-40 minutes on a particular topic. The remainder of the time will be reserved for socializing (and eating).' lon: -94.1500015258789 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/e/7/b/5/highres_437399317.jpeg' - photo_id: 437399317 photo_link: 'http://photos3.meetupstatic.com/photos/event/e/7/b/5/600_437399317.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/e/7/b/5/thumb_437399317.jpeg' - join_mode: open - organizer: - member_id: 184516713 - name: Blake Johnston - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/b/6/8/4/highres_246106724.jpeg' - photo_id: 246106724 - photo_link: 'http://photos2.meetupstatic.com/photos/member/b/6/8/4/member_246106724.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/b/6/8/4/thumb_246106724.jpeg' - members: 136 - name: '{ fayetteville.js };' - state: AR lat: 36.099998474121094 - who: JavaScript Lovers - - utc_offset: -14400000 - country: CA - visibility: public + - country: CA city: Québec - timezone: Canada/Eastern - created: 1431648413000 link: 'http://www.meetup.com/ProjectNight/' + name: Project Night Québec description: "

Ce groupe s'adresse à tous ceux qui sont intéressés par le développement que ce soit pour le Web, mobile, ou logiciel. Que vous soyez débutants ou professionnel, ce groupe est pour tout le monde qui a envie de travailler sur un projet informatique seul ou avec d'autres personnes du groupe, pour but de s'améliorer en tant que programmeurs, ou même se lancer en affaire avec d'autres programmeurs passionnés. Je suis certain qu'il y à beaucoup de potentiel à Québec pour ce groupe. Oh, pour cette soirée, bières et pizza sont au rendez-vous :-)

" lon: -71.20999908447266 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/c/f/9/2/highres_437453138.jpeg' - photo_id: 437453138 photo_link: 'http://photos2.meetupstatic.com/photos/event/c/f/9/2/600_437453138.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/c/f/9/2/thumb_437453138.jpeg' - join_mode: open - organizer: - member_id: 61418252 - name: Dany Pelletier - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/c/7/0/9/highres_246170953.jpeg' - photo_id: 246170953 - photo_link: 'http://photos4.meetupstatic.com/photos/member/c/7/0/9/member_246170953.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/c/7/0/9/thumb_246170953.jpeg' - members: 152 - name: Project Night Québec - state: QC lat: 46.810001373291016 - who: codeurs - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Fresno - timezone: US/Pacific - created: 1431654850000 link: 'http://www.meetup.com/fresno-node-js/' - rating: 4.9 + name: Fresno Node.js Developer Community description: "

This is a group for node.js developers located in California's Central Valley.

" lon: -119.80000305175781 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/9/9/3/7/highres_440199223.jpeg' - photo_id: 440199223 photo_link: 'http://photos4.meetupstatic.com/photos/event/9/9/3/7/600_440199223.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/9/9/3/7/thumb_440199223.jpeg' - join_mode: open - organizer: - member_id: 186540012 - name: James Snell - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/b/d/a/a/highres_245628554.jpeg' - photo_id: 245628554 - photo_link: 'http://photos3.meetupstatic.com/photos/member/b/d/a/a/member_245628554.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/b/d/a/a/thumb_245628554.jpeg' - members: 173 - name: Fresno Node.js Developer Community - state: CA lat: 36.84000015258789 - who: Node.js Developers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Francisco - timezone: US/Pacific - created: 1432171979000 link: 'http://www.meetup.com/HelloMaker/' - rating: 4.84 + name: 'HelloMaker: Coding & Design Workshops' description: "

Start learning how to build websites and apps with HTML, CSS and JavaScript through hands-on workshops and mentoring. A lot of people learn programming and design on their own, and having someone to help out when you are stuck or just guide in the right direction is crucial. You can start with some basic projects or choose more advanced topics web development. Don't hesitate to use this time to work on your own project and get help from mentors. All backgrounds and skill levels are welcomed!

" lon: -122.44000244140625 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/d/e/c/4/highres_437697028.jpeg' - photo_id: 437697028 photo_link: 'http://photos2.meetupstatic.com/photos/event/d/e/c/4/600_437697028.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/d/e/c/4/thumb_437697028.jpeg' - join_mode: open - organizer: - member_id: 73554122 - name: Ria Carmin - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/a/0/3/8/highres_246341016.jpeg' - photo_id: 246341016 - photo_link: 'http://photos1.meetupstatic.com/photos/member/a/0/3/8/member_246341016.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/a/0/3/8/thumb_246341016.jpeg' - members: 418 - name: 'HelloMaker: Coding & Design Workshops' - state: CA lat: 37.720001220703125 - who: makers - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Fort Wayne - timezone: US/Eastern - created: 1432221349000 link: 'http://www.meetup.com/Fort-Wayne-Ember-JS-Meetup/' - rating: 4.56 + name: Fort Wayne Ember JS Meetup description: This meetup is focused on learning and applying Ember.js to ambitious web apps. lon: -85.12000274658203 - join_mode: open - organizer: - member_id: 187609971 - name: Lee R. Lemon III - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/d/9/d/2/highres_246355762.jpeg' - photo_id: 246355762 - photo_link: 'http://photos1.meetupstatic.com/photos/member/d/9/d/2/member_246355762.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/d/9/d/2/thumb_246355762.jpeg' - members: 49 - name: Fort Wayne Ember JS Meetup - state: IN lat: 41.15999984741211 - who: Emberists - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Franklin - timezone: US/Central - created: 1432257976000 link: 'http://www.meetup.com/franklin-developer-lunch/' - rating: 4.93 + name: 'Franklin Developer Lunch & Learn' description: "

Enjoy lunch? Like to learn? We've infused two of your favorite things with high quality talks about web and mobile development. Join us once a month to break bread with like-minded professionals and grow together.

" lon: -86.88999938964844 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/9/f/f/9/highres_447220953.jpeg' - photo_id: 447220953 photo_link: 'http://photos4.meetupstatic.com/photos/event/9/f/f/9/600_447220953.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/9/f/f/9/thumb_447220953.jpeg' - join_mode: open - organizer: - member_id: 10922936 - name: Michael Leigeber - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/e/7/c/4/highres_101519332.jpeg' - photo_id: 101519332 - photo_link: 'http://photos4.meetupstatic.com/photos/member/e/7/c/4/member_101519332.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/e/7/c/4/thumb_101519332.jpeg' - members: 259 - name: 'Franklin Developer Lunch & Learn' - state: TN lat: 35.91999816894531 - who: Developers - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Lowell - timezone: US/Eastern - created: 1432259774000 link: 'http://www.meetup.com/modern-javascript/' - rating: 4.85 + name: Modern JavaScript description: '

Passionate about JavaScript, or want to learn why others are? Modern JavaScript is a regular meetup of technologists looking to improve their development skills and network with others. We have a flexible agenda. Sometimes we have presentations. Sometimes we get together to learn by hacking something together or using NodeSchool.

' lon: -71.33999633789062 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/5/a/b/6/highres_439043222.jpeg' - photo_id: 439043222 photo_link: 'http://photos1.meetupstatic.com/photos/event/5/a/b/6/600_439043222.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/5/a/b/6/thumb_439043222.jpeg' - join_mode: open - organizer: - member_id: 86478162 - name: Gary J Chamberlain - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/4/3/a/e/highres_246617326.jpeg' - photo_id: 246617326 - photo_link: 'http://photos2.meetupstatic.com/photos/member/4/3/a/e/member_246617326.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/4/3/a/e/thumb_246617326.jpeg' - members: 288 - name: Modern JavaScript - state: MA lat: 42.650001525878906 - who: Web Developers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Portland - timezone: US/Pacific - created: 1432753634000 link: 'http://www.meetup.com/CodeOregon/' - rating: 4.64 - description: >- + name: Code Oregon + description: |-

ABOUT:

- -

Code Oregon is a free online training opportunity for Oregon - residents 18+ to learn to build websites or apps on the Treehouse - platform. Code Oregon is a partnership between WorkSystems, inc., - Treehouse, and WorkSource Oregon. Code Oregon provides Oregonians 18+ - access to coding, training, and job readiness recources. 

- +

Code Oregon is a free online training opportunity for Oregon residents 18+ to learn to build websites or apps on the Treehouse platform. Code Oregon is a partnership between WorkSystems, inc., Treehouse, and WorkSource Oregon. Code Oregon provides Oregonians 18+ access to coding, training, and job readiness recources. 


-

OUR MEETUPS:

- -

Our Meetups will support student learning and engagement by - coordinating Meetups for Code Oregon Study Hall sessions, Mentor - Sessions, Events, and More!

- +

Our Meetups will support student learning and engagement by coordinating Meetups for Code Oregon Study Hall sessions, Mentor Sessions, Events, and More!


-

WHY JOIN THIS MEETUP GROUP?

- -

Code Oregon Meetup Group Members will be able to RSVP for mentor - sessions and other events with limited available space.

- +

Code Oregon Meetup Group Members will be able to RSVP for mentor sessions and other events with limited available space.


-

WHO SHOULD JOIN THIS MEETUP GROUP?

- -

Those interested in learning to build websites or apps should - join the group. Whether you want to become a career coder or just - want to learn to code for fun, you're welcome to join!

- +

Those interested in learning to build websites or apps should join the group. Whether you want to become a career coder or just want to learn to code for fun, you're welcome to join!


-

HOW DO I JOIN CODE OREGON?

- -

If you are and Oregon resident and 18+, you are welcome to - sign up for free at CodeOregon.org! If you are under 18 or - a non-resident, you can sign up as a regular Treehouse - Customer.

+

If you are and Oregon resident and 18+, you are welcome to sign up for free at CodeOregon.org! If you are under 18 or a non-resident, you can sign up as a regular Treehouse Customer.

lon: -122.69000244140625 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/4/4/0/b/highres_445337419.jpeg' - photo_id: 445337419 photo_link: 'http://photos4.meetupstatic.com/photos/event/4/4/0/b/600_445337419.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/4/4/0/b/thumb_445337419.jpeg' - join_mode: open - organizer: - member_id: 24041162 - name: Jenny W - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/c/5/1/4/highres_246530452.jpeg' - photo_id: 246530452 - photo_link: 'http://photos4.meetupstatic.com/photos/member/c/5/1/4/member_246530452.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/c/5/1/4/thumb_246530452.jpeg' - members: 1144 - name: Code Oregon - state: OR lat: 45.5 - who: Students - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Chicago - timezone: US/Central - created: 1432911425000 link: 'http://www.meetup.com/All-Things-Web-Tech/' - rating: 4.75 - description: >- + name: All Things Web Tech + description: |-

Our Goals are:

-

- Learn new technologies and build applications/websites

- -

- Learn from industry experts to understand different aspects of an - application/website build.

- -

- Learn the marketing aspects and technologies available to promote - the newly built or existing application/website

- +

- Learn from industry experts to understand different aspects of an application/website build.

+

- Learn the marketing aspects and technologies available to promote the newly built or existing application/website

- To make all things happen.

lon: -87.66999816894531 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/b/2/d/c/highres_448125788.jpeg' - photo_id: 448125788 photo_link: 'http://photos2.meetupstatic.com/photos/event/b/2/d/c/600_448125788.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/b/2/d/c/thumb_448125788.jpeg' - join_mode: open - organizer: - member_id: 187677653 - name: brian rodriguez - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/a/6/e/1/highres_246582721.jpeg' - photo_id: 246582721 - photo_link: 'http://photos2.meetupstatic.com/photos/member/a/6/e/1/member_246582721.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/a/6/e/1/thumb_246582721.jpeg' - members: 653 - name: All Things Web Tech - state: IL lat: 41.849998474121094 - who: Tech Leaders - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Huntington - timezone: US/Eastern - created: 1433068115000 link: 'http://www.meetup.com/Long-Island-js/' - rating: 5 - description: >- -

This is a Meetup group for developers and programmers of all skill - levels who are interested in learning and discussing JavaScript - together. We cover all things JavaScript, including syntax, frameworks - and libraries. 

- + name: Long Island JavaScript Group + description: |- +

This is a Meetup group for developers and programmers of all skill levels who are interested in learning and discussing JavaScript together. We cover all things JavaScript, including syntax, frameworks and libraries. 


- -

Members are encouraged to demonstrate and share their JavaScript - projects to serve as a learning experience for the group.

+

Members are encouraged to demonstrate and share their JavaScript projects to serve as a learning experience for the group.

lon: -73.41000366210938 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/9/c/e/a/highres_445840170.jpeg' - photo_id: 445840170 photo_link: 'http://photos3.meetupstatic.com/photos/event/9/c/e/a/600_445840170.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/9/c/e/a/thumb_445840170.jpeg' - join_mode: open - organizer: - member_id: 50837582 - name: Justin Wilkerson - members: 96 - name: Long Island JavaScript Group - state: NY lat: 40.869998931884766 - who: JavaScript Coders - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: New York - timezone: US/Eastern - created: 1433270704000 link: 'http://www.meetup.com/InRhythmU/' - rating: 4.5 + name: InRhythm U description: '

Calling all InRhythm-ers! We produce high quality Meetups which successfully bring all of our teams together. Join us once a month for a a combination of new technology education and some fun socializing.

' lon: -73.98999786376953 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/d/3/e/7/highres_440034247.jpeg' - photo_id: 440034247 photo_link: 'http://photos1.meetupstatic.com/photos/event/d/3/e/7/600_440034247.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/d/3/e/7/thumb_440034247.jpeg' - join_mode: approval - organizer: - member_id: 188133319 - name: InRhythm - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/b/1/c/3/highres_246705507.jpeg' - photo_id: 246705507 - photo_link: 'http://photos3.meetupstatic.com/photos/member/b/1/c/3/member_246705507.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/b/1/c/3/thumb_246705507.jpeg' - members: 149 - name: InRhythm U - state: NY lat: 40.75 - who: InRhythmers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Portland - timezone: US/Pacific - created: 1433291864000 link: 'http://www.meetup.com/Enterprise-3-0/' - rating: 5 - description: >- -

This is a group for anyone interested in the new stack for - Enterprise: generally Open Source, Cloud Computing, SaaS. 

- -

These amazing new tools allow fast, agile, and affordable - development of new business apps that beat traditional products from - Microsoft, IBM, Oracle, SAP and their ecosystems. 

- -

Let's meet like-minded people who want to build, invent, design, - buy, and generally takeover traditional IT by storm during this - momentous convergence of exciting new open source and cloud - technology. 

- - - -

http://www.google.com/trends/explore#q=cloud%2C%20ibm%2C%20sap%2C%20oracle&cmpt=q&tz=

- -

Come join us if you get excited reading these words: Open Source, - JavaScript, Web Technology, Mobile Technology, SaaS (Software as - a Service), NoSQL, JavaScript Frameworks, mongoDB, node.js, Hadoop, - DevOps, AWS , Agile Project Management, Scrum, Agile, User Centered - Design, Cloud Computing.

- -

- lon: -122.69000244140625 - join_mode: open - organizer: - member_id: 5450668 - name: Dan - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/d/2/7/0/highres_246713872.jpeg' - photo_id: 246713872 - photo_link: 'http://photos1.meetupstatic.com/photos/member/d/2/7/0/member_246713872.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/d/2/7/0/thumb_246713872.jpeg' - members: 115 name: 'Enterprise 3.0 (cloud, SaaS, open-source takeover of IT)' - state: OR + description: |- +

This is a group for anyone interested in the new stack for Enterprise: generally Open Source, Cloud Computing, SaaS. 

+

These amazing new tools allow fast, agile, and affordable development of new business apps that beat traditional products from Microsoft, IBM, Oracle, SAP and their ecosystems. 

+

Let's meet like-minded people who want to build, invent, design, buy, and generally takeover traditional IT by storm during this momentous convergence of exciting new open source and cloud technology. 

+ +

http://www.google.com/trends/explore#q=cloud%2C%20ibm%2C%20sap%2C%20oracle&cmpt=q&tz=

+

Come join us if you get excited reading these words: Open Source, JavaScript, Web Technology, Mobile Technology, SaaS (Software as a Service), NoSQL, JavaScript Frameworks, mongoDB, node.js, Hadoop, DevOps, AWS , Agile Project Management, Scrum, Agile, User Centered Design, Cloud Computing.

+

+ lon: -122.69000244140625 lat: 45.5 - who: Members - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Cambridge - timezone: US/Eastern - created: 1433352014000 link: 'http://www.meetup.com/Boston-Code-Dojo-Competitive-Programming/' - rating: 5 - description: >- -

This is a group for people that love programming and love competing. - As often as possible, we'll get together and everyone will try to solve - coding challenges that test your knowledge of any of the - following:

- -

- combinatorics
- number theory
- graph theory
- - geometry
- string analysis
- data structures
- network - security
- software explotation

- -

We'll focus on moderate level challenges at first. Everyone will - have time to attempt the challenge, and then we'll discuss our - thoughts, approaches, and solutions as a group. We'll compare execution - speed and memory usage, but conceptual elegance will also be heavily - weighted. Over time, we'll figure out a belts system, or a judging - mechanism, or something, to decide who "wins."

- -

Perfect for someone who is prepping for a technical interview, - someone who likes to compete, or just wants to improve their - programming and reasoning abilities quickly.

+ name: Boston Code Dojo - Competitive Programming + description: |- +

This is a group for people that love programming and love competing. As often as possible, we'll get together and everyone will try to solve coding challenges that test your knowledge of any of the following:

+

- combinatorics
- number theory
- graph theory
- geometry
- string analysis
- data structures
- network security
- software explotation

+

We'll focus on moderate level challenges at first. Everyone will have time to attempt the challenge, and then we'll discuss our thoughts, approaches, and solutions as a group. We'll compare execution speed and memory usage, but conceptual elegance will also be heavily weighted. Over time, we'll figure out a belts system, or a judging mechanism, or something, to decide who "wins."

+

Perfect for someone who is prepping for a technical interview, someone who likes to compete, or just wants to improve their programming and reasoning abilities quickly.

lon: -71.12999725341797 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/3/7/4/a/highres_439034154.jpeg' - photo_id: 439034154 photo_link: 'http://photos2.meetupstatic.com/photos/event/3/7/4/a/600_439034154.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/3/7/4/a/thumb_439034154.jpeg' - join_mode: open - organizer: - member_id: 4831406 - name: Calvin Froedge - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/d/5/8/c/highres_245034668.jpeg' - photo_id: 245034668 - photo_link: 'http://photos4.meetupstatic.com/photos/member/d/5/8/c/member_245034668.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/d/5/8/c/thumb_245034668.jpeg' - members: 305 - name: Boston Code Dojo - Competitive Programming - state: MA lat: 42.38999938964844 - who: Aspiring Software Masters - - utc_offset: -14400000 - country: US - visibility: public_limited + - country: US city: Atlanta - timezone: US/Eastern - created: 1433457262000 link: 'http://www.meetup.com/DigitalCrafts-Learn-To-Code-Atlanta/' - rating: 4.82 - description: >- -

Learning to code? Our Immersive Bootcamp turns beginners into - skilled engineers in 16 weeks and over 640 hours of instruction. -  Look out for our "hack nights", workshops, get-togethers, - information sessions, and other other code-generating events and RSVP - to join in on the fun!

- -

We're always looking to help creative and motivated builders breathe - life into their ideas.  If that's you, be sure to reach out to - hello@digitalcrafts.com, give us a ring at 770-858-5806, or just visit - DigitalCrafts on the - web!

- -

- -

16 Week - Immersive Coding Bootcamp

- -

• Learn Front-end Web Development including HTML, CSS, JavaScript, - and much more. 

- -

• Learn Full-stack Web Development: Javascript, Node.js & - the MEAN Stack, and PHP & the LAMP Stack.

- -

• Option to also enroll in the Mobile App Development - Elective at a reduced rate.

- -

Mobile App - Development Evening Course

- -

•  12-week evening course. Classes take place on Mondays & - Wednesdays from 6:30pm-9:30pm at the Atlanta Tech Village.

- -


- -

Thanks again for your interest, we look forward to chatting! -

+ name: 'DigitalCrafts | Learn to Code in Atlanta' + description: |- +

Learning to code? Our Immersive Bootcamp turns beginners into skilled engineers in 16 weeks and over 640 hours of instruction.  Look out for our "hack nights", workshops, get-togethers, information sessions, and other other code-generating events and RSVP to join in on the fun!

+

We're always looking to help creative and motivated builders breathe life into their ideas.  If that's you, be sure to reach out to hello@digitalcrafts.com, give us a ring at 770-858-5806, or just visit DigitalCrafts on the web!

+

+

16 Week Immersive Coding Bootcamp

+

• Learn Front-end Web Development including HTML, CSS, JavaScript, and much more. 

+

• Learn Full-stack Web Development: Javascript, Node.js & the MEAN Stack, and PHP & the LAMP Stack.

+

• Option to also enroll in the rotating elective program covering either User Experience (UX) Design, Native App Development, or Cross Platform Mobile App Development.

+

Thanks again for your interest, we look forward to chatting! 

lon: -84.38999938964844 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/5/c/8/4/highres_447623684.jpeg' - photo_id: 447623684 photo_link: 'http://photos4.meetupstatic.com/photos/event/5/c/8/4/600_447623684.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/5/c/8/4/thumb_447623684.jpeg' - join_mode: open - organizer: - member_id: 185717083 - name: Max M. - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/3/1/7/9/highres_246792665.jpeg' - photo_id: 246792665 - photo_link: 'http://photos1.meetupstatic.com/photos/member/3/1/7/9/member_246792665.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/3/1/7/9/thumb_246792665.jpeg' - members: 886 - name: 'DigitalCrafts | Learn to Code in Atlanta' - state: GA lat: 33.83000183105469 - who: Builders - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Los Angeles - timezone: US/Pacific - created: 1433468429000 link: 'http://www.meetup.com/build-with-code/' - rating: 4.97 - description: >- -

Build with Code hosts free weekly JavaScript and Software - Engineering workshops, lectures and pair-programming sessions. - Welcome!

- -

Learn and build with the hard parts of JavaScript every Thursday - 6:30pm-8:00pm through intuitive lectures and pair-programming

- -

The reason people who only watch programming videos don't become - programmers is because they're not programming. Come join other - aspiring engineers and start building!

- -

In JavaScript the Hard Parts, we cover callbacks, higher-order - functions (functional programming with JavaScript), object-oriented - programming with JavaScript, closure, scope and execution context

- -

Hosted at Codesmith every week on - Thursdays 6:30pm-8:00pm and taught by Codesmith CTO Will Sentance

- + name: Build With Code - Los Angeles + description: |- +

Build with Code hosts free weekly JavaScript and Software Engineering workshops, lectures and pair-programming sessions. Welcome!

+

Learn and build with the hard parts of JavaScript every Thursday 6:30pm-8:00pm through intuitive lectures and pair-programming

+

The reason people who only watch programming videos don't become programmers is because they're not programming. Come join other aspiring engineers and start building!

+

In JavaScript the Hard Parts, we cover callbacks, higher-order functions (functional programming with JavaScript), object-oriented programming with JavaScript, closure, scope and execution context

+

Hosted at Codesmith every week on Thursdays 6:30pm-8:00pm and taught by Codesmith CTO Will Sentance

Price: Always free

- -

Codesmith (Codesmith

- -

Codesmith teaches full stack software engineering in JavaScript - through a 12 week immersive program. 

- -

We teach computer science, object-oriented JavaScript, React, - Angular, Node, distributed systems and mobile development so our grads - can secure mid-to-senior level software engineering positions or launch - their own ventures

- -

Apply to the program at codesmith.io/apply. For further - questions email admissions@codesmith.io

- -

- +

Codesmith (Codesmith

+

Codesmith teaches full stack software engineering in JavaScript through a 12 week immersive program. 

+

We teach computer science, object-oriented JavaScript, React, Angular, Node, distributed systems and mobile development so our grads can secure mid-to-senior level software engineering positions or launch their own ventures

+

Apply to the program at codesmith.io/apply. For further questions email admissions@codesmith.io

+

---

- -

JavaScript the Hard Parts is a free workshop series in Los Angeles - designed to teach pair programming and essential programming in - JavaScript - including callbacks, higher order functions (like how to - understand map, reduce, filter and foreach), closure, object-oriented - programming in JavaScript and other topics

- -

In Codesmith Information sessions, attendees meet with current - students and graduates to discuss what it's like to attend Codesmith, - what characteristics create the best coding bootcamp in Los Angeles, - how to get into Codesmith and how to succeed in the Codesmith - interview

+

JavaScript the Hard Parts is a free workshop series in Los Angeles designed to teach pair programming and essential programming in JavaScript - including callbacks, higher order functions (like how to understand map, reduce, filter and foreach), closure, object-oriented programming in JavaScript and other topics

+

In Codesmith Information sessions, attendees meet with current students and graduates to discuss what it's like to attend Codesmith, what characteristics create the best coding bootcamp in Los Angeles, how to get into Codesmith and how to succeed in the Codesmith interview

lon: -118.43000030517578 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/1/4/d/7/highres_440045335.jpeg' - photo_id: 440045335 photo_link: 'http://photos4.meetupstatic.com/photos/event/1/4/d/7/600_440045335.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/1/4/d/7/thumb_440045335.jpeg' - join_mode: open - organizer: - member_id: 28874272 - name: Will Sentance - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/c/f/6/9/highres_252953097.jpeg' - photo_id: 252953097 - photo_link: 'http://photos4.meetupstatic.com/photos/member/c/f/6/9/member_252953097.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/c/f/6/9/thumb_252953097.jpeg' - members: 1502 - name: Build With Code - Los Angeles - state: CA lat: 33.9900016784668 - who: Engineers - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Tampa - timezone: US/Eastern - created: 1433799025000 link: 'http://www.meetup.com/Ybor-Tech/' - rating: 5 - description: >- -

The Ybor Tech Association exists to grow, encourage and support the - tech community in Ybor City.

- -

OpenHack + Ybor City = OpenHack Ybor OpenHack is a meetup with - a simple purpose: Code together, on anything. OpenHack works by hosting - a meetup in your city that gets programmers of any experience level - together to code. Find out more here: http://openhack.github.io/ Why Ybor? There's lots - of great meetups going on across the Tampa/St. Pete area. I love the - relaxed feel and organized chaos of OpenHack and Ybor just feels like - the perfect place for this kind of event.

+ name: Ybor Tech + description: |- +

The Ybor Tech Association exists to grow, encourage and support the tech community in Ybor City.

+

OpenHack + Ybor City = OpenHack Ybor OpenHack is a meetup with a simple purpose: Code together, on anything. OpenHack works by hosting a meetup in your city that gets programmers of any experience level together to code. Find out more here: http://openhack.github.io/ Why Ybor? There's lots of great meetups going on across the Tampa/St. Pete area. I love the relaxed feel and organized chaos of OpenHack and Ybor just feels like the perfect place for this kind of event.

lon: -82.33999633789062 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/d/d/f/f/highres_446216831.jpeg' - photo_id: 446216831 photo_link: 'http://photos3.meetupstatic.com/photos/event/d/d/f/f/600_446216831.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/d/d/f/f/thumb_446216831.jpeg' - join_mode: open - organizer: - member_id: 14151718 - name: Tony Winn - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/9/b/7/a/highres_52719802.jpeg' - photo_id: 52719802 - photo_link: 'http://photos1.meetupstatic.com/photos/member/9/b/7/a/member_52719802.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/9/b/7/a/thumb_52719802.jpeg' - members: 342 - name: Ybor Tech - state: FL lat: 27.979999542236328 - who: Techies - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Francisco - timezone: US/Pacific - created: 1434402125000 link: 'http://www.meetup.com/OpenTable-SF-Engineering/' - rating: 5 - description: >- -

OpenTable hosts regular tech talks and meetups at our San Francisco - HQ.  With over 200 Engineers worldwide, OpenTable has a lot to - offer to the community and we want to share.  Topics will likely - center on Web Development, Mobile Apps, Data Science and Continuous - Delivery.  Our tech stack is mostly centered on Node.js, Java and - C# but we employ polyglots and you'll hear more and more about Scala, - Go and Python to name a few.  And we love tools like Mesos, - Docker, Puppet and Chef (yes, we use both).  So come, eat, drink, - socialize and best of all, talk tech with others in the same - field.

- -

Company BlogTech Blog | Careers | Brand | Payments

+ name: OpenTable Tech Talks + description: |- +

OpenTable hosts regular tech talks and meetups at our San Francisco HQ.  With over 200 Engineers worldwide, OpenTable has a lot to offer to the community and we want to share.  Topics will likely center on Web Development, Mobile Apps, Data Science and Continuous Delivery.  Our tech stack is mostly centered on Node.js, Java and C# but we employ polyglots and you'll hear more and more about Scala, Go and Python to name a few.  And we love tools like Mesos, Docker, Puppet and Chef (yes, we use both).  So come, eat, drink, socialize and best of all, talk tech with others in the same field.

+

Company BlogTech Blog | Careers | Brand | Payments

lon: -122.4000015258789 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/7/1/4/9/highres_439229001.jpeg' - photo_id: 439229001 photo_link: 'http://photos1.meetupstatic.com/photos/event/7/1/4/9/600_439229001.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/7/1/4/9/thumb_439229001.jpeg' - join_mode: open - organizer: - member_id: 184984060 - name: 'OpenTable, Inc.' - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/a/9/a/5/highres_244303429.jpeg' - photo_id: 244303429 - photo_link: 'http://photos3.meetupstatic.com/photos/member/a/9/a/5/member_244303429.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/a/9/a/5/thumb_244303429.jpeg' - members: 504 - name: OpenTable Tech Talks - state: CA lat: 37.790000915527344 - who: Techies - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: New York - timezone: US/Eastern - created: 1435938048000 link: 'http://www.meetup.com/Microservices-Day-NYC-July-13-2015/' + name: 'Microservices Day NYC - July 13, 2015' description: |- What is Microservices Day? Microservices Day is a conference by the enterprise, for the enterprise. It brings together people from organizations that have adopted (or are planning to adopt) a microservices approach to running their business and focuses on the issues that companies face. It gives participants a forum to discuss and share their experiences with microservices through advice, tips and tricks as well as driving forward both the technology and business community. Come join us at The Altman Building, 135 West 18th Street in New York on July 13th! The event will consist of a range of talks from industry leaders who have deep experience building and operating microservices systems at scale. Panel discussions and active audience participation will be a further part of the event, as the implications of enabling business to innovate at a faster pace than ever before will be a key discussion point. Come join the early adopters at the dawn of a new era in business computing! lon: -73.98999786376953 - join_mode: open - organizer: - member_id: 189429713 - name: Tammy Contreraz - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/2/2/e/7/highres_247568935.jpeg' - photo_id: 247568935 - photo_link: 'http://photos1.meetupstatic.com/photos/member/2/2/e/7/member_247568935.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/2/2/e/7/thumb_247568935.jpeg' - members: 50 - name: 'Microservices Day NYC - July 13, 2015' - state: NY lat: 40.75 - who: Microservices Adopters - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Atlanta - timezone: US/Eastern - created: 1436290637000 link: 'http://www.meetup.com/Atlanta-IBM-Bluemix-Meetup/' + name: Atlanta IBM Bluemix™ Meetup description: '

IBM Bluemix™ is a new cloud platform as a service (PaaS) developed by IBM. It supports several programming languages and services as well as integrated DevOps to build, run, deploy and manage applications on the cloud. Bluemix™ is based on Cloud Foundry open technology and runs on SoftLayer infrastructure. This group serves to help new developers and system operators understand IBM Bluemix™ and exchange ideas on how to best implement these services. [Not Affiliated with IBM].

' lon: -84.38999938964844 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/a/c/7/0/highres_439604144.jpeg' - photo_id: 439604144 photo_link: 'http://photos2.meetupstatic.com/photos/event/a/c/7/0/600_439604144.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/a/c/7/0/thumb_439604144.jpeg' - join_mode: open - organizer: - member_id: 191579518 - name: Thierry Dupard - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/1/b/9/2/highres_251167058.jpeg' - photo_id: 251167058 - photo_link: 'http://photos1.meetupstatic.com/photos/member/1/b/9/2/member_251167058.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/1/b/9/2/thumb_251167058.jpeg' - members: 42 - name: Atlanta IBM Bluemix™ Meetup - state: GA lat: 33.83000183105469 - who: Mixers - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: New York - timezone: US/Eastern - created: 1436292655000 link: 'http://www.meetup.com/New-York-JavaScript-Study-Group/' - rating: 4.79 + name: New York JavaScript Study Group description: 'The NY Javascript Study Group, in close co-operation with the Python Study Group, is a peer-driven forum for Javascript users to learn, study, and interact as a community to solve their individual programming tasks. Users of all skill levels are welcome and encouraged to attend.' lon: -74 - join_mode: open - organizer: - member_id: 71091892 - name: Leif Droms - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/d/f/3/5/highres_245637141.jpeg' - photo_id: 245637141 - photo_link: 'http://photos1.meetupstatic.com/photos/member/d/f/3/5/member_245637141.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/d/f/3/5/thumb_245637141.jpeg' - members: 648 - name: New York JavaScript Study Group - state: NY lat: 40.720001220703125 - who: Javascript Users - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Los Angeles - timezone: US/Pacific - created: 1436997221000 link: 'http://www.meetup.com/JavaScript-Workshops-LA/' - rating: 4.62 + name: JavaScript Workshops LA description: '

This will be a series of JavaScript Workshops for all levels of developers from beginners to advanced developers. Our courses will offer a good introduction for front end developers to learn best practices for advanced dynamic web pages up to full scale JavaScript web applications.

' lon: -118.25 - join_mode: open - organizer: - member_id: 8823980 - name: noelsaw - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/5/1/8/e/highres_6920878.jpeg' - photo_id: 6920878 - photo_link: 'http://photos1.meetupstatic.com/photos/member/5/1/8/e/member_6920878.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/5/1/8/e/thumb_6920878.jpeg' - members: 679 - name: JavaScript Workshops LA - state: CA lat: 34.040000915527344 - who: Members - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Seattle - timezone: US/Pacific - created: 1437016655000 link: 'http://www.meetup.com/free-code-camp-sea/' - rating: 4.69 + name: Free Code Camp Seattle description: '

A community of Seattle campers learning how to program at www.freecodecamp.com. All skill levels are welcome! 

' lon: -122.37999725341797 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/5/b/0/f/highres_439823311.jpeg' - photo_id: 439823311 photo_link: 'http://photos3.meetupstatic.com/photos/event/5/b/0/f/600_439823311.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/5/b/0/f/thumb_439823311.jpeg' - join_mode: open - organizer: - member_id: 190503051 - name: Clinton - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/e/2/e/8/highres_248278088.jpeg' - photo_id: 248278088 - photo_link: 'http://photos3.meetupstatic.com/photos/member/e/2/e/8/member_248278088.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/e/2/e/8/thumb_248278088.jpeg' - members: 343 - name: Free Code Camp Seattle - state: WA lat: 47.66999816894531 - who: Campers - - utc_offset: -14400000 - country: CA - visibility: public + - country: CA city: Burlington - timezone: Canada/Eastern - created: 1438207654000 link: 'http://www.meetup.com/haltonjs/' - rating: 5 + name: HaltonJS description: '

HaltonJS is a monthly event that will occur on the last Thursday @ 7:30pm - 9:30PM of every month starting in September. Location TBD. This is a meetup group for anybody that wants to enhance their knowledge in JavaScript and web technologies.

' lon: -79.7699966430664 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/e/6/1/9/highres_441058905.jpeg' - photo_id: 441058905 photo_link: 'http://photos3.meetupstatic.com/photos/event/e/6/1/9/600_441058905.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/e/6/1/9/thumb_441058905.jpeg' - join_mode: open - organizer: - member_id: 69522722 - name: Kevin Youkhana - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/2/3/0/6/highres_248888966.jpeg' - photo_id: 248888966 - photo_link: 'http://photos2.meetupstatic.com/photos/member/2/3/0/6/member_248888966.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/2/3/0/6/thumb_248888966.jpeg' - members: 56 - name: HaltonJS - state: 'ON' lat: 43.369998931884766 - who: Members - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Cambridge - timezone: US/Eastern - created: 1438395274000 link: 'http://www.meetup.com/Cambridge-Developer-Entrepreneur-Networking-Full-Stack/' + name: Cambridge Developer Entrepreneur Networking Full Stack description: '

This is a developer focused networking group for people who are looking to join together and create a startup.
Developers with experience in Node.js, JavaScript Frameworks, mobile, web technology, Redis and overall knowledgable across the web stack should join.

' lon: -71.12999725341797 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/9/b/e/9/highres_440379913.jpeg' - photo_id: 440379913 photo_link: 'http://photos1.meetupstatic.com/photos/event/9/b/e/9/600_440379913.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/9/b/e/9/thumb_440379913.jpeg' - join_mode: open - organizer: - member_id: 13612483 - name: Aaron K - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/8/1/0/8/highres_28173032.jpeg' - photo_id: 28173032 - photo_link: 'http://photos3.meetupstatic.com/photos/member/8/1/0/8/member_28173032.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/8/1/0/8/thumb_28173032.jpeg' - members: 503 - name: Cambridge Developer Entrepreneur Networking Full Stack - state: MA lat: 42.38999938964844 - who: Members - - utc_offset: -18000000 - country: US - visibility: public - city: Palm Bay - timezone: US/Eastern - created: 1438588449000 - link: 'http://www.meetup.com/meanio/' - description: '

MEAN.io is a revolutionary full web stack that abstracts away the difficulties of dealing with the latest and greatest web technologies allowing you to focus on building your applications -- one component at a time. 

' - lon: -80.5999984741211 - join_mode: open - organizer: - member_id: 152246522 - name: Brock McKean - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/5/4/2/f/highres_248481551.jpeg' - photo_id: 248481551 - photo_link: 'http://photos1.meetupstatic.com/photos/member/5/4/2/f/member_248481551.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/5/4/2/f/thumb_248481551.jpeg' - members: 13 - name: MEAN.io - Space Coast - state: FL - lat: 28.030000686645508 - who: MEAN Ninjas - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Newport Beach - timezone: US/Pacific - created: 1438798152000 link: 'http://www.meetup.com/IPAs-and-APIs/' - rating: 5 + name: "IPA's and API's" description: '

Craft Beer and Technology.
Learn about Applied Programming Interfaces, Javascript, and Nodejs... all while enjoying the best craft beer in Southern California

' lon: -117.87000274658203 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/6/f/c/b/highres_440668619.jpeg' - photo_id: 440668619 photo_link: 'http://photos1.meetupstatic.com/photos/event/6/f/c/b/600_440668619.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/6/f/c/b/thumb_440668619.jpeg' - join_mode: open - organizer: - member_id: 184933824 - name: Jon Paul - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/1/3/a/highres_249709466.jpeg' - photo_id: 249709466 - photo_link: 'http://photos3.meetupstatic.com/photos/member/c/1/3/a/member_249709466.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/1/3/a/thumb_249709466.jpeg' - members: 242 - name: "IPA's and API's" - state: CA lat: 33.630001068115234 - who: Members - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Francisco - timezone: US/Pacific - created: 1438818932000 link: 'http://www.meetup.com/Bay-Area-Electron-User-Group/' - rating: 5 + name: Bay Area Electron User Group description: '

Discussions about building cross platform native applications using JavaScript, CSS, and HTML with Electron.

' lon: -122.41999816894531 - join_mode: open - organizer: - member_id: 190935830 - name: Kevin Sawicki - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/b/6/d/1/highres_248566801.jpeg' - photo_id: 248566801 - photo_link: 'http://photos1.meetupstatic.com/photos/member/b/6/d/1/member_248566801.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/b/6/d/1/thumb_248566801.jpeg' - members: 256 - name: Bay Area Electron User Group - state: CA lat: 37.779998779296875 - who: Members - - utc_offset: -21600000 - country: US - visibility: public + - country: US city: Denver - timezone: US/Mountain - created: 1438891266000 link: 'http://www.meetup.com/Denver-Cordova-Ionic-Meetup/' - rating: 5 + name: Denver Cordova/Ionic Meetup description: '

This meetup is for AngularJS developers who want to learn more about building hybrid mobile applications using HTML5, CSS, and JavaScript (Angular). We will be covering techniques for developing mobile applications including hands on sessions to get you started.

' lon: -105.16000366210938 - join_mode: open - organizer: - member_id: 153950592 - name: Jesse Sanders - photo: - photo_id: 207774372 - photo_link: 'http://photos1.meetupstatic.com/photos/member/d/4/6/4/member_207774372.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/d/4/6/4/thumb_207774372.jpeg' - members: 107 - name: Denver Cordova/Ionic Meetup - state: CO lat: 39.70000076293945 - who: Members - - utc_offset: -28800000 - country: US - visibility: public + - country: US city: Santa Monica - timezone: US/Pacific - created: 1439313931000 - link: 'http://www.meetup.com/Los-Angeles-ReactJS-User-Group/' - rating: 4.44 - description: "ReactJS is one of the many modern JS technology that has fundamentally changed the way we create front end application. Let's get together, share our best practices, and progress this technology forward. Most important of all, let's all help build a strong community of tech enthusiast in LA" + link: 'http://www.meetup.com/ReactLA-User-Group/' + name: ReactLA User Group + description: "

ReactJS is one of the many modern JS technology that has fundamentally changed the way we create front end application. Let's get together, share our best practices, and progress this technology forward. Most important of all, let's all help build a strong community of tech enthusiast in LA

" lon: -118.5 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/d/9/1/1/highres_442555569.jpeg' - photo_id: 442555569 photo_link: 'http://photos2.meetupstatic.com/photos/event/d/9/1/1/600_442555569.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/d/9/1/1/thumb_442555569.jpeg' - join_mode: open - organizer: - member_id: 3476970 - name: jon lau - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/6/b/7/5/highres_248727509.jpeg' - photo_id: 248727509 - photo_link: 'http://photos2.meetupstatic.com/photos/member/6/b/7/5/member_248727509.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/6/b/7/5/thumb_248727509.jpeg' - members: 213 - name: Los Angeles ReactJS User Group - state: CA lat: 34.02000045776367 - who: Reactor - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: New York - timezone: US/Eastern - created: 1439390889000 link: 'http://www.meetup.com/NYC-Women-Who-Go/' - rating: 5 - description: >- -

This is the New York City Chapter of Women Who Go: http://www.meetup.com/Women-Who-Go/ This - group is for you if: 1. You identify as a woman, publicly or privately. - 2. You have some interest in the Go programming language, or - programming in general.

- -

- + name: NYC Women Who Go + description: |- +

This is the New York City Chapter of Women Who Go: http://www.meetup.com/Women-Who-Go/ This group is for you if: 1. You identify as a woman, publicly or privately. 2. You have some interest in the Go programming language, or programming in general.

+


lon: -73.98999786376953 - join_mode: open - organizer: - member_id: 59514462 - name: Carmen Andoh - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/9/1/1/a/highres_242317146.jpeg' - photo_id: 242317146 - photo_link: 'http://photos4.meetupstatic.com/photos/member/9/1/1/a/member_242317146.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/9/1/1/a/thumb_242317146.jpeg' - members: 129 - name: NYC Women Who Go - state: NY lat: 40.75 - who: Gophers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Diego - timezone: US/Pacific - created: 1440193494000 link: 'http://www.meetup.com/SD-Women-Who-Go/' - description: >- -

This is the San Diego County Chapter of Women Who Go: http://www.meetup.com/Women-Who-Go/ This group is - for you if: 1. You identify as a woman, publicly or privately. 2. You - have some interest in the Go programming language, or programming in - general.

- -

We tweet from http://twitter.com/womenwhogo_sd

- -

We also hangout on Slack, come chat with us over on the #general or - #sandiego channel. Invite link: http://bit.ly/wwg-slack

- + name: SD Women Who Go + description: |- +

This is the San Diego County Chapter of Women Who Go: http://www.meetup.com/Women-Who-Go/ This group is for you if: 1. You identify as a woman, publicly or privately. 2. You have some interest in the Go programming language, or programming in general.

+

We tweet from http://twitter.com/womenwhogo_sd

+

We also hangout on Slack, come chat with us over on the #general or #sandiego channel. Invite link: http://bit.ly/wwg-slack


-


lon: -117.16999816894531 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/c/0/d/0/highres_441469360.jpeg' - photo_id: 441469360 photo_link: 'http://photos4.meetupstatic.com/photos/event/c/0/d/0/600_441469360.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/c/0/d/0/thumb_441469360.jpeg' - join_mode: approval - organizer: - member_id: 9655015 - name: Carlisia Campos - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/7/1/f/e/highres_63029182.jpeg' - photo_id: 63029182 - photo_link: 'http://photos4.meetupstatic.com/photos/member/7/1/f/e/member_63029182.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/7/1/f/e/thumb_63029182.jpeg' - members: 1 - name: SD Women Who Go - state: CA lat: 32.720001220703125 - who: Gophers - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Manchester - timezone: US/Eastern - created: 1440346739000 link: 'http://www.meetup.com/OpenSourceNH/' - rating: 5 - description: >- -

Open Source NH is a networking and learning resource for open source - software developers in NH. This group is Programming Language, licence, - OS, and text editor agnostic. Meaning the "what" is more important than - the "how" in regards to joining the group. That is to say the group is - generally open to those who develop code they release to the public. - The group is also open to those who are new to programming and looking - opportunities to learn.

- -

Our Meetings are normally either social (find help, get help) or - hands on (workshop or group project) maybe a mix of both.

- -

The regular "Find help, get help" meeting format is a bit different - but simple. Members suggest issues they are dealing with or impending - interest on the meet-up event page. Depending on what is appropriate, - the meeting may break out into separate groups for individual topics or - just have a full group discussion. The main goal is having the - opportunity to get new perspective, with the recognition that solutions - or complete understanding may still be hard to come by. As a default in - the absence of topics or being involved in one, the meeting is - social/networking. Workshops or group projects may come about based on - member interest.

+ name: Open Source NH + description: |- +

Open Source NH is a networking and learning resource for open source software developers in NH. This group is Programming Language, licence, OS, and text editor agnostic. Meaning the "what" is more important than the "how" in regards to joining the group. That is to say the group is generally open to those who develop code they release to the public. The group is also open to those who are new to programming and looking opportunities to learn.

+

Our Meetings are normally either social (find help, get help) or hands on (workshop or group project) maybe a mix of both.

+

The regular "Find help, get help" meeting format is a bit different but simple. Members suggest issues they are dealing with or impending interest on the meet-up event page. Depending on what is appropriate, the meeting may break out into separate groups for individual topics or just have a full group discussion. The main goal is having the opportunity to get new perspective, with the recognition that solutions or complete understanding may still be hard to come by. As a default in the absence of topics or being involved in one, the meeting is social/networking. Workshops or group projects may come about based on member interest.

lon: -71.47000122070312 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/5/8/e/f/highres_441262767.jpeg' - photo_id: 441262767 photo_link: 'http://photos1.meetupstatic.com/photos/event/5/8/e/f/600_441262767.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/5/8/e/f/thumb_441262767.jpeg' - join_mode: open - organizer: - member_id: 57166902 - name: Paul Beaudet - photo: - photo_id: 175173282 - photo_link: 'http://photos4.meetupstatic.com/photos/member/8/2/0/2/member_175173282.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/8/2/0/2/thumb_175173282.jpeg' - members: 146 - name: Open Source NH - state: NH lat: 42.9900016784668 - who: programmers - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Greenville - timezone: US/Eastern - created: 1440539219000 link: 'http://www.meetup.com/NodeGreenville/' - rating: 5 - description: >- -

We are a group of developers in Greenville, SC who are excited about - working with Node.js.  We will meet weekly on Wednesdays. The - second Wednesday of the month will feature three 20-minute - presentations.  All other meetups are "working groups," so bring - your project and get help from other developers in the community.

- -

If you'd like to know more about node core, running local build - tools like bower, or hosting your production site on express, come join - us.

- lon: -82.4000015258789 - join_mode: open - organizer: - member_id: 8756702 - name: Brent - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/1/a/4/4/highres_253086724.jpeg' - photo_id: 253086724 - photo_link: 'http://photos1.meetupstatic.com/photos/member/1/a/4/4/member_253086724.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/1/a/4/4/thumb_253086724.jpeg' - members: 95 name: NodeGreenville - state: SC + description: |- +

We are a group of developers in Greenville, SC who are excited about working with Node.js.  We will meet weekly on Wednesdays. The second Wednesday of the month will feature three 20-minute presentations.  All other meetups are "working groups," so bring your project and get help from other developers in the community.

+

If you'd like to know more about node core, running local build tools like bower, or hosting your production site on express, come join us.

+ lon: -82.4000015258789 lat: 34.900001525878906 - who: Developers - - utc_offset: -25200000 - country: US - visibility: public - city: American Fork - timezone: US/Mountain - created: 1440649604000 - link: 'http://www.meetup.com/Universal-JavaScript/' - description: "

Come discuss building all types of JavaScript applications. Babel/ES2015, Node/io.js, React, lodash, RxJS, PhoneGap, GitHub Electron, Couchbase views, etc. From mobile apps to distributed microservices. JavaScript is doing it all. Let's share what we're learning.

" - lon: -111.56999969482422 - group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/a/f/9/3/highres_441344947.jpeg' - photo_id: 441344947 - photo_link: 'http://photos3.meetupstatic.com/photos/event/a/f/9/3/600_441344947.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/a/f/9/3/thumb_441344947.jpeg' - join_mode: open - organizer: - member_id: 191876168 - name: Daniel Bushman - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/d/8/c/d/highres_249175501.jpeg' - photo_id: 249175501 - photo_link: 'http://photos3.meetupstatic.com/photos/member/d/8/c/d/member_249175501.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/d/8/c/d/thumb_249175501.jpeg' - members: 45 - name: Universal JavaScript - state: UT - lat: 40.41999816894531 - who: Coders - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Dallas - timezone: US/Central - created: 1440704513000 link: 'http://www.meetup.com/DFW-Front-end-development/' - rating: 4.35 + name: DFW Front end development description: '

Meet other front end developers to share your knowledge and discuss frameworks, such as AngularJS and front end ecosystems toolsets like Bower, npm, gulp and more. All skill-levels, platform backgrounds and languages welcome.

' lon: -96.80000305175781 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/5/c/2/1/highres_442823585.jpeg' - photo_id: 442823585 photo_link: 'http://photos4.meetupstatic.com/photos/event/5/c/2/1/600_442823585.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/5/c/2/1/thumb_442823585.jpeg' - join_mode: open - organizer: - member_id: 53038832 - name: Unni - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/8/6/b/9/highres_249694489.jpeg' - photo_id: 249694489 - photo_link: 'http://photos2.meetupstatic.com/photos/member/8/6/b/9/member_249694489.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/8/6/b/9/thumb_249694489.jpeg' - members: 500 - name: DFW Front end development - state: TX lat: 32.790000915527344 - who: FEDs - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Austin - timezone: US/Central - created: 1440750253000 link: 'http://www.meetup.com/Austin-ElectronJs-Meetup/' - description: >- -

All things ElectronJs and writing cross-platform, desktop apps using - web dev technologies! Exciting times!

- -

I'd like this meetup group to grow in terms of gradually digging - deeper and deeper into developing cross-platform, desktop apps using - ElectronJs--NodeJs, Chromium, and other web technologies. I expect - great things from our community and hope I can provide the same for us - all.

- -

Not sure what ElectronJs is? Think web - development in NodeJs, but for desktop apps. -  We'll get into the details here.  So, please come join us! -  There are many production-grade, ElectronJs apps out there. -  Best example is Atom, the - text editor by GitHub that is now a competitor to Sublime Text.

- + name: Austin ElectronJs Meetup + description: |- +

All things ElectronJs and writing cross-platform, desktop apps using web dev technologies! Exciting times!

+

I'd like this meetup group to grow in terms of gradually digging deeper and deeper into developing cross-platform, desktop apps using ElectronJs--NodeJs, Chromium, and other web technologies. I expect great things from our community and hope I can provide the same for us all.

+

Not sure what ElectronJs is? Think web development in NodeJs, but for desktop apps.  We'll get into the details here.  So, please come join us!  There are many production-grade, ElectronJs apps out there.  Best example is Atom, the text editor by GitHub that is now a competitor to Sublime Text.


lon: -97.73999786376953 - join_mode: open - organizer: - member_id: 148500162 - name: Monico A. Moreno - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/7/9/b/a/highres_204871162.jpeg' - photo_id: 204871162 - photo_link: 'http://photos2.meetupstatic.com/photos/member/7/9/b/a/member_204871162.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/7/9/b/a/thumb_204871162.jpeg' - members: 29 - name: Austin ElectronJs Meetup - state: TX lat: 30.270000457763672 - who: 'Austin Ions!' - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Orlando - timezone: US/Eastern - created: 1440774867000 link: 'http://www.meetup.com/Free-Code-Camp-Orlando/' - rating: 5 + name: 'Free Code Camp - Orlando, FL' description: '

A community of Orlando Free Code Campers learning how to program at www.freecodecamp.com. All skill levels are welcome!

' lon: -81.16999816894531 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/4/3/2/9/highres_441377193.jpeg' - photo_id: 441377193 photo_link: 'http://photos1.meetupstatic.com/photos/event/4/3/2/9/600_441377193.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/4/3/2/9/thumb_441377193.jpeg' - join_mode: open - organizer: - member_id: 8545266 - name: Mike Elliott - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/9/9/3/6/highres_249219222.jpeg' - photo_id: 249219222 - photo_link: 'http://photos2.meetupstatic.com/photos/member/9/9/3/6/member_249219222.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/9/9/3/6/thumb_249219222.jpeg' - members: 81 - name: 'Free Code Camp - Orlando, FL' - state: FL lat: 28.399999618530273 - who: Campers - - utc_offset: -21600000 - country: US - visibility: public + - country: US city: Boulder - timezone: US/Mountain - created: 1441039130000 link: 'http://www.meetup.com/CodeCraftSchool/' - rating: 5 + name: 'CodeCraft School & Web Development Community' description: "

CodeCraft School is a new coding bootcamp in Boulder, Colorado that leverages Boulder Digital Arts' decade of experience training digital professionals. We offer a 10-week Full-Stack JavaScript Web Development bootcamp to get you started as a junior developer.\_

\n

CodeCraft School will be hosting open houses periodically throughout the year and we wanted to invite the meetup community to join us. We will be having interactive discussions on topics ranging from HTML, CSS, and advanced topics like Angular.js. Everyone is invited from professionals coders to those looking to learn more about programming and everyone in between.\_

\n

CodeCraft School's bootcamp is more than just learning to code. Our entire team is focused on empowering and transforming your future with world-class instruction, small class sizes, one-on-one attention, and industry connections that match your goals. As an extra benefit for our students, we offer free registration to all related workshops at Boulder Digital Arts that can help you prepare or fill in gaps in your new skills.

" lon: -105.20999908447266 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/4/7/4/8/highres_441618248.jpeg' - photo_id: 441618248 photo_link: 'http://photos3.meetupstatic.com/photos/event/4/7/4/8/600_441618248.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/4/7/4/8/thumb_441618248.jpeg' - join_mode: open - organizer: - member_id: 191206244 - name: CodeCraft School of Technology - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/d/5/f/9/highres_249414777.jpeg' - photo_id: 249414777 - photo_link: 'http://photos3.meetupstatic.com/photos/member/d/5/f/9/member_249414777.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/d/5/f/9/thumb_249414777.jpeg' - members: 149 - name: 'CodeCraft School & Web Development Community' - state: CO lat: 40.04999923706055 - who: CodeCrafters - - utc_offset: -21600000 - country: US - visibility: public - city: Riverton - timezone: US/Mountain - created: 1441079290000 - link: 'http://www.meetup.com/Utah-JavaScript-Game-Night/' - description: 'The Utah JavaScript Game Night is about getting together with similarly minded folks, playing games, socializing and having fun. We will be playing all kinds of board games, card games, party games, whatever floats your boat. We’ll definitely have Dominion, Legendary, and for those who possibly want to make bitter enemies, Settlers of Catan. Plus lots more. The game library literally has HUNDREDS of games to choose from. No dinner will be served, but some light snacks will be available. Spouses and significant others are invited. Please contact us if your company is interested in sponsoring.' - lon: -111.95999908447266 - join_mode: open - organizer: - member_id: 106617102 - name: Bret Little - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/4/f/b/a/highres_247700410.jpeg' - photo_id: 247700410 - photo_link: 'http://photos2.meetupstatic.com/photos/member/4/f/b/a/member_247700410.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/4/f/b/a/thumb_247700410.jpeg' - members: 176 - name: Utah JavaScript Game Night - state: UT - lat: 40.540000915527344 - who: JS Friends - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Bellevue - timezone: US/Pacific - created: 1441141798000 link: 'http://www.meetup.com/BellevueJS/' - rating: 5 - description: >- - BellevueJS provides an opportunity to meet other local JavaScripters, - share knowledge, and learn about the latest in JavaScript on the - Eastside. - - + name: BellevueJS + description: |- + BellevueJS provides an opportunity to meet other local JavaScripters, share knowledge, and learn about the latest in JavaScript on the Eastside. - How often would you like to meet? What would you like to learn? Would - you like to sponsor a meetup in Bellevue? Join us and discuss! + How often would you like to meet? What would you like to learn? Would you like to sponsor a meetup in Bellevue? Join us and discuss! lon: -122.20999908447266 - join_mode: open - organizer: - member_id: 13604544 - name: Sam Eubank - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/a/5/5/0/highres_245562320.jpeg' - photo_id: 245562320 - photo_link: 'http://photos4.meetupstatic.com/photos/member/a/5/5/0/member_245562320.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/a/5/5/0/thumb_245562320.jpeg' - members: 297 - name: BellevueJS - state: WA lat: 47.619998931884766 - who: JavaScripters - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: New York - timezone: US/Eastern - created: 1441216613000 link: 'http://www.meetup.com/Cloud-Native-New-York/' - rating: 4.5 + name: Cloud Native New York description: '

Discuss everything about building and utilizing cloud native application architectures and platforms. Topics on interest also include Micro Services, DevOps, Container technologies and platforms

' lon: -74 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/b/9/8/4/highres_444347492.jpeg' - photo_id: 444347492 photo_link: 'http://photos4.meetupstatic.com/photos/event/b/9/8/4/600_444347492.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/b/9/8/4/thumb_444347492.jpeg' - join_mode: open - organizer: - member_id: 186658804 - name: Reshmi Krishna - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/2/5/7/9/highres_245709593.jpeg' - photo_id: 245709593 - photo_link: 'http://photos3.meetupstatic.com/photos/member/2/5/7/9/member_245709593.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/2/5/7/9/thumb_245709593.jpeg' - members: 300 - name: Cloud Native New York - state: NY lat: 40.7400016784668 - who: Cloud Natives - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: San Marcos - timezone: US/Central - created: 1441218123000 link: 'http://www.meetup.com/San-Marcos-Tech-Meetup/' - rating: 5 + name: San Marcos Tech Meetup description: "I can't believe that there isn't a tech meetup in San Marcos. This group is to bring together tech enthusiast for the so that we can share information about new technology. Find others in the community that we can collaborate with. Get information on the ins/outs of startups. Show off our latest iot device. And on and on." lon: -97.94999694824219 - join_mode: open - organizer: - member_id: 8674381 - name: Patrick - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/2/7/4/highres_249360628.jpeg' - photo_id: 249360628 - photo_link: 'http://photos2.meetupstatic.com/photos/member/2/7/4/member_249360628.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/2/7/4/thumb_249360628.jpeg' - members: 122 - name: San Marcos Tech Meetup - state: TX lat: 29.8799991607666 - who: SanMarcosRobots - - utc_offset: -25200000 - country: US - visibility: public + - country: US + city: Mc Lean + link: 'http://www.meetup.com/tysons-js/' + name: tysons.js + description: '

"This group is for anyone who is interested in JavaScript and is in the Tysons, VA area. All skill levels are welcome. We get together, have hack nights, product demos, discuss new frameworks / libraries, eat, drink, and be merry."

' + lon: -77.18000030517578 + group_photo: + photo_link: 'http://photos3.meetupstatic.com/photos/event/1/6/9/8/600_444905784.jpeg' + lat: 38.93000030517578 + - country: US city: Santa Monica - timezone: US/Pacific - created: 1441601061000 link: 'http://www.meetup.com/LA-Software-Craftsmanship/' - rating: 5 - description: >- -

This is a group for people interested in high quality code... - doesn't really matter what language, what methodology, or what kind of - environment you work in (big enterprise, startup, open source, etc.). - All that matters is that you're interested in getting together now and - then (in real life or virtually) to talk about great code and what - makes it great.

- -

BTW, I know there's a "thing" around software craftsmanship (not to - mention a conference coming to LA in 2015) and we should talk about - that movement. But the time we spend together in these Meetups should - be much broader, focused only on high quality code and not centered - around any manifestos.

- -

Long term, the goal is to give members the tools (and inspire them) - to write amazing code accomplish by learning from others, study, - mentorship, hands on experience, and open discussion. 

- lon: -118.5 - join_mode: open - organizer: - member_id: 137113352 - name: Michael Rice - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/6/a/b/a/highres_189147322.jpeg' - photo_id: 189147322 - photo_link: 'http://photos3.meetupstatic.com/photos/member/6/a/b/a/member_189147322.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/6/a/b/a/thumb_189147322.jpeg' - members: 157 name: LA Software Craftsmanship - state: CA + description: |- +

This is a group for people interested in high quality code... doesn't really matter what language, what methodology, or what kind of environment you work in (big enterprise, startup, open source, etc.). All that matters is that you're interested in getting together now and then (in real life or virtually) to talk about great code and what makes it great.

+

BTW, I know there's a "thing" around software craftsmanship (not to mention a conference coming to LA in 2015) and we should talk about that movement. But the time we spend together in these Meetups should be much broader, focused only on high quality code and not centered around any manifestos.

+

Long term, the goal is to give members the tools (and inspire them) to write amazing code accomplish by learning from others, study, mentorship, hands on experience, and open discussion. 

+ lon: -118.5 lat: 34.02000045776367 - who: Clean coders - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Palo Alto - timezone: US/Pacific - created: 1441771680000 link: 'http://www.meetup.com/Dans-Linux-JavaScript-Class/' - rating: 4.98 + name: "Dan's Linux JavaScript Class" description: 'Each Meetup starts with a 40 minute lecture related to running JavaScript apps on Linux servers. Also we cover serving JavaScript (and other assets) to browsers from Linux servers. After the lecture, we pair up and work on a code challenge related to the Lecture. This Meetup is aimed at developers who want to pitch interactive product ideas (usually mobile apps) to investors. Building an awesome prototype which behaves well in a mobile browser is more effective than a slide-deck and elevator pitch. All skill levels welcome. Bring your laptop.' lon: -122.1500015258789 - join_mode: open - organizer: - member_id: 182918449 - name: Ralic Lo - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/1/6/5/7/highres_242105719.jpeg' - photo_id: 242105719 - photo_link: 'http://photos4.meetupstatic.com/photos/member/1/6/5/7/member_242105719.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/1/6/5/7/thumb_242105719.jpeg' - members: 212 - name: "Dan's Linux JavaScript Class" - state: CA lat: 37.439998626708984 - who: Engineers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Los Angeles - timezone: US/Pacific - created: 1441779859000 link: 'http://www.meetup.com/Crowdcoders-Coworking-Space/' - description: >- -

Crowdfunder is opening its doors to coders needing a place to work - on their own development project. Coders of all experience levels are - welcome. 

- + name: Crowdcoders Coworking Space + description: |- +

Crowdfunder is opening its doors to coders needing a place to work on their own development project. Coders of all experience levels are welcome. 

Come ready to code! 

-

Don't be shy and introduce yourself when you arrive.

- -

Need tunes to help you code? Bring headphones to limit noise level - and  distractions for others who might be sensitive . This is - a co-working space  so remember to respect your fellow - Crowdcoders. If you need to take or make a phone call longer than a few - minutes, take it outside. 

- +

Need tunes to help you code? Bring headphones to limit noise level and  distractions for others who might be sensitive . This is a co-working space  so remember to respect your fellow Crowdcoders. If you need to take or make a phone call longer than a few minutes, take it outside. 



lon: -118.43000030517578 - join_mode: open - organizer: - member_id: 192459993 - name: Will - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/e/1/6/8/highres_249537704.jpeg' - photo_id: 249537704 - photo_link: 'http://photos1.meetupstatic.com/photos/member/e/1/6/8/member_249537704.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/e/1/6/8/thumb_249537704.jpeg' - members: 30 - name: Crowdcoders Coworking Space - state: CA lat: 33.9900016784668 - who: 'Coders & Developers' - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Ann Arbor - timezone: US/Eastern - created: 1441992846000 link: 'http://www.meetup.com/Free-Code-Camp-Ann-Arbor/' - rating: 5 - description: >- -

This is a group for anyone learning (or interested in learning) web - development and coding through the free JavaScript based curriculum - at freecodecamp.com.

- -

This meetup will provide opportunities to meet other campers - in the Ann Arbor area, get help, and find people to pair program - with.

- -

Check out our local Facebook page at:  https://www.facebook.com/groups/free.code.camp.ann.arbor/

+ name: Free Code Camp Ann Arbor + description: |- +

This is a group for anyone learning (or interested in learning) web development and coding through the free JavaScript based curriculum at freecodecamp.com.

+

This meetup will provide opportunities to meet other campers in the Ann Arbor area, get help, and find people to pair program with.

+

Check out our local Facebook page at:  https://www.facebook.com/groups/free.code.camp.ann.arbor/

lon: -83.80999755859375 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/3/b/f/3/highres_441855347.jpeg' - photo_id: 441855347 photo_link: 'http://photos3.meetupstatic.com/photos/event/3/b/f/3/600_441855347.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/3/b/f/3/thumb_441855347.jpeg' - join_mode: open - organizer: - member_id: 11759388 - name: Joel Bentley - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/3/9/1/8/highres_249614616.jpeg' - photo_id: 249614616 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/9/1/8/member_249614616.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/9/1/8/thumb_249614616.jpeg' - members: 249 - name: Free Code Camp Ann Arbor - state: MI lat: 42.27000045776367 - who: Campers - - utc_offset: -25200000 - country: CA - visibility: public + - country: CA city: Vancouver - timezone: Canada/Pacific - created: 1442096498000 link: 'http://www.meetup.com/ReactJS-Vancouver-Meetup/' - rating: 4.89 + name: ReactJS Vancouver Meetup description: "

With an increasing number of Vancouver developers who work with React (http://facebook.github.io/react/), it's time to get together and share our experiences, projects, issues, tips, etc. <br>

\n

If you work with React, React Native, React Hot Loader, React Router, Flux, you name it or simply want to get an idea of what others do with these technologies, please join us at one of our next events.

\n

For speaker or hosting suggestions, please contact us so we can plan.

" lon: -123.12000274658203 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/b/b/8/2/highres_441888002.jpeg' - photo_id: 441888002 photo_link: 'http://photos3.meetupstatic.com/photos/event/b/b/8/2/600_441888002.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/b/b/8/2/thumb_441888002.jpeg' - join_mode: open - organizer: - member_id: 132605642 - name: Mike Nikles - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/b/7/9/1/highres_249646993.jpeg' - photo_id: 249646993 - photo_link: 'http://photos3.meetupstatic.com/photos/member/b/7/9/1/member_249646993.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/b/7/9/1/thumb_249646993.jpeg' - members: 527 - name: ReactJS Vancouver Meetup - state: BC lat: 49.279998779296875 - who: Developers - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: New York - timezone: US/Eastern - created: 1442160756000 link: 'http://www.meetup.com/fullstack360/' - rating: 5 - description: '

Want to learn frontend development, backend development and iOS programming? In other words, want to be a full stack developer? This meetup is dedicated teaching students all areas of the "stack." Each week, we will demo a new concept live and explain the basics behind the implementation. Join us Mondays from 6:30pm to 9:00pm for at Ensemble coworking space to learn something new, meet like-minded people, and begin your journey to becoming a full stack developer

' + name: FS360 Development Workshops + description: '

Want to learn frontend development, backend development and iOS programming? In other words, want to be a full stack developer? This meetup is dedicated teaching students all areas of the "stack." Each week, we will demo a new concept live and explain the basics behind the implementation. Join us Mondays from 6:30pm to 9:00pm to learn something new, meet like-minded people, and begin your journey to becoming a full stack developer

' lon: -73.9800033569336 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/6/8/a/b/highres_441926795.jpeg' - photo_id: 441926795 - photo_link: 'http://photos2.meetupstatic.com/photos/event/6/8/a/b/600_441926795.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/6/8/a/b/thumb_441926795.jpeg' - join_mode: open - organizer: - member_id: 67402742 - name: The Full Stack - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/7/d/5/7/highres_242732087.jpeg' - photo_id: 242732087 - photo_link: 'http://photos2.meetupstatic.com/photos/member/7/d/5/7/member_242732087.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/7/d/5/7/thumb_242732087.jpeg' - members: 159 - name: NYC Future Full Stack Developers - state: NY + photo_link: 'http://photos4.meetupstatic.com/photos/event/d/5/b/1/600_447414705.jpeg' lat: 40.75 - who: devs - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Burlington - timezone: US/Eastern - created: 1442856046000 link: 'http://www.meetup.com/Greater-Boston-Enterprise-UI/' - rating: 5 + name: Greater Boston Enterprise UI description: "Greater Boston Enterprise UI is a Meetup group for anyone who is interested in learning, understanding and sharing about topics surrounding developing User Interface in the enterprise context. We define UI as a large spectrum that spans across technology stacks and could include the various JavaScript frameworks, HTML, CSS, Node.js, tooling & automation (Grunt & gulp), and testing (Selenium and Webdriver). Basically anything that would face a UI developer on a daily basis. Our goal is to connect passionate individuals who care about making innovative and user-focused interfaces and experiences that have a big impact. If you're interested in speaking at our events, please reach out to us. We look forward to hearing from you!" lon: -71.19999694824219 - join_mode: open - organizer: - member_id: 44238682 - name: Tri Nguyen - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/a/2/d/2/highres_245381682.jpeg' - photo_id: 245381682 - photo_link: 'http://photos2.meetupstatic.com/photos/member/a/2/d/2/member_245381682.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/a/2/d/2/thumb_245381682.jpeg' - members: 191 - name: Greater Boston Enterprise UI - state: MA lat: 42.5099983215332 - who: Members - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: New York - timezone: US/Eastern - created: 1443026735000 link: 'http://www.meetup.com/ave-B-Social-Javascript/' + name: (ave) B Social Javascript description: '

This group is to serve NYC developers who want an alternative to coding in the office or at home by combining elements of co-working with the social component of a hackathon. If you like JavaScript, come join us for fast internet, coffee, and a couple talks in a cool coffeeshop / bar in the East Village, The Roost.

' lon: -74 - join_mode: open - organizer: - member_id: 47623572 - name: matt lucas - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/d/f/2/d/highres_249957133.jpeg' - photo_id: 249957133 - photo_link: 'http://photos1.meetupstatic.com/photos/member/d/f/2/d/member_249957133.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/d/f/2/d/thumb_249957133.jpeg' - members: 87 - name: (ave) B Social Javascript - state: NY lat: 40.720001220703125 - who: Members - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Seattle - timezone: US/Pacific - created: 1443486017000 link: 'http://www.meetup.com/Seattle-MEAN-Stack-Developers/' + name: Seattle MEAN Stack Developers description: "We're a group dedicated to all things MongoDB, Express, Angular, and Node. If you're using any part of the MEAN stack we want you to come code with us! All levels of experience are welcome, we aim to offer a welcoming environment for working, learning, and socializing with other MEAN devs." lon: -122.31999969482422 - join_mode: open - organizer: - member_id: 185198078 - name: Jon Edwards - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/6/8/9/a/highres_250226778.jpeg' - photo_id: 250226778 - photo_link: 'http://photos3.meetupstatic.com/photos/member/6/8/9/a/member_250226778.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/6/8/9/a/thumb_250226778.jpeg' - members: 152 - name: Seattle MEAN Stack Developers - state: WA lat: 47.630001068115234 - who: MEAN devs - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Cookeville - timezone: US/Central - created: 1443498082000 link: 'http://www.meetup.com/Friday-Night-Hacks-at-the-Biz-Foundry/' + name: Friday Night Hacks at the Biz Foundry description: "Ever had the desire to code with other programmers? Want to learn from others just a bit ahead of you? Or maybe you'd like to show off your awesome workflow: Friday Night Hacks is the night for you! We are a community about programming and learning from each other while contributing back to the Cookeville community through projects and super cool software! Come out and be a part of an awesome community." lon: -85.5199966430664 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/b/4/3/1/highres_442546129.jpeg' - photo_id: 442546129 photo_link: 'http://photos3.meetupstatic.com/photos/event/b/4/3/1/600_442546129.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/b/4/3/1/thumb_442546129.jpeg' - join_mode: open - organizer: - member_id: 191308717 - name: Kris Molinari - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/6/4/5/b/highres_250105691.jpeg' - photo_id: 250105691 - photo_link: 'http://photos2.meetupstatic.com/photos/member/6/4/5/b/member_250105691.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/6/4/5/b/thumb_250105691.jpeg' - members: 23 - name: Friday Night Hacks at the Biz Foundry - state: TN lat: 36.20000076293945 - who: Devs - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Austin - timezone: US/Central - created: 1443540056000 link: 'http://www.meetup.com/Austin-ReactJS-Native-Meetup/' - rating: 4.92 - description: >- -

This group is for those who are curious about or are actively using - ReactJS and React Native. We plan on hosting demos, instructional - lectures, and social events for those interested in learning more about - this Javascript framework. 

- + name: 'Austin ReactJS & Native Meetup' + description: |- +

This group is for those who are curious about or are actively using ReactJS and React Native. We plan on hosting demos, instructional lectures, and social events for those interested in learning more about this Javascript framework. 


- -

For more information about ReactJS and React Native, check out these - links: https://facebook.github.io/react/ and https://facebook.github.io/react-native/

+

For more information about ReactJS and React Native, check out these links: https://facebook.github.io/react/ and https://facebook.github.io/react-native/

lon: -97.73999786376953 - join_mode: open - organizer: - member_id: 177802672 - name: Paul Francis - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/9/1/6/4/highres_250117220.jpeg' - photo_id: 250117220 - photo_link: 'http://photos4.meetupstatic.com/photos/member/9/1/6/4/member_250117220.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/9/1/6/4/thumb_250117220.jpeg' - members: 283 - name: 'Austin ReactJS & Native Meetup' - state: TX lat: 30.270000457763672 - who: React Enthusiasts - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Dublin - timezone: US/Pacific - created: 1443566665000 link: 'http://www.meetup.com/BayOne-Labs/' + name: BayOne Labs description: BayOne Labs is extremely delighted to announce the workshop series for the IT professionals and enthusiasts. In this series we will take deep dive into the amazing world of technologies inspiring numerous individuals and companies in the domain of bigdata full-stack engineering and cloud computing. The intent is to share the practical wisdom for technologies and build a knowledge-sharing platform for the booming high-tech community in the bay area. lon: -121.93000030517578 - join_mode: open - organizer: - member_id: 193425328 - name: BayOne Labs - members: 96 - name: BayOne Labs - state: CA lat: 37.709999084472656 - who: Explorers - - utc_offset: -21600000 - country: US - visibility: public + - country: US city: Orem - timezone: US/Mountain - created: 1443581726000 - link: 'http://www.meetup.com/CodeforOdin/' - description: "

What better way to please Odin than to be c-Odin-g on Wednesday (Odin's day) ? Come to our weekly casual coding meetup! Everyone from beginners to experts are invited to come. The casual and relaxed setting makes it a great time to meet other coders, show off your project to your peers, get protips from experts, or to just relax and code with friends. We like to code together. Join us!

" - lon: -111.69999694824219 - group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/8/a/6/7/highres_443555431.jpeg' - photo_id: 443555431 - photo_link: 'http://photos2.meetupstatic.com/photos/event/8/a/6/7/600_443555431.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/8/a/6/7/thumb_443555431.jpeg' - join_mode: open - organizer: - member_id: 110721702 - name: chrxn - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/2/7/3/5/highres_243490037.jpeg' - photo_id: 243490037 - photo_link: 'http://photos1.meetupstatic.com/photos/member/2/7/3/5/member_243490037.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/2/7/3/5/thumb_243490037.jpeg' - members: 43 - name: Code for Odin - state: UT - lat: 40.31999969482422 - who: OdinCoders - - utc_offset: -14400000 - country: US - visibility: public - city: Bayside - timezone: US/Eastern - created: 1443814640000 - link: 'http://www.meetup.com/Queens-Bayside-Sofware-Development-and-Design/' - rating: 4.43 - description: '

Computer programmers, Web developers of queens unite. No more long commutes to the city to get and give help on your stalled projects. Why not create our own group here in queens where we can meet-up*, learn from each other, help each other and have a fun time doing it. This group is for anyone interested in software development/computer programming, specifically for those living in the queens area who like me have had to go to meet-ups in the city and are looking to stay closer to home.

' - lon: -73.77999877929688 - group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/3/8/2/3/highres_444254371.jpeg' - photo_id: 444254371 - photo_link: 'http://photos4.meetupstatic.com/photos/event/3/8/2/3/600_444254371.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/3/8/2/3/thumb_444254371.jpeg' - join_mode: approval - organizer: - member_id: 12125262 - name: James Naadjie - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/7/1/2/9/highres_9748969.jpeg' - photo_id: 9748969 - photo_link: 'http://photos3.meetupstatic.com/photos/member/7/1/2/9/member_9748969.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/7/1/2/9/thumb_9748969.jpeg' - members: 132 - name: Queens Software Development and Design - state: NY - lat: 40.790000915527344 - who: QueensDevs - - utc_offset: -28800000 - country: US - visibility: public - city: San Francisco - timezone: US/Pacific - created: 1444674782000 - link: 'http://www.meetup.com/Web-Mobile-Development-Courses/' - description: >- -

Learn computer programming, web development, mobile - development, web design, sql and mysql, computer basics, etc. If you - want to learn these courses for job or for personal growth then this - group is for you. This group is for both teachers and students, - students can join here and ask for a subject to learn and teacher will - join here to teach whatever they want to teach to students. All - computer related subjects are welcome. 

- -

Please note that the organizers and event hosts take so much pain in - planning and executing events. So, it’s disrespectful to them to block - a spot and not show up at event on time.

- -

So, please be a cool and considerate member of our group by - attending events that you have RSVP’d “Yes”. Please update your RSVP - (or contact the event organizer) if your plans have changed.

- -

People under 18 years of age can join with parents.

- -
- -

Legal Disclaimer & Liability Information:

- -

By joining this group, RSVP'ing to events, and attending events, you - are confirming that you have read, understand and accept the - following:

- -

"Web & Mobile Development Courses" is a private group.  - Attending events is voluntary by you as a member.  Participation - in any activity with us is at your own risk.

- -

By joining "Web & Mobile Development Courses" as - a member you agree to indemnify and hold harmless "Web & - Mobile Development Courses" its organizers, co-organizers, - assistant organizers, event hosts, and other members from all claims or - liability of every type (including court costs and legal fees) for - injury or death to any person or for damage to property, loss of - personal property or any other wrongful act arising out of or relating - to your participation as a member. 

- -

This agreement applies to you and to other persons (as your guests) - who may accompany you in these endeavors.You also agree to hold the - organizers as well as other group members harmless. 

- -

By participating voluntarily in the group, you expressly waive any - and all such claims against each and every other member in the group, - including without limitation any and all claims against the group - organizer, co-organizers, assistant organizers, and event hosts.

- -

"Web & Mobile Development Courses" holds a variety of - different activities.  These events can pose a risk to "Web - & Mobile Development Courses" members and guests.  By - participating voluntarily in the group you understand that you are - responsible for your own safety.Any social events that "Web & - Mobile Development Courses" sponsors and holds such as, but not - limited to dancing, cycling, picnics, group trips, outings, dining, pub - crawls, concerts and so on will fall also under the same Disclaimer and - Liability guidelines listed above.

- -
- lon: -122.41999816894531 - join_mode: open - organizer: - member_id: 13479302 - name: Manny - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/8/d/b/b/highres_247836283.jpeg' - photo_id: 247836283 - photo_link: 'http://photos3.meetupstatic.com/photos/member/8/d/b/b/member_247836283.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/8/d/b/b/thumb_247836283.jpeg' - members: 17 - name: 'Web & Mobile Development Courses' - state: CA - lat: 37.779998779296875 - who: Members - - utc_offset: -25200000 - country: US - visibility: public + link: 'http://www.meetup.com/CodeforOdin/' + name: Code for Odin + description: "

What better way to please Odin than to be c-Odin-g on Wednesday (Odin's day) ? Come to our weekly casual coding meetup! Everyone from beginners to experts are invited to come. The casual and relaxed setting makes it a great time to meet other coders, show off your project to your peers, get protips from experts, or to just relax and code with friends. We like to code together. Join us!

" + lon: -111.69999694824219 + group_photo: + photo_link: 'http://photos2.meetupstatic.com/photos/event/8/a/6/7/600_443555431.jpeg' + lat: 40.31999969482422 + - country: US + city: Bayside + link: 'http://www.meetup.com/Queens-Bayside-Sofware-Development-and-Design/' + name: Queens Software Development and Design + description: '

Computer programmers, Web developers of queens unite. No more long commutes to the city to get and give help on your stalled projects. Why not create our own group here in queens where we can meet-up*, learn from each other, help each other and have a fun time doing it. This group is for anyone interested in software development/computer programming, specifically for those living in the queens area who like me have had to go to meet-ups in the city and are looking to stay closer to home.

' + lon: -73.77999877929688 + group_photo: + photo_link: 'http://photos4.meetupstatic.com/photos/event/3/8/2/3/600_444254371.jpeg' + lat: 40.790000915527344 + - country: US city: Provo - timezone: US/Mountain - created: 1444861670000 - link: 'http://www.meetup.com/GUN-Utah-Meetup/' - description: >- -

This group is for anyone interested in databases from start-up - entrepreneurs to web developers. GUN is a database written entirely in - JavaScript and super hackable (MIT/Apache2/ZLIB) with these cool - features:

- -

• Like Firebase? GUN is an Open Source Firebase, with all the - realtime goodies included!

- -

• Like Bitcoin? GUN is fully peer-to-peer, which means no - DevOps or SysAdmin work is required!

- -

• It is Offline-First so you never have to worry about writing - ajax or scared if your app disconnects.

- -

• Can't stand the NoSQL/SQL debate? GUN is both relational and - document oriented, using graphs!

- -

We're just going to have a chill get-together, eat food, talk about - crazy mad science JavaScript, and learn about gun, get started using - gun, and hack on gun! Until then, check out http://gun.js.org - and https://github.com/amark/gun, - and feel free to contact us at https://gitter.im/amark/gun or - https://groups.google.com/forum/#!forum/g-u-n.

- lon: -111.69000244140625 - join_mode: open - organizer: - member_id: 12984469 - name: Mark Nadal - photo: - photo_id: 10787314 - photo_link: 'http://photos1.meetupstatic.com/photos/member/b/8/d/2/member_10787314.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/b/8/d/2/thumb_10787314.jpeg' - members: 32 - name: GUN Utah Meetup - state: UT + link: 'http://www.meetup.com/GUN-User-Group/' + name: GUN User Group + description: |- +

This group is for anyone interested in databases from start-up entrepreneurs to web developers. GUN is a database written entirely in JavaScript and super hackable (MIT/Apache2/ZLIB) with these cool features:

+

• Like Firebase? GUN is an Open Source Firebase, with all the realtime goodies included!

+

• Like Bitcoin? GUN is fully peer-to-peer, which means no DevOps or SysAdmin work is required!

+

• It is Offline-First so you never have to worry about writing ajax or scared if your app disconnects.

+

• Can't stand the NoSQL/SQL debate? GUN is both relational and document oriented, using graphs!

+

We're just going to have a chill get-together, eat food, talk about crazy mad science JavaScript, and learn about gun, get started using gun, and hack on gun! Until then, check out http://gun.js.org and https://github.com/amark/gun, and feel free to contact us at https://gitter.im/amark/gun or https://groups.google.com/forum/#!forum/g-u-n.

+ lon: -111.62999725341797 + group_photo: + photo_link: 'http://photos2.meetupstatic.com/photos/event/c/e/a/f/600_446572911.jpeg' lat: 40.220001220703125 - who: gummies - - utc_offset: -21600000 - country: US - visibility: public + - country: US city: Denver - timezone: US/Mountain - created: 1445030053000 link: 'http://www.meetup.com/NodeBots-Colorado/' - rating: 5 + name: NodeBots Colorado description: "We are a group of JavaScript and hardware enthusiasts working to create an inclusive community for anyone to begin or continue learning about NodeBots. You don't need to know anything about hardware or programming to join. We can show you how to build a robot in under an hour and would love to have you join us!" lon: -105.08000183105469 - join_mode: open - organizer: - member_id: 4699252 - name: Steve Kinney - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/1/3/8/a/highres_41345002.jpeg' - photo_id: 41345002 - photo_link: 'http://photos2.meetupstatic.com/photos/member/1/3/8/a/member_41345002.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/1/3/8/a/thumb_41345002.jpeg' - members: 173 - name: NodeBots Colorado - state: CO lat: 39.70000076293945 - who: NodeBotaneers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Los Angeles - timezone: US/Pacific - created: 1445681370000 link: 'http://www.meetup.com/Los-Angeles-Amazon-Echo-Developer-Meetup/' - description: "

This is a meetup for anyone interested in building apps for the Amazon Echo using the Alexa Skills Kit (ASK) and Amazon Voice Service (AVS) on top of Node.js. All skill levels are welcome. I started this meetup to get to meet others interested in the same technology and help each other build voice driven apps of the future! If you're a non-developer we welcome you to contribute ideas for the Echo you might have!

" - lon: -118.23999786376953 - join_mode: open - organizer: - member_id: 116255212 - name: Miguel Mota - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/9/c/7/4/highres_198160052.jpeg' - photo_id: 198160052 - photo_link: 'http://photos3.meetupstatic.com/photos/member/9/c/7/4/member_198160052.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/9/c/7/4/thumb_198160052.jpeg' - members: 31 name: Los Angeles Amazon Echo Developer Meetup - state: CA + description: '

This is a meetup for anyone interested in building apps for the Amazon Echo using the Alexa Skills Kit (ASK) and Amazon Voice Service (AVS).

' + lon: -118.23999786376953 lat: 33.970001220703125 - who: Echoists - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Cambridge - timezone: US/Eastern - created: 1445886545000 link: 'http://www.meetup.com/Electron-Atom/' + name: Electron/Atom description: A place where developers and entrepreneurs can share knowledge on developing apps in Electron and on using or developing for the Atom IDE. lon: -71.0999984741211 - join_mode: open - organizer: - member_id: 107900182 - name: Jonathan Ross - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/7/9/a/6/highres_141871142.jpeg' - photo_id: 141871142 - photo_link: 'http://photos2.meetupstatic.com/photos/member/7/9/a/6/member_141871142.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/7/9/a/6/thumb_141871142.jpeg' - members: 37 - name: Electron/Atom - state: MA lat: 42.369998931884766 - who: protons - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: San Antonio - timezone: US/Central - created: 1446595076000 link: 'http://www.meetup.com/San-Antonio-Meteor-Meetup/' + name: San Antonio Meteor Meetup description: "This is a group for anyone interested in Meteor and its associated technologies, like Node.js, MongoDB, Angular.js, React.js, Jade, Spacebars, Famous-Views, JSON, etc. It's all about developing modern interactive web applications. All skill levels are welcome. If you are, or want to be, a Meteorite, then this group is for you!" lon: -98.75 - join_mode: open - organizer: - member_id: 189066337 - name: DJ Bauch - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/e/8/2/6/highres_251099430.jpeg' - photo_id: 251099430 - photo_link: 'http://photos2.meetupstatic.com/photos/member/e/8/2/6/member_251099430.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/e/8/2/6/thumb_251099430.jpeg' - members: 50 - name: San Antonio Meteor Meetup - state: TX lat: 29.459999084472656 - who: Meteorites - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Austin - timezone: US/Central - created: 1446735357000 link: 'http://www.meetup.com/Free-Code-Camp-Austin/' - rating: 5 + name: Free Code Camp Austin description: '

This is a study and networking group specifically for folks in the Austin, TX area who are learning web development through www.freecodecamp.com. This group is committed to creating opportunities for members to socialize, team up on projects, and keep one another accountable on our coding journey. Check out our local Facebook page at: https://www.facebook.com/groups/free.code.camp.austin/

' lon: -97.73999786376953 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/c/8/6/e/highres_443871310.jpeg' - photo_id: 443871310 photo_link: 'http://photos3.meetupstatic.com/photos/event/c/8/6/e/600_443871310.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/c/8/6/e/thumb_443871310.jpeg' - join_mode: open - organizer: - member_id: 156078732 - name: Adam Camacho - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/7/c/f/f/highres_246151999.jpeg' - photo_id: 246151999 - photo_link: 'http://photos4.meetupstatic.com/photos/member/7/c/f/f/member_246151999.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/7/c/f/f/thumb_246151999.jpeg' - members: 259 - name: Free Code Camp Austin - state: TX lat: 30.270000457763672 - who: Campers - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Indianapolis - timezone: US/Eastern - created: 1446750295000 link: 'http://www.meetup.com/High-Fives-Happy-Hour/' - rating: 5 + name: High Fives Happy Hour description: "

Join us for the High Fives Happy Hour at the High Alpha offices for free food, drinks, and awesome people. This is a casual event that will occur quarterly. We want it to be a fun get-together with Indy's Tech community to foster new relationships or catch up with old friends. People are free to come and go as they please. The event will start at 4:30 and run to 7:30.

" lon: -86.18000030517578 - join_mode: open - organizer: - member_id: 191528823 - name: Mike Hurley - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/b/d/8/c/highres_251148524.jpeg' - photo_id: 251148524 - photo_link: 'http://photos3.meetupstatic.com/photos/member/b/d/8/c/member_251148524.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/b/d/8/c/thumb_251148524.jpeg' - members: 214 - name: High Fives Happy Hour - state: IN lat: 39.88999938964844 - who: High Fives - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Gulf Breeze - timezone: US/Central - created: 1447054677000 link: 'http://www.meetup.com/Mobile-Home-Brew-Computer-Club/' - rating: 5 + name: Homebrew Computer Club description: '

Good folks interested in working towards developing startups in the area of mobile computing with an emphasis on social, AI, and machine learning technologies. Creative types from all disciplines, serious folks, with an eye on seeing computing targeted towards bettering the lives of all of humanity. Its more important to have motivation than knowledge. Come one, come all, but come with motivation. There is an emphasis on good here. You either are or your not and you already know it.

' lon: -87.08999633789062 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/2/2/2/2/highres_444008738.jpeg' - photo_id: 444008738 photo_link: 'http://photos4.meetupstatic.com/photos/event/2/2/2/2/600_444008738.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/2/2/2/2/thumb_444008738.jpeg' - join_mode: open - organizer: - member_id: 195312204 - name: Dan Levitan - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/5/a/3/a/highres_251243098.jpeg' - photo_id: 251243098 - photo_link: 'http://photos2.meetupstatic.com/photos/member/5/a/3/a/member_251243098.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/5/a/3/a/thumb_251243098.jpeg' - members: 56 - name: Homebrew Computer Club - state: FL lat: 30.3799991607666 - who: Newer Computers - - utc_offset: -25200000 - country: CA - visibility: public + - country: CA city: Vancouver - timezone: Canada/Pacific - created: 1447465824000 link: 'http://www.meetup.com/ionicvancouver/' - description: >- -

This is the official Vancouver meetup group for Ionic - Framework. This Meetup is for anyone using or interested in using - Ionic to build mobile hybrid apps using modern web technologies. We - welcome attendees of all skill levels and would love to hear about - projects and apps that you are working on. If you would like to present - something related to Ionic at an upcoming event, please message admin - via the Ionic Vancouver Meetup board. 

- + name: Ionic Vancouver + description: |- +

This is the official Vancouver meetup group for Ionic Framework. This Meetup is for anyone using or interested in using Ionic to build mobile hybrid apps using modern web technologies. We welcome attendees of all skill levels and would love to hear about projects and apps that you are working on. If you would like to present something related to Ionic at an upcoming event, please message admin via the Ionic Vancouver Meetup board. 

---

-

Code of Conduct:

- -

Ionic Vancouver is dedicated to providing a harassment-free - conference experience for everyone, regardless of gender, gender - identity and expression, age, sexual orientation, disability, physical - appearance, body size, race, or religion (or lack thereof). We do not - tolerate harassment of event participants in any form. Sexual language - and imagery is not appropriate for any conference venue, including - talks, workshops, parties, Twitter and other online media. Event - participants violating these rules may be sanctioned or expelled from - the event and all future event at the discretion of the organisers. - (adapted from confcodeofconduct.com)

+

Ionic Vancouver is dedicated to providing a harassment-free conference experience for everyone, regardless of gender, gender identity and expression, age, sexual orientation, disability, physical appearance, body size, race, or religion (or lack thereof). We do not tolerate harassment of event participants in any form. Sexual language and imagery is not appropriate for any conference venue, including talks, workshops, parties, Twitter and other online media. Event participants violating these rules may be sanctioned or expelled from the event and all future event at the discretion of the organisers. (adapted from confcodeofconduct.com)

lon: -123.04000091552734 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/3/6/9/e/highres_444133982.jpeg' - photo_id: 444133982 photo_link: 'http://photos3.meetupstatic.com/photos/event/3/6/9/e/600_444133982.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/3/6/9/e/thumb_444133982.jpeg' - join_mode: open - organizer: - member_id: 182605061 - name: Daniel Costa - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/9/6/6/d/highres_251378509.jpeg' - photo_id: 251378509 - photo_link: 'http://photos3.meetupstatic.com/photos/member/9/6/6/d/member_251378509.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/9/6/6/d/thumb_251378509.jpeg' - members: 60 - name: Ionic Vancouver - state: BC lat: 49.279998779296875 - who: Ions - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Dallas - timezone: US/Central - created: 1447694359000 link: 'http://www.meetup.com/DFW-Improving-Web-Mobile-App-Performance-w-New-Relic-APM/' - rating: 5 + name: 'DFW Improving Web & Mobile App Performance w/New Relic APM' description: 'A group for learning, sharing, collaborating, networking - and having fun sponsored by New Relic. This is for anyone developing critical applications / or responsible for running applications - a true DevOps oriented group. We focus on sharing, learning, events, and also fun-oriented events. If you are a Developer, Product Manager, Digital Innovation specialist, or you run Apps in Production this is the group for you! www.newrelic.com/apm' lon: -96.80000305175781 - join_mode: open - organizer: - member_id: 194555442 - name: Brian Howard - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/b/1/0/2/highres_251445314.jpeg' - photo_id: 251445314 - photo_link: 'http://photos2.meetupstatic.com/photos/member/b/1/0/2/member_251445314.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/b/1/0/2/thumb_251445314.jpeg' - members: 72 - name: 'DFW Improving Web & Mobile App Performance w/New Relic APM' - state: TX lat: 32.790000915527344 - who: Data Nerds - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Phoenix - timezone: US/Arizona - created: 1447776416000 link: 'http://www.meetup.com/Learn-To-Code-PHX/' + name: Learn To Code Phoenix description: 'Learn to code in a fun safe environment in vibrant downtown Phoenix! ' lon: -112.06999969482422 - join_mode: open - organizer: - member_id: 195696131 - name: Graham McBain - members: 76 - name: Learn To Code Phoenix - state: AZ lat: 33.45000076293945 - who: Members - - utc_offset: -14400000 - country: CA - visibility: public + - country: CA city: Montréal - timezone: Canada/Eastern - created: 1447787206000 link: 'http://www.meetup.com/decodemtl/' - rating: 5 - description: >- -

DecodeMTL is the hub for - digital education in Montreal. Join us for networking events, - workshops, and industry talks with Montreal's top programmers. We are - a community of creators, passionate about building beautiful and - meaningful things with technology. 

- + name: 'DecodeMTL: Learn to Code' + description: |- +

DecodeMTL is the hub for digital education in Montreal. Join us for networking events, workshops, and industry talks with Montreal's top programmers. We are a community of creators, passionate about building beautiful and meaningful things with technology. 

About DecodeMTL: 

- -

DecodeMTL is a full-stack javascript programming bootcamp located in - Montreal, Canada. Accepted students run through an intensive 8 week - program designed to turn them into job ready web developers.

+

DecodeMTL is a full-stack javascript programming bootcamp located in Montreal, Canada. Accepted students run through an intensive 8 week program designed to turn them into job ready web developers.

lon: -73.55000305175781 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/a/d/c/9/highres_444284489.jpeg' - photo_id: 444284489 photo_link: 'http://photos4.meetupstatic.com/photos/event/a/d/c/9/600_444284489.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/a/d/c/9/thumb_444284489.jpeg' - join_mode: open - organizer: - member_id: 195703931 - name: Kevin Khoury - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/4/0/c/9/highres_251476585.jpeg' - photo_id: 251476585 - photo_link: 'http://photos1.meetupstatic.com/photos/member/4/0/c/9/member_251476585.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/4/0/c/9/thumb_251476585.jpeg' - members: 352 - name: 'DecodeMTL: Learn to Code' - state: QC lat: 45.5099983215332 - who: Decoders - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Mountain View - timezone: US/Pacific - created: 1447822969000 link: 'http://www.meetup.com/World-Cappuccino-Meetup/' + name: Worldwide Cappuccino Meetup description: '

This is a group for anyone interested in Cappuccino (http://www.cappuccino-project.org). All skills levels are welcome. Cappuccino is an open source framework that makes it easy to build desktop-caliber applications that run in a web browser. Meetups are going to be organized around the world and hopefully regularly ! During the Meetups, different topics can be covered like : How a Companies are using it ? How to test a Cappuccino Application ? How do deal with large application ? Demo of libraries etc...

' lon: -122.05000305175781 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/b/6/f/8/highres_444346840.jpeg' - photo_id: 444346840 photo_link: 'http://photos3.meetupstatic.com/photos/event/b/6/f/8/600_444346840.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/b/6/f/8/thumb_444346840.jpeg' - join_mode: open - organizer: - member_id: 195068731 - name: Alexandre Wilhelm - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/4/a/4/e/highres_251539022.jpeg' - photo_id: 251539022 - photo_link: 'http://photos1.meetupstatic.com/photos/member/4/a/4/e/member_251539022.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/4/a/4/e/thumb_251539022.jpeg' - members: 99 - name: Worldwide Cappuccino Meetup - state: CA lat: 37.40999984741211 - who: CappRoxor - - utc_offset: -14400000 - country: US - visibility: public_limited + - country: US city: Tallahassee - timezone: US/Eastern - created: 1447862468000 - link: 'http://www.meetup.com/beerjs-tallahassee/' - rating: 5 - description: >- -

A popular Silicon Valley Meetup, Beer.js, has come to - Tallahassee! 

- -

Beer.js - Tallahassee hosts events involving the two of - mankind's greatest inventions; Beer and JavaScript. Watch us at https://github.com/beerjs/tallahassee for - more information.

- lon: -84.04000091552734 - group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/a/a/2/highres_444302722.jpeg' - photo_id: 444302722 - photo_link: 'http://photos3.meetupstatic.com/photos/event/a/a/2/600_444302722.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/a/a/2/thumb_444302722.jpeg' - join_mode: open - organizer: - member_id: 10669966 - name: Steve - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/9/a/d/2/highres_251499634.jpeg' - photo_id: 251499634 - photo_link: 'http://photos1.meetupstatic.com/photos/member/9/a/d/2/member_251499634.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/9/a/d/2/thumb_251499634.jpeg' - members: 53 - name: Beer.js Tallahassee - state: FL - lat: 30.600000381469727 - who: Members - - utc_offset: -14400000 - country: US - visibility: public - city: Reston - timezone: US/Eastern - created: 1447882608000 - link: 'http://www.meetup.com/Pragmatic-Innovators/' - rating: 4.5 - description: "This is a group for anyone interested in leading software development languages, technologies, and practices. All skill levels are welcome. Topics discussed will include ReactJS, ReactJS Native, Scala, Single-Page Application Technologies, Mobile Application Development, Web Design, and Data Analytics. In-Person meetups will be held at our sponsor's (Pragmatics) corporate office in Reston." - lon: -77.33999633789062 - join_mode: open - organizer: - member_id: 195756382 - name: Jared Spigner - members: 166 - name: Pragmatic Innovators - state: VA - lat: 38.959999084472656 - who: Pragmatists - - utc_offset: -18000000 - country: US - visibility: public - city: Austin - timezone: US/Central - created: 1448020657000 - link: 'http://www.meetup.com/Mueller-Technology-Collablorative/' - description: '

Come join us for socializing and learning. Our group is focused on technoogy and sharing. Whether you are a software developer working with Node.js or a graphic designer living in InDesign, you will find people who share your love of technology culture.

' - lon: -97.75 - group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/9/e/4/d/highres_444340525.jpeg' - photo_id: 444340525 - photo_link: 'http://photos1.meetupstatic.com/photos/event/9/e/4/d/600_444340525.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/9/e/4/d/thumb_444340525.jpeg' - join_mode: open - organizer: - member_id: 11111496 - name: Barrett Simms - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/1/1/3/c/highres_236464412.jpeg' - photo_id: 236464412 - photo_link: 'http://photos4.meetupstatic.com/photos/member/1/1/3/c/member_236464412.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/1/1/3/c/thumb_236464412.jpeg' - members: 38 - name: Mueller Technology Collablorative - state: TX - lat: 30.219999313354492 - who: Members - - utc_offset: -25200000 - country: US - visibility: public - city: Fresno - timezone: US/Pacific - created: 1448147020000 - link: 'http://www.meetup.com/Free-Code-Camp-Fresno/' - rating: 4.86 - description: 'This is the Fresno chapter of Free Code Camp. Share your knowledge, learn new stuff, support one another through tough times. We also offer opportunities to give/hear a talk, pair up on a project, hangout and talk about code, and so much more. ' - lon: -119.80000305175781 - join_mode: open - organizer: - member_id: 166186882 - name: Rick G - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/e/0/0/3/highres_244857347.jpeg' - photo_id: 244857347 - photo_link: 'http://photos2.meetupstatic.com/photos/member/e/0/0/3/member_244857347.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/e/0/0/3/thumb_244857347.jpeg' - members: 120 - name: Free Code Camp Fresno - state: CA - lat: 36.84000015258789 - who: coders - - utc_offset: -25200000 - country: US - visibility: public - city: Portland - timezone: US/Pacific - created: 1448399455000 - link: 'http://www.meetup.com/Portland-New-Relic-User-Group/' - description: "Calling all Portland New Relic Users! This user group is designed to foster the community and connect you with the resources & peers you need to get the most out of New Relic's software analytics suite.\n\nSome of topics we'll discuss:\n- Application Performance Monitoring\n- Understanding Apdex\n- Custom Dashboards & Alerts\n- New Relic Insights / NRQL\n- More!\n\nEach event features talks from New Relic users and pros alike, with ample time for food, drinks, networking, and discussion. This is a great opportunity to get to know and learn best practices from other New Relic users in the area. \n\nAll New Relic users or those interested are welcome!" - lon: -122.69000244140625 - join_mode: open - organizer: - member_id: 184334905 - name: New Relic - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/b/6/f/9/highres_243706841.jpeg' - photo_id: 243706841 - photo_link: 'http://photos4.meetupstatic.com/photos/member/b/6/f/9/member_243706841.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/b/6/f/9/thumb_243706841.jpeg' - members: 52 - name: Portland New Relic User Group - state: OR - lat: 45.5 - who: Members - - utc_offset: -14400000 - country: US - visibility: public - city: Mc Lean - timezone: US/Eastern - created: 1441226087000 - link: 'http://www.meetup.com/tysons-js/' - rating: 5 - description: '

"This group is for anyone who is interested in JavaScript and is in the Tysons, VA area. All skill levels are welcome. We get together, have hack nights, product demos, discuss new frameworks / libraries, eat, drink, and be merry."

' - lon: -77.18000030517578 - group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/1/6/9/8/highres_444905784.jpeg' - photo_id: 444905784 - photo_link: 'http://photos3.meetupstatic.com/photos/event/1/6/9/8/600_444905784.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/1/6/9/8/thumb_444905784.jpeg' - join_mode: open - organizer: - member_id: 13253647 - name: Jesse Palmer - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/3/c/c/9/highres_250035561.jpeg' - photo_id: 250035561 - photo_link: 'http://photos1.meetupstatic.com/photos/member/3/c/c/9/member_250035561.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/3/c/c/9/thumb_250035561.jpeg' - members: 182 - name: tysons.js - state: VA - lat: 38.93000030517578 - who: JavaScripters - - utc_offset: -25200000 - country: US - visibility: public - city: San Francisco - timezone: US/Pacific - created: 1449781540000 - link: 'http://www.meetup.com/Hire-Front-End-Developers/' - rating: 5 - description: >- -

It's never been a better time to be a front end developer, or a more - challenging time for companies to find an appropriate fit in the Bay - Area. If you'd like to meet enthusiasts of technologies like - angular.js, ember.js, meeteor, react, html5, css, UX, and other front - end tools, join us!

- -

We're excited to provide free opportunities for talent and companies - to meet in the real world, and pair awesome front end devs with - competitive and interesting companies. Typical evenings include - interviews of top companies and pitches by startups that are looking - for talent, followed by a mixer.

- -

All companies in attendance offer competitive salaries. We're here - to make real connections between equals. Top flight companies meeting - top talent is what we're about.

- -

Some presenting companies from past events include: - HumbleBundle, Enjoytech, Adobe, Tapjoy, MatterMark, Razer, and many - more.

- lon: -122.41999816894531 - join_mode: open - organizer: - member_id: 196702953 - name: Eric Siegfried - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/6/e/0/2/highres_252028162.jpeg' - photo_id: 252028162 - photo_link: 'http://photos1.meetupstatic.com/photos/member/6/e/0/2/member_252028162.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/6/e/0/2/thumb_252028162.jpeg' - members: 224 - name: Hire Front End Developers - state: CA - lat: 37.779998779296875 - who: technologists - - utc_offset: -25200000 - country: US - visibility: public - city: San Francisco - timezone: US/Pacific - created: 1449782792000 - link: 'http://www.meetup.com/Hire-node-JS-developers/' - description: >- -

It's never been a better time to be node developer, or a more - challenging time for companies to find an appropriate fit in the Bay - Area. We're excited to provide free opportunities for talent and - companies to meet in the real world, and pair awesome server side devs - with competitive and interesting companies. 

- -

We're excited to provide free opportunities for talent and - companies to meet in the real world, and pair awesome front end - devs with competitive and interesting companies. Typical evenings - include interviews of top companies and pitches by startups that are - looking for talent, followed by a mixer.

- -

All companies in attendance offer competitive salaries. We're - here to make real connections between equals. Top flight companies - meeting top talent is what we're about.

- -

Some presenting companies from past events include: - HumbleBundle, Enjoytech, Adobe, Tapjoy, MatterMark, Razer, and many - more.

- -


- lon: -122.41999816894531 - join_mode: open - organizer: - member_id: 196702953 - name: Eric Siegfried - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/6/e/0/2/highres_252028162.jpeg' - photo_id: 252028162 - photo_link: 'http://photos1.meetupstatic.com/photos/member/6/e/0/2/member_252028162.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/6/e/0/2/thumb_252028162.jpeg' - members: 82 - name: Hire Node Developers - state: CA - lat: 37.779998779296875 - who: Noders - - utc_offset: -21600000 - country: US - visibility: public - city: Milwaukee - timezone: US/Central - created: 1449871656000 - link: 'http://www.meetup.com/ReactJS-Milwaukee/' - description: >- -

ReactJS is an incredible JavaScript library started by - Facebook.  Join us if you'd like to learn more or if you have your - own ReactJs experience to share that others can benefit from. -

- -

We're focused on all things ReactJS - on client or server, for html, - canvas or other.

- -

http://facebook.github.io/react/

- -


- lon: -87.9000015258789 - group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/e/0/d/6/highres_445077558.jpeg' - photo_id: 445077558 - photo_link: 'http://photos4.meetupstatic.com/photos/event/e/0/d/6/600_445077558.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/e/0/d/6/thumb_445077558.jpeg' - join_mode: open - organizer: - member_id: 183393735 - name: Ezekiel Chentnik - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/9/b/b/a/highres_252099866.jpeg' - photo_id: 252099866 - photo_link: 'http://photos1.meetupstatic.com/photos/member/9/b/b/a/member_252099866.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/9/b/b/a/thumb_252099866.jpeg' - members: 2 - name: ReactJS Meetup - state: WI - lat: 43.04999923706055 - who: Nerds - - utc_offset: -25200000 - country: US - visibility: public - city: Mountain View - timezone: US/Pacific - created: 1349308105000 - link: 'http://www.meetup.com/fullstackers/' - description: '

This meetup is for bringing together full stack developers. Talk Talks, tutorials related to full stack development and pitching events with participation from leading VCs and investors. Send email to organizer if you would like to propose any event topics.

' - lon: -122.06999969482422 - join_mode: open - organizer: - member_id: 5429955 - name: Vikram - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/9/6/7/a/highres_64358522.jpeg' - photo_id: 64358522 - photo_link: 'http://photos4.meetupstatic.com/photos/member/9/6/7/a/member_64358522.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/9/6/7/a/thumb_64358522.jpeg' - members: 93 - name: Bay Area Full Stack Developers - state: CA - lat: 37.38999938964844 - who: MODS - - utc_offset: -14400000 - country: US - visibility: public - city: Cambridge - timezone: US/Eastern - created: 1351830768000 - link: 'http://www.meetup.com/Full-Stack-Boston/' - rating: 5 - description: >- -

Keep up with the latest you need to know in making your - Internet based apps sing on a wide range of mobile and less-mobile - platforms such as Android, Arduino, iOS, Mac, Raspberry PI, & - Windows.

- -

We evaluate technologies and methodologies applicable anywhere - within the software stack, but always in the context of multi-platform - development and architectural impact. Preference is given to - standards-oriented browser/web technologies, such as HTML/HTML5, - CSS/CSS3, Javascript, etc. and cross-platform tools from Adobe and - others. Discussions evaluate the technical merits of a subject and how - it plays with other elements in the bigger picture, such as - integration, workflow, maintenance and market/marketing - considerations.

- -

Our hope is to help each developer find their own answer to - the never ending question: Is there a core skill set that can enable me - to efficiently create elegant solutions that have the desired - reach.

- -

Please sign up for free & join us on the journey.

- -

Best regards,
Douglas McCarroll & Ira Hochman
- Co-Organizers, Full Stack Boston

- lon: -71.08999633789062 - group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/9/0/7/2/highres_442536978.jpeg' - photo_id: 442536978 - photo_link: 'http://photos2.meetupstatic.com/photos/event/9/0/7/2/600_442536978.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/9/0/7/2/thumb_442536978.jpeg' - join_mode: open - organizer: - member_id: 11247608 - name: Ira Hochman - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/7/0/5/a/highres_101848762.jpeg' - photo_id: 101848762 - photo_link: 'http://photos2.meetupstatic.com/photos/member/7/0/5/a/member_101848762.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/7/0/5/a/thumb_101848762.jpeg' - members: 336 - name: Full Stack Boston - state: MA - lat: 42.369998931884766 - who: AppDevs - - utc_offset: -18000000 - country: US - visibility: public - city: Austin - timezone: US/Central - created: 1356710983000 - link: 'http://www.meetup.com/Austin-MongoDB-User-Group/' - rating: 4.46 - description: "

This is a group for those interested in learning more about MongoDB--the high performance, schema free, document oriented database. We'll be doing a deep dive into MongoDB each month. If you're interested in sharing your experience, or have specific topics you'd like covered, let us know!

" - lon: -97.76000213623047 - group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/7/8/a/2/highres_191010882.jpeg' - photo_id: 191010882 - photo_link: 'http://photos4.meetupstatic.com/photos/event/7/8/a/2/600_191010882.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/7/8/a/2/thumb_191010882.jpeg' - join_mode: open - organizer: - member_id: 47839632 - name: MongoDB - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/highres_243915101.jpeg' - photo_id: 243915101 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/a/f/d/member_243915101.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/thumb_243915101.jpeg' - members: 603 - name: Austin MongoDB User Group - state: TX - lat: 30.290000915527344 - who: MongoDB Fans - - utc_offset: -14400000 - country: US - visibility: public - city: Pittsburgh - timezone: US/Eastern - created: 1361828463000 - link: 'http://www.meetup.com/Pittsburgh-MongoDB-User-Group/' - rating: 4.13 - description: '

This is a group for people looking to learn more about the open source, NoSQL database, MongoDB. This is a community to grow your knowledge base and network with others.

' - lon: -79.91999816894531 - group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/c/a/0/highres_208803232.jpeg' - photo_id: 208803232 - photo_link: 'http://photos1.meetupstatic.com/photos/event/c/a/0/600_208803232.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/c/a/0/thumb_208803232.jpeg' - join_mode: open - organizer: - member_id: 47839632 - name: MongoDB - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/highres_243915101.jpeg' - photo_id: 243915101 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/a/f/d/member_243915101.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/thumb_243915101.jpeg' - members: 154 - name: Pittsburgh MongoDB User Group - state: PA - lat: 40.470001220703125 - who: MongoDB Fans - - utc_offset: -14400000 - country: US - visibility: public - city: West Palm Beach - timezone: US/Eastern - created: 1361982215000 - link: 'http://www.meetup.com/palm-beach-mongodb-user-group/' - rating: 4.67 - description: "

This is a group for those interested in learning more about the Open Source database MongoDB. All levels of experience are welcome. So whether you've been playing with MongoDB for a few months, or have built and scaled a robust MongoDB powered website, this group is for you. We will plan to meet once a month and will focus on presentations, hackathons and study sessions. We'd love to hear what you'd like to see out of the group and how you can help contribute to this growing community.

" - lon: -80.05999755859375 - group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/6/8/6/c/highres_209246732.jpeg' - photo_id: 209246732 - photo_link: 'http://photos4.meetupstatic.com/photos/event/6/8/6/c/600_209246732.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/6/8/6/c/thumb_209246732.jpeg' - join_mode: open - organizer: - member_id: 183921833 - name: jeremy lawson - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/4/a/4/4/highres_244219012.jpeg' - photo_id: 244219012 - photo_link: 'http://photos2.meetupstatic.com/photos/member/4/a/4/4/member_244219012.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/4/a/4/4/thumb_244219012.jpeg' - members: 46 - name: Palm Beach MongoDB User Group - state: FL - lat: 26.709999084472656 - who: MongoDB Fans - - utc_offset: -14400000 - country: CA - visibility: public - city: Montréal - timezone: Canada/Eastern - created: 1362153650000 - link: 'http://www.meetup.com/Montreal-MUG/' - rating: 4.5 - description: "

This is a group for those interested in learning more about the Open Source database MongoDB. All levels of experience are welcome. So whether you've been playing with MongoDB for a few months, or have built and scaled a robust MongoDB powered website, this group is for you. We will plan to meet once a month and will focus on presentations, hackathons and study sessions. We'd love to hear what you'd like to see out of the group and how you can help contribute to this growing community.

" - lon: -73.56999969482422 - group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/e/8/6/4/highres_211319492.jpeg' - photo_id: 211319492 - photo_link: 'http://photos1.meetupstatic.com/photos/event/e/8/6/4/600_211319492.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/e/8/6/4/thumb_211319492.jpeg' - join_mode: open - organizer: - member_id: 47839632 - name: MongoDB - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/highres_243915101.jpeg' - photo_id: 243915101 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/a/f/d/member_243915101.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/thumb_243915101.jpeg' - members: 189 - name: Montreal MongoDB User Group - state: QC - lat: 45.5099983215332 - who: MongoDB Fans - - utc_offset: -25200000 - country: US - visibility: public - city: Berkeley - timezone: US/Pacific - created: 1369354897000 - link: 'http://www.meetup.com/Angular-js-Meetup/' - rating: 4.95 - description: >- -

East Bay AngularJS. We'll be talking about Angular 2, ES6, - Typescript, and JavaScript in general.

- -

If you would like to present about Angular 2 topics, please contact - me through the link in the sidebar.

- -

If you're interested in helping to organize events, or know of - a good venue, send an email. Be sure to also join the Code Self Study - group!

- lon: -122.26000213623047 - join_mode: open - organizer: - member_id: 139953442 - name: Josh - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/c/a/2/9/highres_253071753.jpeg' - photo_id: 253071753 - photo_link: 'http://photos4.meetupstatic.com/photos/member/c/a/2/9/member_253071753.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/c/a/2/9/thumb_253071753.jpeg' - members: 517 - name: East Bay AngularJS + - state: CA - lat: 37.869998931884766 - who: Members - - utc_offset: -14400000 - country: US - visibility: public - city: Detroit - timezone: US/Eastern - created: 1382636291000 - link: 'http://www.meetup.com/Detroit-MongoDB-User-Group/' - description: '

This group is a place for developers to learn more about the non-relational, open source, document-oriented database MongoDB. MongoDB is the leading NoSQL database and many people are interested in learning more about it. So if you are facing challenges with MySQL or Postgres or Oracle and want to explore a more flexible, scalable, and fun alternative, please join us at one of our monthly sessions.

' - lon: -83.12999725341797 - group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/b/b/9/6/highres_301308022.jpeg' - photo_id: 301308022 - photo_link: 'http://photos4.meetupstatic.com/photos/event/b/b/9/6/600_301308022.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/b/b/9/6/thumb_301308022.jpeg' - join_mode: open - organizer: - member_id: 47839632 - name: MongoDB - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/highres_243915101.jpeg' - photo_id: 243915101 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/a/f/d/member_243915101.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/thumb_243915101.jpeg' - members: 165 - name: Detroit MongoDB User Group - state: MI - lat: 42.34000015258789 - who: MonogDB Fans - - utc_offset: -18000000 - country: US - visibility: public - city: Nashville - timezone: US/Central - created: 1383003266000 - link: 'http://www.meetup.com/Nashville-MongoDB-User-Group/' - rating: 4.7 - description: '

This group is a place for developers to learn more about the open source, JSON-based document database MongoDB. MongoDB is the leading NoSQL database, and is already serving several Fortune 500 and Global 500 companies. So if you are facing challenges with MySQL, Postgres or Oracle and want to explore a more flexible, scalable alternative, please join us at one of our monthly sessions. We typically meet on the third Wednesday of the month, have some pizza and network, and enjoy a presentation on MongoDB.

' - lon: -86.79000091552734 - group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/9/9/2/2/highres_301359202.jpeg' - photo_id: 301359202 - photo_link: 'http://photos1.meetupstatic.com/photos/event/9/9/2/2/600_301359202.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/9/9/2/2/thumb_301359202.jpeg' - join_mode: open - organizer: - member_id: 117650942 - name: Bertin Nono - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/7/8/7/a/highres_155850842.jpeg' - photo_id: 155850842 - photo_link: 'http://photos1.meetupstatic.com/photos/member/7/8/7/a/member_155850842.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/7/8/7/a/thumb_155850842.jpeg' - members: 177 - name: Nashville MongoDB User Group - state: TN - lat: 36.16999816894531 - who: Nash Mongoers - - utc_offset: -18000000 - country: US - visibility: public - city: Dallas - timezone: US/Central - created: 1394631256000 - link: 'http://www.meetup.com/Dallas-mongoDB-Meetup/' - rating: 4.82 - description: "

This is a group for those interested in learning more about the Open Source database MongoDB. All levels of experience are welcome. So whether you've been playing with MongoDB for a few months, or have built and scaled a robust MongoDB powered website, this group is for you. We will plan to meet once a month and will focus on presentations, hackathons and study sessions. We'd love to hear what you'd like to see out of the group and how you can help contribute to this growing community.

" - lon: -96.80000305175781 - join_mode: open - organizer: - member_id: 47839632 - name: MongoDB - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/highres_243915101.jpeg' - photo_id: 243915101 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/a/f/d/member_243915101.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/thumb_243915101.jpeg' - members: 702 - name: Dallas mongoDB Meetup - state: TX - lat: 32.790000915527344 - who: MongoDB Fans - - utc_offset: -14400000 - country: US - visibility: public - city: Miami - timezone: US/Eastern - created: 1394801852000 - link: 'http://www.meetup.com/Miami-MongoDB-Meetup/' - rating: 5 - description: "This is a group for those interested in learning more about the Open Source database MongoDB. All levels of experience are welcome. So whether you've been playing with MongoDB for a few months, or have built and scaled a robust MongoDB powered website, this group is for you. We will plan to meet once a month and will focus on presentations, hackathons and study sessions. We'd love to hear what you'd like to see out of the group and how you can help contribute to this growing community." - lon: -80.23999786376953 - join_mode: open - organizer: - member_id: 47839632 - name: MongoDB - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/highres_243915101.jpeg' - photo_id: 243915101 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/a/f/d/member_243915101.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/thumb_243915101.jpeg' - members: 131 - name: Miami MongoDB Meetup - state: FL - lat: 25.729999542236328 - who: Members - - utc_offset: -14400000 - country: US - visibility: public_limited - city: Lakewood - timezone: US/Eastern - created: 1399392139000 - link: 'http://www.meetup.com/Lakewood-Software-Developers/' - rating: 4.91 - description: '

This is a meetup for frum web developers from the Lakewood community interested in learning, discussing and showcasing the latest web related tools and technologies. All skill levels are welcome. We hope to meet once a month.

' - lon: -74.19999694824219 - join_mode: approval - organizer: - member_id: 127780642 - name: Mordy Tikotzky - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/a/1/e/c/highres_169601452.jpeg' - photo_id: 169601452 - photo_link: 'http://photos4.meetupstatic.com/photos/member/a/1/e/c/member_169601452.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/a/1/e/c/thumb_169601452.jpeg' - members: 72 - name: Lakewood Software Developers - state: NJ - lat: 40.08000183105469 - who: Developers - - utc_offset: -25200000 - country: CA - visibility: public - city: Victoria - timezone: Canada/Pacific - created: 1407353059000 - link: 'http://www.meetup.com/Victoria-MongoDB-Meetup/' - description: 'This is a group for those interested in learning more about MongoDB!' - lon: -123.29000091552734 - join_mode: open - organizer: - member_id: 47839632 - name: MongoDB - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/highres_243915101.jpeg' - photo_id: 243915101 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/a/f/d/member_243915101.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/thumb_243915101.jpeg' - members: 22 - name: Victoria MongoDB Meetup - state: BC - lat: 48.459999084472656 - who: MongoDB Fans - - utc_offset: -18000000 - country: US - visibility: public - city: Memphis - timezone: US/Central - created: 1407426770000 - link: 'http://www.meetup.com/Memphis-MongoDB-User-Group/' - description: 'Welcome: huMONGOus enthusiasts, tinkerers, and friends of data driven applications' - lon: -89.86000061035156 - join_mode: open - organizer: - member_id: 47839632 - name: MongoDB - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/highres_243915101.jpeg' - photo_id: 243915101 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/a/f/d/member_243915101.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/a/f/d/thumb_243915101.jpeg' - members: 25 - name: Memphis MongoDB User Group - state: TN - lat: 35.119998931884766 - who: Mongoloids - - utc_offset: -14400000 - country: US - visibility: public - city: Melbourne - timezone: US/Eastern - created: 1411230668000 - link: 'http://www.meetup.com/GDGSpaceCoast/' - rating: 4.97 - description: >- -

Google Developer Group (GDG) Space Coast is a technology user group - that meets to discuss the latest Google Technologies, Tools, SDKs, and - APIs. We focus on learning about the broad spectrum of technologies - provided by Google and finding ways that these technologies can be - applied. This includes discussions of the technologies from a number of - angles (startups, corporations, and individuals).

- -


Here are a few of the topics that we have covered so - far:
Android, AngularJS, Chrome, Chrome OS, - Material Design, Google App Engine, Google Play Games Services, Google - Cloud Platform, Google Maps, Dart, AngularDart, Polymer, Web - Components, Ingress, Android Studio, GWT, JavaScript, Git, GitHub, - NodeJS, TypeScript, Google Analytics, and more.

- -


In addition to regular speaker focused meetings, we also - organize code labs, hackathons, social events, DevFests, and study - jams. We also assist with local TrepHub and Startup Weekend - events.

- -


The group is free to attend and open to all who are interested - in discussing and learning more about software development - with tools and technologies from Google or the open-source - community.

- -


If you would like to stay up to date with events and - activities of the group, please follow us on Google+ and - bookmark our website. If you - would like to take part in discussions about the group, future events, - and future content, please join the GDG - Space Coast community linked from our About page on Google+.

- -

DisclaimerGDG Space Coast is an independent group; - our activities and the opinions expressed here should in no way be - linked to Google, the corporation.

- lon: -80.62999725341797 - group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/c/9/d/8/highres_411591672.jpeg' - photo_id: 411591672 - photo_link: 'http://photos4.meetupstatic.com/photos/event/c/9/d/8/600_411591672.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/c/9/d/8/thumb_411591672.jpeg' - join_mode: open - organizer: - member_id: 90953272 - name: Michael Prentice - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/8/5/4/0/highres_228214112.jpeg' - photo_id: 228214112 - photo_link: 'http://photos4.meetupstatic.com/photos/member/8/5/4/0/member_228214112.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/8/5/4/0/thumb_228214112.jpeg' - members: 258 - name: GDG Space Coast - Google Developers Group - state: FL - lat: 28.06999969482422 - who: Developers - - utc_offset: -25200000 - country: US - visibility: public - city: Los Angeles - timezone: US/Pacific - created: 1418526544000 - link: 'http://www.meetup.com/Dev-Games-2015/' - description: '

This is the Developer Olympics. Network with like-minded devs, make cool stuff, have a blast doing it.  We will have a series of short, timed coding challenges and there will be an opportunity to share stories from the trenches - how did that design pattern or library work in a real-world situation, on the job? What new frameworks and libraries are you interested in learning about?

' - lon: -118.33000183105469 - group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/a/f/highres_445320175.jpeg' - photo_id: 445320175 - photo_link: 'http://photos4.meetupstatic.com/photos/event/a/f/600_445320175.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/a/f/thumb_445320175.jpeg' - join_mode: open - organizer: - member_id: 10518454 - name: Adam Haley - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/8/1/4/4/highres_87393092.jpeg' - photo_id: 87393092 - photo_link: 'http://photos2.meetupstatic.com/photos/member/8/1/4/4/member_87393092.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/8/1/4/4/thumb_87393092.jpeg' - members: 105 - name: 'Dev Games!' - state: CA - lat: 34.099998474121094 - who: Devs - - utc_offset: -18000000 - country: US - visibility: public - city: Saint Louis - timezone: US/Central - created: 1421770683000 - link: 'http://www.meetup.com/STL-AngularJS/' - rating: 5 - description: >- -

Come to learn, discuss and get to know fellow AngularJS developers - in the STL area. We love seeing new faces and most of the meetups end - with some great discussion!

- -

If you are interested in speaking please fill out the form - here: http://goo.gl/forms/xlceG63Ukq and we will get you on the - schedule as soon as possible.

- lon: -90.25 - join_mode: open - organizer: - member_id: 84712232 - name: Yomi Toba - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/8/9/4/f/highres_243095151.jpeg' - photo_id: 243095151 - photo_link: 'http://photos3.meetupstatic.com/photos/member/8/9/4/f/member_243095151.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/8/9/4/f/thumb_243095151.jpeg' - members: 392 - name: STL AngularJS Meetup - state: MO - lat: 38.63999938964844 - who: Coders - - utc_offset: -18000000 - country: US - visibility: public_limited - city: Plano - timezone: US/Central - created: 1423845325000 - link: 'http://www.meetup.com/amRobotics/' - rating: 5 - description: >- -

The focus of our - community is on developing and hacking the latest technology using - JavaScript, Python, IoT, and LittleBits in order to create and enjoy - a better way of life through technology.

- -

AmRobotics will - share information on (and host) several local Maker Faire & - Hackathon events in 2016. Although group presentations and discussions - are encouraged, our approach will be predominately ’hands on’.

- -

We meet the last Monday of every other month starting March - 2016.

- -

Suggestions encouraged and ALL SKILL LEVELS - welcome!

- -



- -

Check out the links below for more info on the international - community and sponsors.

- -

International Communities:

- -

International - NodeBots Day

- -

NodeBots

- -

PyCon

- -

Arduino Day 2016

- -


- -

Sponsors:

- -

AmRobotics

- -

TechBubble Info

- -

Zaniac - Southlake

- -

- lon: -96.80000305175781 - group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/c/c/c/6/highres_446572422.jpeg' - photo_id: 446572422 - photo_link: 'http://photos3.meetupstatic.com/photos/event/c/c/c/6/600_446572422.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/c/c/c/6/thumb_446572422.jpeg' - join_mode: open - organizer: - member_id: 9932393 - name: Adam Mosley - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/d/1/a/2/highres_252413666.jpeg' - photo_id: 252413666 - photo_link: 'http://photos3.meetupstatic.com/photos/member/d/1/a/2/member_252413666.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/d/1/a/2/thumb_252413666.jpeg' - members: 180 - name: 'amRobotics - LittleBits, JavaScript, Python, IoT, and More!' - state: TX - lat: 33.08000183105469 - who: Makers - - utc_offset: -14400000 - country: US - visibility: public - city: Orlando - timezone: US/Eastern - created: 1437594099000 - link: 'http://www.meetup.com/Orlando-MongoDB-User-Group/' - rating: 5 - description: '

This group is a place for developers, systems admins, and tech enthusiasts to learn more about the open source, document-oriented database MongoDB.  MongoDB is the leading NoSQL database and many organizations are adopting this technology.  If you are facing challenges with MySQL or Postgres or Oracle and want to explore a more flexible, scalable alternative, please join us at one of our sessions.  

' - lon: -81.37000274658203 - group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/6/2/3/0/highres_440065136.jpeg' - photo_id: 440065136 - photo_link: 'http://photos2.meetupstatic.com/photos/event/6/2/3/0/600_440065136.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/6/2/3/0/thumb_440065136.jpeg' - join_mode: open - organizer: - member_id: 47839632 - name: MongoDB - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/b/c/8/f/highres_242928271.jpeg' - photo_id: 242928271 - photo_link: 'http://photos2.meetupstatic.com/photos/member/b/c/8/f/member_242928271.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/b/c/8/f/thumb_242928271.jpeg' - members: 160 - name: Orlando MongoDB User Group - state: FL - lat: 28.540000915527344 - who: Members - - utc_offset: -25200000 - country: US - visibility: public - city: Santa Monica - timezone: US/Pacific - created: 1439313931000 - link: 'http://www.meetup.com/ReactLA-User-Group/' - rating: 4.44 - description: "

ReactJS is one of the many modern JS technology that has fundamentally changed the way we create front end application. Let's get together, share our best practices, and progress this technology forward. Most important of all, let's all help build a strong community of tech enthusiast in LA

" - lon: -118.5 - group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/d/9/1/1/highres_442555569.jpeg' - photo_id: 442555569 - photo_link: 'http://photos2.meetupstatic.com/photos/event/d/9/1/1/600_442555569.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/d/9/1/1/thumb_442555569.jpeg' - join_mode: open - organizer: - member_id: 3476970 - name: jon lau - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/6/b/7/5/highres_248727509.jpeg' - photo_id: 248727509 - photo_link: 'http://photos2.meetupstatic.com/photos/member/6/b/7/5/member_248727509.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/6/b/7/5/thumb_248727509.jpeg' - members: 305 - name: ReactLA User Group - state: CA - lat: 34.02000045776367 - who: Reactor - - utc_offset: -14400000 - country: US - visibility: public - city: New York - timezone: US/Eastern - created: 1442160756000 - link: 'http://www.meetup.com/fullstack360/' - rating: 5 - description: '

Want to learn frontend development, backend development and iOS programming? In other words, want to be a full stack developer? This meetup is dedicated teaching students all areas of the "stack." Each week, we will demo a new concept live and explain the basics behind the implementation. Join us Mondays from 6:30pm to 9:00pm to learn something new, meet like-minded people, and begin your journey to becoming a full stack developer

' - lon: -73.9800033569336 + link: 'http://www.meetup.com/beerjs-tallahassee/' + name: Beer.js Tallahassee + description: |- +

A popular Silicon Valley Meetup, Beer.js, has come to Tallahassee! 

+

Beer.js - Tallahassee hosts events involving the two of mankind's greatest inventions; Beer and JavaScript. Watch us at https://github.com/beerjs/tallahassee for more information.

+ lon: -84.04000091552734 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/d/5/b/1/highres_447414705.jpeg' - photo_id: 447414705 - photo_link: 'http://photos4.meetupstatic.com/photos/event/d/5/b/1/600_447414705.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/d/5/b/1/thumb_447414705.jpeg' - join_mode: open - organizer: - member_id: 67402742 - name: The Full Stack - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/6/7/1/3/highres_254366387.jpeg' - photo_id: 254366387 - photo_link: 'http://photos3.meetupstatic.com/photos/member/6/7/1/3/member_254366387.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/6/7/1/3/thumb_254366387.jpeg' - members: 223 - name: FS360 Development Workshops - state: NY - lat: 40.75 - who: devs - - utc_offset: -21600000 - country: US - visibility: public - city: Provo - timezone: US/Mountain - created: 1444861670000 - link: 'http://www.meetup.com/GUN-User-Group/' - rating: 5 - description: >- -

This group is for anyone interested in databases from start-up - entrepreneurs to web developers. GUN is a database written entirely in - JavaScript and super hackable (MIT/Apache2/ZLIB) with these cool - features:

- -

• Like Firebase? GUN is an Open Source Firebase, with all the - realtime goodies included!

- -

• Like Bitcoin? GUN is fully peer-to-peer, which means no - DevOps or SysAdmin work is required!

- -

• It is Offline-First so you never have to worry about writing - ajax or scared if your app disconnects.

- -

• Can't stand the NoSQL/SQL debate? GUN is both relational and - document oriented, using graphs!

- -

We're just going to have a chill get-together, eat food, talk about - crazy mad science JavaScript, and learn about gun, get started using - gun, and hack on gun! Until then, check out http://gun.js.org - and https://github.com/amark/gun, - and feel free to contact us at https://gitter.im/amark/gun or - https://groups.google.com/forum/#!forum/g-u-n. -

- lon: -111.62999725341797 + photo_link: 'http://photos3.meetupstatic.com/photos/event/a/a/2/600_444302722.jpeg' + lat: 30.600000381469727 + - country: US + city: Reston + link: 'http://www.meetup.com/Pragmatic-Innovators/' + name: Pragmatic Innovators + description: "This is a group for anyone interested in leading software development languages, technologies, and practices. All skill levels are welcome. Topics discussed will include ReactJS, ReactJS Native, Scala, Single-Page Application Technologies, Mobile Application Development, Web Design, and Data Analytics. In-Person meetups will be held at our sponsor's (Pragmatics) corporate office in Reston." + lon: -77.33999633789062 + lat: 38.959999084472656 + - country: US + city: Austin + link: 'http://www.meetup.com/Mueller-Technology-Collablorative/' + name: Mueller Technology Collablorative + description: '

Come join us for socializing and learning. Our group is focused on technoogy and sharing. Whether you are a software developer working with Node.js or a graphic designer living in InDesign, you will find people who share your love of technology culture.

' + lon: -97.75 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/c/e/a/f/highres_446572911.jpeg' - photo_id: 446572911 - photo_link: 'http://photos2.meetupstatic.com/photos/event/c/e/a/f/600_446572911.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/c/e/a/f/thumb_446572911.jpeg' - join_mode: open - organizer: - member_id: 12984469 - name: Mark Nadal - photo: - photo_id: 10787314 - photo_link: 'http://photos1.meetupstatic.com/photos/member/b/8/d/2/member_10787314.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/b/8/d/2/thumb_10787314.jpeg' - members: 71 - name: GUN User Group - state: UT - lat: 40.220001220703125 - who: secret agents - - utc_offset: -18000000 - country: US - visibility: public + photo_link: 'http://photos1.meetupstatic.com/photos/event/9/e/4/d/600_444340525.jpeg' + lat: 30.219999313354492 + - country: US + city: Fresno + link: 'http://www.meetup.com/Free-Code-Camp-Fresno/' + name: Free Code Camp Fresno + description: 'This is the Fresno chapter of Free Code Camp. Share your knowledge, learn new stuff, support one another through tough times. We also offer opportunities to give/hear a talk, pair up on a project, hangout and talk about code, and so much more. ' + lon: -119.80000305175781 + lat: 36.84000015258789 + - country: US + city: Portland + link: 'http://www.meetup.com/Portland-New-Relic-User-Group/' + name: Portland New Relic User Group + description: "Calling all Portland New Relic Users! This user group is designed to foster the community and connect you with the resources & peers you need to get the most out of New Relic's software analytics suite.\n\nSome of topics we'll discuss:\n- Application Performance Monitoring\n- Understanding Apdex\n- Custom Dashboards & Alerts\n- New Relic Insights / NRQL\n- More!\n\nEach event features talks from New Relic users and pros alike, with ample time for food, drinks, networking, and discussion. This is a great opportunity to get to know and learn best practices from other New Relic users in the area. \n\nAll New Relic users or those interested are welcome!" + lon: -122.69000244140625 + lat: 45.5 + - country: US + city: San Francisco + link: 'http://www.meetup.com/Hire-Front-End-Developers/' + name: Hire Front End Developers + description: |- +

It's never been a better time to be a front end developer, or a more challenging time for companies to find an appropriate fit in the Bay Area. If you'd like to meet enthusiasts of technologies like angular.js, ember.js, meeteor, react, html5, css, UX, and other front end tools, join us!

+

We're excited to provide free opportunities for talent and companies to meet in the real world, and pair awesome front end devs with competitive and interesting companies. Typical evenings include interviews of top companies and pitches by startups that are looking for talent, followed by a mixer.

+

All companies in attendance offer competitive salaries. We're here to make real connections between equals. Top flight companies meeting top talent is what we're about.

+

Some presenting companies from past events include: HumbleBundle, Enjoytech, Adobe, Tapjoy, MatterMark, Razer, and many more.

+ lon: -122.41999816894531 + lat: 37.779998779296875 + - country: US + city: San Francisco + link: 'http://www.meetup.com/Hire-node-JS-developers/' + name: Hire Node Developers + description: |- +

It's never been a better time to be node developer, or a more challenging time for companies to find an appropriate fit in the Bay Area. We're excited to provide free opportunities for talent and companies to meet in the real world, and pair awesome server side devs with competitive and interesting companies. 

+

We're excited to provide free opportunities for talent and companies to meet in the real world, and pair awesome front end devs with competitive and interesting companies. Typical evenings include interviews of top companies and pitches by startups that are looking for talent, followed by a mixer.

+

All companies in attendance offer competitive salaries. We're here to make real connections between equals. Top flight companies meeting top talent is what we're about.

+

Some presenting companies from past events include: HumbleBundle, Enjoytech, Adobe, Tapjoy, MatterMark, Razer, and many more.

+


+ lon: -122.41999816894531 + lat: 37.779998779296875 + - country: US city: Milwaukee - timezone: US/Central - created: 1449871656000 link: 'http://www.meetup.com/ReactJS-Wisconsin/' - rating: 4.92 - description: >- -

ReactJS is an incredible JavaScript library started by - Facebook.  Join us if you'd like to learn more or if you have your - own ReactJs experience to share that others can benefit from. -

- -

We're focused on all things ReactJS - on client or server, for html, - canvas or other.

- -

http://facebook.github.io/react/

- + name: ReactJS Wisconsin Meetup + description: |- +

ReactJS is an incredible JavaScript library started by Facebook.  Join us if you'd like to learn more or if you have your own ReactJs experience to share that others can benefit from.

+

We're focused on all things ReactJS - on client or server, for html, canvas or other.

+

http://facebook.github.io/react/


lon: -87.9000015258789 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/9/a/0/b/highres_447159435.jpeg' - photo_id: 447159435 photo_link: 'http://photos2.meetupstatic.com/photos/event/9/a/0/b/600_447159435.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/9/a/0/b/thumb_447159435.jpeg' - join_mode: open - organizer: - member_id: 183393735 - name: Ezekiel Chentnik - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/7/8/9/6/highres_254190870.jpeg' - photo_id: 254190870 - photo_link: 'http://photos4.meetupstatic.com/photos/member/7/8/9/6/member_254190870.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/7/8/9/6/thumb_254190870.jpeg' - members: 162 - name: ReactJS Wisconsin Meetup - state: WI lat: 43.04999923706055 - who: Nerds - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Saint Louis - timezone: US/Central - created: 1450281290000 link: 'http://www.meetup.com/node-jSTL/' - rating: 5 + name: node.jSTL description: '

Interested in building apps, orchestrating thousands of IoT devices, or building incredibly robust architecture? Want to learn about the language powering Netflix, Paypal, and dozens of other tech giants? Join us as we talk and learn about the incredibly popular Node.JS.

' lon: -90.20999908447266 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/b/d/6/2/highres_446088482.jpeg' - photo_id: 446088482 photo_link: 'http://photos4.meetupstatic.com/photos/event/b/d/6/2/600_446088482.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/b/d/6/2/thumb_446088482.jpeg' - join_mode: open - organizer: - member_id: 10891431 - name: Keith Chester - photo: - photo_id: 54897502 - photo_link: 'http://photos1.meetupstatic.com/photos/member/e/0/9/e/member_54897502.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/e/0/9/e/thumb_54897502.jpeg' - members: 182 - name: node.jSTL - state: MO lat: 38.630001068115234 - who: node.js coders - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Tempe - timezone: US/Arizona - created: 1450767796000 link: 'http://www.meetup.com/EmberJS-Phoenix/' - rating: 4.5 + name: EmberJS-Phoenix description: '

A meetup to discuss aspects of the Ember JS framework

' lon: -111.93000030517578 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/6/c/5/c/highres_445407740.jpeg' - photo_id: 445407740 photo_link: 'http://photos4.meetupstatic.com/photos/event/6/c/5/c/600_445407740.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/6/c/5/c/thumb_445407740.jpeg' - join_mode: open - organizer: - member_id: 141370532 - name: Sid Tantia - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/4/6/a/2/highres_212178082.jpeg' - photo_id: 212178082 - photo_link: 'http://photos4.meetupstatic.com/photos/member/4/6/a/2/member_212178082.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/4/6/a/2/thumb_212178082.jpeg' - members: 56 - name: EmberJS-Phoenix - state: AZ lat: 33.369998931884766 - who: Embereños - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Orlando - timezone: US/Eastern - created: 1451919203000 link: 'http://www.meetup.com/Orlando-Slack-Developers-Meetup/' - rating: 5 + name: Orlando Slack Developers Meetup description: '

A place for programmers, product designers, and slack interested people to come get updated on what is happening inside the wonderful world of Slack Development.

' lon: -81.37000274658203 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/8/f/d/highres_447002301.jpeg' - photo_id: 447002301 photo_link: 'http://photos2.meetupstatic.com/photos/event/8/f/d/600_447002301.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/8/f/d/thumb_447002301.jpeg' - join_mode: open - organizer: - member_id: 197621769 - name: Rob Guilfoyle - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/1/8/8/a/highres_252606282.jpeg' - photo_id: 252606282 - photo_link: 'http://photos1.meetupstatic.com/photos/member/1/8/8/a/member_252606282.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/1/8/8/a/thumb_252606282.jpeg' - members: 45 - name: Orlando Slack Developers Meetup - state: FL lat: 28.540000915527344 - who: slackers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Francisco - timezone: US/Pacific - created: 1451984479000 link: 'http://www.meetup.com/Serverless/' + name: Serverless description: "A group for anyone interested in building web, mobile and Internet-of-Things applications with serverless architectures using the Serverless Framework and more! We'll focus heavily on Amazon Web Services and discuss AWS Lambda as the focal point of AWS." lon: -122.41999816894531 - join_mode: open - organizer: - member_id: 60735482 - name: Austen Collins - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/c/3/d/4/highres_232010132.jpeg' - photo_id: 232010132 - photo_link: 'http://photos4.meetupstatic.com/photos/member/c/3/d/4/member_232010132.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/c/3/d/4/thumb_232010132.jpeg' - members: 198 - name: Serverless - state: CA lat: 37.779998779296875 - who: Members - - utc_offset: -14400000 - country: CA - visibility: public + - country: CA city: Montréal - timezone: Canada/Eastern - created: 1452016063000 link: 'http://www.meetup.com/Oracle-Developers-Montreal/' + name: Oracle Developers Montréal description: '

This is a group for technology enthusiasts and developers of all skill levels. The group is designed to bring you updates and innovations in technology from Oracle through meetings, events, workshops and hands-on experiences.

' lon: -73.56999969482422 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/4/9/e/a/highres_447198922.jpeg' - photo_id: 447198922 photo_link: 'http://photos1.meetupstatic.com/photos/event/4/9/e/a/600_447198922.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/4/9/e/a/thumb_447198922.jpeg' - join_mode: open - organizer: - member_id: 186241262 - name: Carlos Castorani - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/1/4/c/2/highres_245405314.jpeg' - photo_id: 245405314 - photo_link: 'http://photos4.meetupstatic.com/photos/member/1/4/c/2/member_245405314.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/1/4/c/2/thumb_245405314.jpeg' - members: 58 - name: Oracle Developers Montréal - state: QC lat: 45.5 - who: Oracle Developers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Francisco - timezone: US/Pacific - created: 1452467969000 link: 'http://www.meetup.com/SF-JavaScript-Workshops/' - rating: 5 - description: >- -

Welcome! Learning JavaScript in SF? Catching up on the latest - framework? We host workshops in React, Node, and Angular to - help frontend developers get up to speed quickly.

- -

Let us know if you want a workshop you don't see, and we will try - and find one for you!

- + name: SF JavaScript Workshops + description: |- +

Welcome! Learning JavaScript in SF? Catching up on the latest framework? We host workshops in React, Node, and Angular to help frontend developers get up to speed quickly.

+

Let us know if you want a workshop you don't see, and we will try and find one for you!

Best,

-

Frank Kotsianas

-

Organizer

lon: -122.41999816894531 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/1/b/d/4/highres_445807124.jpeg' - photo_id: 445807124 photo_link: 'http://photos4.meetupstatic.com/photos/event/1/b/d/4/600_445807124.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/1/b/d/4/thumb_445807124.jpeg' - join_mode: open - organizer: - member_id: 53459272 - name: Frank Kotsianas - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/1/0/0/d/highres_252784109.jpeg' - photo_id: 252784109 - photo_link: 'http://photos1.meetupstatic.com/photos/member/1/0/0/d/member_252784109.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/1/0/0/d/thumb_252784109.jpeg' - members: 146 - name: SF JavaScript Workshops - state: CA lat: 37.790000915527344 - who: Members - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Portland - timezone: US/Pacific - created: 1452713395000 link: 'http://www.meetup.com/JavaScript-and-the-Internet-of-Things/' - rating: 5 - description: >- -

Want to talk about Node.js on the Raspberry Pi or Tessel 2? How - about JavaScript MicroControllers like the Espruino?

- -

All meetup attendies, sponsors and speakers agree to abide by the code of conduct.

- lon: -122.63999938964844 - join_mode: open - organizer: - member_id: 10861813 - name: Andrew Chalkley - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/5/1/4/4/highres_252920804.jpeg' - photo_id: 252920804 - photo_link: 'http://photos4.meetupstatic.com/photos/member/5/1/4/4/member_252920804.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/5/1/4/4/thumb_252920804.jpeg' - members: 201 name: JavaScript and the Internet of Things Meetup - state: OR + description: |- +

Want to talk about Node.js on the Raspberry Pi or Tessel 2? How about JavaScript MicroControllers like the Espruino?

+

All meetup attendies, sponsors and speakers agree to abide by the code of conduct.

+ lon: -122.63999938964844 lat: 45.54999923706055 - who: JavaScript Everywherers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Francisco - timezone: US/Pacific - created: 1452816551000 link: 'http://www.meetup.com/Real-World-React/' - rating: 5 + name: Real World React description: 'Talks and workshops about using React in real-world, production applications.' lon: -122.41000366210938 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/b/4/1/8/highres_445906104.jpeg' - photo_id: 445906104 photo_link: 'http://photos4.meetupstatic.com/photos/event/b/4/1/8/600_445906104.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/b/4/1/8/thumb_445906104.jpeg' - join_mode: open - organizer: - member_id: 106587352 - name: Benjamin Dunphy - photo: - photo_id: 190929852 - photo_link: 'http://photos3.meetupstatic.com/photos/member/2/6/7/c/member_190929852.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/2/6/7/c/thumb_190929852.jpeg' - members: 430 - name: Real World React - state: CA lat: 37.77000045776367 - who: Developers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Pomona - timezone: US/Pacific - created: 1452828913000 link: 'http://www.meetup.com/Pomona_Free_Code_Camp/' - rating: 4 + name: Pomona Free Code Camp description: '

Learn code through free curriculum online @ freecodecamp.com. Join this community for making new friends, gaining support, and participating in live pair programming sessions.

' lon: -117.73999786376953 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/d/2/a/c/highres_446753932.jpeg' - photo_id: 446753932 photo_link: 'http://photos1.meetupstatic.com/photos/event/d/2/a/c/600_446753932.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/d/2/a/c/thumb_446753932.jpeg' - join_mode: open - organizer: - member_id: 103592932 - name: Vick - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/6/8/highres_142080872.jpeg' - photo_id: 142080872 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/6/8/member_142080872.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/3/6/8/thumb_142080872.jpeg' - members: 50 - name: Pomona Free Code Camp - state: CA lat: 34.08000183105469 - who: Campers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Santa Monica - timezone: US/Pacific - created: 1452847375000 link: 'http://www.meetup.com/API-Craft-Los-Angeles/' - description: >- -

A meetup group for people who design and build and test APIs - We - <3 APIs!

- + name: API Craft Los Angeles + description: |- +

A meetup group for people who design and build and test APIs - We <3 APIs!

Topics for meetups include:

-

1. API Design - what makes a good API and what makes a bad API

- -

2. The API development process - spec, dev, test and - documentation

- +

2. The API development process - spec, dev, test and documentation

3. Future direction of APIs - new developments

-

4. The business of APIs - metrics and business models

-

5. API evangelism - internal and external

- -

Learn and share knowledge about REST/Web APIs. Discover what other - professionals in Los Angeles are using to build real-world APIs to - drive their business. We are the LA chapter of the world wide API Craft - Google Group.

+

Learn and share knowledge about REST/Web APIs. Discover what other professionals in Los Angeles are using to build real-world APIs to drive their business. We are the LA chapter of the world wide API Craft Google Group.

lon: -118.5 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/c/1/c/7/highres_445909607.jpeg' - photo_id: 445909607 photo_link: 'http://photos4.meetupstatic.com/photos/event/c/1/c/7/600_445909607.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/c/1/c/7/thumb_445909607.jpeg' - join_mode: open - organizer: - member_id: 8945626 - name: Jason M Sherman - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/6/7/4/5/highres_252926437.jpeg' - photo_id: 252926437 - photo_link: 'http://photos4.meetupstatic.com/photos/member/6/7/4/5/member_252926437.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/6/7/4/5/thumb_252926437.jpeg' - members: 100 - name: API Craft Los Angeles - state: CA lat: 34.02000045776367 - who: API Crafters - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Fresno - timezone: US/Pacific - created: 1452874280000 link: 'http://www.meetup.com/fresno-js/' - rating: 5 + name: Fresno.js JavaScript User Group description: "

Fresno.js is Fresno's premier JavaScript user group. Join us as we learn from some of the best in the community about the state of the art in web, mobile, database and server development . Every first Tuesday is our official meetup where we get together at Bitwise Industries for presentations on the hottest topics in JavaScript.

" lon: -119.79000091552734 - join_mode: open - organizer: - member_id: 81670332 - name: Nick Coe - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/2/6/5/2/highres_252909810.jpeg' - photo_id: 252909810 - photo_link: 'http://photos1.meetupstatic.com/photos/member/2/6/5/2/member_252909810.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/2/6/5/2/thumb_252909810.jpeg' - members: 85 - name: Fresno.js JavaScript User Group - state: CA lat: 36.75 - who: JS Ninjas - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Philadelphia - timezone: US/Eastern - created: 1453301139000 link: 'http://www.meetup.com/Philadelphia-Microservices-Meetup/' - rating: 5 + name: Philadelphia Microservices Meetup description: 'Breaking monoliths and spaghetti architectures into lightweight, decoupled components is a liberating experience. The microservices movement focuses on these small building blocks, enabling greater agility, simpler change, polyglot capability and the chance to really grok large systems. This meetup is for people interested in architecting, designing, deploying and maintaining microservice based architectures.' lon: -75.01000213623047 - join_mode: open - organizer: - member_id: 37154992 - name: Ross Kukulinski - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/8/8/4/c/highres_215314892.jpeg' - photo_id: 215314892 - photo_link: 'http://photos4.meetupstatic.com/photos/member/8/8/4/c/member_215314892.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/8/8/4/c/thumb_215314892.jpeg' - members: 89 - name: Philadelphia Microservices Meetup - state: PA lat: 40.119998931884766 - who: Do-One-Thing-Well-ers - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Boston - timezone: US/Eastern - created: 1453392671000 link: 'http://www.meetup.com/Boston-FinTech-Solutions-Architectures/' + name: Boston FinTech Solutions Architectures description: 'This group is about discussing various IT challenges in Financial Technology including Risk and Compliance, AML, KYC, Customer MDM, Product MDM, Knowledge-bases, Trading Systems, Portfolio Management Systems, etc. We will discuss real world problems, how solutions were designed and implemented, the advantages and issues with different approaches and architectural patterns and anti-patterns.' lon: -71.06999969482422 - join_mode: open - organizer: - member_id: 184976926 - name: Brian Naughton - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/9/1/8/0/highres_244297248.jpeg' - photo_id: 244297248 - photo_link: 'http://photos4.meetupstatic.com/photos/member/9/1/8/0/member_244297248.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/9/1/8/0/thumb_244297248.jpeg' - members: 121 - name: Boston FinTech Solutions Architectures - state: MA lat: 42.36000061035156 - who: FinTech Architects - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Washington - timezone: US/Eastern - created: 1453652829000 link: 'http://www.meetup.com/DC-Ionic-Framework-Meetup/' - rating: 5 - description: >- -

Interested in a hybrid approach to Mobile Development using the - Ionic Framework, Cordova, AngularJS, and many other open source JS - frameworks? Then you've come to the right place :-) . Ionic DC will - cover some of the latest and greatest topics related to the Ionic - Framework ecosystem, including live coding demos, and discussion - showcasing some of the great features and services Ionic has to offer! - This is also a great opportunity to meet and network with other fellow - Ionic developers in the DC area! A wise woman once told me "Your - network is your net worth" 

- -

About the host:  In the summer of 2014, after years of - development using Cordova, I came across the Ionic framework and have - never looked back. Since then my friend/colleague Stephen White and - I have released a sports news application written in Ionic called - SportScoop for Android and iOS (details below).  I'm also very - active in the Ionic Market and has released 3 popular Ionic plugins - used for Ionic applications; Ionic Filter Bar, Ionic Scroll Sista, and - Ionic Content Banner. 

- + name: DC Ionic Framework Meetup + description: |- +

Interested in a hybrid approach to Mobile Development using the Ionic Framework, Cordova, AngularJS, and many other open source JS frameworks? Then you've come to the right place :-) . Ionic DC will cover some of the latest and greatest topics related to the Ionic Framework ecosystem, including live coding demos, and discussion showcasing some of the great features and services Ionic has to offer! This is also a great opportunity to meet and network with other fellow Ionic developers in the DC area! A wise woman once told me "Your network is your net worth" 

+

About the host:  In the summer of 2014, after years of development using Cordova, I came across the Ionic framework and have never looked back. Since then my friend/colleague Stephen White and I have released a sports news application written in Ionic called SportScoop for Android and iOS (details below).  I'm also very active in the Ionic Market and has released 3 popular Ionic plugins used for Ionic applications; Ionic Filter Bar, Ionic Scroll Sista, and Ionic Content Banner. 

SportScoop

- -

 - Web Demo - www.sportscoopapp.com

- -

- iOS - https://itunes.apple.com/us/app/sportscoop/id1035164619?mt... 

- -

- Android - https://play.google.com/store/apps/details?id=com.coseur.s... 

- -

Ionic Plugins (Ionic Filter Bar, Ionic Scroll Sista, Ionic Content - Banner

- -

 - Github - https://github.com/djett41

+

 - Web Demo - www.sportscoopapp.com

+

- iOS - https://itunes.apple.com/us/app/sportscoop/id1035164619?mt... 

+

- Android - https://play.google.com/store/apps/details?id=com.coseur.s... 

+

Ionic Plugins (Ionic Filter Bar, Ionic Scroll Sista, Ionic Content Banner

+

 - Github - https://github.com/djett41

lon: -76.98999786376953 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/8/5/f/5/highres_446194293.jpeg' - photo_id: 446194293 photo_link: 'http://photos4.meetupstatic.com/photos/event/8/5/f/5/600_446194293.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/8/5/f/5/thumb_446194293.jpeg' - join_mode: open - organizer: - member_id: 91426262 - name: Devin Jett - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/2/c/b/f/highres_253211455.jpeg' - photo_id: 253211455 - photo_link: 'http://photos1.meetupstatic.com/photos/member/2/c/b/f/member_253211455.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/2/c/b/f/thumb_253211455.jpeg' - members: 139 - name: DC Ionic Framework Meetup - state: DC lat: 38.880001068115234 - who: Ionicoders - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Louisville - timezone: US/Eastern - created: 1453739250000 link: 'http://www.meetup.com/DoneJS-Louisville/' + name: DoneJS Louisville description: '

A group based on furthering JavaScript along with DoneJS, StealJS, CanJS and DocumentJS development in Louisville. Learn from people who developed the technology. Share your experiences, opinions and questions with fellow JS superheroes!

' lon: -85.77999877929688 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/9/b/4/d/highres_446499757.jpeg' - photo_id: 446499757 photo_link: 'http://photos4.meetupstatic.com/photos/event/9/b/4/d/600_446499757.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/9/b/4/d/thumb_446499757.jpeg' - join_mode: open - organizer: - member_id: 112168522 - name: Matthew Phillips - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/b/0/0/a/highres_253245066.jpeg' - photo_id: 253245066 - photo_link: 'http://photos4.meetupstatic.com/photos/member/b/0/0/a/member_253245066.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/b/0/0/a/thumb_253245066.jpeg' - members: 14 - name: DoneJS Louisville - state: KY lat: 38.25 - who: Doers - - utc_offset: -14400000 - country: CA - visibility: public + - country: CA city: Toronto - timezone: Canada/Eastern - created: 1453819548000 link: 'http://www.meetup.com/Javascript-Study-Toronto/' + name: Javascript Study Toronto description: '

Javascript has been an essential part of the Web development industry.  I started this meetup to make Javascript more accessible to anyone, including myself, who loves to learn more about the technology and build applications with it.

' lon: -79.36000061035156 - join_mode: open - organizer: - member_id: 23292811 - name: Ippei - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/4/a/6/c/highres_22579052.jpeg' - photo_id: 22579052 - photo_link: 'http://photos4.meetupstatic.com/photos/member/4/a/6/c/member_22579052.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/4/a/6/c/thumb_22579052.jpeg' - members: 167 - name: Javascript Study Toronto - state: 'ON' lat: 43.7400016784668 - who: Members - - utc_offset: -14400000 - country: CA - visibility: public + - country: CA city: Toronto - timezone: Canada/Eastern - created: 1453829664000 link: 'http://www.meetup.com/devhub/' - description: >- -

Launched in April 2016, Devhub is Canada’s first education space for - developers of all levels. It is a platform where developers can grow - together, whether they've been coding for two decades or - 8 weeks. 

- -

Find out more information at www.devhub.ca

+ name: Devhub + description: |- +

Launched in April 2016, Devhub is Canada’s first education space for developers of all levels. It is a platform where developers can grow together, whether they've been coding for two decades or 8 weeks. 

+

Find out more information at www.devhub.ca

+

Want to stay in touch? Join our e-mail family

lon: -79.38999938964844 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/e/5/7/c/highres_446758748.jpeg' - photo_id: 446758748 photo_link: 'http://photos1.meetupstatic.com/photos/event/e/5/7/c/600_446758748.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/e/5/7/c/thumb_446758748.jpeg' - join_mode: open - organizer: - member_id: 184979482 - name: Amy Mansell - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/5/9/c/c/highres_244402988.jpeg' - photo_id: 244402988 - photo_link: 'http://photos1.meetupstatic.com/photos/member/5/9/c/c/member_244402988.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/5/9/c/c/thumb_244402988.jpeg' - members: 475 - name: Devhub - state: 'ON' lat: 43.63999938964844 - who: Developers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Petaluma - timezone: US/Pacific - created: 1453845999000 link: 'http://www.meetup.com/Basic-Web-Dev/' - description: >- -

This is a group for Curios/Beginning Front-End-Web-Devs, We will - start from; Mark-up, HTML5, CSS, JavaScript, and GIT. We will work on - pair programming, and communicating while building things on the web. - A lecture for 30-60 minutes then get to pairing and programming.

- -

We will starting from the very beginning; loading a text - editor,Mark-up, HTML, CSS/Bootstrap, Git, JavaScript {arrays, objects, - functional programming with underscore}   All levels are welcome. - If you are advanced and would like to grace us with your knowledge - please do. If we have enough interest/people weekly will be okay for - the location I have secured. Please bring your own Laptop, we will - meeting from 6-8 pm and will keep a weekly meet-up as long as we have - people wanting to learn. If you have any questions please feel free to - contact me.

+ name: Basic Web-Dev + description: |- +

This is a group for Curios/Beginning Front-End-Web-Devs, We will start from; Mark-up, HTML5, CSS, JavaScript, and GIT. We will work on pair programming, and communicating while building things on the web. A lecture for 30-60 minutes then get to pairing and programming.

+

We will starting from the very beginning; loading a text editor,Mark-up, HTML, CSS/Bootstrap, Git, JavaScript {arrays, objects, functional programming with underscore}   All levels are welcome. If you are advanced and would like to grace us with your knowledge please do. If we have enough interest/people weekly will be okay for the location I have secured. Please bring your own Laptop, we will meeting from 6-8 pm and will keep a weekly meet-up as long as we have people wanting to learn. If you have any questions please feel free to contact me.

lon: -122.66000366210938 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/9/8/1/a/highres_446438938.jpeg' - photo_id: 446438938 photo_link: 'http://photos2.meetupstatic.com/photos/event/9/8/1/a/600_446438938.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/9/8/1/a/thumb_446438938.jpeg' - join_mode: open - organizer: - member_id: 72795152 - name: mark jaramillo - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/b/2/e/f/highres_241905807.jpeg' - photo_id: 241905807 - photo_link: 'http://photos1.meetupstatic.com/photos/member/b/2/e/f/member_241905807.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/b/2/e/f/thumb_241905807.jpeg' - members: 71 - name: Basic Web-Dev - state: CA lat: 38.2400016784668 - who: Builders - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Chicago - timezone: US/Central - created: 1453944550000 link: 'http://www.meetup.com/Learn-to-Code-Chicago/' + name: Learn to Code Chicago description: "

Ever thought about learning to code? Well this meetup is for you! This meetup is run by MakerSquare, a 3 month immersive software engineering school part of the national Reactor Core Network. Our mission is to teach a driven community of students the latest in web development skills. We're educators first and software engineers second. We employ 21st century, rapid-iteration teaching principles to teach professionals the most in-demand skills in the most effective ways possible. Events we'll host will include coding workshops in HTML, CSS, JS and Git, networking events for tech professionals in the Chicago area and community events to attract attention to the tech scene, just to name a few. Our goal is to provide the Chicago area with effective training that can support the lively tech ecosystem. Feel free to reach out if you're looking to get your hands dirty in some code!

" lon: -87.62000274658203 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/a/a/4/9/highres_448123593.jpeg' - photo_id: 448123593 photo_link: 'http://photos2.meetupstatic.com/photos/event/a/a/4/9/600_448123593.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/a/a/4/9/thumb_448123593.jpeg' - join_mode: open - organizer: - member_id: 175589532 - name: Omar Mohamed - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/7/5/2/c/highres_248969996.jpeg' - photo_id: 248969996 - photo_link: 'http://photos3.meetupstatic.com/photos/member/7/5/2/c/member_248969996.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/7/5/2/c/thumb_248969996.jpeg' - members: 218 - name: Learn to Code Chicago - state: IL lat: 41.880001068115234 - who: Future coders - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Portland - timezone: US/Pacific - created: 1454172176000 link: 'http://www.meetup.com/pdx-sh/' - description: >- -

  "Can't you just do that with Bash and SSH?" - Famous Last - Words 

- -

Portland Shell Hackers (pdx.sh) is a monthly meetup for sweet - Bash hacks, clever zsh macros, corny ksh scripts, fishy fish functions, - and everything related. We'll cover the Unix Coreutils (and all their - quirks and platformy weirdness), cURL, ssh, scp, Bash package - management, DevOops, etc. All skill levels - welcome. 

- + name: Portland Shell Hackers (pdx.sh) + description: |- +

  "Can't you just do that with Bash and SSH?" - Famous Last Words 

+

Portland Shell Hackers (pdx.sh) is a monthly meetup for sweet Bash hacks, clever zsh macros, corny ksh scripts, fishy fish functions, and everything related. We'll cover the Unix Coreutils (and all their quirks and platformy weirdness), cURL, ssh, scp, Bash package management, DevOops, etc. All skill levels welcome. 

BYOSH (Bring Your Own Sweet Hacks).

lon: -122.69000244140625 - join_mode: open - organizer: - member_id: 14209731 - name: Troy Howard - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/b/b/b/a/highres_251508058.jpeg' - photo_id: 251508058 - photo_link: 'http://photos1.meetupstatic.com/photos/member/b/b/b/a/member_251508058.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/b/b/b/a/thumb_251508058.jpeg' - members: 124 - name: Portland Shell Hackers (pdx.sh) - state: OR lat: 45.5 - who: '${SHELL} Hackers' - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Palo Alto - timezone: US/Pacific - created: 1454262443000 link: 'http://www.meetup.com/modernweb/' - rating: 5 - description: >- -

This is an interactive meetup/variety show focused on exploring next - generation frameworks, standards, tools, and techniques of the Modern - Web. 

- -

Topics we cover range from JavaScript frameworks such as ReactJS, - EmberJS, AngularJS, Angular2, React Native, TC39, ES2015, ES6, ES7, - ES2016, RxJS, Web Components, PolymerJS, Docker, Containers, - Progressive Web Apps, and more.

- -

You may visit http://modern-web.org for podcasts, videos, and - additional content.

+ name: Modern Web + description: |- +

This is an interactive meetup/variety show focused on exploring next generation frameworks, standards, tools, and techniques of the Modern Web. 

+

Topics we cover range from JavaScript frameworks such as ReactJS, EmberJS, AngularJS, Angular2, React Native, TC39, ES2015, ES6, ES7, ES2016, RxJS, Web Components, PolymerJS, Docker, Containers, Progressive Web Apps, and more.

+

You may visit http://modern-web.org for podcasts, videos, and additional content.

lon: -122.1500015258789 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/4/1/9/3/highres_446416787.jpeg' - photo_id: 446416787 photo_link: 'http://photos4.meetupstatic.com/photos/event/4/1/9/3/600_446416787.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/4/1/9/3/thumb_446416787.jpeg' - join_mode: open - organizer: - member_id: 198903066 - name: Tracy - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/8/e/c/d/highres_253416557.jpeg' - photo_id: 253416557 - photo_link: 'http://photos4.meetupstatic.com/photos/member/8/e/c/d/member_253416557.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/8/e/c/d/thumb_253416557.jpeg' - members: 637 - name: Modern Web - state: CA lat: 37.439998626708984 - who: Members - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Austin - timezone: US/Central - created: 1454602752000 link: 'http://www.meetup.com/North-Austin-JavaScript-Meetup/' - rating: 5 + name: North Austin JavaScript Meetup description: We are a group of software developers exploring technologies and frameworks that leverage the javascript language. Come join us as we venture through the exciting field of javascript. lon: -97.75 - join_mode: open - organizer: - member_id: 46415902 - name: Peter - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/1/4/1/6/highres_89525142.jpeg' - photo_id: 89525142 - photo_link: 'http://photos2.meetupstatic.com/photos/member/1/4/1/6/member_89525142.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/1/4/1/6/thumb_89525142.jpeg' - members: 195 - name: North Austin JavaScript Meetup - state: TX lat: 30.219999313354492 - who: Ninjas - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Redwood City - timezone: US/Pacific - created: 1454976099000 link: 'http://www.meetup.com/SF-Bay-Area-Oracle-Developers/' + name: SF Bay Area Oracle Developers description: '

This is a group for technology enthusiasts and developers of all skill levels. The group is designed to bring you updates and innovations in technology from Oracle through events, workshops, hackathons, and hands-on experiences.

' lon: -122.25 - join_mode: open - organizer: - member_id: 199388710 - name: David Lundvall - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/2/4/b/2/highres_253689394.jpeg' - photo_id: 253689394 - photo_link: 'http://photos1.meetupstatic.com/photos/member/2/4/b/2/member_253689394.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/2/4/b/2/thumb_253689394.jpeg' - members: 74 - name: SF Bay Area Oracle Developers - state: CA lat: 37.529998779296875 - who: Oracle Developers - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Austin - timezone: US/Central - created: 1454979180000 link: 'http://www.meetup.com/North-Austin-Full-Stack/' + name: North Austin Full Stack description: 'North Austin Full Stack is a friendly group of people interested in developing (Front and Back End) in the North Austin/Cedar Park, Texas area. Whatever your skill level, we invite you to join us, share your experiences, and learn new tricks and tips. Meet other web developers/designers in your area! Come to our Meetup to compare tools, languages; trade career advice, best practices, rates, and freelancing. Expand your networking as you meet new friends!' lon: -97.75 - join_mode: open - organizer: - member_id: 194494847 - name: Edwin Scott - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/3/5/2/0/highres_253693600.jpeg' - photo_id: 253693600 - photo_link: 'http://photos4.meetupstatic.com/photos/member/3/5/2/0/member_253693600.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/3/5/2/0/thumb_253693600.jpeg' - members: 71 - name: North Austin Full Stack - state: TX lat: 30.219999313354492 - who: Full Stackers - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Charlotte - timezone: US/Eastern - created: 1455043535000 link: 'http://www.meetup.com/Charlotte-NodeJS-User-Group/' - rating: 5 + name: Charlotte NodeJS User Group description: '

From desktop to IoT to Serverless execution to the universe of npm libraries, the world of NodeJS is becoming increasingly complex and harder to navigate. We want to come together to learn more about the JavaScript and Node.js and its uses in the world. Hopefully make human and computing connections to simplify both our computing and professional lives. Come check us out.

' lon: -80.86000061035156 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/1/8/2/2/highres_447006178.jpeg' - photo_id: 447006178 photo_link: 'http://photos2.meetupstatic.com/photos/event/1/8/2/2/600_447006178.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/1/8/2/2/thumb_447006178.jpeg' - join_mode: open - organizer: - member_id: 42906542 - name: Bilal - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/9/6/b/6/highres_47738582.jpeg' - photo_id: 47738582 - photo_link: 'http://photos3.meetupstatic.com/photos/member/9/6/b/6/member_47738582.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/9/6/b/6/thumb_47738582.jpeg' - members: 96 - name: Charlotte NodeJS User Group - state: NC lat: 35.209999084472656 - who: nodes - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Portland - timezone: US/Pacific - created: 1455169659000 link: 'http://www.meetup.com/Free-Code-Camp-Portland/' - rating: 5 + name: Free Code Camp Portland description: 'Hi Campers. Free Code Camp is a 100% free online curriculum teaching technologies like HTML, CSS, JavaScript, jQuery, ReactJS, node.js, and mongodb. Students or "campers" complete challenges and projects towards certificates and then are eligible to work on actual development projects for non-profits. This group is for campers looking to get together and share their current projects, work on any challenges, and socialize and collaborate with other campers and mentors. Bring your laptop and come learn some JavaScript!' lon: -122.69000244140625 - join_mode: open - organizer: - member_id: 182773559 - name: Nathan Rodman - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/5/a/b/5/highres_253763221.jpeg' - photo_id: 253763221 - photo_link: 'http://photos2.meetupstatic.com/photos/member/5/a/b/5/member_253763221.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/5/a/b/5/thumb_253763221.jpeg' - members: 220 - name: Free Code Camp Portland - state: OR lat: 45.5 - who: Campers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Francisco - timezone: US/Pacific - created: 1455302786000 link: 'http://www.meetup.com/RiotJS-Bay-Area-Meetup/' - rating: 5 + name: RiotJS Bay Area Meetup description: "

Want React-like components in a blazing fast 20kb production-quality library using HTML, not JSX? Check out Riot (http://riotjs.com), a micro-framework for building UI components that just feels right. We're calling all Riot enthusiasts as well as folks who are interested in using this lightweight alternative to React for building scalable web apps. We want to build an inclusive, welcoming environment for web developers of all backgrounds to learn this amazing tech.

" lon: -122.4000015258789 - join_mode: open - organizer: - member_id: 136614482 - name: Ersin Akinci - photo: - photo_id: 182730162 - photo_link: 'http://photos2.meetupstatic.com/photos/member/7/5/d/2/member_182730162.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/7/5/d/2/thumb_182730162.jpeg' - members: 43 - name: RiotJS Bay Area Meetup - state: CA lat: 37.77000045776367 - who: Rioters - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Milwaukee - timezone: US/Central - created: 1455510928000 link: 'http://www.meetup.com/Wisconsin-AngularJS-Meetup/' + name: Wisconsin AngularJS Meetup description: "Angular JS is an incredible JavaScript library. Join us if you'd like to learn more or if you have your own Angular JS experience to share that others can benefit from. " lon: -87.9000015258789 - join_mode: open - organizer: - member_id: 183393735 - name: Ezekiel Chentnik - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/3/3/0/8/highres_242713064.jpeg' - photo_id: 242713064 - photo_link: 'http://photos3.meetupstatic.com/photos/member/3/3/0/8/member_242713064.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/3/3/0/8/thumb_242713064.jpeg' - members: 79 - name: Wisconsin AngularJS Meetup - state: WI lat: 43.04999923706055 - who: Angulars - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Houston - timezone: US/Central - created: 1455764053000 link: 'http://www.meetup.com/freecodecampHouston-Midtown/' - rating: 4.75 + name: FreeCodeCamp - Houston description: 'This group is for anyone who is interested in programming and is involved in FreeCodeCamp, the free online code academy. Check out www.freecodecamp.com. We are the Houston group. All levels are welcome. We meet to share ideas, network, and learn! We will meet twice a month in the midtown area. Bring your laptop. WiFi is available at our different venues.' lon: -95.47000122070312 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/3/7/e/e/highres_448094318.jpeg' - photo_id: 448094318 photo_link: 'http://photos1.meetupstatic.com/photos/event/3/7/e/e/600_448094318.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/3/7/e/e/thumb_448094318.jpeg' - join_mode: open - organizer: - member_id: 13787469 - name: Valerie Rickert - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/9/b/3/d/highres_17859741.jpeg' - photo_id: 17859741 - photo_link: 'http://photos4.meetupstatic.com/photos/member/9/b/3/d/member_17859741.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/9/b/3/d/thumb_17859741.jpeg' - members: 144 - name: FreeCodeCamp - Houston - state: TX lat: 29.75 - who: Campers - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: New York - timezone: US/Eastern - created: 1456008057000 link: 'http://www.meetup.com/LearnToCodeNYC/' - rating: 5 + name: Learn to Code NYC description: "

Ever thought about learning to code? If so, this meetup is for you! This meetup is run by MakerSquare, a 3 month immersive software engineering school part of the national Reactor Core Network. Our mission is to teach a driven community of students the latest in web development skills. We're educators first and software engineers second. We employ 21st century, rapid-iteration teaching principles to teach professionals the most in-demand skills in the most effective ways possible. Events we'll host will include coding workshops in HTML, CSS, JavaScript and Git, networking events for tech professionals in the New York City area and community events to attract attention to the tech scene, just to name a few. Our goal is to provide the New York City area with effective training that can support the lively tech ecosystem. Feel free to reach out if you're looking to get your hands dirty in some code!

" lon: -73.98999786376953 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/5/1/7/8/highres_448100856.jpeg' - photo_id: 448100856 photo_link: 'http://photos3.meetupstatic.com/photos/event/5/1/7/8/600_448100856.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/5/1/7/8/thumb_448100856.jpeg' - join_mode: open - organizer: - member_id: 174898332 - name: Tyler Lambe - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/2/1/d/highres_251520541.jpeg' - photo_id: 251520541 - photo_link: 'http://photos3.meetupstatic.com/photos/member/2/1/d/member_251520541.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/2/1/d/thumb_251520541.jpeg' - members: 334 - name: Learn to Code NYC - state: NY lat: 40.75 - who: Future coders - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Boston - timezone: US/Eastern - created: 1456010323000 link: 'http://www.meetup.com/LearnProgrammingBoston/' + name: Learn Programming Boston description: "

Ever thought about learning to code? Well this meetup is for you! This meetup is run by MakerSquare, a 3 month immersive software engineering school part of the national Reactor Core Network. Our mission is to teach a driven community of students the latest in web development skills. We're educators first and software engineers second. We employ 21st century, rapid-iteration teaching principles to teach professionals the most in-demand skills in the most effective ways possible. Events we'll host will include coding workshops in HTML, CSS, JS and Git, networking events for tech professionals in the Boston area and community events to attract attention to the tech scene, just to name a few. Our goal is to provide the Boston area with effective training that can support the lively tech ecosystem. Feel free to reach out if you're looking to get your hands dirty in some code!

" lon: -71.05999755859375 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/a/a/4/e/highres_448123598.jpeg' - photo_id: 448123598 photo_link: 'http://photos3.meetupstatic.com/photos/event/a/a/4/e/600_448123598.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/a/a/4/e/thumb_448123598.jpeg' - join_mode: open - organizer: - member_id: 174898332 - name: Tyler Lambe - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/2/1/d/highres_251520541.jpeg' - photo_id: 251520541 - photo_link: 'http://photos3.meetupstatic.com/photos/member/2/1/d/member_251520541.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/2/1/d/thumb_251520541.jpeg' - members: 120 - name: Learn Programming Boston - state: MA lat: 42.36000061035156 - who: Future coders - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Francisco - timezone: US/Pacific - created: 1456090477000 link: 'http://www.meetup.com/Veterans-Who-Code/' - description: >- -

At this Meetup, you'll learn:
- JavaScript
- React JS
- - Angular JS
- How to get into programming
- How to transition - into a career in technology

- -

The goal of this Meetup:
Bring veterans together who - want to learn to code, who want to transition into a career in - technology, or want to share their programming knowledge with others. -

- -

This meetup is inclusive of all groups who wish to attend; the group - is not limited only to veterans. We welcome all people who want to - learn to code, who want to help others, or who want to share - programming best practices.

- lon: -122.4000015258789 - join_mode: open - organizer: - member_id: 200176765 - name: Jared Polivka - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/c/7/e/7/highres_254091175.jpeg' - photo_id: 254091175 - photo_link: 'http://photos2.meetupstatic.com/photos/member/c/7/e/7/member_254091175.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/c/7/e/7/thumb_254091175.jpeg' - members: 19 name: Veterans Who Code SF - state: CA + description: |- +

At this Meetup, you'll learn:
- JavaScript
- React JS
- Angular JS
- How to get into programming
- How to transition into a career in technology

+

The goal of this Meetup:
Bring veterans together who want to learn to code, who want to transition into a career in technology, or want to share their programming knowledge with others.

+

This meetup is inclusive of all groups who wish to attend; the group is not limited only to veterans. We welcome all people who want to learn to code, who want to help others, or who want to share programming best practices.

+ lon: -122.4000015258789 lat: 37.790000915527344 - who: Coders - - utc_offset: -25200000 - country: US - visibility: public - city: Palo Alto - timezone: US/Pacific - created: 1456124584000 - link: 'http://www.meetup.com/Palo-Alto-JavaScript-Interview-Prep-Meetup/' - rating: 5 - description: "

This meetup is all about learning and mastering data structure and algorithms in Javascript, and be skillful in coding interview. Come, let's join us and strive for your next career goal!

" - lon: -122.1500015258789 - group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/3/6/6/3/highres_447133923.jpeg' - photo_id: 447133923 - photo_link: 'http://photos4.meetupstatic.com/photos/event/3/6/6/3/600_447133923.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/3/6/6/3/thumb_447133923.jpeg' - join_mode: open - organizer: - member_id: 196737242 - name: Christina Lam - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/4/8/8/3/highres_252498563.jpeg' - photo_id: 252498563 - photo_link: 'http://photos3.meetupstatic.com/photos/member/4/8/8/3/member_252498563.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/4/8/8/3/thumb_252498563.jpeg' - members: 124 - name: Bay Area JavaScript Interview Prep Meetup - state: CA - lat: 37.439998626708984 - who: Javascript Interview Master - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Francisco - timezone: US/Pacific - created: 1456172749000 link: 'http://www.meetup.com/JS-Office-Hours/' - rating: 5 + name: JS Office Hours description: '

Have JavaScript questions? Want to discuss ES6, React, or Promises? Then why not bring your laptop over to the Haight to share a beer and some snacks. The Tonic team will be hosting a weekly JavaScript Office Hours.

' lon: -122.44000244140625 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/e/5/2/c/highres_447178668.jpeg' - photo_id: 447178668 photo_link: 'http://photos2.meetupstatic.com/photos/event/e/5/2/c/600_447178668.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/e/5/2/c/thumb_447178668.jpeg' - join_mode: open - organizer: - member_id: 69630982 - name: Pieter Ouwerkerk - photo: - photo_id: 82021072 - photo_link: 'http://photos4.meetupstatic.com/photos/member/4/3/0/member_82021072.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/4/3/0/thumb_82021072.jpeg' - members: 80 - name: JS Office Hours - state: CA lat: 37.77000045776367 - who: members - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Boston - timezone: US/Eastern - created: 1456368931000 link: 'http://www.meetup.com/Boston-FreeCodeCampers/' - description: >- -

Free Code Camp (http://www.freecodecamp.com) is an open source - community where you learn to code full stack JavaScript and help - non-profits. 

- -

You need Free Code Camp because learning to code is - hard.

- -

Most people who successfully learn to code:
Make friends with - people who code
Code a little every day

- -

Free Code Camp gives you the structure and the community you need so - you can successfully learn to code. All skill levels are welcome. More - on http://freecodecamp.github.io/wiki/en/Why-you-need-Free-Code-Camp/

+ name: Boston FreeCodeCampers + description: |- +

Free Code Camp (http://www.freecodecamp.com) is an open source community where you learn to code full stack JavaScript and help non-profits. 

+

You need Free Code Camp because learning to code is hard.

+

Most people who successfully learn to code:
Make friends with people who code
Code a little every day

+

Free Code Camp gives you the structure and the community you need so you can successfully learn to code. All skill levels are welcome. More on http://freecodecamp.github.io/wiki/en/Why-you-need-Free-Code-Camp/

lon: -71.05999755859375 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/7/5/1/7/highres_447209975.jpeg' - photo_id: 447209975 photo_link: 'http://photos1.meetupstatic.com/photos/event/7/5/1/7/600_447209975.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/7/5/1/7/thumb_447209975.jpeg' - join_mode: open - organizer: - member_id: 54481342 - name: Beth Tenorio - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/e/0/6/highres_67072742.jpeg' - photo_id: 67072742 - photo_link: 'http://photos3.meetupstatic.com/photos/member/c/e/0/6/member_67072742.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/e/0/6/thumb_67072742.jpeg' - members: 116 - name: Boston FreeCodeCampers - state: MA lat: 42.349998474121094 - who: CodeCampers - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Fayetteville - timezone: US/Eastern - created: 1456376365000 link: 'http://www.meetup.com/Fayetteville-Web-Developers/' - rating: 5 + name: Fayetteville Web Developers description: '

A group for those of us who love to write code and design user experiences here in Fayetteville, NC.

' lon: -78.93000030517578 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/a/4/7/9/highres_447222105.jpeg' - photo_id: 447222105 photo_link: 'http://photos4.meetupstatic.com/photos/event/a/4/7/9/600_447222105.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/a/4/7/9/thumb_447222105.jpeg' - join_mode: open - organizer: - member_id: 118645012 - name: iBourgeois - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/e/1/f/7/highres_254217847.jpeg' - photo_id: 254217847 - photo_link: 'http://photos1.meetupstatic.com/photos/member/e/1/f/7/member_254217847.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/e/1/f/7/thumb_254217847.jpeg' - members: 22 - name: Fayetteville Web Developers - state: NC lat: 35.0099983215332 - who: Developers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Francisco - timezone: US/Pacific - created: 1456442906000 link: 'http://www.meetup.com/Build-With-Code-San-Francisco/' - rating: 5 - description: >- -

Build with Code hosts free weekly JavaScript and Software - Engineering workshops, lectures and pair-programming - sessions. 

- -

Welcome! The reason people who only watch programming videos don't - become programmers is because they're not programming. Come join other - aspiring engineers and start building! In JavaScript the Hard Parts, we - cover callbacks, higher-order functions (functional programming with - JavaScript), object-oriented programming with JavaScript, closure, - scope and execution context.

- -

 JavaScript the Hard Parts has been our most popular - workshop in LA, and now Codesmith CEO Will Sentance is bringing it to - San Francisco. 

- + name: Build With Code - San Francisco + description: |- +

Build with Code hosts free weekly JavaScript and Software Engineering workshops, lectures and pair-programming sessions. 

+

Welcome! The reason people who only watch programming videos don't become programmers is because they're not programming. Come join other aspiring engineers and start building! In JavaScript the Hard Parts, we cover callbacks, higher-order functions (functional programming with JavaScript), object-oriented programming with JavaScript, closure, scope and execution context.

+

 JavaScript the Hard Parts has been our most popular workshop in LA, and now Codesmith CEO Will Sentance is bringing it to San Francisco. 

Price: Always free 

- -

About Codesmith: Codesmith teaches full stack software - engineering in JavaScript through a 12 week immersive program. We teach - computer science, object-oriented JavaScript, React, Angular, Node, - distributed systems and mobile development so our grads can secure - mid-to-senior level software engineering positions or launch their own - ventures 

- -

Apply to the program at codesmith.io/apply. For further - questions email admissions@codesmith.io

- +

About Codesmith: Codesmith teaches full stack software engineering in JavaScript through a 12 week immersive program. We teach computer science, object-oriented JavaScript, React, Angular, Node, distributed systems and mobile development so our grads can secure mid-to-senior level software engineering positions or launch their own ventures 

+

Apply to the program at codesmith.io/apply. For further questions email admissions@codesmith.io

---

- -

JavaScript the Hard Parts is a free JavaScript class in San - Francisco and Los Angeles designed to learn intermediate and advanced - JavaScript - including callbacks, higher order functions (like how to - understand map, reduce, filter and foreach), closure, object-oriented - programming in JavaScript and other topics

- -

In Codesmith Information sessions, attendees meet with current - students and graduates to discuss what it's like to attend Codesmith, - what characteristics create the best coding bootcamp in the US, how to - get into Codesmith and how to succeed in the Codesmith interview

- +

JavaScript the Hard Parts is a free JavaScript class in San Francisco and Los Angeles designed to learn intermediate and advanced JavaScript - including callbacks, higher order functions (like how to understand map, reduce, filter and foreach), closure, object-oriented programming in JavaScript and other topics

+

In Codesmith Information sessions, attendees meet with current students and graduates to discuss what it's like to attend Codesmith, what characteristics create the best coding bootcamp in the US, how to get into Codesmith and how to succeed in the Codesmith interview


lon: -122.41999816894531 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/1/7/9/8/highres_447246040.jpeg' - photo_id: 447246040 photo_link: 'http://photos2.meetupstatic.com/photos/event/1/7/9/8/600_447246040.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/1/7/9/8/thumb_447246040.jpeg' - join_mode: open - organizer: - member_id: 198717004 - name: Hira Q - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/e/3/9/5/highres_253318261.jpeg' - photo_id: 253318261 - photo_link: 'http://photos1.meetupstatic.com/photos/member/e/3/9/5/member_253318261.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/e/3/9/5/thumb_253318261.jpeg' - members: 275 - name: Build With Code - San Francisco - state: CA lat: 37.779998779296875 - who: Engineers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Los Angeles - timezone: US/Pacific - created: 1456776091000 link: 'http://www.meetup.com/LA-Node/' - description: >- -

Welcome to the hub for Node.js, one of the fastest growing server - side languages to date, in Southern California - from Los Angeles, to - San Diego, from the Valley to Orange County

- -

Join us for compelling talks, workshops with lead engineers - building with Node and starter sessions for those who are new to - React.

- -

We're in the early stage with the meetup group so we're excited to - hear your suggestions! 

+ name: LA Node.js + description: |- +

Welcome to the hub for Node.js, one of the fastest growing server side languages to date, in Southern California - from Los Angeles, to San Diego, from the Valley to Orange County

+

Join us for compelling talks, workshops with lead engineers building with Node and starter sessions for those who are new to React.

+

We're in the early stage with the meetup group so we're excited to hear your suggestions! 

lon: -118.43000030517578 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/7/a/7/1/highres_447391345.jpeg' - photo_id: 447391345 photo_link: 'http://photos4.meetupstatic.com/photos/event/7/a/7/1/600_447391345.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/7/a/7/1/thumb_447391345.jpeg' - join_mode: open - organizer: - member_id: 182617682 - name: Alex Zai - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/5/3/6/4/highres_241641348.jpeg' - photo_id: 241641348 - photo_link: 'http://photos1.meetupstatic.com/photos/member/5/3/6/4/member_241641348.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/5/3/6/4/thumb_241641348.jpeg' - members: 234 - name: LA Node.js - state: CA lat: 33.9900016784668 - who: Engineers - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Nashville - timezone: US/Central - created: 1456791969000 link: 'http://www.meetup.com/Nashville-EmberJS/' + name: Nashville Ember JS Meetup description: '

This meetup is focused on learning and working on Ember.js projects. All interest and levels are welcome.

' lon: -86.77999877929688 - join_mode: open - organizer: - member_id: 82521282 - name: Ryan Tablada - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/2/7/1/8/highres_250510008.jpeg' - photo_id: 250510008 - photo_link: 'http://photos3.meetupstatic.com/photos/member/2/7/1/8/member_250510008.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/2/7/1/8/thumb_250510008.jpeg' - members: 30 - name: Nashville Ember JS Meetup - state: TN lat: 36.11000061035156 - who: Embereños - - utc_offset: -18000000 - country: US - visibility: public + - country: US city: Richardson - timezone: US/Central - created: 1457051013000 link: 'http://www.meetup.com/Hack-My-Life/' + name: Hack My Life description: '

We are a group committed to helping software developers vastly improve their lifestyle engineering skills. As developers, we work in some of the most in-demand fields on the planet, yet many of us feel stuck in our career paths. This need not, and should not be the case. Being in-demand should mean that you are able to work in a role that you find personally fulfilling, which simultaneously moves you closer to your personal goals. With the right set of tools and a community behind you, you can find ways to side-step obstacles to your career development, with far greater ease than you could on your own.

' lon: -96.75 - join_mode: open - organizer: - member_id: 183962085 - name: Phil - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/2/b/f/5/highres_246791253.jpeg' - photo_id: 246791253 - photo_link: 'http://photos2.meetupstatic.com/photos/member/2/b/f/5/member_246791253.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/2/b/f/5/thumb_246791253.jpeg' - members: 25 - name: Hack My Life - state: TX lat: 32.959999084472656 - who: Career Hackers - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Fairfax - timezone: US/Eastern - created: 1457375538000 link: 'http://www.meetup.com/Fairfax-Full-Stack-Developer-Meetup/' - description: >- -

Are you passionate about technology and constantly seeking - innovative ways to solve problems? Fairfax Full Stack Developer Meetups - is where developers can come to learn from and teach each other about - emerging technologies. Our guest speakers will discuss the latest - technologies, frameworks and solutions to everyday challenges. We will - have fun and challenging events like Hackathons, workshops and - networking.

- + name: Fairfax Full Stack Developer Meetup + description: |- +

Are you passionate about technology and constantly seeking innovative ways to solve problems? Fairfax Full Stack Developer Meetups is where developers can come to learn from and teach each other about emerging technologies. Our guest speakers will discuss the latest technologies, frameworks and solutions to everyday challenges. We will have fun and challenging events like Hackathons, workshops and networking.

“A problem well-defined is half-solved.”Einstein

lon: -77.33999633789062 - join_mode: open - organizer: - member_id: 159269562 - name: Sam - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/7/e/9/6/highres_254552406.jpeg' - photo_id: 254552406 - photo_link: 'http://photos2.meetupstatic.com/photos/member/7/e/9/6/member_254552406.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/7/e/9/6/thumb_254552406.jpeg' - members: 129 - name: Fairfax Full Stack Developer Meetup - state: VA lat: 38.83000183105469 - who: Developers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Los Angeles - timezone: US/Pacific - created: 1457380147000 link: 'http://www.meetup.com/Los-Angeles-Oracle-Developers/' + name: Los Angeles Oracle Developers description: 'This is a group for technology enthusiasts and developers of all skill levels. The group is designed to bring you updates and innovations in technology from Oracle through events, workshops, hackathons, and hands-on experiences.' lon: -118.23999786376953 - join_mode: approval - organizer: - member_id: 14565392 - name: Payal - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/a/c/f/5/highres_12644277.jpeg' - photo_id: 12644277 - photo_link: 'http://photos2.meetupstatic.com/photos/member/a/c/f/5/member_12644277.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/a/c/f/5/thumb_12644277.jpeg' - members: 17 - name: Los Angeles Oracle Developers - state: CA lat: 33.970001220703125 - who: Oracle Developers - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: San Francisco - timezone: US/Pacific - created: 1457460939000 link: 'http://www.meetup.com/sfwakanda/' - description: >- -

This meetup is dedicated to promoting Wakanda Open Source - JavaScript FullStack platform. We will launch a monthly online JS - development challenge. The best application developed with Wakanda - Platform will receive at least $1,000 USD prize and will be showcased - on Wakanda websites.

- -

This group is also for anyone interested in learning how to build - mobile applications in 3 weeks using Javascript for both frontend and - backend sides.

- + name: San Francisco Wakanda Open Source JS FullStack + description: |- +

This meetup is dedicated to promoting Wakanda Open Source JavaScript FullStack platform. We will launch a monthly online JS development challenge. The best application developed with Wakanda Platform will receive at least $1,000 USD prize and will be showcased on Wakanda websites.

+

This group is also for anyone interested in learning how to build mobile applications in 3 weeks using Javascript for both frontend and backend sides.


-


lon: -122.41999816894531 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/c/9/b/3/highres_447711635.jpeg' - photo_id: 447711635 photo_link: 'http://photos3.meetupstatic.com/photos/event/c/9/b/3/600_447711635.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/c/9/b/3/thumb_447711635.jpeg' - join_mode: open - organizer: - member_id: 197753895 - name: Roger Essoh - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/1/1/e/0/highres_252664576.jpeg' - photo_id: 252664576 - photo_link: 'http://photos2.meetupstatic.com/photos/member/1/1/e/0/member_252664576.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/1/1/e/0/thumb_252664576.jpeg' - members: 34 - name: San Francisco Wakanda Open Source JS FullStack - state: CA lat: 37.779998779296875 - who: Members - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Seattle - timezone: US/Pacific - created: 1457478617000 link: 'http://www.meetup.com/Seattle-Oracle-Developers/' + name: Seattle Oracle Developers description: 'This is a group for technology enthusiasts and developers of all skill levels. The group is designed to bring you updates and innovations in technology from Oracle through events, workshops, hackathons, and hands-on experiences' lon: -122.33000183105469 - join_mode: open - organizer: - member_id: 6939721 - name: 'Hemant ' - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/2/2/9/1/highres_247688849.jpeg' - photo_id: 247688849 - photo_link: 'http://photos4.meetupstatic.com/photos/member/2/2/9/1/member_247688849.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/2/2/9/1/thumb_247688849.jpeg' - members: 13 - name: Seattle Oracle Developers - state: WA lat: 47.61000061035156 - who: Members - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Washington - timezone: US/Eastern - created: 1457719029000 link: 'http://www.meetup.com/ELECTRONDC/' + name: ELECTRONDC description: "Building cross platform apps with web technologies using Github's Electron" lon: -77.0199966430664 - join_mode: open - organizer: - member_id: 15465911 - name: robert dean - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/1/d/8/0/highres_216847552.jpeg' - photo_id: 216847552 - photo_link: 'http://photos1.meetupstatic.com/photos/member/1/d/8/0/member_216847552.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/1/d/8/0/thumb_216847552.jpeg' - members: 44 - name: ELECTRONDC - state: DC lat: 38.90999984741211 - who: Electronistas - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Rocky Mount - timezone: US/Eastern - created: 1457913381000 link: 'http://www.meetup.com/Coders-Gather-And-Create/' - description: >- -

Calling ALL coders!  This Meetup group is for designers and - developers who share the same kind of passion for coding that I do - no matter your skill level or programming background. I have been to - Meetups before that center around programming, but I haven't found one - that really pushes it's members to really create something throughout - the course of the meetings. That is something I hope to change with - this group. 

- + name: Coders Gather And Create + description: |- +

Calling ALL coders!  This Meetup group is for designers and developers who share the same kind of passion for coding that I do no matter your skill level or programming background. I have been to Meetups before that center around programming, but I haven't found one that really pushes it's members to really create something throughout the course of the meetings. That is something I hope to change with this group. 

LETS CREATE SOMETHING!

- -

The purpose of this Meetup is to test out a new style of gathering - where everyone binds their skills with coding and design - together to create something...  Who know's what that - something will end up being, but we will create SOMETHING! Currently, - there is no direction that is chiseled in stone, but the Idea is that - whoever comes can contribute a component to a project using whatever - language he/she is comfortable with even if it requires a little bit of - learning. C++, .NET, AngularJS, BackboneJS, Ruby, Ruby on Rails, - NodeJS, SQL, MONGO, Python, etc... Your language is your choice. The - challenge is to figure out how to create something larger than - ourselves that anyone new (from beginners to - professionals) can contribute to or can learn the language - that he/she is interested in and learn how to contribute. - The great thing is that I think the power of project management with - git can make this work. I am hoping for great things with this - group.

- -

At the very least, we will get to know and learn from fellow coders - around the Nash county area. As far as a place to meet, details will be - released once we get a few members interested.

+

The purpose of this Meetup is to test out a new style of gathering where everyone binds their skills with coding and design together to create something...  Who know's what that something will end up being, but we will create SOMETHING! Currently, there is no direction that is chiseled in stone, but the Idea is that whoever comes can contribute a component to a project using whatever language he/she is comfortable with even if it requires a little bit of learning. C++, .NET, AngularJS, BackboneJS, Ruby, Ruby on Rails, NodeJS, SQL, MONGO, Python, etc... Your language is your choice. The challenge is to figure out how to create something larger than ourselves that anyone new (from beginners to professionals) can contribute to or can learn the language that he/she is interested in and learn how to contribute. The great thing is that I think the power of project management with git can make this work. I am hoping for great things with this group.

+

At the very least, we will get to know and learn from fellow coders around the Nash county area. As far as a place to meet, details will be released once we get a few members interested.

lon: -77.75 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/a/6/2/6/highres_447822534.jpeg' - photo_id: 447822534 photo_link: 'http://photos2.meetupstatic.com/photos/event/a/6/2/6/600_447822534.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/a/6/2/6/thumb_447822534.jpeg' - join_mode: open - organizer: - member_id: 182772673 - name: Alex Rosco Joyner - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/4/e/e/e/highres_241880206.jpeg' - photo_id: 241880206 - photo_link: 'http://photos2.meetupstatic.com/photos/member/4/e/e/e/member_241880206.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/4/e/e/e/thumb_241880206.jpeg' - members: 8 - name: Coders Gather And Create - state: NC lat: 35.95000076293945 - who: Code Creators - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Philadelphia - timezone: US/Eastern - created: 1457971900000 link: 'http://www.meetup.com/ServerlessPHL/' + name: Serverless PHL description: '

Serverless PHL seeks to grow a community of developers interested in building "serverless" applications running on platforms such as AWS Lambda, Google Cloud Functions, OpenWhisk, and/or IOpipe. Topics will include dev, test, and deployment of applications, the operational challenges of running serverless apps, and the tools and services that empower such applications (Auth0, Firebase, etc).

' lon: -75.01000213623047 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/2/6/4/2/highres_447849794.jpeg' - photo_id: 447849794 photo_link: 'http://photos4.meetupstatic.com/photos/event/2/6/4/2/600_447849794.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/2/6/4/2/thumb_447849794.jpeg' - join_mode: open - organizer: - member_id: 3557686 - name: Eric Windisch - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/b/9/0/2/highres_229787362.jpeg' - photo_id: 229787362 - photo_link: 'http://photos1.meetupstatic.com/photos/member/b/9/0/2/member_229787362.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/b/9/0/2/thumb_229787362.jpeg' - members: 61 - name: Serverless PHL - state: PA lat: 40.119998931884766 - who: monads - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Ponte Vedra Beach - timezone: US/Eastern - created: 1457985743000 link: 'http://www.meetup.com/nativescript/' + name: NativeScript Jax description: '

NativeScript Jax is a meetup dedicated to people building/learning to build native cross platform iOS and Android mobile apps with NativeScript in North Florida

' lon: -81.37999725341797 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/4/2/1/a/highres_447856922.jpeg' - photo_id: 447856922 photo_link: 'http://photos1.meetupstatic.com/photos/event/4/2/1/a/600_447856922.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/4/2/1/a/thumb_447856922.jpeg' - join_mode: open - organizer: - member_id: 9246054 - name: Skip Krenek - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/2/5/0/0/highres_126189472.jpeg' - photo_id: 126189472 - photo_link: 'http://photos3.meetupstatic.com/photos/member/2/5/0/0/member_126189472.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/2/5/0/0/thumb_126189472.jpeg' - members: 21 - name: NativeScript Jax - state: FL lat: 30.239999771118164 - who: Engineers - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Brooklyn - timezone: US/Eastern - created: 1458072152000 link: 'http://www.meetup.com/Coders-Helping-Coders/' - description: >- -

This is a meetup dedicated to having coders helping coders. Each - meetup will consist of more doing and less anything else. Bring your - laptop, and be ready to ask questions (bugs, coding style, concepts, - getting setup) or be ready to help. We'll meet at a common venue, and - people will pair up or group up to help each other whatever is - necessary. Feel free to buy whoever is helping you a beer or a muffin, - but not necessary. Open to programmers of all skill sets, absolute - beginners to pros.

- -

No Recruiters or Recruiting allowed. You must have the desire to - help others coding or to learn how to code.

- -

We will be vetting people to make sure everyone has a quality time - with this meetup!

+ name: Coders Helping Coders + description: |- +

This is a meetup dedicated to having coders helping coders. Each meetup will consist of more doing and less anything else. Bring your laptop, and be ready to ask questions (bugs, coding style, concepts, getting setup) or be ready to help. We'll meet at a common venue, and people will pair up or group up to help each other whatever is necessary. Feel free to buy whoever is helping you a beer or a muffin, but not necessary. Open to programmers of all skill sets, absolute beginners to pros.

+

No Recruiters or Recruiting allowed. You must have the desire to help others coding or to learn how to code.

+

We will be vetting people to make sure everyone has a quality time with this meetup!

lon: -73.94999694824219 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/b/4/9/b/highres_447886235.jpeg' - photo_id: 447886235 photo_link: 'http://photos2.meetupstatic.com/photos/event/b/4/9/b/600_447886235.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/b/4/9/b/thumb_447886235.jpeg' - join_mode: approval - organizer: - member_id: 34250792 - name: Ricky Panzer - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/8/a/d/3/highres_254795539.jpeg' - photo_id: 254795539 - photo_link: 'http://photos1.meetupstatic.com/photos/member/8/a/d/3/member_254795539.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/8/a/d/3/thumb_254795539.jpeg' - members: 17 - name: Coders Helping Coders - state: NY lat: 40.709999084472656 - who: Coders - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Atlanta - timezone: US/Eastern - created: 1458272512000 link: 'http://www.meetup.com/The-Atlanta-Blockchain/' + name: The Atlanta Blockchain description: "The Atlanta Blockchain (TAB). This group focuses on educating the community about decentralized crypto technologies. Many new and exciting things are happening in this space, things are changing quickly, don't be left behind. The future will be encrypted and decentralized and this is the time to learn what the heck is going on. We will focus on many things including: Bitcoin, Blockchain, Ethereum, decentralized storage, alt-coins, mining, programming, blockchain as a database, general education 101's, and more. Please come join us to be part of this technology revolution!" lon: -84.38999938964844 - join_mode: open - organizer: - member_id: 139349652 - name: Michael Tidwell - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/2/e/0/8/highres_248771784.jpeg' - photo_id: 248771784 - photo_link: 'http://photos1.meetupstatic.com/photos/member/2/e/0/8/member_248771784.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/2/e/0/8/thumb_248771784.jpeg' - members: 65 - name: The Atlanta Blockchain - state: GA lat: 33.93000030517578 - who: Blocks - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: Boston - timezone: US/Eastern - created: 1458722477000 link: 'http://www.meetup.com/Boston-Redis/' + name: Boston Redis description: '

This group meets monthly to discuss different ways to use Redis to scale your website

' lon: -71.06999969482422 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/3/8/e/highres_448140910.jpeg' - photo_id: 448140910 photo_link: 'http://photos2.meetupstatic.com/photos/event/3/8/e/600_448140910.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/3/8/e/thumb_448140910.jpeg' - join_mode: open - organizer: - member_id: 201204033 - name: Dave Nielsen - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/9/2/f/d/highres_254617629.jpeg' - photo_id: 254617629 - photo_link: 'http://photos1.meetupstatic.com/photos/member/9/2/f/d/member_254617629.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/9/2/f/d/thumb_254617629.jpeg' - members: 13 - name: Boston Redis - state: MA lat: 42.36000061035156 - who: Members - - utc_offset: -14400000 - country: US - visibility: public + - country: US city: New York - timezone: US/Eastern - created: 1458756072000 link: 'http://www.meetup.com/Learn-to-Code-New-York/' + name: Learn to Code New York description: "Ready to learn to code? Start your programming journey by attending learn to code workshops and by collaborating with a supportive community. We'll be covering intro and intermediate topics every month." lon: -73.94999694824219 - join_mode: open - organizer: - member_id: 202043311 - name: Jared Polivka - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/5/b/6/3/highres_255023395.jpeg' - photo_id: 255023395 - photo_link: 'http://photos2.meetupstatic.com/photos/member/5/b/6/3/member_255023395.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/5/b/6/3/thumb_255023395.jpeg' - members: 134 - name: Learn to Code New York - state: NY lat: 40.810001373291016 - who: Coders - - utc_offset: -21600000 - country: US - visibility: public + - country: US city: Boulder - timezone: US/Mountain - created: 1459105258000 link: 'http://www.meetup.com/bouldernode/' + name: Boulder Node.js description: "

Attn Node.js afficionados: This is one technology group that will get you publishing NPM's, collaborate on open-source projects together, and discuss hosting needs among more novel uses of the technology. When solutions don't exist, we'll build them. Come to share your ideas and learn in interactive workshops. Mentor others and find mentees. If you don't know how to code, come with an attitude to learn.

" lon: -105.27999877929688 - join_mode: open - organizer: - member_id: 182932369 - name: Michael Whitfield - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/6/7/2/1/highres_254306401.jpeg' - photo_id: 254306401 - photo_link: 'http://photos1.meetupstatic.com/photos/member/6/7/2/1/member_254306401.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/6/7/2/1/thumb_254306401.jpeg' - members: 1 - name: Boulder Node.js - state: CO lat: 40.040000915527344 - who: Node.js Afficionados - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Seattle - timezone: US/Pacific - created: 1459184599000 link: 'http://www.meetup.com/Seattle-Joyent-Meetup/' - description: 'This is the Seattle area meetup for developers, operations and other technical types interested in Joyent technology. Come join us for a technical meet up to discuss the advantages of using containers in production, and how to overcome common challenges with deployments. Anyone who is interested in using, deploying, or contributing to Triton or other Joyent open-source projects are welcome. We will discuss topics such as Docker, Node.js, Mesos, KVM, Kubernetes, OS virtualization and DevOps, as well as best practices for public, private and hybrid cloud architectures.' + name: Joyent Seattle Meetup + description: '

This is the Seattle area meetup for developers, operations and other technical types interested in Joyent technology. Come join us for a technical meet up to discuss the advantages of using containers in production, and how to overcome common challenges with deployments. Anyone who is interested in using, deploying, or contributing to Triton or other Joyent open-source projects are welcome. We will discuss topics such as Docker, Node.js, Mesos, KVM, Kubernetes, OS virtualization and DevOps, as well as best practices for public, private and hybrid cloud architectures.

' lon: -122.33000183105469 - join_mode: open - organizer: - member_id: 103811862 - name: Andrew DeLorenzo - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/d/1/5/e/highres_253913598.jpeg' - photo_id: 253913598 - photo_link: 'http://photos4.meetupstatic.com/photos/member/d/1/5/e/member_253913598.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/d/1/5/e/thumb_253913598.jpeg' - members: 20 - name: Seattle Joyent Meetup - state: WA lat: 47.61000061035156 - who: Joyeurs - - utc_offset: -25200000 - country: US - visibility: public + - country: US city: Rancho Cucamonga - timezone: US/Pacific - created: 1459219943000 link: 'http://www.meetup.com/Inland-Empire-JavaScript-Meetup/' + name: Inland Empire JavaScript Meetup description: "This group is for anyone interested in Javascript. I'd like to bring together the local JS community and create a welcoming environment for anyone interested in meeting local JS Developers. We'll start with coding exercises and talks on anything Javascript and long term goals include holding workshops and a mini Hack-A-Thon." lon: -117.5199966430664 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/6/7/1/c/highres_448346396.jpeg' - photo_id: 448346396 photo_link: 'http://photos4.meetupstatic.com/photos/event/6/7/1/c/600_448346396.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/6/7/1/c/thumb_448346396.jpeg' - join_mode: open - organizer: - member_id: 192034406 - name: Randy Torres - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/1/3/f/highres_249672607.jpeg' - photo_id: 249672607 - photo_link: 'http://photos2.meetupstatic.com/photos/member/3/1/3/f/member_249672607.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/1/3/f/thumb_249672607.jpeg' - members: 1 - name: Inland Empire JavaScript Meetup - state: CA lat: 34.119998931884766 - who: JS Developers - - utc_offset: -14400000 - country: US - visibility: public + - country: US + city: New York + link: 'http://www.meetup.com/DevOps-for-Devs/' + name: DevOps for Devs + description: |- +

We've all been there.

+

You thought you were hired to write code, but the scope of your job has widened to include all things DevOps (CI/CD, deployment, configuration management, server administration, etc).

+

What's a developer to do?

+

This is a meetup for Software Engineers, by Software Engineers, with the goal of helping each other understand how to deploy our code safely and effectively, how to manage live servers (and databases) and how to embrace new technologies (like Docker, yay!) and incorporate them into our development process. 

+

You're not alone anymore. We'll get through this whole DevOps thing together.

+

Stay tuned for speakers on all the topics you've been dying to learn about: AWS, Heroku, Docker, Kubernetes, Chef, Puppet, New Relic, Load Balancing, lions and tigers and bears, oh my!

+ lon: -73.94999694824219 + lat: 40.83000183105469 + - country: US + city: Brooklyn + link: 'http://www.meetup.com/ThinkAcademy/' + name: 'Think Academy - Learn To Code!' + description: '

Passionate about learning how to code, love creating beautiful designs or building prototypes for your start up and tired of doing it alone? Then this is the group for you! 

' + lon: -73.98999786376953 + group_photo: + photo_link: 'http://photos3.meetupstatic.com/photos/event/d/a/0/1/600_448435809.jpeg' + lat: 40.70000076293945 + - country: US + city: Hawthorne + link: 'http://www.meetup.com/la-code-collective/' + name: 'LA Code Collective: Co-Op Group Programming' + description: |- +

This a small meet-up I am currently running out of my house. The point is to get career developers together in an intimate setting and discuss some of the things that we do literally every day. I'll try to include at least one presentation on technology at each group meeting, but then it is free-form discussion and coding. I'll have coffee and beer if you want it.

I have to limit this to 10 - 15 spots at first. Please attend only if you are on the RSVP list. I know a lot of people don't show up, but if you really want to come by and hang with your fellow abused coders just message me personally.

+

This is not a group for recruiters or 'idea guys' trying to sell their ideas. This group is for people who have already made a commitment to coding whether that is personal or professional. This is a group for people who have figured out how to get the job done, whatever that means.

+

I am very laid back and casual and you are all welcome to come talk about your problems, personal and professional. We'll sort out the mess of tools and languages we're expected to know as well as the pressures that modern life puts on a person who is expected to literally know everything and never stop working.

+

If we share and help each other with our unique situation we can make our lives a little bit easier.

+

I can't wait to meet you!

+


+ lon: -118.3499984741211 + group_photo: + photo_link: 'http://photos3.meetupstatic.com/photos/event/8/f/7/8/600_448416728.jpeg' + lat: 33.91999816894531 + - country: US + city: Monterey Park + link: 'http://www.meetup.com/Techbow-LA-Web-Technology-Meetup/' + name: Techbow LA Web Technology Meetup + description: '

To join us for a weekly meetup to share and discuss about the most up-to-date web technology. We are the most influential IT training provider in LA, which teaches a series of IT classes from fundamental to advanced level of web/mobile design and development, data analytics, digital media and online marketing classes.

' + lon: -118.1500015258789 + lat: 34.04999923706055 + - country: US city: New York - timezone: US/Eastern - created: 1459229911000 - link: 'http://www.meetup.com/DevOps-for-Devs/' - description: >- -

We've all been there.

+ link: 'http://www.meetup.com/Build-With-Code-New-York-City/' + name: Build With Code - New York City + description: "Build with Code hosts free weekly JavaScript and Software Engineering workshops, lectures and pair-programming sessions. \n\nWelcome! The reason people who only watch programming videos don't become programmers is because they're not programming. Come join other aspiring engineers and start building! In JavaScript the Hard Parts, we cover callbacks, higher-order functions (functional programming with JavaScript), object-oriented programming with JavaScript, closure, scope and execution context.\n\n JavaScript the Hard Parts has been our most popular workshop in LA, and now Codesmith CEO Will Sentance is bringing it to New York City. \n\nPrice: Always free \n\nAbout Codesmith: Codesmith teaches full stack software engineering in JavaScript through a 12 week immersive program. We teach computer science, object-oriented JavaScript, React, Angular, Node, distributed systems and mobile development so our grads can secure mid-to-senior level software engineering positions or launch their own ventures \n\nApply to the program at codesmith.io/apply. For further questions email admissions@codesmith.io \n\n---\n\nJavaScript the Hard Parts is a free JavaScript class in San Francisco, Los Angeles, and New York City designed to learn intermediate and advanced JavaScript - including callbacks, higher order functions (like how to understand map, reduce, filter and foreach), closure, object-oriented programming in JavaScript and other topics \n\nIn Codesmith Information sessions, attendees meet with current students and graduates to discuss what it's like to attend Codesmith, what characteristics create the best coding bootcamp in the US, how to get into Codesmith and how to succeed in the Codesmith interview" + lon: -73.98999786376953 + lat: 40.75 + - country: US + city: Dallas + link: 'http://www.meetup.com/ReactDallas/' + name: React Dallas + description: '

ReactJS and React Native meetup group. Learn and discuss React.

' + lon: -96.80000305175781 + lat: 32.790000915527344 + - country: US + city: San Diego + link: 'http://www.meetup.com/Build-With-Code-San-Diego/' + name: Build With Code - San Diego + description: "Build with Code hosts free weekly JavaScript and Software Engineering workshops, lectures and pair-programming sessions. Welcome! \n\nLearn and build with the hard parts of JavaScript every Thursday 6:30pm-8:00pm through intuitive lectures and pair-programming\n\nThe reason people who only watch programming videos don't become programmers is because they're not programming. Come join other aspiring engineers and start building!\n\nIn JavaScript the Hard Parts, we cover callbacks, higher-order functions (functional programming with JavaScript), object-oriented programming with JavaScript, closure, scope and execution context\n\nHosted at Codesmith every week on Thursdays 6:30pm-8:00pm and taught by Codesmith CTO Will Sentance\n\nPrice: Always free\n\nCodesmith (Codesmith) \n\nCodesmith teaches full stack software engineering in JavaScript through a 12 week immersive program. \n\nWe teach computer science, object-oriented JavaScript, React, Angular, Node, distributed systems and mobile development so our grads can secure mid-to-senior level software engineering positions or launch their own ventures\n\nApply to the program at codesmith.io/apply. For further questions email admissions@codesmith.io" + lon: -117.16999816894531 + lat: 32.720001220703125 + - country: US + city: San Jose + link: 'http://www.meetup.com/JSstance/' + name: JSstance + description: |+ + import {js} from './ether' -

You thought you were hired to write code, but the scope of - your job has widened to include all things DevOps (CI/CD, deployment, - configuration management, server administration, etc).

+ .replace(/(ruby|python|java)/g, js) -

What's a developer to do?

+ Learn. Discuss. Propagate. -

This is a meetup for Software Engineers, by Software - Engineers, with the goal of helping each other understand how to deploy - our code safely and effectively, how to manage live servers (and - databases) and how to embrace new technologies (like Docker, yay!) and - incorporate them into our development process. 

-

You're not alone anymore. We'll get through this whole DevOps - thing together.

-

Stay tuned for speakers on all the topics you've been dying to - learn about: AWS, Heroku, Docker, Kubernetes, Chef, Puppet, New Relic, - Load Balancing, lions and tigers and bears, oh my!

- lon: -73.94999694824219 - join_mode: open - organizer: - member_id: 161101302 - name: Malcolm Diggs - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/d/c/5/1/highres_255176401.jpeg' - photo_id: 255176401 - photo_link: 'http://photos2.meetupstatic.com/photos/member/d/c/5/1/member_255176401.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/d/c/5/1/thumb_255176401.jpeg' - members: 1 - name: DevOps for Devs - state: NY - lat: 40.83000183105469 - who: Developers - - utc_offset: -25200000 - country: US - visibility: public - city: Los Angeles - timezone: US/Pacific - created: 1459320292000 - link: 'http://www.meetup.com/Professional-Web-Developers-Therapy-and-Exchange-JavaScript/' - description: 'This is a group for career web developers to get together, vent, relax, code and share information in a comfortable setting. Each meet-up will have a general topic, at least one presentation, and an open-ended hang-out code session. This is a place for people who deal with code most of every day to get away from the people who think we are robots and be humans who happen to program for a living. Everyone is welcome to come from any background, back-end, front-end, hardware, mobile, or server programming. This group is for people who have realized that in order to learn for a living you can never claim to know anything.' - lon: -118.37000274658203 - join_mode: open - organizer: - member_id: 45394252 - name: Nicholas Juntilla - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/d/6/e/0/highres_255175008.jpeg' - photo_id: 255175008 - photo_link: 'http://photos4.meetupstatic.com/photos/member/d/6/e/0/member_255175008.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/d/6/e/0/thumb_255175008.jpeg' - members: 1 - name: Professional Web Developers Therapy and Exchange JavaScript - state: CA - lat: 34.11000061035156 - who: Developers - - region: South Pacific + + + + lon: -121.9000015258789 + lat: 37.38999938964844 + - country: US + city: San Francisco + link: 'http://www.meetup.com/San-Francisco-Telephony-API-Users-Group/' + name: San Francisco Telephony API Users Group + description: "Come hangout and discuss what has changed and what's new in the world of TelecomAPIs. Tech including but not limited to WebRTC, Javascript, C#, REST API, XML, basically anything you can throw an HTTP request with." + lon: -122.41999816894531 + lat: 37.779998779296875 + - country: US + city: San Mateo + link: 'http://www.meetup.com/San-Mateo-JavaScript-Study-Group/' + name: San Mateo JavaScript Study Group + description: |- +

Who is this study group for? - This is a place to learn, study, and practice JavaScript as a group. Items related to HTML/CSS/Javascript/various JavaScript libraries/etc. are welcome, but the focus should be on JavaScript. All JS levels are invited.You can meet people, talk about JavaScript related technologies, find a mentor, or someone to study with or do pair programming with.

+

RULES: - Simple, just be respectful towards others. ANY/ALL SKILL LEVELS ARE WELCOME AND ENCOURAGED, so please be nice. - ASK/CONFIRM if someone wants critique/help before just jumping in and giving it. - Have fun; learn!! :)

+

Online coding environments:

+

CodePen, JSFiddle

+

What is the study plan? - We will decide between: https://github.com/getify/You-Dont-Know-JS or http://www.amazon.com/Beginning-JavaScript-Paul-Wilton/dp...

+

When do we study together? - We will meet on a weekly basis, on Sunday afternoons via Slack/Skype or based on interest in person, and do our best to read and practice, first individually, and in advance (before the weekly meeting), as much as possible of just one book chapter per week, so we can discuss that weekly book chapter, ask and answer questions during our weekly meetup's.

+

Note: If you have extra time, you can also follow the "beginner's" weekly studying sequence recommended at: http://javascriptissexy.com/how-to-learn-javascript-prope...

+

Slack Channel: peninsulajs.slack.com

+

Liability Waiver: All participants agree to assume 100% responsibility for their own safety, conduct, and well-being and recognize that possible hazards exist while participating in outdoor (or any other) activities, and agree to participate solely at their own risk. If you join this group, and if you RSVP “Yes” and/or attend any of our events, it shall be conclusively presumed you understand and agree to this policy.

+ lon: -122.2699966430664 + lat: 37.54999923706055 + - country: US + city: Saint Louis + link: 'http://www.meetup.com/FullStack-STL/' + name: FullStack / STL + description: FullStack is a network of monthly developer and digital designer-only meetups that cover open source web and mobile app development from front to back. + lon: -90.25 + lat: 38.63999938964844 + - country: US + city: Ferndale + link: 'http://www.meetup.com/Detroit-Javascript/' + name: Detroit Javascript + description: |- +

var javaScriptMeetup = "A place for people to discuss the pains and joys of JS. Also a place to learn more about javaScript";

+

We follow the JSConf Code of Conduct. So please be respectful!

+ lon: -83.13999938964844 + group_photo: + photo_link: 'http://photos4.meetupstatic.com/photos/event/9/3/9/e/600_448657790.jpeg' + lat: 42.459999084472656 + - country: CA + city: Vancouver + link: 'http://www.meetup.com/Vancouver-Real-Estate-Technology-and-Data-Meetup/' + name: Vancouver Real Estate Technology and Data Meetup + description: |- + This is a group will discuss the latest and upcoming real-estate technologies for: Agents, Brokerages, MLS, Homeowners. We are passionate about applying data driven approach to the industry, and using the latest tools to help us make smarter decisions. + You can be someone who is experienced in the industry or simply someone who is interested in learning more about real-estate. You may be an innovator who is looking to do something amazing in the space. The sky's the limit. + lon: -123.04000091552734 + lat: 49.279998779296875 nodeschools: - - name: Auckland NodeSchool - location: 'Auckland, NZ' + - name: Anchorage NodeSchool + location: 'Anchorage, AK, US' + organizers: + - thejones + website: 'http://nodeschool.io/anchorage' + repo: 'http://github.com/nodeschool/anchorage' + lat: 61.2180556 + lon: -149.9002778 + - name: NodeSchool ATL + location: 'Atlanta, GA, US' + organizers: + - airportyh + repo: 'http://github.com/nodeschool/atlanta' + lat: 33.7489954 + lon: -84.3879824 + - name: Austin NodeSchool + location: 'Austin, TX, US' + organizers: + - stefanmve + repo: 'http://github.com/nodeschool/austin' + lat: 30.267153 + lon: -97.7430608 + - name: Bainbridge Island NodeSchool + location: 'Bainbridge Island, WA, US' + organizers: + - awaterma + - crtr0 + - twleung + repo: 'http://github.com/nodeschool/bainbridge' + lat: 47.6262081 + lon: -122.5212448 + - name: Baltimore NodeSchool + location: 'Baltimore, MD, US' + organizers: + - jasonrhodes + website: 'http://nodeschool.io/baltimore' + twitter: bmorenodeschool + repo: 'http://github.com/nodeschool/baltimore' + lat: 39.2903848 + lon: -76.6121893 + - name: BayNode + location: 'Mountain View, CA, US' + organizers: + - tonypujals + - rosskukulinski + - CrabDude + repo: 'http://github.com/nodeschool/baynode' + lat: 37.3860517 + lon: -122.0838511 + - name: Boston NodeSchool + location: 'Boston, MA, US' + organizers: + - jstreb + - twalling + website: 'https://github.com/nodeschool/boston' + repo: 'http://github.com/nodeschool/boston' + lat: 42.3600825 + lon: -71.0588801 + - name: Chicago NodeSchool + location: 'Chicago, IL, US' + organizers: + - azizali + website: 'http://nodeschool.io/chicago' + twitter: '@heyaziz' + repo: 'http://github.com/nodeschool/chicago' + lat: 41.8781136 + lon: -87.6297982 + - name: Cincinnati NodeSchool + location: 'Cincinnati, OH, US' + organizers: + - fiveisprime + - jackboberg + - Tzmanics + website: 'https://github.com/nodeschool/cincinnati' + twitter: CincyNodeSchool + repo: 'http://github.com/nodeschool/cincinnati' + lat: 39.1031182 + lon: -84.5120196 + - name: Cleveland NodeSchool + location: 'Cleveland, OH, US' + organizers: + - kmckee + - kwpeters + website: 'http://nodeschool.io/cleveland' + twitter: nodeSchoolCLE + repo: 'http://github.com/nodeschool/cleveland' + lat: 41.49932 + lon: -81.6943605 + - name: PairColumbus NodeSchool + location: 'Columbus, OH, US' + organizers: + - jbobo + website: 'http://nodeschool.io/columbus' + repo: 'http://github.com/nodeschool/columbus' + lat: 39.9611755 + lon: -82.99879419999999 + - name: NodeSchool Dallas + location: 'Dallas, TX, US' + organizers: + - prochafilho + - gangstead + - leongaban + website: 'http://nodeschool.io/dallas' + repo: 'http://github.com/nodeschool/dallas' + lat: 32.7766642 + lon: -96.79698789999999 + - name: Denver-Boulder-Ft. Collins NodeSchool + location: 'Denver, CO, US' + organizers: + - ralucas + - patrick-steele-idem + - legittalon + - mjhea0 + twitter: '@nodejscolorado' + repo: 'http://github.com/nodeschool/denver-boulder' + lat: 39.7392358 + lon: -104.990251 + - name: Edmonton NodeSchool + location: 'Edmonton, AB, CA' + organizers: + - ryanramage + website: 'https://github.com/nodeschool/edmonton' + twitter: '@ryan_ramage_' + repo: 'http://github.com/nodeschool/edmonton' + lat: 53.544389 + lon: -113.4909267 + - name: NodeSchool Fort Lauderdale + location: 'Fort Lauderdale, FL, US' + organizers: + - khalifenizar + - dambalah + - onel0p3z + repo: 'http://github.com/nodeschool/fort-lauderdale' + lat: 26.1224386 + lon: -80.13731740000001 + - name: 'Gainesville, FL NodeSchool' + location: 'Gainesville, FL, US' + organizers: + - aaronbdixon + website: 'http://gnvjs.com' + twitter: gnvjs + repo: 'http://github.com/nodeschool/gainesville' + lat: 29.6516344 + lon: -82.32482619999999 + - name: NodeSchool - Glendora Javascript + location: 'Glendora, CA, US' + organizers: + - uptownhr + website: 'http://nodeschool.io/glendora' + repo: 'http://github.com/nodeschool/glendora' + lat: 34.1361187 + lon: -117.865339 + - name: NodeSchool Wisconsin + location: 'Green Bay, WI, US' + organizers: + - blakehall + - zo0o0ot + website: 'http://nodeschool.io/wisconsin' + twitter: '@greenbayjs' + repo: 'http://github.com/nodeschool/wisconsin' + lat: 44.51915899999999 + lon: -88.019826 + - name: Honolulu NodeSchool + location: 'Honolulu, HI, US' + organizers: + - keokilee + - taesup + - mrbarbasa + - jaywon + - thgaskell + website: 'http://nodeschool.io/honolulu' + repo: 'http://github.com/nodeschool/honolulu' + lat: 21.3069444 + lon: -157.8583333 + - name: NodeSchool Kamloops + location: 'Kamloops, BC, CA' + organizers: + - jonotron + - chadfawcett + - chrisfosterelli + repo: 'http://github.com/nodeschool/kamloops' + lat: 50.674522 + lon: -120.3272674 + - name: 'NodeSchool: LA Edition' + location: 'Los Angeles, CA, US' + organizers: + - jxson + - emkay + website: 'http://nodeschool.io/los-angeles' + repo: 'http://github.com/nodeschool/los-angeles' + lat: 34.0522342 + lon: -118.2436849 + - name: NodeSchool Madison + location: 'Madison, WI, US' + organizers: + - jthoms1 + website: 'http://nodeschool.io/madison/' + twitter: nodeschoolmsn + repo: 'http://github.com/nodeschool/madison' + lat: 43.0730517 + lon: -89.4012302 + - name: NodeSchool Manchester + location: 'Manchester, NH, US' + organizers: + - AlabamaMike + - antishow + - swinter2 + website: 'http://nodeschool.io/manchester' + twitter: nodemanchvegas + repo: 'http://github.com/nodeschool/manchester' + lat: 42.9956397 + lon: -71.4547891 + - name: NodeSchool Miami + location: 'Miami, FL, US' + organizers: + - khalifenizar + - dambalah + - onel0p3z + repo: 'http://github.com/nodeschool/miami' + lat: 25.7616798 + lon: -80.1917902 + - name: NodeSchool Minneapolis + location: 'Minneapolis, MN, US' + organizers: + - mikefrey + repo: 'http://github.com/nodeschool/minneapolis' + lat: 44.977753 + lon: -93.2650108 + - name: Modesto NodeSchool + location: 'Modesto, CA, US' + organizers: + - joshterrill + - nbunney + website: 'http://nodeschool.io/modesto' + repo: 'http://github.com/nodeschool/modesto' + lat: 37.63909719999999 + lon: -120.9968782 + - name: NodeSchool Normal + location: 'Normal, IL, US' + organizers: + - BrainBacon + - codysherman + - shwnstrmn + website: 'http://nodeschool.io/normal' + twitter: NodeNormal + repo: 'http://github.com/nodeschool/normal' + lat: 40.5142026 + lon: -88.9906312 + - name: NodeSchool NYC + location: 'New York, NY, US' organizers: - - jladuval - - kevnz - - ram-manthry - website: 'http://nodeschool.io/auckland/' - repo: 'http://github.com/nodeschool/auckland' - lat: -36.8484597 - lon: 174.7633315 - - name: Brisbane NodeSchool - location: 'Brisbane, AU' + - hackygolucky + - brianloveswords + - toolness + - hsin421 + - acingraham + - gautamarora + website: 'http://nodeschool.io/nyc' + repo: 'http://github.com/nodeschool/nyc' + lat: 40.7127837 + lon: -74.0059413 + - name: Oakland NodeSchool + location: 'Oakland, CA, US' organizers: - - rvagg - - garrows - repo: 'http://github.com/nodeschool/brisbane' - lat: -27.4710107 - lon: 153.0234489 - - name: NodeSchool Christchurch - location: 'Christchurch, NZ' + - fauntleroy + website: 'http://nodeschool.io/oakland/' + twitter: nodeschooloak + repo: 'http://github.com/nodeschool/oakland' + lat: 37.8043637 + lon: -122.2711137 + - name: NodeSchool OC + location: 'Orange County, CA, US' organizers: - - digitalsadhu - - coder_stu - - gmwills - - gingermusketeer - website: 'http://nodeschool.io/christchurch/' - repo: 'http://github.com/nodeschool/christchurch' - lat: -43.5320544 - lon: 172.6362254 - - name: NodeSchool Hobart - location: 'Hobart, AU' + - markhuge + repo: 'http://github.com/nodeschool/oc' + lat: 33.7174708 + lon: -117.8311428 + - name: Orlando NodeSchool + location: 'Orlando, FL, US' organizers: - - joshgillies - - jonnyscholes - - timheap - - MalucoMarinero - website: 'http://nodeschool.io/hobart' - repo: 'http://github.com/nodeschool/hobart' - lat: -42.8819032 - lon: 147.3238148 - - name: NodeSchool Perth - location: 'Perth, AU' + - lancehudson + - bradplank + - calebrosario + repo: 'http://github.com/nodeschool/orlando' + lat: 28.5383355 + lon: -81.3792365 + - name: NodeSchool PDX + location: 'Portland, OR, US' organizers: - - nii236 - - miqid - website: 'http://nodeschool.io/perth' - repo: 'https://github.com/nodeschool/perth' - gitter: 'https://gitter.im/nodeschool/perth' - lat: -31.9535132 - lon: 115.8570471 - - name: Sydney NodeSchool - location: 'Sydney, AU' + - nrn + - dlmanning + - wraithan + - meandavejustice + - justinabrahms + - nvcexploder + - ngoldman + website: 'http://nodeschool.io/pdx/' + repo: 'http://github.com/nodeschool/pdx' + lat: 45.5230622 + lon: -122.6764816 + - name: NodeSchool Philadelphia + location: 'Philadelphia, PA, US' organizers: - - rvagg - - DamonOehlman - website: 'http://nodeschool.io/sydney' - repo: 'https://github.com/nodeschool/sydney' - lat: -33.8674869 - lon: 151.2069902 - - name: NodeSchool Wellington - location: 'Wellington, NZ' + - adobley + website: 'http://nodeschool.io/philadelphia' + twitter: nodeschoolphl + repo: 'http://github.com/nodeschool/philadelphia' + lat: 39.9525839 + lon: -75.1652215 + - name: 'Nodeschool Portland, ME' + location: 'Portland, ME, US' organizers: - - vimto - - chilts - repo: 'http://github.com/nodeschool/wellington' - lat: -41.2864603 - lon: 174.776236 + - carlodicelico + - jaegerpicker + website: 'http://nodeschool.io/portland-me' + repo: 'http://github.com/nodeschool/portland-me' + other: 'http://www.meetup.com/Portland-Maine-Nodeschool' + lat: 43.66147100000001 + lon: -70.2553259 + - name: Raleigh-Durham NodeSchool + location: 'Raleigh-Durham, NC, US' + organizers: + - brianpmarks + - jbelmont + website: 'http://nodeschool.io/raleigh-durham' + twitter: rdunodeschool + repo: 'http://github.com/nodeschool/raleigh-durham' + lat: 35.8991678 + lon: -78.86364019999999 + - name: NodeSchool Reno + location: 'Reno, NV, US' + organizers: + - colinloretz + - hmudesign + - w1zeman1p + website: 'http://nodeschool.io/reno/' + repo: 'http://github.com/nodeschool/reno' + lat: 39.5296329 + lon: -119.8138027 + - name: NodeSchool SLO + location: 'San Luis Obispo, CA, US' + organizers: + - ecwyne + website: 'http://nodeschool.io/san-luis-obispo/' + repo: 'http://github.com/nodeschool/san-luis-obispo' + lat: 35.2827524 + lon: -120.6596156 + - name: NodeSchool SF + location: 'San Francisco, CA, US' + organizers: + - duquet + - llkats + - jedireza + website: 'http://nodeschool.io/sanfrancisco/' + twitter: nodeschoolsf + repo: 'http://github.com/nodeschool/sanfrancisco' + lat: 37.7749295 + lon: -122.4194155 + - name: Seattle NodeSchool + location: 'Seattle, WA, US' + organizers: + - sethvincent + - YonasBerhe + - blakmatrix + website: 'http://nodeschool.io/seattle' + repo: 'http://github.com/nodeschool/seattle' + lat: 47.6062095 + lon: -122.3320708 + - name: Stanford University NodeSchool + location: 'Stanford, CA, US' + organizers: + - feross + - jhiesey + - abi + repo: 'https://github.com/nodeschool/stanford' + lat: 37.42410599999999 + lon: -122.1660756 + - name: NodeSchool STL + location: 'St. Louis, MO, US' + organizers: + - robbennet + website: 'http://nodeschool.io/stlouis' + repo: 'http://github.com/nodeschool/stlouis' + lat: 38.6270025 + lon: -90.19940419999999 + - name: Tacoma NodeSchool + location: 'Tacoma, WA, US' + organizers: + - NorthDecoder + website: 'http://nodeschool.io/tacoma' + repo: 'http://github.com/nodeschool/tacoma' + lat: 47.2528768 + lon: -122.4442906 + - name: Tampa Nodeschool + location: 'Tampa, FL, US' + organizers: + - eliwheaton + repo: 'https://github.com/nodeschool/tampa' + lat: 27.950575 + lon: -82.4571776 + - name: NodeSchool Toronto + location: 'Toronto, CA' + organizers: + - rmillr + - darcyclarke + - richgilbank + - jeffjewiss + - brenna + - andrewdamelio + - tessalt + website: 'http://nodeschool.io/toronto' + twitter: 'https://twitter.com/nodeschoolto' + repo: 'http://github.com/nodeschool/toronto' + lat: 43.653226 + lon: -79.3831843 + - name: Utah Node Ninjas + location: 'Provo, UT, US' + organizers: + - therebelrobot + website: 'http://www.meetup.com/Node-Ninjas/' + repo: 'https://github.com/Utah-Node-Ninjas' + lat: 40.2338438 + lon: -111.6585337 + - name: NodeSchool Vancouver + location: 'Vancouver, BC, CA' + organizers: + - sintaxi + - notmatt + - afabbro + - lvivier + - gyaresu + website: 'http://nodeschool.io/vancouver/' + repo: 'http://github.com/nodeschool/vancouver' + lat: 49.2827291 + lon: -123.1207375 + - name: Western Massachusetts NodeSchool + location: 'Western Massachusetts, US' + organizers: + - Sequoia + - a-pasquale + website: 'http://nodeschool.io/western-mass/' + repo: 'https://github.com/nodeschool/western-mass' + lat: 42.5944125 + lon: -70.68915439999999 + - name: NodeSchoolDC + location: 'Washington, DC, US' + organizers: + - robbiethegeek + - joshfinnie + - JuanCaicedo + - danpaz + website: 'http://nodeschool.io/washingtondc/' + twitter: NodeSchoolDC + repo: 'http://github.com/nodeschool/washingtondc' + lat: 38.9071923 + lon: -77.0368707 + - region: South Pacific meetups: - - utc_offset: 46800000 - country: NZ - visibility: public + - country: NZ city: Auckland - timezone: Pacific/Auckland - created: 1311729697000 link: 'http://www.meetup.com/AucklandJS/' - rating: 4.49 + name: AkJS description: '

A meetup for people in Auckland interested in JavaScript.

' lon: 174.75999450683594 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/2/1/3/6/highres_61388502.jpeg' - photo_id: 61388502 photo_link: 'http://photos3.meetupstatic.com/photos/event/2/1/3/6/600_61388502.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/2/1/3/6/thumb_61388502.jpeg' - join_mode: open - organizer: - member_id: 4044571 - name: Walter Rumsby - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/b/8/6/a/highres_11807210.jpeg' - photo_id: 11807210 - photo_link: 'http://photos1.meetupstatic.com/photos/member/b/8/6/a/member_11807210.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/b/8/6/a/thumb_11807210.jpeg' - members: 806 - name: AkJS lat: -36.849998474121094 - who: Members - - utc_offset: 39600000 - country: AU - visibility: public + - country: AU city: Melbourne - timezone: Australia/Melbourne - created: 1326940244000 link: 'http://www.meetup.com/MelbNodeJS/' - rating: 4.39 - description: >- -

HTTP 302:  http://groups.google.com/group/nodejsau. - Join the Google Group. All discussions and event notices occur - here.

- -

For Melbourne Noders wanting to chat about Node libraries or hack - with others (on their stuff, on other's, on everyone's). Beginners and - experts welcome alike.

Our Code of Conduct is located - here: https://gist.github.com/louiscntr/84be3ead90ed77f8a5ba

+ name: The Melbourne Node.JS Meetup Group + description: |- +

HTTP 302:  http://groups.google.com/group/nodejsau. Join the Google Group. All discussions and event notices occur here.

+

For Melbourne Noders wanting to chat about Node libraries or hack with others (on their stuff, on other's, on everyone's). Beginners and experts welcome alike.

Our Code of Conduct is located here: https://gist.github.com/louiscntr/84be3ead90ed77f8a5ba

lon: 144.9600067138672 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/a/2/e/6/highres_88481702.jpeg' - photo_id: 88481702 photo_link: 'http://photos4.meetupstatic.com/photos/event/a/2/e/6/600_88481702.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/a/2/e/6/thumb_88481702.jpeg' - join_mode: open - organizer: - member_id: 19911361 - name: Andrey Sidorov - photo: - photo_id: 25364682 - photo_link: 'http://photos3.meetupstatic.com/photos/member/a/e/8/a/member_25364682.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/a/e/8/a/thumb_25364682.jpeg' - members: 1270 - name: The Melbourne Node.JS Meetup Group lat: -37.810001373291016 - who: Noders - - utc_offset: 28800000 - country: AU - visibility: public + - country: AU city: Perth - timezone: Australia/Perth - created: 1346130607000 link: 'http://www.meetup.com/perth-js/' - rating: 4.92 + name: perth.js description: "

A group for JavaScript developers - an opportunity to explore the growing JS ecosystem, exchange battle stories and generally shoot the breeze... Let us know if you have a topic / passion you'd like to discuss!

" lon: 115.83999633789062 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/b/9/c/0/highres_154247552.jpeg' - photo_id: 154247552 photo_link: 'http://photos1.meetupstatic.com/photos/event/b/9/c/0/600_154247552.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/b/9/c/0/thumb_154247552.jpeg' - join_mode: open - members: 290 - name: perth.js lat: -31.959999084472656 - who: anonymous functions - - utc_offset: 39600000 - country: AU - visibility: public + - country: AU city: Sydney - timezone: Australia/Sydney - created: 1350963569000 link: 'http://www.meetup.com/sydney-node-ninjas/' - rating: 4.49 + name: Sydney Node.ninjas description: "

We started as a small hack night in the ThoughtWorks Sydney office... but we think it's time to grow!

\n

Whether you've just heard about Node.js, used it for personal projects, or whether it already powers your commercial applications, join the Sydney community to share your experiences and learn about the fastest growing platform of 2012.

\n

We're aiming to get a mix of informal chats and presentations, and some opportunities for hacking. All skill levels are welcome!

\n

Head over to the wiki for a list of past meetups, and session ideas.

\n

\_

" lon: 151.2100067138672 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/8/6/b/c/highres_172414492.jpeg' - photo_id: 172414492 photo_link: 'http://photos3.meetupstatic.com/photos/event/8/6/b/c/600_172414492.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/8/6/b/c/thumb_172414492.jpeg' - join_mode: open - organizer: - member_id: 10550641 - name: Romain - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/9/8/8/2/highres_78699042.jpeg' - photo_id: 78699042 - photo_link: 'http://photos4.meetupstatic.com/photos/member/9/8/8/2/member_78699042.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/9/8/8/2/thumb_78699042.jpeg' - members: 1519 - name: Sydney Node.ninjas lat: -33.869998931884766 - who: ninjas - - utc_offset: 28800000 - country: SG - visibility: public + - country: SG city: Singapore - timezone: Asia/Singapore - created: 1356589667000 link: 'http://www.meetup.com/Singapore-JS/' - rating: 4.66 + name: SingaporeJS description: "

Developers interested in sharing knowledge and growing their skills around JavaScript and modern web technology: e.g. ES6, AltJS, NodeJS, Angular, Ember, Browserify, Web Components, HTML5 APIs, LevelDB, etc.

\n


Goals

\n
    \n

    A monthly meetup

    \n

    Post-meetup meals/drinks for socialising.

    \n

    Prefer many short talks vs. few long talks.

    \n

    Focus on cutting-edge technologies and development techniques.

    \n

    Focus on open source over commercial products.

    \n

    Focus on clean code.

    \n
\n


If you want to help out, sponsor, or have any suggestions or feedback, just get in touch!

" lon: 103.8499984741211 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/b/4/4/1/highres_436066145.jpeg' - photo_id: 436066145 photo_link: 'http://photos4.meetupstatic.com/photos/event/b/4/4/1/600_436066145.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/b/4/4/1/thumb_436066145.jpeg' - join_mode: open - organizer: - member_id: 12447241 - name: Tim Oxley - photo: - photo_id: 87707062 - photo_link: 'http://photos4.meetupstatic.com/photos/member/b/7/d/6/member_87707062.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/b/7/d/6/thumb_87707062.jpeg' - members: 2421 - name: SingaporeJS lat: 1.2999999523162842 - who: Developers - - utc_offset: 39600000 - country: AU - visibility: public + - country: AU city: Melbourne - timezone: Australia/Melbourne - created: 1367889472000 link: 'http://www.meetup.com/EmberJS-Melbourne/' - rating: 4.66 + name: Melbourne Ember.js Meetup description: "

The Ember.js Melbourne Meetup is for anyone who wants to learn Ember.js, is already using it heavily, or wants to stay up to date with the fast changing developments of Ember.js. Let's get together periodically to talk about code, eat, drink, and generally geek out. See you there!

" lon: 144.9600067138672 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/b/2/4/0/highres_233505632.jpeg' - photo_id: 233505632 photo_link: 'http://photos3.meetupstatic.com/photos/event/b/2/4/0/600_233505632.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/b/2/4/0/thumb_233505632.jpeg' - join_mode: open - organizer: - member_id: 12839017 - name: Tomas Spacek - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/8/1/1/2/highres_115833042.jpeg' - photo_id: 115833042 - photo_link: 'http://photos3.meetupstatic.com/photos/member/8/1/1/2/member_115833042.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/8/1/1/2/thumb_115833042.jpeg' - members: 266 - name: Melbourne Ember.js Meetup lat: -37.810001373291016 - who: Embereños - - utc_offset: 46800000 - country: NZ - visibility: public + - country: NZ city: Auckland - timezone: Pacific/Auckland - created: 1372659977000 link: 'http://www.meetup.com/AucklandNodeJs/' - rating: 4.84 + name: Auckland Node.js Meetup description: "

A group for Auckland-based developers who are interested in finding out more about this new fandangled technology called Node.js... You may be a front-end coder who is looking to apply your JavaScript skills to back-end development, or a full-stack developer who presently codes in Ruby / Python / PHP / insert preferred language here / etc., and is curious to see what asynchronous programming has to offer (and whether it really kicks your current preferred language's *ss). If you wish to become a competent practitioner of Nodejitsu, then enter the Node.nz dojo!

" lon: 174.75999450683594 - join_mode: open - organizer: - member_id: 95423742 - name: Jacob Duval - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/3/d/e/b/highres_242835851.jpeg' - photo_id: 242835851 - photo_link: 'http://photos2.meetupstatic.com/photos/member/3/d/e/b/member_242835851.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/3/d/e/b/thumb_242835851.jpeg' - members: 585 - name: Auckland Node.js Meetup lat: -36.849998474121094 - who: Happy Noders - - utc_offset: 46800000 - country: NZ - visibility: public + - country: NZ city: Wellington - timezone: Pacific/Auckland - created: 1372756436000 link: 'http://www.meetup.com/Node-js-Wellington/' - rating: 4.81 + name: Node.js Wellington description: "

A group for anyone interested in Node.js, JavaScript, frontend/backend and everywhere where JavaScript runs, whether it's the browser, the server, your database or under your kitchen sink and everything in between. We're a social group and whilst we don't (yet) do organised presentations, we're happy to swap ideas and chat about different techniques.

" lon: 174.77999877929688 - join_mode: open - organizer: - member_id: 13904834 - name: Alex Gibson - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/7/f/2/5/highres_244472549.jpeg' - photo_id: 244472549 - photo_link: 'http://photos1.meetupstatic.com/photos/member/7/f/2/5/member_244472549.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/7/f/2/5/thumb_244472549.jpeg' - members: 273 - name: Node.js Wellington lat: -41.279998779296875 - who: Wellington Noders - - utc_offset: 36000000 - country: AU - visibility: public + - country: AU city: Gold Coast - timezone: Australia/Brisbane - created: 1381226708000 link: 'http://www.meetup.com/goldcoastjs/' - rating: 5 + name: 'GCJS: Gold Coast JavaScript' description: "

Hey we all know that JavaScript is the new/old black, but there no denying it - there's a lot of people on the Gold Coast happily coding JavaScript, so if there's any programming group that's going to make it - this is it!

" lon: 153.44000244140625 - join_mode: open - organizer: - member_id: 12263633 - name: Kevin Vanderbeken - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/b/8/1/a/highres_10427130.jpeg' - photo_id: 10427130 - photo_link: 'http://photos2.meetupstatic.com/photos/member/b/8/1/a/member_10427130.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/b/8/1/a/thumb_10427130.jpeg' - members: 77 - name: 'GCJS: Gold Coast JavaScript' lat: -28.06999969482422 - who: JS devs - - utc_offset: 46800000 - country: NZ - visibility: public + - country: NZ city: Christchurch - timezone: Pacific/Auckland - created: 1383611956000 link: 'http://www.meetup.com/CHCH-JS/' - rating: 4.65 - description: >- -

For those in Christchurch interested in everything JavaScript. - Node.js, frameworks, libraries and everything in between. Newbies, - battle-hardened veterans, all welcome!

- -

We meet once a month and alternate our monthly - sessions between node.js and front-end - JavaScript.

- + name: CHCH.JS + description: |- +

For those in Christchurch interested in everything JavaScript. Node.js, frameworks, libraries and everything in between. Newbies, battle-hardened veterans, all welcome!

+

We meet once a month and alternate our monthly sessions between node.js and front-end JavaScript.

Join the group to find out when and where our next meetup is.

- -

Tell us your talk ideas or submit a talk here: - http://goo.gl/forms/v8lcHdrGJH

+

Tell us your talk ideas or submit a talk here: http://goo.gl/forms/v8lcHdrGJH

lon: 172.63999938964844 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/1/0/b/e/highres_440464286.jpeg' - photo_id: 440464286 photo_link: 'http://photos2.meetupstatic.com/photos/event/1/0/b/e/600_440464286.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/1/0/b/e/thumb_440464286.jpeg' - join_mode: open - organizer: - member_id: 10729382 - name: George Wills - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/8/6/3/a/highres_170434362.jpeg' - photo_id: 170434362 - photo_link: 'http://photos2.meetupstatic.com/photos/member/8/6/3/a/member_170434362.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/8/6/3/a/thumb_170434362.jpeg' - members: 275 - name: CHCH.JS lat: -43.529998779296875 - who: JavaScripters - - utc_offset: 28800000 - country: SG - visibility: public + - country: SG city: Singapore - timezone: Asia/Singapore - created: 1383878971000 link: 'http://www.meetup.com/Meteor-Singapore/' - rating: 4.67 + name: Meteor Singapore description: "

Meet other developers using Meteor. Share your knowledge, apps, and get feedback from others. Meteor is an open-source platform for building top-quality web apps in a fraction of the time, whether you're an expert developer or just getting started.

" lon: 103.8499984741211 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/5/8/7/2/highres_421822642.jpeg' - photo_id: 421822642 photo_link: 'http://photos3.meetupstatic.com/photos/event/5/8/7/2/600_421822642.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/5/8/7/2/thumb_421822642.jpeg' - join_mode: open - organizer: - member_id: 56862162 - name: Ahmed Muzammil - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/e/1/a/b/highres_242277771.jpeg' - photo_id: 242277771 - photo_link: 'http://photos4.meetupstatic.com/photos/member/e/1/a/b/member_242277771.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/e/1/a/b/thumb_242277771.jpeg' - members: 486 - name: Meteor Singapore lat: 1.2999999523162842 - who: Meteorities - - utc_offset: 46800000 - country: NZ - visibility: public + - country: NZ city: Auckland - timezone: Pacific/Auckland - created: 1385002432000 link: 'http://www.meetup.com/Auckland-d3-js/' - rating: 4.22 - description: >- -

For people interested in implementing svg graphics with d3.js
- - + name: Auckland d3-js + description: |- +

For people interested in implementing svg graphics with d3.js

lon: 174.75999450683594 - join_mode: open - organizer: - member_id: 72385432 - name: Anita Kean - members: 80 - name: Auckland d3-js lat: -36.849998474121094 - who: members - - utc_offset: 46800000 - country: NZ - visibility: public + - country: NZ city: Wellington - timezone: Pacific/Auckland - created: 1386211690000 link: 'http://www.meetup.com/hackpack/' - rating: 5 + name: Hack Pack description: "

You can think of Hack Pack like a social club for hackers.\_

\n

Rather than us focus on presentations and speakers (there are already lots of great meetups which do this) we're focusing on fulfilling the social needs of the community.

\n

Join us for:

\n

•\_Waxing lyrical about node/ruby/next big thing.

\n

•\_Playing video games
\n\n

\n

•\_Trying your hand at table tennis

\n

•\_Having the odd drink

\n

•\_Perhaps partaking in a slice of pizza

\n

•\_Starting side-projects

\n

•\_Making friends!

\n


\n\n

\n


\n\n

\n


\n\n

\n


\n\n

" lon: 174.77999877929688 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/a/e/7/6/highres_415424662.jpeg' - photo_id: 415424662 photo_link: 'http://photos1.meetupstatic.com/photos/event/a/e/7/6/600_415424662.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/a/e/7/6/thumb_415424662.jpeg' - join_mode: open - organizer: - member_id: 122432862 - name: Hack Club - members: 254 - name: Hack Pack lat: -41.279998779296875 - who: Hackers - - utc_offset: 28800000 - country: SG - visibility: public + - country: SG city: Singapore - timezone: Asia/Singapore - created: 1388243950000 link: 'http://www.meetup.com/NodeBotsSingapore/' - rating: 4.73 + name: NodeBots Singapore description: "

NodeBots Singapore is a meetup for robotics makers.\_

\n

•\_NodeBots are robots that are controlled by node.js/javascript. http://nodebots.io/\_

\n

• Examples of NodeBots:\_https://github.com/rwaldron/johnny-five http://nodecopter.com/\_

\n

•\_The group will meet quarterly.\_

\n

•\_Let's get together to talk, hack, and demo robotics.\_

\n

•\_Join a supportive and growing international community. Make your own R2D2.

" lon: 103.8499984741211 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/7/8/a/c/highres_318930892.jpeg' - photo_id: 318930892 photo_link: 'http://photos2.meetupstatic.com/photos/event/7/8/a/c/600_318930892.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/7/8/a/c/thumb_318930892.jpeg' - join_mode: open - organizer: - member_id: 12348824 - name: Martin Andrews - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/e/4/c/2/highres_72118562.jpeg' - photo_id: 72118562 - photo_link: 'http://photos4.meetupstatic.com/photos/member/e/4/c/2/member_72118562.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/e/4/c/2/thumb_72118562.jpeg' - members: 200 - name: NodeBots Singapore lat: 1.2999999523162842 - who: Makers - - utc_offset: 37800000 - country: AU - visibility: public + - country: AU city: Adelaide - timezone: Australia/Adelaide - created: 1388968644000 link: 'http://www.meetup.com/adelaidejs/' - rating: 4.94 + name: Adelaide front-end JS frameworks description: '

This meet-up is focused on learning and applying front-end JS frameworks like Ember.js, AngularJS and React etc to create and maintain ambitious web applications.

' lon: 138.60000610351562 - join_mode: open - organizer: - member_id: 72385152 - name: Jason Sidoryn - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/c/4/a/6/highres_85790342.jpeg' - photo_id: 85790342 - photo_link: 'http://photos2.meetupstatic.com/photos/member/c/4/a/6/member_85790342.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/c/4/a/6/thumb_85790342.jpeg' - members: 152 - name: Adelaide front-end JS frameworks lat: -34.93000030517578 - who: javascripters - - utc_offset: 39600000 - country: AU - visibility: public + - country: AU city: Sydney - timezone: Australia/Sydney - created: 1389209880000 link: 'http://www.meetup.com/Meteor-Sydney/' - rating: 4.63 - description: >- -

Meet other developers using Meteor. Share your knowledge, apps, - and get feedback from others. Meteor is an open-source platform for - building top-quality web apps in a fraction of the time, whether you're - an expert developer or just getting started.

- -

Join the community channel at: https://meteorsydney.herokuapp.com/

+ name: Meteor Sydney + description: |- +

Meet other developers using Meteor. Share your knowledge, apps, and get feedback from others. Meteor is an open-source platform for building top-quality web apps in a fraction of the time, whether you're an expert developer or just getting started.

+

Join the community channel at: https://meteorsydney.herokuapp.com/

lon: 151.2100067138672 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/9/6/2/0/highres_424418432.jpeg' - photo_id: 424418432 photo_link: 'http://photos1.meetupstatic.com/photos/event/9/6/2/0/600_424418432.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/9/6/2/0/thumb_424418432.jpeg' - join_mode: open - organizer: - member_id: 81670332 - name: Nick Coe - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/2/a/3/a/highres_245950810.jpeg' - photo_id: 245950810 - photo_link: 'http://photos3.meetupstatic.com/photos/member/2/a/3/a/member_245950810.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/2/a/3/a/thumb_245950810.jpeg' - members: 682 - name: Meteor Sydney lat: -33.869998931884766 - who: Meteorites - - utc_offset: 28800000 - country: AU - visibility: public + - country: AU city: Perth - timezone: Australia/Perth - created: 1390987899000 link: 'http://www.meetup.com/meteor-perth/' - rating: 4.11 - description: >- -

Meet other developers using Meteor. Share your knowledge, - apps, and get feedback from others. Meteor is an open-source platform - for building top-quality web apps in a fraction of the time, whether - you're an expert developer or just getting started. Join in on live - Devshop viewings, hackathons, inspirational classes and casual poolside - catchups!
- - + name: Meteor Perth + description: |- +

Meet other developers using Meteor. Share your knowledge, apps, and get feedback from others. Meteor is an open-source platform for building top-quality web apps in a fraction of the time, whether you're an expert developer or just getting started. Join in on live Devshop viewings, hackathons, inspirational classes and casual poolside catchups!

lon: 115.83999633789062 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/d/4/a/highres_424443402.jpeg' - photo_id: 424443402 photo_link: 'http://photos3.meetupstatic.com/photos/event/d/4/a/600_424443402.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/d/4/a/thumb_424443402.jpeg' - join_mode: open - organizer: - member_id: 81670332 - name: Nick Coe - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/highres_245331334.jpeg' - photo_id: 245331334 - photo_link: 'http://photos1.meetupstatic.com/photos/member/c/8/8/6/member_245331334.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/c/8/8/6/thumb_245331334.jpeg' - members: 45 - name: Meteor Perth lat: -31.959999084472656 - who: Meteorites - - utc_offset: 39600000 - country: AU - visibility: public + - country: AU city: Melbourne - timezone: Australia/Melbourne - created: 1392149149000 link: 'http://www.meetup.com/Stripe-Australia/' - rating: 4 + name: 'The Stripe Meetup Group: Australia' description: '

Meet the Stripe team and members of the Stripe community in Australia.

' lon: 144.9600067138672 group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/7/0/b/e/highres_332848862.jpeg' - photo_id: 332848862 photo_link: 'http://photos4.meetupstatic.com/photos/event/7/0/b/e/600_332848862.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/7/0/b/e/thumb_332848862.jpeg' - join_mode: open - organizer: - member_id: 104610742 - name: Susan Wu - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/7/4/7/4/highres_177029812.jpeg' - photo_id: 177029812 - photo_link: 'http://photos1.meetupstatic.com/photos/member/7/4/7/4/member_177029812.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/7/4/7/4/thumb_177029812.jpeg' - members: 84 - name: 'The Stripe Meetup Group: Australia' lat: -37.810001373291016 - who: Stripes - - utc_offset: 28800000 - country: SG - visibility: public + - country: SG city: Singapore - timezone: Asia/Singapore - created: 1392712003000 link: 'http://www.meetup.com/CreativeCoders/' - rating: 4.62 - description: >- -

Creative Coders is a Singapore user group for programmers to get - together and discuss about how to use technologies creatively. Anyone - who is interested in coding and/or creative coding is welcomed to join. - The purpose of the group is to make programmers happy and excited about - their job and to inspire non-programmers to pick up coding as a hobby. - We will focus on trendy technologies which are also fun to work with, - such as HTML5, Processing, Mobile development, OpenFrameworks and - Node.js etc.

- -

Join our Facebook group to get fresh updates, https://www.facebook.com/groups/ccmail/

+ name: Creative Coders + description: |- +

Creative Coders is a Singapore user group for programmers to get together and discuss about how to use technologies creatively. Anyone who is interested in coding and/or creative coding is welcomed to join. The purpose of the group is to make programmers happy and excited about their job and to inspire non-programmers to pick up coding as a hobby. We will focus on trendy technologies which are also fun to work with, such as HTML5, Processing, Mobile development, OpenFrameworks and Node.js etc.

+

Join our Facebook group to get fresh updates, https://www.facebook.com/groups/ccmail/

lon: 103.8499984741211 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/9/b/0/2/highres_447399682.jpeg' - photo_id: 447399682 photo_link: 'http://photos3.meetupstatic.com/photos/event/9/b/0/2/600_447399682.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/9/b/0/2/thumb_447399682.jpeg' - join_mode: open - organizer: - member_id: 116698182 - name: Ed Moore - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/4/3/1/e/highres_185177182.jpeg' - photo_id: 185177182 - photo_link: 'http://photos3.meetupstatic.com/photos/member/4/3/1/e/member_185177182.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/4/3/1/e/thumb_185177182.jpeg' - members: 370 - name: Creative Coders lat: 1.2999999523162842 - who: Creative Coders - - utc_offset: 39600000 - country: AU - visibility: public + - country: AU city: Melbourne - timezone: Australia/Melbourne - created: 1394492714000 link: 'http://www.meetup.com/AngularJS-Melbourne/' - rating: 4.66 + name: AngularJS Melbourne description: "

This group is for web developers \_in Australia who want to learn more about AngularJS and applications built with this framework.

\n

Each meetup will host 2 speakers who have built amazing stuff with AngularJS and want to share it with others. After that and during the breaks - networking and sharing of experience.
\n\n

" lon: 144.9600067138672 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/b/5/6/0/highres_341146432.jpeg' - photo_id: 341146432 photo_link: 'http://photos3.meetupstatic.com/photos/event/b/5/6/0/600_341146432.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/b/5/6/0/thumb_341146432.jpeg' - join_mode: open - organizer: - member_id: 46442222 - name: Alexander Burakevych - photo: - photo_id: 52462482 - photo_link: 'http://photos3.meetupstatic.com/photos/member/5/7/d/2/member_52462482.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/5/7/d/2/thumb_52462482.jpeg' - members: 2031 - name: AngularJS Melbourne lat: -37.810001373291016 - who: Members - - utc_offset: 28800000 - country: SG - visibility: public_limited + - country: SG city: Singapore - timezone: Asia/Singapore - created: 1396840405000 link: 'http://www.meetup.com/Singapore-Node-Community/' - rating: 3.5 - description: >- -

A informal meetup group focused on bringing together developers that - use Web frameworks built on top of Node.JS. Node.js is a modern web - technology that is open source, cross-platform runtime environment for - server-side and networking applications. The community is free and non - profit effort to bring developers together that are interested in - sharing their knowledge in a casual way after work. 

- + name: Singapore Node Community + description: |- +

A informal meetup group focused on bringing together developers that use Web frameworks built on top of Node.JS. Node.js is a modern web technology that is open source, cross-platform runtime environment for server-side and networking applications. The community is free and non profit effort to bring developers together that are interested in sharing their knowledge in a casual way after work. 


-

Meetup Talks focused on : 

-

• Web Frameworks built on top of NodeJS (Express etc)

-

• Best Practices- Security of Node.JS

-

• Popular Node Modules

-

• Production stories

-

• Short Talks

-

• Socialising after meetups

-
- -

We are always looking for friends to help arrange the space and - food. If you think you can help, get in touch!

- +

We are always looking for friends to help arrange the space and food. If you think you can help, get in touch!


lon: 103.8499984741211 - join_mode: open - organizer: - member_id: 64620262 - name: Gautam Anand - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/d/2/2/5/highres_248393797.jpeg' - photo_id: 248393797 - photo_link: 'http://photos1.meetupstatic.com/photos/member/d/2/2/5/member_248393797.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/d/2/2/5/thumb_248393797.jpeg' - members: 170 - name: Singapore Node Community lat: 1.2999999523162842 - who: Node Ninjas - - utc_offset: 39600000 - country: AU - visibility: public + - country: AU city: Melbourne - timezone: Australia/Melbourne - created: 1399952248000 link: 'http://www.meetup.com/Melbourne-Tessel-Enthusiasts/' - rating: 5 + name: Melbourne Tessel Enthusiasts description: 'This is a group for Tessel enthusiasts or anyone who is interested in finding out what you can do with one. Tessel is a Wifi enabled microcontroller board (and a set of add-on modules) that can be programmed with JavaScript and is compatible with Node.js. More information at: http://tessel.io/.' lon: 144.9600067138672 - join_mode: open - organizer: - member_id: 46315852 - name: Simon Collins - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/7/7/e/4/highres_197250692.jpeg' - photo_id: 197250692 - photo_link: 'http://photos4.meetupstatic.com/photos/member/7/7/e/4/member_197250692.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/7/7/e/4/thumb_197250692.jpeg' - members: 30 - name: Melbourne Tessel Enthusiasts lat: -37.810001373291016 - who: Tessters - - utc_offset: 28800000 - country: SG - visibility: public + - country: SG city: Singapore - timezone: Asia/Singapore - created: 1400478790000 link: 'http://www.meetup.com/Singapore-Node-JS/' + name: Singapore Node.JS description: Anything and everything Node.JS in Singapore lon: 103.8499984741211 - join_mode: open - organizer: - member_id: 12447241 - name: Tim Oxley - photo: - photo_id: 90235652 - photo_link: 'http://photos3.meetupstatic.com/photos/member/d/9/6/4/member_90235652.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/d/9/6/4/thumb_90235652.jpeg' - members: 191 - name: Singapore Node.JS lat: 1.2999999523162842 - who: Developers - - utc_offset: 36000000 - country: AU - visibility: public + - country: AU city: Brisbane - timezone: Australia/Brisbane - created: 1403062794000 link: 'http://www.meetup.com/Brisbane-AppDynamics/' - rating: 4.25 + name: Brisbane AppDynamics User Group description: "

AppDynamics! Where Application Perfomance meets DevOps. The hottest APM company on the planet. Find out what's new from the local AppDynamics team, discuss trends in APM technology, and share stories with other like-minded AppDynamos.

" lon: 153.02000427246094 - join_mode: open - organizer: - member_id: 108828322 - name: 'Masodah ' - photo: - photo_id: 144323312 - photo_link: 'http://photos1.meetupstatic.com/photos/member/5/b/1/0/member_144323312.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/5/b/1/0/thumb_144323312.jpeg' - members: 96 - name: Brisbane AppDynamics User Group lat: -27.459999084472656 - who: AppDynamos - - utc_offset: 39600000 - country: AU - visibility: public - city: Sydney - timezone: Australia/Sydney - created: 1404209164000 - link: 'http://www.meetup.com/future-mobile-apps/' - rating: 4.67 - description: '

For those interested in future mobile app development including famo.us and react native.

' - lon: 151.2100067138672 - group_photo: - highres_link: 'http://photos2.meetupstatic.com/photos/event/8/b/b/highres_436262235.jpeg' - photo_id: 436262235 - photo_link: 'http://photos2.meetupstatic.com/photos/event/8/b/b/600_436262235.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/8/b/b/thumb_436262235.jpeg' - join_mode: open - organizer: - member_id: 149216362 - name: Daniel Lee - photo: - photo_id: 201223642 - photo_link: 'http://photos2.meetupstatic.com/photos/member/a/a/7/a/member_201223642.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/a/a/7/a/thumb_201223642.jpeg' - members: 297 - name: Future mobile apps (Sydney) - lat: -33.869998931884766 - who: Members - - utc_offset: 39600000 - country: AU - visibility: public + - country: AU city: Melbourne - timezone: Australia/Melbourne - created: 1405471393000 link: 'http://www.meetup.com/Melbourne-AppDynamics/' - rating: 5 - description: "

AppDynamics! Where Application Perfomance meets DevOps. The hottest APM company on the planet.\_

\n

\n

Find out what's new from the local AppDynamics team, discuss trends in APM technology, and share stories with other like-minded AppDynamos.

" + name: AppDynamics Melbourne User Group + description: |- +

AppDynamics! Where Application Performance meets DevOps. The hottest APM company on the planet.

+

+

Find out what's new from the local AppDynamics team, discuss trends in APM technology, and share stories with other like-minded AppDynamos.

lon: 144.9600067138672 - join_mode: open - organizer: - member_id: 194777627 - name: AppDynamics User Groups - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/a/b/f/e/highres_251444030.jpeg' - photo_id: 251444030 - photo_link: 'http://photos1.meetupstatic.com/photos/member/a/b/f/e/member_251444030.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/a/b/f/e/thumb_251444030.jpeg' - members: 171 - name: Melbourne AppDynamics User Group + group_photo: + photo_link: 'http://photos3.meetupstatic.com/photos/event/a/0/9/0/600_447221104.jpeg' lat: -37.810001373291016 - who: AppDynamos - - utc_offset: 39600000 - country: AU - visibility: public + - country: AU city: Sydney - timezone: Australia/Sydney - created: 1405495764000 link: 'http://www.meetup.com/Sydney-AppDynamics/' - rating: 4.5 + name: AppDynamics Sydney User Group description: "

AppDynamics! The hottest APM company on the planet. The home of the application performance super hero. Find out what's new from the local AppDynamics team, discuss trends in APM technology, and share stories with other like minded AppDynamos.

" lon: 151.2100067138672 - join_mode: open - organizer: - member_id: 194777627 - name: AppDynamics User Groups - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/a/b/f/e/highres_251444030.jpeg' - photo_id: 251444030 - photo_link: 'http://photos1.meetupstatic.com/photos/member/a/b/f/e/member_251444030.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/a/b/f/e/thumb_251444030.jpeg' - members: 161 - name: Sydney AppDynamics User Group lat: -33.869998931884766 - who: AppDynamos - - utc_offset: 36000000 - country: AU - visibility: public + - country: AU city: Brisbane - timezone: Australia/Brisbane - created: 1406366854000 link: 'http://www.meetup.com/NodeBots-Brisbane/' - rating: 5 + name: NodeBots Brisbane description: "

Use JavaScript to manipulate machines. From blinking lights to Sumo Bot battles, Remote control cats, and Bull fighting with quadcopters...

\n

Anyone with an interest in JavaScript or Robots, or in\_designing or building web connected physical things\_should join this meetup.\_You’ll learn about electronics, NodeJS and Arduino, meet new people and have loads of fun while building NodeBots.\_You’ll use JavaScript but also get to play with Arduinos, Servos, Sensors, Node.js, Johnny-Five, LEDs and maybe even a drone or two.

\n

You don't need to bring any robotics or electronics with you if you don't have any, as the group has kits you can borrow but please bring a laptop if you have one running NodeJS.\_You can find all the setup instructions you'll need on our GitHub site, or ask one of the mentors for a hand getting your development environment set up:\_https://github.com/nodebotsau/nbdau

\n

This meetup group formed after the fun we had being part of International NodeBots day on July 26th 2014 and will meet monthly in the new Fabrication Lab at The Edge so that we can continue to develop our robots. Watch this space for details of the next meetup! See\_http://nodebotsau.github.io/ for more about NodeBots in Australia or follow us on twitter @nodebotsau

" lon: 153.02000427246094 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/9/7/6/0/highres_390998752.jpeg' - photo_id: 390998752 photo_link: 'http://photos2.meetupstatic.com/photos/event/9/7/6/0/600_390998752.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/event/9/7/6/0/thumb_390998752.jpeg' - join_mode: open - organizer: - member_id: 12217929 - name: Anna Gerber - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/7/d/4/8/highres_147452072.jpeg' - photo_id: 147452072 - photo_link: 'http://photos3.meetupstatic.com/photos/member/7/d/4/8/member_147452072.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/7/d/4/8/thumb_147452072.jpeg' - members: 117 - name: NodeBots Brisbane lat: -27.459999084472656 - who: Nodeboteers - - utc_offset: 46800000 - country: NZ - visibility: public + - country: NZ city: Wellington - timezone: Pacific/Auckland - created: 1409707531000 link: 'http://www.meetup.com/NewZealand-AppDynamics/' - description: "

AppDynamics! Where Application Performance meets DevOps. The hottest APM company on the planet.\_

\n

Find out what's new from the local AppDynamics team, discuss trends in APM technology and share stories with other like-minded AppDynamos.

" + name: AppDynamics New Zealand User Group + description: |- +

AppDynamics! Where Application Performance meets DevOps. The hottest APM company on the planet.

+

Find out what's new from the local AppDynamics team, discuss trends in APM technology and share stories with other like-minded AppDynamos.

lon: 174.77999877929688 - join_mode: open - organizer: - member_id: 194777627 - name: AppDynamics User Groups - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/a/b/f/e/highres_251444030.jpeg' - photo_id: 251444030 - photo_link: 'http://photos1.meetupstatic.com/photos/member/a/b/f/e/member_251444030.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/a/b/f/e/thumb_251444030.jpeg' - members: 93 - name: New Zealand AppDynamics User Group + group_photo: + photo_link: 'http://photos4.meetupstatic.com/photos/event/a/0/b/7/600_447221143.jpeg' lat: -41.279998779296875 - who: AppDynamos - - utc_offset: 39600000 - country: AU - visibility: public + - country: AU city: Sydney - timezone: Australia/Sydney - created: 1414731784000 link: 'http://www.meetup.com/ng-sydney/' - rating: 4.63 - description: >- -

Trying to get everyone who is interesting in Angular and - happens to be around Sydney.

- -

A Few Things To Know:

- -

This group was created in December 2014 as an earlier - AngularJS group hasn't had any content meetups since November - 2013.

- -

- Our meetings are usually held on the first Wednesday of - every month. Make sure you get notifications as RSVPs usually run out - in couple of days only.

- -

- To make sure this group doesn't just stop like the earlier - one, we always welcome new people to come and speak about whatever they - want. Send the organizer a message with a session title and short - abstract (or any rambling incomplete idea, we'll help turn it into - a proper talk), and we'll get you talking next month :)

- lon: 151.2100067138672 - join_mode: open - organizer: - member_id: 11406454 - name: '@Meligy (Mohamed Meligy)' - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/e/9/3/b/highres_241379707.jpeg' - photo_id: 241379707 - photo_link: 'http://photos1.meetupstatic.com/photos/member/e/9/3/b/member_241379707.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/e/9/3/b/thumb_241379707.jpeg' - members: 1238 name: ng-sydney + description: "

Trying to get everyone who is interesting in Angular and happens to be around Sydney. <br>

\n

A Few Things To Know:

\n

- This group was created in December 2014 as an earlier AngularJS group hasn't had any content meetups since November 2013.

\n

- Our meetings are usually held on the first Wednesday of every month. Make sure you get notifications as RSVPs usually run out in couple of days only.

\n

- To make sure this group doesn't just stop like the earlier one, we always welcome new people to come and speak about whatever they want. Send the organizer a message with a session title and short abstract (or any rambling incomplete idea, we'll help turn it into a proper talk), and we'll get you talking next month :)

" + lon: 151.2100067138672 lat: -33.869998931884766 - who: AngularJS fans - - utc_offset: 46800000 - country: NZ - visibility: public + - country: NZ city: Auckland - timezone: Pacific/Auckland - created: 1422838590000 link: 'http://www.meetup.com/ReactJS-Auckland/' - rating: 4.1 + name: Auckland ReactJS Meetup description: "

ReactJs is a fun, easy to use Javascript library built at Facebook. http://facebook.github.io/react/ Join us if you'd like to learn more or if you have your own ReactJs experience to share that others can benefit from.

" lon: 174.75999450683594 - join_mode: open - organizer: - member_id: 114461582 - name: Stevie Mayhew - photo: - photo_id: 150962872 - photo_link: 'http://photos2.meetupstatic.com/photos/member/b/3/8/member_150962872.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/b/3/8/thumb_150962872.jpeg' - members: 297 - name: Auckland ReactJS Meetup lat: -36.849998474121094 - who: Reactors - - utc_offset: 39600000 - country: AU - visibility: public + - country: AU city: Sydney - timezone: Australia/Sydney - created: 1427667851000 link: 'http://www.meetup.com/Sydney-Cloud-Foundry-Meetup/' - rating: 4.73 - description: >- -

We will talk about all things Cloud Foundry. Whether thats about - buildpacks, service brokers, microservices, BOSH, high availability, - Docker and container orchestration, Diego, Lattice, multi data centre - design, continuous delivery or cloud native application design. We got - you covered.

- -

- + name: Sydney Cloud Foundry Meetup + description: |- +

We will talk about all things Cloud Foundry. Whether thats about buildpacks, service brokers, microservices, BOSH, high availability, Docker and container orchestration, Diego, Lattice, multi data centre design, continuous delivery or cloud native application design. We got you covered.

+


-


lon: 151.2100067138672 group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/a/4/e/1/highres_435762209.jpeg' - photo_id: 435762209 photo_link: 'http://photos3.meetupstatic.com/photos/event/a/4/e/1/600_435762209.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/a/4/e/1/thumb_435762209.jpeg' - join_mode: open - organizer: - member_id: 22688611 - name: Lawrence Crowther - photo: - highres_link: 'http://photos4.meetupstatic.com/photos/member/b/0/d/e/highres_245685278.jpeg' - photo_id: 245685278 - photo_link: 'http://photos2.meetupstatic.com/photos/member/b/0/d/e/member_245685278.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/b/0/d/e/thumb_245685278.jpeg' - members: 397 - name: Sydney Cloud Foundry Meetup lat: -33.869998931884766 - who: CF Ninjas - - utc_offset: 39600000 - country: AU - visibility: public + - country: AU city: Canberra - timezone: Australia/Canberra - created: 1428287164000 link: 'http://www.meetup.com/CanberraJS/' + name: CanberraJS description: Canberra Javascript is a bi-monthly meetup of Javascript Developers and people interested to learn more about web development using Javascript. lon: 149.1300048828125 - join_mode: open - organizer: - member_id: 182620428 - name: Ryan - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/1/1/f/a/highres_241924602.jpeg' - photo_id: 241924602 - photo_link: 'http://photos3.meetupstatic.com/photos/member/1/1/f/a/member_241924602.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/1/1/f/a/thumb_241924602.jpeg' - members: 128 - name: CanberraJS lat: -35.310001373291016 - who: Javascriptionados - - utc_offset: 39600000 - country: AU - visibility: public + - country: AU city: Sydney - timezone: Australia/Sydney - created: 1429487565000 link: 'http://www.meetup.com/Sydney-Full-Stack-Development-Meetup/' - description: >- + name: Sydney Full Stack Development Meetup + description: |-

Sydney Full Stack Development Group 

- -

This is a monthly event, where Seasoned Full Stack Developers, - Aspiring Programmers and Technology Entrepreneurs assemble, to learn, - network and have fun. 

- -

Membership is free and open to anyone with an interest in - Software Engineering!  

- +

This is a monthly event, where Seasoned Full Stack Developers, Aspiring Programmers and Technology Entrepreneurs assemble, to learn, network and have fun. 

+

Membership is free and open to anyone with an interest in Software Engineering!  

Why Attend? 

- -

•  We'll have guest speakers, workshops and presentations - from Industry Leaders and Full Stack Brainiacs. 

- -

•  There will be group discussions, - debating the burning issues, latest trends and - the evolution of the Full Stack Developer. -  

- -

•  Best of all, we'll provide free - Pizza & Beer.  

- +

•  We'll have guest speakers, workshops and presentations from Industry Leaders and Full Stack Brainiacs. 

+

•  There will be group discussions, debating the burning issues, latest trends and the evolution of the Full Stack Developer.  

+

•  Best of all, we'll provide free Pizza & Beer.  


-


lon: 151.2100067138672 - join_mode: open - organizer: - member_id: 186749697 - name: S2M Executive - photo: - highres_link: 'http://photos3.meetupstatic.com/photos/member/3/6/e/b/highres_245774059.jpeg' - photo_id: 245774059 - photo_link: 'http://photos3.meetupstatic.com/photos/member/3/6/e/b/member_245774059.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/member/3/6/e/b/thumb_245774059.jpeg' - members: 259 - name: Sydney Full Stack Development Meetup lat: -33.869998931884766 - who: Sydney Full Stackers - - utc_offset: 39600000 - country: AU - visibility: public + - country: AU city: Melbourne - timezone: Australia/Melbourne - created: 1440041437000 link: 'http://www.meetup.com/front-end-developers-javascript/' - rating: 4.75 - description: >- -

This group is designed to share and build expert front end - development knowledge and offer training and advancement to build on - your current skill set.

- -

Looking to master building quality web interfaces. You've got - the basics down and don't want to learn from teachers who just offer - you meaningless results, you want to learn from the masters! 

- -

Here, you get experienced professionals and people who are - actively shaping the industry in front end technologies and who have - a true passion for what they do. <br> <br>Join us and - front-end professionals and master JavaScript, AngularJS, HTML5/CSS3 - and UI frameworks etc.

- -

We have monthly meetup and regular Frontend courses to offer and - assist you with all the necessary tools you will need to become a great - front end developer.

+ name: 'The Melbourne F-Enders: Building Front End Together' + description: |- +

This group is designed to share and build expert front end development knowledge and offer training and advancement to build on your current skill set.

+

Looking to master building quality web interfaces. You've got the basics down and don't want to learn from teachers who just offer you meaningless results, you want to learn from the masters! 

+

Here, you get experienced professionals and people who are actively shaping the industry in front end technologies and who have a true passion for what they do. <br> <br>Join us and front-end professionals and master JavaScript, AngularJS, HTML5/CSS3 and UI frameworks etc.

+

We have monthly meetup and regular Frontend courses to offer and assist you with all the necessary tools you will need to become a great front end developer.

lon: 144.9600067138672 group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/4/3/7/highres_441361079.jpeg' - photo_id: 441361079 - photo_link: 'http://photos4.meetupstatic.com/photos/event/4/3/7/600_441361079.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/4/3/7/thumb_441361079.jpeg' - join_mode: open - organizer: - member_id: 13515512 - name: Peter - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/8/f/8/b/highres_248976747.jpeg' - photo_id: 248976747 - photo_link: 'http://photos4.meetupstatic.com/photos/member/8/f/8/b/member_248976747.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/8/f/8/b/thumb_248976747.jpeg' - members: 323 - name: Front End Development - Building Knowledge and Skills in JS + photo_link: 'http://photos4.meetupstatic.com/photos/event/d/0/8/5/600_446993381.jpeg' lat: -37.810001373291016 - who: F-Enders - - utc_offset: 39600000 - country: AU - visibility: public + - country: AU city: Melbourne - timezone: Australia/Melbourne - created: 1441182909000 link: 'http://www.meetup.com/Melbourne-Microservices-Meetup/' - description: >- -

This is a group interested in microservices, nodejs, react, flux, - javascript where the members could help redifine a new architecure of - javascript related solutions with microservices. Developers, business - minded people, and solution architects all welcome.  For anyone - interested in learning more about me, I can be contacted at the - following:

- + name: Melbourne Microservices Meetup + description: |- +

This is a group interested in microservices, nodejs, react, flux, javascript where the members could help redifine a new architecure of javascript related solutions with microservices. Developers, business minded people, and solution architects all welcome.  For anyone interested in learning more about me, I can be contacted at the following:


- -

LinkedIn - Profile

- +

LinkedIn Profile

My Blog

- -

Melbourne - Meetup

- +

Melbourne Meetup

Skype: matthew.magicks

-
lon: 144.9600067138672 - join_mode: open - organizer: - member_id: 160496782 - name: Matthew Lowery - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/c/0/6/b/highres_249349259.jpeg' - photo_id: 249349259 - photo_link: 'http://photos4.meetupstatic.com/photos/member/c/0/6/b/member_249349259.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/c/0/6/b/thumb_249349259.jpeg' - members: 40 - name: Melbourne Microservices Meetup lat: -37.810001373291016 - who: Microservices Lovers - - utc_offset: 39600000 - country: AU - visibility: public + - country: AU city: Melbourne - timezone: Australia/Melbourne - created: 1447500262000 link: 'http://www.meetup.com/Flow-based-Programming-Melbourne/' - description: >- -

This is a group for anyone interested in flow-based programming - and/or Noflo. All skill levels are welcome. I started this group to - meet tech enthusiasts who are interested in this promising development - paradism.

- -

More - information about FBP

+ name: Flow-based Programming Melbourne + description: |- +

This is a group for anyone interested in flow-based programming and/or Noflo. All skill levels are welcome. I started this group to meet tech enthusiasts who are interested in this promising development paradism.

+

More information about FBP

lon: 144.9600067138672 group_photo: - highres_link: 'http://photos1.meetupstatic.com/photos/event/9/e/5/0/highres_444520528.jpeg' - photo_id: 444520528 photo_link: 'http://photos1.meetupstatic.com/photos/event/9/e/5/0/600_444520528.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/event/9/e/5/0/thumb_444520528.jpeg' - join_mode: open - organizer: - member_id: 65594882 - name: Thoai Nguyen - photo: - photo_id: 190513812 - photo_link: 'http://photos2.meetupstatic.com/photos/member/3/5/f/4/member_190513812.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/member/3/5/f/4/thumb_190513812.jpeg' - members: 124 - name: Flow-based Programming Melbourne lat: -37.810001373291016 - who: Flow Developers - - utc_offset: 39600000 - country: AU - visibility: public + - country: AU city: Melbourne - timezone: Australia/Melbourne - created: 1448050413000 link: 'http://www.meetup.com/MelbourneJS/' - description: "

Where we meet to hack together on JavaScript. We intend to run workshop/hacking sessions to learn upcoming ES6/7 features, and how to put new ideas into practice.  <br>

\n

Code of Conduct <br> <br>MelbourneJS events are community events intended for networking and collaboration as well as learning. We value the participation of every member of the JS community and want all attendees to have an enjoyable and fulfilling experience. Accordingly, all attendees are expected to show respect and courtesy to other attendees throughout the event and in interactions online associated with this group. <br> <br>To make clear what is expected, everyone taking part in our events and discussions — instructors, helpers, organizers, and learners — is required to conform to the following Code of Conduct. Organizers will enforce this code throughout every meet-up, but you may also contact us directly the organizer directly http://www.meetup.com/Melbourne-JS/members/.... All communication will be treated as confidential. <br> <br>THE SHORT VERSION <br> <br>  The MelboureJS is dedicated to providing a harassment-free learning experience for everyone, regardless of gender, sexual orientation, disability, physical appearance, body size, race, religion, or choice of text editor. We do not tolerate harassment of participants in any form. <br> <br>  All communication should be appropriate for a professional audience including people of many different backgrounds. Sexual language and imagery is not appropriate for any event. <br> <br>  Be kind to others. Do not insult or put down other attendees. <br> <br>  Behave professionally. Remember that harassment and sexist, racist, or exclusionary jokes are not appropriate. <br> <br>  Attendees violating these rules may be asked to leave the event at the sole discretion of the conference organizers without a refund of any charge that may have been levied. <br> <br>Thank you for helping make this a welcoming, friendly event for all. <br> <br>THE LONGER VERSION <br> <br>Harassment includes offensive verbal comments related to gender, sexual orientation, disability, physical appearance, body size, race, religion, sexual images in public spaces, deliberate intimidation, stalking, following, harassing photography or recording, sustained disruption of talks or other events, inappropriate physical contact, and unwelcome sexual attention. <br> <br>Participants asked to stop any harassing behavior are expected to comply immediately. <br> <br>Be careful in the words that you choose. Remember that sexist, racist, and other exclusionary jokes can be offensive to those around you. <br> <br>If a participant engages in behavior that violates this code of conduct, the organizers may take any action they deem appropriate, including warning the offender or expulsion from the event with no refund of any fee that may have been levied. <br> <br>

" - lon: 144.9600067138672 - join_mode: open - organizer: - member_id: 102645632 - name: Marcos Caceres - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/9/1/6/f/highres_251557231.jpeg' - photo_id: 251557231 - photo_link: 'http://photos1.meetupstatic.com/photos/member/9/1/6/f/member_251557231.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/9/1/6/f/thumb_251557231.jpeg' - members: 147 name: JS Workshops - lat: -37.810001373291016 - who: Members - - utc_offset: 28800000 - country: SG - visibility: public - city: Singapore - timezone: Asia/Singapore - created: 1361583873000 - link: 'http://www.meetup.com/Singapore-MongoDB-User-Group/' - rating: 5 - description: "

A group for anyone interested in knowing how to build scalable/high-performance apps around MongoDB. We'll talk about full-stack (various technologies), so there's lot to look out for.

" - lon: 103.8499984741211 - group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/c/9/b/a/highres_216471642.jpeg' - photo_id: 216471642 - photo_link: 'http://photos2.meetupstatic.com/photos/event/c/9/b/a/600_216471642.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/c/9/b/a/thumb_216471642.jpeg' - join_mode: open - organizer: - member_id: 81819982 - name: Rajesh Lingappa - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/5/7/3/c/highres_105562332.jpeg' - photo_id: 105562332 - photo_link: 'http://photos1.meetupstatic.com/photos/member/5/7/3/c/member_105562332.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/5/7/3/c/thumb_105562332.jpeg' - members: 153 - name: Singapore MongoDB User Group - lat: 1.2999999523162842 - who: Stacker - - utc_offset: 39600000 - country: AU - visibility: public - city: Melbourne - timezone: Australia/Melbourne - created: 1405471393000 - link: 'http://www.meetup.com/Melbourne-AppDynamics/' - rating: 5 - description: >- -

AppDynamics! Where Application Performance meets DevOps. The hottest - APM company on the planet.

- -

- -

Find out what's new from the local AppDynamics team, discuss - trends in APM technology, and share stories with other like-minded - AppDynamos.

- lon: 144.9600067138672 - group_photo: - highres_link: 'http://photos3.meetupstatic.com/photos/event/a/0/9/0/highres_447221104.jpeg' - photo_id: 447221104 - photo_link: 'http://photos3.meetupstatic.com/photos/event/a/0/9/0/600_447221104.jpeg' - thumb_link: 'http://photos3.meetupstatic.com/photos/event/a/0/9/0/thumb_447221104.jpeg' - join_mode: open - organizer: - member_id: 194777627 - name: AppDynamics User Groups - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/a/b/f/e/highres_251444030.jpeg' - photo_id: 251444030 - photo_link: 'http://photos1.meetupstatic.com/photos/member/a/b/f/e/member_251444030.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/a/b/f/e/thumb_251444030.jpeg' - members: 180 - name: AppDynamics Melbourne User Group - lat: -37.810001373291016 - who: AppDynamos - - utc_offset: 39600000 - country: AU - visibility: public - city: Sydney - timezone: Australia/Sydney - created: 1405495764000 - link: 'http://www.meetup.com/Sydney-AppDynamics/' - rating: 4.67 - description: "

AppDynamics! The hottest APM company on the planet. The home of the application performance super hero. Find out what's new from the local AppDynamics team, discuss trends in APM technology, and share stories with other like minded AppDynamos.

" - lon: 151.2100067138672 - join_mode: open - organizer: - member_id: 194777627 - name: AppDynamics User Groups - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/a/b/f/e/highres_251444030.jpeg' - photo_id: 251444030 - photo_link: 'http://photos1.meetupstatic.com/photos/member/a/b/f/e/member_251444030.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/a/b/f/e/thumb_251444030.jpeg' - members: 168 - name: AppDynamics Sydney User Group - lat: -33.869998931884766 - who: AppDynamos - - utc_offset: 46800000 - country: NZ - visibility: public - city: Wellington - timezone: Pacific/Auckland - created: 1409707531000 - link: 'http://www.meetup.com/NewZealand-AppDynamics/' - description: >- -

AppDynamics! Where Application Performance meets DevOps. The - hottest APM company on the planet.

- -

Find out what's new from the local AppDynamics team, discuss - trends in APM technology and share stories with other like-minded - AppDynamos.

- lon: 174.77999877929688 - group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/a/0/b/7/highres_447221143.jpeg' - photo_id: 447221143 - photo_link: 'http://photos4.meetupstatic.com/photos/event/a/0/b/7/600_447221143.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/a/0/b/7/thumb_447221143.jpeg' - join_mode: open - organizer: - member_id: 194777627 - name: AppDynamics User Groups - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/a/b/f/e/highres_251444030.jpeg' - photo_id: 251444030 - photo_link: 'http://photos1.meetupstatic.com/photos/member/a/b/f/e/member_251444030.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/a/b/f/e/thumb_251444030.jpeg' - members: 100 - name: AppDynamics New Zealand User Group - lat: -41.279998779296875 - who: AppDynamos - - utc_offset: 39600000 - country: AU - visibility: public - city: Melbourne - timezone: Australia/Melbourne - created: 1440041437000 - link: 'http://www.meetup.com/front-end-developers-javascript/' - rating: 4.8 - description: >- -

This group is designed to share and build expert front end - development knowledge and offer training and advancement to build on - your current skill set.

- -

Looking to master building quality web interfaces. You've got - the basics down and don't want to learn from teachers who just offer - you meaningless results, you want to learn from the masters! 

- -

Here, you get experienced professionals and people who are - actively shaping the industry in front end technologies and who have - a true passion for what they do. <br> <br>Join us and - front-end professionals and master JavaScript, AngularJS, HTML5/CSS3 - and UI frameworks etc.

- -

We have monthly meetup and regular Frontend courses to offer and - assist you with all the necessary tools you will need to become a great - front end developer.

+ description: "

Where we meet to hack together on JavaScript. We intend to run workshop/hacking sessions to learn upcoming ES6/7 features, and how to put new ideas into practice.  <br>

\n

Code of Conduct <br> <br>MelbourneJS events are community events intended for networking and collaboration as well as learning. We value the participation of every member of the JS community and want all attendees to have an enjoyable and fulfilling experience. Accordingly, all attendees are expected to show respect and courtesy to other attendees throughout the event and in interactions online associated with this group. <br> <br>To make clear what is expected, everyone taking part in our events and discussions — instructors, helpers, organizers, and learners — is required to conform to the following Code of Conduct. Organizers will enforce this code throughout every meet-up, but you may also contact us directly the organizer directly http://www.meetup.com/Melbourne-JS/members/.... All communication will be treated as confidential. <br> <br>THE SHORT VERSION <br> <br>  The MelboureJS is dedicated to providing a harassment-free learning experience for everyone, regardless of gender, sexual orientation, disability, physical appearance, body size, race, religion, or choice of text editor. We do not tolerate harassment of participants in any form. <br> <br>  All communication should be appropriate for a professional audience including people of many different backgrounds. Sexual language and imagery is not appropriate for any event. <br> <br>  Be kind to others. Do not insult or put down other attendees. <br> <br>  Behave professionally. Remember that harassment and sexist, racist, or exclusionary jokes are not appropriate. <br> <br>  Attendees violating these rules may be asked to leave the event at the sole discretion of the conference organizers without a refund of any charge that may have been levied. <br> <br>Thank you for helping make this a welcoming, friendly event for all. <br> <br>THE LONGER VERSION <br> <br>Harassment includes offensive verbal comments related to gender, sexual orientation, disability, physical appearance, body size, race, religion, sexual images in public spaces, deliberate intimidation, stalking, following, harassing photography or recording, sustained disruption of talks or other events, inappropriate physical contact, and unwelcome sexual attention. <br> <br>Participants asked to stop any harassing behavior are expected to comply immediately. <br> <br>Be careful in the words that you choose. Remember that sexist, racist, and other exclusionary jokes can be offensive to those around you. <br> <br>If a participant engages in behavior that violates this code of conduct, the organizers may take any action they deem appropriate, including warning the offender or expulsion from the event with no refund of any fee that may have been levied. <br> <br>

" lon: 144.9600067138672 - group_photo: - highres_link: 'http://photos4.meetupstatic.com/photos/event/d/0/8/5/highres_446993381.jpeg' - photo_id: 446993381 - photo_link: 'http://photos4.meetupstatic.com/photos/event/d/0/8/5/600_446993381.jpeg' - thumb_link: 'http://photos4.meetupstatic.com/photos/event/d/0/8/5/thumb_446993381.jpeg' - join_mode: open - organizer: - member_id: 182503822 - name: Derek - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/5/f/5/4/highres_249684404.jpeg' - photo_id: 249684404 - photo_link: 'http://photos1.meetupstatic.com/photos/member/5/f/5/4/member_249684404.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/5/f/5/4/thumb_249684404.jpeg' - members: 507 - name: 'The Melbourne F-Enders: Building Front End Together' lat: -37.810001373291016 - who: F-Enders - - utc_offset: 39600000 - country: AU - visibility: public + - country: AU city: Melbourne - timezone: Australia/Melbourne - created: 1455571901000 link: 'http://www.meetup.com/Melbourne-Aurelia-Meetup/' + name: Melbourne Aurelia Meetup description: "Finally, a group for conventional and unconventional people who love convention over configuration! If you want to find out more about this framework, or want to see one of the next big things in single-page application development, come and join us. \"Aurelia is a next generation JavaScript client framework that leverages simple conventions to empower your creativity.\" OK, so that was cut and pasted from the http://Aurelia.io website. What it's trying to say is that if you want to develop advanced front-ends without creating a spaghetti monster with fifty configuration options for factories, directives, providers, routers, and dozens of other configured objects, Aurelia might be more suited to your needs. Come and join us to find out if it does meet you needs, as we're a group of non-zealots who are open to any and all practical, useful, real-world applicable technologies. Oh, and we promise not to demonstrate To-do apps, Twitter clients, or weather displaying widgets." lon: 144.9600067138672 - join_mode: open - organizer: - member_id: 57427882 - name: Jason Sobell - photo: - highres_link: 'http://photos2.meetupstatic.com/photos/member/6/f/e/2/highres_249208642.jpeg' - photo_id: 249208642 - photo_link: 'http://photos2.meetupstatic.com/photos/member/6/f/e/2/member_249208642.jpeg' - thumb_link: 'http://photos2.meetupstatic.com/photos/member/6/f/e/2/thumb_249208642.jpeg' - members: 19 - name: Melbourne Aurelia Meetup lat: -37.810001373291016 - who: conventionalists - - utc_offset: 39600000 - country: AU - visibility: public + - country: AU city: Melbourne - timezone: Australia/Melbourne - created: 1458094079000 link: 'http://www.meetup.com/1-Night-Daniel-Khan-Harald-Zeitlhofer-Klaus-Enzenhofer/' + name: '1 Night! Daniel Khan, Harald Zeitlhofer & Klaus Enzenhofer' description: 'In town together for 1 night only, Daniel "Mr Node.js" Khan, Harald "PHP" Zeitlhofer, & Klaus Enzenhofer - aka Mr Mobile, will be delivering presentations together. This is a one night only super meetup, and Dynatrace will be providing the refreshments. There is no entry fee, we only ask that you register before coming, and that you get in quick because we do have to cap numbers due to venue size.' lon: 144.9600067138672 - join_mode: open - organizer: - member_id: 198067428 - name: Sacha Blomer - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/a/e/4/a/highres_254804618.jpeg' - photo_id: 254804618 - photo_link: 'http://photos3.meetupstatic.com/photos/member/a/e/4/a/member_254804618.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/a/e/4/a/thumb_254804618.jpeg' - members: 42 - name: '1 Night! Daniel Khan, Harald Zeitlhofer & Klaus Enzenhofer' lat: -37.810001373291016 - who: Members - - utc_offset: 39600000 - country: AU - visibility: public + - country: AU city: Sydney - timezone: Australia/Sydney - created: 1458614490000 link: 'http://www.meetup.com/Meet-The-Masters-1-Night-Only-Sydney/' - description: >- - We've got Daniel Khan, Klaus Enzenhofer, and Harald Zeitlhofer visiting - for just one night, so we thought it would be a grand idea to hold - a massive meetup for them. - - - - All three are experts in their respective fields, and they are all - highly experienced conference presenters - so this promises to be an - evening of Node.js, PHP, and Mobile Cloud learning from some great - speakers. - + name: 'Meet The Masters 1 Night Only, Sydney' + description: |- + We've got Daniel Khan, Klaus Enzenhofer, and Harald Zeitlhofer visiting for just one night, so we thought it would be a grand idea to hold a massive meetup for them. + All three are experts in their respective fields, and they are all highly experienced conference presenters - so this promises to be an evening of Node.js, PHP, and Mobile Cloud learning from some great speakers. - This is a free event, with food and drink provided, but we need you to - register as numbers are limited by the venue size. + This is a free event, with food and drink provided, but we need you to register as numbers are limited by the venue size. lon: 151.2100067138672 - join_mode: open - organizer: - member_id: 198067428 - name: Sacha Blomer - photo: - highres_link: 'http://photos1.meetupstatic.com/photos/member/a/e/4/a/highres_254804618.jpeg' - photo_id: 254804618 - photo_link: 'http://photos3.meetupstatic.com/photos/member/a/e/4/a/member_254804618.jpeg' - thumb_link: 'http://photos1.meetupstatic.com/photos/member/a/e/4/a/thumb_254804618.jpeg' - members: 31 - name: 'Meet The Masters 1 Night Only, Sydney' lat: -33.869998931884766 - who: Members + nodeschools: + - name: Auckland NodeSchool + location: 'Auckland, NZ' + organizers: + - jladuval + - kevnz + - ram-manthry + website: 'http://nodeschool.io/auckland/' + repo: 'http://github.com/nodeschool/auckland' + lat: -36.8484597 + lon: 174.7633315 + - name: Brisbane NodeSchool + location: 'Brisbane, AU' + organizers: + - rvagg + - garrows + repo: 'http://github.com/nodeschool/brisbane' + lat: -27.4710107 + lon: 153.0234489 + - name: NodeSchool Christchurch + location: 'Christchurch, NZ' + organizers: + - digitalsadhu + - coder_stu + - gmwills + - gingermusketeer + website: 'http://nodeschool.io/christchurch/' + repo: 'http://github.com/nodeschool/christchurch' + lat: -43.5320544 + lon: 172.6362254 + - name: NodeSchool Hobart + location: 'Hobart, AU' + organizers: + - joshgillies + - jonnyscholes + - timheap + - MalucoMarinero + website: 'http://nodeschool.io/hobart' + repo: 'http://github.com/nodeschool/hobart' + lat: -42.8819032 + lon: 147.3238148 + - name: NodeSchool Perth + location: 'Perth, AU' + organizers: + - nii236 + - miqid + website: 'http://nodeschool.io/perth' + repo: 'https://github.com/nodeschool/perth' + gitter: 'https://gitter.im/nodeschool/perth' + lat: -31.9535132 + lon: 115.8570471 + - name: Sydney NodeSchool + location: 'Sydney, AU' + organizers: + - rvagg + - DamonOehlman + website: 'http://nodeschool.io/sydney' + repo: 'https://github.com/nodeschool/sydney' + lat: -33.8674869 + lon: 151.2069902 + - name: NodeSchool Wellington + location: 'Wellington, NZ' + organizers: + - vimto + - chilts + repo: 'http://github.com/nodeschool/wellington' + lat: -41.2864603 + lon: 174.776236 --- \ No newline at end of file