投稿時間:2021-08-03 22:32:56 RSSフィード2021-08-03 22:00 分まとめ(35件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT 気になる、記になる… Apple、Touch ID搭載「Magic Keyboard」の単品販売を開始 − 編み込み式ケーブルを同梱した「Magic Mouse」なども https://taisy0.com/2021/08/03/143752.html apple 2021-08-03 12:38:23
js JavaScriptタグが付けられた新着投稿 - Qiita create-react-appでjestを使う方法 https://qiita.com/syo19961113/items/9efbac6875dc0bd37354 これはjestは現時点でESModulesに対応していないので、ESModulesを使用する場合はbabelの導入が必要になります。 2021-08-03 21:58:57
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) Google Spreadsheet 複数条件 一列だけ色付け https://teratail.com/questions/352606?rss=all GoogleSpreadsheet複数条件一列だけ色付け前提・実現したいことGooglenbspSpreadsheetで以下の条件付き書式nbsp複数条件andBquotChatquotCltnbspandBquotVoicequotCltを使用し、それぞれのターゲットにミートできなかった場合は文字が赤くなるように設定しました。 2021-08-03 21:52:11
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) NeoPixel WS2812B 複数ストリップの連結 https://teratail.com/questions/352605?rss=all NeoPixelWSB複数ストリップの連結前提・実現したいことwavesnbspWSBnbspneopixelnbspPCBnbsp連nbspをつ数珠つなぎにして、計個のRGBnbspLEDを制御したいと考えています。 2021-08-03 21:48:57
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) Node.jsをインストールしたが、操縦可能なプログラムまたはバッチファイルとして認識されない https://teratail.com/questions/352604?rss=all nodejs 2021-08-03 21:47:38
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) EntryBoxに入力後、自動で一文字追加しカーソルを最後に置きたい https://teratail.com/questions/352603?rss=all EntryBoxに入力後、自動で一文字追加しカーソルを最後に置きたい前提・実現したいことtkinterで自作の電卓を作成しています。 2021-08-03 21:39:04
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) seleniumでChromeのバージョンが出たときの対応について https://teratail.com/questions/352602?rss=all seleniumでChromeのバージョンが出たときの対応について実現したい事スクレイピングをしようとしたら以下のようなエラーメッセージが出てきましたので、うまく解決させたいです。 2021-08-03 21:24:20
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) AndroidStudioのエミュレーターがエラーになって起動できません。教えてください。 https://teratail.com/questions/352601?rss=all AndroidStudioのエミュレーターがエラーになって起動できません。 2021-08-03 21:09:05
Ruby Rubyタグが付けられた新着投稿 - Qiita インスタンス変数とローカル変数の違い https://qiita.com/mkato1013/items/b1995738aebedb4bf166 ビューでも使うということは、スコープの関係から、インスタンス変数を使用している①が正しいということになります。 2021-08-03 21:52:27
Ruby Rubyタグが付けられた新着投稿 - Qiita [Ruby on rails] グループ作成機能⑥ Action mailerの環境変数化 gem(dotenv-rails) /.env https://qiita.com/ki_87/items/82b28f89a8552506a169 以上で、⑤で作成したメール機能の環境変数化は完了です。 2021-08-03 21:31:25
Ruby Railsタグが付けられた新着投稿 - Qiita インスタンス変数とローカル変数の違い https://qiita.com/mkato1013/items/b1995738aebedb4bf166 ビューでも使うということは、スコープの関係から、インスタンス変数を使用している①が正しいということになります。 2021-08-03 21:52:27
Ruby Railsタグが付けられた新着投稿 - Qiita [Ruby on rails] グループ作成機能⑥ Action mailerの環境変数化 gem(dotenv-rails) /.env https://qiita.com/ki_87/items/82b28f89a8552506a169 以上で、⑤で作成したメール機能の環境変数化は完了です。 2021-08-03 21:31:25
技術ブログ Developers.IO 不適切なワードや画像を手軽に検出できるSaaS WebPurifyをつかってみた https://dev.classmethod.jp/articles/profanity-filter-saas/ saaswebpurify 2021-08-03 12:25:08
海外TECH DEV Community Create a wordcloud of news headlines in python! https://dev.to/code_jedi/create-a-wordcloud-of-news-headlines-in-python-5549 Create a wordcloud of news headlines in python Today I ll be showing you a simple way to make a wordcloud of news headlines in python If you haven t read this tutorial explaining how to scrape news headlines in python make sure you do In summary here s the code for scraping news headlines in python import requestsfrom bs import BeautifulSoupurl response requests get url soup BeautifulSoup response text html parser headlines soup find body find all h for x in headlines print x text strip To create a wordcloud out of these news headlines first import these libraries beside the libraries needed to scrape our news source import requestsfrom bs import BeautifulSoupfrom wordcloud import WordCloud add wordcloudimport matplotlib pyplot as plt add pyplot from matplotlibNext replacefor x in headlines print x text strip withhtext for x in el htext htext x text strip This will first define the htext string then add every news headline to the string and seperate them with spaces Before we make the wordcloud you can check the news headlines by using print htext To make the wordcloud add these lines of code to the end of your script wordcloud WordCloud width height margin generate soup get text htext plt imshow wordcloud interpolation bilinear plt axis off plt margins x y plt show Let me explain First create a wordcloud well more like a box in this case sized by Next our wordcloud will be created using plt imshow interpolation bilinear just makes the words in the wordcloud easier to read plt axis off and plt margins x y make sure our wordcloud isn t displayed as a graph Finally our wordcloud is displayed using plt show If you run your code your wordcloud should look something like this Of course your wordcloud will probably be quite different since news headlines change all the time That s it for this Tutorial Mini project If you re a beginner who likes discovering new things about python try my weekly python newsletterByeeeee 2021-08-03 12:33:23
海外TECH DEV Community Monitor your Spring Boot application with OpenTelemetry and SigNoz https://dev.to/signoz/monitor-your-spring-boot-application-with-opentelemetry-and-signoz-1n4b Monitor your Spring Boot application with OpenTelemetry and SigNozOpenTelemetry is a vendor agnostic instrumentation library In this article let s explore how you can auto instrument your Java Spring Boot application with OpenTelemetry and get the data reported through SigNoz an open source APM and observability tool Steps to get started with OpenTelemetry for Spring Boot applicationInstalling SigNozInstalling sample Spring Boot appAuto instrumentation with OpenTelemetry and sending data to SigNoz Installing SigNozYou can get started with SigNoz using just three commands at your terminal if you have Docker installed You can read about other deployment options from SigNoz documentation git clone cd signoz deploy install shYou will have an option to choose between ClickHouse or Kafka Druid as a storage option Trying out SigNoz with ClickHouse database takes less than GB of memory and for this tutorial we will use that option When you are done installing SigNoz you can access the UI at http localhost The application list shown in the dashboard is from a sample app called HOT R O D that comes bundled with the SigNoz installation package SigNoz dashboard Installing sample Spring Boot appFor this tutorial we will use a sample Spring Boot application built using Maven You can find the code for the application at its GitHub repo Steps to get the app set up and running Git clone the repository and go to the root foldergit clone cd spring petclinicUpdate PortThis app runs on port by default But port is used by SigNoz for its query service so let s update the port number to something else Open the application properties file located at spring petclinic src main resources and update the server port attribute database init supports mysql toodatabase hspring datasource schema classpath db database schema sqlspring datasource data classpath db database data sql Webspring thymeleaf mode HTMLserver port JPAspring jpa hibernate ddl auto nonespring jpa open in view false Internationalizationspring messages basename messages messages Actuatormanagement endpoints web exposure include Logginglogging level org springframework INFO logging level org springframework web DEBUG logging level org springframework context annotation TRACE Maximum time static resources should be cachedspring resources cache cachecontrol max age hAlso update the port number in petclinic test plan jmx located at spring petclinic src test jmeter to port number It will appear under PETCLINIC PORT elementProp Run the applicationRun the application using the following commands mvnw packagejava jar target jarYou can now access the application UI here http localhost Sample Spring Boot application running in your local hostOnce you ensure that your application runs fine stop it with ctrl z on mac as we will be launching the application with the Java agent downloaded from OpenTelemetry Auto instrumentation with OpenTelemetry and sending data to SigNozFor instrumenting Java applications OpenTelemetry has a very handy Java JAR agent that can be attached to any Java application The JAR agent can detect a number of popular libraries and frameworks and instrument it right out of the box You don t need to add any code for that Download the latest Java JAR agent Now you need to enable the instrumentation agent as well as run your sample application You can do so by the following command OTEL METRICS EXPORTER none OTEL EXPORTER OTLP ENDPOINT http lt IP of SigNoz gt OTEL RESOURCE ATTRIBUTES service name javaApp java javaagent path to opentelemetry javaagent all jar jar target jarAs you are running this on your local host you need to replace lt IP of SigNoz gt with localhost The path should be updated to where you have kept your downloaded Java JAR agent Your final command will look like this OTEL METRICS EXPORTER none OTEL EXPORTER OTLP ENDPOINT http localhost OTEL RESOURCE ATTRIBUTES service name javaApp java javaagent Users Downloads opentelemetry javaagent all jar jar target jarNote the path is updated for my local environment Check out the Spring Pet Clinic app at http localhost and play around with it to generate some load It might take minutes before it starts showing up in the SigNoz dashboard Below you can find your javaApp in the list of applications being monitored javaApp in the list of applications monitored Metrics and Traces of the Spring Boot applicationSigNoz makes it easy to visualize metrics and traces captured through OpenTelemetry instrumentation SigNoz comes with out of box RED metrics charts and visualization RED metrics stands for Rate of requestsError rate of requestsDuration taken by requestsMeasure things like application latency requests per sec error percentage and see your top endpointsYou can then choose a particular timestamp where latency is high to drill down to traces around that timestamp View of traces at a particular timestampYou can use flamegraphs to exactly identify the issue causing the latency Flamegraphs showing exact duration taken by each spans a concept of distributed tracing ConclusionOpenTelemetry makes it very convenient to instrument your Spring Boot application You can then use an open source APM tool like SigNoz to analyze the performance of your app As SigNoz offers a full stack observability tool you don t have to use multiple tools for your monitoring needs You can try out SigNoz by visiting its GitHub repo SigNoz signoz SigNoz helps developers monitor their applications amp troubleshoot problems an open source alternative to DataDog NewRelic etc Open source Application Performance Monitoring APM amp Observability tool Monitor your applications and troubleshoot problems in your deployed applications an open source alternative to DataDog New Relic etc Documentation • ReadMe in Chinese • Slack Community • TwitterSigNoz helps developers monitor applications and troubleshoot problems in their deployed applications SigNoz uses distributed tracing to gain visibility into your software stack You can see metrics like p latency error rates for your services external API calls and individual end points You can find the root cause of the problem by going to the exact traces which are causing the problem and see detailed flamegraphs of individual request traces Join our Slack communityCome say Hi to us on Slack Features Application overview metrics like RPS th th th Percentile latencies and Error RateSlowest endpoints in your applicationSee exact request trace to figure out issues in downstream services slow DB queries call to rd party services like payment… View on GitHubIf you want to read more about SigNoz Golang Application Performance Monitoring with SigNozNodejs Application Performance Monitoring with SigNoz 2021-08-03 12:31:32
海外TECH DEV Community Scrape news headlines with python! https://dev.to/code_jedi/scrape-news-headlines-with-python-1go6 Scrape news headlines with python Today I ll show you a way to scrape news headlines in python in under lines of code Let s get started First of all make sure to import these libraries at the beginning of your python script import requestsfrom bs import BeautifulSoupFor this tutorial I ll be using BBC news as my news source use these lines of code to get it s url url response requests get url Now we re ready to scrape using BeautifulSoup Head over to BBC news and inspect a news headline by right clicking and pressing inspect As you ll see all news headlines are contained within an h tag Now add these lines of code to scrape and display all the h tags from BBC news soup BeautifulSoup response text html parser headlines soup find body find all h for x in headlines print x text strip First we define soup as the innerHTML of the BBC news webpage Next we define headlines as an array of all h tags found within the webpage Finally paddle through the headlines array and display all of it s contents one by one ridding each element of it s outerHTML using the text strip method Now if you run your script your output should look something like this If you re a beginner who likes discovering new things about python try my weekly python newsletterByeeeee 2021-08-03 12:29:45
海外TECH DEV Community Introduction to React.js ⚛ and the required JavaScript! https://dev.to/bahyaya/introduction-to-react-js-and-the-required-javascript-4ng4 Introduction to React js and the required JavaScript React is the most popular front end JavaScript library in the field of web development It is used by large established companies and newly minted startups alike Netflix Airbnb Instagram and the New York Times to name a few React brings many advantages to the table making it a better choice than other frameworks like Angular js If you re new to ReactJS or just refreshing yourself on the core concepts this article will give you an introduction to all of React s fundamentals We ll be covering the following topics in this article Read More Introduction to React js and the required JavaScript 2021-08-03 12:28:23
海外TECH DEV Community Building a Resilient Design System https://dev.to/litmus-chaos/building-a-resilient-design-system-57gf Building a Resilient Design System About the blogThis blog will talk about the journey of creating a design system which brought a uniformity in all our designs and helped in productivity What is a Design SystemWorking in software development and design we are often required to ship one off solutions In some cases we re working inside time limitations and here and there we simply haven t yet settled upon a way ahead These one off solutions are not always bad but if they are not made on some strategy or foundation we may end up in technical and design debts Design Systems have been characterized numerous ways an assortment of visual resources an example library and a CSS Framework are the most widely recognized However it s defined as a collection of related yet independent components that can improve product development efficiencies and help enable a great customer experience Design has always been largely about systems and how to create products in a scalable and repeatable way A universal Design framework is fundamental for building better and quicker better in creating a cohesive user experience and quicker on the grounds that it s anything but a typical language to work with Why we need Design Systems Faster time to marketA Design System dispenses reinvent the wheel every time a designer or developer sits down to work on a frontend element Either the library of assets will have a component that can be promptly utilized or the available guidelines will take care of some of the brainstorming Also since debates are more averse to happen organizations can deliver products a lot quicker than without a design system Besides the Design System evolves with time So if some team comes across a problem during advancement they modify the design system accordingly This prevents different teams from running into comparative issues later on Enhanced CollaborationIn the absence of a regulated set of guidelines designers and frontend developers often find it difficult to agree on multiple grounds Designers on occasion would design something without contemplating the functionality and implementation perspectives and basically hand over the plans to designers And afterward now and then engineers may present a couple of changes in the plan to deal with functionality With a design system you get to leave all these issues behind The Design System deals with aesthetics just as functionality and guarantees designers and engineers run after a shared objective Reduced costs and fewer errorsWith a faster turnaround time and fewer elements to create from scratch we can save some valuable design and development hours which can be otherwise used for productive tasks And since a design system is constantly used by multiple teams and individuals it s much easier to isolate errors at an early stage And with every error isolation the design system leaves lesser room for errors and streamlines frontend development Getting StartedTo work through these challenges and keep our decision making process fast I was teamed up with some front end developers at ChaosNative who explained to me how react theming works and all sorts of programming constraints We cleared our calendars and for around three weeks looking through all the designs of each product we jotted down the common elements the coloring schemes and then planned in creating the design system Laying FoundationWhile looking through the designs of each product I became aware that in designs various things are common like buttons input fields only they look different due to their colors or the icons used and many other things So we needed to bring a common ground for all these things and created a color system shadows and iconography Creating the componentsThere can be many components and developers may be creating the same components with different coding styles So after discussing with the front end developers they suggested to use a common JS library package and we decided on Material Design and after reading through its component style guide it became easy to know which components we definitely needed to create and assign the properties and make variants Compiling the libraryWhile creating these components we collected them in a master file called the Litmus Component Library which we referred to throughout the design process After a week or two we began to see huge leaps in productivity by using the library when iterating on designs It has also become a guidance for upcoming design of products ConclusionWe knew that this was a challenging project It meant re designing and rebuilding the majority of the views in our software As with any project there are things we wish we would have done differently While this was a monumental task that ended up requiring efforts from many of our product teams we found that creating our Design Language System was worth the investment and a huge leap forward Since the design language and code are often shared we can now build and release features on all native platforms at roughly the same time Development is generally faster since product engineers can focus more on writing the feature logic rather than the view code Additionally engineers and designers now share a common language I believe that aided with these systems we were able to focus more on actual user experiences and concepts we want to create in the future ResourcesTo view the design file with components and guidelines LitmusChaos CommunityAre you an SRE or a Kubernetes enthusiast Does Chaos Engineering excite you Join Our Community On Slack For Detailed Discussion Feedback amp Regular Updates On Chaos Engineering For Kubernetes litmus channel on the Kubernetes workspace Check out the Litmus Chaos GitHub repo and do share your feedback Submit a pull request if you identify any necessary changes Don t forget to share these resources with someone who you think might benefit from them Peace out 2021-08-03 12:12:03
海外TECH DEV Community How to Render HTML string in a React component ? https://dev.to/jobpick/how-to-render-html-string-in-a-react-component-3kd2 How to Render HTML string in a React component In this tutorial we will see how to render HTML string in a React component Most of the rich text editor for react uses html for the formatting So the data in the text editor is saved as string lt p gt some dummy lt span gt data lt span gt lt p gt We cannot directly render this string html tags will also get treated as raw string The easiest solution for this is to use dangerouslySetInnerHTML lt div dangerouslySetInnerHTML html lt p gt some data lt p gt gt by using dangerouslySetInnerHTML entire html in the string is preserved Other alternative would be to use a html react parser library Like this post Our Twitter job pick Our website jobpick in 2021-08-03 12:09:47
Apple AppleInsider - Frontpage News SEC chief wants more scrutiny & regulation of cryptocurrencies https://appleinsider.com/articles/21/08/03/sec-chief-wants-more-scrutiny-regulation-of-cryptocurrencies?utm_medium=rss SEC chief wants more scrutiny amp regulation of cryptocurrenciesThe new head of the SEC Chair Gary Gensler wants to protect cryptocurrency investors from fraud and believes that changes in investment laws will be needed soon Cryptocurrencies are a hot button topic in financial circles and the prospect of government oversight of the field has been raised repeatedly In his first interview on cryptocurrencies since assuming office in April Securities and Exchange Commission Chair Gensler offers some positive thoughts on the subject According to Gensler he is neutral on the technology even intrigued having previously spent three years teaching it leaning into it However speaking to Bloomberg he says there is a need for safety claiming I m not neutral about investor protection Read more 2021-08-03 12:54:25
Apple AppleInsider - Frontpage News New iMac Magic Keyboard with Touch ID available for individual sale https://appleinsider.com/articles/21/08/03/new-imac-magic-keyboard-with-touch-id-available-for-individual-sale?utm_medium=rss New iMac Magic Keyboard with Touch ID available for individual salePreviously only available with the new inch iMac the Magic Keyboard with Touch ID can now be bought on its own as can the new Magic Trackpad and Magic Mouse The inch iMac s Magic Keyboard with Touch ID is now available separatelyTouch ID has been on MacBook Pro models for years but the biometric security feature came to desktop Macs with the inch iMac Originally exclusively available with that model Apple introduced both a standard Magic Keyboard with Touch ID and an extended one with a numeric keypad Read more 2021-08-03 12:43:03
Apple AppleInsider - Frontpage News Apple asking Chinese iPad mini users if the screen is too small https://appleinsider.com/articles/21/08/03/apple-asking-chinese-ipad-mini-users-if-the-screen-is-too-small?utm_medium=rss Apple asking Chinese iPad mini users if the screen is too smallApple is reportedly asking iPad users for feedback on the iPad mini including whether the display is big enough for them among other questions about their tablet usage habits Apple is believed to be preparing the iPad mini for launch this fall complete with a major overhaul to its design and a larger display A survey hints that Apple s not quite done yet and is looking for more input into future developments for the compact tablet The survey from Apple spotted by IT Home questions Chinese users of the iPad mini about the device While the current iPad mini has the same general design and display as the iPad mini the survey deals with the previous generation model Read more 2021-08-03 12:44:10
海外TECH Engadget First-gen Echo Show 5 returns to an all-time low of $45 on Amazon https://www.engadget.com/first-gen-echo-show-5-all-time-low-amazon-122943901.html?src=rss First gen Echo Show returns to an all time low of on AmazonYou can now grab the first gen Echo Show for on Amazon if you didn t get the chance to do so on Prime Day in June and on Black Friday last year The Alexa powered smart display is also currently available for on Best Buy but you now have another option if you d rather purchase it from Amazon for Prime shipping or any other reason While you can get a refurbished version for less elsewhere this is the lowest price we ve seen for a brand new device that originally retails for Buy Amazon Echo Show st Gen at Amazon At that also makes this smart display cheaper than the second gen Echo Show And as we mentioned in our review of the newer device its changes are pretty minor Instead of a one megapixel camera you now get megapixels which isn t that much of an upgrade The newer smart display also comes in a light blue option while its predecessor is only available in black and white That s pretty much it though ーthe display s resolution remains the same and it still doesn t come with features its bigger counterpart the Echo Show has As we said in our review for the first gen Echo Show it s meant for those who want a smaller Amazon smart display that s also a decent alarm clock It has a sunrise alarm feature which slowly brightens the screen minutes before the time you set and it has ambient light sensor that automatically adjusts the screen s brightness based on your surroundings You can also use it to display photos and watch videos though if you don t mind the smaller screen The device supports Amazon Prime NBC and Hulu and you can always access YouTube using its built in browsers Follow EngadgetDeals on Twitter for the latest tech deals and buying advice 2021-08-03 12:29:43
金融 RSS FILE - 日本証券業協会 新型コロナウイルス感染症への証券関係機関等・各証券会社の対応について(リンク集) https://www.jsda.or.jp/shinchaku/coronavirus/link.html 新型コロナウイルス 2021-08-03 13:30:00
ニュース BBC News - Home Woman’s DNA helps convict her father for rape https://www.bbc.co.uk/news/uk-58073015 bennett 2021-08-03 12:19:58
ニュース BBC News - Home Covid-19: Behind-the-scenes battles over amber watchlist https://www.bbc.co.uk/news/uk-politics-58072985 fleming 2021-08-03 12:27:51
ニュース BBC News - Home GB teenager Hodgkinson wins 800m silver https://www.bbc.co.uk/sport/olympics/58072231 athing 2021-08-03 12:54:15
ニュース BBC News - Home Gatland makes sweeping changes for third Lions Test https://www.bbc.co.uk/sport/rugby-union/58072518 Gatland makes sweeping changes for third Lions TestBritish and Irish Lions head coach Warren Gatland makes sweeping changes to his matchday squad for Saturday s decisive third Test against South Africa 2021-08-03 12:17:57
ニュース BBC News - Home What are the holiday rules for travel to green, amber and red list countries? https://www.bbc.co.uk/news/explainers-52544307 amber 2021-08-03 12:53:47
北海道 北海道新聞 後志管内ふるさと納税1・52倍に 20年度44億円 15市町村で過去最高 https://www.hokkaido-np.co.jp/article/574549/ 過去最高 2021-08-03 21:16:00
北海道 北海道新聞 後志管内4人感染 新型コロナ https://www.hokkaido-np.co.jp/article/574547/ 新型コロナウイルス 2021-08-03 21:15:00
北海道 北海道新聞 蘭越の情報センター跡地にカフェを 町内のロクゲさん、新たな運営者に https://www.hokkaido-np.co.jp/article/574545/ 情報センター 2021-08-03 21:14:00
北海道 北海道新聞 来道者向け無料検査 1万1681人が利用 開始2週間、陽性17人 https://www.hokkaido-np.co.jp/article/574542/ 羽田空港 2021-08-03 21:08:00
北海道 北海道新聞 茂木外相、コロナ拡大で支援表明 日・ASEAN外相会議 https://www.hokkaido-np.co.jp/article/574538/ asean 2021-08-03 21:04:00
北海道 北海道新聞 胆振管内8人、日高管内5人感染 苫小牧の遊戯施設でクラスター https://www.hokkaido-np.co.jp/article/574537/ 胆振管内 2021-08-03 21:02: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件)