投稿時間:2023-04-13 01:27:57 RSSフィード2023-04-13 01:00 分まとめ(34件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
AWS AWS Partner Network (APN) Blog Modernizing Stateless Applications from Any Container Platform to AWS with Matilda Cloud https://aws.amazon.com/blogs/apn/modernizing-stateless-applications-from-any-container-platform-to-aws-with-matilda-cloud/ Modernizing Stateless Applications from Any Container Platform to AWS with Matilda CloudModernizing applications from on premises containers to AWS can be a time consuming task for application development and cloud infrastructure teams Stateless application modernization can be an especially tedious and error prone process Learn how cloud architects and DevOps engineers are turning to Matilda Cloud to help modernize stateless apps Matilda Cloud s automated tools accelerate the modernization process with powerful discovery and automated infrastructure as code tools 2023-04-12 15:44:46
AWS AWS Japan Blog Amazon Kendra Box Connector を始める https://aws.amazon.com/jp/blogs/news/getting-started-with-the-amazon-kendra-box-connector/ amazonkendrabox 2023-04-12 15:13:55
python Pythonタグが付けられた新着投稿 - Qiita PythonのSeleniumについて動作確認 https://qiita.com/yg0510/items/db9a3b88e8e753ea27ce webdriverchromechromeget 2023-04-13 00:16:02
js JavaScriptタグが付けられた新着投稿 - Qiita LINEBOTをHeroku無しで完全無料で構築した話 https://qiita.com/CinnamonSea2073/items/52bf82e281150eed1e44 heroku 2023-04-13 00:14:56
golang Goタグが付けられた新着投稿 - Qiita Go 言語スプレッドシートライブラリ:Excelize 2.7.1 がリリースされました https://qiita.com/xuri/items/11b128aacd47a992a395 microso 2023-04-13 00:09:36
Git Gitタグが付けられた新着投稿 - Qiita mainブランチ以外からブランチを切る方法 https://qiita.com/oinusama/items/01759a1feabe8ae612c2 開発 2023-04-13 00:47:25
Ruby Railsタグが付けられた新着投稿 - Qiita Bootstrapのボタンで文言を日本語にしたら、文字が縦に並んだ話 https://qiita.com/kanerin1004/items/d4771595218199a81b6b bootstrap 2023-04-13 00:41:13
技術ブログ Developers.IO 誰でもわかるUXデザイン https://dev.classmethod.jp/articles/uxdesign-overview/ 誤解 2023-04-12 15:25:42
海外TECH Ars Technica New EPA rules would cut car emissions 56% by 2032 https://arstechnica.com/?p=1931069 medium 2023-04-12 15:37:29
海外TECH Ars Technica NPR says goodbye to Elon Musk’s Twitter https://arstechnica.com/?p=1931063 twitter 2023-04-12 15:08:54
海外TECH MakeUseOf What Are Large Language Models (LLMs) and How Do They Work? https://www.makeuseof.com/what-are-large-langauge-models-how-do-they-work/ model 2023-04-12 15:45:16
海外TECH MakeUseOf Why Is ChatGPT-4 So Slow Compared to ChatGPT-3.5? https://www.makeuseof.com/why-is-chatgpt-4-so-slow-compared-to-chatgpt-35/ chatgpt 2023-04-12 15:36:17
海外TECH MakeUseOf How Social Media Brought the Death of Truth https://www.makeuseof.com/how-social-media-brought-death-truth/ truth 2023-04-12 15:30:17
海外TECH MakeUseOf How to Fix the Audio Error 0xc00d36b4 in Windows 10 & 11 https://www.makeuseof.com/audio-error-0xc00d36b4-windows/ error 2023-04-12 15:15:17
海外TECH DEV Community Welcome Thread - v220 https://dev.to/thepracticaldev/welcome-thread-v220-2j91 Welcome Thread v Leave a comment below to introduce yourself You can talk about what brought you here what you re learning or just a fun fact about yourself Reply to someone s comment either with a question or just a hello If you are new to coding want to help beginners in their programming journey or just want another awesome place to connect with fellow developers check out the CodeNewbie Org page on DEV Great to have you in the community 2023-04-12 15:50:05
海外TECH DEV Community Buildless workflow through import maps (featuring Lit, Shoelace and more) https://dev.to/matsuuu/buildless-workflow-through-import-maps-featuring-lit-shoelace-and-more-4ill Buildless workflow through import maps featuring Lit Shoelace and more Now that import maps are supported throughout all browsers web development has taken a big step forwards We can start writing web apps like it s again All that is needed is a couple of mapped imports and we are off What are import maps As per MDN An import map is a JSON object that allows developers to control how the browser resolves module specifiers when importing JavaScript modules It provides a mapping between the text used as the module specifier in an import statement or import operator and the corresponding value that will replace the text when resolving the specifier The JSON object must conform to the Import map JSON representation format What this means in action is that we can have code in the shape of import shoelace style shoelace dist components button button js const HomeView html lt sl button variant primary gt lt sl button gt And not have to build bundle to project at all Wait what how Well this was quite leading but Import Maps SetupTo get started using import maps you can start a new project or start fiddling with an existing one I decided to look into a project I ve been working on The project is an internal tool for our company and has the following dependencies dependencies shoelace style shoelace lit suunta file suunta As we can see we have two external dependencies and one internal tool In the modern way of packaging our application we would be of course required to package this projectusing some bundler like ESBuild or Rollup But with import maps we can instead utilize CDN s to deliver our packages and completely eliminate the bundling step HTML SideImport maps are created inside our HTML structures in a similiar way our regular script imports are done lt DOCTYPE html gt lt html lang en gt lt head gt lt title gt Import Map Demo lt title gt lt meta charset UTF gt lt meta name viewport content width device width initial scale gt lt link href src css style css rel stylesheet gt lt link rel stylesheet href shoelace style shoelace dist themes light css gt lt script type importmap gt imports lit shoelace style shoelace shoelace style shoelace shoelace style shoelace shoelace style shoelace suunta node modules suunta dist main js lt script gt lt head gt lt body gt lt main gt lt main gt lt app navigation gt lt app navigation gt lt script type module src src index js gt lt script gt lt body gt lt html gt The part we are interested in is the script tag inside of our head element It has a new Type attribute called importmap That is how we are able to communicate to the browser that we want to be using this piece of script as a import map JSON entry Looking inside of the entry we can see that we have mappings for all of our dependencies Most of our entries are mapped with a single entry but sometimes we might want to access subfolders inside of our dependency In those cases we just provide a secondary entry with a suffixed forwards slash to denote subfolder entries Note that you can utilize multiple CDN s and even local file systems for your imports JS SideWell how does this look like on the JS side then Well As we discussed before import maps allow you to use your dependencies as if you were bundling them What this means is that if you have everything setup correctly with your import maps in the best case scenario you don t have to do any Javascript changes Isn t that awesome Some general gotchas Be wary of packagingCDN s are quite advanced today and might package your package in different formats If you take a look at the same package through unpkg and through JSDelivr s ESM bundler you can see that the outputs don t match So if one CDN isn t working for you sometimes another will Code completions don t look at the cloudEven if we are developing using CDN d dependencies your editors might want to have those files locally to use their data for completion code action and general language support info So it s goodpractice to still keep your package json up to date and npm install the packages locally too Some packages might require some extra pathingFor some packages that might lazy load part of their assets you might need to configure some extra parameters to support their functionality with import maps For example Shoelace s icons are lazily loaded from local or CDN routes and might require you to set the base path forsaid assets to load from This setup usually is quite minimal though and shouldn t be bloating your codebase any more than a single line In closingGo check out import maps try them out in your projects and see if you can make your projects buildless Use the platform 2023-04-12 15:37:04
海外TECH DEV Community Mobile-first or Desktop-first development? https://dev.to/dumebii/mobile-first-or-desktop-first-development-4m24 Mobile first or Desktop first development IntroductionThis article is very personal to me for a lot of reasons One of which is that when I first got into web development this was the bane of my existence I would spend time mulling this over before I basically started any design This was of course before I started using friendlier CSS frameworks like TailwindCSS and Bootstrap I have a personal belief that the choice to start with either mobile or desktop is dependent on the learning trajectory you followed or the tutor instructor you learned from If you learn from an instructor who develops mobile first you are more likely to follow this pattern and vice versa However I decided to do a little bit more research about this and show the two sides of the coin so that everyone is aware of where they are standing OverviewMobile first and desktop first development are two approaches to designing and building web applications Each approach has its own advantages and disadvantages and the choice between them depends on the specific project requirements and target audience Mobile firstMobile first development involves designing and building the mobile version of a website or application first and then expanding it to the desktop version This approach prioritizes the needs of mobile users who are becoming increasingly important as more people access the internet on mobile devices Mobile first development often focuses on simplicity speed and usability which can lead to a better user experience on all devices Advantages Prioritizes the needs of mobile users who are becoming increasingly important Focuses on simplicity speed and usability which can lead to a better user experience on all devices Helps developers to create a responsive design that adapts well to different screen sizes Disadvantages May neglect certain desktop specific features such as hover effects or complex interactions Can be challenging to scale up to larger screens as the design may not have been intended for them Desktop firstDesktop first development on the other hand involves designing and building the desktop version of a website or application first and then optimizing it for mobile devices This approach has traditionally been the standard as desktop computers were the primary way people accessed the internet Desktop first development often focuses on visual design advanced functionality and larger screens which can lead to a richer user experience on desktops but can be more challenging to translate to mobile devices Advantages Allows for more advanced functionality larger screens and richer visuals Provides developers with more design flexibility and opportunities for creativity May better support desktop specific features such as hover effects or complex interactions Disadvantages May not provide an optimal user experience on mobile devices Can be more challenging to create a responsive design that adapts well to different screen sizes May neglect the needs of mobile users who are becoming increasingly important ConclusionIn summary the choice between mobile first and desktop first development depends on the specific project requirements and target audience However as more and more people use mobile devices to access the internet mobile first development is becoming increasingly popular and important 2023-04-12 15:35:25
海外TECH DEV Community How to use PowerShell to create Resource group and virtual Machine in Azure https://dev.to/mojeed88/how-to-use-powershell-to-create-resource-group-and-virtual-machine-in-azure-1ljp How to use PowerShell to create Resource group and virtual Machine in AzureThe first step is to go to Azure portalThen click on the Azure cloud shell in the Azure portal and select PowerShell Create a storage if you don t have oneAfter creating your storage you can write you script of what you want to create as shown below in the image and paste it in the PowerShellFrom the above image it shows that your Resource group has been created and that can be confirm by going to Resource group and check the list My resource group name is myResourceGroup as you can see belowm Also the script of whatever you want create can be pasted below the created resource as shown in ImageThen you have your virtual machine created using PowerShell in your resource groupThen you have your Virtual Machine running to confirm if your Virtual machine has been created go to resource group and click on the resource group you created as shown below To check the performance of your Virtual Machine click on Azure Advisor and see recommendation 2023-04-12 15:33:44
Apple AppleInsider - Frontpage News Young people may not be quite as addicted to iPhone as assumed https://appleinsider.com/articles/23/04/12/young-people-may-not-be-quite-as-addicted-to-iphone-as-assumed?utm_medium=rss Young people may not be quite as addicted to iPhone as assumedA new study sheds some light on iPhone addiction and there are some conclusions that defy conventional wisdom and assumptions about the differences between younger and older customers iPhone A new report from Consumer Intelligence Research Partners CIRP examines the issue using data from a recent study along with an old one from April That report looked at how quickly people replace or repair their Apple devices Read more 2023-04-12 15:40:48
海外TECH Engadget NPR is ditching Twitter over 'government-funded media' label on its main account https://www.engadget.com/npr-is-ditching-twitter-over-government-funded-media-label-on-its-main-account-155556726.html?src=rss NPR is ditching Twitter over x government funded media x label on its main accountAfter a week long tussle with Twitter and owner Elon Musk over labels that the company applied to its accounts NPR said it will no longer use the platform at all The organization criticized Twitter over a state affiliated media label that was placed on its main account last week Twitter later updated the text to read “government funded media However NPR said the latest incarnation of the label is inaccurate and misleading as it s a private nonprofit company with editorial independence The organization pointed out that federal funding accounts for less than one percent of its million annual budget NPR CEO John Lansing said that as a result of the label the broadcaster is abandoning Twitter in order to protect its credibility Until recently Twitter typically reserved the state affiliated media tag for government run outlets like Russia s RT and Sputnik and China s Xinhua News Agency nbsp At this point I have lost my faith in the decision making at Twitter Lansing said I would need some time to understand whether Twitter can be trusted again The NPR chief also said that degradation in the culture of Twitter also played a role in the organization s decision to pause its use of the platform Going forward NPR will no longer post fresh content on any of its official feeds NPR is giving workers who handle its Twitter accounts a two week grace period to rework their social media strategies For one thing they ve directed NPR s Twitter followers toward the broadcaster s newsletters and accounts on other social media platforms The company is leaving it up to staff to decide whether to keep using their personal Twitter accounts Twitter has also applied the government funded media label to the BBC s Twitter account a move that organization has also objected to In a BBC interview on Wednesday Musk said the company will tweak the BBC label so that it reads publicly funded That would be a more accurate description of how the BBC is funded Still Lansing claimed even if Twitter were to backtrack and remove the label from NPR s account the organization won t start tweeting again right away Meanwhile Musk has revealed how he decides which organizations should have the contentious labels He s consulting Wikipedia s publicly funded broadcasters category page As it happens several organizations listed on that page ーincluding Canada s CBC Japan s NHK and the UK s Channel ーdo not have such labels on their Twitter accounts This article originally appeared on Engadget at 2023-04-12 15:55:56
海外TECH Engadget The best VR headsets for 2023 https://www.engadget.com/best-vr-headsets-140012529.html?src=rss The best VR headsets for If you ve been holding out for VR hardware to mature you chose wisely Headsets have come a long way since the launch of the Oculus Rift and HTC Vive six years ago The Meta Quest has already been around for two years and it s proven to be a very capable portable VR experience And if you re looking for a more immersive experience high end PC headsets are getting cheaper and there s the new PS VR to look forward to While the overall VR market hasn t really changed much since last year aside from the somewhat disappointing Meta Quest Pro at least there are plenty of VR experiences to dive into So what makes a good VR headset I tend to judge virtual reality headsets on a few basic criteria Ergonomics immersion and controls It s not that hard to shove a mobile display into a plastic headset and strap some cheap elastic headbands onto it But it takes skill to craft something that s well balanced and doesn t feel uncomfortable after minutes Immersion meanwhile comes from having high resolution screens with fast refresh rates so the visuals are sharp and smooth Field of view is also a major element as it describes how well VR screens can cover what you see Having a low field of view makes it feel like you re looking through a pair of binoculars which limits your sense of “presence The best VR headsets have a wide field of view that can make it seem like you re actually flying over the globe in Google Earth And when it comes to controllers the best options fit naturally in your hands and offer accurate tracking The industry has basically adopted the design of Meta s excellent touch controllers but we re also seeing intriguing leaps forward like Valve s finger tracking gamepads Best VR headset for most people Meta Quest Over two years since its release the Meta Quest remains the best VR headset for the vast majority of consumers It s completely cordless and it s comfortable to wear for long sessions Unfortunately due to supply chain pressures and a worsening economic climate Meta ended up increasing the Quest s price by this year making it a headset It s still a great device but it s also in the strange position of being a worse deal than it was last year Here s what s still good though there s a huge library of virtual reality titles that you can experience anywhere and it s bundled with Meta s great motion controllers You can also connect the Quest to a gaming PC to stream more complex VR experiences The Quest features fast switching LCDs with a resolution x per eye the highest we ve seen from Meta It also has a smooth Hz refresh rate which is impressive for something running entirely on mobile hardware The Quest s field of view isn t the best ーit s been measured at just around degrees ーbut it s still enough to enjoy most VR experiences You can also use different face pads to increase its field of view a bit And if you want an even more comfortable fit you can snag the Elite headstrap for or with a built in battery and case Meta has recalled the foam inserts from the original model and is offering silicone covers to make the headset more comfortable We didn t experience any issues during our review or during the past year of usage but there have been enough complaints for Facebook to take action The base Quest also comes with GB of storage double the space of the original model giving you even more room to cram in VR games and apps The Quest may not offer the best overall VR experience but it s certainly the most accessible headset on the market At least until we see a potential follow up next year Best console VR PlayStation VRIn many ways the PS VR is the best headset we ve tested yet It offers dual K OLED HDR screens effectively giving you K quality and an immersive VR experience It s one of the most comfortable headsets around And it has some genuinely refreshing new features like eye tracking and headset haptics Yes it can literally rock your noggin And best of all the PS VR delivers high quality virtual reality without the need for a gaming PC all you need is a PlayStation Now our recommendation comes with a few caveats At the PS VR is more expensive than the PS itself And it s unclear how quickly its game library will fill up the initial run has only a few exclusives like Horizon VR and Gran Turismo But it s the easiest way to experience high end VR and it s a major upgrade over the original PS VR Best PC VR headset under HP Reverb GIf you don t care about wireless VR and you want to invest a bit more in a high quality PC virtual reality headset HP s Reverb G is meant for you It was developed in cooperation with Valve and has some of the best features from the pricier Index headset like near field speakers The Reverb G also has sharp screens offering by pixels per eye a Hz refresh rate and a relatively wide degree field of view It s also the first Windows Mixed Reality headset to include four sensors which helps to ensure more accurate VR tracking especially during fast paced games I also give HP credit for making a tethered VR headset that s extremely comfortable thanks to its luxurious cushioning around the eye piece and rear strap The Reverb G s motion controllers aren t my favorite but they re still a big step up from HP s previous model You could also upgrade it to use Valve s finger tracking controllers but that involves snagging SteamVR sensors and a lot more setup Still it s nice to have the upgrade path available Best PC VR headset for gamers Valve IndexValve s Index kit remains one of the best high end VR solutions on the market for PC gaming For you get the Index headset Valve s finger tracking controllers and two SteamVR base stations While we ve seen higher resolution headsets arrive in the last two years it s still a very solid option with a by pixel resolution an eye watering Hz refresh rate and a massive degree field of view I d gladly lose a few pixels to get a smoother and more expansive screen which are still far beyond any other consumer headset As a SteamVR product the Index requires installing two sensors at opposite corners of your room And of course it s wired to your PC But that clunkiness is worth it for the higher refresh rate and more accurate tracking Sure it s not as easy to use as the Quest but at this price range we assume you ll suffer a bit of inconvenience to get a truly high quality VR gaming experience Valve s finger tracking controllers are fantastic as well with a convenient strap that locks them onto your hands They make playing Half Life Alyx feel like a dream It s unfortunate that other VR games haven t fully taken advantage of the finger tracking though Best VR quality no matter the cost HTC Vive Pro HTC s Vive Pro is the best looking PC VR I ve seen It has an astoundingly sharp K screen and a solid Hz refresh rate Just be prepared the full kit which includes the headset two SteamVR sensors and wand controllers costs You can also buy the headset separately for as an upgrade to the original Vive Pro or the Valve Index For the price you get a well balanced and supremely comfortable VR headset The Pro is a clear sign that Valve has practically perfected the art of making high end hardware I m less impressed with the large wand controllers which are exactly the same as the ones that came with the original HTC Vive in They re functional but they re nowhere near as ergonomic as Oculus s Touch Controllers I m mainly recommending the Pro here based on the astounding quality of the headset True VR fans may want to just grab that separately along with SteamVR base stations and Valve s finger tracking controllers That way you can ensure you have the best experience while playing Pistol Whip FAQsHow do VR headsets work At the most basic level a VR headset is simply a high quality screen that you re holding up to your face For a wired headset the actual work of rendering a game is done on either a PC or game console For completely wireless devices like the Meta Quest that work is handled right on the headset They rely on either external sensors or sensors built into the headsets to map your physical space While you can use a traditional gamepad or keyboard and mouse in VR they typically use motion tracking controllers to immerse you in their D environments What VR headset is best for full body tracking While we re still waiting for a truly great haptic VR bodysuit to arrive you can still achieve accurate body tracking with most Steam VR compatible PC headsets The Valve Index and HTC Vive Pro both rely on room tracking sensors that can map your body more effectively than the built in sensors on competitors You can also add HTC Vive Trackers to wrist and leg straps as well as belts for even better coverage The Meta Quest doesn t have any easy body tracking solutions but you can add Vive trackers when it s plugged into your PC to mimic a Steam VR headset Only a few experiences like VRChat take advantage of full body tracking at the moment Currently there aren t any body tracking solutions for the PlayStation VR and VR but we re intrigued by the company s Mocopi body trackers which were really announced in Japan What VR headsets are better than Oculus Oculus is the previous name for Meta s VR hardware Currently Meta only supports the Quest and Quest Pro both of which are wireless headsets As we explain above PC VR headsets can generally achieve better quality virtual reality since they rely on more powerful graphics hardware What VR headsets work with Xbox Currently Microsoft s Xbox consoles don t support any VR headsets This article originally appeared on Engadget at 2023-04-12 15:30:18
海外TECH CodeProject Latest Articles Cross Platform AES 256 GCM Encryption / Decryption https://www.codeproject.com/Articles/1265115/Cross-Platform-AES-256-GCM-Encryption-Decryption decryption 2023-04-12 15:43:00
海外科学 NYT > Science The World Bank Is Getting a New Chief. Will He Pivot Toward Climate Action? https://www.nytimes.com/2023/04/09/climate/world-bank-ajay-banga.html The World Bank Is Getting a New Chief Will He Pivot Toward Climate Action Under pressure from world leaders development experts and shareholders the bank opens its spring meeting on Monday poised for big changes 2023-04-12 15:35:03
海外TECH WIRED The Abortion Medication Ruling Threatens Free Speech Online https://www.wired.com/story/abortion-pill-comstock-free-speech-internet/ antiabortion 2023-04-12 15:09:36
金融 金融庁ホームページ 「スチュワードシップ・コード及びコーポレートガバナンス・コードのフォローアップ会議」(第28回)を開催します。 https://www.fsa.go.jp/news/r4/singi/20230419.html 会議 2023-04-12 17:00:00
金融 金融庁ホームページ 鈴木財務大臣兼内閣府特命担当大臣閣議後記者会見の概要(令和5年4月11日)を掲載しました。 https://www.fsa.go.jp/common/conference/minister/2023a/20230411-1.html 内閣府特命担当大臣 2023-04-12 15:30:00
ニュース BBC News - Home Prince Harry to attend coronation without Meghan https://www.bbc.co.uk/news/uk-65255135?at_medium=RSS&at_campaign=KARANGA buckingham 2023-04-12 15:43:37
ニュース BBC News - Home Ex-BBC and Capital DJ Tim Westwood interviewed under caution https://www.bbc.co.uk/news/uk-65254814?at_medium=RSS&at_campaign=KARANGA capital 2023-04-12 15:24:54
ニュース BBC News - Home NPR quits Twitter over 'government-funded' label https://www.bbc.co.uk/news/world-us-canada-65202978?at_medium=RSS&at_campaign=KARANGA outlet 2023-04-12 15:40:21
ニュース BBC News - Home Study reveals cancer’s ‘infinite’ ability to evolve https://www.bbc.co.uk/news/health-65252510?at_medium=RSS&at_campaign=KARANGA cures 2023-04-12 15:18:34
ニュース BBC News - Home Matt Hancock investigated by Parliament's standards watchdog https://www.bbc.co.uk/news/uk-politics-65253933?at_medium=RSS&at_campaign=KARANGA watchdog 2023-04-12 15:48:02
ニュース BBC News - Home Women's Six Nations 2023: Emma Sing to make first England start against Wales https://www.bbc.co.uk/sport/rugby-union/65252915?at_medium=RSS&at_campaign=KARANGA Women x s Six Nations Emma Sing to make first England start against WalesFull back Emma Sing will start for England against Wales in Saturday s Women s Six Nations match as four players return from injury 2023-04-12 15:02:26
ニュース BBC News - Home World Rugby considering card reviews for World Cup depending on trials https://www.bbc.co.uk/sport/rugby-union/65253745?at_medium=RSS&at_campaign=KARANGA World Rugby considering card reviews for World Cup depending on trialsCard reviews are being considered by World Rugby for the World Cup in France this autumn but their use will be dependent on the outcome of trials 2023-04-12 15:36:35
ニュース BBC News - Home Joe Biden hails Northern Ireland young people on Belfast visit https://www.bbc.co.uk/news/uk-northern-ireland-65208880?at_medium=RSS&at_campaign=KARANGA future 2023-04-12 15:46:33

コメント

このブログの人気の投稿

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