├── .github └── workflows │ ├── pr-to-blog.yml │ └── temp-20210510.yml ├── .gitignore ├── appengine ├── go111-internal-grpc │ ├── .envrc.sample │ ├── .gcloudignore │ ├── .gitignore │ ├── README.md │ ├── app.yaml │ ├── echo.proto │ ├── echo_service.go │ ├── echopb │ │ ├── echo.pb.go │ │ └── echo.pb.gw.go │ ├── generate.sh │ ├── go.mod │ ├── go.sum │ ├── log │ │ └── log.go │ ├── main.go │ ├── setup.sh │ └── tools.go ├── go111-logging-season2 │ ├── .envrc.sample │ ├── .gcloudignore │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ ├── app.yaml │ ├── go.mod │ ├── go.sum │ ├── log │ │ ├── apis.go │ │ ├── example_test.go │ │ ├── middlewares.go │ │ ├── models.go │ │ └── request_log.go │ └── main.go ├── go111-logging-season3 │ ├── .envrc.sample │ ├── .gcloudignore │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ ├── app.yaml │ ├── go.mod │ ├── go.sum │ ├── log │ │ └── log.go │ └── main.go ├── go111-logging │ ├── .envrc.sample │ ├── .gcloudignore │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ ├── app.yaml │ ├── go.mod │ ├── go.sum │ ├── log │ │ ├── apis.go │ │ ├── example_test.go │ │ ├── middlewares.go │ │ ├── models.go │ │ └── request_log.go │ └── main.go └── go111-sample │ ├── .envrc.sample │ ├── .gcloudignore │ ├── .gitignore │ ├── README.md │ ├── app.yaml │ ├── go.mod │ ├── go.sum │ ├── log │ └── log.go │ ├── main.go │ └── main_test.go ├── cloud-functions └── go-hello │ ├── .gcloudignore │ ├── .gitignore │ ├── README.md │ ├── functions.go │ └── go.mod ├── cloud-run └── helloworld-go │ ├── Dockerfile │ ├── README.md │ └── hello.go ├── cuelang ├── cue.mod │ └── module.cue └── tutorials │ └── tour │ ├── expressions │ ├── coalesce │ │ └── coalesce.cue │ ├── conditional │ │ └── conditional.cue │ ├── fieldcomp │ │ └── fieldcomp.cue │ ├── interpolation │ │ └── interpolation.cue │ ├── interpolfield │ │ └── genfield.cue │ ├── listcomp │ │ └── listcomp.cue │ ├── operators │ │ └── op.cue │ └── regexp │ │ └── regexp.cue │ ├── intro │ ├── constraints │ │ └── check.cue │ ├── cue │ │ ├── cue.cue │ │ ├── data.cue │ │ └── schema.cue │ ├── duplicates │ │ └── dup.cue │ ├── fold │ │ └── fold.cue │ ├── json │ │ └── json.cue │ ├── order │ │ └── order.cue │ ├── schema │ │ └── schema.cue │ └── validation │ │ ├── data.yaml │ │ └── schema.cue │ ├── packages │ ├── imports │ │ └── imports.cue │ └── packages │ │ ├── a.cue │ │ └── b.cue │ ├── references │ ├── aliases │ │ └── aliases.cue │ ├── cycle │ │ └── cycle.cue │ ├── cycleref │ │ └── cycleref.cue │ ├── emit │ │ └── emit.cue │ ├── scopes │ │ └── scopes.cue │ └── selectors │ │ └── selectors.cue │ └── types │ ├── bottom │ └── bottom.cue │ ├── bounddef │ └── bound.cue │ ├── bounds │ └── bounds.cue │ ├── bytes │ └── bytes.cue │ ├── closed │ └── structs.cue │ ├── defaults │ └── defaults.cue │ ├── defs │ └── defs.cue │ ├── disjunctions │ └── disjunctions.cue │ ├── lists │ └── lists.cue │ ├── numbers │ └── numbers.cue │ ├── optional │ └── structs.cue │ ├── stringlit │ └── stringlit.cue │ ├── stringraw │ └── stringraw.cue │ ├── sumstruct │ └── sumstruct.cue │ ├── templates │ └── templates.cue │ └── types │ └── types.cue ├── deno └── helloworld │ ├── .envrc │ ├── .gitignore │ ├── README.md │ ├── deno_modules │ └── deps │ │ └── https │ │ └── deno.land │ │ └── x │ │ └── std │ │ ├── fs │ │ ├── path.ts │ │ └── path │ │ │ ├── constants.ts │ │ │ ├── interface.ts │ │ │ └── mod.ts │ │ ├── http │ │ ├── http_status.ts │ │ ├── readers.ts │ │ └── server.ts │ │ ├── io │ │ ├── bufio.ts │ │ └── util.ts │ │ ├── strings │ │ └── strings.ts │ │ ├── testing │ │ └── mod.ts │ │ ├── textproto │ │ └── mod.ts │ │ └── util │ │ └── deferred.ts │ └── index.ts ├── electron ├── .gitignore ├── index.html ├── main.js ├── package.json └── renderer.js ├── firebase-gaego ├── .gitignore ├── api │ ├── .gitignore │ ├── README.md │ ├── setup.sh │ ├── src │ │ ├── app.yaml │ │ └── app │ │ │ ├── example_service.go │ │ │ ├── main.go │ │ │ ├── main_test.go │ │ │ ├── misc_model.go │ │ │ ├── test_utils_test.go │ │ │ └── ucon_utils.go │ ├── start.sh │ ├── test.sh │ └── vendor │ │ └── manifest └── front │ ├── .gitignore │ ├── package.json │ ├── swagger-ui-index.html │ └── yarn.lock ├── github ├── apps-authenticate │ ├── .gitignore │ ├── README.md │ ├── go.mod │ ├── go.sum │ └── main.go └── github-actions-envprotection │ └── README.md ├── go ├── cucumber │ ├── .gitignore │ ├── features │ │ └── godogs.feature │ ├── go.mod │ ├── go.sum │ ├── godogs.go │ ├── godogs_test.go │ └── main_test.go ├── go-harlog-example │ ├── .gitignore │ ├── README.md │ ├── go.mod │ ├── go.sum │ └── main.go ├── graphql-todos │ ├── .gitignore │ ├── domains │ │ ├── errors.go │ │ ├── todo_model.go │ │ └── todo_model_test.go │ ├── go.mod │ ├── go.sum │ ├── gqlgen.yml │ ├── graph │ │ ├── generated │ │ │ └── generated.go │ │ ├── model │ │ │ └── models_gen.go │ │ ├── resolver.go │ │ ├── schema.graphqls │ │ └── schema.resolvers.go │ └── server.go ├── jwk-set │ ├── .gitignore │ ├── go.mod │ ├── go.sum │ └── main.go ├── metago │ └── README.md ├── oauth2idp │ ├── .envrc │ ├── .gcloudignore │ ├── .gitignore │ ├── Dockerfile │ ├── LICENSE.ory │ ├── README.md │ ├── app │ │ └── main.go │ ├── docker-compose.yml │ ├── domains │ │ ├── user_model.go │ │ └── validator.go │ ├── dsstorage │ │ ├── client.go │ │ ├── errors.go │ │ ├── requester.go │ │ └── storage.go │ ├── go.mod │ ├── go.sum │ ├── idp │ │ ├── main.go │ │ ├── wire.go │ │ ├── wire_gen.go │ │ └── wire_provider.go │ ├── main.go │ ├── public │ │ ├── app │ │ │ ├── callback.html.tmpl │ │ │ ├── client.html.tmpl │ │ │ ├── index.html.tmpl │ │ │ ├── owner.html.tmpl │ │ │ └── protected.html.tmpl │ │ └── idp │ │ │ └── auth.html.tmpl │ ├── serve.sh │ ├── setup.sh │ ├── test.sh │ └── tools.go ├── testbymain │ ├── .gitignore │ ├── README.md │ └── main.go ├── testjson │ ├── .gitignore │ ├── README.md │ ├── cmd │ │ └── json2result │ │ │ └── main.go │ ├── go.mod │ ├── main_test.go │ └── testresult.nljson └── try-dockertest-with-datastore │ ├── .envrc │ ├── .gitignore │ ├── adapter_test.go │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── main_test.go ├── gowasm ├── .gitignore ├── README.md ├── main.go ├── serve.sh └── server.go ├── graphql ├── apollo-link-subscription │ ├── .babelrc.js │ ├── .gitignore │ ├── examples │ │ ├── generateSchema.ts │ │ ├── graphql │ │ │ ├── CommentAdded.ts │ │ │ └── globalTypes.ts │ │ ├── index.ts │ │ ├── schema.graphql │ │ └── schema.json │ ├── jest.config.js │ ├── lib │ │ ├── documentModifier.test.ts │ │ ├── documentModifier.ts │ │ ├── index.ts │ │ └── subscriptionLinkConvert.ts │ ├── package-lock.json │ ├── package.json │ └── tsconfig.json ├── gqlgen-directive-parent │ ├── .gitignore │ ├── generated.go │ ├── go.mod │ ├── go.sum │ ├── gqlgen.yml │ ├── models_gen.go │ ├── resolver.go │ ├── schema.graphql │ └── server │ │ └── server.go ├── multi-schema │ ├── .gitignore │ ├── api-impl │ │ ├── directive.go │ │ ├── models.go │ │ └── resolver.go │ ├── api-private │ │ ├── generated.go │ │ ├── gqlgen.yml │ │ └── resolver.go │ ├── api-public │ │ ├── generated.go │ │ ├── gqlgen.yml │ │ └── resolver.go │ ├── generate.sh │ ├── go.mod │ ├── go.sum │ ├── schemas │ │ ├── private │ │ │ └── schema.graphql │ │ └── public │ │ │ └── schema.graphql │ ├── server-private │ │ └── server.go │ ├── server-public │ │ └── server.go │ ├── setup.sh │ ├── test.sh │ └── tools.go ├── relay-examples-to-typescript │ ├── .gitignore │ ├── .mailmap │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE.md │ ├── README.md │ └── todo │ │ ├── .babelrc │ │ ├── .gitignore │ │ ├── .watchmanconfig │ │ ├── README.md │ │ ├── data │ │ ├── database.js │ │ ├── schema.graphql │ │ └── schema.js │ │ ├── js │ │ ├── app.tsx │ │ ├── components │ │ │ ├── Todo.tsx │ │ │ ├── TodoApp.tsx │ │ │ ├── TodoList.tsx │ │ │ ├── TodoListFooter.tsx │ │ │ └── TodoTextInput.tsx │ │ └── mutations │ │ │ ├── AddTodoMutation.ts │ │ │ ├── ChangeTodoStatusMutation.ts │ │ │ ├── MarkAllTodosMutation.ts │ │ │ ├── RemoveCompletedTodosMutation.ts │ │ │ ├── RemoveTodoMutation.ts │ │ │ ├── RenameTodoMutation.ts │ │ │ └── typesUtils.ts │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── base.css │ │ ├── index.css │ │ ├── index.html │ │ └── learn.json │ │ ├── scripts │ │ └── updateSchema.js │ │ ├── server.js │ │ ├── tsconfig.json │ │ └── tsfmt.json ├── tbf-rest │ ├── .gitignore │ ├── Article.md │ ├── docker-compose.yml │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── index.html │ │ ├── main.css │ │ └── main.js │ ├── src │ │ ├── dataLoader.ts │ │ ├── index.ts │ │ ├── model.ts │ │ ├── redisWrapper.ts │ │ └── schema.ts │ └── tsconfig.json ├── try-go-gqlgen │ ├── .gitignore │ ├── README.md │ ├── generated.go │ ├── go.mod │ ├── gqlgen.yml │ ├── models │ │ ├── models.go │ │ └── userImplloader_gen.go │ ├── models_gen.go │ ├── resolver.go │ ├── schema.graphql │ └── server │ │ └── server.go └── try-go-graphql-query │ ├── .gitignore │ ├── go.mod │ └── main.go ├── grpc-web └── first-demo │ ├── .envrc │ ├── README.md │ ├── chat.proto │ ├── client-web │ ├── .gitignore │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ └── index.ts │ └── tsconfig.json │ └── server │ ├── .gitignore │ ├── chat │ └── chat.pb.go │ ├── generate.sh │ ├── go.mod │ ├── go.sum │ └── main.go ├── java └── try-graalvm │ ├── .gitignore │ ├── README.md │ └── Sample.java ├── rust └── wasm-sample │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ └── src │ └── main.rs ├── scikit-learn ├── .gitignore ├── Dockerfile ├── README.md └── iris.ipynb ├── skatejs-definitions ├── .gitignore ├── .vscode │ └── settings.json ├── definitions │ ├── skatejs-web-components │ │ └── index.d.ts │ └── skatejs │ │ ├── index.d.ts │ │ └── jsx.d.ts ├── index.html ├── package.json ├── src │ └── skatejs-tests.tsx ├── tsconfig.json └── yarn.lock ├── skatejs-newdef ├── .gitignore ├── .vscode │ └── settings.json ├── definitions │ ├── skatejs-web-components │ │ └── index.d.ts │ ├── skatejs │ │ ├── index.d.ts │ │ └── jsx.d.ts │ ├── whatwg-customelements │ │ └── index.d.ts │ └── whatwg-shadowdom │ │ └── index.d.ts ├── index.html ├── package.json ├── src │ ├── index.tsx │ └── prop-examples.tsx ├── test │ └── index-spec.tsx ├── tsconfig.json ├── webpack.config.js └── yarn.lock ├── skatejs ├── .gitignore ├── .vscode │ └── settings.json ├── definitions │ ├── skatejs-web-components │ │ └── index.d.ts │ └── skatejs │ │ ├── index.d.ts │ │ └── jsx.d.ts ├── index.html ├── package.json ├── src │ ├── class.tsx │ ├── es5.ts │ ├── index.tsx │ └── react-like.tsx ├── tsconfig.json ├── webpack.config.js └── yarn.lock ├── spanner └── simple │ ├── .gitignore │ ├── Gopkg.lock │ ├── Gopkg.toml │ ├── README.md │ └── main.go ├── tensorflow-go ├── .gitignore ├── README.md ├── hello_tf.go └── requirements.txt ├── tensorflow └── mnist │ ├── .gitignore │ ├── input_data.py │ └── main.py ├── typescript ├── v2.8.1 │ ├── .gitignore │ ├── README.md │ ├── dist │ │ ├── conditionalTypes │ │ │ ├── builtin.d.ts │ │ │ ├── builtinUsage.d.ts │ │ │ ├── deepReadonly.d.ts │ │ │ ├── distributing.d.ts │ │ │ ├── example.d.ts │ │ │ ├── flatten.d.ts │ │ │ ├── index.d.ts │ │ │ └── infer.d.ts │ │ └── emitDeclarationOnly │ │ │ └── index.d.ts │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── conditionalTypes │ │ │ ├── builtin.ts │ │ │ ├── builtinUsage.ts │ │ │ ├── deepReadonly.ts │ │ │ ├── distributing.ts │ │ │ ├── example.ts │ │ │ ├── flatten.ts │ │ │ ├── index.ts │ │ │ └── infer.ts │ │ ├── emitDeclarationOnly │ │ │ └── index.ts │ │ ├── fixingUninitializedProperties │ │ │ └── indexIgnored.ts │ │ ├── granularControlOnMappedTypes │ │ │ └── index.ts │ │ ├── jsxNamespace │ │ │ ├── usageA.tsx │ │ │ ├── usageB.tsx │ │ │ └── usageReact.tsx │ │ ├── jsxPragma │ │ │ ├── react.jsx │ │ │ ├── withPragma.tsx │ │ │ └── withoutPragma.tsx │ │ ├── keyofAndIntersectionTypes │ │ │ └── index.ts │ │ ├── noUnusedParameters │ │ │ └── index.ts │ │ └── organizeImport │ │ │ └── index.ts │ └── tsconfig.json ├── v2.9.1 │ ├── .gitignore │ ├── .vscode │ │ └── settings.json │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── convertGetterSetter │ │ │ └── index.ts │ │ ├── convertToESModule │ │ │ └── index.ts │ │ ├── declarationMap │ │ │ ├── index.ts │ │ │ ├── ref.ts │ │ │ └── ref2.ts │ │ ├── extractDefinition │ │ │ └── index.ts │ │ ├── fileRename │ │ │ ├── a-dash.ts │ │ │ └── index.ts │ │ ├── importAsTypes │ │ │ ├── foo.ts │ │ │ ├── index.ts │ │ │ └── relax.ts │ │ ├── importMeta │ │ │ ├── a.ts │ │ │ └── b.ts │ │ ├── jsxWithGenerics │ │ │ ├── index.jsx │ │ │ └── index.tsx │ │ ├── keyof │ │ │ └── index.ts │ │ ├── neverIteration │ │ │ └── index.ts │ │ ├── prettyByDefault │ │ │ └── indexError.ts │ │ ├── quoteQuickFix │ │ │ └── index.ts │ │ ├── reportUnused │ │ │ └── index.ts │ │ ├── strictNullChecksWithObject │ │ │ └── index.ts │ │ ├── taggedTemplateWithGenerics │ │ │ └── index.ts │ │ └── typedJson │ │ │ ├── data.json │ │ │ └── indexError.ts │ └── tsconfig.json ├── v3.0.0-rc │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── project-refs │ │ ├── .gitignore │ │ ├── client │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ └── index.ts │ │ │ └── tsconfig.json │ │ ├── core │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ └── index.ts │ │ │ └── tsconfig.json │ │ ├── server │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ └── index.ts │ │ │ └── tsconfig.json │ │ └── shared │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── src │ │ │ └── index.ts │ │ │ └── tsconfig.json │ ├── src │ │ ├── arrowBodyStrip │ │ │ └── index.ts │ │ ├── errors │ │ │ └── indexIgnore.ts │ │ ├── extractingAndSpreadingParameters │ │ │ ├── index.ts │ │ │ └── withTuple.ts │ │ ├── importRefactor │ │ │ └── index.ts │ │ ├── jsxDefaultProps │ │ │ ├── index.tsx │ │ │ └── jsx.d.ts │ │ ├── outliningJSXtag │ │ │ └── index.tsx │ │ ├── referenceLib │ │ │ └── index.ts │ │ ├── richTupleTypes │ │ │ └── index.ts │ │ ├── stripUnreachableCode │ │ │ └── indexIgnore.ts │ │ ├── stripUnusedLabel │ │ │ └── index.ts │ │ └── unknownType │ │ │ ├── index.ts │ │ │ └── typeCombine.ts │ └── tsconfig.json ├── v3.1.6 │ ├── .gitignore │ ├── .vscode │ │ └── settings.json │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── convertFromPromiseThenCatchToAsyncAwait │ │ │ ├── basic.ts │ │ │ └── example.ts │ │ ├── differencesInNarrowingFunctions │ │ │ └── basic.ts │ │ ├── mappableTupleAndArrayTypes │ │ │ └── basic.ts │ │ ├── propertiesOnFunctionDeclarations │ │ │ └── basic.ts │ │ └── renameFilesFromImportExportPaths │ │ │ ├── a.ts │ │ │ ├── b.ts │ │ │ └── c.ts │ └── tsconfig.json ├── v3.2.0-rc │ ├── .gitignore │ ├── README.md │ ├── other.tsconfig.json │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── allowNonUnitTypesInUnionDiscriminants │ │ │ └── basic.ts │ │ ├── bigIntSupport │ │ │ └── basic.ts │ │ ├── codeFix │ │ │ ├── addIntermediateUnknownTypeAssertions.ts │ │ │ └── addMissingNewKeyword.ts │ │ ├── index.ts │ │ ├── objectRestOnGenericTypes │ │ │ └── basic.ts │ │ ├── objectSpreadOnGenericTypes │ │ │ └── basic.ts │ │ └── strictBindCallApply │ │ │ ├── basic-invalid.ts │ │ │ └── basic.ts │ └── tsconfig.json ├── v3.3.0-rc │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── project-refs │ │ ├── .gitignore │ │ ├── client │ │ │ ├── src │ │ │ │ └── index.ts │ │ │ └── tsconfig.json │ │ ├── core │ │ │ ├── src │ │ │ │ └── index.ts │ │ │ └── tsconfig.json │ │ ├── server │ │ │ ├── src │ │ │ │ └── index.ts │ │ │ └── tsconfig.json │ │ └── shared │ │ │ ├── src │ │ │ └── index.ts │ │ │ └── tsconfig.json │ ├── src │ │ └── methodWithUnionTypes │ │ │ ├── basic.ts │ │ │ └── complex.ts │ └── tsconfig.json ├── v3.4.0-rc │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── project-refs │ │ ├── .gitignore │ │ ├── client │ │ │ ├── src │ │ │ │ └── index.ts │ │ │ └── tsconfig.json │ │ ├── core │ │ │ ├── src │ │ │ │ └── index.ts │ │ │ └── tsconfig.json │ │ ├── server │ │ │ ├── src │ │ │ │ └── index.ts │ │ │ └── tsconfig.json │ │ └── shared │ │ │ ├── src │ │ │ └── index.ts │ │ │ └── tsconfig.json │ ├── src │ │ ├── constAssetion │ │ │ ├── coveats.ts │ │ │ ├── example.ts │ │ │ └── index.ts │ │ ├── genericsImprovement │ │ │ └── index.ts │ │ ├── globalThis │ │ │ ├── extention.d.ts │ │ │ └── index.ts │ │ ├── incrementalBuild │ │ │ ├── foobar.ts │ │ │ └── index.ts │ │ ├── readonlyImprovement │ │ │ ├── coveats.ts │ │ │ ├── index.ts │ │ │ ├── mappedTypeModifiers.ts │ │ │ └── tuple.ts │ │ └── refactorFunctionOptions │ │ │ └── index.ts │ ├── tsconfig.json │ └── tsconfig.test.json ├── v3.5.1 │ ├── .gitignore │ ├── README.md │ ├── images │ │ ├── v3_4_5-smartSelectAPI.png │ │ └── v3_5_1-smartSelectAPI.png │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── allowUmdGlobalAccess │ │ │ ├── foobar.d.ts │ │ │ ├── formalWay.ts │ │ │ └── index.ts │ │ ├── defaultTypeConstraintToUnknown │ │ │ ├── basic.ts │ │ │ └── unknownIndexes.ts │ │ ├── excessPropertyChecksInUnionTypes │ │ │ └── basic.ts │ │ ├── extractTypeAlias │ │ │ └── basic.ts │ │ ├── higherOrderTypeInference │ │ │ ├── basic.ts │ │ │ └── component.ts │ │ ├── improveIndexedAccessTypes │ │ │ └── basic.ts │ │ ├── omitType │ │ │ └── index.ts │ │ ├── smartSelectAPI │ │ │ └── basic.ts │ │ ├── smarterUnionTypeChecking │ │ │ ├── basic.ts │ │ │ └── other.ts │ │ └── sortedCompletions │ │ │ ├── basic.ts │ │ │ └── winz3.ts │ └── tsconfig.json ├── v3.6.3 │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── ambientClassAndFunctionsCanMerge │ │ │ ├── basic.d.ts │ │ │ ├── example.ts │ │ │ └── old.d.ts │ │ ├── autoImportsModuleStyle │ │ │ ├── basic.ts │ │ │ ├── hello1.ts │ │ │ └── hello2.ts │ │ ├── betterUnicodeSupportForIdentifiers │ │ │ └── basic.ts │ │ ├── getAndSetAccessorInAmbientContexts │ │ │ ├── basic.d.ts │ │ │ ├── emitDefinition.ts │ │ │ └── usage.ts │ │ ├── improveUXAroundPromises │ │ │ └── basic.ts │ │ ├── keywordWithEscape │ │ │ └── basic-ignore.ts │ │ ├── methodNameConstructorIsConstructor │ │ │ └── basic.ts │ │ ├── moreAccurateArraySpread │ │ │ ├── basic.ts │ │ │ └── check.ts │ │ ├── semicolonAwareCodeEdits │ │ │ └── basic.ts │ │ └── stricterGenerators │ │ │ ├── async.ts │ │ │ ├── basic.ts │ │ │ └── nextTypes.ts │ └── tsconfig.json ├── v3.7.1-rc │ ├── .gitignore │ ├── .vscode │ │ └── settings.json │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── project-refs │ │ ├── .gitignore │ │ ├── client │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ └── index.ts │ │ │ └── tsconfig.json │ │ ├── core │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ └── index.ts │ │ │ └── tsconfig.json │ │ ├── server │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ └── index.ts │ │ │ └── tsconfig.json │ │ └── shared │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── src │ │ │ └── index.ts │ │ │ └── tsconfig.json │ ├── src │ │ ├── assertionFunctions │ │ │ └── basic.ts │ │ ├── autoInsertAwait │ │ │ └── basic.ts │ │ ├── declarationAndAllowJS │ │ │ └── basic.js │ │ ├── neverReturningFunction │ │ │ └── basic.ts │ │ ├── nullishCoalescing │ │ │ └── basic.ts │ │ ├── optionalChaining │ │ │ ├── basic.ts │ │ │ └── shortCircuit.ts │ │ ├── recursiveTypeAliases │ │ │ └── basic.ts │ │ ├── semicolonFormatterOption │ │ │ └── basic.ts │ │ ├── tsNocheckPragma │ │ │ └── basic.ts │ │ └── uncalledFunctionChecks │ │ │ └── basic.ts │ └── tsconfig.json ├── v3.7.2 │ ├── .gitignore │ ├── .vscode │ │ └── settings.json │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── project-refs │ │ ├── .gitignore │ │ ├── client │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ └── index.ts │ │ │ └── tsconfig.json │ │ ├── core │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ └── index.ts │ │ │ └── tsconfig.json │ │ ├── server │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ └── index.ts │ │ │ └── tsconfig.json │ │ └── shared │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── src │ │ │ └── index.ts │ │ │ └── tsconfig.json │ ├── src │ │ ├── assertionFunctions │ │ │ └── basic.ts │ │ ├── autoInsertAwait │ │ │ └── basic.ts │ │ ├── flatterErrorReporting │ │ │ └── basic.ts │ │ ├── neverReturningFunction │ │ │ └── basic.ts │ │ ├── nullishCoalescing │ │ │ └── basic.ts │ │ ├── optionalChaining │ │ │ ├── basic.ts │ │ │ └── shortCircuit.ts │ │ ├── recursiveTypeAliases │ │ │ └── basic.ts │ │ ├── semicolonFormatterOption │ │ │ └── basic.ts │ │ ├── tsNocheckPragma │ │ │ └── basic.ts │ │ ├── uncalledFunctionChecks │ │ │ └── basic.ts │ │ └── useDefineForClassFields │ │ │ ├── basic.ts │ │ │ ├── inherit1.ts │ │ │ └── inherit2.ts │ └── tsconfig.json ├── v3.8.1-rc │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── exportAllAs │ │ │ ├── basic.ts │ │ │ ├── index.ts │ │ │ └── libs.ts │ │ ├── indexSignatureAndUnion │ │ │ └── basic-invalid.ts │ │ ├── jsdocPropertyModifiers │ │ │ ├── .gitignore │ │ │ └── index.js │ │ ├── optionalArgumentsWithNoInferences │ │ │ └── basic.ts │ │ ├── privateFields │ │ │ └── basic.ts │ │ ├── topLevelAwait │ │ │ └── basic-ignore.ts │ │ └── typeOnlyImportsAndExports │ │ │ ├── basic │ │ │ ├── exports.ts │ │ │ └── imports.ts │ │ │ ├── importDeclarations │ │ │ └── imports.ts │ │ │ ├── importWithoutValues │ │ │ ├── exports.ts │ │ │ └── imports.ts │ │ │ ├── invalid │ │ │ ├── exports.ts │ │ │ └── imports.ts │ │ │ └── limitation │ │ │ ├── exports.ts │ │ │ └── imports.ts │ └── tsconfig.json └── v3.9.2 │ ├── .gitignore │ ├── .vscode │ └── settings.json │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── closeParentAreNowInvalidJSXTextCharacters │ │ └── invalid │ │ │ └── basic.tsx │ ├── codeActionsPreserveNewlines │ │ └── basic.ts │ ├── commonJSAutoImports │ │ └── basic.js │ ├── declareAPrivateProperty │ │ └── basic-ignore.ts │ ├── exportAllIsAlwaysRetained │ │ ├── basic.ts │ │ └── empty.ts │ ├── exportsAreHoistedAndInitiallyAssigned │ │ ├── bar.ts │ │ ├── foo.ts │ │ └── use.ts │ ├── exportsNowUseGettersForLiveBindings │ │ ├── a.ts │ │ ├── b.ts │ │ ├── c.ts │ │ └── d.ts │ ├── gettersSettersAreNoLongerEnumerable │ │ └── basic.ts │ ├── intersectionsReducedByDiscriminantProperties │ │ └── basic.ts │ ├── parsingDifferencesInOptionalChainingAndNonNullAssertions │ │ └── basic.ts │ ├── promiseAllInference │ │ └── basic-ignore.ts │ ├── quickFixesForMissingReturnExpressions │ │ └── basic.ts │ ├── stricterChecksOnIntersectionsAndOptionalProperties │ │ └── basic.ts │ ├── tsExpectError │ │ └── basic-ignore.ts │ ├── typeParametersThatExtendAnyNoLongerActAsAny │ │ └── basic-invalid.ts │ ├── uncalledFunctionChecksInConditionalExpressions │ │ └── basic-invalid.ts │ └── whatAboutTheAwaitedType │ │ └── basic.ts │ └── tsconfig.json ├── unity ├── CoinPusher │ ├── .gitignore │ ├── Assets │ │ ├── Materials.meta │ │ ├── Materials │ │ │ ├── ArrowMaterial.mat │ │ │ ├── ArrowMaterial.mat.meta │ │ │ ├── CoinMaterial.mat │ │ │ ├── CoinMaterial.mat.meta │ │ │ ├── CoinPyshicMaterial.physicMaterial │ │ │ ├── CoinPyshicMaterial.physicMaterial.meta │ │ │ ├── CoinSpawnerMaterial.mat │ │ │ ├── CoinSpawnerMaterial.mat.meta │ │ │ ├── GameBoardPyshicMaterial.physicMaterial │ │ │ ├── GameBoardPyshicMaterial.physicMaterial.meta │ │ │ ├── GameBodyMaterial.mat │ │ │ └── GameBodyMaterial.mat.meta │ │ ├── Models.meta │ │ ├── Models │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── vvakame.mat │ │ │ │ └── vvakame.mat.meta │ │ │ ├── TrianglerPyramid.blend │ │ │ ├── TrianglerPyramid.blend.meta │ │ │ ├── vvakame.blend │ │ │ └── vvakame.blend.meta │ │ ├── Prefabs.meta │ │ ├── Prefabs │ │ │ ├── Coin.prefab │ │ │ ├── Coin.prefab.meta │ │ │ ├── CoinRemover.prefab │ │ │ ├── CoinRemover.prefab.meta │ │ │ ├── CoinSpawner.prefab │ │ │ └── CoinSpawner.prefab.meta │ │ ├── Scenes.meta │ │ ├── Scenes │ │ │ ├── CoinPusher.unity │ │ │ └── CoinPusher.unity.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ │ ├── CoinRemoverController.cs │ │ │ ├── CoinRemoverController.cs.meta │ │ │ ├── CoinShooterController.cs │ │ │ ├── CoinShooterController.cs.meta │ │ │ ├── CoinSpawnerController.cs │ │ │ ├── CoinSpawnerController.cs.meta │ │ │ ├── PusherController.cs │ │ │ ├── PusherController.cs.meta │ │ │ ├── Rotator.cs │ │ │ ├── Rotator.cs.meta │ │ │ ├── Score.cs │ │ │ └── Score.cs.meta │ └── ProjectSettings │ │ ├── AudioManager.asset │ │ ├── ClusterInputManager.asset │ │ ├── DynamicsManager.asset │ │ ├── EditorBuildSettings.asset │ │ ├── EditorSettings.asset │ │ ├── GraphicsSettings.asset │ │ ├── InputManager.asset │ │ ├── NavMeshAreas.asset │ │ ├── NetworkManager.asset │ │ ├── Physics2DSettings.asset │ │ ├── ProjectSettings.asset │ │ ├── ProjectVersion.txt │ │ ├── QualitySettings.asset │ │ ├── TagManager.asset │ │ ├── TimeManager.asset │ │ ├── UnityAdsSettings.asset │ │ └── UnityConnectSettings.asset ├── leapmotion │ ├── .gitignore │ ├── Assets │ │ ├── Materials.meta │ │ ├── Scripts.meta │ │ ├── Scripts │ │ │ ├── MarkerController.cs │ │ │ └── MarkerController.cs.meta │ │ ├── _Scenes.meta │ │ └── _Scenes │ │ │ ├── Sample.unity │ │ │ └── Sample.unity.meta │ ├── ProjectSettings │ │ ├── AudioManager.asset │ │ ├── ClusterInputManager.asset │ │ ├── DynamicsManager.asset │ │ ├── EditorBuildSettings.asset │ │ ├── EditorSettings.asset │ │ ├── GraphicsSettings.asset │ │ ├── InputManager.asset │ │ ├── NavMeshAreas.asset │ │ ├── NetworkManager.asset │ │ ├── Physics2DSettings.asset │ │ ├── ProjectSettings.asset │ │ ├── ProjectVersion.txt │ │ ├── QualitySettings.asset │ │ ├── TagManager.asset │ │ ├── TimeManager.asset │ │ ├── UnityAdsSettings.asset │ │ └── UnityConnectSettings.asset │ └── README.md ├── roll-a-ball │ ├── .gitignore │ ├── Assets │ │ ├── Materials.meta │ │ ├── Materials │ │ │ ├── Background.mat │ │ │ ├── Background.mat.meta │ │ │ ├── Pick Up.mat │ │ │ └── Pick Up.mat.meta │ │ ├── Prefabs.meta │ │ ├── Prefabs │ │ │ ├── Pick Up.prefab │ │ │ └── Pick Up.prefab.meta │ │ ├── Scripts.meta │ │ ├── Scripts │ │ │ ├── CameraController.cs │ │ │ ├── CameraController.cs.meta │ │ │ ├── PlayerController.cs │ │ │ ├── PlayerController.cs.meta │ │ │ ├── Rotator.cs │ │ │ └── Rotator.cs.meta │ │ ├── _Scenes.meta │ │ └── _Scenes │ │ │ ├── MiniGame.unity │ │ │ └── MiniGame.unity.meta │ └── ProjectSettings │ │ ├── AudioManager.asset │ │ ├── ClusterInputManager.asset │ │ ├── DynamicsManager.asset │ │ ├── EditorBuildSettings.asset │ │ ├── EditorSettings.asset │ │ ├── GraphicsSettings.asset │ │ ├── InputManager.asset │ │ ├── NavMeshAreas.asset │ │ ├── NetworkManager.asset │ │ ├── Physics2DSettings.asset │ │ ├── ProjectSettings.asset │ │ ├── ProjectVersion.txt │ │ ├── QualitySettings.asset │ │ ├── TagManager.asset │ │ ├── TimeManager.asset │ │ ├── UnityAdsSettings.asset │ │ └── UnityConnectSettings.asset └── webcamtexture │ ├── .gitignore │ ├── Assets │ ├── Materials.meta │ ├── Materials │ │ ├── GamePadMock.mat │ │ ├── GamePadMock.mat.meta │ │ ├── GamePadMock.png │ │ ├── GamePadMock.png.meta │ │ ├── WebCamTexture.mat │ │ └── WebCamTexture.mat.meta │ ├── Scripts.meta │ ├── Scripts │ │ ├── PadShakeController.cs │ │ ├── PadShakeController.cs.meta │ │ ├── WebCamScreenTexture.cs │ │ └── WebCamScreenTexture.cs.meta │ ├── _Scenes.meta │ └── _Scenes │ │ ├── WebCam.unity │ │ └── WebCam.unity.meta │ ├── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── NavMeshAreas.asset │ ├── NetworkManager.asset │ ├── Physics2DSettings.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── UnityAdsSettings.asset │ └── UnityConnectSettings.asset │ └── README.md └── yaml └── edit-with-schemas ├── .vscode ├── extensions.json └── settings.json ├── coffee.json └── coffee.yaml /.github/workflows/pr-to-blog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/.github/workflows/pr-to-blog.yml -------------------------------------------------------------------------------- /.github/workflows/temp-20210510.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/.github/workflows/temp-20210510.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | -------------------------------------------------------------------------------- /appengine/go111-internal-grpc/.envrc.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-internal-grpc/.envrc.sample -------------------------------------------------------------------------------- /appengine/go111-internal-grpc/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-internal-grpc/.gcloudignore -------------------------------------------------------------------------------- /appengine/go111-internal-grpc/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | 3 | .envrc 4 | vvakame-playground*.json 5 | 6 | bin/ 7 | vendor/ 8 | -------------------------------------------------------------------------------- /appengine/go111-internal-grpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-internal-grpc/README.md -------------------------------------------------------------------------------- /appengine/go111-internal-grpc/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-internal-grpc/app.yaml -------------------------------------------------------------------------------- /appengine/go111-internal-grpc/echo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-internal-grpc/echo.proto -------------------------------------------------------------------------------- /appengine/go111-internal-grpc/echo_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-internal-grpc/echo_service.go -------------------------------------------------------------------------------- /appengine/go111-internal-grpc/echopb/echo.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-internal-grpc/echopb/echo.pb.go -------------------------------------------------------------------------------- /appengine/go111-internal-grpc/echopb/echo.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-internal-grpc/echopb/echo.pb.gw.go -------------------------------------------------------------------------------- /appengine/go111-internal-grpc/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-internal-grpc/generate.sh -------------------------------------------------------------------------------- /appengine/go111-internal-grpc/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-internal-grpc/go.mod -------------------------------------------------------------------------------- /appengine/go111-internal-grpc/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-internal-grpc/go.sum -------------------------------------------------------------------------------- /appengine/go111-internal-grpc/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-internal-grpc/log/log.go -------------------------------------------------------------------------------- /appengine/go111-internal-grpc/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-internal-grpc/main.go -------------------------------------------------------------------------------- /appengine/go111-internal-grpc/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-internal-grpc/setup.sh -------------------------------------------------------------------------------- /appengine/go111-internal-grpc/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-internal-grpc/tools.go -------------------------------------------------------------------------------- /appengine/go111-logging-season2/.envrc.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-logging-season2/.envrc.sample -------------------------------------------------------------------------------- /appengine/go111-logging-season2/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-logging-season2/.gcloudignore -------------------------------------------------------------------------------- /appengine/go111-logging-season2/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | 3 | .envrc 4 | -------------------------------------------------------------------------------- /appengine/go111-logging-season2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-logging-season2/Dockerfile -------------------------------------------------------------------------------- /appengine/go111-logging-season2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-logging-season2/README.md -------------------------------------------------------------------------------- /appengine/go111-logging-season2/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-logging-season2/app.yaml -------------------------------------------------------------------------------- /appengine/go111-logging-season2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-logging-season2/go.mod -------------------------------------------------------------------------------- /appengine/go111-logging-season2/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-logging-season2/go.sum -------------------------------------------------------------------------------- /appengine/go111-logging-season2/log/apis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-logging-season2/log/apis.go -------------------------------------------------------------------------------- /appengine/go111-logging-season2/log/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-logging-season2/log/example_test.go -------------------------------------------------------------------------------- /appengine/go111-logging-season2/log/middlewares.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-logging-season2/log/middlewares.go -------------------------------------------------------------------------------- /appengine/go111-logging-season2/log/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-logging-season2/log/models.go -------------------------------------------------------------------------------- /appengine/go111-logging-season2/log/request_log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-logging-season2/log/request_log.go -------------------------------------------------------------------------------- /appengine/go111-logging-season2/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-logging-season2/main.go -------------------------------------------------------------------------------- /appengine/go111-logging-season3/.envrc.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-logging-season3/.envrc.sample -------------------------------------------------------------------------------- /appengine/go111-logging-season3/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-logging-season3/.gcloudignore -------------------------------------------------------------------------------- /appengine/go111-logging-season3/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | 3 | .envrc 4 | -------------------------------------------------------------------------------- /appengine/go111-logging-season3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-logging-season3/Dockerfile -------------------------------------------------------------------------------- /appengine/go111-logging-season3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-logging-season3/README.md -------------------------------------------------------------------------------- /appengine/go111-logging-season3/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-logging-season3/app.yaml -------------------------------------------------------------------------------- /appengine/go111-logging-season3/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-logging-season3/go.mod -------------------------------------------------------------------------------- /appengine/go111-logging-season3/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-logging-season3/go.sum -------------------------------------------------------------------------------- /appengine/go111-logging-season3/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-logging-season3/log/log.go -------------------------------------------------------------------------------- /appengine/go111-logging-season3/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-logging-season3/main.go -------------------------------------------------------------------------------- /appengine/go111-logging/.envrc.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-logging/.envrc.sample -------------------------------------------------------------------------------- /appengine/go111-logging/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-logging/.gcloudignore -------------------------------------------------------------------------------- /appengine/go111-logging/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | 3 | .envrc 4 | -------------------------------------------------------------------------------- /appengine/go111-logging/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-logging/Dockerfile -------------------------------------------------------------------------------- /appengine/go111-logging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-logging/README.md -------------------------------------------------------------------------------- /appengine/go111-logging/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-logging/app.yaml -------------------------------------------------------------------------------- /appengine/go111-logging/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-logging/go.mod -------------------------------------------------------------------------------- /appengine/go111-logging/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-logging/go.sum -------------------------------------------------------------------------------- /appengine/go111-logging/log/apis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-logging/log/apis.go -------------------------------------------------------------------------------- /appengine/go111-logging/log/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-logging/log/example_test.go -------------------------------------------------------------------------------- /appengine/go111-logging/log/middlewares.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-logging/log/middlewares.go -------------------------------------------------------------------------------- /appengine/go111-logging/log/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-logging/log/models.go -------------------------------------------------------------------------------- /appengine/go111-logging/log/request_log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-logging/log/request_log.go -------------------------------------------------------------------------------- /appengine/go111-logging/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-logging/main.go -------------------------------------------------------------------------------- /appengine/go111-sample/.envrc.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-sample/.envrc.sample -------------------------------------------------------------------------------- /appengine/go111-sample/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-sample/.gcloudignore -------------------------------------------------------------------------------- /appengine/go111-sample/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | 3 | .envrc 4 | -------------------------------------------------------------------------------- /appengine/go111-sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-sample/README.md -------------------------------------------------------------------------------- /appengine/go111-sample/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-sample/app.yaml -------------------------------------------------------------------------------- /appengine/go111-sample/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-sample/go.mod -------------------------------------------------------------------------------- /appengine/go111-sample/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-sample/go.sum -------------------------------------------------------------------------------- /appengine/go111-sample/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-sample/log/log.go -------------------------------------------------------------------------------- /appengine/go111-sample/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-sample/main.go -------------------------------------------------------------------------------- /appengine/go111-sample/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/appengine/go111-sample/main_test.go -------------------------------------------------------------------------------- /cloud-functions/go-hello/.gcloudignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | cmd/ 3 | *.md 4 | -------------------------------------------------------------------------------- /cloud-functions/go-hello/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /cloud-functions/go-hello/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/cloud-functions/go-hello/README.md -------------------------------------------------------------------------------- /cloud-functions/go-hello/functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/cloud-functions/go-hello/functions.go -------------------------------------------------------------------------------- /cloud-functions/go-hello/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/vvakame/til/cloud-functions/go-hello 2 | -------------------------------------------------------------------------------- /cloud-run/helloworld-go/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/cloud-run/helloworld-go/Dockerfile -------------------------------------------------------------------------------- /cloud-run/helloworld-go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/cloud-run/helloworld-go/README.md -------------------------------------------------------------------------------- /cloud-run/helloworld-go/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/cloud-run/helloworld-go/hello.go -------------------------------------------------------------------------------- /cuelang/cue.mod/module.cue: -------------------------------------------------------------------------------- 1 | module: "github.com/vvakame/til/cuelang" 2 | -------------------------------------------------------------------------------- /cuelang/tutorials/tour/expressions/coalesce/coalesce.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/cuelang/tutorials/tour/expressions/coalesce/coalesce.cue -------------------------------------------------------------------------------- /cuelang/tutorials/tour/expressions/fieldcomp/fieldcomp.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/cuelang/tutorials/tour/expressions/fieldcomp/fieldcomp.cue -------------------------------------------------------------------------------- /cuelang/tutorials/tour/expressions/listcomp/listcomp.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/cuelang/tutorials/tour/expressions/listcomp/listcomp.cue -------------------------------------------------------------------------------- /cuelang/tutorials/tour/expressions/operators/op.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/cuelang/tutorials/tour/expressions/operators/op.cue -------------------------------------------------------------------------------- /cuelang/tutorials/tour/expressions/regexp/regexp.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/cuelang/tutorials/tour/expressions/regexp/regexp.cue -------------------------------------------------------------------------------- /cuelang/tutorials/tour/intro/constraints/check.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/cuelang/tutorials/tour/intro/constraints/check.cue -------------------------------------------------------------------------------- /cuelang/tutorials/tour/intro/cue/cue.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/cuelang/tutorials/tour/intro/cue/cue.cue -------------------------------------------------------------------------------- /cuelang/tutorials/tour/intro/cue/data.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/cuelang/tutorials/tour/intro/cue/data.cue -------------------------------------------------------------------------------- /cuelang/tutorials/tour/intro/cue/schema.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/cuelang/tutorials/tour/intro/cue/schema.cue -------------------------------------------------------------------------------- /cuelang/tutorials/tour/intro/duplicates/dup.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/cuelang/tutorials/tour/intro/duplicates/dup.cue -------------------------------------------------------------------------------- /cuelang/tutorials/tour/intro/fold/fold.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/cuelang/tutorials/tour/intro/fold/fold.cue -------------------------------------------------------------------------------- /cuelang/tutorials/tour/intro/json/json.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/cuelang/tutorials/tour/intro/json/json.cue -------------------------------------------------------------------------------- /cuelang/tutorials/tour/intro/order/order.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/cuelang/tutorials/tour/intro/order/order.cue -------------------------------------------------------------------------------- /cuelang/tutorials/tour/intro/schema/schema.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/cuelang/tutorials/tour/intro/schema/schema.cue -------------------------------------------------------------------------------- /cuelang/tutorials/tour/intro/validation/data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/cuelang/tutorials/tour/intro/validation/data.yaml -------------------------------------------------------------------------------- /cuelang/tutorials/tour/intro/validation/schema.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/cuelang/tutorials/tour/intro/validation/schema.cue -------------------------------------------------------------------------------- /cuelang/tutorials/tour/packages/imports/imports.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/cuelang/tutorials/tour/packages/imports/imports.cue -------------------------------------------------------------------------------- /cuelang/tutorials/tour/packages/packages/a.cue: -------------------------------------------------------------------------------- 1 | package config 2 | 3 | foo: 100 4 | bar: int 5 | -------------------------------------------------------------------------------- /cuelang/tutorials/tour/packages/packages/b.cue: -------------------------------------------------------------------------------- 1 | package config 2 | 3 | bar: 200 4 | -------------------------------------------------------------------------------- /cuelang/tutorials/tour/references/aliases/aliases.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/cuelang/tutorials/tour/references/aliases/aliases.cue -------------------------------------------------------------------------------- /cuelang/tutorials/tour/references/cycle/cycle.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/cuelang/tutorials/tour/references/cycle/cycle.cue -------------------------------------------------------------------------------- /cuelang/tutorials/tour/references/cycleref/cycleref.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/cuelang/tutorials/tour/references/cycleref/cycleref.cue -------------------------------------------------------------------------------- /cuelang/tutorials/tour/references/emit/emit.cue: -------------------------------------------------------------------------------- 1 | "Hello \(who)!" 2 | 3 | who :: "world" 4 | -------------------------------------------------------------------------------- /cuelang/tutorials/tour/references/scopes/scopes.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/cuelang/tutorials/tour/references/scopes/scopes.cue -------------------------------------------------------------------------------- /cuelang/tutorials/tour/references/selectors/selectors.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/cuelang/tutorials/tour/references/selectors/selectors.cue -------------------------------------------------------------------------------- /cuelang/tutorials/tour/types/bottom/bottom.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/cuelang/tutorials/tour/types/bottom/bottom.cue -------------------------------------------------------------------------------- /cuelang/tutorials/tour/types/bounddef/bound.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/cuelang/tutorials/tour/types/bounddef/bound.cue -------------------------------------------------------------------------------- /cuelang/tutorials/tour/types/bounds/bounds.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/cuelang/tutorials/tour/types/bounds/bounds.cue -------------------------------------------------------------------------------- /cuelang/tutorials/tour/types/bytes/bytes.cue: -------------------------------------------------------------------------------- 1 | a: '\x03abc' 2 | -------------------------------------------------------------------------------- /cuelang/tutorials/tour/types/closed/structs.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/cuelang/tutorials/tour/types/closed/structs.cue -------------------------------------------------------------------------------- /cuelang/tutorials/tour/types/defaults/defaults.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/cuelang/tutorials/tour/types/defaults/defaults.cue -------------------------------------------------------------------------------- /cuelang/tutorials/tour/types/defs/defs.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/cuelang/tutorials/tour/types/defs/defs.cue -------------------------------------------------------------------------------- /cuelang/tutorials/tour/types/disjunctions/disjunctions.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/cuelang/tutorials/tour/types/disjunctions/disjunctions.cue -------------------------------------------------------------------------------- /cuelang/tutorials/tour/types/lists/lists.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/cuelang/tutorials/tour/types/lists/lists.cue -------------------------------------------------------------------------------- /cuelang/tutorials/tour/types/numbers/numbers.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/cuelang/tutorials/tour/types/numbers/numbers.cue -------------------------------------------------------------------------------- /cuelang/tutorials/tour/types/optional/structs.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/cuelang/tutorials/tour/types/optional/structs.cue -------------------------------------------------------------------------------- /cuelang/tutorials/tour/types/stringlit/stringlit.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/cuelang/tutorials/tour/types/stringlit/stringlit.cue -------------------------------------------------------------------------------- /cuelang/tutorials/tour/types/stringraw/stringraw.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/cuelang/tutorials/tour/types/stringraw/stringraw.cue -------------------------------------------------------------------------------- /cuelang/tutorials/tour/types/sumstruct/sumstruct.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/cuelang/tutorials/tour/types/sumstruct/sumstruct.cue -------------------------------------------------------------------------------- /cuelang/tutorials/tour/types/templates/templates.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/cuelang/tutorials/tour/types/templates/templates.cue -------------------------------------------------------------------------------- /cuelang/tutorials/tour/types/types/types.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/cuelang/tutorials/tour/types/types/types.cue -------------------------------------------------------------------------------- /deno/helloworld/.envrc: -------------------------------------------------------------------------------- 1 | export DENO_DIR=$(pwd)/deno_modules 2 | -------------------------------------------------------------------------------- /deno/helloworld/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/deno/helloworld/.gitignore -------------------------------------------------------------------------------- /deno/helloworld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/deno/helloworld/README.md -------------------------------------------------------------------------------- /deno/helloworld/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/deno/helloworld/index.ts -------------------------------------------------------------------------------- /electron/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | 3 | electron-til-* 4 | -------------------------------------------------------------------------------- /electron/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/electron/index.html -------------------------------------------------------------------------------- /electron/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/electron/main.js -------------------------------------------------------------------------------- /electron/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/electron/package.json -------------------------------------------------------------------------------- /electron/renderer.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /firebase-gaego/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | -------------------------------------------------------------------------------- /firebase-gaego/api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/firebase-gaego/api/.gitignore -------------------------------------------------------------------------------- /firebase-gaego/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/firebase-gaego/api/README.md -------------------------------------------------------------------------------- /firebase-gaego/api/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/firebase-gaego/api/setup.sh -------------------------------------------------------------------------------- /firebase-gaego/api/src/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/firebase-gaego/api/src/app.yaml -------------------------------------------------------------------------------- /firebase-gaego/api/src/app/example_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/firebase-gaego/api/src/app/example_service.go -------------------------------------------------------------------------------- /firebase-gaego/api/src/app/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/firebase-gaego/api/src/app/main.go -------------------------------------------------------------------------------- /firebase-gaego/api/src/app/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/firebase-gaego/api/src/app/main_test.go -------------------------------------------------------------------------------- /firebase-gaego/api/src/app/misc_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/firebase-gaego/api/src/app/misc_model.go -------------------------------------------------------------------------------- /firebase-gaego/api/src/app/test_utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/firebase-gaego/api/src/app/test_utils_test.go -------------------------------------------------------------------------------- /firebase-gaego/api/src/app/ucon_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/firebase-gaego/api/src/app/ucon_utils.go -------------------------------------------------------------------------------- /firebase-gaego/api/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/firebase-gaego/api/start.sh -------------------------------------------------------------------------------- /firebase-gaego/api/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/firebase-gaego/api/test.sh -------------------------------------------------------------------------------- /firebase-gaego/api/vendor/manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/firebase-gaego/api/vendor/manifest -------------------------------------------------------------------------------- /firebase-gaego/front/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/firebase-gaego/front/.gitignore -------------------------------------------------------------------------------- /firebase-gaego/front/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/firebase-gaego/front/package.json -------------------------------------------------------------------------------- /firebase-gaego/front/swagger-ui-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/firebase-gaego/front/swagger-ui-index.html -------------------------------------------------------------------------------- /firebase-gaego/front/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/firebase-gaego/front/yarn.lock -------------------------------------------------------------------------------- /github/apps-authenticate/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | 3 | *.private-key.pem 4 | -------------------------------------------------------------------------------- /github/apps-authenticate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/github/apps-authenticate/README.md -------------------------------------------------------------------------------- /github/apps-authenticate/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/github/apps-authenticate/go.mod -------------------------------------------------------------------------------- /github/apps-authenticate/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/github/apps-authenticate/go.sum -------------------------------------------------------------------------------- /github/apps-authenticate/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/github/apps-authenticate/main.go -------------------------------------------------------------------------------- /github/github-actions-envprotection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/github/github-actions-envprotection/README.md -------------------------------------------------------------------------------- /go/cucumber/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /go/cucumber/features/godogs.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/cucumber/features/godogs.feature -------------------------------------------------------------------------------- /go/cucumber/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/cucumber/go.mod -------------------------------------------------------------------------------- /go/cucumber/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/cucumber/go.sum -------------------------------------------------------------------------------- /go/cucumber/godogs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/cucumber/godogs.go -------------------------------------------------------------------------------- /go/cucumber/godogs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/cucumber/godogs_test.go -------------------------------------------------------------------------------- /go/cucumber/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/cucumber/main_test.go -------------------------------------------------------------------------------- /go/go-harlog-example/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | 3 | *.har 4 | -------------------------------------------------------------------------------- /go/go-harlog-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/go-harlog-example/README.md -------------------------------------------------------------------------------- /go/go-harlog-example/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/go-harlog-example/go.mod -------------------------------------------------------------------------------- /go/go-harlog-example/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/go-harlog-example/go.sum -------------------------------------------------------------------------------- /go/go-harlog-example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/go-harlog-example/main.go -------------------------------------------------------------------------------- /go/graphql-todos/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /go/graphql-todos/domains/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/graphql-todos/domains/errors.go -------------------------------------------------------------------------------- /go/graphql-todos/domains/todo_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/graphql-todos/domains/todo_model.go -------------------------------------------------------------------------------- /go/graphql-todos/domains/todo_model_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/graphql-todos/domains/todo_model_test.go -------------------------------------------------------------------------------- /go/graphql-todos/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/graphql-todos/go.mod -------------------------------------------------------------------------------- /go/graphql-todos/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/graphql-todos/go.sum -------------------------------------------------------------------------------- /go/graphql-todos/gqlgen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/graphql-todos/gqlgen.yml -------------------------------------------------------------------------------- /go/graphql-todos/graph/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/graphql-todos/graph/generated/generated.go -------------------------------------------------------------------------------- /go/graphql-todos/graph/model/models_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/graphql-todos/graph/model/models_gen.go -------------------------------------------------------------------------------- /go/graphql-todos/graph/resolver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/graphql-todos/graph/resolver.go -------------------------------------------------------------------------------- /go/graphql-todos/graph/schema.graphqls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/graphql-todos/graph/schema.graphqls -------------------------------------------------------------------------------- /go/graphql-todos/graph/schema.resolvers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/graphql-todos/graph/schema.resolvers.go -------------------------------------------------------------------------------- /go/graphql-todos/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/graphql-todos/server.go -------------------------------------------------------------------------------- /go/jwk-set/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /go/jwk-set/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/jwk-set/go.mod -------------------------------------------------------------------------------- /go/jwk-set/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/jwk-set/go.sum -------------------------------------------------------------------------------- /go/jwk-set/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/jwk-set/main.go -------------------------------------------------------------------------------- /go/metago/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/metago/README.md -------------------------------------------------------------------------------- /go/oauth2idp/.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/oauth2idp/.envrc -------------------------------------------------------------------------------- /go/oauth2idp/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/oauth2idp/.gcloudignore -------------------------------------------------------------------------------- /go/oauth2idp/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | 3 | build-cmd/ 4 | 5 | coverage.txt 6 | -------------------------------------------------------------------------------- /go/oauth2idp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/oauth2idp/Dockerfile -------------------------------------------------------------------------------- /go/oauth2idp/LICENSE.ory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/oauth2idp/LICENSE.ory -------------------------------------------------------------------------------- /go/oauth2idp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/oauth2idp/README.md -------------------------------------------------------------------------------- /go/oauth2idp/app/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/oauth2idp/app/main.go -------------------------------------------------------------------------------- /go/oauth2idp/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/oauth2idp/docker-compose.yml -------------------------------------------------------------------------------- /go/oauth2idp/domains/user_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/oauth2idp/domains/user_model.go -------------------------------------------------------------------------------- /go/oauth2idp/domains/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/oauth2idp/domains/validator.go -------------------------------------------------------------------------------- /go/oauth2idp/dsstorage/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/oauth2idp/dsstorage/client.go -------------------------------------------------------------------------------- /go/oauth2idp/dsstorage/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/oauth2idp/dsstorage/errors.go -------------------------------------------------------------------------------- /go/oauth2idp/dsstorage/requester.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/oauth2idp/dsstorage/requester.go -------------------------------------------------------------------------------- /go/oauth2idp/dsstorage/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/oauth2idp/dsstorage/storage.go -------------------------------------------------------------------------------- /go/oauth2idp/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/oauth2idp/go.mod -------------------------------------------------------------------------------- /go/oauth2idp/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/oauth2idp/go.sum -------------------------------------------------------------------------------- /go/oauth2idp/idp/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/oauth2idp/idp/main.go -------------------------------------------------------------------------------- /go/oauth2idp/idp/wire.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/oauth2idp/idp/wire.go -------------------------------------------------------------------------------- /go/oauth2idp/idp/wire_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/oauth2idp/idp/wire_gen.go -------------------------------------------------------------------------------- /go/oauth2idp/idp/wire_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/oauth2idp/idp/wire_provider.go -------------------------------------------------------------------------------- /go/oauth2idp/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/oauth2idp/main.go -------------------------------------------------------------------------------- /go/oauth2idp/public/app/callback.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/oauth2idp/public/app/callback.html.tmpl -------------------------------------------------------------------------------- /go/oauth2idp/public/app/client.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/oauth2idp/public/app/client.html.tmpl -------------------------------------------------------------------------------- /go/oauth2idp/public/app/index.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/oauth2idp/public/app/index.html.tmpl -------------------------------------------------------------------------------- /go/oauth2idp/public/app/owner.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/oauth2idp/public/app/owner.html.tmpl -------------------------------------------------------------------------------- /go/oauth2idp/public/app/protected.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/oauth2idp/public/app/protected.html.tmpl -------------------------------------------------------------------------------- /go/oauth2idp/public/idp/auth.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/oauth2idp/public/idp/auth.html.tmpl -------------------------------------------------------------------------------- /go/oauth2idp/serve.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh -eux 2 | 3 | docker-compose up 4 | -------------------------------------------------------------------------------- /go/oauth2idp/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/oauth2idp/setup.sh -------------------------------------------------------------------------------- /go/oauth2idp/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/oauth2idp/test.sh -------------------------------------------------------------------------------- /go/oauth2idp/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/oauth2idp/tools.go -------------------------------------------------------------------------------- /go/testbymain/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /go/testbymain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/testbymain/README.md -------------------------------------------------------------------------------- /go/testbymain/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/testbymain/main.go -------------------------------------------------------------------------------- /go/testjson/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /go/testjson/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/testjson/README.md -------------------------------------------------------------------------------- /go/testjson/cmd/json2result/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/testjson/cmd/json2result/main.go -------------------------------------------------------------------------------- /go/testjson/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/vvakame/til/go/testjson 2 | 3 | go 1.15 4 | -------------------------------------------------------------------------------- /go/testjson/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/testjson/main_test.go -------------------------------------------------------------------------------- /go/testjson/testresult.nljson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/testjson/testresult.nljson -------------------------------------------------------------------------------- /go/try-dockertest-with-datastore/.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/try-dockertest-with-datastore/.envrc -------------------------------------------------------------------------------- /go/try-dockertest-with-datastore/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /go/try-dockertest-with-datastore/adapter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/try-dockertest-with-datastore/adapter_test.go -------------------------------------------------------------------------------- /go/try-dockertest-with-datastore/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/try-dockertest-with-datastore/go.mod -------------------------------------------------------------------------------- /go/try-dockertest-with-datastore/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/try-dockertest-with-datastore/go.sum -------------------------------------------------------------------------------- /go/try-dockertest-with-datastore/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/try-dockertest-with-datastore/main.go -------------------------------------------------------------------------------- /go/try-dockertest-with-datastore/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/go/try-dockertest-with-datastore/main_test.go -------------------------------------------------------------------------------- /gowasm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/gowasm/.gitignore -------------------------------------------------------------------------------- /gowasm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/gowasm/README.md -------------------------------------------------------------------------------- /gowasm/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/gowasm/main.go -------------------------------------------------------------------------------- /gowasm/serve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/gowasm/serve.sh -------------------------------------------------------------------------------- /gowasm/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/gowasm/server.go -------------------------------------------------------------------------------- /graphql/apollo-link-subscription/.babelrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/apollo-link-subscription/.babelrc.js -------------------------------------------------------------------------------- /graphql/apollo-link-subscription/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/apollo-link-subscription/.gitignore -------------------------------------------------------------------------------- /graphql/apollo-link-subscription/examples/generateSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/apollo-link-subscription/examples/generateSchema.ts -------------------------------------------------------------------------------- /graphql/apollo-link-subscription/examples/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/apollo-link-subscription/examples/index.ts -------------------------------------------------------------------------------- /graphql/apollo-link-subscription/examples/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/apollo-link-subscription/examples/schema.graphql -------------------------------------------------------------------------------- /graphql/apollo-link-subscription/examples/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/apollo-link-subscription/examples/schema.json -------------------------------------------------------------------------------- /graphql/apollo-link-subscription/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/apollo-link-subscription/jest.config.js -------------------------------------------------------------------------------- /graphql/apollo-link-subscription/lib/documentModifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/apollo-link-subscription/lib/documentModifier.ts -------------------------------------------------------------------------------- /graphql/apollo-link-subscription/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/apollo-link-subscription/lib/index.ts -------------------------------------------------------------------------------- /graphql/apollo-link-subscription/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/apollo-link-subscription/package-lock.json -------------------------------------------------------------------------------- /graphql/apollo-link-subscription/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/apollo-link-subscription/package.json -------------------------------------------------------------------------------- /graphql/apollo-link-subscription/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/apollo-link-subscription/tsconfig.json -------------------------------------------------------------------------------- /graphql/gqlgen-directive-parent/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /graphql/gqlgen-directive-parent/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/gqlgen-directive-parent/generated.go -------------------------------------------------------------------------------- /graphql/gqlgen-directive-parent/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/gqlgen-directive-parent/go.mod -------------------------------------------------------------------------------- /graphql/gqlgen-directive-parent/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/gqlgen-directive-parent/go.sum -------------------------------------------------------------------------------- /graphql/gqlgen-directive-parent/gqlgen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/gqlgen-directive-parent/gqlgen.yml -------------------------------------------------------------------------------- /graphql/gqlgen-directive-parent/models_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/gqlgen-directive-parent/models_gen.go -------------------------------------------------------------------------------- /graphql/gqlgen-directive-parent/resolver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/gqlgen-directive-parent/resolver.go -------------------------------------------------------------------------------- /graphql/gqlgen-directive-parent/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/gqlgen-directive-parent/schema.graphql -------------------------------------------------------------------------------- /graphql/gqlgen-directive-parent/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/gqlgen-directive-parent/server/server.go -------------------------------------------------------------------------------- /graphql/multi-schema/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/multi-schema/.gitignore -------------------------------------------------------------------------------- /graphql/multi-schema/api-impl/directive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/multi-schema/api-impl/directive.go -------------------------------------------------------------------------------- /graphql/multi-schema/api-impl/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/multi-schema/api-impl/models.go -------------------------------------------------------------------------------- /graphql/multi-schema/api-impl/resolver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/multi-schema/api-impl/resolver.go -------------------------------------------------------------------------------- /graphql/multi-schema/api-private/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/multi-schema/api-private/generated.go -------------------------------------------------------------------------------- /graphql/multi-schema/api-private/gqlgen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/multi-schema/api-private/gqlgen.yml -------------------------------------------------------------------------------- /graphql/multi-schema/api-private/resolver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/multi-schema/api-private/resolver.go -------------------------------------------------------------------------------- /graphql/multi-schema/api-public/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/multi-schema/api-public/generated.go -------------------------------------------------------------------------------- /graphql/multi-schema/api-public/gqlgen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/multi-schema/api-public/gqlgen.yml -------------------------------------------------------------------------------- /graphql/multi-schema/api-public/resolver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/multi-schema/api-public/resolver.go -------------------------------------------------------------------------------- /graphql/multi-schema/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/multi-schema/generate.sh -------------------------------------------------------------------------------- /graphql/multi-schema/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/multi-schema/go.mod -------------------------------------------------------------------------------- /graphql/multi-schema/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/multi-schema/go.sum -------------------------------------------------------------------------------- /graphql/multi-schema/schemas/private/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/multi-schema/schemas/private/schema.graphql -------------------------------------------------------------------------------- /graphql/multi-schema/schemas/public/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/multi-schema/schemas/public/schema.graphql -------------------------------------------------------------------------------- /graphql/multi-schema/server-private/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/multi-schema/server-private/server.go -------------------------------------------------------------------------------- /graphql/multi-schema/server-public/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/multi-schema/server-public/server.go -------------------------------------------------------------------------------- /graphql/multi-schema/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/multi-schema/setup.sh -------------------------------------------------------------------------------- /graphql/multi-schema/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/multi-schema/test.sh -------------------------------------------------------------------------------- /graphql/multi-schema/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/multi-schema/tools.go -------------------------------------------------------------------------------- /graphql/relay-examples-to-typescript/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea 3 | .nvmrc 4 | /dist/ 5 | /lib/ 6 | node_modules 7 | npm-debug.log 8 | -------------------------------------------------------------------------------- /graphql/relay-examples-to-typescript/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/relay-examples-to-typescript/.mailmap -------------------------------------------------------------------------------- /graphql/relay-examples-to-typescript/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/relay-examples-to-typescript/.travis.yml -------------------------------------------------------------------------------- /graphql/relay-examples-to-typescript/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/relay-examples-to-typescript/CONTRIBUTING.md -------------------------------------------------------------------------------- /graphql/relay-examples-to-typescript/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/relay-examples-to-typescript/LICENSE.md -------------------------------------------------------------------------------- /graphql/relay-examples-to-typescript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/relay-examples-to-typescript/README.md -------------------------------------------------------------------------------- /graphql/relay-examples-to-typescript/todo/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/relay-examples-to-typescript/todo/.babelrc -------------------------------------------------------------------------------- /graphql/relay-examples-to-typescript/todo/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | __generated__/ 3 | -------------------------------------------------------------------------------- /graphql/relay-examples-to-typescript/todo/.watchmanconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphql/relay-examples-to-typescript/todo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/relay-examples-to-typescript/todo/README.md -------------------------------------------------------------------------------- /graphql/relay-examples-to-typescript/todo/data/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/relay-examples-to-typescript/todo/data/database.js -------------------------------------------------------------------------------- /graphql/relay-examples-to-typescript/todo/data/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/relay-examples-to-typescript/todo/data/schema.js -------------------------------------------------------------------------------- /graphql/relay-examples-to-typescript/todo/js/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/relay-examples-to-typescript/todo/js/app.tsx -------------------------------------------------------------------------------- /graphql/relay-examples-to-typescript/todo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/relay-examples-to-typescript/todo/package-lock.json -------------------------------------------------------------------------------- /graphql/relay-examples-to-typescript/todo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/relay-examples-to-typescript/todo/package.json -------------------------------------------------------------------------------- /graphql/relay-examples-to-typescript/todo/public/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/relay-examples-to-typescript/todo/public/base.css -------------------------------------------------------------------------------- /graphql/relay-examples-to-typescript/todo/public/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/relay-examples-to-typescript/todo/public/index.css -------------------------------------------------------------------------------- /graphql/relay-examples-to-typescript/todo/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/relay-examples-to-typescript/todo/public/index.html -------------------------------------------------------------------------------- /graphql/relay-examples-to-typescript/todo/public/learn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/relay-examples-to-typescript/todo/public/learn.json -------------------------------------------------------------------------------- /graphql/relay-examples-to-typescript/todo/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/relay-examples-to-typescript/todo/server.js -------------------------------------------------------------------------------- /graphql/relay-examples-to-typescript/todo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/relay-examples-to-typescript/todo/tsconfig.json -------------------------------------------------------------------------------- /graphql/relay-examples-to-typescript/todo/tsfmt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/relay-examples-to-typescript/todo/tsfmt.json -------------------------------------------------------------------------------- /graphql/tbf-rest/.gitignore: -------------------------------------------------------------------------------- 1 | .envrc 2 | 3 | node_modules/ 4 | 5 | src/**/*.js 6 | -------------------------------------------------------------------------------- /graphql/tbf-rest/Article.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/tbf-rest/Article.md -------------------------------------------------------------------------------- /graphql/tbf-rest/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/tbf-rest/docker-compose.yml -------------------------------------------------------------------------------- /graphql/tbf-rest/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/tbf-rest/package-lock.json -------------------------------------------------------------------------------- /graphql/tbf-rest/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/tbf-rest/package.json -------------------------------------------------------------------------------- /graphql/tbf-rest/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/tbf-rest/public/index.html -------------------------------------------------------------------------------- /graphql/tbf-rest/public/main.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphql/tbf-rest/public/main.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphql/tbf-rest/src/dataLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/tbf-rest/src/dataLoader.ts -------------------------------------------------------------------------------- /graphql/tbf-rest/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/tbf-rest/src/index.ts -------------------------------------------------------------------------------- /graphql/tbf-rest/src/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/tbf-rest/src/model.ts -------------------------------------------------------------------------------- /graphql/tbf-rest/src/redisWrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/tbf-rest/src/redisWrapper.ts -------------------------------------------------------------------------------- /graphql/tbf-rest/src/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/tbf-rest/src/schema.ts -------------------------------------------------------------------------------- /graphql/tbf-rest/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/tbf-rest/tsconfig.json -------------------------------------------------------------------------------- /graphql/try-go-gqlgen/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /graphql/try-go-gqlgen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/try-go-gqlgen/README.md -------------------------------------------------------------------------------- /graphql/try-go-gqlgen/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/try-go-gqlgen/generated.go -------------------------------------------------------------------------------- /graphql/try-go-gqlgen/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/try-go-gqlgen/go.mod -------------------------------------------------------------------------------- /graphql/try-go-gqlgen/gqlgen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/try-go-gqlgen/gqlgen.yml -------------------------------------------------------------------------------- /graphql/try-go-gqlgen/models/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/try-go-gqlgen/models/models.go -------------------------------------------------------------------------------- /graphql/try-go-gqlgen/models/userImplloader_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/try-go-gqlgen/models/userImplloader_gen.go -------------------------------------------------------------------------------- /graphql/try-go-gqlgen/models_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/try-go-gqlgen/models_gen.go -------------------------------------------------------------------------------- /graphql/try-go-gqlgen/resolver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/try-go-gqlgen/resolver.go -------------------------------------------------------------------------------- /graphql/try-go-gqlgen/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/try-go-gqlgen/schema.graphql -------------------------------------------------------------------------------- /graphql/try-go-gqlgen/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/try-go-gqlgen/server/server.go -------------------------------------------------------------------------------- /graphql/try-go-graphql-query/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /graphql/try-go-graphql-query/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/try-go-graphql-query/go.mod -------------------------------------------------------------------------------- /graphql/try-go-graphql-query/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/graphql/try-go-graphql-query/main.go -------------------------------------------------------------------------------- /grpc-web/first-demo/.envrc: -------------------------------------------------------------------------------- 1 | export GO111MODULE=on 2 | 3 | -------------------------------------------------------------------------------- /grpc-web/first-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/grpc-web/first-demo/README.md -------------------------------------------------------------------------------- /grpc-web/first-demo/chat.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/grpc-web/first-demo/chat.proto -------------------------------------------------------------------------------- /grpc-web/first-demo/client-web/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | generated/ 3 | dist/ 4 | 5 | src/**/*.js 6 | -------------------------------------------------------------------------------- /grpc-web/first-demo/client-web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/grpc-web/first-demo/client-web/index.html -------------------------------------------------------------------------------- /grpc-web/first-demo/client-web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/grpc-web/first-demo/client-web/package-lock.json -------------------------------------------------------------------------------- /grpc-web/first-demo/client-web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/grpc-web/first-demo/client-web/package.json -------------------------------------------------------------------------------- /grpc-web/first-demo/client-web/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/grpc-web/first-demo/client-web/src/index.ts -------------------------------------------------------------------------------- /grpc-web/first-demo/client-web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/grpc-web/first-demo/client-web/tsconfig.json -------------------------------------------------------------------------------- /grpc-web/first-demo/server/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | 3 | vendor/ 4 | -------------------------------------------------------------------------------- /grpc-web/first-demo/server/chat/chat.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/grpc-web/first-demo/server/chat/chat.pb.go -------------------------------------------------------------------------------- /grpc-web/first-demo/server/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/grpc-web/first-demo/server/generate.sh -------------------------------------------------------------------------------- /grpc-web/first-demo/server/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/grpc-web/first-demo/server/go.mod -------------------------------------------------------------------------------- /grpc-web/first-demo/server/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/grpc-web/first-demo/server/go.sum -------------------------------------------------------------------------------- /grpc-web/first-demo/server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/grpc-web/first-demo/server/main.go -------------------------------------------------------------------------------- /java/try-graalvm/.gitignore: -------------------------------------------------------------------------------- 1 | sample 2 | *.class 3 | -------------------------------------------------------------------------------- /java/try-graalvm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/java/try-graalvm/README.md -------------------------------------------------------------------------------- /java/try-graalvm/Sample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/java/try-graalvm/Sample.java -------------------------------------------------------------------------------- /rust/wasm-sample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/rust/wasm-sample/.gitignore -------------------------------------------------------------------------------- /rust/wasm-sample/Cargo.lock: -------------------------------------------------------------------------------- 1 | [root] 2 | name = "wasm-sample" 3 | version = "0.1.0" 4 | 5 | -------------------------------------------------------------------------------- /rust/wasm-sample/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/rust/wasm-sample/Cargo.toml -------------------------------------------------------------------------------- /rust/wasm-sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/rust/wasm-sample/README.md -------------------------------------------------------------------------------- /rust/wasm-sample/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/rust/wasm-sample/src/main.rs -------------------------------------------------------------------------------- /scikit-learn/.gitignore: -------------------------------------------------------------------------------- 1 | .ipynb_checkpoints/ 2 | -------------------------------------------------------------------------------- /scikit-learn/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM kaggle/python 2 | 3 | RUN pip install mglearn 4 | -------------------------------------------------------------------------------- /scikit-learn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/scikit-learn/README.md -------------------------------------------------------------------------------- /scikit-learn/iris.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/scikit-learn/iris.ipynb -------------------------------------------------------------------------------- /skatejs-definitions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/skatejs-definitions/.gitignore -------------------------------------------------------------------------------- /skatejs-definitions/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/skatejs-definitions/.vscode/settings.json -------------------------------------------------------------------------------- /skatejs-definitions/definitions/skatejs-web-components/index.d.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /skatejs-definitions/definitions/skatejs/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/skatejs-definitions/definitions/skatejs/index.d.ts -------------------------------------------------------------------------------- /skatejs-definitions/definitions/skatejs/jsx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/skatejs-definitions/definitions/skatejs/jsx.d.ts -------------------------------------------------------------------------------- /skatejs-definitions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/skatejs-definitions/index.html -------------------------------------------------------------------------------- /skatejs-definitions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/skatejs-definitions/package.json -------------------------------------------------------------------------------- /skatejs-definitions/src/skatejs-tests.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/skatejs-definitions/src/skatejs-tests.tsx -------------------------------------------------------------------------------- /skatejs-definitions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/skatejs-definitions/tsconfig.json -------------------------------------------------------------------------------- /skatejs-definitions/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/skatejs-definitions/yarn.lock -------------------------------------------------------------------------------- /skatejs-newdef/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/skatejs-newdef/.gitignore -------------------------------------------------------------------------------- /skatejs-newdef/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/skatejs-newdef/.vscode/settings.json -------------------------------------------------------------------------------- /skatejs-newdef/definitions/skatejs-web-components/index.d.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /skatejs-newdef/definitions/skatejs/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/skatejs-newdef/definitions/skatejs/index.d.ts -------------------------------------------------------------------------------- /skatejs-newdef/definitions/skatejs/jsx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/skatejs-newdef/definitions/skatejs/jsx.d.ts -------------------------------------------------------------------------------- /skatejs-newdef/definitions/whatwg-customelements/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/skatejs-newdef/definitions/whatwg-customelements/index.d.ts -------------------------------------------------------------------------------- /skatejs-newdef/definitions/whatwg-shadowdom/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/skatejs-newdef/definitions/whatwg-shadowdom/index.d.ts -------------------------------------------------------------------------------- /skatejs-newdef/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/skatejs-newdef/index.html -------------------------------------------------------------------------------- /skatejs-newdef/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/skatejs-newdef/package.json -------------------------------------------------------------------------------- /skatejs-newdef/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/skatejs-newdef/src/index.tsx -------------------------------------------------------------------------------- /skatejs-newdef/src/prop-examples.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/skatejs-newdef/src/prop-examples.tsx -------------------------------------------------------------------------------- /skatejs-newdef/test/index-spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/skatejs-newdef/test/index-spec.tsx -------------------------------------------------------------------------------- /skatejs-newdef/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/skatejs-newdef/tsconfig.json -------------------------------------------------------------------------------- /skatejs-newdef/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/skatejs-newdef/webpack.config.js -------------------------------------------------------------------------------- /skatejs-newdef/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/skatejs-newdef/yarn.lock -------------------------------------------------------------------------------- /skatejs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/skatejs/.gitignore -------------------------------------------------------------------------------- /skatejs/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/skatejs/.vscode/settings.json -------------------------------------------------------------------------------- /skatejs/definitions/skatejs-web-components/index.d.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /skatejs/definitions/skatejs/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/skatejs/definitions/skatejs/index.d.ts -------------------------------------------------------------------------------- /skatejs/definitions/skatejs/jsx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/skatejs/definitions/skatejs/jsx.d.ts -------------------------------------------------------------------------------- /skatejs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/skatejs/index.html -------------------------------------------------------------------------------- /skatejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/skatejs/package.json -------------------------------------------------------------------------------- /skatejs/src/class.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/skatejs/src/class.tsx -------------------------------------------------------------------------------- /skatejs/src/es5.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/skatejs/src/es5.ts -------------------------------------------------------------------------------- /skatejs/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/skatejs/src/index.tsx -------------------------------------------------------------------------------- /skatejs/src/react-like.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/skatejs/src/react-like.tsx -------------------------------------------------------------------------------- /skatejs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/skatejs/tsconfig.json -------------------------------------------------------------------------------- /skatejs/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/skatejs/webpack.config.js -------------------------------------------------------------------------------- /skatejs/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/skatejs/yarn.lock -------------------------------------------------------------------------------- /spanner/simple/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | 3 | .envrc 4 | 5 | spanner-sa.json 6 | 7 | vendor/ 8 | -------------------------------------------------------------------------------- /spanner/simple/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/spanner/simple/Gopkg.lock -------------------------------------------------------------------------------- /spanner/simple/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/spanner/simple/Gopkg.toml -------------------------------------------------------------------------------- /spanner/simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/spanner/simple/README.md -------------------------------------------------------------------------------- /spanner/simple/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/spanner/simple/main.go -------------------------------------------------------------------------------- /tensorflow-go/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/tensorflow-go/.gitignore -------------------------------------------------------------------------------- /tensorflow-go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/tensorflow-go/README.md -------------------------------------------------------------------------------- /tensorflow-go/hello_tf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/tensorflow-go/hello_tf.go -------------------------------------------------------------------------------- /tensorflow-go/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/tensorflow-go/requirements.txt -------------------------------------------------------------------------------- /tensorflow/mnist/.gitignore: -------------------------------------------------------------------------------- 1 | MNIST_data/ 2 | -------------------------------------------------------------------------------- /tensorflow/mnist/input_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/tensorflow/mnist/input_data.py -------------------------------------------------------------------------------- /tensorflow/mnist/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/tensorflow/mnist/main.py -------------------------------------------------------------------------------- /typescript/v2.8.1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.8.1/.gitignore -------------------------------------------------------------------------------- /typescript/v2.8.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.8.1/README.md -------------------------------------------------------------------------------- /typescript/v2.8.1/dist/conditionalTypes/builtin.d.ts: -------------------------------------------------------------------------------- 1 | export { }; 2 | -------------------------------------------------------------------------------- /typescript/v2.8.1/dist/conditionalTypes/builtinUsage.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typescript/v2.8.1/dist/conditionalTypes/deepReadonly.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.8.1/dist/conditionalTypes/deepReadonly.d.ts -------------------------------------------------------------------------------- /typescript/v2.8.1/dist/conditionalTypes/distributing.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typescript/v2.8.1/dist/conditionalTypes/example.d.ts: -------------------------------------------------------------------------------- 1 | export { }; 2 | -------------------------------------------------------------------------------- /typescript/v2.8.1/dist/conditionalTypes/flatten.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typescript/v2.8.1/dist/conditionalTypes/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.8.1/dist/conditionalTypes/index.d.ts -------------------------------------------------------------------------------- /typescript/v2.8.1/dist/conditionalTypes/infer.d.ts: -------------------------------------------------------------------------------- 1 | export { }; 2 | -------------------------------------------------------------------------------- /typescript/v2.8.1/dist/emitDeclarationOnly/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.8.1/dist/emitDeclarationOnly/index.d.ts -------------------------------------------------------------------------------- /typescript/v2.8.1/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.8.1/package-lock.json -------------------------------------------------------------------------------- /typescript/v2.8.1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.8.1/package.json -------------------------------------------------------------------------------- /typescript/v2.8.1/src/conditionalTypes/builtin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.8.1/src/conditionalTypes/builtin.ts -------------------------------------------------------------------------------- /typescript/v2.8.1/src/conditionalTypes/builtinUsage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.8.1/src/conditionalTypes/builtinUsage.ts -------------------------------------------------------------------------------- /typescript/v2.8.1/src/conditionalTypes/deepReadonly.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.8.1/src/conditionalTypes/deepReadonly.ts -------------------------------------------------------------------------------- /typescript/v2.8.1/src/conditionalTypes/distributing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.8.1/src/conditionalTypes/distributing.ts -------------------------------------------------------------------------------- /typescript/v2.8.1/src/conditionalTypes/example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.8.1/src/conditionalTypes/example.ts -------------------------------------------------------------------------------- /typescript/v2.8.1/src/conditionalTypes/flatten.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.8.1/src/conditionalTypes/flatten.ts -------------------------------------------------------------------------------- /typescript/v2.8.1/src/conditionalTypes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.8.1/src/conditionalTypes/index.ts -------------------------------------------------------------------------------- /typescript/v2.8.1/src/conditionalTypes/infer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.8.1/src/conditionalTypes/infer.ts -------------------------------------------------------------------------------- /typescript/v2.8.1/src/emitDeclarationOnly/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.8.1/src/emitDeclarationOnly/index.ts -------------------------------------------------------------------------------- /typescript/v2.8.1/src/granularControlOnMappedTypes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.8.1/src/granularControlOnMappedTypes/index.ts -------------------------------------------------------------------------------- /typescript/v2.8.1/src/jsxNamespace/usageA.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.8.1/src/jsxNamespace/usageA.tsx -------------------------------------------------------------------------------- /typescript/v2.8.1/src/jsxNamespace/usageB.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.8.1/src/jsxNamespace/usageB.tsx -------------------------------------------------------------------------------- /typescript/v2.8.1/src/jsxNamespace/usageReact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.8.1/src/jsxNamespace/usageReact.tsx -------------------------------------------------------------------------------- /typescript/v2.8.1/src/jsxPragma/react.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.8.1/src/jsxPragma/react.jsx -------------------------------------------------------------------------------- /typescript/v2.8.1/src/jsxPragma/withPragma.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.8.1/src/jsxPragma/withPragma.tsx -------------------------------------------------------------------------------- /typescript/v2.8.1/src/jsxPragma/withoutPragma.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.8.1/src/jsxPragma/withoutPragma.tsx -------------------------------------------------------------------------------- /typescript/v2.8.1/src/keyofAndIntersectionTypes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.8.1/src/keyofAndIntersectionTypes/index.ts -------------------------------------------------------------------------------- /typescript/v2.8.1/src/noUnusedParameters/index.ts: -------------------------------------------------------------------------------- 1 | class Foo { 2 | } 3 | 4 | export {Foo} 5 | -------------------------------------------------------------------------------- /typescript/v2.8.1/src/organizeImport/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.8.1/src/organizeImport/index.ts -------------------------------------------------------------------------------- /typescript/v2.8.1/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.8.1/tsconfig.json -------------------------------------------------------------------------------- /typescript/v2.9.1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.9.1/.gitignore -------------------------------------------------------------------------------- /typescript/v2.9.1/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.9.1/.vscode/settings.json -------------------------------------------------------------------------------- /typescript/v2.9.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.9.1/README.md -------------------------------------------------------------------------------- /typescript/v2.9.1/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.9.1/package-lock.json -------------------------------------------------------------------------------- /typescript/v2.9.1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.9.1/package.json -------------------------------------------------------------------------------- /typescript/v2.9.1/src/convertGetterSetter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.9.1/src/convertGetterSetter/index.ts -------------------------------------------------------------------------------- /typescript/v2.9.1/src/convertToESModule/index.ts: -------------------------------------------------------------------------------- 1 | const fs = require("fs"); 2 | -------------------------------------------------------------------------------- /typescript/v2.9.1/src/declarationMap/index.ts: -------------------------------------------------------------------------------- 1 | export function test() { 2 | return "foobar"; 3 | } 4 | -------------------------------------------------------------------------------- /typescript/v2.9.1/src/declarationMap/ref.ts: -------------------------------------------------------------------------------- 1 | import { test } from "./"; 2 | 3 | test(); 4 | -------------------------------------------------------------------------------- /typescript/v2.9.1/src/declarationMap/ref2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.9.1/src/declarationMap/ref2.ts -------------------------------------------------------------------------------- /typescript/v2.9.1/src/extractDefinition/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.9.1/src/extractDefinition/index.ts -------------------------------------------------------------------------------- /typescript/v2.9.1/src/fileRename/a-dash.ts: -------------------------------------------------------------------------------- 1 | export function a () { 2 | } 3 | -------------------------------------------------------------------------------- /typescript/v2.9.1/src/fileRename/index.ts: -------------------------------------------------------------------------------- 1 | import { a } from "./a-dash"; 2 | 3 | a(); 4 | -------------------------------------------------------------------------------- /typescript/v2.9.1/src/importAsTypes/foo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.9.1/src/importAsTypes/foo.ts -------------------------------------------------------------------------------- /typescript/v2.9.1/src/importAsTypes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.9.1/src/importAsTypes/index.ts -------------------------------------------------------------------------------- /typescript/v2.9.1/src/importAsTypes/relax.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.9.1/src/importAsTypes/relax.ts -------------------------------------------------------------------------------- /typescript/v2.9.1/src/importMeta/a.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.9.1/src/importMeta/a.ts -------------------------------------------------------------------------------- /typescript/v2.9.1/src/importMeta/b.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.9.1/src/importMeta/b.ts -------------------------------------------------------------------------------- /typescript/v2.9.1/src/jsxWithGenerics/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.9.1/src/jsxWithGenerics/index.jsx -------------------------------------------------------------------------------- /typescript/v2.9.1/src/jsxWithGenerics/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.9.1/src/jsxWithGenerics/index.tsx -------------------------------------------------------------------------------- /typescript/v2.9.1/src/keyof/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.9.1/src/keyof/index.ts -------------------------------------------------------------------------------- /typescript/v2.9.1/src/neverIteration/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.9.1/src/neverIteration/index.ts -------------------------------------------------------------------------------- /typescript/v2.9.1/src/prettyByDefault/indexError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.9.1/src/prettyByDefault/indexError.ts -------------------------------------------------------------------------------- /typescript/v2.9.1/src/quoteQuickFix/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.9.1/src/quoteQuickFix/index.ts -------------------------------------------------------------------------------- /typescript/v2.9.1/src/reportUnused/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.9.1/src/reportUnused/index.ts -------------------------------------------------------------------------------- /typescript/v2.9.1/src/strictNullChecksWithObject/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.9.1/src/strictNullChecksWithObject/index.ts -------------------------------------------------------------------------------- /typescript/v2.9.1/src/taggedTemplateWithGenerics/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.9.1/src/taggedTemplateWithGenerics/index.ts -------------------------------------------------------------------------------- /typescript/v2.9.1/src/typedJson/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.9.1/src/typedJson/data.json -------------------------------------------------------------------------------- /typescript/v2.9.1/src/typedJson/indexError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.9.1/src/typedJson/indexError.ts -------------------------------------------------------------------------------- /typescript/v2.9.1/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v2.9.1/tsconfig.json -------------------------------------------------------------------------------- /typescript/v3.0.0-rc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.0.0-rc/.gitignore -------------------------------------------------------------------------------- /typescript/v3.0.0-rc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.0.0-rc/README.md -------------------------------------------------------------------------------- /typescript/v3.0.0-rc/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.0.0-rc/package-lock.json -------------------------------------------------------------------------------- /typescript/v3.0.0-rc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.0.0-rc/package.json -------------------------------------------------------------------------------- /typescript/v3.0.0-rc/project-refs/.gitignore: -------------------------------------------------------------------------------- 1 | *.d.ts 2 | *.js 3 | -------------------------------------------------------------------------------- /typescript/v3.0.0-rc/project-refs/client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.0.0-rc/project-refs/client/package-lock.json -------------------------------------------------------------------------------- /typescript/v3.0.0-rc/project-refs/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.0.0-rc/project-refs/client/package.json -------------------------------------------------------------------------------- /typescript/v3.0.0-rc/project-refs/client/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.0.0-rc/project-refs/client/src/index.ts -------------------------------------------------------------------------------- /typescript/v3.0.0-rc/project-refs/client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.0.0-rc/project-refs/client/tsconfig.json -------------------------------------------------------------------------------- /typescript/v3.0.0-rc/project-refs/core/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.0.0-rc/project-refs/core/package-lock.json -------------------------------------------------------------------------------- /typescript/v3.0.0-rc/project-refs/core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.0.0-rc/project-refs/core/package.json -------------------------------------------------------------------------------- /typescript/v3.0.0-rc/project-refs/core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.0.0-rc/project-refs/core/src/index.ts -------------------------------------------------------------------------------- /typescript/v3.0.0-rc/project-refs/core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.0.0-rc/project-refs/core/tsconfig.json -------------------------------------------------------------------------------- /typescript/v3.0.0-rc/project-refs/server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.0.0-rc/project-refs/server/package-lock.json -------------------------------------------------------------------------------- /typescript/v3.0.0-rc/project-refs/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.0.0-rc/project-refs/server/package.json -------------------------------------------------------------------------------- /typescript/v3.0.0-rc/project-refs/server/src/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typescript/v3.0.0-rc/project-refs/server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.0.0-rc/project-refs/server/tsconfig.json -------------------------------------------------------------------------------- /typescript/v3.0.0-rc/project-refs/shared/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.0.0-rc/project-refs/shared/package-lock.json -------------------------------------------------------------------------------- /typescript/v3.0.0-rc/project-refs/shared/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.0.0-rc/project-refs/shared/package.json -------------------------------------------------------------------------------- /typescript/v3.0.0-rc/project-refs/shared/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.0.0-rc/project-refs/shared/src/index.ts -------------------------------------------------------------------------------- /typescript/v3.0.0-rc/project-refs/shared/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.0.0-rc/project-refs/shared/tsconfig.json -------------------------------------------------------------------------------- /typescript/v3.0.0-rc/src/arrowBodyStrip/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.0.0-rc/src/arrowBodyStrip/index.ts -------------------------------------------------------------------------------- /typescript/v3.0.0-rc/src/errors/indexIgnore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.0.0-rc/src/errors/indexIgnore.ts -------------------------------------------------------------------------------- /typescript/v3.0.0-rc/src/importRefactor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.0.0-rc/src/importRefactor/index.ts -------------------------------------------------------------------------------- /typescript/v3.0.0-rc/src/jsxDefaultProps/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.0.0-rc/src/jsxDefaultProps/index.tsx -------------------------------------------------------------------------------- /typescript/v3.0.0-rc/src/jsxDefaultProps/jsx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.0.0-rc/src/jsxDefaultProps/jsx.d.ts -------------------------------------------------------------------------------- /typescript/v3.0.0-rc/src/outliningJSXtag/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.0.0-rc/src/outliningJSXtag/index.tsx -------------------------------------------------------------------------------- /typescript/v3.0.0-rc/src/referenceLib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.0.0-rc/src/referenceLib/index.ts -------------------------------------------------------------------------------- /typescript/v3.0.0-rc/src/richTupleTypes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.0.0-rc/src/richTupleTypes/index.ts -------------------------------------------------------------------------------- /typescript/v3.0.0-rc/src/stripUnreachableCode/indexIgnore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.0.0-rc/src/stripUnreachableCode/indexIgnore.ts -------------------------------------------------------------------------------- /typescript/v3.0.0-rc/src/stripUnusedLabel/index.ts: -------------------------------------------------------------------------------- 1 | loop: for (let i of [1, 2, 3]) { 2 | console.log(i); 3 | } 4 | -------------------------------------------------------------------------------- /typescript/v3.0.0-rc/src/unknownType/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.0.0-rc/src/unknownType/index.ts -------------------------------------------------------------------------------- /typescript/v3.0.0-rc/src/unknownType/typeCombine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.0.0-rc/src/unknownType/typeCombine.ts -------------------------------------------------------------------------------- /typescript/v3.0.0-rc/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.0.0-rc/tsconfig.json -------------------------------------------------------------------------------- /typescript/v3.1.6/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.1.6/.gitignore -------------------------------------------------------------------------------- /typescript/v3.1.6/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.1.6/.vscode/settings.json -------------------------------------------------------------------------------- /typescript/v3.1.6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.1.6/README.md -------------------------------------------------------------------------------- /typescript/v3.1.6/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.1.6/package-lock.json -------------------------------------------------------------------------------- /typescript/v3.1.6/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.1.6/package.json -------------------------------------------------------------------------------- /typescript/v3.1.6/src/mappableTupleAndArrayTypes/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.1.6/src/mappableTupleAndArrayTypes/basic.ts -------------------------------------------------------------------------------- /typescript/v3.1.6/src/renameFilesFromImportExportPaths/a.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.1.6/src/renameFilesFromImportExportPaths/a.ts -------------------------------------------------------------------------------- /typescript/v3.1.6/src/renameFilesFromImportExportPaths/b.ts: -------------------------------------------------------------------------------- 1 | export function hello() { 2 | console.log("Hello, world"); 3 | } 4 | -------------------------------------------------------------------------------- /typescript/v3.1.6/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.1.6/tsconfig.json -------------------------------------------------------------------------------- /typescript/v3.2.0-rc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.2.0-rc/.gitignore -------------------------------------------------------------------------------- /typescript/v3.2.0-rc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.2.0-rc/README.md -------------------------------------------------------------------------------- /typescript/v3.2.0-rc/other.tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.2.0-rc/other.tsconfig.json -------------------------------------------------------------------------------- /typescript/v3.2.0-rc/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.2.0-rc/package-lock.json -------------------------------------------------------------------------------- /typescript/v3.2.0-rc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.2.0-rc/package.json -------------------------------------------------------------------------------- /typescript/v3.2.0-rc/src/bigIntSupport/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.2.0-rc/src/bigIntSupport/basic.ts -------------------------------------------------------------------------------- /typescript/v3.2.0-rc/src/codeFix/addMissingNewKeyword.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.2.0-rc/src/codeFix/addMissingNewKeyword.ts -------------------------------------------------------------------------------- /typescript/v3.2.0-rc/src/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typescript/v3.2.0-rc/src/objectRestOnGenericTypes/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.2.0-rc/src/objectRestOnGenericTypes/basic.ts -------------------------------------------------------------------------------- /typescript/v3.2.0-rc/src/strictBindCallApply/basic.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typescript/v3.2.0-rc/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.2.0-rc/tsconfig.json -------------------------------------------------------------------------------- /typescript/v3.3.0-rc/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | 3 | src/**/*.js 4 | -------------------------------------------------------------------------------- /typescript/v3.3.0-rc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.3.0-rc/README.md -------------------------------------------------------------------------------- /typescript/v3.3.0-rc/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.3.0-rc/package-lock.json -------------------------------------------------------------------------------- /typescript/v3.3.0-rc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.3.0-rc/package.json -------------------------------------------------------------------------------- /typescript/v3.3.0-rc/project-refs/.gitignore: -------------------------------------------------------------------------------- 1 | *.d.ts 2 | *.js 3 | -------------------------------------------------------------------------------- /typescript/v3.3.0-rc/project-refs/client/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.3.0-rc/project-refs/client/src/index.ts -------------------------------------------------------------------------------- /typescript/v3.3.0-rc/project-refs/client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.3.0-rc/project-refs/client/tsconfig.json -------------------------------------------------------------------------------- /typescript/v3.3.0-rc/project-refs/core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.3.0-rc/project-refs/core/src/index.ts -------------------------------------------------------------------------------- /typescript/v3.3.0-rc/project-refs/core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.3.0-rc/project-refs/core/tsconfig.json -------------------------------------------------------------------------------- /typescript/v3.3.0-rc/project-refs/server/src/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typescript/v3.3.0-rc/project-refs/server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.3.0-rc/project-refs/server/tsconfig.json -------------------------------------------------------------------------------- /typescript/v3.3.0-rc/project-refs/shared/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.3.0-rc/project-refs/shared/src/index.ts -------------------------------------------------------------------------------- /typescript/v3.3.0-rc/project-refs/shared/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.3.0-rc/project-refs/shared/tsconfig.json -------------------------------------------------------------------------------- /typescript/v3.3.0-rc/src/methodWithUnionTypes/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.3.0-rc/src/methodWithUnionTypes/basic.ts -------------------------------------------------------------------------------- /typescript/v3.3.0-rc/src/methodWithUnionTypes/complex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.3.0-rc/src/methodWithUnionTypes/complex.ts -------------------------------------------------------------------------------- /typescript/v3.3.0-rc/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.3.0-rc/tsconfig.json -------------------------------------------------------------------------------- /typescript/v3.4.0-rc/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | 3 | *.tsbuildinfo 4 | 5 | src/**/*.js 6 | -------------------------------------------------------------------------------- /typescript/v3.4.0-rc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.4.0-rc/README.md -------------------------------------------------------------------------------- /typescript/v3.4.0-rc/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.4.0-rc/package-lock.json -------------------------------------------------------------------------------- /typescript/v3.4.0-rc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.4.0-rc/package.json -------------------------------------------------------------------------------- /typescript/v3.4.0-rc/project-refs/.gitignore: -------------------------------------------------------------------------------- 1 | *.d.ts 2 | *.js 3 | -------------------------------------------------------------------------------- /typescript/v3.4.0-rc/project-refs/client/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.4.0-rc/project-refs/client/src/index.ts -------------------------------------------------------------------------------- /typescript/v3.4.0-rc/project-refs/client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.4.0-rc/project-refs/client/tsconfig.json -------------------------------------------------------------------------------- /typescript/v3.4.0-rc/project-refs/core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.4.0-rc/project-refs/core/src/index.ts -------------------------------------------------------------------------------- /typescript/v3.4.0-rc/project-refs/core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.4.0-rc/project-refs/core/tsconfig.json -------------------------------------------------------------------------------- /typescript/v3.4.0-rc/project-refs/server/src/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typescript/v3.4.0-rc/project-refs/server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.4.0-rc/project-refs/server/tsconfig.json -------------------------------------------------------------------------------- /typescript/v3.4.0-rc/project-refs/shared/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.4.0-rc/project-refs/shared/src/index.ts -------------------------------------------------------------------------------- /typescript/v3.4.0-rc/project-refs/shared/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.4.0-rc/project-refs/shared/tsconfig.json -------------------------------------------------------------------------------- /typescript/v3.4.0-rc/src/constAssetion/coveats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.4.0-rc/src/constAssetion/coveats.ts -------------------------------------------------------------------------------- /typescript/v3.4.0-rc/src/constAssetion/example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.4.0-rc/src/constAssetion/example.ts -------------------------------------------------------------------------------- /typescript/v3.4.0-rc/src/constAssetion/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.4.0-rc/src/constAssetion/index.ts -------------------------------------------------------------------------------- /typescript/v3.4.0-rc/src/genericsImprovement/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.4.0-rc/src/genericsImprovement/index.ts -------------------------------------------------------------------------------- /typescript/v3.4.0-rc/src/globalThis/extention.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.4.0-rc/src/globalThis/extention.d.ts -------------------------------------------------------------------------------- /typescript/v3.4.0-rc/src/globalThis/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.4.0-rc/src/globalThis/index.ts -------------------------------------------------------------------------------- /typescript/v3.4.0-rc/src/incrementalBuild/foobar.ts: -------------------------------------------------------------------------------- 1 | console.log("foobar"); 2 | -------------------------------------------------------------------------------- /typescript/v3.4.0-rc/src/incrementalBuild/index.ts: -------------------------------------------------------------------------------- 1 | console.log("test"); 2 | -------------------------------------------------------------------------------- /typescript/v3.4.0-rc/src/readonlyImprovement/coveats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.4.0-rc/src/readonlyImprovement/coveats.ts -------------------------------------------------------------------------------- /typescript/v3.4.0-rc/src/readonlyImprovement/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.4.0-rc/src/readonlyImprovement/index.ts -------------------------------------------------------------------------------- /typescript/v3.4.0-rc/src/readonlyImprovement/tuple.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.4.0-rc/src/readonlyImprovement/tuple.ts -------------------------------------------------------------------------------- /typescript/v3.4.0-rc/src/refactorFunctionOptions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.4.0-rc/src/refactorFunctionOptions/index.ts -------------------------------------------------------------------------------- /typescript/v3.4.0-rc/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.4.0-rc/tsconfig.json -------------------------------------------------------------------------------- /typescript/v3.4.0-rc/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.4.0-rc/tsconfig.test.json -------------------------------------------------------------------------------- /typescript/v3.5.1/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | 3 | src/**/*.js 4 | -------------------------------------------------------------------------------- /typescript/v3.5.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.5.1/README.md -------------------------------------------------------------------------------- /typescript/v3.5.1/images/v3_4_5-smartSelectAPI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.5.1/images/v3_4_5-smartSelectAPI.png -------------------------------------------------------------------------------- /typescript/v3.5.1/images/v3_5_1-smartSelectAPI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.5.1/images/v3_5_1-smartSelectAPI.png -------------------------------------------------------------------------------- /typescript/v3.5.1/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.5.1/package-lock.json -------------------------------------------------------------------------------- /typescript/v3.5.1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.5.1/package.json -------------------------------------------------------------------------------- /typescript/v3.5.1/src/allowUmdGlobalAccess/foobar.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.5.1/src/allowUmdGlobalAccess/foobar.d.ts -------------------------------------------------------------------------------- /typescript/v3.5.1/src/allowUmdGlobalAccess/formalWay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.5.1/src/allowUmdGlobalAccess/formalWay.ts -------------------------------------------------------------------------------- /typescript/v3.5.1/src/allowUmdGlobalAccess/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.5.1/src/allowUmdGlobalAccess/index.ts -------------------------------------------------------------------------------- /typescript/v3.5.1/src/extractTypeAlias/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.5.1/src/extractTypeAlias/basic.ts -------------------------------------------------------------------------------- /typescript/v3.5.1/src/higherOrderTypeInference/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.5.1/src/higherOrderTypeInference/basic.ts -------------------------------------------------------------------------------- /typescript/v3.5.1/src/improveIndexedAccessTypes/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.5.1/src/improveIndexedAccessTypes/basic.ts -------------------------------------------------------------------------------- /typescript/v3.5.1/src/omitType/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.5.1/src/omitType/index.ts -------------------------------------------------------------------------------- /typescript/v3.5.1/src/smartSelectAPI/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.5.1/src/smartSelectAPI/basic.ts -------------------------------------------------------------------------------- /typescript/v3.5.1/src/smarterUnionTypeChecking/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.5.1/src/smarterUnionTypeChecking/basic.ts -------------------------------------------------------------------------------- /typescript/v3.5.1/src/smarterUnionTypeChecking/other.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.5.1/src/smarterUnionTypeChecking/other.ts -------------------------------------------------------------------------------- /typescript/v3.5.1/src/sortedCompletions/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.5.1/src/sortedCompletions/basic.ts -------------------------------------------------------------------------------- /typescript/v3.5.1/src/sortedCompletions/winz3.ts: -------------------------------------------------------------------------------- 1 | export var winz4 = true; 2 | -------------------------------------------------------------------------------- /typescript/v3.5.1/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.5.1/tsconfig.json -------------------------------------------------------------------------------- /typescript/v3.6.3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.6.3/.gitignore -------------------------------------------------------------------------------- /typescript/v3.6.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.6.3/README.md -------------------------------------------------------------------------------- /typescript/v3.6.3/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.6.3/package-lock.json -------------------------------------------------------------------------------- /typescript/v3.6.3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.6.3/package.json -------------------------------------------------------------------------------- /typescript/v3.6.3/src/autoImportsModuleStyle/basic.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typescript/v3.6.3/src/autoImportsModuleStyle/hello1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.6.3/src/autoImportsModuleStyle/hello1.ts -------------------------------------------------------------------------------- /typescript/v3.6.3/src/autoImportsModuleStyle/hello2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.6.3/src/autoImportsModuleStyle/hello2.ts -------------------------------------------------------------------------------- /typescript/v3.6.3/src/improveUXAroundPromises/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.6.3/src/improveUXAroundPromises/basic.ts -------------------------------------------------------------------------------- /typescript/v3.6.3/src/keywordWithEscape/basic-ignore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.6.3/src/keywordWithEscape/basic-ignore.ts -------------------------------------------------------------------------------- /typescript/v3.6.3/src/moreAccurateArraySpread/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.6.3/src/moreAccurateArraySpread/basic.ts -------------------------------------------------------------------------------- /typescript/v3.6.3/src/moreAccurateArraySpread/check.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.6.3/src/moreAccurateArraySpread/check.ts -------------------------------------------------------------------------------- /typescript/v3.6.3/src/semicolonAwareCodeEdits/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.6.3/src/semicolonAwareCodeEdits/basic.ts -------------------------------------------------------------------------------- /typescript/v3.6.3/src/stricterGenerators/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.6.3/src/stricterGenerators/async.ts -------------------------------------------------------------------------------- /typescript/v3.6.3/src/stricterGenerators/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.6.3/src/stricterGenerators/basic.ts -------------------------------------------------------------------------------- /typescript/v3.6.3/src/stricterGenerators/nextTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.6.3/src/stricterGenerators/nextTypes.ts -------------------------------------------------------------------------------- /typescript/v3.6.3/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.6.3/tsconfig.json -------------------------------------------------------------------------------- /typescript/v3.7.1-rc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.1-rc/.gitignore -------------------------------------------------------------------------------- /typescript/v3.7.1-rc/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.1-rc/.vscode/settings.json -------------------------------------------------------------------------------- /typescript/v3.7.1-rc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.1-rc/README.md -------------------------------------------------------------------------------- /typescript/v3.7.1-rc/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.1-rc/package-lock.json -------------------------------------------------------------------------------- /typescript/v3.7.1-rc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.1-rc/package.json -------------------------------------------------------------------------------- /typescript/v3.7.1-rc/project-refs/.gitignore: -------------------------------------------------------------------------------- 1 | *.d.ts 2 | *.js 3 | -------------------------------------------------------------------------------- /typescript/v3.7.1-rc/project-refs/client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.1-rc/project-refs/client/package-lock.json -------------------------------------------------------------------------------- /typescript/v3.7.1-rc/project-refs/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.1-rc/project-refs/client/package.json -------------------------------------------------------------------------------- /typescript/v3.7.1-rc/project-refs/client/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.1-rc/project-refs/client/src/index.ts -------------------------------------------------------------------------------- /typescript/v3.7.1-rc/project-refs/client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.1-rc/project-refs/client/tsconfig.json -------------------------------------------------------------------------------- /typescript/v3.7.1-rc/project-refs/core/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.1-rc/project-refs/core/package-lock.json -------------------------------------------------------------------------------- /typescript/v3.7.1-rc/project-refs/core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.1-rc/project-refs/core/package.json -------------------------------------------------------------------------------- /typescript/v3.7.1-rc/project-refs/core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.1-rc/project-refs/core/src/index.ts -------------------------------------------------------------------------------- /typescript/v3.7.1-rc/project-refs/core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.1-rc/project-refs/core/tsconfig.json -------------------------------------------------------------------------------- /typescript/v3.7.1-rc/project-refs/server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.1-rc/project-refs/server/package-lock.json -------------------------------------------------------------------------------- /typescript/v3.7.1-rc/project-refs/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.1-rc/project-refs/server/package.json -------------------------------------------------------------------------------- /typescript/v3.7.1-rc/project-refs/server/src/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typescript/v3.7.1-rc/project-refs/server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.1-rc/project-refs/server/tsconfig.json -------------------------------------------------------------------------------- /typescript/v3.7.1-rc/project-refs/shared/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.1-rc/project-refs/shared/package-lock.json -------------------------------------------------------------------------------- /typescript/v3.7.1-rc/project-refs/shared/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.1-rc/project-refs/shared/package.json -------------------------------------------------------------------------------- /typescript/v3.7.1-rc/project-refs/shared/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.1-rc/project-refs/shared/src/index.ts -------------------------------------------------------------------------------- /typescript/v3.7.1-rc/project-refs/shared/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.1-rc/project-refs/shared/tsconfig.json -------------------------------------------------------------------------------- /typescript/v3.7.1-rc/src/assertionFunctions/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.1-rc/src/assertionFunctions/basic.ts -------------------------------------------------------------------------------- /typescript/v3.7.1-rc/src/autoInsertAwait/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.1-rc/src/autoInsertAwait/basic.ts -------------------------------------------------------------------------------- /typescript/v3.7.1-rc/src/declarationAndAllowJS/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.1-rc/src/declarationAndAllowJS/basic.js -------------------------------------------------------------------------------- /typescript/v3.7.1-rc/src/neverReturningFunction/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.1-rc/src/neverReturningFunction/basic.ts -------------------------------------------------------------------------------- /typescript/v3.7.1-rc/src/nullishCoalescing/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.1-rc/src/nullishCoalescing/basic.ts -------------------------------------------------------------------------------- /typescript/v3.7.1-rc/src/optionalChaining/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.1-rc/src/optionalChaining/basic.ts -------------------------------------------------------------------------------- /typescript/v3.7.1-rc/src/optionalChaining/shortCircuit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.1-rc/src/optionalChaining/shortCircuit.ts -------------------------------------------------------------------------------- /typescript/v3.7.1-rc/src/recursiveTypeAliases/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.1-rc/src/recursiveTypeAliases/basic.ts -------------------------------------------------------------------------------- /typescript/v3.7.1-rc/src/semicolonFormatterOption/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.1-rc/src/semicolonFormatterOption/basic.ts -------------------------------------------------------------------------------- /typescript/v3.7.1-rc/src/tsNocheckPragma/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.1-rc/src/tsNocheckPragma/basic.ts -------------------------------------------------------------------------------- /typescript/v3.7.1-rc/src/uncalledFunctionChecks/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.1-rc/src/uncalledFunctionChecks/basic.ts -------------------------------------------------------------------------------- /typescript/v3.7.1-rc/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.1-rc/tsconfig.json -------------------------------------------------------------------------------- /typescript/v3.7.2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.2/.gitignore -------------------------------------------------------------------------------- /typescript/v3.7.2/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.2/.vscode/settings.json -------------------------------------------------------------------------------- /typescript/v3.7.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.2/README.md -------------------------------------------------------------------------------- /typescript/v3.7.2/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.2/package-lock.json -------------------------------------------------------------------------------- /typescript/v3.7.2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.2/package.json -------------------------------------------------------------------------------- /typescript/v3.7.2/project-refs/.gitignore: -------------------------------------------------------------------------------- 1 | *.d.ts 2 | *.js 3 | -------------------------------------------------------------------------------- /typescript/v3.7.2/project-refs/client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.2/project-refs/client/package-lock.json -------------------------------------------------------------------------------- /typescript/v3.7.2/project-refs/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.2/project-refs/client/package.json -------------------------------------------------------------------------------- /typescript/v3.7.2/project-refs/client/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.2/project-refs/client/src/index.ts -------------------------------------------------------------------------------- /typescript/v3.7.2/project-refs/client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.2/project-refs/client/tsconfig.json -------------------------------------------------------------------------------- /typescript/v3.7.2/project-refs/core/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.2/project-refs/core/package-lock.json -------------------------------------------------------------------------------- /typescript/v3.7.2/project-refs/core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.2/project-refs/core/package.json -------------------------------------------------------------------------------- /typescript/v3.7.2/project-refs/core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.2/project-refs/core/src/index.ts -------------------------------------------------------------------------------- /typescript/v3.7.2/project-refs/core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.2/project-refs/core/tsconfig.json -------------------------------------------------------------------------------- /typescript/v3.7.2/project-refs/server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.2/project-refs/server/package-lock.json -------------------------------------------------------------------------------- /typescript/v3.7.2/project-refs/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.2/project-refs/server/package.json -------------------------------------------------------------------------------- /typescript/v3.7.2/project-refs/server/src/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typescript/v3.7.2/project-refs/server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.2/project-refs/server/tsconfig.json -------------------------------------------------------------------------------- /typescript/v3.7.2/project-refs/shared/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.2/project-refs/shared/package-lock.json -------------------------------------------------------------------------------- /typescript/v3.7.2/project-refs/shared/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.2/project-refs/shared/package.json -------------------------------------------------------------------------------- /typescript/v3.7.2/project-refs/shared/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.2/project-refs/shared/src/index.ts -------------------------------------------------------------------------------- /typescript/v3.7.2/project-refs/shared/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.2/project-refs/shared/tsconfig.json -------------------------------------------------------------------------------- /typescript/v3.7.2/src/assertionFunctions/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.2/src/assertionFunctions/basic.ts -------------------------------------------------------------------------------- /typescript/v3.7.2/src/autoInsertAwait/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.2/src/autoInsertAwait/basic.ts -------------------------------------------------------------------------------- /typescript/v3.7.2/src/flatterErrorReporting/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.2/src/flatterErrorReporting/basic.ts -------------------------------------------------------------------------------- /typescript/v3.7.2/src/neverReturningFunction/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.2/src/neverReturningFunction/basic.ts -------------------------------------------------------------------------------- /typescript/v3.7.2/src/nullishCoalescing/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.2/src/nullishCoalescing/basic.ts -------------------------------------------------------------------------------- /typescript/v3.7.2/src/optionalChaining/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.2/src/optionalChaining/basic.ts -------------------------------------------------------------------------------- /typescript/v3.7.2/src/optionalChaining/shortCircuit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.2/src/optionalChaining/shortCircuit.ts -------------------------------------------------------------------------------- /typescript/v3.7.2/src/recursiveTypeAliases/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.2/src/recursiveTypeAliases/basic.ts -------------------------------------------------------------------------------- /typescript/v3.7.2/src/semicolonFormatterOption/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.2/src/semicolonFormatterOption/basic.ts -------------------------------------------------------------------------------- /typescript/v3.7.2/src/tsNocheckPragma/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.2/src/tsNocheckPragma/basic.ts -------------------------------------------------------------------------------- /typescript/v3.7.2/src/uncalledFunctionChecks/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.2/src/uncalledFunctionChecks/basic.ts -------------------------------------------------------------------------------- /typescript/v3.7.2/src/useDefineForClassFields/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.2/src/useDefineForClassFields/basic.ts -------------------------------------------------------------------------------- /typescript/v3.7.2/src/useDefineForClassFields/inherit1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.2/src/useDefineForClassFields/inherit1.ts -------------------------------------------------------------------------------- /typescript/v3.7.2/src/useDefineForClassFields/inherit2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.2/src/useDefineForClassFields/inherit2.ts -------------------------------------------------------------------------------- /typescript/v3.7.2/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.7.2/tsconfig.json -------------------------------------------------------------------------------- /typescript/v3.8.1-rc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.8.1-rc/.gitignore -------------------------------------------------------------------------------- /typescript/v3.8.1-rc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.8.1-rc/README.md -------------------------------------------------------------------------------- /typescript/v3.8.1-rc/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.8.1-rc/package-lock.json -------------------------------------------------------------------------------- /typescript/v3.8.1-rc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.8.1-rc/package.json -------------------------------------------------------------------------------- /typescript/v3.8.1-rc/src/exportAllAs/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.8.1-rc/src/exportAllAs/basic.ts -------------------------------------------------------------------------------- /typescript/v3.8.1-rc/src/exportAllAs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.8.1-rc/src/exportAllAs/index.ts -------------------------------------------------------------------------------- /typescript/v3.8.1-rc/src/exportAllAs/libs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.8.1-rc/src/exportAllAs/libs.ts -------------------------------------------------------------------------------- /typescript/v3.8.1-rc/src/jsdocPropertyModifiers/.gitignore: -------------------------------------------------------------------------------- 1 | !*.js 2 | -------------------------------------------------------------------------------- /typescript/v3.8.1-rc/src/jsdocPropertyModifiers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.8.1-rc/src/jsdocPropertyModifiers/index.js -------------------------------------------------------------------------------- /typescript/v3.8.1-rc/src/privateFields/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.8.1-rc/src/privateFields/basic.ts -------------------------------------------------------------------------------- /typescript/v3.8.1-rc/src/topLevelAwait/basic-ignore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.8.1-rc/src/topLevelAwait/basic-ignore.ts -------------------------------------------------------------------------------- /typescript/v3.8.1-rc/src/typeOnlyImportsAndExports/basic/exports.ts: -------------------------------------------------------------------------------- 1 | export interface Options { 2 | name: string; 3 | } 4 | -------------------------------------------------------------------------------- /typescript/v3.8.1-rc/src/typeOnlyImportsAndExports/importWithoutValues/exports.ts: -------------------------------------------------------------------------------- 1 | 2 | export const A = "a"; 3 | -------------------------------------------------------------------------------- /typescript/v3.8.1-rc/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.8.1-rc/tsconfig.json -------------------------------------------------------------------------------- /typescript/v3.9.2/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | 3 | dist/ 4 | -------------------------------------------------------------------------------- /typescript/v3.9.2/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.9.2/.vscode/settings.json -------------------------------------------------------------------------------- /typescript/v3.9.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.9.2/README.md -------------------------------------------------------------------------------- /typescript/v3.9.2/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.9.2/package-lock.json -------------------------------------------------------------------------------- /typescript/v3.9.2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.9.2/package.json -------------------------------------------------------------------------------- /typescript/v3.9.2/src/codeActionsPreserveNewlines/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.9.2/src/codeActionsPreserveNewlines/basic.ts -------------------------------------------------------------------------------- /typescript/v3.9.2/src/commonJSAutoImports/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.9.2/src/commonJSAutoImports/basic.js -------------------------------------------------------------------------------- /typescript/v3.9.2/src/exportAllIsAlwaysRetained/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.9.2/src/exportAllIsAlwaysRetained/basic.ts -------------------------------------------------------------------------------- /typescript/v3.9.2/src/exportAllIsAlwaysRetained/empty.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /typescript/v3.9.2/src/exportsAreHoistedAndInitiallyAssigned/foo.ts: -------------------------------------------------------------------------------- 1 | export let nameFromFoo = true; 2 | -------------------------------------------------------------------------------- /typescript/v3.9.2/src/promiseAllInference/basic-ignore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.9.2/src/promiseAllInference/basic-ignore.ts -------------------------------------------------------------------------------- /typescript/v3.9.2/src/tsExpectError/basic-ignore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.9.2/src/tsExpectError/basic-ignore.ts -------------------------------------------------------------------------------- /typescript/v3.9.2/src/whatAboutTheAwaitedType/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.9.2/src/whatAboutTheAwaitedType/basic.ts -------------------------------------------------------------------------------- /typescript/v3.9.2/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/typescript/v3.9.2/tsconfig.json -------------------------------------------------------------------------------- /unity/CoinPusher/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/.gitignore -------------------------------------------------------------------------------- /unity/CoinPusher/Assets/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/Assets/Materials.meta -------------------------------------------------------------------------------- /unity/CoinPusher/Assets/Materials/ArrowMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/Assets/Materials/ArrowMaterial.mat -------------------------------------------------------------------------------- /unity/CoinPusher/Assets/Materials/ArrowMaterial.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/Assets/Materials/ArrowMaterial.mat.meta -------------------------------------------------------------------------------- /unity/CoinPusher/Assets/Materials/CoinMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/Assets/Materials/CoinMaterial.mat -------------------------------------------------------------------------------- /unity/CoinPusher/Assets/Materials/CoinMaterial.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/Assets/Materials/CoinMaterial.mat.meta -------------------------------------------------------------------------------- /unity/CoinPusher/Assets/Materials/CoinSpawnerMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/Assets/Materials/CoinSpawnerMaterial.mat -------------------------------------------------------------------------------- /unity/CoinPusher/Assets/Materials/GameBodyMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/Assets/Materials/GameBodyMaterial.mat -------------------------------------------------------------------------------- /unity/CoinPusher/Assets/Models.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/Assets/Models.meta -------------------------------------------------------------------------------- /unity/CoinPusher/Assets/Models/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/Assets/Models/Materials.meta -------------------------------------------------------------------------------- /unity/CoinPusher/Assets/Models/Materials/vvakame.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/Assets/Models/Materials/vvakame.mat -------------------------------------------------------------------------------- /unity/CoinPusher/Assets/Models/Materials/vvakame.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/Assets/Models/Materials/vvakame.mat.meta -------------------------------------------------------------------------------- /unity/CoinPusher/Assets/Models/TrianglerPyramid.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/Assets/Models/TrianglerPyramid.blend -------------------------------------------------------------------------------- /unity/CoinPusher/Assets/Models/TrianglerPyramid.blend.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/Assets/Models/TrianglerPyramid.blend.meta -------------------------------------------------------------------------------- /unity/CoinPusher/Assets/Models/vvakame.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/Assets/Models/vvakame.blend -------------------------------------------------------------------------------- /unity/CoinPusher/Assets/Models/vvakame.blend.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/Assets/Models/vvakame.blend.meta -------------------------------------------------------------------------------- /unity/CoinPusher/Assets/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/Assets/Prefabs.meta -------------------------------------------------------------------------------- /unity/CoinPusher/Assets/Prefabs/Coin.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/Assets/Prefabs/Coin.prefab -------------------------------------------------------------------------------- /unity/CoinPusher/Assets/Prefabs/Coin.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/Assets/Prefabs/Coin.prefab.meta -------------------------------------------------------------------------------- /unity/CoinPusher/Assets/Prefabs/CoinRemover.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/Assets/Prefabs/CoinRemover.prefab -------------------------------------------------------------------------------- /unity/CoinPusher/Assets/Prefabs/CoinRemover.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/Assets/Prefabs/CoinRemover.prefab.meta -------------------------------------------------------------------------------- /unity/CoinPusher/Assets/Prefabs/CoinSpawner.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/Assets/Prefabs/CoinSpawner.prefab -------------------------------------------------------------------------------- /unity/CoinPusher/Assets/Prefabs/CoinSpawner.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/Assets/Prefabs/CoinSpawner.prefab.meta -------------------------------------------------------------------------------- /unity/CoinPusher/Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/Assets/Scenes.meta -------------------------------------------------------------------------------- /unity/CoinPusher/Assets/Scenes/CoinPusher.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/Assets/Scenes/CoinPusher.unity -------------------------------------------------------------------------------- /unity/CoinPusher/Assets/Scenes/CoinPusher.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/Assets/Scenes/CoinPusher.unity.meta -------------------------------------------------------------------------------- /unity/CoinPusher/Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/Assets/Scripts.meta -------------------------------------------------------------------------------- /unity/CoinPusher/Assets/Scripts/CoinRemoverController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/Assets/Scripts/CoinRemoverController.cs -------------------------------------------------------------------------------- /unity/CoinPusher/Assets/Scripts/CoinShooterController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/Assets/Scripts/CoinShooterController.cs -------------------------------------------------------------------------------- /unity/CoinPusher/Assets/Scripts/CoinSpawnerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/Assets/Scripts/CoinSpawnerController.cs -------------------------------------------------------------------------------- /unity/CoinPusher/Assets/Scripts/PusherController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/Assets/Scripts/PusherController.cs -------------------------------------------------------------------------------- /unity/CoinPusher/Assets/Scripts/PusherController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/Assets/Scripts/PusherController.cs.meta -------------------------------------------------------------------------------- /unity/CoinPusher/Assets/Scripts/Rotator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/Assets/Scripts/Rotator.cs -------------------------------------------------------------------------------- /unity/CoinPusher/Assets/Scripts/Rotator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/Assets/Scripts/Rotator.cs.meta -------------------------------------------------------------------------------- /unity/CoinPusher/Assets/Scripts/Score.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/Assets/Scripts/Score.cs -------------------------------------------------------------------------------- /unity/CoinPusher/Assets/Scripts/Score.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/Assets/Scripts/Score.cs.meta -------------------------------------------------------------------------------- /unity/CoinPusher/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /unity/CoinPusher/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /unity/CoinPusher/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /unity/CoinPusher/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /unity/CoinPusher/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /unity/CoinPusher/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /unity/CoinPusher/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /unity/CoinPusher/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /unity/CoinPusher/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /unity/CoinPusher/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /unity/CoinPusher/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /unity/CoinPusher/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /unity/CoinPusher/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /unity/CoinPusher/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /unity/CoinPusher/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /unity/CoinPusher/ProjectSettings/UnityAdsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/CoinPusher/ProjectSettings/UnityAdsSettings.asset -------------------------------------------------------------------------------- /unity/leapmotion/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/leapmotion/.gitignore -------------------------------------------------------------------------------- /unity/leapmotion/Assets/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/leapmotion/Assets/Materials.meta -------------------------------------------------------------------------------- /unity/leapmotion/Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/leapmotion/Assets/Scripts.meta -------------------------------------------------------------------------------- /unity/leapmotion/Assets/Scripts/MarkerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/leapmotion/Assets/Scripts/MarkerController.cs -------------------------------------------------------------------------------- /unity/leapmotion/Assets/Scripts/MarkerController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/leapmotion/Assets/Scripts/MarkerController.cs.meta -------------------------------------------------------------------------------- /unity/leapmotion/Assets/_Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/leapmotion/Assets/_Scenes.meta -------------------------------------------------------------------------------- /unity/leapmotion/Assets/_Scenes/Sample.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/leapmotion/Assets/_Scenes/Sample.unity -------------------------------------------------------------------------------- /unity/leapmotion/Assets/_Scenes/Sample.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/leapmotion/Assets/_Scenes/Sample.unity.meta -------------------------------------------------------------------------------- /unity/leapmotion/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/leapmotion/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /unity/leapmotion/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/leapmotion/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /unity/leapmotion/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/leapmotion/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /unity/leapmotion/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/leapmotion/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /unity/leapmotion/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/leapmotion/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /unity/leapmotion/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/leapmotion/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /unity/leapmotion/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/leapmotion/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /unity/leapmotion/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/leapmotion/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /unity/leapmotion/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/leapmotion/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /unity/leapmotion/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/leapmotion/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /unity/leapmotion/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/leapmotion/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /unity/leapmotion/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/leapmotion/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /unity/leapmotion/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/leapmotion/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /unity/leapmotion/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/leapmotion/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /unity/leapmotion/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/leapmotion/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /unity/leapmotion/ProjectSettings/UnityAdsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/leapmotion/ProjectSettings/UnityAdsSettings.asset -------------------------------------------------------------------------------- /unity/leapmotion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/leapmotion/README.md -------------------------------------------------------------------------------- /unity/roll-a-ball/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/roll-a-ball/.gitignore -------------------------------------------------------------------------------- /unity/roll-a-ball/Assets/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/roll-a-ball/Assets/Materials.meta -------------------------------------------------------------------------------- /unity/roll-a-ball/Assets/Materials/Background.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/roll-a-ball/Assets/Materials/Background.mat -------------------------------------------------------------------------------- /unity/roll-a-ball/Assets/Materials/Background.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/roll-a-ball/Assets/Materials/Background.mat.meta -------------------------------------------------------------------------------- /unity/roll-a-ball/Assets/Materials/Pick Up.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/roll-a-ball/Assets/Materials/Pick Up.mat -------------------------------------------------------------------------------- /unity/roll-a-ball/Assets/Materials/Pick Up.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/roll-a-ball/Assets/Materials/Pick Up.mat.meta -------------------------------------------------------------------------------- /unity/roll-a-ball/Assets/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/roll-a-ball/Assets/Prefabs.meta -------------------------------------------------------------------------------- /unity/roll-a-ball/Assets/Prefabs/Pick Up.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/roll-a-ball/Assets/Prefabs/Pick Up.prefab -------------------------------------------------------------------------------- /unity/roll-a-ball/Assets/Prefabs/Pick Up.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/roll-a-ball/Assets/Prefabs/Pick Up.prefab.meta -------------------------------------------------------------------------------- /unity/roll-a-ball/Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/roll-a-ball/Assets/Scripts.meta -------------------------------------------------------------------------------- /unity/roll-a-ball/Assets/Scripts/CameraController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/roll-a-ball/Assets/Scripts/CameraController.cs -------------------------------------------------------------------------------- /unity/roll-a-ball/Assets/Scripts/CameraController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/roll-a-ball/Assets/Scripts/CameraController.cs.meta -------------------------------------------------------------------------------- /unity/roll-a-ball/Assets/Scripts/PlayerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/roll-a-ball/Assets/Scripts/PlayerController.cs -------------------------------------------------------------------------------- /unity/roll-a-ball/Assets/Scripts/PlayerController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/roll-a-ball/Assets/Scripts/PlayerController.cs.meta -------------------------------------------------------------------------------- /unity/roll-a-ball/Assets/Scripts/Rotator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/roll-a-ball/Assets/Scripts/Rotator.cs -------------------------------------------------------------------------------- /unity/roll-a-ball/Assets/Scripts/Rotator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/roll-a-ball/Assets/Scripts/Rotator.cs.meta -------------------------------------------------------------------------------- /unity/roll-a-ball/Assets/_Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/roll-a-ball/Assets/_Scenes.meta -------------------------------------------------------------------------------- /unity/roll-a-ball/Assets/_Scenes/MiniGame.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/roll-a-ball/Assets/_Scenes/MiniGame.unity -------------------------------------------------------------------------------- /unity/roll-a-ball/Assets/_Scenes/MiniGame.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/roll-a-ball/Assets/_Scenes/MiniGame.unity.meta -------------------------------------------------------------------------------- /unity/roll-a-ball/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/roll-a-ball/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /unity/roll-a-ball/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/roll-a-ball/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /unity/roll-a-ball/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/roll-a-ball/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /unity/roll-a-ball/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/roll-a-ball/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /unity/roll-a-ball/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/roll-a-ball/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /unity/roll-a-ball/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/roll-a-ball/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /unity/roll-a-ball/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/roll-a-ball/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /unity/roll-a-ball/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/roll-a-ball/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /unity/roll-a-ball/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/roll-a-ball/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /unity/roll-a-ball/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/roll-a-ball/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /unity/roll-a-ball/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/roll-a-ball/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /unity/roll-a-ball/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/roll-a-ball/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /unity/roll-a-ball/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/roll-a-ball/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /unity/roll-a-ball/ProjectSettings/UnityAdsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/roll-a-ball/ProjectSettings/UnityAdsSettings.asset -------------------------------------------------------------------------------- /unity/webcamtexture/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/webcamtexture/.gitignore -------------------------------------------------------------------------------- /unity/webcamtexture/Assets/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/webcamtexture/Assets/Materials.meta -------------------------------------------------------------------------------- /unity/webcamtexture/Assets/Materials/GamePadMock.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/webcamtexture/Assets/Materials/GamePadMock.mat -------------------------------------------------------------------------------- /unity/webcamtexture/Assets/Materials/GamePadMock.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/webcamtexture/Assets/Materials/GamePadMock.mat.meta -------------------------------------------------------------------------------- /unity/webcamtexture/Assets/Materials/GamePadMock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/webcamtexture/Assets/Materials/GamePadMock.png -------------------------------------------------------------------------------- /unity/webcamtexture/Assets/Materials/GamePadMock.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/webcamtexture/Assets/Materials/GamePadMock.png.meta -------------------------------------------------------------------------------- /unity/webcamtexture/Assets/Materials/WebCamTexture.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/webcamtexture/Assets/Materials/WebCamTexture.mat -------------------------------------------------------------------------------- /unity/webcamtexture/Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/webcamtexture/Assets/Scripts.meta -------------------------------------------------------------------------------- /unity/webcamtexture/Assets/Scripts/PadShakeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/webcamtexture/Assets/Scripts/PadShakeController.cs -------------------------------------------------------------------------------- /unity/webcamtexture/Assets/Scripts/WebCamScreenTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/webcamtexture/Assets/Scripts/WebCamScreenTexture.cs -------------------------------------------------------------------------------- /unity/webcamtexture/Assets/_Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/webcamtexture/Assets/_Scenes.meta -------------------------------------------------------------------------------- /unity/webcamtexture/Assets/_Scenes/WebCam.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/webcamtexture/Assets/_Scenes/WebCam.unity -------------------------------------------------------------------------------- /unity/webcamtexture/Assets/_Scenes/WebCam.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/webcamtexture/Assets/_Scenes/WebCam.unity.meta -------------------------------------------------------------------------------- /unity/webcamtexture/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/webcamtexture/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /unity/webcamtexture/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/webcamtexture/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /unity/webcamtexture/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/webcamtexture/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /unity/webcamtexture/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/webcamtexture/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /unity/webcamtexture/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/webcamtexture/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /unity/webcamtexture/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/webcamtexture/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /unity/webcamtexture/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/webcamtexture/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /unity/webcamtexture/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/webcamtexture/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /unity/webcamtexture/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/webcamtexture/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /unity/webcamtexture/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/webcamtexture/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /unity/webcamtexture/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/webcamtexture/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /unity/webcamtexture/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/webcamtexture/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /unity/webcamtexture/ProjectSettings/UnityAdsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/webcamtexture/ProjectSettings/UnityAdsSettings.asset -------------------------------------------------------------------------------- /unity/webcamtexture/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/unity/webcamtexture/README.md -------------------------------------------------------------------------------- /yaml/edit-with-schemas/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/yaml/edit-with-schemas/.vscode/extensions.json -------------------------------------------------------------------------------- /yaml/edit-with-schemas/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/yaml/edit-with-schemas/.vscode/settings.json -------------------------------------------------------------------------------- /yaml/edit-with-schemas/coffee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/yaml/edit-with-schemas/coffee.json -------------------------------------------------------------------------------- /yaml/edit-with-schemas/coffee.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvakame/til/HEAD/yaml/edit-with-schemas/coffee.yaml --------------------------------------------------------------------------------