並び順

ブックマーク数

期間指定

  • から
  • まで

41 - 80 件 / 110件

新着順 人気順

handbookの検索結果41 - 80 件 / 110件

  • GitHub - raylene/eng-handbook: A developer's guide to management: an open-sourced handbook for leading software engineering teams.

    You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

      GitHub - raylene/eng-handbook: A developer's guide to management: an open-sourced handbook for leading software engineering teams.
    • JavaScript REST API Handbook

      「3時間でNode.jsでREST APIを作る」ためのチュートリアルブックです。気軽に手にとってもらうために分量を少なめにしました。初心者から上級者まで学びのある内容になっています。チートシートとしても活用できます。

        JavaScript REST API Handbook
      • データ基盤入門 | Wantedly Engineering Handbook

        経営においてデータを使って判断することは必要不可欠であり、その正確性とスピードがビジネスの勝敗を決めます。 Wantedly のデータ基盤の存在意義の1つは、そのビジネスにおける意思決定の正確性とスピードをサポートすることです。

          データ基盤入門 | Wantedly Engineering Handbook
        • TypeScript: Handbook - Basic Types

          Introduction For programs to be useful, we need to be able to work with some of the simplest units of data: numbers, strings, structures, boolean values, and the like. In TypeScript, we support much the same types as you would expect in JavaScript, with a convenient enumeration type thrown in to help things along. Boolean The most basic datatype is the simple true/false value, which JavaScript and

          • TypeScript New Handbook Page

            Theme: ■ ■ ■ ■ BasicsStatic type-checkingNon-exception FailuresTypes for Toolingtsc, the TypeScript compilerEmitting with ErrorsExplicit TypesErased TypesDownlevelingStrictnessnoImplicitAnystrictNullChecksEveryday TypesPrimitives string, number, and booleanArraysanynoImplicitAnyType Annotations on VariablesFunctionsParameter Type AnnotationsReturn Type AnnotationsFunction ExpressionsObject TypesOp

            • GitLab Handbookで面白かったもの@コミュニケーション編 - infra.log

              まえがき GitLab社が公開しているHandbookから良さそうなものをいくつか紹介していこうと思います。 かなりボリュームがあるので、今回の記事からはコミュニケーションの記事から紹介していきます。 ※英語の翻訳が変だったり、間違っていたらすいません💧 GitLabのCommunicationについて about.gitlab.com 内部コミュニケーションについて Issues are preferred over email, email is preferred over chat, announcements happen on the company call agenda, and people should be able to do their work without getting interrupted by chat. IssueはEmailより優先され、Ema

                GitLab Handbookで面白かったもの@コミュニケーション編 - infra.log
              • サルでもわかるNASA式システム開発 第0話 「NASA Systems Engineering Handbook」 - 株式会社レヴィ ブログ

                この記事では、「サルでもわかるNASA式システム開発」ガイドブックのポイントを抜粋して紹介しています。全文をお読みになりたいかたはこちらから無料ダウンロードしていただけます。 levii.co.jp 1995年に発行された“NASA Systems Engineering Handbook” という本があります。 このハンドブックは、NASAが宇宙開発のプロジェクトを進める上で、重要だと考えていることが記述された、システムデザインに携わるエンジニアにとってはバイブルのような本です。 最近(2020年1月)2回目の改訂版が発行され、とても閲覧しやすくなりました。 www.nasa.gov 宇宙開発に限らず、システムデザインに役立つノウハウが満載なのですが、日本では、ほとんど読まれていないと思います。 とても勿体無いことなので、それをできる限り簡単にして、誰にとっても読みやすいように1話完結の

                  サルでもわかるNASA式システム開発 第0話 「NASA Systems Engineering Handbook」 - 株式会社レヴィ ブログ
                • WORLD RADIO TV HANDBOOK 最終版を購入 - 埼玉在住中小企業勤務ダメ人間の思うところ・・・

                  標題の通りです。 世界中の放送局の送信所や周波数をはじめとする極めて詳細な情報が載っていることで知られる「WORLD RADIO TV HANDBOOK」(以下WRTH=略称)を購入しました。 ↓ 昨日届いたWRTH 2022。1946年版から76年続いてきましたが今年で最後です タテ22.7cm ヨコ14.7cm 厚さ2.6cm 重量750g ↓ 日本の頁の最初の部分だけご覧いただきましょう WRTHのイメージを掴んでいただければ嬉しいです。 -・・・- このWRTHは1946年版から数えて76年間にわたり、毎年1回(年末に)刊行されてきましたが、この2022年版が最後の発刊となるとの発表がありました。今後は入手できなくなるWRTH。最終版を永く手許に置いておきたいと強く思い、躊躇せず買い求めました。 私がこのWRTHを初めて知ったのは小学校6年生だった1975年のことで、海外のラジオ放

                    WORLD RADIO TV HANDBOOK 最終版を購入 - 埼玉在住中小企業勤務ダメ人間の思うところ・・・
                  • LangChain の長い文章を扱う方法 | Hakky Handbook

                    LLMを用いて要約や抽出など、複雑な処理を一つのクエリで行うことができます。しかし、モデルの入力の最大数により、そのクエリの長さが限られています。例えば、OpenAIのtext-davinci-003は2,049トークン、gpt-4は8,192です。したがって、一つのクエリで長いデータを処理するのは困難です。そのため、本記事では、LangChainを用いて、長いドキュメントを扱う方法を紹介します。 長い文章を扱う方法​ 大規模言語モデル(LLM)でToken長が超えた場合の対応方法について モデルの最大長を超えたドキュメントを扱うには、複数のクエリに分散する必要があります。その際、四つの手法があります。 Stuffing:一つのクエリで処理する(StuffDocumentsChainで実装)【既存のやり方】 Map Reduce:処理を単独なクエリで分ける(MapReduceChainで実

                    • LangChain AI Handbook | Pinecone

                      The LangChain library empowers developers to create intelligent applications using large language models. It’s revolutionizing industries and technology, transforming our every interaction with technology.

                        LangChain AI Handbook | Pinecone
                      • ecspresso handbook v2対応版

                        Amazon ECS デプロイツール ecspresso の作者による解説本です。 チュートリアル、基本的な使いかた、応用的な使いかた、設計思想と実装、全コマンドのリファレンスを掲載しています。 本書は[ecspresso handbook v1対応版](https://zenn.dev/fujiwara/books/ecspresso-handbook)を元に、2022年12月14日にリリースされたecspresso v2への対応と構成変更、新章の追加を行ったものです。 v1対応版とは多くの内容が重複しているため、購入の際にはご注意ください。 2023-12-21 v2.3.0対応版に更新しました。

                          ecspresso handbook v2対応版
                        • Kowainik - Haskell mini-patterns handbook

                          Navigating in the ocean of Haskell possibilities is challenging even though Haskell is a powerful language that helps to implement robust and maintainable programs. The language supplies you with tons of awesome approaches, but it is not always trivial to see how and where to use them properly. Fortunately, like any other mainstream programming language, Haskell also has its best-practices and rec

                            Kowainik - Haskell mini-patterns handbook
                          • ecspresso handbookをZennで公開しました - 酒日記 はてな支店

                            激動の2020年もいよいよ押し詰まってきましたが、皆様いかがお過ごしでしょうか。 今年は ecspresso advent calendar 2020 というひとりアドベントカレンダーを唐突に思いついて始めてしまったのですが、なんとか完走することができました。 拙作の OSS である Amazon ECS 用のデプロイツール ecspresso の基本的な使い方から応用編、コマンドリファレンス、設計思想までを一通り書ききることができたので、せっかくなので Zenn で本としてまとめることにしました。 zenn.dev 9万字弱とそこそこのボリュームになり、書くのも大変だったしなあということで、500円の有料本としています。 内容自体はアドベントカレンダーに書いたものを再編集(章立ての変更と校正など)したものなので、特に新しい情報が入っているわけではないですが、もしよろしかったらお買い求め頂

                              ecspresso handbookをZennで公開しました - 酒日記 はてな支店
                            • GitHub - ZachGoldberg/Startup-CTO-Handbook: The Startup CTO's Handbook, a book covering leadership, management and technical topics for leaders of software engineering teams

                              You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                                GitHub - ZachGoldberg/Startup-CTO-Handbook: The Startup CTO's Handbook, a book covering leadership, management and technical topics for leaders of software engineering teams
                              • Block Filters – Block Editor Handbook | Developer.WordPress.org

                                WordPress exposes several APIs that allow you to modify the behavior of existing blocks. Registration The following filters are available to extend block settings during their registration. block_type_metadata Filters the raw metadata loaded from the block.json file when registering a block type on the server with PHP. It allows modifications to be applied before the metadata gets processed. The f

                                  Block Filters – Block Editor Handbook | Developer.WordPress.org
                                • Amazon Aurora MySQL Database Administrator’s Handbook

                                  Amazon Aurora MySQL データベース 管理者ハンドブック 接続管理 2019 年 3 月 注意 お客様は、この文書に記載されている情報を独自に評価する責任を負うものとします。 この文書は、(a) 情報提供のみを目的としており、(b) AWS の現行製品と慣行を表した ものであるため予告なしに変更されることがあり、(c) AWS およびその関連会社、サプ ライヤー、またはライセンサーからの契約義務や確約を意味するものではありません。 AWS の製品やサービスは、明示または暗示を問わず、いかなる保証、表明、条件を伴う ことなく「現状のまま」提供されます。お客様に対する AWS の責任は、AWS 契約に より規定されます。本書は、AWS とお客様の間で行われるいかなる契約の一部でも なく、そのような契約の内容を変更するものでもありません。 © 2019 Amazon Web Se

                                  • Technical Interview Guide for Busy Engineers | Tech Interview Handbook

                                    Tech Interview HandbookFree curated interview preparation materials for busy people Brought to you by the author of Blind 75 What is thisThe fastest way to prepare effectively for your software engineering interviews, used by over 500,000 engineersTech Interview Handbook goes straight to the point and tells you the minimum you need to know to excel in your technical interviews. Having personally g

                                    • 営業DX Handbook by Sansan

                                      新規顧客開拓・生産性の向上などの営業戦略や営業DX推進など、営業課題の解決を後押しする情報をお届けします。

                                        営業DX Handbook by Sansan
                                      • GitHub - DataEngineer-io/data-engineer-handbook: This is a repo with links to everything you'd ever want to learn about data engineering

                                        You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                                          GitHub - DataEngineer-io/data-engineer-handbook: This is a repo with links to everything you'd ever want to learn about data engineering
                                        • ChatGPTのビジネス活用法:具体事例46選とその効果 | Hakky Handbook

                                          ChatGPT とは​ChatGPT は、OpenAI によって開発された大規模なニューラルネットワークモデルに基づく自然言語処理 AI です。人間のように自然な文章を生成する能力を持ち、様々な自然言語タスクに対して高い性能を発揮します。そのため、ビジネスの様々な領域で活用できます。 ChatGPT ができること​ ChatGPT は、テキスト生成、プログラミング、文書の要約、機械翻訳など、多岐にわたるタスクをこなすことができます。これらの能力は、ビジネスの様々な領域で活用することが可能です。これらはその一例です。 テキスト生成 ChatGPT は、指定されたトピックやスタイルに基づいて自然な文章を生成することができます。これにより、ブログ記事やレポートの作成、メールの自動作成など、様々な業務を効率化することが可能です。 プログラミング ChatGPT はプログラミング領域における能力でも

                                          • The Kubernetes Handbook – Learn Kubernetes for Beginners

                                            Kubernetes is an open-source container orchestration platform that automates the deployment, management, scaling, and networking of containers. It was developed by Google using the Go Programming Language, and this amazing technology has been open-source since 2014. According to the Stack Overflow Developer Survey - 2020, Kubernetes is the #3 most loved platform and #3 most wanted platform. Apart

                                              The Kubernetes Handbook – Learn Kubernetes for Beginners
                                            • The GitLab Handbook

                                              Take GitLab for a spin See what your team could do with The DevSecOps Platform. Get free trial

                                                The GitLab Handbook
                                              • LangChain の インデックスについて | Hakky Handbook

                                                from abc import ABC, abstractmethod from typing import List from langchain.schema import Document class BaseRetriever(ABC): @abstractmethod def get_relevant_documents(self, query: str) -> List[Document]: """Get texts relevant for a query. Args: query: string to find relevant tests for Returns: List of relevant documents """ このクラスは、get_relevant_documents というメソッドを持ち、これは受け取ったクエリから関連するドキュメントを返すようなメソッド

                                                • Startup-CTO-Handbook/StartupCTOHandbook.md at main · ZachGoldberg/Startup-CTO-Handbook

                                                  You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                                                    Startup-CTO-Handbook/StartupCTOHandbook.md at main · ZachGoldberg/Startup-CTO-Handbook
                                                  • (JP)Uzabase HR Handbook

                                                    ユーザベースのHRシステムの考え方、カルチャーが理解できるハンドブックです。

                                                      (JP)Uzabase HR Handbook
                                                    • protobuf スキーマと gRPC 通信 | Wantedly Engineering Handbook

                                                      本稿では gRPC + protobuf の入門とWantedlyにおけるベストプラクティスを紹介します。 protobuf (Protocol Buffers) はデータフォーマットで、JSONの役割を置き換えるものです。一方 gRPC は通信プロトコルで、HTTPの役割を置き換えるものです。 gRPC + JSON や HTTP + protobuf のような組み合わせも可能ですが、Wantedlyでは使わないので以降では考えません。 JSONとprotobufの重要な違いとして、protobufはフォーマットがスキーマに依存するという点があります。JSONはスキーマがなくても完全なシリアライズ・デシリアライズが可能ですが、protobufのデータをシリアライズ・デシリアライズするにはスキーマ情報が必要です。gRPCは技術的には必ずしもスキーマ依存ではありませんが、実装上はスキーマなし

                                                        protobuf スキーマと gRPC 通信 | Wantedly Engineering Handbook
                                                      • GitHub - nttcom/remote-work-handbook: リモートワークハンドブックのソースコード

                                                        You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                                                          GitHub - nttcom/remote-work-handbook: リモートワークハンドブックのソースコード
                                                        • Whisperで辞書登録機能を実装する方法 | Hakky Handbook

                                                          概要​ 本記事ではWhisperの音声認識にヒントを設定する方法を紹介します。すなわち、辞書登録機能になります。 サンプルファイル​ 本記事ではテストサンプルとしてMozilla Common Voiceの日本語データセット(v12)のcommon_voice_ja_23633673.mp3(「文書は年々増えていく。」)を使用します。 tinyモデルでヒントなしの場合、「分子は年年増えていく」として認識されます。 initial_prompt引数を使用​ --initial_prompt: optional text to provide as a prompt for the first window initial_promptはモデルにコンテキスト(プロンプト)を提供するための引数です。 したがって、その引数を用いて、ヒントになる単語をモデルに提供することができます。 しかし、「文書

                                                          • LangChain のメモリについて | Hakky Handbook

                                                            概要​ このページでは、LangChain におけるメモリの概要に加えて、以下に挙げる基本的な使用方法も紹介します。 メモリの初期化 メモリへの書き込み メモリのクリア メモリを保存する方法 メモリをチェーンに組み込む方法 また、これらを説明するにあたって、以下の2種類メモリの使用例を紹介します。 ConversationBufferMemory ConversationBufferWindowMemory その他のメモリの詳細については紹介を省きますので、必要であれば公式ドキュメントを参照して情報を補ってください。 LangChain におけるメモリ​ メモリは「ユーザーと言語モデルの対話を"記憶"するためのクラス」の総称です。 この"記憶"を言語モデルに渡すことで「"記憶"の内容を反映した応答を返す」ことができるようになります。 LangChain では、いくつかの種類のメモリが用意さ

                                                            • LangChain のエージェントについて | Hakky Handbook

                                                              Pythonシェル。Pythonコマンドを実行するために使用します。入力は有効なPythonコマンドである必要があります。

                                                              • ポストモーテムの取り組み | Wantedly Engineering Handbook

                                                                Infra と各チームの SRE が中心になって、 ポストモーテムの作成や同期的なレビュー会を毎週行っています。 https://github.com/wantedly/post-mortems (internal) に過去のポストモーテムをまとめています。 Wantedly では、日々新しい機能や新しいシステムが追加されています。 そのため、成長と同時に複雑な分散システムになりつつあります。 インシデントやサービス障害は、増幅する規模感と変化の速度から避けがたいです。 インシデントが発生した場合は、基本的にその場で原因対策し安定運用に戻します。 しかし、こういったインシデントから学びを得るための定式化されたプロセスがなければ、同じようなインシデントが無限に繰り返し起こることになります。また野放しのままになってしまえば、インシデントの複雑さは加速度的に増し、あるいは積み重なってシステムの対

                                                                  ポストモーテムの取り組み | Wantedly Engineering Handbook
                                                                • The Handbook

                                                                  Introduction The GitLab team handbook is the central repository for how we run the company. Printed, it consists of over 2,000 pages of text. As part of our value of being transparent the handbook is open to the world, and we welcome feedback. Please make a merge request to suggest improvements or add clarifications. Please use issues to ask questions. For a very specific set of internal informati

                                                                    The Handbook
                                                                  • The Docker Handbook – Learn Docker for Beginners

                                                                    sharing with others may helpWhichever version of the book you end up reading though, don't forget to let me know your opinion. Constructive criticism is always welcomed. Introduction to Containerization and DockerAccording to IBM, Containerization involves encapsulating or packaging up software code and all its dependencies so that it can run uniformly and consistently on any infrastructure.‌In ot

                                                                      The Docker Handbook – Learn Docker for Beginners
                                                                    • GraphQL Gateway - アプリ向けに API を公開する | Wantedly Engineering Handbook

                                                                      Wantedly では、システム内部のマイクロサービス間通信に Protocol Buffers / gRPC を利用しています(『protobufスキーマとgRPC通信』の章)。 では、他のマイクロサービスではなく、Webアプリやモバイルアプリに向けて API を提供する場合についてはどうすると良いでしょうか? この章では、アプリから使えるシステムの API(まさに "Application Programming Interface" です)を用意する際に使う、GraphQL Gateway について概説します。 GraphQL Gateway とは、システムの中に数あるマイクロサービスの一つで、アプリ向けに GraphQL API を提供するものです。 基本的に、アプリからシステムに対しての API 呼び出しは全て GraphQL Gateway が引き受けることを想定しています(ま

                                                                        GraphQL Gateway - アプリ向けに API を公開する | Wantedly Engineering Handbook
                                                                      • The 37signals Employee Handbook

                                                                        Heads up! This page uses features your browser doesn’t support. Try a modern browser like Firefox or Chrome for the best experience. sidebar#close mouseup->tweet#update input->tweet#update keydown->tweet#update scroll@window->tweet#update" data-bookmark-id="/handbook"> ��5��U �9��U The 37signals Employee Handbook Everything you need to know about making a career at 37signals. Start reading → In th

                                                                          The 37signals Employee Handbook
                                                                        • Turbo Handbook

                                                                          Navigate with Turbo Drive Turbo Drive is the part of Turbo that enhances page-level navigation. It watches for link clicks and form submissions, performs them in the background, and updates the page without doing a full reload. It’s the evolution of a library previously known as Turbolinks. ﹟ Page Navigation Basics Turbo Drive models page navigation as a visit to a location (URL) with an action. V

                                                                          • GitHub - nttcom/onboarding-handbook: オンボーディングのノウハウ/Tipsを集めているハンドブックです。

                                                                            You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                                                                              GitHub - nttcom/onboarding-handbook: オンボーディングのノウハウ/Tipsを集めているハンドブックです。
                                                                            • The Biostar Handbook が面白すぎる件 - Qiita

                                                                              これはbiostars とは全く関係のない人が The Biostar Handbook というネットで販売されている本を紹介するページです。 IT技術に関係する記事ですので、問題はないと思いますが、もしもなにかありましたらご一報ください。 Biostars をご存知ですか? biostarsは、バイオインフォマティックス領域のstackoverflowとでも言うべきQ&Aサイトです。バイオインフォマティックスでは、初心者向けの日本語の資料があまり多くはありません。そのような状況で、biostarsを検索すると親切な回答が掲載されていることが多く、非常に参考になりますね。実際に自分で質問してみたこともありますが、丁寧で良質な回答がつくことが多いのでとても便利です。 そんな biostars が handbook を販売しているということで、購入してみました。 価格は非常に安くて、2500円

                                                                                The Biostar Handbook が面白すぎる件 - Qiita
                                                                              • The Managers Handbook – The Manager's Handbook

                                                                                Great management is a thing of beauty. In fact, we believe it's one of the most overlooked points of leverage in this world. Think back to the teacher who had the most impact on you as a child. Perhaps they coaxed you out of your shell and provided you with a safe place to play and grow. Or maybe they cared enough to give you critical feedback that made you sit up, listen, and change your behavior

                                                                                  The Managers Handbook – The Manager's Handbook
                                                                                • Turbo Handbook

                                                                                  Introduction Turbo bundles several techniques for creating fast, modern, progressively enhanced web applications without using much JavaScript. It offers a simpler alternative to the prevailing client-side frameworks which put all the logic in the front-end and confine the server side of your app to being little more than a JSON API. With Turbo, you let the server deliver HTML directly, which mean