投稿時間:2023-05-01 00:20:06 RSSフィード2023-05-01 00:00 分まとめ(21件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
python Pythonタグが付けられた新着投稿 - Qiita 【Python×AWS】DockerでBoto3を使ったら「botocore.exceptions.NoCredentialsError: Unable to locate credentials」と表示された場合 https://qiita.com/Ryo-0131/items/2902555f63a4ad7e6910 2023-04-30 23:46:27
js JavaScriptタグが付けられた新着投稿 - Qiita ペライチのhtmlファイルから外部APIを叩く https://qiita.com/takepro14/items/a9519b0139d8ba148efb htmlgtltheadgtltmetachar 2023-04-30 23:35:25
AWS AWSタグが付けられた新着投稿 - Qiita 【Python×AWS】DockerでBoto3を使ったら「botocore.exceptions.NoCredentialsError: Unable to locate credentials」と表示された場合 https://qiita.com/Ryo-0131/items/2902555f63a4ad7e6910 2023-04-30 23:46:27
Docker dockerタグが付けられた新着投稿 - Qiita 【Python×AWS】DockerでBoto3を使ったら「botocore.exceptions.NoCredentialsError: Unable to locate credentials」と表示された場合 https://qiita.com/Ryo-0131/items/2902555f63a4ad7e6910 2023-04-30 23:46:27
Azure Azureタグが付けられた新着投稿 - Qiita Spring Boot でストリーム(SSE)対応する Azure OpenAI Service の API サーバを実装する https://qiita.com/Yoshihiro-Hirose/items/4328c85d5ed8d82a8d3a azureopenaiservice 2023-04-30 23:08:54
Git Gitタグが付けられた新着投稿 - Qiita 【Git】git add した変更を取り消す方法 https://qiita.com/P-man_Brown/items/3c224de184595de14943 gitaddtesttx 2023-04-30 23:37:22
Git Gitタグが付けられた新着投稿 - Qiita GitにおけるHEADとは https://qiita.com/n_69/items/e79b87f51a2086959941 gitresethead 2023-04-30 23:23:08
技術ブログ Developers.IO [레포트] 책임있는 AI (Responsible AI) 를 이론에서 실천으로 https://dev.classmethod.jp/articles/lim-aws-summit-tokyo-session-32/ 레포트 책임있는AI Responsible AI 를이론에서실천으로안녕하세요 임채정입니다 이번년도월일과일에일본도쿄에서는AWS Summit Tokyo를개최했습니다 다음블로그는금요일에있던 책임있는AI Responsible 2023-04-30 14:48:42
技術ブログ Developers.IO [레포트] ECS Serveice Connect 에서 ECS 상의 마이크로서비스의 내장애성과 가관측성를 높이자 https://dev.classmethod.jp/articles/lim-aws-summit-tokyo-session-24/ 레포트 ECS Serveice Connect 에서ECS 상의마이크로서비스의내장애성과가관측성를높이자안녕하세요 임채정입니다 이번년도월일과일에일본도쿄에서는AWS Summit Tokyo를개최했습니다 다음블로그는금요일에있던 ECS Serveice Connect 2023-04-30 14:48:25
技術ブログ Developers.IO 도쿄 서밋 2023에 다녀왔습니다. https://dev.classmethod.jp/articles/lim-aws-summit-tokyo-2023/ 도쿄서밋에다녀왔습니다 안녕하세요 임채정입니다 이번년도월일과일에일본도쿄에서는AWS Summit Tokyo를개최했습니다 저는일본에서일을하고있기때문에이번에서밋에참가했습니다 2023-04-30 14:41:01
海外TECH MakeUseOf iPhone Not Receiving Texts From Android? Here’s How to Fix It https://www.makeuseof.com/iphone-not-receiving-android-texts/ android 2023-04-30 14:30:16
海外TECH MakeUseOf 8 Ways Microsoft Can Improve Windows 11 Widgets https://www.makeuseof.com/ways-microsoft-improve-windows-11-widgets/ improve 2023-04-30 14:15:15
海外TECH MakeUseOf How to Set Up Google Wallet and a Password Manager to Store Your Important Cards and IDs on Android https://www.makeuseof.com/google-wallet-password-manager-credit-card-id-android/ How to Set Up Google Wallet and a Password Manager to Store Your Important Cards and IDs on AndroidLighten your wallet by storing all your credit cards IDs and other important documents on your Android phone 2023-04-30 14:01:16
海外TECH DEV Community Angular Architecture - Shared Module https://dev.to/digitaldino/angular-architecture-shared-module-1mf4 Angular Architecture Shared Module IntroductionShared Module will contain declarations for reusable components directives and pipes as well as any common services that may be required by multiple feature modules It may also export third party modules like Angular Material or ngx translate that are used throughout the application To use the Shared Module in other modules it must be imported into each module that requires access to the shared components directives pipes or services Shared Module and export example NgModule imports CommonModule declarations MovieCardComponent MovieBackdropColorDirective MovieFilterPipe exports MovieCardComponent MovieBackdropColorDirective MovieFilterPipe CommonModule FormsModule MatAutocompleteModule MatInputModule MatListModule export class SharedModule Shared Module import example NgModule declarations MovieRoutingModule components imports SharedModule MovieRoutingModule providers MovieResolver export class MovieModule Note You could as well create your shared components as standalone components or export each component as it s own module But I believe that if you have a large number of shared components or your application is more complex exporting shared components through a SharedModule is generally preferred as it s much easier to mantain The BenefitsIt s usually a common requirement of many projects to have customized building blocks for the applications such as usual UI elements like buttons dropdowns alerts cards tables checkboxes text inputs file inputs select elements and so on One of the key benefits of using a SharedModule is that it allows you to consolidate your presentational dummy components which can be treated as a rd party library project This makes it easier to manage and reuse your components across multiple projects if needed as well as share them with other developers or teams You can easily update and test your components in isolation and make changes without affecting the functionality of your main application So it s a great place to start writing your unit tests and use something like Storybook stories Although it can be tempting to skip unit testing starting with the smaller parts like testing your presentational components can help you get in the habit and reap the benefits of more robust and reliable code Storybook is a powerful tool that enables you to Develop and test your components independently of your main applicationDefine multiple use cases for your components providing a clearer overview of the various scenarios in which they can be utilizeDocument your components thoroughlyEnhance communication between team members by providing a centralized location for component viewing and collaboration 2023-04-30 14:24:55
Apple AppleInsider - Frontpage News Stage Manager in iPadOS 17 may support webcams in external monitors https://appleinsider.com/articles/23/04/30/stage-manager-in-ipados-17-may-support-webcams-in-external-monitors?utm_medium=rss Stage Manager in iPadOS may support webcams in external monitorsThe Stage Manager feature of iPadOS will enable support for webcams on external monitors a leaker claims with support for multiple video and audio sources also allegedly planned for the update iPad ProStage Manager in iPadOS offered power users many advantages over elements such as Split View for multitasking In iPadOS it is thought that Stage Manager will become even more useful for those who use external monitors attached to their iPad Pro Read more 2023-04-30 14:32:59
海外TECH Engadget Hitting the Books: Who's excited to have their brainwaves scanned as a personal ID? https://www.engadget.com/hitting-the-books-the-battle-for-your-brain-nita-farahany-st-martins-press-143000718.html?src=rss Hitting the Books Who x s excited to have their brainwaves scanned as a personal ID All of those fantastical possibilities promised by burgeoning brain computer interface technology come with the unavoidable cost of needing its potentially hackable wetware to ride shotgun in your skull Given how often our personal data is already mishandled online do we really want to trust the Tech Bros of Silicon Valley with our most personal of biometrics our brainwaves In her new book The Battle for Your Brain Defending the Right to Think Freely in the Age of Neurotechnology Robinson O Everett Professor of Law at Duke University Nita A Farahany examines the legal ethical and moral threats that tomorrow s neurotechnologies could pose nbsp St Martin s Publishing GroupFrom The Battle for Your Brain Defending the Right to Think Freely in the Age of Neurotechnology nbsp by Nita A Farahany Copyright by the author and reprinted by permission of St Martin s Publishing Group “Passthoughts as a Gateway to Brain SurveillanceAssume that Meta Google Microsoft and other big tech companies soon have their way and neural interface devices replace keyboards and mice In that likely future a large segment of the population will routinely wear neural devices like NextSense s bio sensing EEG earbuds which are designed to be worn twenty four hours a day With wide scale adoption of wearable neurotechnology adding our brain activity to nationwide identification systems is a near term reality One of the most extraordinary discoveries of modern neuroscience is the uniqueness of each person s functional brain connection its physical wiring especially in the brain areas devoted to thinking or remembering something Because of this algorithms can be used to analyze our brain activity and extract features that are both unique to each person and stable over time How your brain responds to a song or an image for example is highly dependent upon your prior experiences The unique brain patterns you generate could be used to authenticate your identity Nationwide identification systems vary by country but generally involve the assignment of unique identification numbers which can be used for border checks employment screenings health care delivery or to interact with security systems These ID numbers are stored in centralized government databases along with other significant personal data including birth date and place height weight eye color address and other information Most identification systems have long included at least one piece of biometric data the static photo used in passports and driver s licenses But governments are quickly moving toward more expansive biometric features that include the brain Biometric characteristics are special because they are highly distinctive and have little to no overlap between individuals As the artificial intelligence algorithms powering biometric systems have become more powerful they can identify unique features in the eyes and the face or even in a person s behavior Brain based biometric authentication has security advantages over other biometric data because it is concealed dynamic non stationary and incredibly complex The promise of greater security has led countries to invest heavily in biometric authentication China has an extensive nationwide biometric database that includes DNA samples and it also makes widespread use of facial recognition technology Chinese authorities in the Xinjiang Uyghur Autonomous Region have conducted mass collections of biometric data from the Uyghur people and used it for targeted discrimination The United States has also massively expanded its collection of biometric data A recent report by the US Government Accountability Office detailed at least eighteen different federal agencies that have some kind of facial recognition program in place US Customs and Border Protection includes facial recognition as part of its pre boarding screening process and an executive order signed by President Trump in required the United States top twenty airports to implement biometric screening on incoming international passengers Increasingly governments are investing in developing brain biometric measurements The US Department of Defense recently funded SPARK Neuro a New York based company that has been working on a biometric system that combines EEG brain wave data changes in sweat gland activity facial recognition eye tracking and even functional near infrared spectrometry brain imaging fNIRS a particularly promising if expensive technology for brain authentication since it is wearable can be used to monitor individuals over time can be used indoors or outdoors while a person is moving or at rest and can be used on infants and children China has been funneling substantial investments into EEG and fNIRS as well For biometric features to be successfully used for authentication they must have universality permanence uniqueness and be secure against fraud Over time static biometrics like facial IDs and fingerprints have become prone to spoofing Functional biometrics such as brain activity are less prone to attack That feature has motivated researchers like Jinani Sooriyaarachchi and her colleagues in Australia to develop scalable brain based authentication systems In one of their most recent studies they recruited twenty volunteers and asked them to listen to both a popular English song and their own favorite song while their brain wave activity was recorded with a four channel an electrode capturing brain wave activity is called a channel Muse headset Afterward the researchers analyzed their recorded brain wave activity using an artificial intelligence classifier algorithm Remarkably they achieved percent accuracy in identifying the correct participant when they listened to the familiar song and a percent accuracy when they listened to their favorite song Using an eight channel EEG headset on thirty research subjects another group achieved a similar percent accuracy in authenticating participants by their brain wave data after they d looked at novel images It might not even take eight or even four electrodes to achieve the same result Even with just a single channel EEG headset researchers have achieved percent accuracy in distinguishing between participants when they performed the same mental tasks Most of these studies had a small number of participants it is not yet clear if neural signatures will be as accurate at scale when billions rather than dozens of people must be authenticated EEG is inherently noisyーmeaning the signals the electrodes pick up can come from eye blinking or other movement which can make it hard to tell the difference between brain activity or interference But researchers have made substantial progress in developing pattern classifiers that filter noise allowing them to discriminate between individuals based on their resting state EEG brain wave activity and when performing tasks As noted previously EEG devices have been used to recover sensitive information from a person s brain such as their PIN codes and their political and religious ideologies Obviously this poses clear risks to our digital and physical security Governments can already tap our phone conversations and snoop on us digitally Will they similarly tap our brain activity data without our knowledge or consent Will they deploy AI programs to search our brains for terrorist plots Will they gather neural data to make inferences about individuals political beliefs to predict and prevent peaceful protests China is reportedly already doing so This article originally appeared on Engadget at 2023-04-30 14:30:00
ニュース BBC News - Home Bodmin murder probe: One dead, seven injured in stabbing near nightclub https://www.bbc.co.uk/news/uk-england-cornwall-65441538?at_medium=RSS&at_campaign=KARANGA nightclubthe 2023-04-30 14:52:14
ニュース BBC News - Home Sudan crisis: Air strikes and fighting in Khartoum as truce collapses https://www.bbc.co.uk/news/world-africa-65440528?at_medium=RSS&at_campaign=KARANGA paramilitary 2023-04-30 14:49:15
ニュース BBC News - Home Sudden mechanical failure likely cause of Orkney ferry grounding https://www.bbc.co.uk/news/uk-scotland-north-east-orkney-shetland-65441218?at_medium=RSS&at_campaign=KARANGA failure 2023-04-30 14:40:51
ニュース BBC News - Home Rangers 0-1 Celtic: Jota header sinks Old Firm rivals in semi-final to keep treble dream alive https://www.bbc.co.uk/sport/football/65364027?at_medium=RSS&at_campaign=KARANGA Rangers Celtic Jota header sinks Old Firm rivals in semi final to keep treble dream aliveA first half header from Jota is enough to settle a tense Old Firm encounter at Hampden sending Celtic into the Scottish Cup final against Inverness Caley Thistle 2023-04-30 14:39:39
サブカルネタ ラーブロ ラーショ マルミャー 宇都宮店/ネギチャーシューメン (1,150円) http://ra-blog.net/modules/rssc/single_feed.php?fid=209953 大泉学園 2023-04-30 15:07:21

コメント

このブログの人気の投稿

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