並び順

ブックマーク数

期間指定

  • から
  • まで

41 - 80 件 / 128件

新着順 人気順

Cheatsheetの検索結果41 - 80 件 / 128件

  • Pythonのネットワークプログラミングに必要なデータまとめ

    Comparitechは11月13日(米国時間)、「Python Network Programming Cheat Sheet - Downloadable JPG & PDF」において、Pythonを使ったネットワークプログラミングに必要となるモジュールやライブラリ、コードサンプルなどをまとめたチートシートおよびテーブルの公開を伝えた。 公開されたチートシートには次のデータがまとめられている。 一般的に必要となるモジュール: PIP、IDLE ネットワークプログラミングライブラリ ネットワークフォレンジック: 必要なライブラリとスクリプト Pythonキーワード データ型、算術演算子 Pythonを使ったネットワーク分析 dnspythonライブラリ ソケットモジュール(Berkley APIインタフェース) ソケットタイプ、ソケット作成 ソケットサンプル スクリプトサンプル 解析モジ

      Pythonのネットワークプログラミングに必要なデータまとめ
    • git submodule はトモダチ!怖くないよ! (チートシート付き) - エムスリーテックブログ

      この画像は本文とは関係ありません。 こんにちは、エムスリー・エンジニアリングG・基盤開発チーム小本です。 みなさん、git submodule コマンドは好きですか?git submodule は特定の状況下では便利なコマンドです。 社内アンケートでも25%が怖いという結果に しかし、なぜか世間にはgit submodule が怖いという人が相当数いるようです。推測ですが、git submodule は動作モデルや使用手順が誤解されがちなところがあり、それで「怖い」と思われているのないでしょうか。git 本体でも昔そんなことがありましたよね。 この記事では git submodule の誤解を解き、適切な使い方を解説します。また、記事の最後にチートシートをつけます。 git submoduleはトモダチ!怖くないよ! git submodule って何? 誤解1 「プロジェクトが大きくなっ

        git submodule はトモダチ!怖くないよ! (チートシート付き) - エムスリーテックブログ
      • UX調査早見表

        どこから始めるか、あるいはまず何に最初に焦点を合わせるとよいのかを決める際は、これらの主なUX手法から選ぶといいだろう。時間の制約やシステムの成熟度、製品やサービスの種類、現在の最大の懸念事項によって、他の手法より適切な手法もある。製品サイクルごとに異なる手法を用いたり、交互に用いたりするとよい。手法によって目指す目標も知見の種類も違うからだ。以下のグラフは、UX関連のキャリアに関するアンケート調査で、UX実践者がこれらの手法をどのくらいの頻度で利用しているかについての回答内容である。 UXキャリア調査レポート(無料)による、UXの専門家が最もよく利用する手法。パーセンテージは、その手法を少なくとも1~2年に一度は利用していると答えた回答者の割合を示している。 UXに関する活動を1つしか実施できず、既存のシステムの改善を目指す場合は、(思考発話法を用いる)定性的なユーザビリティテストを実施

          UX調査早見表
        • CSS Flexboxで実装する時に役立つチートシート、高解像度で印刷して机の脇に貼っておくと便利です

          Flexboxのチートシートの一部 displayプロパティ Flexboxを使用するには親要素にdisplay: flex;(または、display: inline-flex;)を適用すると、その子要素がFlexアイテムになります。 flex-directionプロパティ FlexアイテムがFlexコンテナでどのように配置されるか明示します。方向は2種類で、横列(row)の水平、縦列(column)の垂直に配置できます。 flex-wrapプロパティ Flexコンテナが複数のFlexアイテムを一行(no-wrap)、または複数行(wrap)に配置することをコントロールします。 Flexboxの各プロパティの詳しい説明は、下記の記事をご覧ください。 CSS Flexboxの基礎知識と使い方をやさしく解説

            CSS Flexboxで実装する時に役立つチートシート、高解像度で印刷して机の脇に貼っておくと便利です
          • TypeScript: <T>の書く位置チートシート - Qiita

            この投稿はTypeScriptのジェネリクスの型変数(type parameter)をどこに書くのかのチートシートです。 <T>の書く位置まとめ 関数宣言 関数式 アロー関数 メソッド宣言 関数型 コンストラクタ型 関数シグネチャ コンストラクタシグネチャ: 引数リスト()の直前 クラス宣言 インターフェース宣言 型エイリアス: 識別子の直後 <T>の書く位置チートシート 関数宣言

              TypeScript: <T>の書く位置チートシート - Qiita
            • Rust Memory Container Cheat-sheet - Qiita

              Repos: https://github.com/usagi/rust-memory-container-cs 文字で読み書きするとやや大変です。しばらく間を開けてRustを触ったりするとスコシ混乱するかもしれません。と、いうわけでRustでメモリーコンテナー系に触れるモードになった時用に1枚絵のチートシートを整理しました。 文字を書けるQiitaにポストするのでちょっとだけチートシートの解説も乗せます。 おまけ解説 Threads; スレッド群 (rev.0 -> rev.1 でこのチートシート上で最初に現れる選択肢に切り替わりました ⇔ Ownership; 所有権) Rustではマルチスレッディング実行の安全性を向上するため、 適当に確保したメモリーをスレッド間でうっかり共有できない(少なくとも簡単にはうっかりできない程度に難しい)仕組みがあります。その仕組みの核心は標準ライブラリ

                Rust Memory Container Cheat-sheet - Qiita
              • GitHub - matplotlib/cheatsheets: Official Matplotlib cheat sheets

                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 - matplotlib/cheatsheets: Official Matplotlib cheat sheets
                • Go Slice Tricks Cheat Sheet

                  Web site created using create-react-app

                    Go Slice Tricks Cheat Sheet
                  • [Pythonチートシート]基本要素編

                    Pythonのコードを書くときに「ここってどう書くんだっけ?」となることがある。本連載では何回かに分けてまとめていこう。今回は組み込みのデータ型、変数、制御構文、演算子、関数定義についてまとめる(基本の基本なので忘れることも少ないかもしれないが)。

                      [Pythonチートシート]基本要素編
                    • Rustエラーハンドリング・チートシート - Qiita

                      Rustのエラーハンドリング関連の主要メソッドが一目でわかる、チートシートを作成しました。 Rustは型システムが複雑なので、やりたいことに適切なメソッドがあるかどうか、ドキュメントを探しまくることが多いです。エラーハンドリングもその類の1つであり、ドキュメント探索の手間を削減するために、チートシートを作成してみました。 ご活用ください。 1. チートシート 2. 関連リンク bool - doc.rust-lang.org Option - doc.rust-lang.org Result - doc.rust-lang.org

                        Rustエラーハンドリング・チートシート - Qiita
                      • 10 best practices to containerize Node.js web applications with Docker | Snyk Blog | Snyk

                        September 14, 2022: Check out our new and improved cheat sheet for containerizing Node.js web applications with Docker! Are you looking for best practices on how to build Node.js Docker images for your web applications? Then you’ve come to the right place! The following article provides production-grade guidelines for building optimized and secure Node.js Docker images. You’ll find it helpful rega

                          10 best practices to containerize Node.js web applications with Docker | Snyk Blog | Snyk
                        • Tailwind CSS Cheat Sheet - Flowbite

                          Use this interactive tool as a cheat sheet to view and search for all the class names from Tailwind CSS, the world's most popular utility-first CSS framework.

                            Tailwind CSS Cheat Sheet - Flowbite
                          • VSCheatsheet | Shortcuts in the shortest time possible | Shortcut Illustrations

                            VSCheatsheet provides a list of instructive illustrations with the most frequently used. Find your favorite shortcut and increase your profanity.

                              VSCheatsheet | Shortcuts in the shortest time possible | Shortcut Illustrations
                            • React TypeScript Cheatsheets | React TypeScript Cheatsheets

                              React TypeScript CheatsheetsCheatsheets for experienced React developers getting started with TypeScript

                                React TypeScript Cheatsheets | React TypeScript Cheatsheets
                              • GitHub - David-Else/modern-typescript-with-examples-cheat-sheet: Fully printable summary of modern TypeScript language features with extensive examples to help you learn

                                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 - David-Else/modern-typescript-with-examples-cheat-sheet: Fully printable summary of modern TypeScript language features with extensive examples to help you learn
                                • i Hate Regex - The Regex Cheat Sheet

                                  i Hate Regex is a regex cheat sheet that also explains the commonly used expressions so that you understand it. Stop hating and start learning.

                                  • ChromeDriver でよく使うオプションのチートシート - Qiita

                                    はじめに 毎回、気になったときに調べているような気がするのでまとめる。 ついでにnavigator.webdriverの対策もできる。 メモのつもりで書いているので深くは考えていない 2023.11.20 ファイルのダウンロードに関するオプションを追加、細かな修正 2023.11.15 ヘッドレスモードで起動したとき、コンソールにエラーログが出ないように修正 2023.11.14 selenium 4 にオプションの内容を一新 2023.11.14 selenium 3 のオプションを折りたたみ表示へ 2022.06.03 コピペできるコードブロックに追記、並び替え 2022.04.28 投稿 selenium 4 環境 アイテム バージョン

                                      ChromeDriver でよく使うオプションのチートシート - Qiita
                                    • スクラムマスターは「スクラムチーム改善」のプロダクトオーナー - maru source

                                      今年からスクラムマスター(SM)を始めた。1ヶ月ほどたったので、「やってみて気づいたこと」や「具体的に取り組んだこと」を残しておく。 ただし、僕はスクラムマスター研修は受けてない野良SM(?)である。なので、間違いとか超基本すぎることなどがあるかもしれない。 やってみて気づいたこと スクラムマスターの仕事は「スクラムチームを改善する」ことに尽きると思った。その観点で次の事が特に大事だと気づいた。 「スクラムチームの改善」は「プロダクトの改善」と同じ スクラムチームを一種のプロダクトだと考えて、課題見つける→PBIにする→解決する SMはスクラムチームの改善において、いわゆるプロダクトオーナー的な役割である 司会・議事録係・ミーティング調整役ではない まずはとにかく透明性をあげる プロダクトオーナー(PO)、BizDev、エンジニア、デザイナー、ドメインエキスパート、SM、etcのやってるこ

                                        スクラムマスターは「スクラムチーム改善」のプロダクトオーナー - maru source
                                      • Docker Security - OWASP Cheat Sheet Series

                                        Docker Security Cheat Sheet¶ Introduction¶ Docker is the most popular containerization technology. When used correctly, it can enhance security compared to running applications directly on the host system. However, certain misconfigurations can reduce security levels or introduce new vulnerabilities. The aim of this cheat sheet is to provide a straightforward list of common security errors and bes

                                        • GitHub - azu/url-cheatsheet: URL manipulation cheatsheet for JavaScript

                                          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 - azu/url-cheatsheet: URL manipulation cheatsheet for JavaScript
                                          • Welcome to Linux command line for you and me! — Linux command line for you and me 0.1 documentation

                                            Linux command line for you and me is a book for newcomers to the command line environment. Feedback is greatly appreciated. If you have any questions, comments, random praise, or anonymous threats, shoot me an email. Useful Links lym @ GitHub Issue Tracker

                                            • 【TypeScript】Utility Typesをまとめて理解する - Qiita

                                              Utility Typesとは Utility Typesとはコード内で型変換を容易にする為にTypeScriptが提供する(便利な関数のような)型達です。 Partial<T> Partial<T>はTの全てのプロパティをOptional(任意)のプロパティにしてくれます。 下記のコードPersonでは1つも任意のプロパティが設定されていませんが、Partial<T>を使用する事で、変数taroではfirstNameのみを持つ事ができています。 interface Person { firstName: string lastName: string age: number } const taro: Partial<Person> = { firstName: 'Taro', } console.log(taro); //=> { firstName: 'Taro' } Require

                                                【TypeScript】Utility Typesをまとめて理解する - Qiita
                                              • QuickRef.ME - Quick Reference Cheat Sheet

                                                See something missing? Feel free to contribute to the code on my GitHub repository or follow me to stay updated on the latest cheat sheets in real-time, it's a best chance to do it!

                                                • GitHub - terjanq/Tiny-XSS-Payloads: A collection of tiny XSS Payloads that can be used in different contexts. https://tinyxss.terjanq.me

                                                  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 - terjanq/Tiny-XSS-Payloads: A collection of tiny XSS Payloads that can be used in different contexts. https://tinyxss.terjanq.me
                                                  • これは便利! Tailwind CSSのチートシート、v3対応、すべてのクラスとプロパティ・値を参照および検索もできる優れもの

                                                    Tailwind CSS v3がリリースされ、ますます注目されているTailwind CSSのチートシートを紹介します。 Tailwind CSSに使用されているすべてのクラスとそのプロパティ・値を参照および検索もでき、非常に便利なチートシートです。 Tailwind CSS Cheat Sheet Tailwind CSSとは Tailwind CSSのチートシート Tailwind CSSとは Tailwind CSS(Tailwind CSS -GitHub)はユーティリティファーストのCSSのフレームワークで、汎用的なクラスを組み合わせてWebサイトやスマホアプリのレイアウト・コンポーネントを実装します。 たとえば、メールの入力欄だと下記のように記述します。 <input class="block appearance-none bg-white placeholder-gray-

                                                      これは便利! Tailwind CSSのチートシート、v3対応、すべてのクラスとプロパティ・値を参照および検索もできる優れもの
                                                    • The Algorithms

                                                      What is an Algorithm?An algorithm is a set of rules that takes in one or more inputs, then performs inner calculations and data manipulations and returns an output or a set of outputs. In short, algorithms make life easy. From complex data manipulations and hashes, to simple arithmetic, algorithms follow a set of steps to produce a useful result. One example of an algorithm would be a simple funct

                                                        The Algorithms
                                                      • [Pythonチートシート]特殊メソッド編

                                                        特殊メソッドとは Pythonのクラスでは「特殊メソッド」と呼ばれるメソッドを定義(オーバーライド)できる。特殊メソッドとは、各種の演算子や組み込み関数などの操作の対象として、独自のクラスを利用できるようにするための仕組みだと考えられる。つまり、クラスを自分で定義しているときに、適切な名前の特殊メソッドを適切にオーバーライドすることで、例えば、次のような処理が可能になる。

                                                          [Pythonチートシート]特殊メソッド編
                                                        • kubectlチートシート

                                                          kubectlチートシートこのページには、一般的によく使われるkubectlコマンドとフラグのリストが含まれています。 Kubectlコマンドの補完BASH source <(kubectl completion bash) # 現在のbashシェルにコマンド補完を設定するには、最初にbash-completionパッケージをインストールする必要があります。 echo "source <(kubectl completion bash)" >> ~/.bashrc # bashシェルでのコマンド補完を永続化するために.bashrcに追記します。

                                                            kubectlチートシート
                                                          • Web Performance Metrics Cheatsheet | bitsofcode

                                                            I recently gave a talk on “Making Sense of Performance Metrics” at the Web Unleashed Conference, and it was suggested that I turn the breakdown of all the performance metrics into a cheatsheet; so here it is! The full cheatsheet, including a downloadable PDF version, are at the bottom of the page so feel free to skip to that. Four Questions # In a web.dev article on "User-centric Performance Metri

                                                              Web Performance Metrics Cheatsheet | bitsofcode
                                                            • BlueTeam CheatSheet * Log4Shell* | Last updated: 2021-12-20 2238 UTC

                                                              20211210-TLP-WHITE_LOG4J.md Security Advisories / Bulletins / vendors Responses linked to Log4Shell (CVE-2021-44228) Errors, typos, something to say ? If you want to add a link, comment or send it to me Feel free to report any mistake directly below in the comment or in DM on Twitter @SwitHak Other great resources Royce Williams list sorted by vendors responses Royce List Very detailed list NCSC-N

                                                                BlueTeam CheatSheet * Log4Shell* | Last updated: 2021-12-20 2238 UTC
                                                              • Cheatsheet: XSS that works in 2021

                                                                It’s been a year since my last XSS cheatsheet, and a year of developments in XSS exploitology. Here’s a new and updated version jam-packed full of goodies that I use myself! Note: This cheat-sheet focuses on up to date and relevant items only. Would you take a cheat sheet with you to an exam that has a bunch of irrelevant stuff? No, of course not. I hate cheat sheets that waste space on methods th

                                                                • 40+ Modern Tutorials Covering All Aspects of Machine Learning - DataScienceCentral.com

                                                                  Home » Uncategorized40+ Modern Tutorials Covering All Aspects of Machine Learning CapriGranville733December 10, 2019 at 3:30 am This list of lists contains books, notebooks, presentations, cheat sheets, and tutorials covering all aspects of data science, machine learning, deep learning, statistics, math, and more, with most documents featuring Python or R code and numerous illustrations or case st

                                                                    40+ Modern Tutorials Covering All Aspects of Machine Learning - DataScienceCentral.com
                                                                  • Crontab syntax for us humans -- Cron Helper

                                                                    *Expands to all values for the field,List separator-Range separator/Specifies step for ranges@hourlyRun at the start of each hour@dailyRun every day at midnight UTC@weeklyRun at every Sunday at midnight UTC@monthlyRun on the 1st of each month at midnight UTC@yearlyRun on Jan 1st at midnight UTC@annuallySame as @yearly

                                                                    • 「Kustomize」超入門――複数環境の重過ぎKubernetesマニフェスト、どう管理すればいいのか

                                                                      「Kustomize」超入門――複数環境の重過ぎKubernetesマニフェスト、どう管理すればいいのか:Cloud Nativeチートシート(2) Kubernetesやクラウドネイティブをより便利に利用する技術やツールについて概要や使い方を凝縮して紹介していく連載。今回は、「Kustomize」を取り上げます。

                                                                        「Kustomize」超入門――複数環境の重過ぎKubernetesマニフェスト、どう管理すればいいのか
                                                                      • flexbox-cheat.site

                                                                        This domain may be for sale!

                                                                          flexbox-cheat.site
                                                                        • Complete Flexbox Tutorial w/ Cheat Sheet

                                                                          Joy Shaheb Posted on Jan 10, 2021 • Updated on May 27, 2021 • Originally published at freecodecamp.org Let's refresh Our CSS Flexbox Memory. Here's a Tutorial & Cheat Sheet of everything you can do with CSS flexbox. Let's Go 🎖️ The original Article at FreeCodeCamp Table of Contents -- FlexBox Architecture flex-direction justify-content align-content align-items align-self flex - grow | shrink | w

                                                                            Complete Flexbox Tutorial w/ Cheat Sheet
                                                                          • ChatGPTに関するチートシート

                                                                            はじめに 今回の記事では、ChatGPTの使い方をチートシート形式で簡潔に解説する。 文章を作る 質問とそれに対する応答 日本語:〇〇について教えて 英語:"What is X like?"、あるいは"What does X means?" Wikipediaのような記事を作成する 日本語:〇〇に関するWikipediaのような記事を作成して 英語:"Please create an article about X like Wikipedia." Todoリストの作成 日本語:〇〇をタスク化して 英語:"Please create a task for X." スケジュールの作成 日本語:xx~yyの間にzzをする。その間のスケジュールをmm分刻みで示して 英語:"Between xx and yy, I do zz. Show the schedule in mm minute inc

                                                                              ChatGPTに関するチートシート
                                                                            • How to Yubikey: a configuration cheatsheet

                                                                              This post shows different use cases for a Yubikey. There are also command line examples in a cheatsheet like manner. I’m using a Yubikey 5C on Arch Linux. If you run into issues, try to use a newer version of ykman (part of yubikey-manager package on Arch). Some features depend on the firmware version of the Yubikey. The tooling (like the wording) around the Yubikey is sometimes a bit confusing. I

                                                                              • Tailwind CSS CheatSheet for Beginners and Not Only

                                                                                Find quickly all the class names and CSS properties with this interactive cheat sheet. The only Tailwind CheatSheet you will ever need!

                                                                                  Tailwind CSS CheatSheet for Beginners and Not Only
                                                                                • ruby/debug cheatsheet

                                                                                  This cheatsheet can help you get started with ruby/debug as well as use it in your daily development. It's not an exhausting list of its features or commands, so please go through its document as well. If you're migrating from byebug, I also recommend checking my byebug to ruby/debug migration guide. I also shared how to build a powerful debugging workflow with it in my talk: ruby/debug - The best

                                                                                    ruby/debug cheatsheet

                                                                                  新着記事