投稿時間:2023-01-25 02:26:32 RSSフィード2023-01-25 02:00 分まとめ(32件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT ITmedia 総合記事一覧 [ITmedia ビジネスオンライン] 『週刊ザテレビジョン』、3月1日発売号で休止 一部は『月刊ザテレビジョン』に移行 https://www.itmedia.co.jp/business/articles/2301/25/news082.html itmedia 2023-01-25 01:36:00
AWS AWS Media Blog Animal Logic builds real-time workflow with Amazon Nimble Studio https://aws.amazon.com/blogs/media/animal-logic-builds-real-time-workflow-with-amazon-nimble-studio/ Animal Logic builds real time workflow with Amazon Nimble StudioAward winning animation studio Animal Logic is recognized as one of the world s top production companies with credits including Happy Feet The LEGO Movies and Peter Rabbit amp Alongside working on a slate of feature animation projects the company recently released a trailer for “Unhinged a short film that Animal Logic created in Epic Games Unreal … 2023-01-24 16:09:19
python Pythonタグが付けられた新着投稿 - Qiita 機械学習コンペで初めて金メダルを獲った話 https://qiita.com/hokkey621/items/aec8e6959bd2437809b8 academix 2023-01-25 01:08:35
js JavaScriptタグが付けられた新着投稿 - Qiita 最近読んだ記事で、参考になったと感じるもの📗 https://qiita.com/youyu-tech/items/2d3cdfb84f5f6c73a962 qiita 2023-01-25 01:19:59
Ruby Rubyタグが付けられた新着投稿 - Qiita rails 学習備忘録その2 ~道場レッスンIIまで~ https://qiita.com/menma_at_here/items/8008a338751b3d2aa4e7 rails 2023-01-25 01:54:20
AWS AWSタグが付けられた新着投稿 - Qiita 技術Memo 2023/01/22 https://qiita.com/embcpp/items/436811d0d89a6037bb60 baseintroducingamazonnep 2023-01-25 01:57:40
Ruby Railsタグが付けられた新着投稿 - Qiita rails 学習備忘録その2 ~道場レッスンIIまで~ https://qiita.com/menma_at_here/items/8008a338751b3d2aa4e7 rails 2023-01-25 01:54:20
技術ブログ Developers.IO ทดลองสร้าง RESTful API ด้วย Serverless Lambda (Python) + API Gateway https://dev.classmethod.jp/articles/build-restful-api-with-serverless-lambda-python-api-gateway/ ทดลองสร้างRESTful API ด้วยServerless Lambda Python API GatewayสวัสดีครับPOP จากบริษัทClassmethod Thailand ครับครั้งนี้ผมจะมาแนะนำเกี่ยวกับการทดลองสร้างRESTful API ด้ว 2023-01-24 16:20:40
技術ブログ Developers.IO BigQuery (データセット作成、読み込み、クエリの実行まで) をコンソールから実行する https://dev.classmethod.jp/articles/bigquery-load-data-console/ googlecl 2023-01-24 16:02:00
海外TECH MakeUseOf Should You Compress Your OS Drive to Save Disk Space? https://www.makeuseof.com/should-i-compress-my-os-drive-to-save-disk-space/ extra 2023-01-24 16:30:16
海外TECH MakeUseOf The Best Kitchen Gadgets for Kids https://www.makeuseof.com/best-kitchen-gadgets-for-kids/ friendly 2023-01-24 16:30:16
海外TECH MakeUseOf How Does the M2 Chip Compare to the M1, M1 Pro, M1 Max, or M1 Ultra? https://www.makeuseof.com/m2-vs-m1-pro-max-ultra-apple-silicon-chip/ apple 2023-01-24 16:30:16
海外TECH MakeUseOf How to Resolve the "Memory Cannot Be Read" Error on Windows 10 https://www.makeuseof.com/fix-memory-cannot-be-read-error-windows-10/ windows 2023-01-24 16:15:16
海外TECH DEV Community Automated CSS Atomization, shrinking CSS files by 80% https://dev.to/thejaredwilcurt/automated-css-atomization-shrinking-css-files-by-80-1pnf Automated CSS Atomization shrinking CSS files by There is a little known optimization technique that I ve been interested in for the past few years more on that later The promise it offers is quite substantial The ability to reduce the amount of CSS you ship by for the average site app Though the cost today in level of effort maintenance and complexity is too high for the average project to justify So the technique is relegated only to the likes of Google Facebook and Twitter The approach this article will explain is called Automated CSS Atomization That s some fancy sounding jargon but what does it mean Essentially it is a process where a tool evaluates your CSS for patterns and repetition and then restructures it in a more efficient manner resulting in the same visual outcome on the page but requiring dramatically less code to reproduce that effect It is a build step For a real world case study when converting the Facebook com homepage to use automated CSS atomization they found it reduced their homepage CSS by The performance gains you get from this approach are all highly dependent on the codebase but Facebook s results aren t considered outliers most projects save around If you are already pre atomizing your code with a tool like Tailwind then expect to see savings closer to Or if you heavily use apply in your Tailwind projects you may see benefits closer A short aside on atomic CSS libraries If you are familiar with any Atomic CSS libraries such as Tailwind they attempt to give you the same benefit I m talking about in this article however they require you to do the atomization part by hand Logically computers are better at being compilers than humans and humans are better at assigning context and meaning than computers are So systems like Tailwind though popular are somewhat backwards to what one would expect and doesn t really play to the strengths of either humans or machines This isn t an indictment of Tailwind or any other atomic CSS library like Tachyons ACSS FunCSSion etc Tailwind specifically offers a lot more value than just performance It isn t even it s primary goal Humans just aren t ever going to be able to perfectly optimize their code by hand every time The real beauty of using a tool to automate the atomization process is that you can write your CSS using any programing style any methodology any paradigm and any tooling you want The result will always be a consistent and smalller representation of the code So lets dive in to an admittedly over simplified example to convey what this automated process really does Intro to CSS AtomizationCSS Atomization is an optimization technique where you take in any CSS stylesheet headline padding rem margin rem font size em side nav padding rem margin rem Examine each CSS rule in the style sheet headline padding rem margin rem font size em Then create new atomized classes based on the property value pairs padding rem padding rem margin rem margin rem font size em font size em And associate the original class names to the new atomized classes headline padding rem margin rem font size em side nav padding rem margin rem This map of classes is then used to update any markup you have so this lt h class headline gt Example lt h gt lt nav class side nav gt Example lt nav gt automatically becomes this lt h class padding rem margin rem font size em gt Example lt h gt lt nav class padding rem margin rem gt Example lt nav gt Because this is a build step and the output doesn t need to be human readable this process can even automatically shrink the class names for you a padding rem b margin rem c font size em headline a b c side nav a b lt h class a b c gt Example lt h gt lt nav class a b gt Example lt nav gt And the generated classmap can be used in your JavaScript Vue js example lt h class s headline gt Example lt h gt lt nav class s side nav gt Example lt nav gt Svelte example lt script gt import s from classMap js lt script gt lt h class s headline gt Example lt h gt lt nav class s side nav gt Example lt nav gt JSX example import s from classMap js export function AnExample return lt div gt lt h className s headline gt Example lt h gt lt nav className s side nav gt Example lt nav gt lt div gt Having to reference a class map in your JavaScript is the most manual step in the process But even it is a pretty small level of effort Especially compared to a lot of other CSS techniques commonly employed today If the big tech companies are doing it why isn t everyone else As I mentioned in the opening currently the process is quite cumbersome Today there is no easy way to automate CSS atomization It s possible but only by combining dozens of libraries that aren t specifically designed to interconnect to solve this problem So you end up with a lot of finicky glue code a lot of dependencies to manage and ultimately you ll need deeper technical knowledge of what kinds of CSS you can and can t write as not everything will work with these systems A brighter futureThe potential of this technique is huge If a tool was created that lowered the barrier of entry then widespread adoption could be achieved Just take a moment to imagine a future where that happens A future where atomization becomes as common practice as minification or uglification That would mean most of the CSS added to the internet from then on would be smaller That leads to across the entire internet smaller files faster page loads lower CPU usage lower battery usage This would have a measurable impact on global carbon emissions But alas that easy to use tool doesn t exist At least not yet I ve started an open source project to solve this problem It s called Red Perfume Red Perfume s goal is to simplify this process so that anyone can easily add atomization to their projects As part of this approach the entire atomization process is handled by this library so that all features are added and all bugs are fixed in one place resulting in a more optimized tool The API is designed to be super easy but fully extendible for any pipeline And we are aiming to support any arbitrary CSS file At time of writing Red Perfume is still experimental and a work in progress so simple CSS works fine but more advanced CSS isn t supported yet But we re working hard to support all of the CSS spec If you re interested in contributing to the project it s all open source and on GitHub and we could use the help from skilled developers Learn more about Red Perfume on it s website Photo from LEGO Group 2023-01-24 16:37:07
海外TECH DEV Community I just wanted to buy pants. How excessive JavaScript is costing you money https://dev.to/begin/i-just-wanted-to-buy-pants-how-excessive-javascript-is-costing-you-money-1mgp I just wanted to buy pants How excessive JavaScript is costing you moneyBefore the holidays I was in the market to pick up a new pair of dress pants Like you I was pressed for time juggling work family and social obligations so I leaned on a time honored tradition of people with more programming knowledge than fashion sense Buy the same pair of dress pants you have but this time in a different color Unfortunately this was only the beginning of my journey and involved more of my technical skills than should have been required to buy a damn pair of slacks Buying PantsSince I already knew what pants I wanted I headed to the multi national clothing store s website I quickly added the item in the color and size I wanted to my shopping cart I started the checkout process by providing my first and last name Then I was presented with one of those address fields that suggests a list of addresses you can select as you start typing I clicked on the correct address and it filled out the address city province and postal code fields for me which I appreciated as it saved me some typing Then I filled out my credit card information and clicked Purchase The purchase failed and the form reported that I needed to fill out my first or last name Weird that s literally the first thing I did and visually I could see my name in both of those fields but whatever I re typed my name and clicked Purchase again It failed for a second time with the same error At this point I thought that it must be a problem with my ad blocker as it occasionally causes issues with shopping carts even though your checkout experience should work even when your user has an ad blocker So I disabled my ad blocker refreshed the page filled out the form again and clicked on the Purchase button one more time Same Damn Error The definition of insanity is doing the same thing over and over again and expecting a different result Probably not Albert Einstein Digging into someone else s websiteNow that I could reproduce the error with the ad blocker turned off I formulated a theory of what was wrong with the site I surmised that the input fields for first and last names must be a React Controlled Component that wasn t correctly updating React state with their input values At least that was my guess based on no evidence other than my twenty years of experience building for the web So I opened the dev tools in my browser navigated to the network control panel selected JavaScript in the filter and reloaded the page The total amount of JavaScript loaded by this checkout page MB of JavaScriptThat s right MB of JavaScript code was downloaded parsed interpreted and compiled so I could fill out a form If you think that sounds reasonable I ve got news for you It isn t Being presented with MB of obfuscated minimized JavaScript code I decided it wasn t worth the effort to debug the root cause of the issue Instead I figured I could disable JavaScript and submit the HTML form have the server side do validation and fulfill my order So I turned off JavaScript and refreshed the page Nope nada zippo zut nothing No HTML form fallback Instead all I got was a blank page There was no way to checkout without JavaScript Am I being unreasonable At this point I have to ask the question “Am I being unreasonable in expecting the site to work with JavaScript I mean everyone has JavaScript enabled right As the above link indicates there are many reasons why JavaScript may fail in a browser including but not limited to ad blockers and corporate firewalls Even without JavaScript the website owners could have provided an HTML form based fallback solution so that I could still order my pants You might think that s a ton of extra work it isn t and there is no precedence in the real world Except there is and it is called a Credit Card Original photo by Avery Evans on UnsplashCredit cards are a real life progressive enhancement success story When credit cards were first introduced they used these clunky carbon copy swiper machines to make a copy of your credit card number You then signed the original receipt which you got to keep with copies going to the store and the bank I told my daughter that this is how things used to work and she looked at me like I was nuts If you are of a certain age you will fondly remember the chu chunk sound these machines made Later on a magnetic strip was added to reduce the paperwork needed to record the transaction Then it was followed up by the chip and pin approach and finally where we are today with tap to pay Credit cards have gotten progressively easier to use and more secure However if something goes wrong with the tap to pay reader you can always use chip and pin instead I ve seen places drag out those old carbon copy swipers in some rare cases like when the power is out They ve got it figured out Once you decide to give them money they don t give you any reason not to spend it So why do we give folks a reason to leave our websites without completing their purchase when we have a reasonable fallback Is this common Sadly yes Canadian Tire is one of my frequently visited retailers especially during the pandemic For those of you who are not familiar with Canadian Tire it is a big box store It sells more than tires just like Wal Mart sells more than just walls Taking a quick look at its checkout page I see MB of JavaScript loadedShopping cart information doesn t load when ad block is enabledBlank white screen when JavaScript is disabledNintendo eStore MB of JavaScript loadedWorks with ad block enabledBlank white screen when JavaScript is disabledHome Depot MB of JavaScript loadedWorks with ad block enabledBlank white screen when JavaScript is disabledThe above is unacceptable Large code bundles correlate to longer load times Longer load times lead to smaller conversion rates Maybe major brands like these can afford to drive away customers but can you Where do we go from here First start performance budgeting your sites to avoid adding excessive amounts of JavaScript Second test your site with an ad blocker turned on Recent reports indicated that to of web surfers use an ad blocker You don t want to drive customers away because your checkout flow depends on some third party JavaScript that is routinely blocked Finally if you are building an eCommerce site think about building out HTML first to ensure that there is always a way for people to pay you I hear that s an essential step in making money If you are thinking about building a new site why not give the HTML first framework Enhance a spin Oh and I never did buy those pants AddendumSince my epic failure to secure some pants the multi national retailer has fixed the bug that prevented me from completing my order They ve also slimmed down the total JavaScript payload from MB to MB which is an improvement but still not great It still doesn t work without JavaScript 2023-01-24 16:23:39
海外TECH DEV Community 8 Best C++ IDEs to use in 2023 https://dev.to/mariamarsh/8-best-c-ides-to-use-in-2023-4kf5 Best C IDEs to use in Today s post is devoted to popular C programming environments Many of them also support other languages ContentsMicrosoft Visual StudioNetBeansCodeLiteSublime TextCode Blocks QT CreatorEclipse CDTCLion Microsoft Visual StudioWith the help of Visual Studio an integrated C development environment you can create both console and graphical apps including those that use Windows Forms It is also suitable for creating websites web applications and web services for all supported platforms Windows Windows Mobile Windows CE NET Framework Xbox Windows Phone NET Compact Framework and Silverlight Pros A free version of Visual Studio Community is available Built in command line interface API for connecting additional debugging tools A complete set of developer tools for creating and cloning Git repositories managing branches and resolving merge conflicts right within the C IDE A large set of add ons to expand the basic functionality Cons High hardware requirements No Linux version High prices for paid Professional and Enterprise versions starting from per month Official website NetBeans NetBeans is a free IDE which allows you to create applications in Java Python PHP JavaScript C C and other programming languages This C IDE is distributable for Microsoft Windows Linux FreeBSD macOS OpenSolaris and Solaris platforms You can create your own copy of NetBeans from the source code for all other platforms Pros Free C Integrated Development Environment Cross platform support A large selection of plugins Code completion refactoring tools Developers community Cons Own cache issues when creating final programs Installation requires the JDK Slow start up Official link for downloading CodeLite CodeLite is also free and runs on many operating systems Windows Debian Ubuntu Fedora OpenSUSE ArchLinux and macOS It s a great option for beginners because of its straightforward and user friendly interface It should be mentioned that the most recent versions of this C IDE now support projects for Node js and PHP Pros A powerful code completion tool based on its own parser Plugins for working with Git and SVN Built in debugger Cons Complex interface Official website Sublime Text Sublime Text is a proprietary text editor written in C and Python developed in This code editor has a large community so there is no problem finding add ons and tutorials Pros Can be used for free Does not make high demands on hardware Built in support for several dozen programming languages Auto completion and syntax highlighting in a code editor A large selection of plugins written in Python Cons As a debugging tool it s not as good as Visual Studio and other IDEs No autosave files Constantly offers to buy a paid version Official website Code Blocks Another great free development environment is Code Blocks It allows users to write code not only in C C but also provides support for such programming languages as Fortran and D with some restrictions The developer toolkit has the ability to be extended by installing plugins This C programming environment has versions for Windows macOS and Linux but it is possible to install it on any Unix like system using the source code Pros Free C development environment Code completion Built in debugger A large selection of plugins to expand functionality Cons Not suitable for developing large projects Official website QT Creator Qt Creator is a C IDE available on Windows Linux and macOS It provides a free version that is valid for one month and offers a complete set of developer tools for building and deploying applications Pros Supports debugging profiling code completion and refactoring Ability to compile projects for different operating systems Cons Large app size Code completion doesn t always work The paid version is quite pricey Registration is required to download the free version Official website Eclipse CDTEclipse is a free IDE for developing modular cross platform applications that has become very popular among Java developers In this post we will look at the Eclipse CDT C C Development Tooling release This environment is an excellent choice since Eclipse CDT not only has all the necessary tools but is also free and runs on various operating systems Windows Linux macOS Pros Free to use Auto completion and other features that help you write code faster A large set of plugins to extend functionality Well developed community detailed documentation Built in unit testing test optimization Customizable GUI Cons Slow start up high memory consumption Backward compatibility issues Possible plugin conflicts Official link for downloading CLionThe last IDE on my list is a cross platform C programming environment from JetBrains called CLion It includes modern C libc and Boost standards and also supports other programming languages Kotlin Python Rust etc by using plugins Pros User friendly mechanisms for debugging applications Code completion VIM support Cons No free version only a day demo There is no built in compiler There may be problems installing the compiler Official link for downloading section windows ConclusionChoosing the right IDE for you is no easy task I hope this list of the best C IDEs has provided insight into the various options available While I ve featured the major contenders and explored their feature sets nothing will replace hands on use I recommend giving your favorites from this list a try with an actual project to see which works best for you Leave a comment below which IDE you liked the most and describe your experience That in fact is all that has accumulated at the moment I hope you find my observations interesting and they will help someone Do you think I missed something important Feel free to leave any questions comments or suggestions 2023-01-24 16:17:00
Apple AppleInsider - Frontpage News New 'Today at Apple' and video launch for Data Privacy Day https://appleinsider.com/articles/23/01/24/new-today-at-apple-and-video-launch-for-data-privacy-day?utm_medium=rss New x Today at Apple x and video launch for Data Privacy DayApple has unveiled a video with Ted Lasso star Nick Mohammed for Data Privacy Day alongside an Apple Store workshop teaching users about privacy features on the iPhone A Day in the Life of an Average Person s Data is a new six minute video that follows Mohammed as he lives his life constantly interrupted by an Apple specialist commentating Every day people go about their daily lives unaware their data is harvested and used to track them says the specialist But now they have a choice Because with iPhone privacy is built in from the beginning Read more 2023-01-24 16:26:25
Apple AppleInsider - Frontpage News Pick up Apple's M2 Mac mini 2023 for just $549 https://appleinsider.com/articles/23/01/21/pick-up-apples-m2-mac-mini-2023-for-just-499?utm_medium=rss Pick up Apple x s M Mac mini for just The cheapest M Mac mini price can be found at AppleInsider with the Mac mini eligible for an exclusive discount Save on this M Mac mini Apple s new M Mac mini may have gotten a price drop compared to the starting price of the M model but AppleInsider readers can save another to with promo code APINSIDER at Apple Authorized Reseller Adorama when you order a retail configuration Select between the standard M model with GB of memory and a GB SSD for off ーor double the amount of storage and pick up the GB model for off Read more 2023-01-24 16:31:55
海外TECH Engadget Google will once again apply Gmail spam detection to political campaign emails https://www.engadget.com/google-gmail-political-campaign-email-exemption-ends-162400815.html?src=rss Google will once again apply Gmail spam detection to political campaign emailsGoogle doesn t plan to let political campaigns dodge Gmail s spam detection for much longer The Washington Post has learned that Google plans to end the email filter bypass pilot program by the end of this month In a dismissal motion filed at a federal court in the Eastern District of California the company rejects the Republican National Committee RNC allegations of political bias that led to the test Gmail s filtering methods quot apply equally quot to every sender whether or not there s a political connection the company says The pilot was a response to RNC accusations in October that Google was censoring right wing fundraising emails by marking them as spam The committee pointed to a study that supposedly backed the claims but Google maintained that messaging frequency user responses and other non political elements dictated filtering behavior Even so Google acknowledged the pressure and got permission from the Federal Election Commission FEC to run the test The experiment was already set to end in January but it wasn t clear if Google would extend the program until now Over Democrat and Republican committees joined the program after it was approved in August However the RNC wasn t one of them Google points this out in its new filing asserting that the Republicans want to accuse the firm of unfair treatment instead of participating in the solution In a statement to Engadget Google spokesperson JoséCastañeda says a recent FEC decision quot confirmed quot it doesn t filter email for quot political purposes quot The representative also maintains that the RNC complaint is quot without merit quot On top of the company s own objections numerous advocacy groups and other critics urged the FEC to reject the looser approach to political emails They were concerned this change would let political candidates from any party spam users with few repercussions With this latest filing the debate is moot ーpoliticians will have to take a careful approach if they expect campaign messages to go directly to your inbox 2023-01-24 16:24:00
Cisco Cisco Blog Joining the Hybrid Work revolution is not a luxury but a necessity https://blogs.cisco.com/partner/joining-the-hybrid-work-revolution-is-not-a-luxury-but-a-necessity Joining the Hybrid Work revolution is not a luxury but a necessityJoining this revolution is not a luxury it is a necessity for your customers It is also a fantastic opportunity for organizations to transform in strategic ways because there is no going back to the rigid models and workplace hierarchies of the past 2023-01-24 16:00:46
Cisco Cisco Blog More SASE options for customers with Cisco SD-WAN, security, SSE and SIEM collaborations https://blogs.cisco.com/networking/more-sase-options-for-customers-with-cisco-sd-wan-security-sse-and-siem-collaborations More SASE options for customers with Cisco SD WAN security SSE and SIEM collaborationsCisco has expanded its SASE ecosystem by collaborating with third party Secure Service Edge SSE vendors Zscaler Cloudflare and Netskope allowing you to build SASE architectures using your preferred cloud security vendors 2023-01-24 16:00:38
海外科学 NYT > Science What Do We Owe Lab Animals? https://www.nytimes.com/2023/01/23/science/what-do-we-owe-lab-animals.html additional 2023-01-24 16:24:57
海外科学 BBC News - Science & Environment UK museums ask for children to inspire action through art https://www.bbc.co.uk/news/science-environment-64387380?at_medium=RSS&at_campaign=KARANGA artworks 2023-01-24 16:17:06
金融 金融庁ホームページ 金融審議会「事業性に着目した融資実務を支える制度のあり方等に関するワーキング・グループ」(第6回)議事次第を公表しました。 https://www.fsa.go.jp/singi/singi_kinyu/jigyoyushi_wg/siryou/20230125.html 金融審議会 2023-01-24 17:00:00
金融 金融庁ホームページ 金融審議会「事業性に着目した融資実務を支える制度のあり方に関する ワーキング・グループ」(第3回) の議事録を公表しました。 https://www.fsa.go.jp/singi/singi_kinyu/jigyoyushi_wg/gijiroku/20221213.html 金融審議会 2023-01-24 17:00:00
ニュース BBC News - Home Oscars 2023: Everything Everywhere All At Once leads nominations https://www.bbc.co.uk/news/entertainment-arts-64384478?at_medium=RSS&at_campaign=KARANGA hollywood 2023-01-24 16:28:17
ニュース BBC News - Home Tanks for Ukraine: Polish PM urges German bravery on Leopard 2 decision https://www.bbc.co.uk/news/world-europe-64385210?at_medium=RSS&at_campaign=KARANGA russian 2023-01-24 16:50:49
ニュース BBC News - Home Jenners blaze: Critically ill firefighter is named https://www.bbc.co.uk/news/uk-scotland-64386113?at_medium=RSS&at_campaign=KARANGA injuries 2023-01-24 16:40:47
ニュース BBC News - Home Aquind: Government loses bid to block cross-Channel electricity cable https://www.bbc.co.uk/news/uk-politics-64388577?at_medium=RSS&at_campaign=KARANGA court 2023-01-24 16:06:09
ニュース BBC News - Home Richard Sharp: BBC chairman says he will not quit over Boris Johnson loan row https://www.bbc.co.uk/news/uk-64383742?at_medium=RSS&at_campaign=KARANGA sharp 2023-01-24 16:26:59
ビジネス ダイヤモンド・オンライン - 新着記事 米、ウクライナへの戦車「エイブラムス」供与に傾く - WSJ発 https://diamond.jp/articles/-/316666 戦車 2023-01-25 01:07:00
Azure Azure の更新情報 General availability: Application security groups support for private endpoints https://azure.microsoft.com/ja-jp/updates/general-availability-application-security-groups-support-for-private-endpoints/ endpoints 2023-01-24 17:00: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件)