2018-01-01から1年間の記事一覧
qiita.com この記事は Qiita Node.js Advent Calendar 2018 14日目の記事となります。 今回は Node.js のWorker Threadsに関してまとめます。 本記事では、前提としてNode.js v10.14.1 における内容をまとめています。 worker_threadはexperimentalな機能な…
TypeScript interface I'm a newbie of TypeScript. I was confused by an error for the type-checking of interface. This is just a memorandum for understanding the mechanism of TypeScript I created the SquareConfig interface same as the TypeSc…
Preconditions dependencies for npm "dependencies": { "@webpack-cli/init": "^0.1.2", "vue": "^2.5.17", "webpack": "^4.20.2" }, "devDependencies": { "@babel/core": "^7.1.2", "@babel/preset-env": "^7.1.0", "babel-loader": "^8.0.4", "css-loade…
In node.js script, without attaching any error handlers to the Promise within a event loop, "unhandledRejection" is emitted. The error log is as follows. (node:57974) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This erro…
preconditions golang: 1.6 failed to get golang.org/x/tools/cmd/oracle When I try to "go get golang.org/x/tools/cmd/oracle" in my golang project, it occures an error as wrote down below. go get golang.org/x/tools/cmd/oracle package golang.o…
I'm studying Rust and trying to write Rust code using closure. I found some confusing error about Type Inference of Rust. This post is just a memorandum of understanding for mechanism of Rust. fn main() { // closure // argument x is set wi…
Merged 2 PRs. I found and fixed small typo and bug of the sample codes in the documentation of Node.js. github.com github.com Both of them are landed on 10.2.0 node/CHANGELOG_V10.md at master · nodejs/node · GitHub
When I write Rust code as below, it occurs error. I tried to print two same String by copying memory. fn main() { let s1 = String::from("Hello"); let s2 = s1; println!("{}, {}", s1, s2); } error[E0382]: use of moved value: `s1` --> src/mai…
Recently, Node.js v8.11.1 was released. From this version, minimum compiler requirement(gcc) for Node.js had been updated to 4.9.4. https://github.com/nodejs/node/blob/master/doc/changelogs/CHANGELOG_V8.md#8.11.1 In the centOS 6.5 server, …
After installing centos-release-SCL yum package in CentOS 6.5 server, installing other yum package was failed. Error message is same as below. $ sudo yum install libcurl http://mirror.centos.org/centos/6/SCL/x86_64/repodata/repomd.xml: [Er…
My PR was merged to mongoDB. [SERVER-32809] Fix typo in config_server_test_fixture.cpp - MongoDB
前提 macOS 10.11.6 kubectl v1.9.3 minikube v0.25.0 発生内容 ローカル環境でminikubeにより一度作った vmを削除後、 minikube start --vm-driver=virtualbox を実行すると以下のエラーがでる [Error starting host: Error getting state for host: machin…
概要 前記事(http://kakts-tec.hatenablog.com/entry/2018/02/12/220716)に引き続き, Docker公式ドキュメントのPart4 Swarmsの内容を整理します. Part4 Swarms Introduction Part3ではPart2で作成したアプリケーションを取り上げ,Serviceを用いてproduction…
概要 前記事 Docker containerまとめ - kakts-log に引き続き Docker公式ドキュメントのPart3 Servicesの内容を整理します. Part3 Services Introduction パート3では、アプリケーションのスケールを行い,ロードバランシングを有効にさせます. これを行うた…
概要 前記事に引き続き Docker公式ドキュメントのPart2の内容を整理 Part2 containers Introduction Dockerの方式でアプリをビルドしていく. アプリケーションのヒエラルキーの下層部分であるコンテナから始めます. コンテナの上層はserviceと呼ばれ、produc…
概要 DockerのConceptまわりを再度整理するために 公式ドキュメントのget-started part1の内容をメモ docs.docker.com 1: Docker Concept Docker: アプリケーションを開発・デプロイ・コンテナとして起動するプラットフォーム linuxコンテナをアプリケーショ…
Kubernetes コンセプト Kubernetesのコンセプトを理解するために公式ドキュメントを読んでざっくり整理しました。 kubernetes.io overview kubernetesを利用するためには kubernetes apiを使ってクラスタを意図する構成にさせる。 たとえばどのようなアプリ…