投稿時間:2023-05-24 17:17:55 RSSフィード2023-05-24 17:00 分まとめ(19件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT InfoQ ASP.NET Core in .NET 8 Preview 4: Blazor Streaming, Form Handling, Native AOT, Identity API and More https://www.infoq.com/news/2023/05/asp-net-core-8-p4/?utm_campaign=infoq_content&utm_source=infoq&utm_medium=feed&utm_term=global ASP NET Core in NET Preview Blazor Streaming Form Handling Native AOT Identity API and MoreThe latest release of NET Preview brings significant improvements to ASP NET Core Notable enhancements include Blazor s streaming rendering and form handling expanded support for form binding in minimal APIs Native AOT compilation for improved performance enhanced authentication and authorization with Identity API endpoints and the addition of metrics for application monitoring By Almir Vuk 2023-05-24 07:40:00
IT ITmedia 総合記事一覧 [ITmedia News] 乗換NAVITIME、「早歩きで1本前の電車に乗れる」ルートを提案 https://www.itmedia.co.jp/news/articles/2305/24/news172.html itmedia 2023-05-24 16:32:00
IT ITmedia 総合記事一覧 [ITmedia News] GMO Web3、「GMO AI &Web3」に社名変更 ベンチャーキャピタルとしてスタートアップ支援へ https://www.itmedia.co.jp/news/articles/2305/24/news170.html gmoaiweb 2023-05-24 16:20:00
IT ITmedia 総合記事一覧 [ITmedia News] ソニー、レンズ一体型VLOGカメラ 「ZV-1 II」発売 「映える動画を手軽に」 https://www.itmedia.co.jp/news/articles/2305/24/news160.html itmedia 2023-05-24 16:06:00
TECH Techable(テッカブル) AI顔認証を活用した登降園管理ツールがリリース!送迎バスの置き去りゼロへ https://techable.jp/archives/208455 取り組み 2023-05-24 07:00:53
IT 情報システムリーダーのためのIT情報専門サイト IT Leaders AIモデル作成ツール「IBM watsonx」、基盤モデルをベースに追加学習でチューニング | IT Leaders https://it.impress.co.jp/articles/-/24861 AIモデル作成ツール「IBMwatsonx」、基盤モデルをベースに追加学習でチューニングITLeaders日本IBMは年月日、オンラインで会見し、企業向けAIモデル作成・運用基盤「IBMwatsonx」の概要を説明した。 2023-05-24 16:40:00
AWS AWS Japan Blog コンテナイメージのプリフェッチによる Pod の起動高速化 https://aws.amazon.com/jp/blogs/news/start-pods-faster-by-prefetching-images/ fasterbyprefetchingimages 2023-05-24 07:07:47
golang Goタグが付けられた新着投稿 - Qiita Go言語のポインタについて理解する https://qiita.com/__hawk__/items/9f2b321b26d842700e42 funcmain 2023-05-24 16:51:22
Azure Azureタグが付けられた新着投稿 - Qiita このAI時代における5つの新たな開発者のチャンス「Microsoft Build Satya session抜粋」 https://qiita.com/kane_sss/items/9abac6192c608282ca66 buildsatyasession 2023-05-24 16:42:24
技術ブログ Developers.IO クラスメソッドに入社して半年以上経過したので振り返ってみる https://dev.classmethod.jp/articles/takeda-6months-after-join/ 経過 2023-05-24 07:26:48
海外TECH DEV Community Deploying Between Environments with Power Automate Instead of Pipelines https://dev.to/wyattdave/deploying-between-environments-with-power-automate-instead-of-pipelines-3fm0 Deploying Between Environments with Power Automate Instead of PipelinesAlthough not a function from the outset And I think it should have been ALM has been a definite focus for Microsoft first with Dev Ops pipelines and now the new Power Platform pipelines But neither are quite perfect Dev Ops is anything but LowCode and requires support from your IT dept The new pipelines look promising though they are still very much in preview missing features and they require managed environments Managed environments are great with lots of features but they require all makers AND users to have premium licenses So that bog standard SharePoint Power App would require all its uses to have premium license even though there are now premium capabilities The great thing about the Power Platform is it s built in Dataverse the same place where we can store our data and it has a great API Even better there are Admin Dataverse connectors also built on the API so that means with the right know how we can pretty much build our own pipeline There are a couple of caveatsThe pipeline solution would have to be installed in every environmentThe maker owner of the solution would have to have System Admin Customizer security roleThere is no way to sign in for any maker owner so when a solution is imported for the first time a human in the loop step is required to sign in the connection references So for my pipeline there are a couple of componentsSharePoint List as trigger and trackerSharePoint List for human in the loop actionsExport FlowImport FlowChange Owner FlowAn Environment VariableThe solution looks like this The overarching design plan is below which each environment passing the solution along For protection I set the list to edit only records that way others cant trigger peoples pipelines SharePoint list should have following fieldsSolution NameVersion NumberFrom EnvironmentTo EnvironmentDeployment Dev Test Test Prod Dev Dev Change Number for Test to Prod to show compliance Service Account owner of solution in Test Prod Account Sign in used to request manual sign in to connectors Status Queued Exporting Exported Importing Complete Failed Not Approved Error Message Fail messages or not approved details Solution Data where we store the solution The first should be filled in by the requester Status should default to Queued Solution Data and Error Message left empty and filled in by the flows The Status is used by the flows as the key trigger condition Queued triggers exportExporting while creating exportExported when export complete and triggers importImporting while importing including waiting for approval Complete import completeNot Approved if not approvedFailed any exception Point of reference my solutions follows my business processes so yours might not be the same For me Dev Test does not require any approval Nothing can go from Dev to Prod it has to go Dev to Test to Prod Test to Prod requires a pre approved change request with all test evidence and approvals Someone has to then validate approve the change request to ensure its valid before imports to Prod To help control identify this all our environments have either DEV TEST or PROD in their name this helps the flow know when to request change approval The Export FlowThe export flow is triggered when the from environment is its environment this is stored in an environment variable and status is Queued equals triggerOutputs body FromEnvirnoment parameters Environment ia Environment equals triggerOutputs body Status Value Queued First it updates the SharePoint item to Exporting this is to make sure we don t have any accidental triggers and to let user know the flow has started It will then use the Unbound Dataverse action to create a solution export selecting ExportSolution as the Action Name The outputs Perform an unbound action body ExportSolutionFile will be stored in the Solution Data field A backup of the export can be saved as an attachment but we need to convert the contents from base to binary we can then attach it So the full flow should look something like this The Import FlowThe import flow is triggered when the To environment is its environment this is stored in an environment variable and status is Exported First it updates the SharePoint item to Importing this is to make sure we don t have any accidental triggers and to let user know the flow has started As I mentioned I have additional steps for Test to Prod imports so the flow will first do some checksNo ApprovalType Dev to Test or Dev to DevFrom Environment includes DEVTo Environment does not include PRODApprovalType Test ProdFrom Environment includes TESTTo Environment includes PRODI use the SharePoint List with the Human in the Loop names to create the approvers for the approval flow If it does not follow one of the two patterns an exception will be reported We use the unbound action again but this time Action Name ImportSolution The export contents was stored in the Solution Data field and we need to create a unique import guid guid At this point we have successfully imported our solution but there are a couple for things still to do First we need to check if the connections need updating As I said we can t create those connections without signing in as that account But once connected future imports will be ok and can use the signed in connection references This is just another simple logic that sends approval request once they have completed the sign ins they set to approved ie complete Again the SharePoint List with Human in the Loop people is used for the approvers Next we need to change the owner of the Solution as all of its contents flows apps connection refs environment vars etc are now owned the account that ran the import flow To keep things simple this is a separate child flow and I will go over it in the next blog it s useful to use outside of pipelines Though if you plan to us same account then you can skip this stage Then as before final step is to update the SharePoint item but this time to Complete As you can see it s not exactly simple but I wouldn t say difficult and if you want to save money on premium licenses it could be the way to go Im hopeful in the furture I might be abale to automate the connections as its in another dataverse table too 2023-05-24 07:10:30
海外TECH DEV Community Cryptography in Blockchain 🤑 | Asymmetric Key Cryptography & Hashing 🚀🚀 | Part-3 https://dev.to/akshaykurhekar/cryptography-in-blockchain-asymmetric-key-cryptography-hashing-part-3-2cei Cryptography in Blockchain Asymmetric Key Cryptography amp Hashing Part Hi This blog contain the PPT slides of my YouTube video seriesCryptography in Blockchain on Asymmetric Key Cryptography amp Hashing 2023-05-24 07:10:08
海外TECH Engadget Logitech's Pro X 2 gaming headset promises longer battery life https://www.engadget.com/logitechs-pro-x-2-gaming-headset-promises-longer-battery-life-070129596.html?src=rss Logitech x s Pro X gaming headset promises longer battery lifeIf you ve been looking to get a new gaming headset or your very first Logitech has a few new options The company is today updating its Pro gaming headset with a few notable changes that not only makes it a better gaming headset but potentially a great set of all purpose headphones First and foremost the new Pro X headset features a new mm Pro G Graphene audio driver Why is that important Graphene drivers are typically more power efficient which is likely why Logitech claims the new headset nets up to hours on a single charge That s over twice the battery life compared to the outgoing model s hours The headset is more versatile as well In addition to Logitech s own proprietary Lightspeed wireless codec the Pro X now supports Bluetooth audio and a wired connection over the standard mm audio connector previously you had to choose whether you wanted a wired or wireless headset not both The headset also now supports the standard DTS headphone X spec for an immersive surround sound experience Of course it wouldn t be a headset if we didn t talk about microphones The Pro X features a detachable mm cardioid microphone with Logitech s own Blue “VO CE filters to help reduce background noise for crisp and clear vocals The filters are available via the same G Hub software as the original headset The Pro X features an aluminum and steel frame with swappable earpads The earpads are made out of both leather and velour making them a great choice for long term use Swappable earpads are great as it makes it super easy to replace them if they re starting to peel The Logitech G Pro X Lightspeed retails for and will be available starting today in the US and Canada This article originally appeared on Engadget at 2023-05-24 07:01:29
医療系 医療介護 CBnews 国購入のコロナ薬、保有する機関に所有権移転-薬局からの譲渡を容認、厚労省 https://www.cbnews.jp/news/entry/20230524155012 医療機関 2023-05-24 16:10:00
金融 ニッセイ基礎研究所 1ドル140円が再び視野に、円安がぶり返したワケ~マーケット・カルテ6月号 https://www.nli-research.co.jp/topics_detail1/id=74866?site=nli ドル円が再び視野に、円安がぶり返したワケマーケット・カルテ月号今月月初に円台後半でスタートしたドル円は、米金融システム不安への警戒や月FOMCを受けた利上げ打ち止め観測、米物価上昇率の鈍化などを受けて、月の半ばにかけてたびたびドル円を割り込んだ。 2023-05-24 16:43:20
ニュース BBC News - Home Woman hit by Duchess of Edinburgh police escort dies https://www.bbc.co.uk/news/uk-65691643?at_medium=RSS&at_campaign=KARANGA court 2023-05-24 07:44:52
ニュース BBC News - Home Cardiff riots: Killed teenagers not chased, say police https://www.bbc.co.uk/news/uk-wales-65692972?at_medium=RSS&at_campaign=KARANGA policepolice 2023-05-24 07:37:38
ニュース BBC News - Home Valencia fined and given partial stadium ban over racist abuse https://www.bbc.co.uk/sport/football/65691729?at_medium=RSS&at_campaign=KARANGA Valencia fined and given partial stadium ban over racist abuseValencia are sanctioned with a partial stadium closure for five matches and fined following the racist abuse of Real Madrid forward Vinicius Jr 2023-05-24 07:31:10
ニュース THE BRIDGE 製造業向けAI×SaaS「最適ワークス」スカイディスクが8億円資金調達 https://thebridge.jp/2023/05/skydisc-raised-800m-yen 製造業向けAI×SaaS「最適ワークス」スカイディスクが億円資金調達製造業向けにクラウド型の生産管理ソリューション「最適ワークス」を提供するスカイディスクは月日、新規及び既存投資家を引受先とした第三者割当増資と金融機関からのデットファイナンスにより、約億円の資金調達を実施した。 2023-05-24 07:17:12

コメント

このブログの人気の投稿

投稿時間:2021-06-17 05:05:34 RSSフィード2021-06-17 05:00 分まとめ(1274件)

投稿時間:2021-06-20 02:06:12 RSSフィード2021-06-20 02:00 分まとめ(3871件)

投稿時間:2020-12-01 09:41:49 RSSフィード2020-12-01 09:00 分まとめ(69件)