並び順

ブックマーク数

期間指定

  • から
  • まで

1 - 40 件 / 98件

新着順 人気順

scriptsの検索結果1 - 40 件 / 98件

タグ検索の該当結果が少ないため、タイトル検索結果を表示しています。

scriptsに関するエントリは98件あります。 githubjavascriptnpm などが関連タグです。 人気エントリには 『ESLint, Prettier, VS Code, npm scripts の設定: 2021春』などがあります。
  • ESLint, Prettier, VS Code, npm scripts の設定: 2021春

    eslint-plugin-prettier 時代の設定をずっと使っていたので、重い腰を上げてアップデートした作業メモ。 背景 Prettier 公式ドキュメントによれば、現在 eslint-plugin-prettier は以下の問題があるとして推奨していない。 エディタが真っ赤になる(人間が気にする必要のない問題なのに!) 直接実行するより遅い(同様に prettier-eslint も遅い) ESLint と Prettier の間に間接レイヤーを追加するので、壊れやすい なるほど正しい。 一方、別々に実行することで以下のような問題も出てくるので、解決していく。 CLI とエディタを個別に設定する必要がある エディタで ESLint と Prettier の協調動作が必要 CLI (npm scripts) で ESLint と Prettier の対象ファイルが別管理になる 上記の

      ESLint, Prettier, VS Code, npm scripts の設定: 2021春
    • GitHub - google/zx: A tool for writing better scripts

      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 - google/zx: A tool for writing better scripts
      • npm-scripts を書く時の手癖 - mizdra's blog

        かれこれ 5 年くらい趣味開発で npm-scripts を書き続けている。長年書き続けているとノウハウが蓄積されてきて、「こう書くとスッキリする」「迷いがなくなる」「後から拡張したくなった時に、簡単に拡張できる」みたいな書き方が身についてきた。自分の型、あるいは手癖のようなものだと思う。 せっかくなので、id:mizdra の今の npm-scripts を書く時の手癖を書き連ねてみる。 基本形 { "scripts": { "build": "webpack --mode production", "dev": "webpack-dev-server --mode development", "lint": "eslint .", "test": "jest" } } 一番シンプルな npm-scripts を書く時のパターン。以下の 4 つの script を登録している。 buil

          npm-scripts を書く時の手癖 - mizdra's blog
        • Makefileの代わりにnpm scripts+zxを使う - 詩と創作・思索のひろば

          そこそこの規模があるプロジェクトで実行すべきタスクを定義するとき、初手として Makefile を使いがち。 Pros make は事実上どんな環境にもあることを期待してよい シェルで実行されるコマンドをそのまま書ける タスクの依存関係が明示できる Cons make では positional arguments が使えない 少し複雑なことをしようとすると Makefile 専用の文法を覚える必要がある 現代では、ファイルベースのタスクの依存関係は make が発明されたころほどは必要ではない Docker とか Go とか Webpack がよしなにしてくれることが多い 例: docker compose のラッパー ちょっとしたコマンドのラッパーを書きたいことがある。Makefile を書きはじめたらすべてのエントリポイントを make にしたい。ということで、以下のような Make

            Makefileの代わりにnpm scripts+zxを使う - 詩と創作・思索のひろば
          • GitHub - google/wireit: Wireit upgrades your npm/pnpm/yarn scripts to make them smarter and more efficient.

            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 - google/wireit: Wireit upgrades your npm/pnpm/yarn scripts to make them smarter and more efficient.
            • GitHub - charmbracelet/gum: A tool for glamorous shell scripts 🎀

              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 - charmbracelet/gum: A tool for glamorous shell scripts 🎀
              • GitHub - tzador/makedown: Organise your shell scripts within executable markdown files

                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 - tzador/makedown: Organise your shell scripts within executable markdown files
                • GitHub - egoist/dum: An npm scripts runner written in Rust.

                  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 - egoist/dum: An npm scripts runner written in Rust.
                  • Codon: Python compiler takes scripts to C/C++ speeds

                    Python is among the one of the most popular programming languages, yet it's generally not the first choice when speed is required. While it can be optimized for better performance, Python is prized for qualities other than speed, such as readability, a manageable learning curve, an expansive ecosystem, and utility in both academia and business. MIT computer scientists and their colleagues, however

                      Codon: Python compiler takes scripts to C/C++ speeds
                    • GitHub - CDSoft/luax: Moved to Codeberg, this repo is just a (temporary) mirror -- luax is a Lua interpreter and REPL based on Lua 5.4, augmented with some useful packages. It is also a "compiler" that produces standalone executables from Lua scripts.

                      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 - CDSoft/luax: Moved to Codeberg, this repo is just a (temporary) mirror -- luax is a Lua interpreter and REPL based on Lua 5.4, augmented with some useful packages. It is also a "compiler" that produces standalone executables from Lua scripts.
                      • npm scripts で rimraf を使わずディレクトリを再帰的に削除する

                        3 行で Node.js >= v14.14.0 であること rimraf dist は node -e 'fs.rmSync(`dist`, {recursive:true, force:true})' で置き換えられる rimraf dist/*.bundle.js みたいな glob を含むものは置き換えできない 長い説明 npm scripts で不要なキャッシュやビルドの出力ファイルを削除したい場合は rimraf というパッケージを POSIX の rm -rf の代わりに使うことが多いと思います。これは Windows で npm run の実行に使われる コマンドプロンプト (cmd.exe) に rm がないのを始めとした環境依存の問題を避けるためです。 とはいえパッケージなしではディレクトリの再帰的削除もできない、というのはちょっと困るので、v12.10.0 で fs.

                          npm scripts で rimraf を使わずディレクトリを再帰的に削除する
                        • Ruby: a great language for shell scripts!

                          Intro Ruby is so associated with its most famous framework, Rails, that many people forget how amazing this language is. I mean, I know a lot of people who says “I don’t like Ruby” and when I ask why, they say something about Rails. Personally, I consider Ruby one of my favorite programming languages, and the last time I touched any Rails code was 7 years ago… So, if I don’t use Rails anymore, wha

                          • Using CSS Module Scripts to import stylesheets  |  Articles  |  web.dev

                            With the new CSS module scripts feature, you can load CSS style sheets with import statements, just like JavaScript modules. The style sheets can then be applied to documents or shadow roots in the same manner as constructable stylesheets. This can be more convenient and more performant than other ways of importing and applying CSS. Browser Support CSS module scripts are available by default in Ch

                            • GitHub - octoherd/cli: CLI to run a octoherd scripts on one or multiple repositories

                              Usage: octoherd run -S path/to/script.js [options] Options: --help Show help [boolean] -S, --octoherd-script Path to *.js script. Must be an ES Module. [string] [required] -T, --octoherd-token Requires the "public_repo" scope for public repositories, "rep o" scope for private repositories. Creates an OAuth token if n ot set. [string] -R, --octoherd-repos One or multiple repositories in the form of

                                GitHub - octoherd/cli: CLI to run a octoherd scripts on one or multiple repositories
                              • GitHub - niespodd/browser-fingerprinting: Analysis of Bot Protection systems with available countermeasures 🚿. How to defeat anti-bot system 👻 and get around browser fingerprinting scripts 🕵️‍♂️ when scraping the web?

                                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 - niespodd/browser-fingerprinting: Analysis of Bot Protection systems with available countermeasures 🚿. How to defeat anti-bot system 👻 and get around browser fingerprinting scripts 🕵️‍♂️ when scraping the web?
                                • GitHub - shikaan/shmux: 🐚 Run multiple scripts from one file. In (almost) any language.

                                  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 - shikaan/shmux: 🐚 Run multiple scripts from one file. In (almost) any language.
                                  • Nuxt Scripts でサードパーティスクリプトをより身近に

                                    はじめに こんにちは、がんがんです。 2024 年 6 月に Nuxt v3.12 がリリースされました。 Nuxt v3.12 の目玉としては Nuxt4 のリリース準備が進んでいること、現環境で Nuxt4 のマイグレーション実験を行えること が挙がられると思います。 Nuxt4 へのマイグレーション実験はこちらの記事で実験されています。合わせてご覧ください。 そんな v3.12 のリリースノートの中に今まで見たことなかったモジュール名が記載されていました (以下ブログ記事の引用) 📜 Nuxt Scripts auto-install We've been gradually working to release Nuxt Scripts. It's currently in public preview, but we're near a public release, so w

                                      Nuxt Scripts でサードパーティスクリプトをより身近に
                                    • TIL: timeout in Bash scripts | Heitor's log

                                      The other day at work we had a Bash script that would set up a web server and wait for it to be up before proceeding to the next things. The script worked fine and we had no issues, until we had an infinite loop. We were using the Bash built-in until to check if the web server was up: until curl --silent --fail-with-body 10.0.0.1:8080/health; do sleep 1 done This works fine. Unless our web server

                                        TIL: timeout in Bash scripts | Heitor's log
                                      • GitHub - BuilderIO/partytown: Relocate resource intensive third-party scripts off of the main thread and into a web worker. 🎉

                                        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 - BuilderIO/partytown: Relocate resource intensive third-party scripts off of the main thread and into a web worker. 🎉
                                        • GitHub - eukaryo/reversi-scripts

                                          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 - eukaryo/reversi-scripts
                                          • Use Long Options in Scripts

                                            Use Long Options in Scripts Mar 21, 2025 Many command line utilities support short form options (-f) and long form options (--force). Short form is for interactive usage. In scripts, use the long form. That is, in your terminal, type $ git switch -c my-new-branch In your release infrastructure script, write try shell.exec("git fetch origin --quiet", .{}); try shell.exec( "git switch --create relea

                                            • GitHub - RedRayz/Kohya_lora_param_gui: GUI for kohya-ss sd-scripts

                                              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 - RedRayz/Kohya_lora_param_gui: GUI for kohya-ss sd-scripts
                                              • 似て非なるCSS Module Scripts

                                                昨年くらいからNext.jsの影響もあり、CSS Modulesの人気がまた高まってるように感じますね。State of CSSのCSS-in-JSランキングでも満足度、興味、利用率、認知度などどれをとっても1~2位に入ってました。 CSS Moduels自体はReactのJSXなどと同様、JSを拡張し利用できる技術です。しかし、このアプローチを有用と思った人たちが「JSやブラウザの仕様としてCSSをimportできたらいいのにね」と思いChromeに実装されつつあるのが「CSS Module Scripts」です。 仕様になったならいい話じゃん!で終わればいいんですが、なんとこの「CSS Module Scripts」、「CSS Modules」と仕様が違うんですね。現状まだwebpackでは「CSS Module Scripts」は未サポートですが、今後サポートするつもりっぽいのでこの

                                                  似て非なるCSS Module Scripts
                                                • Microsoft Activation Scripts (MAS) | MAS

                                                  Open-source Windows and Office activator featuring HWID, Ohook, TSforge, KMS38, and Online KMS activation methods, along with advanced troubleshooting. How to Activate Windows / Office / Extended Updates (ESU)?​ Method 1 - PowerShell ❤️​ Open PowerShell Click the Start Menu, type PowerShell, then open it. Copy and paste the code below, then press enter. For Windows 8, 10, 11: 📌

                                                    Microsoft Activation Scripts (MAS) | MAS
                                                  • Microsoft Office Scripts Dev Center | Automate tasks in Excel

                                                    All Microsoft Global Microsoft Security Azure Dynamics 365 Microsoft 365 Microsoft Teams Windows 365 Tech & innovation Microsoft Cloud AI Azure Space Mixed reality Microsoft HoloLens Microsoft Viva Quantum computing Sustainability Industries Education Automotive Financial services Government Healthcare Manufacturing Retail All industries Partners Find a partner Become a partner Partner Network Azu

                                                    • Android Emulator Container Scriptsを使ってDocker上でAndroidエミュレータを動かす - Qiita

                                                      この記事は Android Advent Calendar 2020 17日目の記事です。 昨年に紹介されていた Android Emulator Container Scripts ですが、今年新たにビルド済みのエミュレータコンテナが実験的に提供されているとのことで、本記事ではこのスクリプトを利用してDockerコンテナでAndroidエミュレータを立ち上げ、adb接続やテストの実行、Webブラウザから起動したエミュレータを操作する手順を紹介します。 Continuous Testing with Android Emulator Containers Android Developers Blog / Continuous testing with new Android emulator tools 実行環境 2020年12月17日現在、READMEに記載の通りKVMが必須となってお

                                                        Android Emulator Container Scriptsを使ってDocker上でAndroidエミュレータを動かす - Qiita
                                                      • sd-scripts/train_README-ja.md at main · kohya-ss/sd-scripts

                                                        どれを選ぶか LoRA、Textual Inversionについては、手軽にキャプションファイルを用意せずに学習したい場合はDreamBooth class+identifier、用意できるならDreamBooth キャプション方式がよいでしょう。学習データの枚数が多く、かつ正則化画像を使用しない場合はfine tuning方式も検討してください。 DreamBoothについても同様ですが、fine tuning方式は使えません。fine tuningの場合はfine tuning方式のみです。 各方式の指定方法について ここではそれぞれの指定方法で典型的なパターンについてだけ説明します。より詳細な指定方法については データセット設定 をご覧ください。 DreamBooth、class+identifier方式(正則化画像使用可) この方式では、各画像は class identifier

                                                          sd-scripts/train_README-ja.md at main · kohya-ss/sd-scripts
                                                        • Introducing Partytown 🎉: Run Third-Party Scripts From a Web Worker

                                                          Introducing Partytown 🎉: Run Third-Party Scripts From a Web Worker A fun location for your third-party scripts to hang out Performance is always top of mind for any website or web app. It’s of no surprise that a page that loads instantly, has no scroll jank, and responds immediately to any interaction, will provide an all around better user-experience. Even with a fast and highly tuned site follo

                                                            Introducing Partytown 🎉: Run Third-Party Scripts From a Web Worker
                                                          • GitHub - massgravel/Microsoft-Activation-Scripts: Open-source Windows and Office activator featuring HWID, Ohook, TSforge, KMS38, and Online KMS activation methods, along with advanced troubleshooting.

                                                            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 - massgravel/Microsoft-Activation-Scripts: Open-source Windows and Office activator featuring HWID, Ohook, TSforge, KMS38, and Online KMS activation methods, along with advanced troubleshooting.
                                                            • GitHub - runabol/tork: Tork is a lightweight, distributed workflow engine that runs tasks as simple scripts within Docker containers.

                                                              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 - runabol/tork: Tork is a lightweight, distributed workflow engine that runs tasks as simple scripts within Docker containers.
                                                              • Running scripts | uv

                                                                Running scripts A Python script is a file intended for standalone execution, e.g., with python <script>.py. Using uv to execute scripts ensures that script dependencies are managed without manually managing environments. Note If you are not familiar with Python environments: every Python installation has an environment that packages can be installed in. Typically, creating virtual environments is

                                                                • Excel の Office スクリプト - Office Scripts

                                                                  Excel の Office スクリプトを使用すると、日常のタスクを自動化できます。 アクション レコーダーを使用して、手動の手順を再利用可能なスクリプトに変換します。 これらのスクリプトを編集するか、コード エディターを使用して新しいスクリプトを作成します。 ブック内の他のユーザーがこれらのスクリプトを 1 つのボタンで実行できるようにします。 次に、全員がワークフローを改善できるように、同僚と共有します。 この一連のドキュメントで、これらのツールの使用方法について説明します。 さまざまな Excel シナリオをカバーする豊富なサンプルがあります。 チュートリアルを使用して、アクション レコーダーとコード エディターについて説明します。 これらは、頻繁な Excel アクションを記録し、それらのスクリプトを編集し、新しいスクリプトをゼロから作成する方法に関する詳細なガイダンスを提供します

                                                                    Excel の Office スクリプト - Office Scripts
                                                                  • Office Scripts is now available for Office 365 Enterprise E1 and Office 365 F3 licenses

                                                                    Office Scripts is now available for Office 365 Enterprise E1 and Office 365 F3 licenses We are happy to announce that Office Scripts in Excel is now available for customers with Office 365 Enterprise E1 and Office 365 F3! Starting today you can find the Office Scripts feature set in the Automate tab on the Excel ribbon. What is Office Scripts? Office Scripts is an automation platform in Excel that

                                                                      Office Scripts is now available for Office 365 Enterprise E1 and Office 365 F3 licenses
                                                                    • GitHub - windmill-labs/windmill: Open-source developer platform to power your entire infra and turn scripts into webhooks, workflows and UIs. Fastest workflow engine (13x vs Airflow). Open-source alternative to Retool and Temporal.

                                                                      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 - windmill-labs/windmill: Open-source developer platform to power your entire infra and turn scripts into webhooks, workflows and UIs. Fastest workflow engine (13x vs Airflow). Open-source alternative to Retool and Temporal.
                                                                      • GitHub - Brooooooklyn/canvas: High performance skia binding to Node.js. Zero system dependencies and pure npm packages without any postinstall scripts nor node-gyp.

                                                                        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 - Brooooooklyn/canvas: High performance skia binding to Node.js. Zero system dependencies and pure npm packages without any postinstall scripts nor node-gyp.
                                                                        • GitHub - kohya-ss/sd-scripts

                                                                          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 - kohya-ss/sd-scripts
                                                                          • Scripts I wrote that I use all the time

                                                                            In my decade-plus of maintaining my dotfiles, I’ve written a lot of little shell scripts. Here’s a big list of my personal favorites. Clipboard copy and pasta are simple wrappers around system clipboard managers, like pbcopy on macOS and xclip on Linux. I use these all the time. # High level examples run_some_command | copy pasta > file_from_my_clipboard.txt # Copy a file's contents copy < file.tx

                                                                            • GitHub - yassinebenaid/bunster: Compile shell scripts to machine code.

                                                                              Have you ever wished your shell scripts could be faster, more portable, and secure ? Bunster brings this to life by transforming your shell scripts into efficient, standalone binaries that are easy to distribute and deploy across platforms (only unix is supported at the moment). Unlike other tools, Bunster doesn’t just wrap your scripts in a binary—it compiles them down to efficient native machine

                                                                                GitHub - yassinebenaid/bunster: Compile shell scripts to machine code.
                                                                              • 【Stable Diffusion】「LoRA Easy Training Scripts」を使って自分だけのLoRAを作る方法を紹介!

                                                                                気になったゲームの攻略情報、PCの豆知識、様々なガシェットのレビューなどを紹介してます!その他にも管理人の趣味をいろいろと書き綴っています。

                                                                                  【Stable Diffusion】「LoRA Easy Training Scripts」を使って自分だけのLoRAを作る方法を紹介!
                                                                                • GitHub - adrianlarion/useful-sed: Useful sed scripts & patterns.

                                                                                  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 - adrianlarion/useful-sed: Useful sed scripts & patterns.

                                                                                  新着記事