投稿時間:2023-07-06 18:26:30 RSSフィード2023-07-06 18:00 分まとめ(29件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT 気になる、記になる… 「Nothing Phone (2)」のスペックやベンチマークスコアなど様々な情報が明らかに https://taisy0.com/2023/07/06/173725.html nothing 2023-07-06 08:37:25
ROBOT ロボスタ GPT-4とも連携して高度な記事を自動生成する「ユーザーローカル AIライター」の無償提供を開始 https://robotstart.info/2023/07/06/userlocalaiwritter-launch-gpt4.html 2023-07-06 08:01:43
IT ITmedia 総合記事一覧 [ITmedia Mobile] IIJmioがモトローラ製「motorola razr 40 ultra」「motorola edge 40」を7月21日に発売 https://www.itmedia.co.jp/mobile/articles/2307/06/news149.html iijmio 2023-07-06 17:45:00
IT ITmedia 総合記事一覧 [ITmedia News] 遊びながら運動習慣を──子ども向け運動用スマートシューズ、バンダイが発売 https://www.itmedia.co.jp/news/articles/2307/06/news169.html digicalized 2023-07-06 17:30:00
IT ITmedia 総合記事一覧 [ITmedia ビジネスオンライン] 「Threads」使ってみた! メタ新SNSにさまざまな反応 https://www.itmedia.co.jp/business/articles/2307/06/news168.html itmedia 2023-07-06 17:26:00
IT ITmedia 総合記事一覧 [ITmedia News] NEC、独自の日本語大規模言語モデルを開発 パラメータ数130億、クラウドで運用可能 性能も世界トップクラス https://www.itmedia.co.jp/news/articles/2307/06/news164.html itmedianewsnec 2023-07-06 17:05:00
IT 情報システムリーダーのためのIT情報専門サイト IT Leaders NEC、GPU×1枚でも動く130億パラメータと軽量な日本語大規模言語モデルを開発、社内で活用中 | IT Leaders https://it.impress.co.jp/articles/-/25057 NEC、GPU×枚でも動く億パラメータと軽量な日本語大規模言語モデルを開発、社内で活用中ITLeadersNECは年月日、日本語の大規模言語モデルLLMを開発したと発表した。 2023-07-06 17:40:00
Ruby Railsタグが付けられた新着投稿 - Qiita Dynamoidでページネーションを実装する https://qiita.com/renkuuuuuunn/items/62c97f432b49d82e16fc dynamodb 2023-07-06 17:51:17
海外TECH MakeUseOf 5 Fun and Quirky Movie Recommendation Sites to Discover Films to Watch Next https://www.makeuseof.com/fun-movie-recommendation-sites-discover-films-to-watch-next/ different 2023-07-06 08:30:17
海外TECH DEV Community Increasing ChatGPT Live Data Internet Quality https://dev.to/polterguy/increasing-chatgpt-live-data-internet-quality-4nf Increasing ChatGPT Live Data Internet QualityYesterday we were able to connect our ChatGPT chatbots to the internet This feature is still experimental and it doesn t always work But today we were able to sort out of the bugs related to this In this article I will highlight some of the more important things we did to accomplish this and share my findings with the rest of the world Hopefully it ll be useful for others trying to accomplish the same We re a Hyperlambda shop of course but you can probably transpile our ideas to your programming language of choice Try ChatGPT with Internet AccessBefore I start explaining what we did do me a favour Click our chat button in the bottom right corner of this page and write the following into it Find me information for the following query Does WHO declare COVID to be a pandemic in The point being that you ll get something such as the following back from it The difference between the above answer and what ChatGPT answers you is obvious I presume Our chatbot can reach out to the internet using DuckDuckGo and scrape resulting websites allowing us to have ChatGPT deal with real time information from the internet Notice it will only reach out to the internet if you write your query as follows Find me information for the following query QUERY HERE Now that we ve got the semantics out of the picture let s look at some of the things we had to do to increase the quality of this process Initially only about to percent of our queries would succeed and below I will explain why and what we did to increase this number beyond Website scrapingWe ve probably got the best web scraping technology in the industry and we ve learned a lot as we ve been using it over the last months scraping dozens of websites every single day due to our get a free AI chatbot web form This puts us in a unique position to understand how to create high quality AI training data from websites and all sorts of different sources And you d be surprised by how much of the AI problem is good old fashion software development with algorithms architecture composition software design and simple code If you want better AI write better traditional code Some of the more important findings in regards to website scraping we ve done are as follows Not all websites CAN be scrapedWe try to be a good scraping citizen With this I mean we clearly identify our spiders as website scrapers using unique identifiable HTTP User Agent headers and we try our best to respect websites to avoid overloading them as we scrape them More work can be done here but at least contrary to most others we don t hide the fact that we re scraping your website However not all websites allows for being scraped Some websites simply shuts off all web scrapers they can identify Some have web firewalls preventing anything but human beings to access these and scrape these Which creates a problem for us as we try to retrieve whatever information we can find at these sites The way we solve this is by invoking DuckDuckGo and retrieve the top hits for whatever query the user is searching for Then we retrieve all of these in parallel with a timeout of seconds Why the timeout Because some sites will block you from getting data while keeping the socket connection open implying they will never return The idea is that unless the site returns its HTML in less than seconds we ll release the HTTP connection and simply ignore this URL Out of hits from DuckDuckGo typically or less will block Since we re fetching information in parallel async from URLs we ll still get some information from websites of the time And the process as a whole will never take more than seconds due to our timeout The timeout is crucial for us since we don t persist data locally but always fetches it on demand implying seconds to scrape web pages becomes extra seconds to get your answer from ChatGPT Below is the primary entry point code Even if you don t understand Hyperlambda you should be able to understand the general idea and possibly transpile it into your programming language of choice Slot that searches DuckDuckGo for max URLs matching the query for then to scrape each URL and aggregating the result returning it back to caller as a single Markdown slots create magic http duckduckgo and scrape Sanity checking invocation validators mandatory x arguments query validators string x arguments query min max validators integer x arguments max min max Searching DuckDuckGo for matches add x get nodes x arguments signal magic http duckduckgo search Building our execution object that fetches all URLs simultaneously in parallel exe Waiting for all scraping operations to return join for each x signal result Dynamically contructing our lambda object cur fork reference try unwrap x signal magic http scrape url url x reference url semantics bool true catch log error Could not scrape URL url x reference url message x arguments message Adding URL and title as reference to currently iterated fork unwrap x add x cur fork reference url x dp url title x dp title Adding current thread to above join add x exe join get nodes x cur Executing exe retrieving all URLs in parallel eval x exe Iterating through each above result returning result to caller Notice we only iterate through invocations that have result and did not timeout by verifying signal slot has children for each x exe join fork Verifying currently iterated node has result containing both prompt and completion if exists x dp try signal prompt completion lambda Adding primary return lambda to return below unwrap x add x return url x dp reference url title x dp reference title snippets Adding snippets to return below add x return snippets get nodes x dp try signal Returning result of invocation to caller returnThe basic idea is as follows Query DuckDuckGo and scrape the reulting top URLsCreate one async thread for each result and retrieve these from their respective URLs with a timeout of secondsWait for all threads to finish and create an aggregated resultThere is a lot more code related to this but since Magic is Open Source you can study its code for more details For instance we do a lot to try our best to create Markdown out of the resulting HTML This significantly reduces the amount of data we re sending to ChatGPT while also keeping hyperlinks images and lists in their semantic form This is why our chatbot can display images hyperlinks and lists the way it does This simple fact increases the quality of our chatbot alone by at least order of magnitudes We do NOT STEAL your informationOne thing we do different is that we try our best to always provide source and references to our users if we can fit it into the context This implies it ll typically end its explanation with something like This information was fetched from the following URLs abc xyz This is first of all the polite thing to do and secondly it allows our users to fact check what our chatbots are telling you The end result becomes that instead of stealing traffic from your website we d probably instead GIVE your website additional traffic Since users would probably want to fact check their queries by reading the source DuckDuckGo provides us with ConclusionThis is hard I remember my former partner saying Why should I invest in something anybody can copy and steal Well so far we re the only one in the industry able to do what we re currently doing We re basically years ahead of the competition and nobody are able to copy us Even though I do my best to help them copy our ideas every single day by exclusively innovation openly in the public space and open source licensing of every single line of code I write You were wrong I was right check billion million thousand and more to go Psst try out our AI chatbots here 2023-07-06 08:40:38
海外TECH DEV Community How to install Angular with Tailwind CSS and the UI components from Flowbite https://dev.to/themesberg/how-to-install-angular-with-tailwind-css-and-the-ui-components-from-flowbite-2lkg How to install Angular with Tailwind CSS and the UI components from FlowbiteAngular is a free and open source single page web framework written in TypeScript used by millions of developers and projects that can help you build and scale your web applications by using features like components routing form management API calls interface and more The framework was released by the Google team in and it is used by websites such as Upwork Forbes Gmail YouTube Udacity and more including most of the Google Suite apps Follow this guide to learn how to set up a new Angular project with Tailwind CSS and integrate the open source UI components from the Flowbite Library Create Angular projectThe recommended and quickest way to get started with creating a new Angular project is by installing the official CLI tool by running the following command in your terminal npm install g angular cliThis command will make the Angular CLI available on your local computer Run the following command to create a new Angular project ng new my appYou can follow the instructions from the CLI prompts to select the options that you want to choose when creating a new project you should select CSS when asked This command will create a new folder called my app where you have all the necessary source files to start a new local and production ready Angular project Run the ng serve open command in your terminal to start a local server ng serve openThis will create a local development server and automatically open a new tab on the localhost port by adding the open flag to the command Congratulations Now you have a fully working Angular project installed and configured Install Tailwind CSSNow that you ve succesfully installed and configured an Angular project we can proceed with installing the most popular utility first CSS framework called Tailwind Install Tailwind CSS and Post CSS via NPM by running the following command npm install tailwindcss postcss autoprefixer save devThis command will install all the dependencies of Tailwind CSS available in your package json file Run the init command from Tailwind CSS to create a new tailwind config js file npx tailwindcss initUpdate the newly generated config file to set up the source template files from Angular type import tailwindcss Config module exports content src html ts add this line theme extend plugins Import the core Tailwind directives inside the styles css file You can add global styles to this file and also import other style files tailwind base tailwind components tailwind utilities Start a local development server on Angular by running ng serve open If you already had one open then you need to restart it to allow Angular to internally set up the new configuration Congratulations You can now start using the utility classes from Tailwind CSS inside your Angular project Install FlowbiteNow that you have both Angular and Tailwind CSS configured for your web application project you can proceed by installing the Flowbite Library to start leveraging the interactive UI components such as navbars modals cards buttons and more to build user interfaces faster with Tailwind CSS support Install and require Flowbite as a dependency via NPM for your package json file npm install flowbiteRequire the Flowbite plugin inside your tailwind config js file type import tailwindcss Config module exports content src html ts theme extend plugins require flowbite plugin add this line Configure the template paths to include the interactive Tailwind CSS classes from Flowbite type import tailwindcss Config module exports content src html ts node modules flowbite js add this line theme extend plugins require flowbite plugin Update the app component ts file to use the initFlowbite function to enable the interactive components via data attributes import Component from angular core import OnInit from angular core import initFlowbite from flowbite Component selector app root templateUrl app component html styleUrls app component css export class AppComponent implements OnInit title web app ngOnInit void initFlowbite This will allow you to enable components such as the modals navigation bars dropdowns to dynamically set up the functionality via our data attributes interface UI componentsNow that you have installed all of the frameworks and libraries you can start using the whole collection of UI components and templates from the Flowbite UI Library and Blocks Let s first start by copy pasting one of the default modal component examples from the documentation and add it inside the app component html file lt Modal toggle gt lt button data modal target defaultModal data modal toggle defaultModal class block text white bg blue hover bg blue focus ring focus outline none focus ring blue font medium rounded lg text sm px py text center dark bg blue dark hover bg blue dark focus ring blue type button gt Toggle modal lt button gt lt Main modal gt lt div id defaultModal tabindex aria hidden true class fixed top left right z hidden w full p overflow x hidden overflow y auto md inset h calc rem max h full gt lt div class relative w full max w xl max h full gt lt Modal content gt lt div class relative bg white rounded lg shadow dark bg gray gt lt Modal header gt lt div class flex items start justify between p border b rounded t dark border gray gt lt h class text xl font semibold text gray dark text white gt Terms of Service lt h gt lt button type button class text gray bg transparent hover bg gray hover text gray rounded lg text sm w h ml auto inline flex justify center items center dark hover bg gray dark hover text white data modal hide defaultModal gt lt svg class w h aria hidden true xmlns fill none viewBox gt lt path stroke currentColor stroke linecap round stroke linejoin round stroke width d m m M l M l gt lt svg gt lt span class sr only gt Close modal lt span gt lt button gt lt div gt lt Modal body gt lt div class p space y gt lt p class text base leading relaxed text gray dark text gray gt With less than a month to go before the European Union enacts new consumer privacy laws for its citizens companies around the world are updating their terms of service agreements to comply lt p gt lt p class text base leading relaxed text gray dark text gray gt The European Union s General Data Protection Regulation G D P R goes into effect on May and is meant to ensure a common set of data rights in the European Union It requires organizations to notify users as soon as possible of high risk data breaches that could personally affect them lt p gt lt div gt lt Modal footer gt lt div class flex items center p space x border t border gray rounded b dark border gray gt lt button data modal hide defaultModal type button class text white bg blue hover bg blue focus ring focus outline none focus ring blue font medium rounded lg text sm px py text center dark bg blue dark hover bg blue dark focus ring blue gt I accept lt button gt lt button data modal hide defaultModal type button class text gray bg white hover bg gray focus ring focus outline none focus ring blue rounded lg border border gray text sm font medium px py hover text gray focus z dark bg gray dark text gray dark border gray dark hover text white dark hover bg gray dark focus ring gray gt Decline lt button gt lt div gt lt div gt lt div gt lt div gt Adding this code should create a toggle button which on the click event should show a modal component The interactivity is enabled via the data attributes interface from Flowbite Data attributesThe Flowbite Library is by default powered by the data attributes interface that you can use to easily set up interactive components by targeting elements directly from your template components Let s add a dropdown component from the UI library lt button id dropdownDefaultButton data dropdown toggle dropdown class text white bg blue hover bg blue focus ring focus outline none focus ring blue font medium rounded lg text sm px py text center inline flex items center dark bg blue dark hover bg blue dark focus ring blue type button gt Dropdown button lt svg class w h ml aria hidden true xmlns fill none viewBox gt lt path stroke currentColor stroke linecap round stroke linejoin round stroke width d m gt lt svg gt lt button gt lt div id dropdown class z hidden bg white divide y divide gray rounded lg shadow w dark bg gray gt lt ul class py text sm text gray dark text gray aria labelledby dropdownDefaultButton gt lt li gt lt a href class block px py hover bg gray dark hover bg gray dark hover text white gt Dashboard lt a gt lt li gt lt li gt lt a href class block px py hover bg gray dark hover bg gray dark hover text white gt Settings lt a gt lt li gt lt li gt lt a href class block px py hover bg gray dark hover bg gray dark hover text white gt Earnings lt a gt lt li gt lt li gt lt a href class block px py hover bg gray dark hover bg gray dark hover text white gt Sign out lt a gt lt li gt lt ul gt lt div gt This example should also show a button that on the click event will show a dropdown menu that you can easily update via Tailwind CSS and the data attributes API JavaScript APIAlternatively to the data attributes strategy you can also choose to programatically set up the interactivity by directly importing the components from Flowbite and use the methods and options described in the documentation of Flowbite at the end of each page For example here s how you can set up a carousel component directly with JavaScript import Carousel from flowbite import type CarouselItem CarouselOptions CarouselInterface from flowbite const prevButton document getElementById data carousel prev const nextButton document getElementById data carousel next prevButton addEventListener click gt carousel prev nextButton addEventListener click gt carousel next const items CarouselItem position el document getElementById carousel item position el document getElementById carousel item position el document getElementById carousel item position el document getElementById carousel item const options CarouselOptions defaultPosition interval indicators activeClasses bg white dark bg gray inactiveClasses bg white dark bg gray hover bg white dark hover bg gray items position el document getElementById carousel indicator position el document getElementById carousel indicator position el document getElementById carousel indicator position el document getElementById carousel indicator callback functions onNext gt console log next slider item is shown onPrev gt console log previous slider item is shown onChange gt console log new slider item has been shown const carousel CarouselInterface new Carousel items options carousel cycle set event listeners for prev and next buttonsconst prevButton document getElementById data carousel prev const nextButton document getElementById data carousel next prevButton addEventListener click gt carousel prev nextButton addEventListener click gt carousel next You also need to have the following HTML markup available inside your codebase and Angular template files lt div class relative w full gt lt Carousel wrapper gt lt div class relative h overflow hidden rounded lg sm h xl h xl h gt lt Item gt lt div id carousel item class hidden duration ease in out gt lt img src docs images carousel carousel svg class absolute block w full translate x translate y top left alt gt lt div gt lt Item gt lt div id carousel item class hidden duration ease in out gt lt img src docs images carousel carousel svg class absolute block w full translate x translate y top left alt gt lt div gt lt Item gt lt div id carousel item class hidden duration ease in out gt lt img src docs images carousel carousel svg class absolute block w full translate x translate y top left alt gt lt div gt lt Item gt lt div id carousel item class hidden duration ease in out gt lt img src docs images carousel carousel svg class absolute block w full translate x translate y top left alt gt lt div gt lt div gt lt Slider indicators gt lt div class absolute z flex space x translate x bottom left gt lt button id carousel indicator type button class w h rounded full aria current true aria label Slide gt lt button gt lt button id carousel indicator type button class w h rounded full aria current false aria label Slide gt lt button gt lt button id carousel indicator type button class w h rounded full aria current false aria label Slide gt lt button gt lt button id carousel indicator type button class w h rounded full aria current false aria label Slide gt lt button gt lt div gt lt Slider controls gt lt button id data carousel prev type button class absolute top left z flex items center justify center h full px cursor pointer group focus outline none gt lt span class inline flex items center justify center w h rounded full bg white dark bg gray group hover bg white dark group hover bg gray group focus ring group focus ring white dark group focus ring gray group focus outline none gt lt svg class w h text white dark text gray aria hidden true xmlns fill none viewBox gt lt path stroke currentColor stroke linecap round stroke linejoin round stroke width d M l gt lt svg gt lt span class hidden gt Previous lt span gt lt span gt lt button gt lt button id data carousel next type button class absolute top right z flex items center justify center h full px cursor pointer group focus outline none gt lt span class inline flex items center justify center w h rounded full bg white dark bg gray group hover bg white dark group hover bg gray group focus ring group focus ring white dark group focus ring gray group focus outline none gt lt svg class w h text white dark text gray aria hidden true xmlns fill none viewBox gt lt path stroke currentColor stroke linecap round stroke linejoin round stroke width d m gt lt svg gt lt span class hidden gt Next lt span gt lt span gt lt button gt lt div gt In this case the advantage is that you can control the behaviour of the components as you wish being able to override the default settings Using TypeScriptThe Flowbite UI components also supports TypeScript and you can import the types and apply them when using the JavaScript API programatically For example here s how you can import the types for the Carousel component import type CarouselItem CarouselOptions CarouselInterface from flowbite other codeconst carousel CarouselInterface new Carousel items options You can read more about using Flowbite and TypeScript by following our documentation guide Angular Starter ProjectWe built a free and open source starter project on GitHub that you can clone to use as a reference for this guide and for your own Angular web application configured with Flowbite and Tailwind CSS Flowbite Angular LibraryThe awesome open source community from Flowbite also started working on a standalone Flowbite Angular library with native components where you can also contribute to the development of the project until a stable release is achieved Disclaimer this tutorial was first featured on the Angular Tailwind CSS tutorial on the Flowbite Documentation 2023-07-06 08:01:56
医療系 医療介護 CBnews 医療費助成、マイナ連携で医療機関のコスト削減へ-デジタル庁が実証事業、定期接種や妊婦健診も対象 https://www.cbnews.jp/news/entry/20230706174727 予防接種 2023-07-06 17:55:00
海外ニュース Japan Times latest articles Bridge girder falls at construction site in Shizuoka, killing two workers https://www.japantimes.co.jp/news/2023/07/06/national/shizuoka-bridge-girder-deaths/ Bridge girder falls at construction site in Shizuoka killing two workersSeven people were taken to the hospital after the incident which occurred at around a m during work on a multilevel bypass in the city 2023-07-06 17:21:28
海外ニュース Japan Times latest articles Low incomes most likely to curb children’s extracurricular activities, survey finds https://www.japantimes.co.jp/news/2023/07/06/national/income-disparity-extracurricular-activities/ Low incomes most likely to curb children s extracurricular activities survey findsThe survey covered parents of elementary school students from grades to over a period of two days in October 2023-07-06 17:18:40
ニュース BBC News - Home Speaking skills key to break class barriers, says Keir Starmer https://www.bbc.co.uk/news/uk-politics-66113585?at_medium=RSS&at_campaign=KARANGA meals 2023-07-06 08:33:50
ニュース BBC News - Home Wagner boss Prigozhin is in Russia, Belarus ruler Lukashenko says https://www.bbc.co.uk/news/world-europe-66118007?at_medium=RSS&at_campaign=KARANGA petersburg 2023-07-06 08:53:49
ニュース BBC News - Home Gary Neville admits error in £400m Manchester development https://www.bbc.co.uk/news/uk-england-manchester-66114735?at_medium=RSS&at_campaign=KARANGA flats 2023-07-06 08:45:29
ニュース BBC News - Home Could the Conservatives lose five by-elections? https://www.bbc.co.uk/news/uk-politics-66113704?at_medium=RSS&at_campaign=KARANGA electoral 2023-07-06 08:44:30
ニュース BBC News - Home Swimmers warned away from popular NI beaches https://www.bbc.co.uk/news/uk-northern-ireland-66117867?at_medium=RSS&at_campaign=KARANGA castlerock 2023-07-06 08:26:22
ビジネス 不景気.com 仙台の介護施設運営「泉翔会」が民事再生、負債20億円 - 不景気com https://www.fukeiki.com/2023/07/sensho-kai.html 介護施設 2023-07-06 08:33:16
ニュース Newsweek 「嫌われようが使命を果たす覚悟」...泉房穂・前明石市長が語った「社会の変え方」 https://www.newsweekjapan.jp/stories/business/2023/07/post-102049.php この哲学をもって明石の市民のためにできること、特にゼロからイチをつくるところは、ほぼ達成できたと思っています。 2023-07-06 17:24:00
ビジネス プレジデントオンライン ストーリーズで就職、結婚の報告までする…大人が知らない「Z世代」の生態 - 近い将来確実に消費の中心となり、ヒットを生み出す拡散力がある https://president.jp/articles/-/71366 起業家 2023-07-06 18:00:00
マーケティング MarkeZine ADK MS、ECモール販促を一気通貫で支援する「ADK-eCommerce Beat」を開始 http://markezine.jp/article/detail/42712 adkecommercebeat 2023-07-06 17:15:00
仮想通貨 BITPRESS(ビットプレス) [日経] 仮想通貨のFTX、日本法人売却見送り 金融庁に意向伝達 https://bitpress.jp/count2/3_9_13663 日本法人 2023-07-06 17:29:54
IT 週刊アスキー 推し活アイテムを多数販売! 「推し活フェスPOP UP SHOP -わたしらしい推し活- in SHINJUKU」 https://weekly.ascii.jp/elem/000/004/144/4144176/ inshinjuku 2023-07-06 17:30:00
IT 週刊アスキー 【2023夏アニメ】『呪術廻戦』2期に『るろうに剣心』『スプリガン』 https://weekly.ascii.jp/elem/000/004/144/4144192/ 呪術廻戦 2023-07-06 17:30:00
IT 週刊アスキー 京王百貨店新宿店「ラグビー日本代表オフィシャルポップアップストア」限定オープン 公式グッズおよそ200種が集結! https://weekly.ascii.jp/elem/000/004/144/4144153/ onthecorner 2023-07-06 17:15:00
IT 週刊アスキー 制作はA-1 Pictures!『FREDERICA(フレデリカ)』OPムービーが公開 https://weekly.ascii.jp/elem/000/004/144/4144197/ apictures 2023-07-06 17:15:00
IT 週刊アスキー LINE BITMAX、PayPayマネーで1円からの暗号資産取引に対応 https://weekly.ascii.jp/elem/000/004/144/4144193/ 提供開始 2023-07-06 17:45:00

コメント

このブログの人気の投稿

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