投稿時間:2022-11-05 02:30:30 RSSフィード2022-11-05 02:00 分まとめ(32件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
AWS AWS Machine Learning Blog Deploy BLOOM-176B and OPT-30B on Amazon SageMaker with large model inference Deep Learning Containers and DeepSpeed https://aws.amazon.com/blogs/machine-learning/deploy-bloom-176b-and-opt-30b-on-amazon-sagemaker-with-large-model-inference-deep-learning-containers-and-deepspeed/ Deploy BLOOM B and OPT B on Amazon SageMaker with large model inference Deep Learning Containers and DeepSpeedThe last few years have seen rapid development in the field of deep learning Although hardware has improved such as with the latest generation of accelerators from NVIDIA and Amazon advanced machine learning ML practitioners still regularly encounter issues deploying their large deep learning models for applications such as natural language processing NLP In an … 2022-11-04 16:45:57
AWS AWS Media Blog Uncompressed Media over IP on AWS: Read the whitepaper https://aws.amazon.com/blogs/media/uncompressed-media-over-ip-on-aws-read-the-whitepaper/ Uncompressed Media over IP on AWS Read the whitepaperToday AWS is pleased to introduce the Uncompressed Media over IP on AWS whitepaper As customers transition from Serial Digital Interface SDI to Internet Protocol IP infrastructure for media workflows they are taking advantage of new standards for transporting broadcast signals such as SMPTE ST and NMOS This shift to IP is not simple … 2022-11-04 16:03:33
python Pythonタグが付けられた新着投稿 - Qiita yamlで保存してあるconda仮想環境をDocker上で構築(multistage-build) https://qiita.com/junkor-1011/items/9913de762f2292499b82 conda 2022-11-05 01:46:12
Ruby Rubyタグが付けられた新着投稿 - Qiita Guardの自動テストがRunningのまま動かない【Windows・Railsチュートリアル3章】 https://qiita.com/rha/items/299ff91a204a62cd0eba cloud 2022-11-05 01:57:21
AWS AWSタグが付けられた新着投稿 - Qiita EKS で Containerd を有効化してみた (eksctl) https://qiita.com/sugimount-a/items/a1a3f1337d56366191e1 dockerapi 2022-11-05 01:20:38
Docker dockerタグが付けられた新着投稿 - Qiita yamlで保存してあるconda仮想環境をDocker上で構築(multistage-build) https://qiita.com/junkor-1011/items/9913de762f2292499b82 conda 2022-11-05 01:46:12
Linux CentOSタグが付けられた新着投稿 - Qiita CentOS7でJenkinsをポート番号変えてNginxでリバースプロキシな話 https://qiita.com/takkiita/items/5ce1f4a6e23053ef9c7a centos 2022-11-05 01:06:39
Ruby Railsタグが付けられた新着投稿 - Qiita Guardの自動テストがRunningのまま動かない【Windows・Railsチュートリアル3章】 https://qiita.com/rha/items/299ff91a204a62cd0eba cloud 2022-11-05 01:57:21
海外TECH Ars Technica Netflix’s ad-supported plan doesn’t work on Apple TV, “older” Chromecasts, PS3 https://arstechnica.com/?p=1895159 devices 2022-11-04 16:22:52
海外TECH MakeUseOf How to Play Demos on the Meta Quest 2 https://www.makeuseof.com/meta-quest-2-how-to-play-demos/ quest 2022-11-04 16:30:14
海外TECH MakeUseOf How to Add Animated Snowfall to Windows 11’s Desktop https://www.makeuseof.com/windows-11-snowflakes-desktop/ windows 2022-11-04 16:16:15
海外TECH DEV Community Scrape images from a search engine with JavaScript and Puppeteer https://dev.to/antoine_m/scrape-images-from-a-search-engine-with-javascript-and-puppeteer-3dlh Scrape images from a search engine with JavaScript and Puppeteer IntroductionIn the previous post of this series we discovered how to use Nodejs and Puppeteer for scraping and searching content on web pages I recommend reading it first if you have never used Puppeteer or need to set up the project In this article we will fetch full resolution images from a search engine Our goal time is to get a picture of every dog breed Script to get the images linksYou should have Node js and Puppeteer installed with npm or yarn We will use the same methods than on the first part We are going to use a simple JSON as our list of dog breeds that can be found here dog breeds datasetAs for the search engine we will scrape on Duckduckgo because it allows us to easily get the images at a full resolution which can be more tricky on Google images const puppeteer require puppeteer const data require dog breeds json const script async gt this will open visibly a chromium window this is useful to see what is going on and test stuff before the finalized script const browser await puppeteer launch headless false slowMo const page await browser newPage loop on every breed for let dogBreed of data console log Start for breed dogBreed const url dogBreed replaceAll amp va b amp t hc amp iar images amp iax images amp ia images in case we encounter a page without images or an error try await page goto url make sure the page is loaded and contain our targeted element await page waitForNavigation await page waitForSelector tile img media await page evaluate gt const firstImage document querySelector tile img media we open the panel that contains the image info firstImage click delay get the link of the image from the panel await page waitForSelector detail pane a const link await page evaluate gt const links document querySelectorAll detail pane a const linkImage Array from links find item gt item innerText includes fichier return linkImage getAttribute href delay console log link succesfully retrieved link console log catch e console log e script After running the script with node scrapeImages js you should get something like this Download and optimize the imagesWe now have the links of every images but some of them are quite heavy gt mb Fortunately we can use another Node js library to compress their size with minimal loss of quality sharpIt is a massively used library M weekly download to convert resize and optimize images You can add this at the end of the script to have a folder filled with the optimized imagesconst stream fs createWriteStream dogBreed jpg await https get link async function response response pipe stream stream on finish gt stream close console log Download Completed resize to a maximum width or height of pxawait sharp dogBreed jpg resize toFile dogBreed small jpg ConclusionYou can adapt this script to get pretty much anything you can also not limit yourself to the first image for each query but get every image As for myself I used this script to get the initial images for a tool I m working on Thanks for reading If you found this article useful it s part of a series and the next article will be about scraping images on a search engine To get notified follow me on Twitter I also share tips on development design and share my journey to create my own startup studio 2022-11-04 16:37:23
海外TECH DEV Community What was your win this week? https://dev.to/michaeltharrington/what-was-your-win-this-week-5fbc What was your win this week Hey folks Hope everybody is having a fantastic Friday and that you all have wonderful weekends Looking back on this past week what was something you were proud of accomplishing All wins count ーbig or small Examples of wins include Starting a new projectFixing a tricky bugRaking the lawn Time to dive into the weekend 2022-11-04 16:16:05
海外TECH DEV Community HTTP request ID association with logs https://dev.to/mario111/http-request-id-association-with-logs-46jc HTTP request ID association with logs IntroductionHertz is a high performance HTTP framework that provides requestid middleware、built in hlog log library and some hlog log component extensions this article focuses on how to associate request IDs with logs to make it easier for users to find logs Hands on Introduction to the Request ID middlewareThe requestid middleware for Hertz is based on the Gin framework s requestid and adapted to Hertz Its main purpose is to add rquestid to the response and context of a request to uniquely identify a request It is used in the following way package mainimport context github com cloudwego hertz pkg app github com cloudwego hertz pkg app server github com cloudwego hertz pkg common utils github com cloudwego hertz pkg protocol consts github com hertz contrib requestid func main h server Default h Use requestid New Example ping request h GET ping func ctx context Context c app RequestContext c JSON consts StatusOK utils H ping pong h Spin Accessing ping we will see an extra X request ID field in the response header Hlog extensionsHertz also provides hlog for printing the framework s internal logs Users can use this in simple log printing scenarios The default hlog is based on the log package implementation and has normal performance while Hertz provides the logger extension which provides zap and logrus implementations The logrus extension is used in the following way package mainimport context github com cloudwego hertz pkg common hlog hertzlogrus github com hertz contrib logger logrus func main logger hertzlogrus NewLogger hlog SetLogger logger hlog CtxInfof context Background hello s hertz Practical codeAssociate the log of a request by using the requestid middleware with the logger extension Custom HooksLogrus supports a user defined Hook that can print requestid in the log by implementing a custom Hook Custom Hooktype RequestIdHook struct func h RequestIdHook Levels logrus Level return logrus AllLevels func h RequestIdHook Fire e logrus Entry error ctx e Context if ctx nil return nil value ctx Value X Request ID if value nil e Data log id value return nil Full codepackage mainimport context github com cloudwego hertz pkg app github com cloudwego hertz pkg app server github com cloudwego hertz pkg common hlog github com cloudwego hertz pkg common utils github com cloudwego hertz pkg protocol consts hertzlogrus github com hertz contrib logger logrus github com hertz contrib requestid github com sirupsen logrus type RequestIdHook struct func h RequestIdHook Levels logrus Level return logrus AllLevels func h RequestIdHook Fire e logrus Entry error ctx e Context if ctx nil return nil value ctx Value X Request ID if value nil e Data log id value return nil func main h server Default logger hertzlogrus NewLogger hertzlogrus WithHook amp RequestIdHook hlog SetLogger logger h Use requestid New Example ping request h GET ping func ctx context Context c app RequestContext hlog CtxInfof ctx test log c JSON consts StatusOK utils H ping pong h Spin Effect level info msg HERTZ Using network library netpoll time T level info msg HERTZ HTTP server listening on address time T level info log id fa fb ca bb fbd msg test log time T In this way we associate the log of an HTTP request with requstid In fact Hertz provides more powerful capabilities which we will cover in the next article You can check out obs opentelemetry in advance if you are interested Reference 2022-11-04 16:06:41
Apple AppleInsider - Frontpage News 'Father of the iPod' Tony Fadell joins Arm's board https://appleinsider.com/articles/22/11/04/father-of-the-ipod-tony-fadell-joins-arms-board?utm_medium=rss x Father of the iPod x Tony Fadell joins Arm x s boardNest and iPod co designer Tony Fadell has joined the board of processor designer Arm which works with Apple on the M and iPhone A series chips Tony Fadell pictured in with his Nest thermostatEarly in Nvidia s deal to buy Arm failed following both US and UK regulatory concerns Now the company is continuing to work toward a possible public listing and has announced addition of Tony Fadell to its board Read more 2022-11-04 16:43:33
Apple AppleInsider - Frontpage News 2022 iPad review: Decent upgrade, bad lineup position https://appleinsider.com/articles/22/11/04/2022-ipad-review-decent-upgrade-bad-lineup-position?utm_medium=rss iPad review Decent upgrade bad lineup positionApple s iPad overhaul is a modernization of the line but introduces new issues The iPadApple s iPad has been a staple of the company s catalog since its launch The model migrates the iPad Pro design to the entry level and brings some other niceties to the line Read more 2022-11-04 16:19:26
Apple AppleInsider - Frontpage News How to speed up working on a Mac using custom keyboard shortcuts https://appleinsider.com/inside/mac/tips/speed-up-working-on-a-mac-using-custom-keyboard-shortcuts?utm_medium=rss How to speed up working on a Mac using custom keyboard shortcutsKeyboard shortcuts don t stop at Command Z Command C and Command V Here s how to create your own keyboard shortcuts in every version of macOS How many key combos could a Command key command if a Command key could combine keys Almost all applications provide their own keyboard shortcuts for doing common tasks If you ve used any of these handy key combos you ll know they save you stacks of time in aggregate since you don t waste that time navigating graphical menus whenever you need to undo a formatting mistake in Pages Read more 2022-11-04 16:18:59
海外TECH Engadget Roku's Streaming Stick 4K hits a new low of $25, plus the rest of the week's best tech deals https://www.engadget.com/roku-streaming-stick-4k-hits-new-low-of-25-best-tech-deals-this-week-164554043.html?src=rss Roku x s Streaming Stick K hits a new low of plus the rest of the week x s best tech dealsBlack Friday doesn t officially arrive for a few more weeks but we re already starting to see retailers run early holiday sales on several gadgets we recommend Roku s Streaming Stick K for instance has fallen to a new low of while Sony s WH XM headphones are back down to the price we saw during Amazon s Prime Early Access Sale last month There are offers on Amazon and Google devices beyond that plus discounts on Roombas MacBooks Logitech gaming mice and Samsung storage gear among others Here are the best tech deals from this week that you can still get today Roku Streaming Stick KRokuThis drop to represents a new low for Roku s Streaming Stick K which is currently the top streaming stick in our guide to the best streaming devices The streamer has normally retailed closer to in recent months While it s not as luxurious as a new Apple TV K the Streaming Stick K still gives you the essentials in a more affordable package It s fast enough it supports all the major streaming services apart from Twitch and it works with the big HDR standards Dolby Vision HDR HDR and HLG Its tile based interface is relatively basic and not devoid of ads but it remains dead simple to navigate and not as intense about pushing you toward certain services as other streamers The device also works Apple s AirPlay protocol so you can beam video to it straight from an iPhone or iPad nbsp Buy Roku Streaming Stick K at Amazon Note that Roku also sells a Streaming Stick K with an upgraded remote that adds hands free voice search a built in headphone jack for private listening a rechargeable battery and a lost remote finder function That device retails for however and it s not on sale as of this writing You can still use the Roku app for private listening with the non Plus model too If you prefer a set top box design and need an Ethernet port the Roku Ultra is currently discounted to a new low of from its usual And if you prefer the more personalized interface and far superior search capabilities of Google s K Chromecast another streamer we recommend that one is still on sale for Sony headphone saleBilly Steele EngadgetSony has discounted a number of its most popular wireless headphones ahead of Black Friday including deals on its best noise cancelling and true wireless models Perhaps most notably the Sony WH XM are back down to That s a roughly discount matching the lowest price to date for what we consider the best wireless headphones you can buy We gave that pair a score of in our glowing review but if you want something a bit more affordable the older but still capable WH XMs are available for which also matches an all time low Yes the names of these things still aren t great Buy Sony WH XM at Amazon Buy Sony WH XM at Amazon The active noise cancellation on both pairs is still among the most effective you can buy and both headsets come with useful features like a Speak to Chat function that automatically pauses your music when you start speaking to someone The battery on both headphones lasts around hours per charge which is good and the two each come with a fun bass heavy sound profile out of the box that can be adjusted to something more neutral through an EQ in Sony s companion app That said the XMs are generally more comfortable to wear for extended periods and they have a better microphone for making calls We also found the newer pair to be a bit better at muting out higher and mid range noises like human voices though some may not like that its automatic adjustment system ーwhich re optimizes the headphone s ANC profile based on your surroundings ーcan t be turned off If you prefer physical control buttons to touch inputs or a more neutral default sound we ll also note that the similarly comfortable Bose QuietComfort is still on sale for though that pair trades away some battery life and extra features by comparison If you re looking for noise cancellation in a true wireless form factor the WF XM are available for which again matches the lowest price we ve tracked While Bose s QuietComfort Earbuds II have this pair beat when it comes to raw ANC strength Sony s earbuds are still far from ineffective and our review found them to be more well rounded when it comes to overall features and sound quality Plus the Bose earbuds cost and we don t expect them drop this low for Black Friday Sony s LinkBuds S meanwhile are on sale for an all time low of that model s ANC is a step down from the others noted here but its design is lighter and more comfortable in the ear Buy Sony WF XM at Amazon Buy Sony LinkBuds S at Amazon Amazon Fire HD AmazonAt this isn t the all time lowest price we ve seen for Amazon s inch tablet ーthe device briefly dropped to at Target earlier this year ーbut it does match the deals we saw during last year s Black Friday sales and this year s pair of Prime Day events Discounts on the Fire HD haven t been uncommon over the past year but most of those sales have dropped the device to either or nbsp Buy Fire HD at Amazon When it s discounted to this extent the Fire HD is a strong value for those who just want a competent tablet for media consumption on the cheap Amazon s Fire OS still omits access to the Google Play Store and heavily steers you toward the company s own services but the Fire HD s general performance and x resolution display are perfectly solid for the money The device gets a good or so hours of battery life per charge and a useful Show Mode feature lets it double as an Alexa smart display if desired This deal comes as part of a wider sale on Amazon slates but of those the Fire HD should provide the best blend of price and performance for most people Apple iPad Air Dana Wollman EngadgetThe GB variant of Apple s fourth gen iPad Air is currently on sale for at Walmart which marks the lowest price we ve seen Now hear us out on this one If money is less of a concern then no you shouldn t get the iPad Air when the model is right there and still on sale with its faster M chip upgraded camera and improved USB C port The entry level inch iPad is still a better value for those who just want the essentials too However if you were specifically thinking of getting the new th gen iPad the last gen Air packs the same A Bionic chip and a nearly identical design save for a camera on the landscape edge without giving up support for the second gen Apple Pencil or a laminated display with a wide color gamut Buy Apple iPad Air at Walmart The GB version of the th gen iPad is priced at so if you must have more than the base GB of storage and you can t afford to step up to the current Air this last gen model is the better buy despite being two years older Just note that this deal only applies to certain colorways Since this looks to be an inventory clearing situation we wouldn t be surprised if stock runs dry sooner rather than later either Samsung storage device saleSamsungIf you re running out of space on your PC game console camera or whatever else Amazon is still running a sale on various Samsung storage devices Not every deal in the sale is a winner but the highlights include the TB T Shield a ruggedized and water resistant version of the T portable SSD we recommend marked down to a new low of Though Samsung recently launched a faster Pro internal SSD the prior Pro is still a fine PCIe drive for newer PCs or a PlayStation with a heatsink and it s back down to a low of for TB If you need a speedy microSD card meanwhile the GB Evo Select is a decent buy at that doesn t quite match the all time low of we saw earlier this year but it s the best price we ve tracked otherwise nbsp Buy Samsung T Shield TB at Amazon Buy Samsung Pro TB at Amazon Buy Samsung Evo Select GB at Amazon NVIDIA GeForce NowNVIDIAThough no cloud gaming service feels quite as fluid as playing a game locally NVIDIA s GeForce Now is one of the better takes on the concept particularly if you already own a hefty library of games on PC Right now NVIDIA is running a promotion that doles out a six month subscription of the Priority tier of the service for Normally that would cost NVIDIA says the deal is only available to new members free tier members Priority members currently on a month subscription plan and users on an active promotion or gift card so the idea is to upsell customers who aren t on one of the service s higher end plans already This promo is set to run through November Buy GeForce Now month Priority at NVIDIA As a refresher Priority is GeForce Now s middle tier you don t get the K fps support of the pricier RTX subscription but you can still stream in resolutions up to p and frame rates up to fps You re also allotted up to six hours per session instead of the one hour session length of the service s free tier The RTX tier meanwhile allows up to eight hour sessions It s also worth remembering that GeForce Now doesn t follow the same model as other cloud services like Google Stadia RIP or Microsoft s Xbox Cloud Gaming The idea is that you bring games you already own on platforms like Steam or the Epic Games Store then GeForce Now will let you stream them elsewhere when you re away from your gaming PC Just make sure enough of your games are actually supported before you take the plunge and note that your subscription will be set to auto renew by default Google Pixel aEngadgetA quick PSA for anyone looking to buy a good Android phone on a budget the unlocked Google Pixel a is still on sale for which matches the lowest price we ve tracked The handset has a list price of but we ve typically seen it float between and over the past few months Buy Google Pixel a at Amazon We recommend the Pixel a in our best smartphones guide and we gave it a review score of back in July Like past Pixel phones the main perks here are stellar camera performance and a clean take on Android with OS and security updates guaranteed into and respectively The first gen Google Tensor chip and inch OLED display compare favorably to most phones in this price range and while its back is made of plastic the design doesn t look cheap It s also IP rated for dust and water resistance The a isn t without flaws There s no headphone jack or wireless charging support the display is limited to a Hz refresh rate and the battery life while good isn t top of the line Still for less than it s difficult to do better Amazon Echo Show nbsp Nicole Lee EngadgetIt s a good week to be in the market for a smart display as nearly all of Amazon s Echo Show devices are on sale Among the highlights a two pack of the diminutive Echo Show is down to when you use the code SHOWPK at checkout That s about a savings off a two pack s usual street price in recent months Individual models are on sale for which is a price we ve seen a handful of times lately but still a solid value We gave the inch display a review score of last year You won t want to use it for more involved smart home tasks or video calls but it works particularly well when used as a smarter alarm clock Buy Echo Show pack at Amazon If you d prefer something bigger and faster both the inch Echo Show and inch Echo Show are still available for a low of though our reviews for those devices had a few more reservations by comparison If you prefer to use the Google Assistant instead of Alexa meanwhile Google s seven inch Nest Hub also plays nice on a bedside table adding a modicum of sleep tracking functionality and removing any built in camera We gave that one a score of last year and it s currently back to its usual deal price of Buy Google Nest Hub at Walmart iRobot Roomba Valentina Palladino EngadgetAt this deal matches the best price we ve seen for iRobot s Roomba the top pick in our guide to the best budget robot vacuums We ve seen this price a few times over the course of the year though over the past few months the device has retailed closer to on average nbsp Buy iRobot Roomba at Amazon We ve found the Roomba to be a dependable and easy to manage robovac with decent battery life of at least minutes per charge ーand potentially longer depending on the mix of surfaces in your home ーand a sturdy design that ll survive its inevitable bumps into your furniture Since it s WiFi enabled you can turn it off and on and set cleaning schedules through the iRobot app You still get what you pay for Pricier robovacs will be more robust at cleaning larger spaces and they ll do so in a more orderly fashion than the semi random bump and run style of the here A couple of higher end Roombas are also on sale as of this writing If you only need to clean a smaller area though or if you re willing to trade some cleaning smarts for something a bit more affordable the should do the job at this deal price Logitech G Pro X SuperlightIgor Bonifacic EngadgetLogitech s G Pro X Superlight is a high performing gaming mouse we like for both work and play and right now it s down to its all time low of or about off its usual street price That s still not cheap but G Pro X Superlight stands out for being exceedingly light at roughly grams quick to glide with its PTFE feet and consistently responsive in faster paced games It has a particularly comfortable scroll wheel too You only get a couple of customizable shortcut buttons and the whole thing only connects over a USB dongle not Bluetooth Still we ve found the design comfortable for most hand sizes and grip types You should still only get a mouse like this if you re serious about PC gaming but if that s the case this one should serve you well in and out of those twitchy FPS games Note that this discount is just one of a handful of deals currently available for mice we recommend Buy Logitech G Pro X Superlight at Amazon Apple MacBook Air MDevindra Hardawar EngadgetWe ve seen Apple s M MacBook Air fall to a few times in recent weeks but if you missed out before this is still a nice opportunity to save on what remains a commendable laptop for lighter work and casual use The average street price for this SKU has sat around in recent months nbsp Buy Apple MacBook Air M at Amazon If you can afford to step up to the newest MacBook Air model based on Apple s M chip you still should it packs a refreshed design a bit more performance a vastly superior webcam and speaker system and a brighter display among other upgrades But if you could use the savings the M chip in found in the MacBook Air is still plenty performant for most tasks while the notebook s battery life keyboard trackpad and overall build quality remain excellent The p webcam on the other hand is a disappointment and the GB of RAM and GB of SSD storage in this specific SKU aren t well suited to heavier duty work But for everyday browsing streaming and word processing the M Air remains a solid value at inch LG A OLED TVLGThe inch version of LG s A OLED TV is still available for at Best Buy which is the best price we ve tracked and matches the lowest price we saw for last year s A model in the same size This is LG s entry level OLED TV so it s limited to Hz and lacks gaming friendly features like a variable refresh rate or HDMI ports If you re looking for a secondary TV away from the living room though the A still gets you the deep contrast vibrant colors and wide viewing angles you d expect from a good OLED TV Best Buy is advertising this offer as part of an ongoing early Black Friday sale so we d expect this to be the lowest price we ll see for this model over the holidays If you re willing to trade some picture quality for a more striking design meanwhile we re still seeing sales on Samsung s The Frame TVs as well Buy inch LG A OLED TV at Best Buy Get the latest Black Friday and Cyber Monday offers by following EngadgetDeals on Twitter and subscribing to the Engadget Deals newsletter 2022-11-04 16:45:54
海外TECH Engadget Egg whites could be key to removing microplastics from seawater https://www.engadget.com/egg-whites-remove-microplastics-from-water-163248018.html?src=rss Egg whites could be key to removing microplastics from seawaterMicroplastics are a bane that harms wildlife but you may be staring at the solution to this problem in your breakfast Princeton researchers have used egg whites to create a lightweight porous aerogel that can remove microplastics and salt from seawater When you freeze dry and superheat the whites up to F in an oxygen free space their pure protein system produces a mix of carbon fiber strands and graphene sheets that can remove percent of tiny plastics from water and percent of the salt Even fried and whipped eggs work just as well As you might imagine a readily available organic material like this has its benefits It s cheap to make and needs only gravity to work It won t consume energy or excess water Activated carbon is cheap but it s not nearly as effective as the egg white gel And while eggs from the grocery store prompted the breakthrough you can use other proteins that won t cut into the population s food supply The aerogel isn t ready for widespread use just yet Scientists need to refine the manufacturing process before mass production is possible If that happens though the implications are clear It would be comparatively easy to remove microplastics and otherwise purify water while minimizing the environmental impact While the salt removal may create problems in oceans it may be very helpful for desalinization in areas where fresh drinking water is difficult to find There are other purposes for that matter The gel might also be useful for energy storage and insulation so don t be surprised if you one day find egg like proteins in your walls 2022-11-04 16:32:48
海外TECH Engadget Twitter verification has always been a mess. Charging $8 a month won’t fix it. https://www.engadget.com/elon-musk-verification-twitter-blue-161532924.html?src=rss Twitter verification has always been a mess Charging a month won t fix it It s only been a matter of days since Elon Musk took over Twitter but he s already shaking up the platform in major ways Few of his ideas have attracted as much attention or controversy as his plan to start charging for verification as part of a bigger overhaul to Twitter s subscription service Blue Calling the current system “bullshit he said that his plan is to add verification as a perk to Twitter Blue which will increase in price from a month to a month All users who pay will get the checkmark while those who don t ーeven if they were verified under Twitter s previous system ーwill lose it Subscriptions will also reduce ads and make accounts more visible in replies and search a sort of anti shadowban Twitter s current lords amp peasants system for who has or doesn t have a blue checkmark is bullshit Power to the people Blue for month ーElon Musk elonmusk November But while Musk s plans may win him some fans among those who despise the idea of “blue check Twitter it also shows that he fundamentally misunderstands verification And while he is correct that the current system is broken charging for verification would make it worse not better Verification is about authenticityMusk s plan ignores the reason verification was created to begin with to convey authenticity Because Twitter doesn t have a real names policy a verified badge helps distinguish whether an account belongs to the person or entity whose name is at the top From Twitter s help center “The blue Verified badge on Twitter lets people know that an account of public interest is authentic It may seem like a status symbol to some but the reason it s handed out to journalists celebrities public officials and other notable figures is because there is inherent risk in not verifying those people “Verification was never meant to convey status says Nu Wexler a policy consultant and former policy communications rep at Twitter “It was simply a way for Twitter to address impersonation attempts Screenshot via TwitterBut Musk seems unmoved by concerns about impersonation In response to a question about whether newly verified users would be able to impersonate Musk himself he said “that already happens very frequently Musk isn t wrong on this point Hacking verified accounts and then changing their profiles to look like Musk is a known scam But getting rid of these types of scammers was supposedly one his main motivations for buying Twitter for billion in the first place Ironically scammers are already using the prospect of paid verification as a phishing ploy according to Twitter s head of safety Impersonation scams can have real consequences as actor Robert Kazinsky pointed out in a viral Twitter thread “I don t tweet much I am scared of the internet I struggle with a lot of things in life But this account exists so that fake accounts can t he wrote adding that in the past people impersonating him online have used his identity to start conversations with children Verification is a public service it is a good deed performed by companies who contribute very little good to the world in my opinion We should be making easier clearer paths to verification for everyone not making it harder It is their responsibility not a business model ーRob Kazinsky RobertKazinsky November Making verification solely dependent on who is willing to pay for it could have even bigger implications for the spread of misinformation Around the world public officials government agencies journalists activists and others use Twitter to communicate important information to the public Making their verification contingent on paying or making it easier for someone else to impersonate them would undermine the idea of Twitter as the “town square Musk wants it to be Verification has always been confusing and unfairMusk is correct that Twitter s existing verification system could be a whole lot better Verification on Twitter has always been a mess but not because it s sometimes perceived as a status symbol The reality is that Twitter has never been able to properly explain how verification works or why some people get it and others don t The company introduced it in but didn t have a public facing request tool until Instead for nearly a decade the company would quietly verify celebrities journalists and other public figures mostly through backchannel connections via agents and public relations staffers This meant that even some public figures who clearly qualified for it didn t know how to be verified The decision to open up verification requests to the public in was supposed to resolve this But a little more than a year after opening public requests the company paused the effort amid a backlash after verifying a white nationalist Verification remained “paused for the next four years Except it wasn t entirely on hold The company continued to quietly grant verification to thousands of accounts via the same behind the scenes process it had used for years In other words it remains just as opaque and confusing as it ever was Even when Twitter said it would expand verification to more doctors and health experts at the start of the COVID pandemic there was still widespread confusion about how these verifications would occur Some researchers who were verified as part of the expansion were unsure how it happened Finally in Twitter re opened verification only to pause it ーagain ーafter just eight days because the company mistakenly verified a fake Cormac McCarthy account Verification requests resumed a month later Twitter Blue and verification serve different purposesSo yes verification has always had significant issues And Musk isn t even the first to propose verification for everyone as a way to fix it Former CEO Jack Dorsey said he wanted to open it to everyone back in ““The intention is to open verification for everyone …And people can verify more facts about themselves and we don t have to be the judge or imply any bias on our part he said in a livestream But making verification part of Twitter Blue which is designed to provide extra perks for those who pay doesn t address the underlying issue While it may theoretically give everyone the opportunity to be verified it also creates new incentives for people trying to take advantage of the platform says Wexler “There s a market for Twitter to charge power uses for certain features like an edit button or priority customer service he says “But selling authenticity is just inviting bad actors to impersonate elected officials and news outlets One solution would be to separate verification and identity authentication And even Musk seems to recognize the need for additional context for some accounts He said there “will be a secondary tag below the name for someone who is a public figure which is already the case for politicians Is this Twitter s NEW verification badge Spotted on an internal version of Twitterh t KurtWagnerpic twitter com hQZTqgdRUーMatt Navarra MattNavarra November An early version of this appears to have already surfaced on Dorsey s Twitter account which according to a screenshot of an internal build of the service had an “official account label underneath his blue check But extra labels don t address the real danger that would be posed by the impersonators verification was created to fight 2022-11-04 16:15:32
海外科学 NYT > Science China Lucks Out Again as Out-of-Control Rocket Booster Falls in the Pacific https://www.nytimes.com/2022/11/04/science/china-rocket-debris.html China Lucks Out Again as Out of Control Rocket Booster Falls in the PacificFor the fourth time the country s space program used a ton launcher that made an uncontrolled re entry back to Earth prompting nervous sky watching and airspace closures in Europe 2022-11-04 16:19:34
海外科学 NYT > Science The Sad Fate of the Ancient, Well-Shelled Mariners https://www.nytimes.com/2022/11/04/science/phosphate-paleontology-biology.html The Sad Fate of the Ancient Well Shelled MarinersFive hundred million years ago soft bodied sea animals used phosphate to build elaborate protective armor Then their resource dried up and evolution moved on 2022-11-04 16:45:38
海外TECH WIRED Elon Musk Has Fired Twitter’s ‘Ethical AI’ Team https://www.wired.com/story/twitter-ethical-ai-team/ algorithms 2022-11-04 16:20:36
金融 金融庁ホームページ 国際金融センター特設ページを更新しました。 https://www.fsa.go.jp/internationalfinancialcenter/index.html alfinancialcenterjapan 2022-11-04 17:00:00
金融 金融庁ホームページ イノベーション推進に向けた金融庁の取組みを公表しました。 https://www.fsa.go.jp/policy/bgin/innovationtop.html 金融庁 2022-11-04 17:00:00
金融 金融庁ホームページ 金融審議会「事業性に着目した融資実務を支える制度のあり方等に関するワーキング・グループ」(第2回)を開催します。 https://www.fsa.go.jp/news/r4/singi/20221104.html 金融審議会 2022-11-04 17:00:00
ニュース BBC News - Home Train strikes: Series of strikes from Saturday suspended https://www.bbc.co.uk/news/business-63510380?at_medium=RSS&at_campaign=KARANGA november 2022-11-04 16:37:53
ニュース BBC News - Home Britons among tourists detained on boat in Peru protests https://www.bbc.co.uk/news/world-latin-america-63511143?at_medium=RSS&at_campaign=KARANGA british 2022-11-04 16:46:20
ニュース BBC News - Home Sanna Marin: Partying Finnish PM cleared of neglecting duties https://www.bbc.co.uk/news/world-europe-63517303?at_medium=RSS&at_campaign=KARANGA minister 2022-11-04 16:05:32
ニュース BBC News - Home English National Opera to leave London as arts face cuts https://www.bbc.co.uk/news/entertainment-arts-63512050?at_medium=RSS&at_campaign=KARANGA announcement 2022-11-04 16:26:14
ニュース BBC News - Home Train strikes: What are the dates and which lines are affected? https://www.bbc.co.uk/news/business-61634959?at_medium=RSS&at_campaign=KARANGA strikes 2022-11-04 16:41:04
ニュース BBC News - Home Aston Villa: New manager Unai Emery's 'dream' is to win a trophy https://www.bbc.co.uk/sport/football/63518220?at_medium=RSS&at_campaign=KARANGA Aston Villa New manager Unai Emery x s x dream x is to win a trophyUnai Emery sets out his objectives ahead of his first game as Aston Villa manager to win a trophy then take the club into Europe 2022-11-04 16:05:17

コメント

このブログの人気の投稿

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