投稿時間:2022-08-23 18:36:27 RSSフィード2022-08-23 18:00 分まとめ(43件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT 気になる、記になる… ソニーの「wena 3」が「google Fit」とAppleの「ヘルスケア」と連携可能に https://taisy0.com/2022/08/23/160434.html apple 2022-08-23 08:14:34
ROBOT ロボスタ 調理ロボットベンチャー「TechMagic」パーソナライズミール事業を開始 一人ひとりにあった調理済みの食事を提供 https://robotstart.info/2022/08/23/personal-meal-techmagic.html 2022-08-23 08:36:31
IT ITmedia 総合記事一覧 [ITmedia News] 画像生成AI「Stable Diffusion」がオープンソース化 商用利用もOK https://www.itmedia.co.jp/news/articles/2208/23/news160.html huggingface 2022-08-23 17:33:00
IT ITmedia 総合記事一覧 [ITmedia PC USER] 「Office 2016」でVBAマクロを実行できない不具合 Microsoftが更新プログラムを公開 https://www.itmedia.co.jp/pcuser/articles/2208/23/news154.html itmediapcuser 2022-08-23 17:30:00
IT ITmedia 総合記事一覧 [ITmedia ビジネスオンライン] 男性1250人に聞く「体の悩み」 2位は「体臭」「ストレス」、1位は? https://www.itmedia.co.jp/business/articles/2208/23/news121.html itmedia 2022-08-23 17:20:00
python Pythonタグが付けられた新着投稿 - Qiita AIが画像を作成してくれるStableDiffusionを触ってみた 実行編 ※NVIDIAのGPUがなくて断念 https://qiita.com/thithi7110/items/daf7d20fb1ab7284da16 nvidia 2022-08-23 17:35:04
python Pythonタグが付けられた新着投稿 - Qiita AIが画像を作成してくれるStableDiffusionを触ってみた 環境構築 https://qiita.com/thithi7110/items/365cbb3fc16899b17aab anaconda 2022-08-23 17:32:01
python Pythonタグが付けられた新着投稿 - Qiita 特定の年齢まで、あとどのくらいの日にちが残されているかを調べる https://qiita.com/yoshieeee31/items/0e0a0d12995a369d848f 生年月日 2022-08-23 17:10:43
python Pythonタグが付けられた新着投稿 - Qiita ~/.python_history の場所を変更する https://qiita.com/kokiyasui34/items/f21d684cc976fdbf7146 pythonhistory 2022-08-23 17:07:52
js JavaScriptタグが付けられた新着投稿 - Qiita ShadowDOM内のcontenteditable属性を使ったエディタ内のキャレットの位置を取得する方法 https://qiita.com/vinyufi/items/8fb39c7c0bf533bc96e8 htmlltdi 2022-08-23 17:23:58
Linux Ubuntuタグが付けられた新着投稿 - Qiita Dockerのファイアウォール設定(ufwとiptables) https://qiita.com/ohhara_shiojiri/items/e08076009cd3098a9deb osubuntuserverltsdo 2022-08-23 17:37:18
Docker dockerタグが付けられた新着投稿 - Qiita Dockerのファイアウォール設定(ufwとiptables) https://qiita.com/ohhara_shiojiri/items/e08076009cd3098a9deb osubuntuserverltsdo 2022-08-23 17:37:18
技術ブログ Developers.IO Difference between Kinesis Data Stream and SQS https://dev.classmethod.jp/articles/difference-between-kinesis-data-stream-and-sqs/ Difference between Kinesis Data Stream and SQSWhat is the difference between Kinesis vs SQS Amazon Kinesis differs from Amazon s Simple Queue Service SQS 2022-08-23 08:55:52
海外TECH DEV Community SASS IT! The Beginner's Guide to SASS https://dev.to/codewithtee/sass-it-the-beginners-guide-to-sass-4k12 SASS IT The Beginner x s Guide to SASSAre CSS Preprocessors necessary My answer is yes and also no You may not need a preprocessor for small web projects or applications For bigger projects with complex user interfaces preprocess helps a lot as maintenance amp readability of CSS code get harder as the project gets bigger For those who don t know what preprocessors are they re all fantastic tools to maintain your CSS especially when working with large codebases A CSS preprocessor is a program that lets you generate CSS from the preprocessor s own unique syntax There are many CSS preprocessors to choose from however most CSS preprocessors will add some features that don t exist in pure CSS such as mixin nesting selector inheritance selector and so on These features make the CSS structure more readable and easier to maintain ーMDNAnd Sass Syntactically Awesome Style Sheets is a CSS preprocessor that gives your CSS superpowers It has a couple of functionalities that you can use to make your CSS neat and reusable such as variables nested rulings mixins functions and much more The Big Question WHY do we need SASS preprocessor It makes our Code DRY Can avoid endless CSS lines by using classes variables etc Clean code with variables and reusable components Ability to implement logic and calculation Sass gets compiled into CSS and adds all the necessary vendor prefixes so you don t have to worry about manually writing them out Reasons to Use SASS in Your Project VariablesIn JavaScript variables are defined using the let and const keywords In Sass variables start with a followed by the variable name to store the data The benefit here is that if that value changes you simply need to update a single line of code main fonts Arial sans serif headings color green h font family main fonts color headings color NestingSASS made it possible by taking care of nesting CSS classes or selectors inside of it and generate CSS under the hood This is useful especially if you re following the BEM Architecture as SASS is very compatible with its architecture and they mentioned it frequently in their docs so to speak For a large project the CSS file will have many lines and rules This is where nesting can help organize your code by placing child style rules within the respective parent elements nav background color red ul list style none li display inline block MixinsAnother major issue with CSS is that you ll often use a similar group of styles Mixins allow you to encapsulate a group of styles and apply those styles anywhere in your code using the include keyword An example of when you d use mixins is when using Flexbox mixin flex container display flex justify content space around align items center flex direction column background ccc card include flex container aside include flex container if and else to Add LogicThe if else if and else directives in Sass are useful to test for a specific case they work just like the if else if and else statements in JavaScript mixin text effect val if val danger color red else if val alert color yellow else if val success color green else color black for each and while in SASS for is used in two ways start through end or start to end The main difference is that the start to end excludes the end number as part of the count and start through end includes the end number as part of the count for i from through col i width i the each directive which loops over each item in a list or map On each iteration the variable gets assigned to the current value from the list or map colors color blue color red color green each key color in colors color text color color The while directive is an option with similar functionality to the JavaScript while loop It creates CSS rules until a condition is met x while x lt col x width x x x ImportsWe can cut our huge CSS files into smaller pieces with Sass import feature It is much easier to read amp maintain smaller files rather than one big file with endless lines Partials in Sass are separate files that hold segments of CSS code These are imported and used in other Sass files This is a great way to group similar code into a module to keep it organized Names for partials start with the underscore character which tells Sass it is a small segment of CSS and not to convert it into a CSS file Also Sass files end with the scss file extension To bring the code in the partial into another Sass file use the import directive Your main Sass file import file import anotherFile class Your code Actually CSS also has now an import feature But it works differently CSS sends an HTTP request to server each time to import a file Sass does it without an HTTP request which is a faster approach ExtendsSass has a feature called extend that makes it easy to borrow the CSS rules from one element and build upon them in another panel background color red height px border px solid green big panel extend panel width px font size em Sass functions and OperatorsSass offers built in functions that enable us to do calculations and operations that return a specific value They range from color calculations to math operations like getting random numbers and calculation of sizes and even conditionals It also provides support for mathematical operators like and which we can use with the calc function function pxToRem pxValue remValue pxValue rem return remValue div width pxToRem use sass math function pxToRem pxValue return math div pxValue px rem div width pxToRem px gives rem Parent SelectorIn the Sass code above you might notice the ampersand symbol amp used with the hover pseudo class This is called a Parent Selector In SASS can nest a couple of selectors by concatenating CSS selectors inside angled brackets using ampersand amp If you re using BEM Architecture you have saved a couple of times tediously typing CSS classes and selectors just to follow the architecture because SASS generates an appropriate CSS under the hood lt button class btn btn red gt Click me lt button gt btn display inline block padding px px amp red background color ff Red amp hover background color fff White Wrap UpSASS is a great addition to your workflow as a Front End Developer which I find really powerful and useful to work with We have covered quite a lot of features of SASS here but please check out the following resources for a better understanding Installing SassSetup Sass as VS Code ExtensionPractice Sass using Online EditorLearn SassOffical DocumentationIf you have any questions feel free to contact me at Thank you very much for reading amp till next timeHAPPY CODING 2022-08-23 08:40:44
海外TECH DEV Community Passwordless.id - first screenshots https://dev.to/dagnelies/passwordlessid-first-screenshots-46nj Passwordless id first screenshots IntroductionSo first things first I chose a domain name yay It s now id is quite an unusual ending it s actually for Indonesia but I thought it would fit well as a shortening of identity since that is what this upcoming app is about Passwordless Authentication using TouchID or FaceID for everyone Less passwords more security passwordless id What is this about It s about providing a smoother and safer authentication to the masses How Using your fingerprint or face to register login for instance And of course it s not sent to the server If you want to try out and learn more about it just go to the website there is a really basic demo and explanations What s next What I m developing right now is a public service allowing anyone to register login passwordlessly It s really easy and more secure for an in depth explanation check the website Roughly speaking websites will redirect to if the person is not authenticated Once authenticated the user will be redirected back to the original website with access to the user s information The screenshots Now please remember that this is all pre alpha in development stuff It might still change a lot The first page you see is the sign in up form Since biometric device based login is quite different than traditional password flows an F A Q section is directly added Once you click on it you will be prompted for biometrics unlock pattern or PIN code to verify it s you locally This comes from the operating system so this part will look different on Windows Android IPhones In this case it s a sample from my Windows laptop with a German locale And once done you will arrive at the profile page which you can edit and save once the e mail confirmation link was clicked There if you don t want to use your own portrait you can also pick from a gallery And once you are done come back to where you originally came from Where you can access the profile and portrait with a simple GET Regarding the design and styling I hesitated a lot And still do Should it be more corporate More neutral Even color agnostic Or more unique different personal Well in the end that s what I ended up with Even though I m not yet completely convinced and it might change in the future it s good enough for now I guess Why not simply use Sign in with Google Microsoft Facebook That was actually a question posted in a comment of my previous article I was not able to properly respond at that time since it did not really fit as a comment but I will try my best now Developer experienceActually I came from a developer POV The whole OAuth thing required to make these authentications work is actually surprisingly complex and really annoying to implement After all OAuth was not meant for authentication it is a protocol for authorizing access to APIs This dancing around the OAuth protocol is one of the things that is typically underestimated by developers until they get actually try to use it Things are now mature and there are a lot of helpful libraries but the core complexity is still there to deal with What I want to offer in exchange is a super dead simple authentication mechanism that is intuitive and trivial for developers to use A simple GET to get the user profile and a simple redirect if the user is not authenticated or requires approval SecurityFrom a user s perspective the benefits are less obvious but still exist Since the protocol is based on secret keys stored on the physical device you can be pretty sure it cannot be hacked phished scammed There is no password to steal and you would have to steal the user s device to access its account Wait What if I lose my device or want to access it from somewhere else Well you are still able to register new devices via phone confirming it through another registered device even plain e mail if you judge safe enough with or without additional security checks etc It is up to the user to chose its own protection level Of course if the phone computer belongs to someone else you may also simply request a temporary session by similar means instead of authorizing the device itself PrivacyYou may not want Google Microsoft Facebook etc to know everything you are doing and all the websites you have signed in with them They are known for their extensive tracking and some people dislike it Also there is little room for filtering the information going out For example you may want them to know your nickname but not your firstname lastname well you cannot do that Websites access your whole profile or nothing 2022-08-23 08:11:00
海外TECH Engadget Troubled 'Star Wars: Knights of the Old Republic' remake reportedly switches studios https://www.engadget.com/star-wars-knights-of-the-old-republic-remake-reportedly-switches-studios-082523737.html?src=rss Troubled x Star Wars Knights of the Old Republic x remake reportedly switches studiosThe Star Wars Knights of the Old Republic remake is reportedly back in development at a different studio According to Bloomberg one of Saber Interactive s studios in Eastern Europe has taken over the project after it was put on indefinite hold by Aspyr Media in July Aspyr had been working on the project for years and had industry veterans as well as people who worked on the original game released back in on board It even finished a demo of the game to show Lucasfilm and Sony on June th But a week later the company reportedly fired design director Brad Prince and art director Jason Minor The situation surrounding Prince and Minor wasn t quite clear but a source that talked to Bloomberg at the time suggested that the demo cost a disproportionate amount of time and money Rumors reportedly circulated among Aspyr personnel that Saber Interactive which has been doing outsourced work for the project would take the helm Those speculations may turn out to be true While neither developer has issued an official statement yet mega game publisher Embracer may have alluded to the studio switch in its most recent financial report Embracer which owns both Aspyr and Saber Interactive said one of its quot AAA projects has transitioned to another studio quot within the company quot This was done to ensure the quality bar is where we need it to be for the title quot it added Embracer also said that it s not expecting any major delays as a result of the transition but it s not like the Star Wars Knights of the Old Republic remake was scheduled for release in the near future anyway It doesn t have a launch date yet and it will reportedly take at least two more years before it s ready 2022-08-23 08:25:23
医療系 医療介護 CBnews 物価高騰対策、緊急的な支援を要望-介護3団体 https://www.cbnews.jp/news/entry/20220823171926 介護施設 2022-08-23 17:50:00
金融 ニッセイ基礎研究所 今週のレポート・コラムまとめ【8/9~8/15】:新型コロナウイルスと保険金支払-「自宅療養」「みなし陽性」「自主療養」、入院給付金は支払われるのか https://www.nli-research.co.jp/topics_detail1/id=72143?site=nli 2022-08-23 17:07:59
ニュース @日本経済新聞 電子版 「オリンパス科学事業売却、ベイン軸に調整 4000億円規模」の英文記事をNikkei Asia @NikkeiAsia に掲載しています。 ▶️ Olympus advances talks with Bain for sale… https://t.co/zWYoqxAG04 https://twitter.com/nikkei/statuses/1562000508142948352 「オリンパス科学事業売却、ベイン軸に調整億円規模」の英文記事をNikkeiAsiaNikkeiAsiaに掲載しています。 2022-08-23 08:55:16
ニュース @日本経済新聞 電子版 DeNA、球団事業「来季にコロナ前超え目指す」 https://t.co/cgpOhoMzp8 https://twitter.com/nikkei/statuses/1561995427540516864 球団 2022-08-23 08:35:05
ニュース @日本経済新聞 電子版 入国者、1日5万人に引き上げへ 新たなコロナ対策で https://t.co/OM4fCQCNlX https://twitter.com/nikkei/statuses/1561993306560937984 引き上げ 2022-08-23 08:26:39
ニュース @日本経済新聞 電子版 女性公務員、画一的な働き方限界 非正規含め多様に https://t.co/ffJPs9XMPg https://twitter.com/nikkei/statuses/1561991043834253312 非正規 2022-08-23 08:17:39
ニュース @日本経済新聞 電子版 航空エンジン技術でコーヒーミル 石川の部品加工が参入 https://t.co/OTZHY6zkei https://twitter.com/nikkei/statuses/1561989134289453058 部品 2022-08-23 08:10:04
ニュース @日本経済新聞 電子版 東京都、コロナ2万1770人感染 7日平均で前週の95.8% https://t.co/FaqT19dJzS https://twitter.com/nikkei/statuses/1561989045651402753 東京都 2022-08-23 08:09:43
ニュース @日本経済新聞 電子版 ヘッジファンド迷走 ジャクソンホール前夜、ドル乱高下 https://t.co/rPhMXmG0pZ https://twitter.com/nikkei/statuses/1561988524718510080 迷走 2022-08-23 08:07:39
ニュース @日本経済新聞 電子版 【日経特報】三井住友、米国でネット銀行 23年に個人向け金融参入 https://t.co/jmmmMrZTdj https://twitter.com/nikkei/statuses/1561986791837618176 三井住友 2022-08-23 08:00:46
海外ニュース Japan Times latest articles You’re crying! Study shows dogs get teary-eyed when they reunite with owners. https://www.japantimes.co.jp/news/2022/08/23/national/science-health/japan-researchers-dogs-tears/ You re crying Study shows dogs get teary eyed when they reunite with owners Japanese researchers have found that dogs reunited with owners after five to seven hours away significantly increased tear production in the ensuing five minutes 2022-08-23 17:22:45
ニュース BBC News - Home Liverpool shooting: Girl, 9, shot dead and two injured https://www.bbc.co.uk/news/uk-england-merseyside-62642060?at_medium=RSS&at_campaign=KARANGA injuredpolice 2022-08-23 08:48:48
ニュース BBC News - Home Gatwick flights cancelled at short notice due to staff sickness https://www.bbc.co.uk/news/business-62643664?at_medium=RSS&at_campaign=KARANGA sickness 2022-08-23 08:49:18
ニュース BBC News - Home Energy crisis: UK expands gas emergency exercise ahead of winter https://www.bbc.co.uk/news/uk-politics-62604653?at_medium=RSS&at_campaign=KARANGA downplays 2022-08-23 08:33:38
北海道 北海道新聞 日本ハム、七回で日没コールドゲーム 釧路でオリックス戦 https://www.hokkaido-np.co.jp/article/721036/ 北海道日本ハム 2022-08-23 17:25:11
北海道 北海道新聞 <旭川>ジャズダンスで全国好成績 スタジオ「イオス」通う小学生3人 https://www.hokkaido-np.co.jp/article/720675/ 旭川市内 2022-08-23 17:24:21
北海道 北海道新聞 賃上げ実施企業82・5% 物価高や人手不足に対応 https://www.hokkaido-np.co.jp/article/721054/ 人手不足 2022-08-23 17:20:00
北海道 北海道新聞 中国、不動産業界を支援 国有銀行に融資指示 https://www.hokkaido-np.co.jp/article/721052/ 中国人民銀行 2022-08-23 17:18:00
北海道 北海道新聞 邦人男性マラウイで死亡 湖で船転覆 https://www.hokkaido-np.co.jp/article/721051/ 邦人 2022-08-23 17:18:00
北海道 北海道新聞 夢の街並みペーパークラフトで 浦河の子どもらジオラマ製作・展示 https://www.hokkaido-np.co.jp/article/720719/ 製作 2022-08-23 17:18:13
北海道 北海道新聞 日0―0オ(23日) 走塁ミス響く 日本ハム引き分け https://www.hokkaido-np.co.jp/article/721049/ 引き分け 2022-08-23 17:10:00
北海道 北海道新聞 余市町長選、斉藤啓輔氏が無投票再選 https://www.hokkaido-np.co.jp/article/721047/ 任期満了 2022-08-23 17:06:32
北海道 北海道新聞 ミスド、再値上げ検討も 小麦高騰でダスキン新社長 https://www.hokkaido-np.co.jp/article/721048/ 高騰 2022-08-23 17:06:00
北海道 北海道新聞 新千歳―福岡線を通期運航 エア・ドゥ https://www.hokkaido-np.co.jp/article/721045/ airdo 2022-08-23 17:02:00
ニュース Newsweek ミャンマー軍政、フェイスブックを制限 自前のSNS設立などで情報戦対策へ https://www.newsweekjapan.jp/stories/world/2022/08/sns-65.php 軍政による人権侵害や市民への拷問、虐殺などの情報、ニュースは独立系メディアによって国内外に伝えられているが、こうしたメディアで働くミャンマー人記者らはタイなどの隣国に逃れて報道を続けるか、国内の国境周辺で軍と戦う少数民族武装勢力の支配地区などに潜伏して活動を続けており、インターネットは「命綱」となっている。 2022-08-23 17:48:51
ニュース Newsweek ドゥーギンの娘殺害で露反体制派NRAが「犯行声明」 https://www.newsweekjapan.jp/stories/world/2022/08/nra-1.php ロシアは今回の自動車爆発事件について、ウクライナの仕業だと主張。 2022-08-23 17:13:18
マーケティング AdverTimes ライフコーポレーション、首都圏ネットビジネス部⻑ほか(22年8月23日付) https://www.advertimes.com/20220823/article393809/ 首都圏 2022-08-23 08:45:56

コメント

このブログの人気の投稿

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