投稿時間:2021-09-25 04:25:13 RSSフィード2021-09-25 04:00 分まとめ(30件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT 気になる、記になる… 「iPhone 13」シリーズの新たなバッテリー駆動時間比較テスト − 「iPhone 13 mini」が「iPhone 12」を上回ることを再確認 https://taisy0.com/2021/09/25/146543.html iphone 2021-09-24 18:18:41
AWS AWS Media Blog GEVME Live enables memorable interactive events on AWS https://aws.amazon.com/blogs/media/gevme-live-enables-memorable-interactive-events-on-aws/ GEVME Live enables memorable interactive events on AWSIn GlobalSign in an event technology company developed GEVME a technology platform providing end to end solutions for managing virtual face to face or hybrid meetings and conferences When in person meetings and conferences were cancelled in the company wanted to build on the existing platform to offer fully customizable digital venues with a focus on immersive and engaging … 2021-09-24 18:57:38
AWS AWS Bluestone on AWS: Customer Story | Amazon Web Services https://www.youtube.com/watch?v=8ueCx6ZcoE8 Bluestone on AWS Customer Story Amazon Web ServicesIn this episode of AWS Community Chats Aley Hammer is joined with Jay Barry the CTO of Bluestone Bluestone recently went live with its new digital lending platform and Jay shares more about the project and how customers can benefit Jay also shares how he has taken the business on a transformational journey as well as some of the insights he has garnered along the way Finally Jay shares what is next for Bluestone and the exciting new projects that his team are working on Learn more about Bluestone Subscribe More AWS videos More AWS events videos ABOUT AWSAmazon Web Services AWS is the world s most comprehensive and broadly adopted cloud platform offering over fully featured services from data centers globally Millions of customers ーincluding the fastest growing startups largest enterprises and leading government agencies ーare using AWS to lower costs become more agile and innovate faster AWS AmazonWebServices CloudComputing 2021-09-24 18:09:35
AWS AWS Class Limited on AWS: Customer Story | Amazon Web Services https://www.youtube.com/watch?v=If7NhOr89AE Class Limited on AWS Customer Story Amazon Web ServicesIn this episode of AWS Community Chats Aley Hammer is joined with Alexis Rouch the CTO of Class Limited Class Limited has made some large acquisitions over the last months and Alexis shares from a tech point of view what have been some of their biggest tech challenges Alexis is also very passionate about inclusion and diversity and she shares what Class Limited are doing to drive more diverse teams Finally Alexis shares the exciting new projects that her team are working on Learn more about Class Ltd Subscribe More AWS videos More AWS events videos ABOUT AWSAmazon Web Services AWS is the world s most comprehensive and broadly adopted cloud platform offering over fully featured services from data centers globally Millions of customers ーincluding the fastest growing startups largest enterprises and leading government agencies ーare using AWS to lower costs become more agile and innovate faster AWS AmazonWebServices CloudComputing 2021-09-24 18:09:11
AWS AWS - Webinar Channel Building .Net Applications on AWS - AWS Virtual Workshop https://www.youtube.com/watch?v=OkYgKb8nyoA Building Net Applications on AWS AWS Virtual WorkshopIn this workshop we ll provide you with an overview of NET on AWS options for developers You ll have a hands on lab to explore three different options to build and deploy NET applications using the AWS Toolkit for Visual Studio These include deployment to AWS Elastic Beanstalk Amazon Elastic Container Service using AWS Fargate and AWS Lambda Then there will be a lab exercise that demonstrates using the AWS SDK for NET in three ways to call Amazon DynamoDB the AWS NoSQL managed service Learning objectives NET on AWS options for developers NET applications using the AWS Toolkit for Visual Studio Here are instructions for getting into your windows development environment Where it says Lab Link you can use this and it will populate the hash code for you The full lab instructions 2021-09-24 18:00:50
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) doma Implがインポートされない https://teratail.com/questions/361210?rss=all domaImplがインポートされないエラーimporttutorialdaoEmployeeDaoImplprivatefinalEmployeeDaodaonewEmployeeDaoImpl上記サイトでdomaのチュートリアルをインポートしたのですが、Implの箇所が全部エラーになっています。 2021-09-25 03:22:13
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) Ruby on Rails ActiveModel::UnknownAttributeErrorが解決できません https://teratail.com/questions/361209?rss=all RubyonRailsActiveModelUnknownAttributeErrorが解決できません何度も質問すみません。 2021-09-25 03:19:09
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) TypeScriptで型の項目が必須かどうかを判定する方法 https://teratail.com/questions/361208?rss=all TypeScriptで型の項目が必須かどうかを判定する方法実現したいことTypeScriptで定義した型のうち、必須項目のkeyだけを抽出したいです。 2021-09-25 03:18:39
AWS AWSタグが付けられた新着投稿 - Qiita 3分でわかるAWSの導入方法 https://qiita.com/meshi0323/items/ad130aca3829ada185de 2021-09-25 03:02:47
海外TECH Ars Technica Three iOS 0-days revealed by researcher frustrated with Apple’s bug bounty https://arstechnica.com/?p=1798279 behavior 2021-09-24 18:25:21
海外TECH DEV Community Introduction to JavaScript Destructuring https://dev.to/dani8439/introduction-to-javascript-destructuring-43o8 Introduction to JavaScript Destructuring What is JavaScript Destructuring The destructuring assignment syntax is an ES feature that allows you to unpack values from an array or an object into separate variables Destructuring ArraysBefore destructuring was introduced if we wanted to extract elements from an array it would be done as follows const seasons Winter Spring Summer Fall const seasons const seasons const seasons const seasons console log returnsWinter Spring Summer Fall But using destructuring we can do it in a much simpler and streamlined fashion To use it start with the const keyword followed by brackets Within the brackets is the destructuring assignment or the elements we want to abstract out then set equal to the original array Following that process in order to destructure the elements of our seasons array would be done as follows const seasonsconsole log returns Winter Spring Summer Fall The original array is not mutated and remains untouched If for whatever reason we only wanted to pull out certain variables within an array and not all say only Summer and Fall to do that within an array leave an empty space or a hole const third fourth Winter Spring Summer Fall console log third fourth returns Summer FallWe can also set default values for variables when extracting them so that if that element is not part of the array something will be returned const a b c d e February seasons console log a b c d e returns Winter Spring Summer Fall February It is possible to destructure nested arrays const nestedArr Winter Spring Jan Feb March const x t u v nestedArr console log x t u v returns Winter Jan Feb MarchIt s also possible to switch the position of variables using destructuring Take the array of flavors and to test out this example make sure it is declared with let and not const as using const will through an error let flavors Vanilla Chocolate const vanilla chocolate flavors console log vanilla chocolate returns Vanilla ChocolateIf we wanted to switch the flavors in the destructuring assignment it s possible to do so in one simple line of code rather than going through the process of reassigning one of the variables to a temporary variable before reassigning altogether const vanilla chocolate chocolate vanilla console log vanilla chocolate returns Chocolate Vanilla Destructuring ObjectsTo use destructuring with objects the philosophy is pretty much the same but there are a few differences The first is that instead of using brackets curly braces are used instead const dog name Jack breed Heinz age likes Long walks Belly rubs Chasing Squirrels Unlike with an array within an object the order of elements doesn t matter All we need is the property name to proceed const name breed age likes dog console log name breed age likes returns Jack Heinz Long walks Belly rubs Chasing Squirrels Long walks Belly rubs Chasing Squirrels If we wanted the variable names to be different from the property names we still need to reference the property names as before but followed by a colon and the new property name const name nickName breed type age years likes interests dog console log nickName type years interests returns Jack Heinz Long walks Belly rubs Chasing Squirrels Long walks Belly rubs Chasing Squirrels Just as with an array we can also assign a default value within an object It s done in the same manner const name nickName breed type age years likes interests favoriteWalk On the street dog console log nickName type years interests favoriteWalk returns Jack Heinz   Long walks Belly rubs Chasing Squirrels On the streetJust as it s possible to destructure nested arrays it s possible to destructure nested objects Again the curly braces are needed to access an object within an object const dog name Maya age breed Samoyed address city Berlin country Germany const address city dog console log city returns BerlinDestructuring is an incredibly powerful and useful tool for developers This is just an introduction to some of its capabilities but there is a lot more that it s possible to do using destructuring assignment in ES Further ReadingExploring ES Chapter DestructuringES in depth 2021-09-24 18:05:39
海外TECH DEV Community Increasing Emotional Intelligence As Remote Developers https://dev.to/keyholesoftware/increasing-emotional-intelligence-as-remote-developers-58il Increasing Emotional Intelligence As Remote DevelopersEffective communication has always been hard More than just the words being said it s the tone the audience the media and the timing While these have always been important parts of communication today s work environment has added additional stressors Emotional Intelligence Is Needed Now More Than EverAs software developers in remote work environments we now have additional challenges stemming from the loss of face to face communication  In many situations this can lead to harmful trends in coworker interactionsーless job satisfaction co worker interactions and overall team success One way to combat this negative side effect of remote work is to increase Emotional Intelligence as an individual software developer In this blog we discuss how interactions between software developers are affected by Emotional Intelligence EQ In addition to the basic components of EQ we discuss suggestions for improving Emotional Intelligence in common interactions experienced by software developers Note Don t miss our other blogs with additional tips and tricks for effective remote teams including tips for distributed teams in The Remote Development Experience and Working Remotely As An Agile Dev Team Tips amp Suggestions Definition of Emotional IntelligenceIn a nutshell Emotional Intelligence EQ is a set of personal social skills connected to attitude and approach They collectively establish how well we perceive and express ourselves create and maintain social relationships cope with challenges and use emotional information in a meaningful way Psychology Today describes it as the ability to identify and manage one s own emotions as well as the emotions of others So as an example when a co worker expressed thoughts or feelings Emotional Intelligence is our response ーhow we perceive that emotion integrate it into our thought processes attempt to understand and regulate adapt responses for the optimal outcome Emotional Intelligence provides fundamental competence for getting along in the workplace While EQ used to be a niche subject compartmentalized within certain psychology clinical avenues this soft skill is a learned aptitude that can have a major influence on behavior work quality and the ability to work as a team And as software developers rarely work in a solo vacuum it is imperative that we be able to work effectively in a team Additionally as software consultants we must hold high levels of emotional intelligence to effectively provide exemplary customer service to our clients teams Elevating your Emotional Intelligence is an effective tool in keeping a healthy and engaging remote work environment Emotional Intelligence ComponentsHR Zone names the four basic components of Emotional Intelligence which are needed to help the Scrum Master and developer alter the course of emotions and behavior Depending on the reference there are a number of other components but these are the ones that describe it best I m not going to split strings into similarities and differences Self AwarenessSelf awareness means being aware of what you are feeling and being conscious of the emotions within yourself This is considered the foundation for all the other components of Emotional Intelligence Self Management of EmotionsOperationally it means that team members need to be able to balance their own moods so that worry anxiety fear or anger do not get in the way of what needs to be done Those who can manage their emotions generally perform better because they are able to think clearly This does not mean suppressing or denying emotions but understanding them and using that understanding to deal with situations productively Team members should first recognize a mood or feeling think about what it means and how it affects them and then choose how to act Social AwarenessBeing socially aware means that you understand how to react to different social situations and effectively modify your interactions with other people so that you can achieve the best results It also means being aware of the world around you and how different environments influence people Relationship ManagementThe final component of Emotional Intelligence is the ability to connect with others build positive relationships respond to the emotions of others and influence others on the team Emotional Intelligence Example Pre COVID And NowEmotional Intelligence is needed by every single person in an organization That said I ve found that it is more noticeable whether positively or negatively in relationships where requests for action are frequently asked Here s a fairly innocent scenario that requires Emotional Intelligence in order to change how one coworker communicates with another Pre COVID When working in the office a Scrum Master would frequently run into a developer team member at the coffee maker While waiting for coffee they would talk about how great the coffee is the weekend and their crazy pets Sitting at the desk the developer would frequently get reminders via spoken and chat messages to put tasks on the user stories and make other scrum board changes Now Now while only working from home the developer only receives requests by chat messages for updatesーwithout the casual conversation in between requests The Scrum Master is expecting the developer to quickly reply After a few weeks the Scrum Master is starting to receive snarky comments for some of the requests Emotional Intelligence needs to be applied in this situation… and by both parties Taking the Right Course of ActionUsing these Emotional Intelligence Components in our scenario above there are several courses of action that can be taken to remediate the situation  Being remote makes the challenge much more difficult  Deciding how to apply Emotional Intelligence can be alleviated by using the following tips Know your audience and dialogTake inventory of the in office history of your interactions with individuals and work to keep your remote only dialog consistent with that If casual conversation mixed in with frequent requests are part of your relationship history then it is important to try to keep that going For example break up consecutive requests with a question about their pets family or hobby Lead in with that question or ask about their weekend without making a request for action Be aware of your recent dialog to prevent a harmful trend from forming Use the right communication channelsChat apps like Teams and Slack are handy communication tools that provide instant visual cues that messages have been read People usually reply to chat messages very quickly They provide the instant gratification that emails and comments on the digital user story don t provide Like anything else chat apps are easily abused It is easy to always use chat for all communications Chat communications tend to be short and less thought out I for one am good at choosing the wrong words when what I want to say is not thought out Quick replies are easily influenced by emotions Short text only communication is easier to misinterpret Some jokes using only text can sound rude They need a facial expression to help carry the intent Other short messages can sound demanding A single message of “add hours to your task can come across as demanding for example For emotionally sensitive topics a phone or video call may be the appropriate channel It is easier to show empathy and to show they have your full attention with a video call The caveat of this is not to use phone or video for only sensitive messages Use the video feed once in a while for casual topics to show there is a human on the other side Remember personal relationships are still importantThe first two tips feed into this one Personal relationships are important in a professional and corporate environment regardless if you are in office or remote For some people this requires a lot more effort in a remote setting After a period of time it is easy to feel disconnected or lost from the other coworkers Going from many human interactions to a few times a day can feel alienating Check in on the coworkers you haven t heard from for a while See how they are doing Empathize with others and show that personal relationships are still important Show some grace when a chat message could be interpreted as rude Chances are that rudeness wasn t the intent and it isn t worth a message to sour a relationship Fostering and building upon relationships allows you to anticipate problems before they happen Taking the time to communicate and being alert to the behavioral micro signals might indicate a challenge to be tackled support to be offered or a change of approach to be considered Emotional intelligence allows for a sort of emotional benchmarking gauging how your colleagues are feeling and identifying future talents or needs Wrap UpNot having the physical element assisting with communication requires a higher level of Emotional Intelligence in today s remote environment Without the help provided by verbal and non verbal cues such as voice tone and folded arms social awareness is much more difficult That said Emotional Intelligence is not a trait that people are born with and it is never too late to learn I encourage all software developers to take the time to incorporate the components of Emotional Intelligence in daily communications to elevate their Emotional Intelligence A higher Emotional Intelligence will allow people to effectively use the communication tools available to keep a healthy and engaged workforce Emotional Intelligence is more important now than it has ever been 2021-09-24 18:05:08
海外TECH DEV Community How to remove CSS Property using javascript? https://dev.to/tanwi2209/how-to-remove-css-property-using-javascript-2pjk How to remove CSS Property using javascript lt DOCTYPE html gt lt html gt lt head gt lt style gt myDIV background color coral border px solid padding px color white lt style gt lt head gt lt body gt lt div id myDIV gt This div element has an onmousemove event handler that displays a random number every time you move your mouse inside this orange field lt p gt Click the button to change the color of text lt p gt lt button onclick removeHandler id myBtn gt Try it lt button gt lt div gt lt h id demo gt Hello everyone lt h gt lt script gt document getElementById myDIV addEventListener mousemove myFunction function myFunction document getElementById demo style color green function removeHandler document getElementById demo style removeProperty color lt script gt lt body gt lt html gt OUTPUT Without Click Try It button text is green After Click the button remove property call and removes the previous css property of text To learn from each other keep sharing and learning follow me on Twitter also I post my daily learning and work on Twitter 2021-09-24 18:02:57
Apple AppleInsider - Frontpage News iPhone 13 mini review: The most powerful small smartphone on the market https://appleinsider.com/articles/21/09/24/iphone-13-mini-review-the-most-powerful-small-smartphone-on-the-market?utm_medium=rss iPhone mini review The most powerful small smartphone on the marketThe iPhone mini has both fans and detractors of its size and has spawned debates about where it fits in Apple s lineup ーbut there s no denying that it s a flagship smartphone Apple s iPhone mini ーthe fastest and best small smartphone Once upon a time we all had mini iPhones The original iPhone was sleek metal and plastic and was smaller than every iPhone currently shipping Read more 2021-09-24 18:59:43
Apple AppleInsider - Frontpage News iPhone 13 Apple Music bug is fixed with Apple's new iOS patch https://appleinsider.com/articles/21/09/24/iphone-13-apple-music-bug-is-fixed-with-apples-new-ios-patch?utm_medium=rss iPhone Apple Music bug is fixed with Apple x s new iOS patchApple has released new support documents detailing fixes and widgets for two minor bugs in the company s new lineup of devices including the iPhone Credit AppleBoth bugs affect iPhone ninth generation iPad and iPad mini models that have been restored from an iCloud backup On Friday those devices officially started arriving on customer doorsteps and store shelves Read more 2021-09-24 18:04:22
海外TECH Engadget Ford's Mustang Mach-E passes Michigan State Police tests https://www.engadget.com/ford-mustang-mach-e-ev-michigan-state-police-tests-181524734.html?src=rss Ford x s Mustang Mach E passes Michigan State Police testsMichigan State Police has put a version of the Mustang Mach E SUV through its paces over the past week and the Ford Pro all electric police pilot vehicle seems to have met the agency s bar According to Ford it s the first EV that s passed the Michigan State Police s model year evaluation test The MustangMachE just became the first all electric vehicle to pass the rigorous vehicle evaluation tests by the Michigan State Police Another real world application for EVs to help law enforcement agencies reduce their fuel usage and CO emissions plus it s freaking FAST pic twitter com vZSXDqcxUーJim Farley jimfarley September The agency is one of two that runs annual evaluations of new model year police vehicles Later this fall it will publish the results of those tests for law enforcement agencies across the US Michigan State Police assessed the EV s acceleration top speed high speed pursuit and braking attributes along with emergency response handling The pilot vehicle s success in the tests is a win for Ford Through its Police Interceptor program the automaker alters vehicles for police use usually by bulking up the suspension brakes and horsepower Ford plans to use the test results as a benchmark while it considers eventually making quot purpose built electric police vehicles quot as part of its pledge to invest billion into EV tech Meanwhile the city of Ann Arbor Michigan has ordered two of the EVs to use as patrol cars 2021-09-24 18:15:24
海外科学 NYT > Science Sherwood Boehlert, a G.O.P Moderate in the House, Dies at 84 https://www.nytimes.com/2021/09/24/us/sherwood-boehlert-dead.html Sherwood Boehlert a G O P Moderate in the House Dies at A champion of environmentalism who chided climate change skeptics he was among the last of the relatively progressive Rockefeller Republicans 2021-09-24 18:14:46
ニュース BBC News - Home Sabina Nessa: Hundreds pay respects at London vigil https://www.bbc.co.uk/news/uk-england-london-58684030?at_medium=RSS&at_campaign=KARANGA hundreds 2021-09-24 18:40:02
ニュース BBC News - Home Huawei's Meng Wanzhou 'to be freed' in US deal https://www.bbc.co.uk/news/world-us-canada-58682998?at_medium=RSS&at_campaign=KARANGA charges 2021-09-24 18:31:55
ビジネス ダイヤモンド・オンライン - 新着記事 【現役サラリーマンが株式投資で2億円】 中長期投資の目安は3年先、 10年先は誰にもわからない - 割安成長株で2億円 実践テクニック100 https://diamond.jp/articles/-/280730 【現役サラリーマンが株式投資で億円】中長期投資の目安は年先、年先は誰にもわからない割安成長株で億円実践テクニック定年まで働くなんて無理……ならば、生涯賃金億円を株式投資で稼いでしまおうそう決意した入社年目、知識ゼロの状態から株式投資をスタートした『割安成長株で億円実践テクニック』の著者・現役サラリーマン投資家の弐億貯男氏。 2021-09-25 03:55:00
ビジネス ダイヤモンド・オンライン - 新着記事 歴史上今ほど 1億円が簡単に手に入る時代はない! アメリカの学生が幼少期から学んでいるのに、 日本人だけが知らない「3つの力」 - 13歳からの億万長者入門 https://diamond.jp/articles/-/282434 2021-09-25 03:50:00
ビジネス ダイヤモンド・オンライン - 新着記事 東海在住なら一度は行っておきたい愛知一の神社 - 最強の神様100 https://diamond.jp/articles/-/282984 東海在住なら一度は行っておきたい愛知一の神社最強の神様「仕事運」「金運」「恋愛運」「健康運」アップ「のご利益」の組み合わせからあなたの願いが叶う神様が必ず見つかる八百万やおよろずの神様から項目にわたって紹介。 2021-09-25 03:45:00
ビジネス ダイヤモンド・オンライン - 新着記事 優れたリーダーが、「舐めた態度」をとる部下に鷹揚に接する理由 - 課長2.0 https://diamond.jp/articles/-/282921 優れたリーダーが、「舐めた態度」をとる部下に鷹揚に接する理由課長管理職は「自分の力」ではなく、「メンバーの力」で結果を出すのが仕事。 2021-09-25 03:40:00
ビジネス ダイヤモンド・オンライン - 新着記事 超一流の営業マンが、「おいしい話」に絶対に近寄らない理由 - 超★営業思考 https://diamond.jp/articles/-/282907 超一流の営業マンが、「おいしい話」に絶対に近寄らない理由超営業思考プルデンシャル生命保険で「前人未到」の圧倒的な業績を残した「伝説の営業マン」である金沢景敏さん。 2021-09-25 03:35:00
ビジネス ダイヤモンド・オンライン - 新着記事 セックス・ピストルズとの 衝撃の出会いが教えてくれた 創造のヒントとは - 日本の美意識で世界初に挑む https://diamond.jp/articles/-/282656 衰退する西陣織マーケットに危機感を抱き、いち早く海外マーケットの開拓に成功した先駆者。 2021-09-25 03:30:00
ビジネス ダイヤモンド・オンライン - 新着記事 文の頭に「あ・い・う・え・お」! 好かれるメール・LINEの基本とは? - 短いは正義 https://diamond.jp/articles/-/282744 相手 2021-09-25 03:25:00
ビジネス ダイヤモンド・オンライン - 新着記事 「焦り」をポジティブに変換!「最高の結果」を出すための心の整え方とは? - 宇宙人が教える ポジティブな地球の過ごし方 https://diamond.jp/articles/-/282987 theplanetfromnebula 2021-09-25 03:20:00
ビジネス ダイヤモンド・オンライン - 新着記事 日本を変える一大テーマ DX(デジタルトランスフォーメーション)の どこに注目すればいいか? - 黒字転換2倍株で勝つ投資術 https://diamond.jp/articles/-/282654 2021-09-25 03:15:00
ビジネス ダイヤモンド・オンライン - 新着記事 【発達障害専門の精神科医が教える】「飲み会が苦手な人」がうまく断るコツとは? - 「しなくていいこと」を決めると、人生が一気にラクになる https://diamond.jp/articles/-/283026 思い込み 2021-09-25 03:10:00
ビジネス ダイヤモンド・オンライン - 新着記事 オンライン営業で解決したい3つの悩み - [新版]「3つの言葉」だけで売上が伸びる質問型営業 https://diamond.jp/articles/-/282666 そして、オンライン営業のスキルを加えてパワーアップしたのが、『新版「つの言葉」だけで売上が伸びる質問型営業』。 2021-09-25 03:05: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件)