├── .prettierrc ├── .gitignore ├── gatsby-config.js ├── gatsby-node.js ├── gatsby-browser.js ├── gatsby-ssr.js ├── src ├── pages │ ├── 404.js │ ├── page-2.js │ └── index.js └── components │ ├── header.js │ ├── layout.js │ └── layout.css ├── package.json ├── LICENSE └── README.md /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "semi": false, 3 | "singleQuote": true, 4 | "trailingComma": "es5" 5 | } 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Project dependencies 2 | .cache 3 | node_modules 4 | yarn-error.log 5 | 6 | # Build directory 7 | /public 8 | .DS_Store 9 | -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | siteMetadata: { 3 | title: 'Gatsby Default Starter', 4 | }, 5 | plugins: ['gatsby-plugin-react-helmet'], 6 | } 7 | -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Implement Gatsby's Node APIs in this file. 3 | * 4 | * See: https://www.gatsbyjs.org/docs/node-apis/ 5 | */ 6 | 7 | // You can delete this file if you're not using it 8 | -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Implement Gatsby's Browser APIs in this file. 3 | * 4 | * See: https://www.gatsbyjs.org/docs/browser-apis/ 5 | */ 6 | 7 | // You can delete this file if you're not using it 8 | -------------------------------------------------------------------------------- /gatsby-ssr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Implement Gatsby's SSR (Server Side Rendering) APIs in this file. 3 | * 4 | * See: https://www.gatsbyjs.org/docs/ssr-apis/ 5 | */ 6 | 7 | // You can delete this file if you're not using it 8 | -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import Layout from '../components/layout' 3 | 4 | const NotFoundPage = () => ( 5 | 6 |

NOT FOUND

7 |

You just hit a route that doesn't exist... the sadness.

