1.この記事の立ち位置#自分がいつも調べていること、忘れがちな Tips や小ネタを列挙していく。そのため、網羅性は重視しない。 というのも、なにか調べていていろいろ読み漁った挙げ句、1周回って行き着くところは GitHub Actions の公式ドキュメントであり、たとえば Workflow の書き方は以下のページをよく開いている…
GitHub – vmware/splinterdb: High Performance Embedded Key-Value Store
What is SplinterDB? SplinterDB is a key-value store designed for high performance on fast storage devices. See Alexander Conway, Abhishek Gupta, Vijay Chidambaram, Martin Farach-Colton, Richard P. Spillane, Amy Tai, Rob Johnson: SplinterDB: Closing the Bandwidth Gap for NVMe Key-Value Stores. USE…
GitHub – neondatabase/neon: The serverless open source alternative to AWS Aurora Postgres.
Neon Neon is a serverless open source alternative to AWS Aurora Postgres. It separates storage and compute and substitutes PostgreSQL storage layer by redistributing data across a cluster of nodes. The project used to be called "Zenith". Many of the commands and code comments still refer to "zeni…
感謝され、人に好かれる指摘の仕方
この記事に書いてあること 指摘の仕方に気を付ける事の利点 オススメの指摘方法 ※何かを強要したり、コミュニケーションの仕方を責めるものでは無いです。Tip 集みたいなものだと思って気楽に読んで下さい。 導入 社内外で関わる方(特にエンジニアの方)に対して、「指摘の仕方で損をしているな〜」と思う事が多くあり…
なぜ注目? Windows向けのお勧めフリーソフトをGitHub上で紹介する海外のリンク集【やじうまWatch】
なぜ注目? Windows向けのお勧めフリーソフトをGitHub上で紹介する海外のリンク集【やじうまWatch】
Improved REST API documentation | The GitHub Blog
We’re excited to announce some big improvements to our REST API documentation. We know developers rely on this documentation to integrate with GitHub, and we are committed to making it trustworthy, easy to find, and easy to use. Prior to generating our REST API documentation directly from our Ope…
「GitHub」のMarkdownドキュメントで待望の数式表示がサポート/人気の「MathJax」ライブラリでレンダリング
「GitHub」のMarkdownドキュメントで待望の数式表示がサポート/人気の「MathJax」ライブラリでレンダリング
GitHub Actions入門 ── ワークフローの基本的な構造からOIDCによる外部サービス認証まで – エンジニアHub|Webエンジニアのキャリアを考える!
GitHub Actions入門 ── ワークフローの基本的な構造からOICDによる外部サービス認証まで GitHubが公式に提供するGitHub Actionsは、後発ながらよく使われるワークフローエンジンとなっています。本記事では、藤吾郎(gfx)さんが、典型的なCI/CDのユースケースに即したワークフローの設定と管理について解説するとともに…
Math support in Markdown | The GitHub Blog
Mathematical expressions are key to information sharing amongst engineers, scientists, data scientists and mathematicians. We are pleased to announce that math expressions can now be rendered natively in Markdown on GitHub. Support for displaying math expressions has been a highly requested featu…
GitHub ActionsにおけるStep/Job/Workflow設計論
この記事について GitHub Actionsには、以下3つの実行単位が存在します。 Workflow Job Step パイプラインを組む中で出てくる複数個の処理を、1つの実行単位でまとめてしまうか、それとも分割するのかというのは悩むポイントかと思います。 一つのstepのrunフィールドにコマンドを詰め込む?それともstepを分けた方がい…