November 2019
We are going to be hosting a workshop at Pusher on the 7th November - 58 | RSVP here
59 | 60 |├── .dockerignore ├── .gitignore ├── docs ├── blog │ ├── 2019 │ │ └── 11 │ │ │ └── 07 │ │ │ ├── meetup.html │ │ │ └── meetup │ │ │ └── index.html │ ├── atom.xml │ ├── feed.xml │ └── index.html ├── css │ ├── main.css │ └── prism.css ├── docs │ ├── assets │ │ ├── cookie_clicker_storyboard │ │ │ ├── bonus_step1.png │ │ │ ├── bonus_step2.png │ │ │ ├── bonus_step3a.png │ │ │ ├── bonus_step3b.png │ │ │ ├── bonus_step3c.png │ │ │ ├── bonus_step3d.png │ │ │ ├── object-library.png │ │ │ ├── step1.png │ │ │ ├── step10.gif │ │ │ ├── step2.png │ │ │ ├── step3.png │ │ │ ├── step4.gif │ │ │ ├── step5.gif │ │ │ ├── step6.gif │ │ │ ├── step7.gif │ │ │ ├── step8.gif │ │ │ ├── step8.png │ │ │ └── step9.gif │ │ └── cookie_clicker_swiftui │ │ │ ├── step1.png │ │ │ ├── step2.png │ │ │ ├── step3.png │ │ │ ├── step4.gif │ │ │ ├── step5.gif │ │ │ ├── step6.gif │ │ │ ├── step7.gif │ │ │ └── step8.png │ ├── attributions.html │ ├── attributions │ │ └── index.html │ ├── cookie-clicker-storyboard.html │ ├── cookie-clicker-storyboard │ │ └── index.html │ ├── cookie-clicker-swiftui.html │ ├── cookie-clicker-swiftui │ │ └── index.html │ ├── intro.html │ ├── intro │ │ └── index.html │ ├── other-resources.html │ └── other-resources │ │ └── index.html ├── en │ ├── help.html │ ├── help │ │ └── index.html │ ├── index.html │ ├── users.html │ └── users │ │ └── index.html ├── help.html ├── help │ └── index.html ├── img │ ├── codebar-full-white-logo.png │ ├── codebar-website-logo.png │ ├── computer_1.svg │ ├── computer_2.svg │ ├── computer_3.svg │ ├── computer_4.svg │ ├── cookie-256.png │ ├── cookie.svg │ ├── favicon.ico │ ├── language.svg │ ├── oss_logo.png │ ├── undraw_code_review.svg │ ├── undraw_monitor.svg │ ├── undraw_note_list.svg │ ├── undraw_online.svg │ ├── undraw_open_source.svg │ ├── undraw_operating_system.svg │ ├── undraw_react.svg │ ├── undraw_tweetstorm.svg │ └── undraw_youtube_tutorial.svg ├── index.html ├── js │ ├── codetabs.js │ └── scrollSpy.js ├── sitemap.xml ├── users.html └── users │ └── index.html ├── readme.md └── src ├── docs ├── assets │ ├── cookie_clicker_storyboard │ │ ├── bonus_step1.png │ │ ├── bonus_step2.png │ │ ├── bonus_step3a.png │ │ ├── bonus_step3b.png │ │ ├── bonus_step3c.png │ │ ├── bonus_step3d.png │ │ ├── object-library.png │ │ ├── run-button.png │ │ ├── step1.png │ │ ├── step10.gif │ │ ├── step2.png │ │ ├── step3.png │ │ ├── step4.gif │ │ ├── step5.gif │ │ ├── step6.gif │ │ ├── step7.gif │ │ ├── step8.gif │ │ ├── step8.png │ │ └── step9.gif │ └── cookie_clicker_swiftui │ │ ├── step1.png │ │ ├── step2.png │ │ ├── step3.png │ │ ├── step4.gif │ │ ├── step5.gif │ │ ├── step6.gif │ │ ├── step7.gif │ │ └── step8.png ├── attributions.md ├── cookie-clicker-storyboard.md ├── cookie-clicker-swiftui.md ├── getting-set-up.md └── other-resources.md └── website ├── README.md ├── blog └── 2019-11-07-meetup.md ├── core └── Footer.js ├── i18n └── en.json ├── package-lock.json ├── package.json ├── pages └── en │ ├── help.js │ ├── index.js │ └── users.js ├── sidebars.json ├── siteConfig.js ├── static ├── css │ └── custom.css └── img │ ├── codebar-full-white-logo.png │ ├── codebar-website-logo.png │ ├── computer_1.svg │ ├── computer_2.svg │ ├── computer_3.svg │ ├── computer_4.svg │ ├── cookie-256.png │ ├── cookie.svg │ ├── favicon.ico │ ├── oss_logo.png │ ├── undraw_code_review.svg │ ├── undraw_monitor.svg │ ├── undraw_note_list.svg │ ├── undraw_online.svg │ ├── undraw_open_source.svg │ ├── undraw_operating_system.svg │ ├── undraw_react.svg │ ├── undraw_tweetstorm.svg │ └── undraw_youtube_tutorial.svg └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- 1 | */node_modules 2 | *.log 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | node_modules 4 | 5 | lib/core/metadata.js 6 | lib/core/MetadataBlog.js 7 | 8 | website/translated_docs 9 | website/build/ 10 | website/yarn.lock 11 | website/node_modules 12 | website/i18n/* 13 | -------------------------------------------------------------------------------- /docs/blog/2019/11/07/meetup.html: -------------------------------------------------------------------------------- 1 |
This project is maintained by a dedicated group of people.
47 |This project is used by many folks
35 |Are you using this project?
38 | 39 | Add your company 40 | 41 |