投稿時間:2022-01-29 02:32:21 RSSフィード2022-01-29 02:00 分まとめ(37件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
AWS AWS Machine Learning Blog Use a web browser plugin to quickly translate text with Amazon Translate https://aws.amazon.com/blogs/machine-learning/use-a-web-browser-plugin-to-quickly-translate-text-with-amazon-translate/ Use a web browser plugin to quickly translate text with Amazon TranslateWeb browsers can be a single pane of glass for organizations to interact with their informationーall of the tools can be viewed and accessed on one screen so that users don t have to switch between applications and interfaces For example a customer call center might have several different applications to see customer reviews social media … 2022-01-28 16:18:01
AWS AWS Startups Blog How AWS Supported WOMBO’s Wildly Popular, AI-Powered App https://aws.amazon.com/blogs/startups/how-aws-supported-wombos-wildly-popular-ai-powered-app/ How AWS Supported WOMBO s Wildly Popular AI Powered AppFor most startups scaling quickly and becoming extremely popular is a desirable goal But the rate of WOMBO s growth exceeded even the founders wildest expectations with million downloads in the first month aloneーsomething that created a huge challenge for the company AWS recognized the situation and stepped in to help 2022-01-28 16:42:14
python Pythonタグが付けられた新着投稿 - Qiita WindowsコマンドプロンプトからPython実行selenium driverの警告を消す https://qiita.com/tat_aka/items/2d31a3bab621aab8e3b3 WindowsコマンドプロンプトからPython実行seleniumdriverの警告を消すseleinumdriverを使ってブラウザ操作するPythonコードをコマンドプロンプトから実行したときだけコンソールに警告ワーニングが大量に出ることがある。 2022-01-29 01:44:55
python Pythonタグが付けられた新着投稿 - Qiita 決定係数を救いたい https://qiita.com/hiro716/items/4fbaf640808152764d40 【結論】決定係数は回帰モデルの性能評価指標として機能する【結論】「説明変数の個数を増やすと決定係数の値が上昇する」は正確な表現ではない「説明変数の個数を増やすとトレーニングデータに対する決定係数の値が上昇する」が正確な表現である「説明変数の個数を増やしてもテストデータに対する決定係数の値は上昇する」とは限らないむしろ予測に不要な変数を追加した場合は精度が下がることがほとんど『結論』『モデルの性能評価をする際には「トレーニングデータに対する性能評価指標」ではなく「テストデータに対する性能評価指標」を見るのが普通』ということを考えれば、結論が言えます。 2022-01-29 01:25:51
js JavaScriptタグが付けられた新着投稿 - Qiita [JS]HTMLの要素を取得する方法 https://qiita.com/Shi-raCanth/items/7ae6c1efac28668571b3 例id名class名タグ名の指定方法は、querySelectorAllメソッドと同じdocumentquerySelectorセレクタ名まとめ・documentオブジェクトはブラウザ上の情報を操作する事ができるオブジェクト。 2022-01-29 02:00:13
Ruby Rubyタグが付けられた新着投稿 - Qiita rubyの例外処理のまとめ https://qiita.com/IshidaKeisuke/items/cc4aed25db7524e6819d 例外処理とは例外処理とは、もともと想定されている値などが入力されたときに、どんな処理をするのかを書くことをいうんです。 2022-01-29 01:41:45
Ruby Railsタグが付けられた新着投稿 - Qiita rubyの例外処理のまとめ https://qiita.com/IshidaKeisuke/items/cc4aed25db7524e6819d 例外処理とは例外処理とは、もともと想定されている値などが入力されたときに、どんな処理をするのかを書くことをいうんです。 2022-01-29 01:41:45
海外TECH MakeUseOf Why Spotify Chose Joe Rogan Over Neil Young https://www.makeuseof.com/why-spotify-chose-joe-rogan/ rogan 2022-01-28 16:56:36
海外TECH MakeUseOf How to Manage Your Heart Rate Zones With a Digital Heart Rate Monitor https://www.makeuseof.com/manage-heart-rate-zones-digital-monitor/ How to Manage Your Heart Rate Zones With a Digital Heart Rate MonitorDo you know how your heart rate is affecting your fitness A heart rate monitor can help you hit the right zones for a great workout every time 2022-01-28 16:45:33
海外TECH MakeUseOf Is Google Pay Safe and Secure? 8 Things You Need to Know https://www.makeuseof.com/is-google-pay-safe-and-secure/ issues 2022-01-28 16:30:22
海外TECH DEV Community How to save JSON array in MySQL with TypeORM https://dev.to/vivekagent47/how-to-save-json-array-in-mysql-with-typeorm-3jg7 How to save JSON array in MySQL with TypeORM IntroductionThis article is NestJS a record of the know how I realized while developing through the framework There may be a better way than the one I suggested Suggestions are always welcome NestJS The framework TypeORMmanages the DB through the library This article TypeORM deals with how to store JSON arrays in MySQL DB When we save array in DB column Storing an array type in a DB column appears more often than you think Foreign Key Relation OneToMany ManyToOne Person Email Consider a case in which Entity and Entity exist for At this time since one person can have multiple emails the relationship between the two is OneToMany ManyToOne The MySQL table is stored as follows id person email id fk Tom Evans id email person id fk tom mail com evans mail com evans univ ac kr Looking at the two tables each has a foreign key called email id and person id Person in the Evans case of it has two emails in particular so it has an email id array of That is you can find fk id Array under the OneToMany ManyToOne relationship simple arrayEven if it is not a foreign key you can store arrays in MySQL columns TypeORM helps simple array you to store simple arrays in MySQL through Column simple array num arr number Column simple array str arr string However if you store it in a simple array way string some problems arise This is dealt with in more detail later How to save JSON array So far we have looked at the case where an array is stored in MySQL Now let s see how we can store JSON array in MySQL simple array Let s try it Column simple array json arr JSON Column simple array and declared in the form of an array as before Can this be saved NOPE In this case an error occurs Let s look at the error message DataTypeNotSupportedError Data type Array in example json arr is not supported by mysql database Earlier we looked at the case where MySQL uses arrays Array but now the error message says that the type is not supported by MySQL The error message is correct MySQL Array does not support types It s just giving us the feeling of supporting arrays in some way simple array Let s try it string versionLet s see how to circumvent the current problem Our purpose is still to store JSON arrays in MySQL But the JSON form is impossible so string let s bypass the method we looked at earlier Column simple array json arr string In javascript it can be serialized in the form of through JSON stringify a function called Our plan is as follows The API receives input as a JSON array Iterates through the received JSON array and applies to all JSON JSON stringify to serializestring Save as MySQLGet Whenever string a request comes in the string in the string array stored as JSON parse is parsed and returned asIf you do this you can convert the JSON array to a string array and store it in the DB without an error message But… string version issueFor those of us who store JSON this method also has problems Let s say you have a JSON array like this name Baker job musician name Euler job mathematician JSON stringify If we change this to name Baker job musician name Euler job mathematician becomesSaving to DB works fine However Get if you check what is stored in the DB with name Baker job musician name Euler job mathematician It has the following bizarre form The reason is that… MySQL pseudo ArrayWe thought that MySQL supports number arrays or string arrays even if JSON arrays cannot be stored But…That was TypeORM a trick of Actually MySQL Array doesn t support types at all Already confirmed with an error message So simple array how did we save it using properties simple array stores all arrays as string If it is a number array if it is a string array Bill John Baker So if even a comma is inserted in the middle of the string it is stored in the DB like this In other words please be true In other words I love you That is even if it is a string array only one string is stored in the DB And parses the information of the column declared as TypeORM based on the comma simple array therefore even if you originally saved strings you will get strings if you read the DB value Actually MySQL there is nothing wrong with it TypeORM it is possible that the simple array method of MySQL especially in is causing this problem In other DBs it may not be stored as a single string like this In MySQL this is…ㅠㅠIn the case of JSON commas must appear to list objects but in general strings commas are rare So TypeORM the developer may not have noticed However even such a small error can become a big obstacle or cause an error in development I lost half a day because of this Solution Just save it as a string Through several trials and errors simple array I confirmed how TypeORM stores arrays in MySQL So let s use this to reorganize our code Column json arr string Column is simply string set to Each JSON in the JSON array JSON stringify is serialized as a function Then they JSON parse are transformed into a possible form and stored save JSON array into MySQL DBsaveJSONArray json arr JSON let jsonArr string for let i i lt json arr lenght i jsonArr string JSON stringify json arr i if i lt json arr lenght jsonArr string jsonArr string this yourRepository save json arr jsonArr string load JSON array from MySQL DBasync findJSONArray Promise lt YourEntry gt const entry arr await this yourRepository find for let i i lt entry arr lenght i entry arr i json arr JSON parse entry arr i json arr return entry arr I think the best way is json arr string to set it to parse the DB value to and return it as JSON JSON parse Of course someone may have found a better way than this and put it to good use 2022-01-28 16:54:30
海外TECH DEV Community MedusaJS and more https://dev.to/adrien2p/medusajs-extensiblity-1gka MedusaJS and more What is MedusaJS MedusaJS is not more that The Open Source Shopify alternative Create a headless commerce store in minutes and start your growth journey on a fast and flexible foundation I really like that project and I found that for my needs I needed a solution to be able to extend medusa in a way I could be able to achieve anything I wanted to achieve Why MedusaJSWell compared to other solutions the learning curve is really smooth and you will find all the features that you really need You can even move from Shopify to Medusa in just few minutes look at thisBut I must talk about the community as well Everybody trying to help each other the team is always accessible and you can even get some call if needed But you want more I have developed for my own project a tool that wrap medusajs and allow me to extend pretty much everything and rework the core architecture of my server but without breaking any of the provided features Because I really like the community around I have decided to put that work available as a public repository Do you want to give a feedback If you ever think about using medusajs but that you finally thought that some features were missing Well now you have the full power to add them in no time Take a look at medusa extender 2022-01-28 16:38:08
海外TECH DEV Community Flask React Soft Dashboard - Free Project https://dev.to/sm0ke/flask-react-soft-dashboard-free-project-220k Flask React Soft Dashboard Free ProjectHello Coders This article presents an open source full stack project that uses a react Material UI React design powered by a simple Flask API Server Flask React Soft can be downloaded from Github without a registration lock and used for commercial projects or eLearning activities For newcomers Flask is a leading framework powered by Python and React is a popular JS library for coding user interfaces baked by Facebook Thanks for reading Flask React Soft LIVE DemoFlask React Soft source codeSoft UI Dashboard React is built with over frontend individual elements like buttons inputs navbars nav tabs cards or alerts giving you the freedom of choosing and combining Product FeaturesInnovative Material UI Design Crafted by Creative TimReact Redux Redux persistAuthentication JWT Login Register LogoutFull Stack ready via a simple Flask APIDocker support for API partSQLite persistence Flask RestXUp to date dependenciesThe product is built using a two tier pattern where the React frontend is decoupled logically and physically from the API backend In order to start the product in a local environment we need to type a short list with commands in the terminal window Clone download product sourcesCompile and start the API using a manual build or DockerTest the API using cURL or POSTMAN optional Compile and start the React UIRegister users and authenticateThe frontend and the backend should be started from different terminal windows Start the API ServerThis free product is a simple API starter enhanced with JWT authentication SqlAlchemy SQLite persistence and deployment scripts via Docker It has all the ready to use bare minimum essentials and can be extended with ease Clone Download sources from Github git clone cd flask react soft dashboardStart API via Docker cd flask api docker compose up build API is up on port Once the commands are executed we should be able to access the API and create users POSTMAN is a popular tool for this operation but we can use a command line tool like cURL as well Start the React UISoft UI Dashboard is compatible with multiple NodeJS versions x x x and we can compile and start the product with a single command cd react ui yarn install modules yarn start start the app React UI is up on port Once the UI is visible in the browser we can register new users authenticate and interact with all private pages Flask React Soft Charts amp WidgetsFlask React Soft User profileIn case Flask is not your preferred backend server the react frontend can be also used with NodeJS Laravel or Django all free Thanks for reading For more resources feel free to access Django React Soft free productMore Free Dashboards crafted in Flask Django and React 2022-01-28 16:22:32
海外TECH DEV Community CVE-2021-4034: The new vulnerability everyone has been talking about - PoC 🙄 https://dev.to/yaku/polkit-the-new-vulnerability-everyone-has-been-talking-about-4ela CVE The new vulnerability everyone has been talking about PoC CVE While the vulnerability is not exploitable remotely and doesn t in itself allow arbitrary code execution it can be used by attackers that have already gained a foothold on a vulnerable host to escalate their privileges and achieve that capability PoCVerified on Debian and CentOS You can find the repo at this link here →yaku debian grep PRETTY etc os releasePRETTY NAME Debian GNU Linux buster yaku debian iduid user gid yaku groups user cdrom floppy audio dip video plugdev netdev yaku debian gcc cve poc c o cve pocyaku debian cve poc iduid root gid root groups root cdrom floppy audio dip video plugdev netdev yaku yaku centos grep PRETTY etc os releasePRETTY NAME CentOS Linux Core yaku centos iduid yaku gid yaku groups user context unconfined u unconfined r unconfined t s s c c yaku centos gcc cve poc c o cve poc yaku centos cve pocsh iduid root gid root groups root user context unconfined u unconfined r unconfined t s s c csh exit What is polkit Polkit is a daemon that manages system processes and policies It is used by system administrators to control which users and applications can have access to certain system resources whoami YAkU 2022-01-28 16:15:05
海外TECH DEV Community Toxic Online Behaviors In the Developer Community https://dev.to/sachagreif/toxic-online-behaviors-in-the-developer-community-29c1 Toxic Online Behaviors In the Developer CommunityWe all crave human interaction especially when it sometimes becomes scarce like in the past couple years And when we can t get our dopamine hits from warm thoughtful conversations we ll settle for angry flame wars instead I run the State of JavaScript developer survey it s open now go take it and as the conversation around the project has become higher profile I ve had the chance to notice a few toxic behavior patterns not only in others but in myself as well So whenever you feel your teeth clenching and your heart rate spiking you might want to check if you re engaging in any of these bad behaviors yourself Note I also previously wrote about the other side of the coin how to better take online criticism Dismissing Other People s ExperiencePeople are only jumping on the Foo js bandwagon because of all the hype You don t need any of this fancy stuff Let s start with one of the most common toxic behaviors you ll see developers engage in dismissing others opinions when they don t coincide with theirs If someone tells you they appreciate a particular piece of software chances are it s solving a very real problem for them Proclaiming they re just following the hype is condescending and shows a lack of curiosity for the other person s point of view Maybe you re not experiencing that particular problem yourself or maybe you ve already developed your own coping strategy that has by now become second nature In any case just because you re not aware of the problem doesn t mean it doesn t exist Forgetting the HumanI don t think I ve ever seen a worse piece of code than Foo js My year old could write a better library We spend a large part of our lives interacting with huge corporations that do everything in their power to hide away their human elements and confront us with a digital corporate blob instead As a result it s very easy to forget that not all online interactions fit that mold If you re yelling at an open source maintainer on GitHub then that s a real person whose day you ve ruined And just because someone has tens or even hundreds of thousands of followers doesn t mean they won t react just like you would to a nasty tweet We all need to vent sometimes Just make sure your venting isn t in turn causing more stress elsewhere Seeing Corruption EverywhereWhy so many videos about Foo js I bet you re taking money from BigTechCo it s all rigged anyway Similarly because the behemoths that surround us deal in billions of dollars it can be tempting to think everybody in tech is swimming in money But the truth is that the vast majority of open source contributors and maintainers give up their time without seeing a cent in return and the same goes for many bloggers podcasters or YouTubers As you might imagine this makes these accusations of corruption or greed all the more hurtful And for a well documented example of what can happen when this conspiratorial mindset takes hold in a community look no further than Gamergate Feeling EntitledWhy would I pay for the Foo js update when there are far better libraries out there for free Would you ever step foot inside a restaurant solely for the purpose of informing them that their prices are too high and you won t be dining there today This kind of behavior would seem totally out of place in daily life yet for some reason we engage in it all the time online If you don t want to pay or sign up or leave your email to access some kind of service then just don t do it and move on If you really feel some kind of obligation to let someone know about it then leaving a respectful GitHub issue or sending a nice email is fine too But anything more than that will just make you seem entitled Looking for a FightI saw you were talking about Foo js and I can t believe anyone could have such a stupid take It s fine to engage if someone directly mentions you and expects a response but don t go actively searching for things to take offense to Sometimes people are just trying to let off steam by screaming into the void and having the void scream back to go fuck themselves can feel very jarring and stalker y no matter how hurt the void s feelings were Note this is one I struggle with a lot myself Calling People OutLook at what that idiot is saying about Foo js Whenever you quote tweet someone instead of replying to them you re essentially trying to bring down some good old mob justice on them and boost your own ego in the process If you really want to engage in productive discussion then no need to bring all your followers into it In fact for sensitive topics I ve often DM d or emailed the person I disagree with rather than engage in public debate to avoid exposing them to potential third party abuse Only Judging the OutcomeHow could Foo js lack such a basic feature It shows how little you care about your users When we judge something we see online we re often only seeing the tip of a much larger iceberg Maybe that developer spent weeks trying to implement that feature only to give up because they just couldn t make it work Or maybe that product designer fought meeting after meeting to fix that one annoying issue you brought up but got shut down time after time due to lack of resources The point is it doesn t hurt to do a little bit of background research before lobbing a truth bomb just to make sure you have the right target Taking Righteousness Too FarFoo js isn t even properly accessible It really shouldn t surprise me from someone like you Just because you re on the right side of an issue doesn t mean you should be an asshole Sure some anger is understandable when it s a topic you care deeply about and I m not trying to engage in tone policing here And yes shame can be an effective tool to change someone s behavior But let s be honest here in the vast majority of cases whenever we choose to dunk on someone instead of engaging with them in a more constructive manner what we re essentially doing is prioritizing our own satisfaction over actually trying to make things better We re All ToxicDon t get me wrong I m not trying to call out anybody specific as a toxic person here Instead I believe these are patterns we all fall prey to from time to time at least I know that I ve personally engaged in every one of these behaviors at some point All I m hoping is that maybe if we re more aware of these pitfalls it ll help us avoid them And if you think I m wrong…well then you re obviously just a paid corporate shill who blindly follows the hype and doesn t care about your fellow human being and I can t wait to tell my Twitter timeline all about you Photo by Dan Meyers on Unsplash 2022-01-28 16:03:17
Apple AppleInsider - Frontpage News Apple's Erik Neuenschwander details privacy policies & feature in new interview https://appleinsider.com/articles/22/01/28/apples-erik-neuenschwander-details-privacy-policies-feature-in-new-interview?utm_medium=rss Apple x s Erik Neuenschwander details privacy policies amp feature in new interviewApple head of user privacy Erik Neuenschwander discussed the Cupertino tech giant s privacy policies and protections in a new deep dive interview for Data Privacy Day Erik NeuenschwanderNeuenschwander sat down with Rene Ritchie to discuss the company s privacy goals as well as the mechanisms and policies it implements to reach those goals In the interview the privacy chief reiterated Apple s commitment to keeping its users data safe secure and away from prying eyes Read more 2022-01-28 16:44:56
海外TECH Engadget AirPods Pro drop to $180, plus the rest of the week's best tech deals https://www.engadget.com/apple-airpods-pro-drop-to-180-best-tech-deals-this-week-164508517.html?src=rss AirPods Pro drop to plus the rest of the week x s best tech dealsThis week was a good one for those holding out for discounts on Apple gadgets Most AirPods models remain on sale at Amazon so you can grab the second gen earbuds for only or the latest AirPods Pro for The Apple TV K is also on sale for or off its normal price Elsewhere GOG com s New Year sale has discounted hundreds of titles and you can still pick up a few Roomba robot vacuums for hundreds of dollars less than usual Here are the best tech deals from this week that you can still get today AirPods ProBilly Steele EngadgetThe AirPods Pro are percent off bringing them down to These updated buds have the MagSafe charging case and we liked them for their good sound quality solid ANC and improved fit Buy AirPods Pro at Amazon AirPods nd gen EngadgetApple s second generation AirPods are down to and that s only more than they were on Black Friday While the third gen buds fix some issues that these have the original AirPods remain a good option for those on a budget We gave them a score of for their improved wireless performance decent sound quality and good battery life Buy AirPods nd gen at Amazon AirPods MaxEngadgetA few colors of the high end AirPods Max are less than usual bringing them down to These cans earned a score of for their excellent balanced sound strong ANC and good battery life Buy AirPods Max at Amazon Apple TV KEngadgetThe latest Apple TV K is on sale for or off its normal price While the version isn t drastically different from the previous model its new Siri remote is a big selling point We gave it a score of for its speedy performance HomeKit integration and the easy of use that comes with the improved Siri remote Buy Apple TV K at Amazon iPad AirEngadgetA few colors of Apple s iPad Air are on sale for or less than usual We gave this tablet a score of for its speedy performance fast WiFi updated design with USB C and healthy battery life Buy iPad Air at Amazon GOG com New Year saleCD Projekt RedGOG s New Year sale knocks up to percent off popular titles making it a good time to pick up a few that will help carry you through the winter months Key among them are Cyberpunk for percent off The Witcher Wild Hunt for percent off Control Ultimate Edition for only and more Sho GOG com New Year saleiRobot Roomba j The new Roomba j is off right now and down to at both Amazon and Wellbots The higher end Roomba s is also and down to The former just came out at the end of last year and has x the suction power of a standard Roomba plus advanced obstacle avoidance which means it will avoid things like pet poop more easily than other models The s on the other hand has x suction power and a more corner friendly design Both also support automatic emptying and come with clean bases too Buy Roomba j at Amazon Buy Roomba j at Wellbots Buy Roomba s at Amazon Buy Roomba s at Wellbots iRobot Roomba The Roomba is down to or off and a return to its record low price It earned a spot in our best budget robot vacuums guide thanks to its strong cleaning power on device button controls and handy companion mobile app Buy Roomba at Amazon Fitbit Charge Valentina Palladino EngadgetFitbit s Charge is on sale for a record low of right now We gave the fitness tracker a score of for its large full color display built in GPS standard Fitbit Pay and long battery life The Fitbit Sense smartwatch is also on sale for less than usual bringing the price down to Buy Charge at Amazon Eero WiFi packseero LLCAll Eero WiFi packs are on sale right now so you can one for as low as The three pack of routers is down to while the three pack with one router and two extenders has been discounted to This system supports WiFi up to square feet of coverage and it has a built in Zigbee smart home hub Buy Eero router extenders at Amazon Xbox Elite Wireless Series controllerMicrosoft s Elite Wireless Series controller for Xbox remains on sale for or less than usual If you want to treat yourself or someone else to a fancy gaming accessory this is a good option It comes with six thumbsticks four paddles two D pads a charging dock a carrying case and a USB C cable and its battery can last up to hours on a single charge Buy Elite Wireless Series controller at Amazon Buy Elite Wireless Series controller at Microsoft Samsung Galaxy Buds The Galaxy Buds are down to right now or off their normal price We gave them a score of for their improve sound quality adjustable ambient sound mode comfortable design and support for wireless charging Buy Galaxy Buds at Woot Samsung Galaxy S FESamsung s latest smartphone the Galaxy S FE is officially available and starting to ship and Amazon throws in a gift card if you order the handset through the online retailer We briefly tested the FE at CES and called it quot last year s flagship without the frills quot and it includes a nanometer processor a HZ display a megapixel front facing camera a larger battery and more Buy Galaxy S FE bundle at Amazon Samsung T Touch SSDThe Samsung T Touch SSD in TB is down to a record low of right now That s even better than the price it was during the holiday shopping season last year We like the drive s compact design fast speeds and built in fingerprint reader for extra security Buy T Touch TB at Amazon Libro fmEngadget readers can get a total of two free audiobooks when signing up for Libro fm the audiobook subscription service that supports local bookstores Similarly to Audible a Libro fm membership costs per month and gives you one audiobook credit per month plus percent off any audiobooks you buy ála carte Subscribe to Libro fm monthNew tech dealsUltraloq U Bolt ProUltraloq s U Bolt Pro smart lock with its WiFi bridge is off when you use the code ENGADGET at checkout bringing it down to This model gives you six different ways to unlock your door including a fingerprint sensor a personal numerical code an e key or using the companion mobile app And with the included bridge you can control the lock from anywhere allowing you to remotely unlock or lock your door at any time or give digital keys to your loved ones Buy Ultraloq U Bolt Pro bundle at Wellbots Master amp Dynamic MW PlusThrough January you can get percent off Master amp Dynamic s MW Plus earbuds when you use the code TAKE at checkout This sale fixes one of our main gripes with these buds ーtheir high price tag We gave them a score of for their great sound quality reliable onboard controls and hour battery life Buy MW Plus at M amp D inch Hisense UG Quantum Dot K smart TVHisense s inch Quantum Dot K TV is percent off and down to just under It packs a lot of value into a relatively affordable TV ーthe set supports a Hz native refresh rate Dolby Vision and Atmos nits of peak brightness and Game Mode Pro the latter of which makes use of HDMI low latency mode variable refresh rates and more Buy inch Hisense UG K TV at Amazon Garmin wearablesA bunch of Garmin smartwatches are at Wellbots when you use the code ENGADGET at checkout Key among them are the Venu for and the Lily for The former has a number of advanced features like a pulse ox sensor Garmin Pay and a built in GPS while the latter is more affordable and stylish to boot Buy Garmin Venu at Wellbots Buy Garmin Lily at Wellbots Follow EngadgetDeals on Twitter for the latest tech deals and buying advice 2022-01-28 16:45:08
海外TECH Engadget Porsche sent its Taycan EV cross-country to claim a 'charging time' record https://www.engadget.com/porsche-taycan-ev-cross-country-charging-time-record-160032782.html?src=rss Porsche sent its Taycan EV cross country to claim a x charging time x recordA standard Porsche Taycan has broken the Guinness World Record for the shortest charging time to cross the United States in an electric vehicle It only needed a cumulative charge time of hours minutes and seconds to cover a mile drive from Los Angeles to New York While the record it broke is highly specific there was a previous holder A Kia EV which had to be charged for hours minutes and second to make a similar but just slightly longer trip from New York to LA nbsp Wayne Gerdes known for his efficiency driving and for coining the term quot hypermiling quot was behind the wheel for the record breaking journey Hypermiling as you may know involves the use of adjustments and driving techniques to maximize the vehicle s fuel use Porsche told Engadget that Gerdes drove normal speeds and sometimes even went faster depending on the charge level for the duration of the trip nbsp As for the vehicle itself it was equipped with the company s Performance Battery Plus which has a higher gross capacity than the base battery option and Adaptive Cruise Control For the attempt to be recognized by the Guinness World Records every mile of the journey had to be filmed and the vehicle s GPS had to be tracked Gerdes said that the first time he charged a Taycan on a KW charger its battery levels went from to percent in just minutes He relied on Electrify America s CCS DC fast charging network for the trip since the company is a partner for this attempt Porsche first revealed the Taycan electric sedan in and started making deliveries in The automaker has released several variants since then including the category blurring Cross Turismo EV 2022-01-28 16:00:32
海外TECH WIRED Culture - Geek's Guide to the Galaxy https://www.wired.com/2022/01/geeks-guide-close-encounters galaxy 2022-01-28 17:00:00
海外TECH WIRED Samsung Galaxy S21 FE Camera Samples https://www.wired.com/gallery/samsung-galaxy-s21-fe-camera-samples samples 2022-01-28 16:38:00
金融 金融庁ホームページ 国際銀行協会(IBA)における中島長官の基調講演について掲載しました。 https://www.fsa.go.jp/common/conference/danwa/index_kouen.html#Commissioner 基調講演 2022-01-28 17:00:00
金融 金融庁ホームページ 「連結財務諸表の用語、様式及び作成方法に関する規則に規定する金融庁長官が定める企業会計の基準を指定する件」の一部改正(案)について公表しました。 https://www.fsa.go.jp/news/r3/sonota/20220128.html 企業会計 2022-01-28 17:00:00
金融 金融庁ホームページ 第49回金融審議会総会・第37回金融分科会合同会合議事次第について公表しました。 https://www.fsa.go.jp/singi/singi_kinyu/soukai/siryou/2022_0131.html 金融審議会 2022-01-28 17:00:00
ニュース BBC News - Home Ukraine crisis: US ignored Russia's security concerns, Putin says https://www.bbc.co.uk/news/world-europe-60173191?at_medium=RSS&at_campaign=KARANGA ukraine 2022-01-28 16:24:33
ニュース BBC News - Home Covid: Gray report confusion and warning over global lack of jabs https://www.bbc.co.uk/news/uk-60146003?at_medium=RSS&at_campaign=KARANGA coronavirus 2022-01-28 16:19:34
ニュース BBC News - Home Government backs bill to promote use of British Sign Language https://www.bbc.co.uk/news/uk-politics-60171412?at_medium=RSS&at_campaign=KARANGA ayling 2022-01-28 16:04:50
ニュース BBC News - Home Storm Malik: Winds up to 80mph could hit parts of UK https://www.bbc.co.uk/news/uk-60171581?at_medium=RSS&at_campaign=KARANGA england 2022-01-28 16:37:14
ニュース BBC News - Home What's been causing lorry queues at Dover? https://www.bbc.co.uk/news/60111856?at_medium=RSS&at_campaign=KARANGA dover 2022-01-28 16:44:22
ビジネス ダイヤモンド・オンライン - 新着記事 「月曜から夜ふかし」でおなじみの“優待おじさん”こと桐谷さんが米国株を「優待がないけど買いたい」本当の理由 - 一番売れてる月刊マネー誌ZAiと作った桐谷さんの日本株&米国株入門 https://diamond.jp/articles/-/293837 「月曜から夜ふかし」でおなじみの“優待おじさんこと桐谷さんが米国株を「優待がないけど買いたい」本当の理由一番売れてる月刊マネー誌ZAiと作った桐谷さんの日本株ampamp米国株入門テレビ番組「月曜から夜ふかし」などで人気の“優待おじさんこと桐谷さん。 2022-01-29 01:55:00
ビジネス ダイヤモンド・オンライン - 新着記事 身近な人が亡くなった直後にやること、葬儀の流れをやさしく解説 - ぶっちゃけ相続「手続大全」 https://diamond.jp/articles/-/294777 大切な人 2022-01-29 01:50:00
ビジネス ダイヤモンド・オンライン - 新着記事 孫正義社長に学んだ“成功するリーダー”の「七割思考」とは? - 課長2.0 https://diamond.jp/articles/-/294656 孫正義社長に学んだ“成功するリーダーの「七割思考」とは課長管理職は「自分の力」ではなく、「メンバーの力」で結果を出すのが仕事。 2022-01-29 01:45:00
ビジネス ダイヤモンド・オンライン - 新着記事 米ピッツバーグで橋崩落 バイデン氏訪問控え - WSJ発 https://diamond.jp/articles/-/294816 訪問 2022-01-29 01:12:00
北海道 北海道新聞 飲み薬、オミクロンに効果か 米メルク「モルヌピラビル」 https://www.hokkaido-np.co.jp/article/639196/ 新型コロナウイルス 2022-01-29 01:08:00
北海道 北海道新聞 米欧がエネルギー供給協力 首脳声明、ウクライナ問題 https://www.hokkaido-np.co.jp/article/639195/ 欧州連合 2022-01-29 01:03:00
GCP Cloud Blog Startup founder uses virtual reality therapy to support the speech disorder community https://cloud.google.com/blog/topics/startups/discover-how-virtual-reality-vr-software-helps-people-with-speech-disorders/ Startup founder uses virtual reality therapy to support the speech disorder communityEditor s note Meet Gareth Walkom an entrepreneur dedicated to helping others with speech disorders Turning life experience into innovationDid you know that of Americans have a speech disorder while of the world s population have a stutter Just getting what they need in everyday interactions can be stressful which intensifies when the stakes are raised during job interviews presentations public speaking and other activities As a result some people with speech disorders may avoid conversations and relationships and risk being denied jobs because of a difference in how they speak As a person who stutters I know firsthand the ableism that people with a speech disorder can encounter in wanting to use their voice in a judgemental world the frustration of sometimes not being able to say exactly what you want to say and therefore speaking less in speaking situations And the educational and career opportunities are lost when doors remain closed to us especially when employers advertise their jobs as requiring someone who speaks the language fluently While researchers still don t definitively know what causes stuttering emerging technologies are giving us new and promising pathways for improving the quality of life of people with speech disorders  That s why after years of researching and testing potential therapeutic uses of virtual reality and with the support of the Google for Startups Cloud Program I foundedwithVR onInternational Stuttering Awareness Day October in The mission of withVR is to prepare people with speech disorders for real life speaking situations by utilizing the power of virtual reality  Working through itOne of the difficulties in adapting to any disability is the opportunity to work through it in a safe and nonjudgmental environment withVR provides a virtual space for individuals in collaboration with their speech therapists to practice real world speaking scenarios in safe controlled environments  Imagine being able to raise your hand in class and give your opinion without hesitation ordering the meal you want rather than something that s easier to say or sit across the table from an avatar of an employer and explain why you are the right person for your dream job Then further customize the speaking situation and its surroundings to challenge yourself and be ready for anything That s what withVR offers individuals and their speech therapists Making VR come to lifeTo bring the withVR vision to life we are developing applications using theUnity game engine onGoogle Cloud with integratedFirebase services including authentication web hosting storage and database It s a powerful combination that s enabled us to build industrial strength applications that we ve rapidly deployed on a global basis Today we are already collaborating with labs clinics and hospitals in more than different countries worldwide These organizations help us to test and refine a virtual reality application to support people in achieving their speech goals and build comfort through immersive VR experiences using easily available viewers likeGoogle Cardboard  The application works in conjunction with a web app through which speech therapists configure customized VR scenarios for their patients to use As no real life speaking situation is ever exactly the same customization of VR scenarios is vital They can construct different scenes create and script avatars and through theGoogle Text to Speech API can even choose from hundreds of different voices in a variety of languages This gives them the flexibility to create many unique speaking situations for their clients no matter where they are in the world Progress from the practice sessions is presented through a dashboard that provides therapists with a tool to monitor their clients progress and provide feedback and encouragement No shortage of supportMy founder s journey has been supported by many passionate people The Google for Startups Cloud Program has been instrumental in helping us come so far in the first year and we ve only scratched the surface of what s possible There are many capabilities in Firebase and Google Cloud that we have yet to explore and through the startup program I now have a Google Mentor who can help guide that exploration  We also joined the Gether International GI Tech Cohort which is supported by Google for Startups and is built for and run by entrepreneurs with disabilities At the end of the week cohort we finished with a pitch competition where I was one of six selected founders to pitch in just three minutes I was very fortunate to win the Best Overall Pitch Award gaining USD in seed funding This award not only highlights the potential of withVR but also showcases that anyone can pitch their idea in a short amount of time no matter their difference  Working with GI also gave me the opportunity to collaborate and learn from other founders who have disabilities It s a safe space where I don t have to explain my everyday challenges and can focus on the all important task of advancing the vision of withVR while seeing how others use technology in their domain  Building on a strong foundationI m amazed to look back and see what we ve accomplished in just one year and humbled by the thousands of lives we ve touched Every day we receive valuable real life feedback from people in the field both clinicians and those with speech differences who benefit from VR therapy That knowledge tells us that we are heading in the right direction and opening our eyes to new possibilities for where to take withVR And inspiring us to keep moving ahead If you d like to participate in testing or if you are speech therapist or researcher please feel free to reach out to us We d love to show you how you can contribute to a world where anyone with a speech disorder can truly use their voice in any situation If you d like to take part contact us at hello withvr app If you want to learn more about how Google Cloud can help your startup visit our pagehere to get more information about our program and sign up for our communications to get a look at our community activities digital events special offers and more 2022-01-28 17:00:00
GCP Cloud Blog Optimize the cost of your Google Cloud VMware Engine deployments https://cloud.google.com/blog/topics/cost-management/cost-optimization-of-google-cloud-vmware-engine-deployments/ Optimize the cost of your Google Cloud VMware Engine deploymentsGoogle Cloud VMware Engine allows you to deploy a managed VMware environment with dedicated hardware in minutes with the flexibility to add and remove ESXi nodes on demand This flexibility is particularly convenient to quickly add compute capacity as needed However it is important to implement cost optimization strategies and review processes such that increased costs do not come as a surprise Since hardware needs to be added to ESXi clusters to accomodate for increased workload capacity additional care needs to be taken when scaling out the Private Clouds In this blog we explore best practices for operating Google Cloud VMware Engine Private Clouds with a focus on optimizing overall cost Google Cloud VMware Engine Billing PrinciplesCustomers are billed hourly by the number of VMware ESXi nodes that have been deployed Similarly to the commitment based pricing model that Compute Engine offers for Virtual Machine instances Google Cloud VMware Engine offers committed use discounts for one and three year terms For detailed pricing information refer to the pricing section on the Google Cloud VMware EngineProduct Overview page Cost Optimization Strategy Apply Committed Use DiscountsCommitted Use Discounts CUDs are discounts based on a commitment to running a number of Google Cloud VMware Engine nodes in a particular region for either a one or three year term CUDs for a three year commitment can provide up to a discount if their cost is invoiced in full at the start of the contract As you might expect commitment based discounts cannot be canceled once purchased so you need confidence in how many nodes you will run in your Private Cloud Apply this discount for the minimal amount of nodes you will run over a one or three year period and revise the number of needed nodes regularly if Google Cloud VMware Engine is the target platform of your data center migration Cost Optimization Strategy Optimize your Storage ConsumptionIf your workloads consume a lot of storage e g backup systems file servers or large databases you may need to scale out the cluster to add additional vSAN storage capacity Consider the following optimization strategies to keep storage consumption low Apply custom storage policies which use RAID or RAID rather than RAID default storage policy while achieving the same Failures to Tolerance FTT The FTT number is a key metric as it is directly linked to the monthly uptime SLA of the ESXi cluster A storage policy using RAID with FTT incurs a storage overhead since a RAID encoding scheme mirrors blocks of data for redundancy Similarly if FTT is required e g for more critical workloads that require a uptime availability RAID produces a storage overhead A RAID configuration is more storage efficient as a storage policy with FTT can be achieved with only a storage overhead Likewise RAID can provide FTT with only storage overhead which means of storage consumption can be saved compared to using the default storage policy with RAID Note however that there is a tradeoff RAID requires fewer I O operations to the storage devices and may provide better performance Create new disks using the “Thin Provisioning format Thin provisioned disks save storage space as they start small and expand as more data is written to the disk  Avoid Backups filling up vSAN storage Backup tools such as Actifio provide integrations of VMware environments and Cloud Storage allowing operators to move backups to a cheaper storage location Backup data which needs to be retained long term should be stored inside Cloud Storage buckets with life cycle policies to move data to a cheaper storage class after a certain time period Enable deduplication and compression on the vSAN cluster to reduce the amount of redundant data blocks and hence the overall storage consumption Cost Optimization Strategy Rightsize ESXi ClustersSize ESXi clusters such that CPU Memory and storage utilization are at a high level but support the outage of an ESXi node without any failure of Workloads Operating a cluster with resource utilization close to full capacity might cause an outage in case of a sudden hardware failure Having the highest resource utilization metric CPU Memory or Storage at approximately allows a safe operation of the cluster while also using the capabilities of the cluster Start new Private Cloud deployments with single node clusters and expand them when needed Google Cloud VMware Engine has recently added the ability to create private clouds that contain a single node for testing and proofs of concept Single node clusters can only be kept for a maximum of days and do not have any SLA However they provide a great method to minimize cost during the integration with day tooling configurations and testing Once the Private Cloud landing zone is fully configured the one node cluster can be extended to a three node cluster to be eligible for an SLA Consolidate ESXi clusters if possible If you are running workloads on multiple clusters review if clusters can be consolidated for a more efficient balancing of resources across clusters As an example if workloads are divided by OS type or by production and non production a higher resource utilization may be achieved if clusters are consolidated However there should be care taken in reviewing whether there are other constraints which would prevent consolidation such as licensing requirements If VMs need to run on specific nodes for licensing requirements consider DRS Affinity rules to pin workloads to specific nodes Consolidate Private Clouds if possible Review if Private Clouds can be consolidated if you run more than one Each Private Cloud requires its own set of management VMs which causes an overhead to the overall resource consumption  Cost Optimization Strategy Review Resource Utilization of WorkloadsReview the resource utilization of VMs on an on going basis after running applications in a steady state Extract vCenter metrics programmatically or visually to provide right sizing recommendations For instance if it is noticed that VMs consume more CPU and memory resources than needed tune the VM parameters during a scheduled downtime of the application requires reboot Consider scheduling the execution of a script which extracts CPU and memory utilization statistics from vCenter and stores the data in a convenient format such as in a CSV file As an example this can be implemented using PowerShell from a script execution host Define criteria to characterize workloads as over or underutilized resources by comparing their average CPU and memory utilization over a minimum of days with a reasonable threshold value  Example conditions thresholds can be tuned to meet your requirements CPU Usage day and year average is less than lt andCPU Usage day and year maximum is less than lt Despite the above recommendations avoid making abrupt changes and always carefully review the data against the requirements of the workloads Use Cloud Monitoring with the Standalone agent integration to review cluster and workloads metrics Follow the installation guide to enable metrics forwarding to integrate vCenter metrics with Cloud Monitoring Consider using third party tooling such as VMware vROps to get insights into the capacity and utilization to help with right sizing if the workload is CPU memory bound blog post for more details Note that vROps requires additional license and needs to be installed on a per VM host Managing Cost Optimization People and ProcessThe efficacy of cost optimization hinges also on the people and processes readiness to support and run the operations Set up a cost optimization function In any cloud operating model cost management and optimization is not a responsibility of a single team but requires a coordinated effort from multiple teams roles Sponsorship and support from executive leadership is needed to make optimization a shared top priority and build a central cost optimization function within your Cloud Center of Excellence CoE Finance for defining optimization goals and monitoring spend Architecture for reviewing optimization options and Operations SRE for implementing the options Additionally engage business application stakeholders for validating availability and performance impact on workloads Adopt a crawl walk run approach Cost optimization is a continuous and ongoing operation and follows an enterprise s cloud adoption maturity curve Define supporting processes and tools as you start and refine them as you scale Prioritize the optimization options While optimization can bring in significant cost savings it comes at a cost of resource effort and time Prioritize your options based on the potential savings vs estimated level of effort to identify the most impactful ways to reduce spend and realize quick wins Report and measure Identify key metrics of interest e g cost per user tenant customer and define KPIs to continuously measure optimization outcomes and success against them Refer to our Cloud FinOps whitepaper for a holistic framework on driving financial accountability and business value realization Also check the principles of cloud cost optimization blog for additional guidance on tools and cost optimization best practices Call to ActionIn this blog we have listed several strategies to reduce the overall cost of Private Clouds which differ in their implementation effort Quick wins that can be implemented to reduce cost in the short term include the use of CUDs specifically if VMware Engine will be used as a platform for workloads for at least one year as well as custom storage policies to optimize overall vSAN storage consumption  Optimization strategies which include the adoption of processes to monitor utilization metrics of clusters and VMs provide helpful insights on whether workloads are oversized Yet adjustments to workload sizing should not be made swiftly and require careful review of metrics in a steady state This cost optimization does rather take effect in a longer term At Google Cloud we have developed an architecture framework to help you optimize your spend and adopt Google Cloud VMware Engine while maximizing your returns on your journey to cloud If you are interested in more information please contact your Google Cloud account team A special thanks to Wayne Chu for his contributions and help with the implementation of cost optimization processes with our enterprise customers 2022-01-28 17:00:00
GCP Cloud Blog This year, resolve to become a certified Professional Cloud Developer – here’s how https://cloud.google.com/blog/topics/training-certifications/trainings-to-earn-cloud-professional-developer-certification/ This year resolve to become a certified Professional Cloud Developer here s howDo you have a New Year s resolution to improve your career prospects There s still time to register for a free Google Cloud Skills Boost to help you on your way to becoming a certified Professional Cloud Developer According to third party IT training firm Global Knowledge two Google Cloud Certified Professional certifications topped its list of the highest paid IT certifications in  Register anytime between now and the end of January for the Cloud Developer Skills Boost and you ll have days of free access to complete the challenge  This proposed learning path to the Professional Cloud Developer certification consists of nine activities starting with Google Cloud infrastructure fundamentals and continuing on to application development in the cloud security monitoring and troubleshooting Kubernetes Cloud Run Firebase and more The journey consists of on demand courses skill badges links to further resources and finally the Professional Cloud Developer certification Click to enlargeFor example once you ve completed the Google Cloud Fundamentals Core Infrastructure class in person or on demand you can take the three day Designing Applications with Google Cloud class where you ll learn how to design and develop cloud native applications that integrate managed services from Google Cloud including Cloud Client Libraries the Cloud SDK and Firebase SDKs an overview of your storage options and best practices for using Datastore and Cloud Storage We re also thrilled to announce that one of the most popular trainings in the Cloud Developer path Application Development with Cloud Run will be available on demand in the very near future in addition to via live instruction This is a great chance to get up to speed on this fully managed serverless compute platform at your own pace Cloud Run marries the goodness of serverless and containers and is fast becoming one of the most powerful ways to build and run a true cloud native application  Moving down the proposed learning path you can show off your Google Cloud chops with Skills Badges that you can display as part of your Google Developer Profile alongside your membership in the Google Cloud Innovators program on social media and on your resumé There are a wide variety of interesting Skills Badges for cloud developers like the Serverless Cloud Run Development Quest or Deploy to Kubernetes in Google Cloud and many of them take just a couple of hours to complete With these classes under your belt and Skills Badges on your profile you ll be in a good place to start preparing for the Professional Cloud Developer certification exam using the proposed exam guide and sample questions to show the way Here s to earning your certification in and to a great future Related Article Resolution Learn Google Cloud free of chargeTechnical practitioners and developers can start with free introductory training on how to use Google Cloud Read Article 2022-01-28 17:00: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件)