8 |
9 | ) 10 | 11 | export default NotFoundPage 12 | -------------------------------------------------------------------------------- /src/pages/page-2.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import { Link } from 'gatsby' 3 | 4 | import Layout from '../components/layout' 5 | 6 | const SecondPage = () => ( 7 | 8 |

Hi from the second page

9 |

Welcome to page 2

10 | Go back to the homepage 11 |
12 | ) 13 | 14 | export default SecondPage 15 | -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import { Link } from 'gatsby' 3 | 4 | import Layout from '../components/layout' 5 | 6 | const IndexPage = () => ( 7 | 8 |

Hi people

9 |

Welcome to your new Gatsby site.

10 |

Now go build something great.

11 | Go to page 2 12 |
13 | ) 14 | 15 | export default IndexPage 16 | -------------------------------------------------------------------------------- /src/components/header.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import { Link } from 'gatsby' 3 | 4 | const Header = ({ siteTitle }) => ( 5 |
11 |
18 |

19 | 26 | {siteTitle} 27 | 28 |

29 |
30 |
31 | ) 32 | 33 | export default Header 34 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "gatsby-starter-default", 3 | "description": "Gatsby default starter", 4 | "version": "1.0.0", 5 | "author": "Kyle Mathews ", 6 | "dependencies": { 7 | "gatsby": "^2.6.0", 8 | "gatsby-cli": "^2.6.0", 9 | "gatsby-plugin-react-helmet": "^3.0.12", 10 | "react": "^16.8.6", 11 | "react-dom": "^16.8.6", 12 | "react-helmet": "^5.2.1" 13 | }, 14 | "keywords": [ 15 | "gatsby" 16 | ], 17 | "license": "MIT", 18 | "scripts": { 19 | "build": "gatsby build", 20 | "develop": "gatsby develop", 21 | "format": "prettier --write '**/*.js'", 22 | "test": "echo \"Error: no test specified\" && exit 1" 23 | }, 24 | "devDependencies": { 25 | "prettier": "^1.13.7" 26 | }, 27 | "repository": { 28 | "type": "git", 29 | "url": "https://github.com/gatsbyjs/gatsby-starter-default" 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 gatsbyjs 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /src/components/layout.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import PropTypes from 'prop-types' 3 | import Helmet from 'react-helmet' 4 | import { StaticQuery, graphql } from 'gatsby' 5 | 6 | import Header from './header' 7 | import './layout.css' 8 | 9 | const Layout = ({ children, data }) => ( 10 | ( 21 | <> 22 | 29 |
30 |
38 | {children} 39 |
40 | 41 | )} 42 | /> 43 | ) 44 | 45 | Layout.propTypes = { 46 | children: PropTypes.node.isRequired, 47 | } 48 | 49 | export default Layout 50 | -------------------------------------------------------------------------------- /src/components/layout.css: -------------------------------------------------------------------------------- 1 | html { 2 | font-family: sans-serif; 3 | -ms-text-size-adjust: 100%; 4 | -webkit-text-size-adjust: 100%; 5 | } 6 | body { 7 | margin: 0; 8 | } 9 | article, 10 | aside, 11 | details, 12 | figcaption, 13 | figure, 14 | footer, 15 | header, 16 | main, 17 | menu, 18 | nav, 19 | section, 20 | summary { 21 | display: block; 22 | } 23 | audio, 24 | canvas, 25 | progress, 26 | video { 27 | display: inline-block; 28 | } 29 | audio:not([controls]) { 30 | display: none; 31 | height: 0; 32 | } 33 | progress { 34 | vertical-align: baseline; 35 | } 36 | [hidden], 37 | template { 38 | display: none; 39 | } 40 | a { 41 | background-color: transparent; 42 | -webkit-text-decoration-skip: objects; 43 | } 44 | a:active, 45 | a:hover { 46 | outline-width: 0; 47 | } 48 | abbr[title] { 49 | border-bottom: none; 50 | text-decoration: underline; 51 | text-decoration: underline dotted; 52 | } 53 | b, 54 | strong { 55 | font-weight: inherit; 56 | font-weight: bolder; 57 | } 58 | dfn { 59 | font-style: italic; 60 | } 61 | h1 { 62 | font-size: 2em; 63 | margin: .67em 0; 64 | } 65 | mark { 66 | background-color: #ff0; 67 | color: #000; 68 | } 69 | small { 70 | font-size: 80%; 71 | } 72 | sub, 73 | sup { 74 | font-size: 75%; 75 | line-height: 0; 76 | position: relative; 77 | vertical-align: baseline; 78 | } 79 | sub { 80 | bottom: -.25em; 81 | } 82 | sup { 83 | top: -.5em; 84 | } 85 | img { 86 | border-style: none; 87 | } 88 | svg:not(:root) { 89 | overflow: hidden; 90 | } 91 | code, 92 | kbd, 93 | pre, 94 | samp { 95 | font-family: monospace, monospace; 96 | font-size: 1em; 97 | } 98 | figure { 99 | margin: 1em 40px; 100 | } 101 | hr { 102 | box-sizing: content-box; 103 | height: 0; 104 | overflow: visible; 105 | } 106 | button, 107 | input, 108 | optgroup, 109 | select, 110 | textarea { 111 | font: inherit; 112 | margin: 0; 113 | } 114 | optgroup { 115 | font-weight: 700; 116 | } 117 | button, 118 | input { 119 | overflow: visible; 120 | } 121 | button, 122 | select { 123 | text-transform: none; 124 | } 125 | [type=reset], 126 | [type=submit], 127 | button, 128 | html [type=button] { 129 | -webkit-appearance: button; 130 | } 131 | [type=button]::-moz-focus-inner, 132 | [type=reset]::-moz-focus-inner, 133 | [type=submit]::-moz-focus-inner, 134 | button::-moz-focus-inner { 135 | border-style: none; 136 | padding: 0; 137 | } 138 | [type=button]:-moz-focusring, 139 | [type=reset]:-moz-focusring, 140 | [type=submit]:-moz-focusring, 141 | button:-moz-focusring { 142 | outline: 1px dotted ButtonText; 143 | } 144 | fieldset { 145 | border: 1px solid silver; 146 | margin: 0 2px; 147 | padding: .35em .625em .75em; 148 | } 149 | legend { 150 | box-sizing: border-box; 151 | color: inherit; 152 | display: table; 153 | max-width: 100%; 154 | padding: 0; 155 | white-space: normal; 156 | } 157 | textarea { 158 | overflow: auto; 159 | } 160 | [type=checkbox], 161 | [type=radio] { 162 | box-sizing: border-box; 163 | padding: 0; 164 | } 165 | [type=number]::-webkit-inner-spin-button, 166 | [type=number]::-webkit-outer-spin-button { 167 | height: auto; 168 | } 169 | [type=search] { 170 | -webkit-appearance: textfield; 171 | outline-offset: -2px; 172 | } 173 | [type=search]::-webkit-search-cancel-button, 174 | [type=search]::-webkit-search-decoration { 175 | -webkit-appearance: none; 176 | } 177 | ::-webkit-input-placeholder { 178 | color: inherit; 179 | opacity: .54; 180 | } 181 | ::-webkit-file-upload-button { 182 | -webkit-appearance: button; 183 | font: inherit; 184 | } 185 | html { 186 | font: 112.5%/1.45em georgia, serif; 187 | box-sizing: border-box; 188 | overflow-y: scroll; 189 | } 190 | * { 191 | box-sizing: inherit; 192 | } 193 | *:before { 194 | box-sizing: inherit; 195 | } 196 | *:after { 197 | box-sizing: inherit; 198 | } 199 | body { 200 | color: hsla(0, 0%, 0%, 0.8); 201 | font-family: georgia, serif; 202 | font-weight: normal; 203 | word-wrap: break-word; 204 | font-kerning: normal; 205 | -moz-font-feature-settings: "kern", "liga", "clig", "calt"; 206 | -ms-font-feature-settings: "kern", "liga", "clig", "calt"; 207 | -webkit-font-feature-settings: "kern", "liga", "clig", "calt"; 208 | font-feature-settings: "kern", "liga", "clig", "calt"; 209 | } 210 | img { 211 | max-width: 100%; 212 | margin-left: 0; 213 | margin-right: 0; 214 | margin-top: 0; 215 | padding-bottom: 0; 216 | padding-left: 0; 217 | padding-right: 0; 218 | padding-top: 0; 219 | margin-bottom: 1.45rem; 220 | } 221 | h1 { 222 | margin-left: 0; 223 | margin-right: 0; 224 | margin-top: 0; 225 | padding-bottom: 0; 226 | padding-left: 0; 227 | padding-right: 0; 228 | padding-top: 0; 229 | margin-bottom: 1.45rem; 230 | color: inherit; 231 | font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, 232 | Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif; 233 | font-weight: bold; 234 | text-rendering: optimizeLegibility; 235 | font-size: 2.25rem; 236 | line-height: 1.1; 237 | } 238 | h2 { 239 | margin-left: 0; 240 | margin-right: 0; 241 | margin-top: 0; 242 | padding-bottom: 0; 243 | padding-left: 0; 244 | padding-right: 0; 245 | padding-top: 0; 246 | margin-bottom: 1.45rem; 247 | color: inherit; 248 | font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, 249 | Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif; 250 | font-weight: bold; 251 | text-rendering: optimizeLegibility; 252 | font-size: 1.62671rem; 253 | line-height: 1.1; 254 | } 255 | h3 { 256 | margin-left: 0; 257 | margin-right: 0; 258 | margin-top: 0; 259 | padding-bottom: 0; 260 | padding-left: 0; 261 | padding-right: 0; 262 | padding-top: 0; 263 | margin-bottom: 1.45rem; 264 | color: inherit; 265 | font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, 266 | Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif; 267 | font-weight: bold; 268 | text-rendering: optimizeLegibility; 269 | font-size: 1.38316rem; 270 | line-height: 1.1; 271 | } 272 | h4 { 273 | margin-left: 0; 274 | margin-right: 0; 275 | margin-top: 0; 276 | padding-bottom: 0; 277 | padding-left: 0; 278 | padding-right: 0; 279 | padding-top: 0; 280 | margin-bottom: 1.45rem; 281 | color: inherit; 282 | font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, 283 | Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif; 284 | font-weight: bold; 285 | text-rendering: optimizeLegibility; 286 | font-size: 1rem; 287 | line-height: 1.1; 288 | } 289 | h5 { 290 | margin-left: 0; 291 | margin-right: 0; 292 | margin-top: 0; 293 | padding-bottom: 0; 294 | padding-left: 0; 295 | padding-right: 0; 296 | padding-top: 0; 297 | margin-bottom: 1.45rem; 298 | color: inherit; 299 | font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, 300 | Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif; 301 | font-weight: bold; 302 | text-rendering: optimizeLegibility; 303 | font-size: 0.85028rem; 304 | line-height: 1.1; 305 | } 306 | h6 { 307 | margin-left: 0; 308 | margin-right: 0; 309 | margin-top: 0; 310 | padding-bottom: 0; 311 | padding-left: 0; 312 | padding-right: 0; 313 | padding-top: 0; 314 | margin-bottom: 1.45rem; 315 | color: inherit; 316 | font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, 317 | Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif; 318 | font-weight: bold; 319 | text-rendering: optimizeLegibility; 320 | font-size: 0.78405rem; 321 | line-height: 1.1; 322 | } 323 | hgroup { 324 | margin-left: 0; 325 | margin-right: 0; 326 | margin-top: 0; 327 | padding-bottom: 0; 328 | padding-left: 0; 329 | padding-right: 0; 330 | padding-top: 0; 331 | margin-bottom: 1.45rem; 332 | } 333 | ul { 334 | margin-left: 1.45rem; 335 | margin-right: 0; 336 | margin-top: 0; 337 | padding-bottom: 0; 338 | padding-left: 0; 339 | padding-right: 0; 340 | padding-top: 0; 341 | margin-bottom: 1.45rem; 342 | list-style-position: outside; 343 | list-style-image: none; 344 | } 345 | ol { 346 | margin-left: 1.45rem; 347 | margin-right: 0; 348 | margin-top: 0; 349 | padding-bottom: 0; 350 | padding-left: 0; 351 | padding-right: 0; 352 | padding-top: 0; 353 | margin-bottom: 1.45rem; 354 | list-style-position: outside; 355 | list-style-image: none; 356 | } 357 | dl { 358 | margin-left: 0; 359 | margin-right: 0; 360 | margin-top: 0; 361 | padding-bottom: 0; 362 | padding-left: 0; 363 | padding-right: 0; 364 | padding-top: 0; 365 | margin-bottom: 1.45rem; 366 | } 367 | dd { 368 | margin-left: 0; 369 | margin-right: 0; 370 | margin-top: 0; 371 | padding-bottom: 0; 372 | padding-left: 0; 373 | padding-right: 0; 374 | padding-top: 0; 375 | margin-bottom: 1.45rem; 376 | } 377 | p { 378 | margin-left: 0; 379 | margin-right: 0; 380 | margin-top: 0; 381 | padding-bottom: 0; 382 | padding-left: 0; 383 | padding-right: 0; 384 | padding-top: 0; 385 | margin-bottom: 1.45rem; 386 | } 387 | figure { 388 | margin-left: 0; 389 | margin-right: 0; 390 | margin-top: 0; 391 | padding-bottom: 0; 392 | padding-left: 0; 393 | padding-right: 0; 394 | padding-top: 0; 395 | margin-bottom: 1.45rem; 396 | } 397 | pre { 398 | margin-left: 0; 399 | margin-right: 0; 400 | margin-top: 0; 401 | padding-bottom: 0; 402 | padding-left: 0; 403 | padding-right: 0; 404 | padding-top: 0; 405 | margin-bottom: 1.45rem; 406 | font-size: 0.85rem; 407 | line-height: 1.42; 408 | background: hsla(0, 0%, 0%, 0.04); 409 | border-radius: 3px; 410 | overflow: auto; 411 | word-wrap: normal; 412 | padding: 1.45rem; 413 | } 414 | table { 415 | margin-left: 0; 416 | margin-right: 0; 417 | margin-top: 0; 418 | padding-bottom: 0; 419 | padding-left: 0; 420 | padding-right: 0; 421 | padding-top: 0; 422 | margin-bottom: 1.45rem; 423 | font-size: 1rem; 424 | line-height: 1.45rem; 425 | border-collapse: collapse; 426 | width: 100%; 427 | } 428 | fieldset { 429 | margin-left: 0; 430 | margin-right: 0; 431 | margin-top: 0; 432 | padding-bottom: 0; 433 | padding-left: 0; 434 | padding-right: 0; 435 | padding-top: 0; 436 | margin-bottom: 1.45rem; 437 | } 438 | blockquote { 439 | margin-left: 1.45rem; 440 | margin-right: 1.45rem; 441 | margin-top: 0; 442 | padding-bottom: 0; 443 | padding-left: 0; 444 | padding-right: 0; 445 | padding-top: 0; 446 | margin-bottom: 1.45rem; 447 | } 448 | form { 449 | margin-left: 0; 450 | margin-right: 0; 451 | margin-top: 0; 452 | padding-bottom: 0; 453 | padding-left: 0; 454 | padding-right: 0; 455 | padding-top: 0; 456 | margin-bottom: 1.45rem; 457 | } 458 | noscript { 459 | margin-left: 0; 460 | margin-right: 0; 461 | margin-top: 0; 462 | padding-bottom: 0; 463 | padding-left: 0; 464 | padding-right: 0; 465 | padding-top: 0; 466 | margin-bottom: 1.45rem; 467 | } 468 | iframe { 469 | margin-left: 0; 470 | margin-right: 0; 471 | margin-top: 0; 472 | padding-bottom: 0; 473 | padding-left: 0; 474 | padding-right: 0; 475 | padding-top: 0; 476 | margin-bottom: 1.45rem; 477 | } 478 | hr { 479 | margin-left: 0; 480 | margin-right: 0; 481 | margin-top: 0; 482 | padding-bottom: 0; 483 | padding-left: 0; 484 | padding-right: 0; 485 | padding-top: 0; 486 | margin-bottom: calc(1.45rem - 1px); 487 | background: hsla(0, 0%, 0%, 0.2); 488 | border: none; 489 | height: 1px; 490 | } 491 | address { 492 | margin-left: 0; 493 | margin-right: 0; 494 | margin-top: 0; 495 | padding-bottom: 0; 496 | padding-left: 0; 497 | padding-right: 0; 498 | padding-top: 0; 499 | margin-bottom: 1.45rem; 500 | } 501 | b { 502 | font-weight: bold; 503 | } 504 | strong { 505 | font-weight: bold; 506 | } 507 | dt { 508 | font-weight: bold; 509 | } 510 | th { 511 | font-weight: bold; 512 | } 513 | li { 514 | margin-bottom: calc(1.45rem / 2); 515 | } 516 | ol li { 517 | padding-left: 0; 518 | } 519 | ul li { 520 | padding-left: 0; 521 | } 522 | li > ol { 523 | margin-left: 1.45rem; 524 | margin-bottom: calc(1.45rem / 2); 525 | margin-top: calc(1.45rem / 2); 526 | } 527 | li > ul { 528 | margin-left: 1.45rem; 529 | margin-bottom: calc(1.45rem / 2); 530 | margin-top: calc(1.45rem / 2); 531 | } 532 | blockquote *:last-child { 533 | margin-bottom: 0; 534 | } 535 | li *:last-child { 536 | margin-bottom: 0; 537 | } 538 | p *:last-child { 539 | margin-bottom: 0; 540 | } 541 | li > p { 542 | margin-bottom: calc(1.45rem / 2); 543 | } 544 | code { 545 | font-size: 0.85rem; 546 | line-height: 1.45rem; 547 | } 548 | kbd { 549 | font-size: 0.85rem; 550 | line-height: 1.45rem; 551 | } 552 | samp { 553 | font-size: 0.85rem; 554 | line-height: 1.45rem; 555 | } 556 | abbr { 557 | border-bottom: 1px dotted hsla(0, 0%, 0%, 0.5); 558 | cursor: help; 559 | } 560 | acronym { 561 | border-bottom: 1px dotted hsla(0, 0%, 0%, 0.5); 562 | cursor: help; 563 | } 564 | abbr[title] { 565 | border-bottom: 1px dotted hsla(0, 0%, 0%, 0.5); 566 | cursor: help; 567 | text-decoration: none; 568 | } 569 | thead { 570 | text-align: left; 571 | } 572 | td, 573 | th { 574 | text-align: left; 575 | border-bottom: 1px solid hsla(0, 0%, 0%, 0.12); 576 | font-feature-settings: "tnum"; 577 | -moz-font-feature-settings: "tnum"; 578 | -ms-font-feature-settings: "tnum"; 579 | -webkit-font-feature-settings: "tnum"; 580 | padding-left: 0.96667rem; 581 | padding-right: 0.96667rem; 582 | padding-top: 0.725rem; 583 | padding-bottom: calc(0.725rem - 1px); 584 | } 585 | th:first-child, 586 | td:first-child { 587 | padding-left: 0; 588 | } 589 | th:last-child, 590 | td:last-child { 591 | padding-right: 0; 592 | } 593 | tt, 594 | code { 595 | background-color: hsla(0, 0%, 0%, 0.04); 596 | border-radius: 3px; 597 | font-family: "SFMono-Regular", Consolas, "Roboto Mono", "Droid Sans Mono", 598 | "Liberation Mono", Menlo, Courier, monospace; 599 | padding: 0; 600 | padding-top: 0.2em; 601 | padding-bottom: 0.2em; 602 | } 603 | pre code { 604 | background: none; 605 | line-height: 1.42; 606 | } 607 | code:before, 608 | code:after, 609 | tt:before, 610 | tt:after { 611 | letter-spacing: -0.2em; 612 | content: " "; 613 | } 614 | pre code:before, 615 | pre code:after, 616 | pre tt:before, 617 | pre tt:after { 618 | content: ""; 619 | } 620 | @media only screen and (max-width: 480px) { 621 | html { 622 | font-size: 100%; 623 | } 624 | } 625 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 台灣社群列表 Awesome Taiwan Community 2 | 3 | ![Contributions Welcome](https://img.shields.io/badge/Contributions-welcome-blue.svg) 4 | 5 | 6 | 交流互動讓自己有更進一步的成長,快來參與社群吧 🚀 7 | 8 | 本 Repo 精選台灣目前活躍的線上與線下社群,主題包含技術、設計、產品、創業以及科技創新。 9 | 如果有其他很棒的社群活動,超級歡迎你開一個 [issue](https://github.com/StarRocket/awesome-taiwan-community/issues) 或者是直接提交 [pull request](https://github.com/StarRocket/awesome-taiwan-community/pulls) 一同維護更新。 10 | 11 | 12 | 13 | 14 | ## 開源社群 15 | 16 | ### Elixir 17 | 18 | * Elixir Taiwan 19 | * Facebook 社團:[https://www.facebook.com/groups/elixir.tw/](https://www.facebook.com/groups/elixir.tw/about/) 20 | * Meetup: https://www.meetup.com/elixirtw-taipei/ 21 | 22 | ### PHP 23 | 24 | * Laravel 台灣 25 | * Facebook 社團: https://www.facebook.com/groups/laravel.tw/ 26 | * Laravel 道場: [https://www.laravel-dojo.com/](https://www.google.com/url?q=https%3A%2F%2Fwww.laravel-dojo.com%2F&sa=D&ust=1531029001017000&usg=AFQjCNExOjmvN_2Iei6Yz63QNVRoZRk3WQ) 27 | * 官網: https://laravel.tw/ 28 | * GitHub: https://github.com/laravel-taiwan 29 | * 年度大型活動:[LaravelConf Taiwan 2018](https://laravelconf.tw/zh-TW) 30 | * 大型活動紀錄:[部落格](https://medium.com/laraveldojo/tagged/laravelconf-taiwan) 31 | * PHP 台灣 32 | * Facebook 社團: https://www.facebook.com/groups/199493136812961/ 33 | * PHP 也有 Day 34 | * Facebook 社團: https://www.facebook.com/groups/849639948396465/ 35 | 36 | ### Ruby 37 | 38 | * Ruby Taiwan 39 | * 官網: https://2018.rubyconf.tw/ 40 | * Twitter: https://twitter.com/rubytaiwan 41 | * Rails Taiwan 42 | * Facebook 專頁: https://www.facebook.com/railstaiwan/ 43 | * Meetup: https://www.meetup.com/rails-taiwan/ 44 | * Twitter: https://twitter.com/RailsTuesday 45 | * 五倍紅寶石 46 | * 官網: https://5xruby.tw/ 47 | * Facebook 專頁: https://www.facebook.com/5xruby 48 | * GitHub: https://github.com/5xruby 49 | * Twitter: https://twitter.com/5xruby 50 | * Ruby on Rails 新手村 51 | * Facebook group: https://www.facebook.com/groups/RailsRookie/about/ 52 | * Ruby on Rails 讀書會 53 | * Facebook group: https://www.facebook.com/groups/208890269174940/about/ 54 | 55 | ### R 56 | 57 | * Taiwan R User Group 58 | * Meetup: https://www.meetup.com/Taiwan-R/ 59 | * Facebook 專頁: http://www.facebook.com/Tw.R.User 60 | 61 | 62 | ### Python 63 | 64 | * Python Taiwan 65 | * Facebook 社團: https://www.facebook.com/groups/pythontw 66 | * Meetup: https://www.meetup.com/Taipei-py/ 67 | 68 | ### Android 69 | 70 | * Android Developer開發讀書會 71 | * Facebook 社團: https://www.facebook.com/groups/523386591081376/ 72 | 73 | * Android 台灣開發者社群 74 | * Facebook 社團: [https://www.facebook.com/groups/270034869726161/](https://www.facebook.com/groups/270034869726161/?ref=br_rs) 75 | * Android Taipei 開發者社群 76 | * Facebook 社團: https://www.facebook.com/groups/AndroidTaipei/ 77 | 78 | ### Mobile App 開發 79 | 80 | * AppDC 台灣 App 開發者社群 81 | * Facebook 社團: https://www.facebook.com/groups/appdc/ 82 | * Cocoaheads Taipei 83 | * Facebook 社團: [https://www.facebook.com/groups/cocoaheads.taipei/](https://www.facebook.com/groups/cocoaheads.taipei/?notif_id=1530243782623050¬if_t=group_r2j_approved&ref=notif) 84 | * Swift 線上讀書會 85 | * Facebook 社團: https://www.facebook.com/groups/238948643131478/ 86 | * Swift Developers Taiwan 87 | * Facebook 社團: https://www.facebook.com/groups/swift.study/ 88 | 89 | ### Java 90 | 91 | * TWJUG 92 | * Facebook 社團: https://www.facebook.com/groups/twjug/ 93 | * GitHub: https://github.com/twjug/jobs 94 | 95 | ### 前端開發相關社群 96 | 97 | * 台北前端社群 98 | * Facebook 社團: https://www.facebook.com/groups/f2e.taipei/ 99 | * Front-End Developers Taiwan 100 | * Facebook 社團: https://www.facebook.com/groups/521085554595481/ 101 | * 官網: http://www.f2e.tw/ 102 | * KKTIX: https://f2e.kktix.cc/ 103 | 104 | ### 人工智慧 105 | 106 | * 台灣「人工智慧」社團 107 | * Facebook 社團: https://www.facebook.com/groups/Taiwan.AI.Group/ 108 | 109 | ### Hacker 110 | 111 | * Hacks/Hackers Taipei 112 | * Facebook 社團: https://www.facebook.com/groups/hackshackerstaipei/ 113 | * 官網: http://www.hackshackers.taipei/ 114 | * GitHub:[https://github.com/hackshackerstaipei](http://www.hackshackers.taipei/) 115 | * Hacking Thursday 116 | * Facebook 社團: https://www.facebook.com/groups/hackingday/ 117 | * 官網: http://www.hackingthursday.org/ 118 | * Meetup: https://www.meetup.com/hackingthursday/ 119 | * Hackernest Tech Social Taiwan 120 | * Facebook 專頁: https://www.facebook.com/pg/Hackernest-Tech-Social-Taiwan-572455929782279/ 121 | 122 | ### Facebook 123 | 124 | * Facebook Developer Circle: Taipei 125 | * Facebook 社團: https://www.facebook.com/groups/DevCTaipei 126 | * 全球官網:[https://developers.facebook.com/](https://developers.facebook.com/products/) 127 | 128 | ### Google 129 | 130 | * GDG Taipei 131 | * Facebook 專頁: https://www.facebook.com/GDG.Taipei/ 132 | * Facebook 社團: https://www.facebook.com/groups/1614248835348810/ 133 | * Meetup: https://www.meetup.com/GDGTaipei/ 134 | 135 | ### Functional Programming 136 | 137 | * Functional Thursday 138 | * Facebook 專頁: https://www.facebook.com/FunctionalThursday 139 | * Facebook 社團: https://www.facebook.com/groups/functioanl.thursday/ 140 | * Meetup: https://www.meetup.com/Functional-Thursday/ 141 | 142 | ### 資料科學 143 | 144 | * Taiwan Hadoop User Group 145 | * Facebook 社團: https://www.facebook.com/groups/hadoop.tw/ 146 | * 官網: http://2017.datacon.tw/ 147 | 148 | ### 敏捷開發 149 | 150 | * 台灣敏捷社群 151 | * Facebook 專頁: https://www.facebook.com/AgileCommunity.tw/ 152 | * KKTIX: https://agilecommtw.kktix.cc/ 153 | 154 | ### Mozilla 155 | 156 | * Mozilla 台灣社群 157 | * Facebook 專頁: https://www.facebook.com/MozTW/ 158 | * 官網: http://moztw.org/ 159 | 160 | ### SLACK 161 | 162 | * SlackDevs: Taipei 163 | * Meetup: https://www.meetup.com/SlackDevs-Taipei/ 164 | 165 | ### Open source 166 | 167 | * Taipei Open Source Software User Group 168 | * Facebook 社團: https://www.facebook.com/groups/tossug/ 169 | 170 | ### **OCF 開放文化基金會** 171 | 172 | * 官網: https://ocf.tw/ 173 | 174 | **開源社** 175 | 176 | * 官網: http://www.kaiyuanshe.cn/ 177 | 178 | ### 179 | 180 | ## 設計社群 181 | 182 | * Sketch & Design - Taipei 183 | * Facebook 專頁: https://www.facebook.com/SketchTaipei/ 184 | * Meetup: https://www.meetup.com/Sketch-Taipei-Meetup/ 185 | * TalkUX 186 | * Facebook 專頁: https://www.facebook.com/talkux1/ 187 | * 官網: http://www.talk-ux.com/ 188 | * UserXper 悠識數位 189 | * Facebook 專頁: https://www.facebook.com/userxper.tw/ 190 | * 官網: https://hpx.tw/ 191 | * Design Resources Lab 192 | * Facebook 專頁: https://www.facebook.com/TheDRLab/ 193 | * UiGathering 台灣使用者經驗設計協會 194 | * Facebook 專頁: https://www.facebook.com/UiGathering/ 195 | * AAPD - As A Product Designer 196 | * Facebook 專頁: https://www.facebook.com/AAPD.tw/ 197 | * Taiwan UI/UX Designers 198 | * Facebook 社團: https://www.facebook.com/groups/TaiwanUIUXDesigners/ 199 | * UI/UX Taiwan 200 | * Facebook 社團: https://www.facebook.com/groups/iOSUIUX/ 201 | * UX 四神湯 202 | * Facebook 專頁: https://www.facebook.com/UXeastmeetswest 203 | * Medium: https://medium.com/uxeastmeetswest 204 | * 設計大舌頭 205 | * Facebook 專頁: https://www.facebook.com/designtongue/ 206 | * 部落格: https://designtongue.me/ 207 | * vide 創誌 208 | * 官網: https://vide.tw/ 209 | * Facebook 專頁: https://www.facebook.com/videmedia 210 | * 台灣互動設計協會 211 | * 官網: http://www.ixda.org.tw/ 212 | * DITL 設計資訊與思考研究室 Design Information & Thinking Lab by 唐玄輝老師 213 | * Facebook 專頁: https://www.facebook.com/proftang/ 214 | * UX /UI Art 線上讀書會 215 | * Facebook 社團: https://www.facebook.com/groups/670166459806094/ 216 | 217 | ### KOL 218 | 219 | * 設計私房誌 220 | * [Medium](https://medium.com/%E8%83%8C%E5%9C%B0%E8%A3%A1%E7%9A%84%E8%BA%AB%E5%88%86%E5%85%B6%E5%AF%A6%E6%98%AF%E4%B8%80%E4%BD%8D%E5%B9%B3%E9%9D%A2%E8%A8%AD%E8%A8%88%E5%B8%AB) 221 | * MOOON.C 222 | * 部落格: https://mooondesign.blog/ 223 | * Samuel 224 | * Medium: https://medium.com/@citysite1025 225 | * profile: http://www.samuel-kao.com/?source=user_profile---------------------------- 226 | 227 | ## 產品社群 228 | 229 | * ProductTank Taipei 230 | * Facebook 專頁: https://www.facebook.com/pg/ProductTankTaipei/ 231 | 232 | ## 女性科技社群 233 | 234 | * Girls In Tech: https://www.facebook.com/groups/420817431404071/ 235 | * LTUX.Taipei: https://www.facebook.com/ltuxtaipei/ 236 | * R-Ladies Taipei:[https://www.facebook.com/groups/RLadiesTaipei/](https://www.facebook.com/groups/RLadiesTaipei/about/) 237 | * Pyladies Taiwan: https://www.facebook.com/pyladies.tw/ 238 | * Railsgirls Taiwan: https://www.facebook.com/railsgirlstw/( 臉書更新到 2017 年) 239 | * JS Girls Taiwan: https://www.facebook.com/jsgirlstw/ 240 | Facebook group: https://www.facebook.com/groups/JsGirlsTaiwan/about/ 241 | * Women in IoT Community: https://www.meetup.com/Women-in-IoT-Community/ 242 | * 243 | 244 | ## 學生社群 245 | 246 | * 大學新創平台 Maker In College: https://www.facebook.com/makerincollege/ 247 | * 政大創聯會 NCCU EA: https://www.facebook.com/NCCUEA/ 248 | * 台大創創中心: https://www.facebook.com/ntutec.fanpage/ 249 | * Rookiefund 250 | * Facebook 專頁: https://www.facebook.com/RookieFund/ 251 | * 官網: https://www.rookie.fund/ 252 | 253 | * * * 254 | 255 | ## 聚會 256 | 257 | * Wizard Amigos 258 | * CodingAmigos [New Taipei Tamsui : fireside gather]: https://www.meetup.com/WizardAmigos/events/ 259 | * WizardAmigos CodeCamp [Taipei,JavaScript,­English]: https://www.meetup.com/WizardAmigos/events/ 260 | * Taiwan Android Developer Study Group 261 | * Android Code Club(Taipei): https://www.meetup.com/Taiwan-Android-Developer-Study-Group/events/ 262 | * Rails Taiwan 263 | * Taipei Rails Meetup: https://www.meetup.com/rails-taiwan/events/ 264 | * Hacking Thursday Taiwan 265 | * HackingThursday 固定聚會: https://www.meetup.com/hackingthursday/events/ 266 | * Taipei.py - Taipei Python User Group 267 | * Taipei.py 月會: https://www.meetup.com/Taipei-py/events/ 268 | * Python Data Meetup: https://www.meetup.com/Taipei-py/events/ 269 | * Elixir Taiwan @ Taipei 270 | * Elixir 台灣 台北 Meetup : https://www.meetup.com/elixirtw-taipei/events/ 271 | * Hacks/Hackers Taipei 272 | * Hacks/Hackers Taipei 小聚: https://old.accupass.com/org/detail/r/1611210458301528244647/1/0 273 | * Swift Taipei User Group 274 | * Swift Meetup: https://www.meetup.com/Swift-Taipei-User-Group/events/ 275 | * Laravel 台灣 276 | * LaraDebut: https://laraveltw.kktix.cc/ 277 | * Laradiner: https://laraveltw.kktix.cc/ 278 | * Functional Thursday 279 | * Functional Thursday: https://www.meetup.com/Functional-Thursday/events/ 280 | * Ruby默默會 281 | * Ruby 默默會:[https://www.facebook.com/pg/rubymokumokukai/events/](https://www.facebook.com/pg/rubymokumokukai/events/?ref=page_internal) 282 | * Taiwan Java User Group 283 | * TWJUG 聚會: https://www.meetup.com/taiwanjug/events/ 284 | * GDG Taipei 285 | * GDG Taipei: https://www.meetup.com/GDGTaipei/events/ 286 | * Agile Taipei 287 | * Agile Taipei 聚會: https://agilecommtw.kktix.cc/ 288 | * Sketch & Design - Taipei 289 | * Sketch Meetup: https://www.meetup.com/Sketch-Taipei-Meetup/events/ 290 | * UiGathering 會員小聚 291 | * UiGathering 7月會員小聚: https://www.facebook.com/pg/UiGathering/events/ 292 | * AAPD - As A Product Designer 293 | * AAPD Meetup: https://www.facebook.com/pg/AAPD.tw/events/ 294 | * MOX - Mobile Only Accelerator 295 | * MOX Friday Happy Hour: https://www.facebook.com/pg/mobileonlyx/events/ 296 | * Pyladies Taiwan 297 | * [Python 女性工程師業界分享]:[https://www.meetup.com/PyLadiesTW/events/](https://www.meetup.com/PyLadiesTW/) 298 | * Impact Hub Taipei 社會影響力製造所 299 | * FuckUp Nights Taipei / 搞砸之夜利列活動: https://www.facebook.com/pg/fckupnightstpe/events/ 300 | * 學習新浪潮: https://impacthubtaipei.accupass.com/org/detail/r/1507280716245227899100/2/0 301 | * OCF 開放文化基金會 302 | * 2018 多倫多 RightsCon 數位人權大會分享會: https://ocftw.kktix.cc/events/rightscon2018-sharing 303 | * NGO 的資安討論小聚: https://ocftw.kktix.cc/ 304 | * ProductTank Taipei 305 | * ProductTank Taipei: https://www.facebook.com/pg/ProductTankTaipei/events/ 306 | * RGBA & F2E Meetup 307 | 由 Front-End Developers Taiwan 每月輪流舉辦前端技術 / 設計分享會,會分享工程師 / 設計師會碰到的各種議題,最新工具、讀書心得、技術和合作方式。歡迎來現場邊吃邊聊 308 | * KKTIX:https://f2e.kktix.cc/ 309 | 310 | 311 | ## 論壇、研討會 312 | 313 | * 台灣資料科學年會 314 | * 活動官網: https://www.facebook.com/twdsconf/ 315 | * Laravel Conf Taiwan 2018 316 | * 活動官網: https://laravelconf.tw/zh-TW 317 | * 詳細議程影片介紹:[https://medium.com/laraveldojo/tagged/laravelconf-taiwan](https://www.google.com/url?q=https%3A%2F%2Fmedium.com%2Flaraveldojo%2Ftagged%2Flaravelconf-taiwan&sa=D&ust=1531029001017000&usg=AFQjCNEQRycLmYVy0AKH7GEgWx-51X2eew) 318 | * Ruby X Elixir Conf Taiwan 2018 319 | * 活動官網: https://2018.rubyconf.tw/ 320 | * JCConf2018 321 | * 活動官網: [https://jcconf.tw/](https://www.facebook.com/pg/jcconf/) 322 | * Agile Summit 2018 323 | * 活動官網: https://summit.ithome.com.tw/agile/ 324 | * FEDC 2018 325 | * 活動官網: https://f2e.kktix.cc/events/fedc-2018 326 | * COMPUTEX 2018 327 | * 活動官網: https://www.computextaipei.com.tw/ 328 | * AWS Summit 台北 329 | * 活動官網: https://aws.amazon.com/tw/summits/taipei/ 330 | * Modern Web 2018 331 | * 活動官網: http://modernweb.tw/ 332 | 2. Facebook專頁: https://www.facebook.com/modernweb.tw/ 333 | * 2018 XFail 失敗者年會 334 | * 活動官網: http://xfail.tw/2018/ 335 | * 2018 DigiAsia - Experience AI. 336 | * 活動官網: https://www.accupass.com/event/1805210427294527275460 337 | * 2018 TWIGF 338 | * 活動官網: [https://www.igf.org.tw/events/2018twigf/](https://www.igf.org.tw/events/2018twigf/3) 339 | * MIX2018創新設計年會 340 | * 活動官網: http://mixconf.tw/ 341 | * CONNECT with AI 年度最強人工智慧論壇 342 | * 活動官網: https://techorange.kktix.cc/ 343 | * 2018 ITRI ICT TechDay 344 | * 活動官網: https://www.accupass.com/event/1805150654126483276880 345 | * 台灣駭客年會 HITCON Community 2018 346 | * 活動官網: https://hitcon.kktix.cc/events/hitcon-cmt-2018 347 | * [JSDC.com](http://jsdc.com/) (由 NodeJS TW/[JavaScript.tw](http://javascript.tw/)/ Html5 & CSS3 等三個社群所合力發起的年度前端盛會) 348 | * 活動官網:[blog.jsdc.tw](http://blog.jsdc.tw/) 349 | 2. Facebook page: https://www.facebook.com/JSDC.TW/ 350 | * PyCon Taiwan 351 | * 官網: https://tw.pycon.org/2018/ 352 | 353 | ## Demoday 354 | 355 | * AppWorks Demo Day: https://www.facebook.com/pg/AppWorksAccelerator/events/ 356 | * TEC#2 Demo Day 台大創創年會: https://www.facebook.com/pg/ntutec.fanpage/events/ 357 | * MOX 4 Demo Day: Taipei: https://www.facebook.com/pg/mobileonlyx/events/ 358 | * 給下一個社企夢想家的備忘錄:2018 年社企流 iLab 成果發表: 359 | https://www.accupass.com/event/1806280938491596919455 360 | 361 | ## 黑客松、比賽 362 | 363 | * 2018 Developer Circles Community Challenge from Facebook: https://devcommunitychallenge.devpost.com/ 364 | * 科技大擂台2:AI資安攻防戰: https://fgc.stpi.narl.org.tw/activity/SFund 365 | * 2018史丹福銀髮設計競賽亞洲區大賽: http://www.silverliningsglobal.com/tw/design_2018.html#register 366 | * 2018全球Fishackathon_魚客松: https://www.facebook.com/Fishackathon.Taipei/ 367 | * 第五屆 PIXNET HACKATHON: https://pixnet.kktix.cc/events/pixnethackthon2018 368 | * 2018創創黑客松第二屆: http://www.istunet.com/WebPage/istunet_web/hackathon_method_iot.html 369 | * Make NTU 台大電機創客松: https://www.facebook.com/makentu.ntuee/ 370 | 371 | ## 展覽 372 | 373 | * 未來商務展: http://www.futurecommerce.tw/ 374 | * 台北國際數位內容交流會(Digital Taipei): [https://www.dgtaipei.tw/](https://www.dgtaipei.tw/about.php) 375 | 376 | ## 工作坊 377 | 378 | * #BuildDay2018: https://devctaipei-buildday2018.splashthat.com/ 379 | * The Honeynet Project Annual Workshop 2018: https://honeynet.kktix.cc/events/honeynet 380 | 381 | ## 近期活動(非常態性) 382 | 383 | * 2018/5-8 HaoShi Bootcamp 好食好事創業極限挑戰營: https://bootcamp2018.hao-shi.org/event/ 384 | * 2018/5/18-10/31 智慧科技應用大賽: http://hackidb.panmedia.asia/ 385 | * 2018/6-7 2018 104開放資料黑客松: https://www.104.com.tw/hackathon/2018/ 386 | * 2018/6/4-2019/5/31 2018交大種子基金創業競賽: https://form.jotform.me/81502229647457 387 | * 2018/6/8-7/6 「漾(Young)世代-金漾獎-漾翻(Young Fun)」競賽: http://www.dox.tw/2018young/ 388 | * 2018/6/9 BLOCKutex - Taiwan Blockchain Week: https://www.facebook.com/events/1771870122862830/ 389 | * 2018/6/11 2018 KEYSIGHT WORLD TAIPEI: http://www.keysightevent.com/bnf2f 390 | * 2018/6/12 微軟物聯網創新中心 Open House: 391 | https://www.microsoftevents.com/profile/form/index.cfm?PKformID=0x4074228abcd 392 | * 2018/6/14 OKEx鏈接世界之旅:台灣: https://www.facebook.com/events/193004794689952/ 393 | * 2018/6/18 INFORMS Women in Tech Dinner Powered by BNY Mellon(GIT): 394 | https://www.wetogether.co/event_detail_150 395 | * 2018/6/18 第一屆台灣區塊鏈會議 Taiwan Blockchain Research Center: 396 | https://www.facebook.com/events/472586853196756/ 397 | * 2018/6/19 Behind "Big Data" and "AI": Elements of Modern Data Science: 398 | https://www.facebook.com/events/391283041357454/ 399 | * 2018/6/19 Anchor Fireside Chat: 7 Things About Cyber Security: 400 | https://www.facebook.com/events/217834645493004/ 401 | * 2018/6/20 設計思考 X 科技商品行銷策略經營 (Design Thinking x Tech Product Planning): 402 | https://www.accupass.com/event/1806140740411605408470 403 | * 2018/6/20 AD TECH 廣告業的革新與動能: https://www.accupass.com/event/1806061112021717049833 404 | * 2018/6/21 Slack Developers Taipei Kickoff: https://www.meetup.com/SlackDevs-Taipei/events/ 405 | * 2018/6/22【作夥來創業!】新創團隊交流暨夥伴媒合會part2: 406 | https://www.accupass.com/event/1805280921551475363687 407 | * 2018/6/23 多層感知機深入研究: https://jaitlk.kktix.cc/events/6086b385 408 | * 2018/6/25 Tech in Asia City Chapters Taiwan II - 跨產業解析AI脈動: 409 | https://www.accupass.com/event/1806120343351405592173 410 | * 2018/6/26 在地產業升級轉型之旅 —— AI x Cloud: https://www.accupass.com/event/1805300930581202682749 411 | * 2018/6/27 Microfusion Connection Day,6/27 (三) 雲端年中感恩茶會: 412 | https://www.accupass.com/event/1806120614311781044137 413 | * 2018/6/29-7/1 NEXT數位創新未來: https://www.accupass.com/event/1806190456052533581200 414 | * 2018/7/2-3 Asia Blockchain Summit 2018: https://www.accupass.com/event/1806061217341924510436 415 | * 2018/7/10-11 MediaTech媒體科技大會: https://www.media-tech.com.tw/index.html 416 | * 2018/7/11 微軟物聯網創新中心 Open House-智慧製造/能源: 417 | https://www.microsoftevents.com/profile/form/index.cfm?PKformID=0x4075292abcd 418 | * 2018/7/11 Hackernest Tech Social Taiwan之AI Data Engineering in Ad Tech: 419 | https://hackernest.kktix.cc/events/techsocial20180711 420 | * 2018/7/17 Mommy Boss 我是老闆也是娘: https://www.facebook.com/events/2027113804271531/ 421 | * 2018/7/19-20 Digital Innovation Forum 2018: http://www.diftaipei2018.org/ 422 | * 2018/9/5 Ignite the Future! 2018國際天使與創業投資峰會: 423 | https://edm.bnext.com.tw/2018angelsummit/index.html 424 | * 2018/10 Crypto Island - 加密島: https://www.facebook.com/events/149846599056168/ 425 | 426 | 427 | * * * 428 | 429 | ## 新創人才 430 | 431 | ### 學院/培訓營 432 | 433 | * 台灣人工智慧學校: http://aiacademy.tw/ 434 | * 2019 SLP(Startup Leadership Program): https://www.accupass.com/event/1805171158286474659480 435 | * Summer School 10 x 10 教育創新進化的可能!: https://www.accupass.com/event/1805171440342833091300 436 | 437 | ### 媒合平台 438 | 439 | * Yourator 新創職涯平台: https://www.yourator.co/ 440 | * Cake Resume: https://www.cakeresume.com/ 441 | 442 | ### 政府補助計畫 443 | 444 | * 經濟部小型企業創新研發計畫: https://www.sbir.org.tw/newsdetail?id=16566 445 | 446 | 447 | 448 | 449 | 450 | 451 | --------------------------------------------------------------------------------