並び順

ブックマーク数

期間指定

  • から
  • まで

81 - 120 件 / 668件

新着順 人気順

dotnet runの検索結果81 - 120 件 / 668件

  • GitHub Copilot in the CLI は日本語も解釈してくれて便利そう - Alternative Architecture DOJO

    こんにちは、MLBお兄さんこと松村です。 今年の MLB はテキサス・レンジャーズのワールドシリーズ制覇で幕を閉じました。 これからはストーブリーグが始まり、選手の移籍市場が活発になってきます。我がヤンキースはどんな戦力補強を見せてくれるのでしょうか! この記事を書いている11月9日はアメリカ・サンフランシスコで GitHub Universe 2023 が行われています。 当社からも5人が現地で参加をしており、楽しそうな写真が社内にシェアされています。 さて、キーノートでは触れられませんでしたが、このたび「GitHub Copilot in the CLI」がパブリックベータとして発表されました。 これは GitHub CLI のなかで Copilot による支援を受けることができる拡張機能です。 以前は「Copilot for CLI」と呼ばれていましたが、「GitHub Copilo

      GitHub Copilot in the CLI は日本語も解釈してくれて便利そう - Alternative Architecture DOJO
    • Announcing .NET Community Toolkit 8.0! MVVM, Diagnostics, Performance, and more! - .NET Blog

      Each benchmark run involves sending 4 different messages 1000 times, to 100 recipients. As you can see, WeakReferenceMessenger and StrongReferenceMessenger are both the fastest by far, and the only ones to not allocate even a single byte when broadcasting messages 🚀 Revamped collection APIs 🏬 This new release of the MVVM Toolkit also moves all the observable grouped collection types from the Com

        Announcing .NET Community Toolkit 8.0! MVVM, Diagnostics, Performance, and more! - .NET Blog
      • Long Term Planning for ASP.NET Web Forms in .NET 9

        Long Term Planning for ASP.NET Web Forms in .NET 9 Introduction Long Term Planning for ASP.NET Web Forms in .NET 9 Posted by Crista Perlton on May 9th, 2024. This article part of a series on Migrating from .NET Framework to .NET, also available as a chapter in our free, downloadable eBook No matter what you’ve heard, ASP.NET Web Forms in the age of .NET Core and the current .NET (.NET 5 to .NET 9)

        • Announcing YARP 1.0 Release - .NET Blog

          Supercharge your distributed app and cloud native development with .NET Aspire by harnessing cutting-edge Azure services, components, tooling, deployment, and more for your .NET Aspire projects. Join the .NET Aspire and Azure product teams as they deep dive into essential Azure services to build world-class, cloud native applications with .NET. Today we announce the release of YARP 1.0, which can

            Announcing YARP 1.0 Release - .NET Blog
          • IHostedService と BackgroundService クラスを使ってマイクロサービスのバックグラウンド タスクを実装する - .NET

            バックグラウンド タスクとスケジュールされたジョブは、マイクロサービス アーキテクチャのパターンに従っているかどうかにかかわらず、すべてのアプリケーションで使用する必要があります。 マイクロサービス アーキテクチャを使用する場合との違いは、自分のニーズに応じてスケールアップおよびスケールダウンできるように、バックグラウンド タスクをホスト用の別のプロセスまたはコンテナーに実装することです。 これらの種類のタスクは、ホスト、アプリケーション、マイクロサービス内でホストするサービス、ロジックであるため、全体的な観点から、.NET では "ホステッド サービス" と呼びます。 このケースでは、ホステッド サービスは、単にバックグラウンド タスク ロジックを持つクラスを意味していることに注意してください。 .NET Core 2.0 以降では、ホステッド サービスを簡単に実装できるようにする IH

              IHostedService と BackgroundService クラスを使ってマイクロサービスのバックグラウンド タスクを実装する - .NET
            • AWS App Runner でサポートされるマネージドランタイムが追加されたので .NET アプリケーションを実行してみる | DevelopersIO

              いわさです。 App Runner では一部のランタイムはマネージドランタイムという形で、ソースコードリポジトリを指定することでコンテナイメージを個別に用意せずにデプロイすることが出来ていました。 本日のアップデートで様々なランタイムが追加されました。 みなさんの大好きな .NET もマネージドランタイムのサポート対象となりました。 サポートされているバージョンは最新の Long Term Support (LTS) リリースである .NET 6 です。 ちなみに .NET 5 は 2022年5月10日 にサポートが終了しており、ひとつ前の LTS である .NET Core 3.1 は 2022年12月13日 で終了する予定です。 App Runner の利用を検討される方はこれを気に .NET 6 へのバージョンアップもご検討いただくのが良さそうですね。 GitHub リポジトリを用意

                AWS App Runner でサポートされるマネージドランタイムが追加されたので .NET アプリケーションを実行してみる | DevelopersIO
              • Using Tailscale on Windows to network more easily with WSL2 and Visual Studio Code

                Tailscale is a zero config mesh "VPN" that runs atop other networks and effectively "flattens" networks and allows users/services to more easily (and securely) communicate with each other. For example, I've written extensively on how to SSH into WSL2 on Windows 10 from another machine and you'll note that there is not only a ton of steps but there's more than one way to do it! I have talked about

                  Using Tailscale on Windows to network more easily with WSL2 and Visual Studio Code
                • Announcing .NET 5 Preview 1 - .NET Blog

                  No trial. No credit card required. Just your GitHub account. At the end of last year, we shipped .NET Core 3.0 and 3.1. These versions added the desktop app models Windows Forms (WinForms) and WPF, ASP.NET Blazor for building single page applications and gRPC for cross-platform, contract-based messaging. We also added templates for building services, rich generation of client code for talking to g

                    Announcing .NET 5 Preview 1 - .NET Blog
                  • 【C#】StringBuilderとDefaultInterpolatedStringHandlerの処理速度・メモリ確保量を比べてみる - はなちるのマイノート

                    はじめに 今回はStringBuilderとDefaultInterpolatedStringHandlerの処理速度・メモリ確保量を比べてみたいと思います。 learn.microsoft.com learn.microsoft.com 大抵のStringBuilderの利用シーン、new StringBuilderの代わりにnew DefaultInterpolatedStringHandler(0, 0)を使ったほうが良いと思うのだけど、new DefaultInterpolatedStringHandler(0, 0)という呼びづらさが微妙にそれを躊躇わせる。— neuecc (@neuecc) October 17, 2023 はじめに 概要 もうちょい詳しく 実験 結果 概要 実はDefaultInterpolatedStringHandlerをStringBuilderのよう

                      【C#】StringBuilderとDefaultInterpolatedStringHandlerの処理速度・メモリ確保量を比べてみる - はなちるのマイノート
                    • Red Hat Enterprise Linux の PAYGインスタンスから EUS リポジトリをサブスクライブしてみた | DevelopersIO

                      Red Hat Enterprise Linux の PAYGインスタンスから EUS リポジトリをサブスクライブしてみた EUSを使いたい こんにちは、のんピ(@non____97)です。 皆さんはRed Hat Enterprise Linux (以降RHEL)の pay-as-you-go (以降PAYG)のEC2インスタンスでEUSを使いたいなと思ったことはありますか? 私はあります。 EUSとはExtended Update Supportのことで、事前に定義された特定のマイナーリリースに影響度が高いセキュリティ更新と優先度が緊急と判断されたバグフィックスのバックポートを提供するオプションです。 通常、各マイナーリリースのプログラム修正は次のマイナーリリースの提供開始までですが、EUSを使用することで最大2年間同じマイナーリリースで先述したパッケージを適用することが可能です。 R

                        Red Hat Enterprise Linux の PAYGインスタンスから EUS リポジトリをサブスクライブしてみた | DevelopersIO
                      • [アップデート] AWS CodeBuild の Buildspec で Steps フェーズが追加され、GitHub Actions が使えるようになりました | DevelopersIO

                        [アップデート] AWS CodeBuild の Buildspec で Steps フェーズが追加され、GitHub Actions が使えるようになりました いわさです。 AWS CodeBuild では Buildspec というビルド定義を YAML 形式で記述することで、CodeBuild が実行するステップを構成することが出来ます。 これまでは主に Build/Commands で独自にビルド用のコマンドを実行することで構築していました。 本日のアップデートで、CodeBuild の Buildspec に Steps フェーズが追加され、GitHub Marketplace で公開されているアクションが使えるようになりました。 これによって、独自にコマンドを定義するのではなく事前にコミュニティやサードパーティプロバイダーによって提供されているアクションを再利用し、簡単にビルド

                          [アップデート] AWS CodeBuild の Buildspec で Steps フェーズが追加され、GitHub Actions が使えるようになりました | DevelopersIO
                        • Announcing the .NET Core Uninstall Tool 1.0! - .NET Blog

                          No trial. No credit card required. Just your GitHub account. Today we are releasing the .NET Core Uninstall Tool for Windows and Mac! Starting in Visual Studio 2019 version 16.3, Visual Studio manages the versions of the SDK and runtime it installs. In previous versions, SDKs and runtimes were left on upgrade in case those versions were targeted or pinned with global.json. We realized this was not

                            Announcing the .NET Core Uninstall Tool 1.0! - .NET Blog
                          • API Gateway + Lambda で .NET 6 の Minimal API を実行してみる | DevelopersIO

                            いわさです。 AWS Lambda では .NET 6 がサポートされていますが、.NET 6 では Minimal API と呼ばれる、従来とは異なるAPIの実装方法が利用出来るようになっています。 Minimal API を使うと、.NET 上で不要な依存関係などを含まない最小限の Web API を作成することが出来ます。 今回、Minimal API をターゲットにした API Gateway を作成する機会がありましたので、構築の流れをご紹介します。 Minimal API の作成 dotnet new webコマンドで作成されるものは最小限の Minimal API となっています。 本日はこちらを利用します。 % dotnet new web テンプレート "ASP.NET Core Empty" が正常に作成されました。 作成後の操作を処理しています... /Users/i

                              API Gateway + Lambda で .NET 6 の Minimal API を実行してみる | DevelopersIO
                            • Generate Python, Java, and .NET software libraries from a TypeScript source | Amazon Web Services

                              AWS Open Source Blog Generate Python, Java, and .NET software libraries from a TypeScript source As builders and developers, many of us are aware of the principle of Don’t Repeat Yourself (or DRY) and practice it every day. Entire runtimes and programming languages have been developed by taking that principle to an even higher level, with the core idea of writing software once and having it run on

                                Generate Python, Java, and .NET software libraries from a TypeScript source | Amazon Web Services
                              • Announcing .NET Chiseled Containers - .NET Blog

                                No trial. No credit card required. Just your GitHub account. .NET chiseled Ubuntu container images are now GA and can be used in production, for .NET 6, 7, and 8. Canonical also announced the general availability of chiseled Ubuntu containers. Chiseled images are the result of a long-term partnership and design collaboration between Canonical and Microsoft. We announced chiseled containers just ov

                                  Announcing .NET Chiseled Containers - .NET Blog
                                • Polyglot Notebooks - Visual Studio Marketplace

                                  Features Run and execute code for all featured languages Share variables between languages Connect to and query Microsoft SQL Server Connect to and query Kusto clusters Language server support such as completions, syntax highlighting, signature help, and diagnostics for each language See the state of all variables using the Variables View Create detailed diagrams and visualizations using Mermaid I

                                    Polyglot Notebooks - Visual Studio Marketplace
                                  • マイクロサービスを作らない人による .NET Aspire の概要説明(普通に便利)

                                    Microsoft Build 2024 で .NET Aspire のバージョン 1.0 がリリースされました。 ここでは、その .NET Aspire の説明をしたいと思います。 公式ドキュメントは以下になります。 ここでは公式ドキュメントとはちょっと違った切り口で解説していこうと思います。 .NET Aspire とは .NET Aspire は、複数のサービスで構成されるアプリケーション開発やデプロイを支援するツールやライブラリの集合体です。 ここでいうサービスは自分たちで開発するマイクロサービスのこともあれば、既存のサービスやミドルウェアを指すこともあります。つまり単一の Web アプリが Redis や SQL Server に依存するといったケースでも .NET Aspire の恩恵を受けることが出来ます。 また .NET Aspire はアプリケーション開発フレームワークで

                                      マイクロサービスを作らない人による .NET Aspire の概要説明(普通に便利)
                                    • Blazor WebAssembly を触ってみる - その②デバッグしてみる - Qiita

                                      デバッグしよう Blazor WebAssembly を触ってみる - その①環境を整える、サンプルを動かす の続きです。 今回は以下の記事を参考にデバッグ操作を試してみたいと思います。 ASP.NET Core Blazor WebAssembly をデバッグする https://docs.microsoft.com/ja-jp/aspnet/core/blazor/debug?view=aspnetcore-3.1#visual-studio-code Visual Studio Code でやってみる 1. launch.json の確認 .vscode\launch.json がない状態で Run -> Start Debugging (F5) でデバッグ実行をクリックすると、以下のように環境の選択肢が表示されたと思います。 ここで .NET Core を選択すると以下のようなデバ

                                        Blazor WebAssembly を触ってみる - その②デバッグしてみる - Qiita
                                      • Docker+Ubuntu+PostgreSQL セットアップ - Qiita

                                        #--------------------------------- # For Docker #--------------------------------- FROM ubuntu:22.04 #--------------------------------- # For Ubuntu #--------------------------------- #シェル指定 SHELL ["/usr/bin/bash", "-l", "-c"] #初回のアップデートを強制 RUN apt update && apt upgrade -y #最低限のメンテナンスツール #2回目以降のapt installでも毎回updateをして、dockerの差分buildによるキャッシュの悪さを回避する RUN apt-get update && apt-get install -y ca-cert

                                          Docker+Ubuntu+PostgreSQL セットアップ - Qiita
                                        • Easy Set Up of .NET Core on Raspberry Pi and Remote Debugging with VS Code

                                          This article shows how to setup a Raspberry Pi from scratch, install the .NET core SDK and debugger and then demonstrates publishing and debugging a couple of simple programs remotely from a desktop or laptop. Download source - 14 KB GitHub repo with the most up to date code Introduction Having set up Raspberry Pis for .NET core and remote debugging manually, I wanted an easier, more automated sol

                                            Easy Set Up of .NET Core on Raspberry Pi and Remote Debugging with VS Code
                                          • Azure Pipelines だけ使っているプロジェクトを GitHub Actions に移行している話 - しばやん雑記

                                            最近は Azure Pipelines だけを使っている GitHub 上のプロジェクトを、徐々に GItHub Actions に移行しています。Azure Pipelines は Approvals や Gates などが便利ですが、OSS で一人開発しているような場合は GitHub Actions に寄せておいた方が都合が良かったです。 GitHub Actions はみんな知っているようにインフラ周りは Azure Pipelines と同じで、Azure Pipelines で言うところの Task が Action として提供されているので移行は比較的し易かったです。 まずは YAML についてドキュメントを読んでおきましょう。Azure Pipelines との差分をまとめてある移行ガイドもあります。多少構造は違いますが、すぐに理解できます。 YAML の構造とかは公式ドキ

                                              Azure Pipelines だけ使っているプロジェクトを GitHub Actions に移行している話 - しばやん雑記
                                            • .NET Coreの汎用ホストを使ってバッチを作ってみる - athome-developer’s blog

                                              こんにちは、情報システム部の高野です。 とある方のつぶやきで初めて知ったのですが、 .NET Core 2.1で汎用ホストなるものが追加されていたのですね。 docs.microsoft.com これでバッチ処理などのバックエンドのプログラムも ASP.NET Coreのようにインジェクションなどの設定ができそう! ということでサンプルを作ってみたので手順を書いておきます。 とりあえず環境 .NET Core SDK v2.1.403 VisualStudio Code v1.29.0 プロジェクトの作成 汎用ホスト用のテンプレートは今のところ無いのでconsoleで作成します。 dotnet new console -o GenericHostSample cd GenericHostSample dotnet restore VS Codeのデバッグ設定 VS Codeでプロジェクトを

                                                .NET Coreの汎用ホストを使ってバッチを作ってみる - athome-developer’s blog
                                              • neue cc - C#による自家製静的サイトジェネレーターに移行した話

                                                見た目はほとんど変わっていませんが(とはいえ横幅広くしたので印象は結構変わったかも)、このサイト、フルリニューアルしました。内部構造が。完全に。別物に。元々はWordPressだったのですが、今回から自作の静的サイトジェネレーターでhtmlを生成し、GitHub Pagesでホストするようにしました。元になるソース(.md)もGitHub上に置き、GitHub ActionsでビルドしてGitHub Pagesでホスティングされるという、完全GitHub完結ソリューション。また、記事を書くエディタもGitHub web-based editor(リポジトリのトップで.を打つと、VS Codeそのものが起動するやつ)を利用することで、非常に快適で、というかMarkdownエディタとしては最高品質のものが乗っかっていて、たかがブログ書くにしては面倒くさいPush/Pullもなくダイレクトコミッ

                                                • Hello, Redis Stack - Redis

                                                  Today we’re thrilled to announce Redis Stack. Redis Stack consolidates the capabilities of the leading Redis modules into a single product, making it easy for developers to build modern, real-time applications with the speed and stability of Redis. Prologue At Redis, we’re building a real-time data layer to meet the universal demand for responsive, low-latency applications and services. To build a

                                                    Hello, Redis Stack - Redis
                                                  • GTK# プラットフォームの設定 - Xamarin

                                                    Xamarin.Forms では、現在、GTK# アプリのプレビュー サポートが提供されています。 GTK# は、GTK+ ツールキットとさまざまな GNOME ライブラリをリンクするグラフィカル ユーザー インターフェイス ツールキットであり、Mono と .NET を使用して完全にネイティブな GNOME グラフィックス アプリを開発できます。 この記事では、GTK# プロジェクトを Xamarin.Forms ソリューションに追加する方法について説明します。 Visual Studio Visual Studio for Mac Windows デスクトップで実行される GTK# アプリを追加するには、次の手順に従います。 Visual Studio 2019 で、ソリューション エクスプローラーのソリューション名を右クリックし、[追加] > [新しいプロジェクト] を選択します。

                                                      GTK# プラットフォームの設定 - Xamarin
                                                    • Elmish · Elmish

                                                      -ish a suffix used to convey the sense of “having some characteristics of” Elmish implements core abstractions that can be used to build F# applications following the “model view update” style of architecture, as made famous by Elm. The goal of the architecture is to provide a solid UI-independent core to build the rest of the functionality around. Elm architecture operates using the following con

                                                      • Async in C#, .NET, and Unity: Allocation and state machine builders

                                                        Async in C#, .NET, and Unity: Allocation and state machine builders While helping with little something that uses Unity I came across the rabbit hole async/await support is in Unity. Historically Unity used generators (known as coroutines in Unity’s world) to support async/multiple-frames-spanning computation. In 2017 they added initial support for async/await but without any meaningful libraries

                                                          Async in C#, .NET, and Unity: Allocation and state machine builders
                                                        • .NET 5 を使いたい理由6選(ASP.NET Core編)CCT-recruit | CCT-recruit

                                                          フロントエンドからバックエンドまでC#を使いたい .NET 5 では、コアモジュールのパフォーマンス向上、言語面の進化に加え、ASP.NET Coreも進歩しました。この記事ではASP.NET Coreの進歩に着目します。 私たちが ASP.NET Core 5 を使わない理由はあるでしょうか。 おそらく「C#のエンジニアが揃ったチームの新規開発」のシナリオにおいてそれはほとんどありません。積極的に使いたい理由を6つ取り上げます。 使いたい理由1 : 最新のC#9をサポートしている C#9の record をサポートしています。recordはclassの拡張なので動いて当然といえば当然と思えますが、こうした言語の拡張がスムーズに取り込まれていくことはとても重要です。そしてこれも.NET / C#の魅力です。 C#で近年強化された何を使うことができるでしょうか。 例えば、パターンマッチングを

                                                          • ASP.NET Core などで使われている Generic Host (汎用ホスト) を見てみよう

                                                            最近 (といっても何年も前からですが…) ASP.NET Core などの Web アプリケーションを作ると以下のようなコードが Program.cs に書いてあったりします。 using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.Hosting; using Microsoft.Extensions.Logging; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace WebApplication5 { public class Program { public static

                                                              ASP.NET Core などで使われている Generic Host (汎用ホスト) を見てみよう
                                                            • GitHub Actions now with Manual Approvals

                                                              Implement deployment gating with manual approvals in GitHub Actions, now available with the Environments feature. I’ve loved GitHub Actions since they were released, but the one piece I always felt was missing was some kind of gating or more control around deployments. Now we can add manual approval requirements to our workflows through GitHub’s new Environments configurations. Environments also s

                                                                GitHub Actions now with Manual Approvals
                                                              • AWS Toolkit for VS Code に App Runner管理機能が追加されたのでためしてみた | DevelopersIO

                                                                いわさです。 Visual Studio Code では、AWS Toolkit for Visual Sutdio Codeという拡張機能が提供されていますが、今回こちらにAWS App Runnerの統合機能が追加されました。 App Runnerをスルーしていたなーと思っていたので、良い機会ですし触ってみました。 Webアプリ用意 まずは、Webアプリを用意します。 App Runnerではコードからデプロイする機能とコンテナをデプロイする機能があるようで、コードランタイムはPythonとNode.jsのみ現時点では対応しているようです。 皆さんASP.NETを使いたいだろうと思いますので、今回はコンテナイメージから用意したいと思います。 ASP.NET CoreのMVCテンプレートにDockerFileを追加したものをデプロイに使います。 dotnetコマンドでスケルトンを作成し、

                                                                  AWS Toolkit for VS Code に App Runner管理機能が追加されたのでためしてみた | DevelopersIO
                                                                • C#が好きな3つの理由 - Findy Engineer Lab

                                                                  自己紹介 初めまして。北澤 亮太 ( @Anteccq ) といいます。Sansan 株式会社でエンジニアとして日々業務に携わっています。 C# を学生の頃からずっと書いています。10年位前に WinForms で初めて GUI アプリを作ったときの楽しさを忘れられず、そこからずっと C# を続けています。 学生の時は WinForms をちょこっとやり、そのあと長い間 WPF アプリをずっと書いていました。UWP 触ったり WinUI3 を触ったりしながらふらふらしていたら、今の会社に新卒で拾っていただき、業務でサーバーサイド C# 開発に携わらせてもらえるようになりました。一般的な API からサーバーレス、フロントエンドなどさまざまなものまで、すべて C# 漬けでいろいろ書けています。 今日はそんな大好きな C# について、好きなところを好きなように、思いつくままに書きたいと思います

                                                                    C#が好きな3つの理由 - Findy Engineer Lab
                                                                  • New C# Source Generator Samples - .NET Blog

                                                                    Phillip introduced C# Source Generators here. This post describes two new generators that we added to the samples project in the Roslyn SDK github repo. The first generator gives you strongly typed access to CSV data. The second one creates string constants based on Mustache specifications. Source Generators Overview It is important to have a good mental picture of how source generators operate. C

                                                                      New C# Source Generator Samples - .NET Blog
                                                                    • [アップデート] Amazon RDS for PostgreSQL で tcn 拡張モジュールが利用出来るようになったので .NET クライアントアプリで通知を受信してみた | DevelopersIO

                                                                      [アップデート] Amazon RDS for PostgreSQL で tcn 拡張モジュールが利用出来るようになったので .NET クライアントアプリで通知を受信してみた いわさです。 本日 RDS for PostgreSQL で tcn 拡張モジュールがサポートされたとアナウンスがされていました。 tcn 自体は以前から存在していたようですが、RDS for PostgreSQL では先日のマイナーバージョンアップデート(14.6, 13.9, 12.13, 11.18)から利用が出来るようになったということのようです。 tcn は Trigger Change Notification の略で(多分)、テーブルに関する変更を通知することが出来る組み込みの拡張モジュールです。 本日はこちらの基本的な使い方を確認しながら、.NET クライアントアプリケーションで通知を受信するというこ

                                                                        [アップデート] Amazon RDS for PostgreSQL で tcn 拡張モジュールが利用出来るようになったので .NET クライアントアプリで通知を受信してみた | DevelopersIO
                                                                      • チュートリアル - .NET の Azure Web アプリを使用して Azure Key Vault を使用する

                                                                        Azure Key Vault は、資格情報やその他のシークレットをより安全に格納する方法を提供します。 ただし、それらを取得するためには、コードから Key Vault に対する認証を行う必要があります。 Azure リソースのマネージド ID に関するページは、Microsoft Entra ID で自動的に管理される ID を Azure サービスに提供することで、この問題を解決するのに役立ちます。 この ID を使用して、コードに資格情報が表示されていなくても、Key Vault を含む Microsoft Entra の認証をサポートする任意のサービスに認証することができます。 このチュートリアルでは、Azure Web アプリケーションを作成して Azure App Service にデプロイします。 マネージド ID、Azure key vault、.NET 用の Azure

                                                                          チュートリアル - .NET の Azure Web アプリを使用して Azure Key Vault を使用する
                                                                        • Nightmare - Nightmare

                                                                          Nightmare is an intro to binary exploitation / reverse engineering course based around ctf challenges. I call it that because it's a lot of people's nightmare to get hit by weaponized 0 days, which these skills directly translate into doing that type of work (plus it's a really cool song). What makes Nightmare different? It's true there are a lot of resources out there to learn binary exploitation

                                                                          • GitHub - taishi-i/awesome-ChatGPT-repositories: A curated list of resources dedicated to open source GitHub repositories related to ChatGPT

                                                                            Prompts prompt-layer-library - 🍰 PromptLayer - Maintain a log of your prompts and OpenAI API requests. Track, debug, and replay old completions. langwatch - The ultimate LLM Ops platform - Monitoring, Analytics, Evaluations, Datasets and Prompt Optimization ✨ Chatbots Hexabot - Hexabot is an open-source AI chatbot / agent builder. It allows you to create and manage multi-channel and multilingual

                                                                              GitHub - taishi-i/awesome-ChatGPT-repositories: A curated list of resources dedicated to open source GitHub repositories related to ChatGPT
                                                                            • PowerPoint Presentation

                                                                              © 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. 1 © 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. AWS 公式 Webinar https://amzn.to/JPWebinar 過去資料 https://amzn.to/JPArchive Solutions Architect 柳 嘉起 2020/8/25 EC2 Image Builder サービスカットシリーズ [AWS Black Belt Online Seminar] © 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. 2 自己紹介

                                                                              • Azure Communication Services を使って Azure マネージドサービスのみでメールを送信出来るようになっていたので試してみた | DevelopersIO

                                                                                Azure Communication Services を使って Azure マネージドサービスのみでメールを送信出来るようになっていたので試してみた いわさです。 この記事は 「Azure Advent Calendar 2022」の 17 日目の記事となります。 これまで Azure にはメール送信するためのマネージドサービスがなく SendGrid などの外部サービスを利用する方法が使われていたと思います。 どうやらここ数ヶ月で Azure Communication Services を使った E メール送信というのが出来るようになったようです。知らなかった。 遡って調べてみると、この機能は今年 5 月の Microsoft Build 2022 でアナウンスされていた機能のようでして、現在プレビューで利用が可能です。 まだプレビューということもあり E メール送信システムに必要

                                                                                  Azure Communication Services を使って Azure マネージドサービスのみでメールを送信出来るようになっていたので試してみた | DevelopersIO
                                                                                • Entity Framework Core 5 - Pitfalls To Avoid and Ideas to Try | The .NET Tools Blog

                                                                                  IDEs AppCode CLion DataGrip DataSpell Fleet GoLand IntelliJ IDEA PhpStorm PyCharm RustRover Rider RubyMine WebStorm Plugins & Services Big Data Tools Code With Me Quality Assurance JetBrains Platform Scala Toolbox App Writerside JetBrains AI Grazie Team Tools Datalore Space TeamCity Upsource YouTrack Hub Qodana .NET & Visual Studio .NET Tools ReSharper C++ Languages & Frameworks Kotlin Ktor MPS Am

                                                                                    Entity Framework Core 5 - Pitfalls To Avoid and Ideas to Try | The .NET Tools Blog