投稿時間:2023-03-15 20:26:24 RSSフィード2023-03-15 20:00 分まとめ(31件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT ITmedia 総合記事一覧 [ITmedia News] ChatGPT、「まったく知らない」7割 認知度まだまだ低い https://www.itmedia.co.jp/news/articles/2303/15/news214.html chatgpt 2023-03-15 19:33:00
IT ITmedia 総合記事一覧 [ITmedia News] JALのスマホ決済「JAL Pay」、3月22日から https://www.itmedia.co.jp/news/articles/2303/15/news213.html itmedianewsjal 2023-03-15 19:30:00
python Pythonタグが付けられた新着投稿 - Qiita pytorchで書かれたモデルのパラメータ数を数える https://qiita.com/Shoelife2022/items/ddd0122b4e5f84aca686 porttorchimporttorchnnas 2023-03-15 19:58:04
python Pythonタグが付けられた新着投稿 - Qiita プリクラをAIで高画質化 https://qiita.com/john-rocky/items/1cdb1c972bc0e2d941f7 高画質 2023-03-15 19:40:40
python Pythonタグが付けられた新着投稿 - Qiita PyGWalker 0.1.6. 更新: ビジュアライゼーションをコードにエクスポート https://qiita.com/christ-qitta-martin/items/bf85a08cb0f08cb8f920 pygwa 2023-03-15 19:34:37
js JavaScriptタグが付けられた新着投稿 - Qiita 古い gulp ファイルを動かす(node-sass エラー) https://qiita.com/takuyabe/items/05ce0ceb6babd487bcaf microcms 2023-03-15 19:57:18
Ruby Rubyタグが付けられた新着投稿 - Qiita Rubyでじゃんけんコードを書いてみよう https://qiita.com/Yuma_z/items/79f16c9c9a4a42cc3bad 記事 2023-03-15 19:42:21
Linux Ubuntuタグが付けられた新着投稿 - Qiita 最速で Azure App Service を立ち上げる https://qiita.com/fsdg-adachi_h/items/35479d577e46d8804aa9 azureappse 2023-03-15 19:08:17
AWS AWSタグが付けられた新着投稿 - Qiita Cloud BillingをAWSへ取り込む https://qiita.com/yukinko1222/items/a59664493f65d8adde55 googl 2023-03-15 19:24:40
AWS AWSタグが付けられた新着投稿 - Qiita 【Rails, AWS】CI/CDによる自動化とインフラ周りを解説【GitHub Actions, Capistrano】 https://qiita.com/moriw0/items/38b5ee4348087df92682 githubactionscapistrano 2023-03-15 19:08:40
GCP gcpタグが付けられた新着投稿 - Qiita Cloud BillingをAWSへ取り込む https://qiita.com/yukinko1222/items/a59664493f65d8adde55 googl 2023-03-15 19:24:40
Azure Azureタグが付けられた新着投稿 - Qiita 最速で Azure App Service を立ち上げる https://qiita.com/fsdg-adachi_h/items/35479d577e46d8804aa9 azureappse 2023-03-15 19:08:17
技術ブログ Developers.IO [Notion]GitHub リポジトリの最新リリースノートをActions WorkflowでNotionDB上に出力してみた https://dev.classmethod.jp/articles/output-github-repos-release-note-to-notion-db/ actionsworkflow 2023-03-15 10:48:20
技術ブログ Developers.IO プロンプトエンジニアリングを加速する、AI モデルの性能評価フレームワーク「OpenAI Evals」を試してみた https://dev.classmethod.jp/articles/openai-evals-trial/ chatgpt 2023-03-15 10:47:35
海外TECH MakeUseOf How to Download Full-Resolution Photos From iCloud https://www.makeuseof.com/how-to-download-full-resolution-photos-from-icloud/ download 2023-03-15 10:45:16
海外TECH MakeUseOf What Is a Low Power Wide Area Network and What Are Its Uses? https://www.makeuseof.com/what-is-low-power-wide-area-network-and-its-uses/ network 2023-03-15 10:30:16
海外TECH MakeUseOf Can Wireless Charging Damage Your Smartphone? https://www.makeuseof.com/can-wireless-charging-damage-your-smartphone/ battery 2023-03-15 10:24:28
海外TECH MakeUseOf Are Apple Silicon Chips the Future of Gaming? https://www.makeuseof.com/apple-silicon-chips-future-of-gaming/ apple 2023-03-15 10:15:16
海外TECH DEV Community .NET 8 is on the way! Discover its new Features🚀 https://dev.to/bytehide/net-8-is-on-the-way-discover-its-new-features-4oil NET is on the way Discover its new FeaturesCan you believe it It feels like just yesterday that we were geeking out over NET and here we are already talking about NET Time flies when you re coding up a storm But fear not Microsoft is hard at work bringing us the latest and greatest features that we ll be exploring in this article So sit back relax and let s dive into all the exciting new updates that NET has in store for us dotnet publish and dotnet packMicrosoft just released an awesome new feature for the dotnet publish and dotnet pack commands that makes it even easier to produce production ready code Before this update these commands produced Debug assets by default which could be a bit of a hassle if you wanted to produce production ready code But now with the new update dotnet publish and dotnet pack produce Release assets by default which means you can easily produce production ready code without any extra steps But don t worry if you still need to produce Debug assets for any reason it s still possible to do so by setting the in false the PublishRelease property How dotnet publish and dotnet pack works First let s create a new console application using the dotnet new console command Then let s build the project using dotnet build and take a look at the output In this case the output will be in Debug mode since that s the default behavior of dotnet build Next let s run the dotnet publish command to produce production ready code With the new update this command will now produce Release assets by default which is exactly what we want for production code We can see the Release assets in the app bin Release net directory Finally let s say we need to produce Debug assets for some reason We can do that by running the dotnet publish command again but this time we ll set the PublishRelease property to false This will produce Debug assets instead of Release assets which we can see in the app bin Debug net directory And that s it With this new feature it s now easier than ever to produce production ready code using the dotnet publish and dotnet pack commands Check dotnet publish and dotnet pack Improvements in System Text Json serializationSystem Text Json is a built in NET library that provides JSON serialization and deserialization functionality It allows developers to convert NET objects to JSON data and vice versa Now System Text Json serialization and deserialization functionality has been improved in various ways for NET Another series of improvements included in this preview are in the source generator when used with ASP NET Core in Native AOT apps making it more reliable and faster Additionally the source generator will support in NET serializing types with required and init properties which were already supported in reflection based serialization Moreover customization of serialization for members that aren t present in the JSON payload is now possible Lastly properties from interface hierarchies can now be serialized including those from both the immediately implemented interface and its base interface Let s check this example IDerived value new DerivedImplement Base Derived JsonSerializer Serialize value Base Derived public interface IBase public int Base get set public interface IDerived IBase public int Derived get set public class DerivedImplement IDerived public int Base get set public int Derived get set Now the JsonNamingPolicy has been expanded to include naming policies for snake case with an underscore and kebab case with a hyphen property name conversions These new policies can be utilized in the same way as the JsonNamingPolicy CamelCase policy var options new JsonSerializerOptions PropertyNamingPolicy JsonNamingPolicy SnakeCaseLower JsonSerializer Serialize new PropertyName value options property name value The JsonSerializerOptions MakeReadOnly method gives you explicit control over when a JsonSerializerOptions instance is frozen You can also check whether it s read only with the IsReadOnly property Check System Text Json serialization GetItems The GetItems lt T gt method is a new feature in NET that allows you to randomly select a specific number of items from a given set of elements This can be useful in games simulations and other applications where randomness is desired The method is available in both System Random and System Security Cryptography RandomNumberGenerator In this example we have an array of City objects and we use the GetItems lt T gt method to randomly select cities from the array private static ReadOnlySpan lt City gt s allCities new new City New York USA new City London UK new City Paris France new City Tokyo Japan new City Sydney Australia City selectedCities Random Shared GetItems s allCities foreach City city in selectedCities Console WriteLine city Name city Country Output Paris France Tokyo Japan Sydney AustraliaWe then loop through the selected cities and print their name and country to the console The output will be different each time we run the program because the cities are selected randomly Check GetItems Shuffle The Shuffle lt T gt method is another new feature in NET that allows you to randomize the order of elements in a span This is important in machine learning instances when you wish to eliminate training bias by randomizing training data order Here s an example that shows how to use Shuffle lt T gt with an array of YourType objects YourType trainingData LoadTrainingData Random Shared Shuffle trainingData IDataView sourceData mlContext Data LoadFromEnumerable trainingData DataOperationsCatalog TrainTestData split mlContext Data TrainTestSplit sourceData model chain Fit split TrainSet IDataView predictions model Transform split TestSet In this example we load some training data into an array of YourType objects and use Random Shared to shuffle the order of the elements We then load the shuffled data into an IDataView object split the data into training and test sets and use the shuffled training data to train a machine learning model Finally we use the trained model to make predictions on the test set Check Shuffle Performance Improvements NET introduces several new types that are focused on improving app performance These new types are The System Collections Frozen namespace includes two collection types FrozenDictionary lt TKey TValue gt and FrozenSet lt T gt These types do not allow any changes to keys and values once a collection is created which allows for faster read operations such as TryGetValue They are particularly useful for collections that are populated on first use and then persisted for the duration of a long lived service private static readonly FrozenDictionary lt string bool gt s configurationData LoadConfigurationData ToFrozenDictionary optimizeForReads true if s configurationData TryGetValue key out bool setting amp amp setting Process The System Text CompositeFormat type is useful for optimizing format strings that aren t known at compile time A little extra time is spent up front to do work such as parsing the string but it saves the work from being done on each use private static readonly CompositeFormat s rangeMessage CompositeFormat Parse LoadRangeMessageResource static string GetMessage int min int max gt string Format CultureInfo InvariantCulture s rangeMessage min max The System Buffers IndexOfAnyValues lt T gt type is designed to be passed to methods that look for the first occurrence of any value in the passed collection NET adds new overloads of methods like String IndexOfAny and MemoryExtensions IndexOfAny that accept an instance of the new type Check Performance focused types Native AOT NET brings improvements to the native ahead of time AOT compilation feature that was first introduced in NET Publishing an application as native AOT generates a self contained version of the app that doesn t require a runtime as everything is included in a single file In addition to the existing support for various platforms NET now includes support for the x and Arm architectures on macOS This means that developers can now publish their NET apps as native AOT for macOS systems The latest improvements to native AOT apps on Linux systems have resulted in significantly reduced application sizes According to recent tests native AOT apps built with NET Preview now take up to less space compared to those built with NET You can see in the table below a comparison of the size of a “Hello World app published with native AOT and including the entire NET runtime between the two versions Operating System NET NET Preview Linux x with p StripSymbols true MB MBWindows x MB MBThese improvements in native AOT can help NET developers to create smaller faster and more efficient apps that run on a variety of platforms without requiring any external dependencies Check Native AOT Code generation NET also has some improvements in code generation and JIT Just In Time compilation enhancing performance and efficiency Arm architecture performance improvements SIMD Single Instruction Multiple Data improvements for better vectorization and parallelization of operations Cloud native improvements for better performance in containerized environments Profile guided optimization PGO improvements that enable better optimizations based on application usage patterns Support for AVX ISA extensions for more efficient floating point operations on modern CPUs JIT Just In Time t hroughput improvements for faster code generation Loop and general optimizations that improve the performance of frequently used code blocksThese improvements help developers to optimize the performance of their NET applications and reduce resource utilization in cloud native environments Check Code generation NET container images NET also makes a few changes to the way NET container images work First Debian Bookworm is now the default Linux distribution in the container images Additionally the images include a non root user to make the images non root capable To run as non root add the line USER app at the end of your Dockerfile or a similar instruction in your Kubernetes manifests The default port has also changed from to and a new environment variable ASPNETCORE HTTP PORTS is available to make it easier to change ports The format for the ASPNETCORE HTTP PORTS variable is easier compared to the format required by ASPNETCORE URLS and it accepts a list of ports If you change the port back to using one of these variables it won t be possible to run as non root To pull the NET Preview SDK you can use the following tag which includes the preview suffix in the tag name for preview container images docker run rm it mcr microsoft com dotnet sdk previewThe suffix preview will no longer be used for release candidate RC releases In addition developers can use chiseled Ubuntu images with NET that offer a smaller attack surface no package manager or shell and non root capability These images are ideal for developers looking for the advantages of appliance style computing Check NET container imagesSo are you excited to try out these new features in NET What do you think will be the most useful addition for your projects Don t hesitate to download the preview and explore the possibilities Happy coding 2023-03-15 10:45:49
Apple AppleInsider - Frontpage News How to watch Ted Lasso season 3 https://appleinsider.com/inside/apple-tv-plus/tips/how-to-watch-ted-lasso-season-3?utm_medium=rss How to watch Ted Lasso season The third and probably final season of Apple TV hit Ted Lasso has now begun streaming Here s how and where to watch every episode as it comes out Ted Lasso A year since it began filming season three of Ted Lasso is finally here The first of its episodes is now available to watch on Apple TV and the rest will debut weekly until May Read more 2023-03-15 10:56:43
海外TECH Engadget NASA picks Axiom Space for its third astronaut mission to the ISS https://www.engadget.com/nasa-axiom-space-third-astronaut-mission-iss-105544749.html?src=rss NASA picks Axiom Space for its third astronaut mission to the ISSNASA has chosen Axiom Space s proposal yet again for the third private astronaut mission to the International Space Station The two parties have already signed a mission order and they re hoping to launch sometime in November and beyond from the Kennedy Space Center in Florida A more specific date will be announced later since it will depend on the timing of other flights to the ISS as well as on in orbit activity planning nbsp Before Axiom Mission launches Axiom Mission will have to head to the space station first It s also a crew mission that s operated by the company and it s expected to launch in the second quarter of As you can guess from its name it s not the company s first astronaut mission to the orbiting lab NASA also picked it for the first commercially operated crewed flight to the station Axiom Mission launched in April and was docked with the ISS for days nbsp At the moment Ax is still in its very early stages The private space company will still have to submit four proposed crew members and two back up crew to the agency for review with the mission commander being a flown NASA astronaut Ax for instance was headed by retired NASA astronaut Peggy Annette Whitson Under the parties agreement NASA may ask the commander to perform certain tasks or science experiments while onboard Meanwhile Axiom Space astronauts will be able to use NASA cargo and other in orbit resources for daily use nbsp In addition to choosing Axiom Space for these private launches NASA also picked the company to develop the moonwalking spacesuit for its Artemis program The agency will unveil the suit today in an event which will be livestreams on NASA s website This article originally appeared on Engadget at 2023-03-15 10:55:44
海外TECH Engadget BMW's new 'Panoramic Vision' will put a full-width display on EV windscreens https://www.engadget.com/bmws-new-panoramic-vision-will-put-a-full-width-display-on-ev-windscreens-103515430.html?src=rss BMW x s new x Panoramic Vision x will put a full width display on EV windscreensFor decades car makers have positioned all of their instrumentation below the steering wheel resulting in drivers needing to subtly take their eyes off the road to see their speed and associated gas levels However with its new Panoramic Vision display BMW is looking to bring that important data up to eye level The company has announced a heads up display that spans the entire width of the windscreen to give drivers and passengers all the information they need without having to take eyes off the road As the driver you can choose what you want to see across the Panoramic Vision display with options including speed time and current song playing The display uses bright crisp lights to display information clearly against a dark background BMW first alluded to a new heads up display when it announced the i Vision Dee concept at CES back in January However in that iteration the information appeared digitally right onto the windshield In contrast the Panoramic Vision display is a raised lip built in across the bottom of the windshield nbsp There s no word yet if any of the other features shown in the i Vision Dee will make their way to production anytime soon These included interactive communication in which BMW stated quot a natural and emotional relationship between human and machine is developed quot and animated facial expressions nbsp The Panoramic Vision display will begin rolling out in the first NEUE KLASSE or New Class models ーBMW s range of battery and e motor vehicles ーfrom According to BMW additional features of the BMW iDrive will be included in the NEUE KLASSE However we ll likely have to wait until the IAA Mobility in Munich this September to learn more This article originally appeared on Engadget at 2023-03-15 10:35:15
医療系 医療介護 CBnews コロナ5類移行、特定感染症予防指針を作成へ-厚労省が省令案公表、インフルと同様の届出対象に https://www.cbnews.jp/news/entry/20230315193902 位置付け 2023-03-15 19:50:00
金融 RSS FILE - 日本証券業協会 協会員処分 https://www.jsda.or.jp/kyoukaiin/syobun/kyokaiin/index.html 協会 2023-03-15 11:30:00
海外ニュース Japan Times latest articles Kaoru Mitoma, Ritsu Doan named in Japan squad for March friendlies https://www.japantimes.co.jp/sports/2023/03/15/soccer/samurai-blue-march-friendly-squad/ Kaoru Mitoma Ritsu Doan named in Japan squad for March friendliesThere were changes from Japan s squad from Qatar with veteran defenders Maya Yoshida Yuto Nagatomo and Hiroki Sakai as well as attacker Takumi Minamino 2023-03-15 19:06:10
ニュース BBC News - Home Man charged in Euston church drive-by shooting https://www.bbc.co.uk/news/uk-england-london-64945764?at_medium=RSS&at_campaign=KARANGA church 2023-03-15 10:46:07
ニュース BBC News - Home Russia pilots reckless in drone collision - US https://www.bbc.co.uk/news/world-europe-64960384?at_medium=RSS&at_campaign=KARANGA russian 2023-03-15 10:54:36
ニュース BBC News - Home What is the plan for free childcare and what other help is there? https://www.bbc.co.uk/news/education-62036045?at_medium=RSS&at_campaign=KARANGA budget 2023-03-15 10:05:44
ニュース Newsweek 【悲惨動画3選】素人ロシア兵の死にざま──とうとう長い棒1本で前線へ<他> https://www.newsweekjapan.jp/stories/world/2023/03/post-101107.php 写真に写っているロシアの装甲車がどこで破壊されたのか、正確な場所や時間はわからない。 2023-03-15 19:07:33
IT 週刊アスキー BenQ、Windows 11を搭載しクラウドストレージにもアクセスできるスマートプロジェクター「EH620」を発売 https://weekly.ascii.jp/elem/000/004/128/4128769/ windows 2023-03-15 19:10:00
マーケティング AdverTimes 日航、スマホ決済に参入 「JAL Pay」開始 https://www.advertimes.com/20230315/article413928/ jalpay 2023-03-15 10:43:48

コメント

このブログの人気の投稿

投稿時間: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件)