IT |
ビジネス+IT 最新ニュース |
幻滅期突入直前? Web3とNFT、ガートナー流の企業活用術 |
https://www.sbbit.jp/article/cont1/99537?ref=rss
|
幻滅期突入直前WebとNFT、ガートナー流の企業活用術インターネットに匹敵する変化もたらす存在として、Webに対する関心がグローバルで盛り上がっている。 |
2022-11-17 06:10:00 |
AWS |
AWS Database Blog |
Use cross-Region read replicas with Amazon Relational Database Service for SQL Server |
https://aws.amazon.com/blogs/database/use-cross-region-read-replicas-with-amazon-relational-database-service-for-sql-server/
|
Use cross Region read replicas with Amazon Relational Database Service for SQL ServerStarting today you can now create cross Region read replicas with Amazon Relational Database Service Amazon RDS for SQL Server This feature gives you the ability to deploy a read only DB instance in a secondary AWS Region With cross Region read replica data is asynchronously sent from your primary database instance to a cross Region read replica in … |
2022-11-16 21:52:24 |
AWS |
AWS Machine Learning Blog |
Build a cross-account MLOps workflow using the Amazon SageMaker model registry |
https://aws.amazon.com/blogs/machine-learning/build-a-cross-account-mlops-workflow-using-the-amazon-sagemaker-model-registry/
|
Build a cross account MLOps workflow using the Amazon SageMaker model registryA well designed CI CD pipeline is essential to scale any software development workflow effectively When designing production CI CD pipelines AWS recommends leveraging multiple accounts to isolate resources contain security threats and simplify billing and data science pipelines are no different At AWS we re continuing to innovate to simplify the MLOps workflow In this post we discuss some … |
2022-11-16 21:57:47 |
AWS |
AWS Security Blog |
New ebook: CJ Moses’ Security Predictions in 2023 and Beyond |
https://aws.amazon.com/blogs/security/new-ebook-cj-moses-security-predictions-in-2023-and-beyond/
|
New ebook CJ Moses Security Predictions in and BeyondAs we head into it s time to think about lessons from this year and incorporate them into planning for the next year and beyond At AWS we continually learn from our customers who influence the best practices that we share and the security services that we offer We heard that you re looking for more … |
2022-11-16 21:05:07 |
AWS |
AWS Security Blog |
New ebook: CJ Moses’ Security Predictions in 2023 and Beyond |
https://aws.amazon.com/blogs/security/new-ebook-cj-moses-security-predictions-in-2023-and-beyond/
|
New ebook CJ Moses Security Predictions in and BeyondAs we head into it s time to think about lessons from this year and incorporate them into planning for the next year and beyond At AWS we continually learn from our customers who influence the best practices that we share and the security services that we offer We heard that you re looking for more … |
2022-11-16 21:05:07 |
python |
Pythonタグが付けられた新着投稿 - Qiita |
【Python】非負値行列因子分解(NMF)における推論:ギブスサンプリング |
https://qiita.com/akamaru0108/items/ceb3339992adb4205dc6
|
機械学習 |
2022-11-17 06:18:41 |
Ruby |
Rubyタグが付けられた新着投稿 - Qiita |
Bullet Trainを始めよう🚄️ |
https://qiita.com/gazayas/items/5550268789c92238995a
|
bullettrain |
2022-11-17 06:53:50 |
Ruby |
Railsタグが付けられた新着投稿 - Qiita |
Bullet Trainを始めよう🚄️ |
https://qiita.com/gazayas/items/5550268789c92238995a
|
bullettrain |
2022-11-17 06:53:50 |
技術ブログ |
Developers.IO |
Hugging Faceのモデル学習で、モデルをカスタマイズする方法 |
https://dev.classmethod.jp/articles/huggingface-usage-custom-model/
|
huggingface |
2022-11-16 21:00:38 |
海外TECH |
Ars Technica |
Amazon begins layoffs of up to 10,000 jobs, blames “uncertain” economy |
https://arstechnica.com/?p=1898348
|
layoffs |
2022-11-16 21:16:38 |
海外TECH |
DEV Community |
#gitPanic - HEAD |
https://dev.to/abbeyperini/gitpanic-head-37m8
|
gitPanic HEADUnderstanding HEAD and refs helps with reading git logs and using git commands RefsTagsHEAD and headDetached HEADHEAD RefsHEAD is a ref In git a ref is a human readable reference to a thing You can have refs to git information stored in blobs trees and commits A blob is an object representing a file A tree is file hierarchy or how files relate to each other A commit is how you add code changes to a repository You can also have refs to branches and remotes e g where your code and commit history are stored Each of these has a SHA or a unique identifier created with the SHA hash algorithm When you use main instead of typing out a SHA in commands like git checkout main you are using a ref There is a directory of files git refs that holds your refs You can create refs usinggit update ref lt file path gt lt SHA gt where the file path is in git refs There are a lot of ref files created automatically For instance the main branch would have a git refs main file with the SHA in it So while you are running commands like git checkout main git is referencing the git refs main file to figure out what SHA you mean TagsUsing git you can create a tag that is a ref to a commit or commits They re typically used with semantic versioning so developers can easily tell which commits belong to each version There s a lightweight version that works just like other refs The annotated tags are like a reference and a commit combined They include information like a date author and message They re all stored in git refs tags HEAD and headHEAD is a special ref that points to what you currently have checked out Meanwhile the head ref points to the tip of a branch e g the last commit When you run git checkout main you re effectively running git checkout main head As a result the git refs HEAD file is updated to contain ref refs heads main The git refs heads main file will contain the SHA of the last commit in the main branch Detached HEADYou can checkout any ref or SHA If I run git checkout ab the HEAD ref in git refs HEAD will point at commit ab If this commit is not the head of the branch the HEAD is detached While detaching your HEAD sounds scary it s just another way to look at git information Say you pushed commit A and then commit B Then something went horribly wrong but now you re not sure which commit is the culprit You can checkout commit A and see your entire repo as it was before the changes in commit B Where it gets really interesting is committing new changes or making new branches while your HEAD is detached There may be situations where you want to make a new branch based off of an older commit You re warned when your HEAD is detached because if you make any new changes you re making them back in the commit history If you commit those changes in the same branch and then try to push git is going to reject them because a fast forward merge isn t possible HEAD HEAD is shorthand for HEAD HEAD is shorthand for the parent commit of HEAD HEAD is the shorthand for the parent commit of the parent commit of HEAD If we ran git checkout main the HEAD is currently pointing at the head or last commit on main If we ran git checkout HEAD or git checkout HEAD we d be checking out the nd to last commit in the main branch Running git checkout HEAD would checkout the rd to last commit ConclusionEvery time we refer to a branch by its name instead of its SHA we re using a ref git created automatically We can also create refs A HEAD is a special ref git uses for the commit we have checked out If a HEAD isn t pointing at a head it s a detached HEAD |
2022-11-16 21:48:13 |
Apple |
AppleInsider - Frontpage News |
iOS 16.2 beta gets 'Rapid Security Response' update |
https://appleinsider.com/articles/22/11/16/ios-162-beta-gets-rapid-security-response-update?utm_medium=rss
|
iOS beta gets x Rapid Security Response x updateLate on Wednesday afternoon Apple issued a small Rapid Security Update to Tuesday s iOS beta ーbut what exactly it entails isn t known New beta of iOS There s not yet much known about the updates which is obviously a critical security fix of some sort The update is very small weighing in at less than MB Read more |
2022-11-16 21:56:33 |
Apple |
AppleInsider - Frontpage News |
Lowest price ever: $500 off 14-inch MacBook Pro 1TB, $70 off AppleCare |
https://appleinsider.com/articles/22/11/16/lowest-price-ever-500-off-14-inch-macbook-pro-1tb-70-off-applecare?utm_medium=rss
|
Lowest price ever off inch MacBook Pro TB off AppleCareThis early Black Friday deal offers the lowest price we ve seen on Apple s inch MacBook Pro with the upgraded M Pro core CPU core GPU chip and a TB SSD Plus save on three years of AppleCare Save on this TB MacBook Pro Exclusive savings Read more |
2022-11-16 21:23:03 |
海外TECH |
Engadget |
US safety watchdog warns against Onewheel boards after reported ejection injuries |
https://www.engadget.com/cpsc-onewheel-safety-warning-213555397.html?src=rss
|
US safety watchdog warns against Onewheel boards after reported ejection injuriesThe US Consumer Product Safety Commission CPSC really really doesn t want you using a Onewheel board The government watchdog has warned Americans against buying or using any of the self balancing skateboards ranging from the original through to newer models like the GT and Pint X The vehicles can forcefully eject riders the CPSC said The Commission added that here have been reports of at least four deaths and multiple serious injuries between and after the boards either stopped balancing properly or came to an abrupt stop Onewheel creator Future Motion has refused a recall and rejected the CPSC s stance The company believes the Commission s warning is unjustified and alarmist and that its boards are safe if they re used responsibly with appropriate safety equipment Board owners are adults who know that there s always a risk to any board sport or even riding a bike Future Motion argued To that end it noted that the CPSC itself prized safety education over warnings when snowboarding took off in the s The firm said it had studied boards affected by sudden stops and hadn t found any inherent technical problems Onewheels have lower serious injury rates than bikes ATVs and motorcycles Future Motion claimed It also accused the CPSC of preferring a sensational alert over cooperating on safety improvements This isn t the first time in recent memory that the CPSC has found itself at odds with a tech company over safety Peloton balked at a potential recall for its Tread treadmill after reports of injuries to children However the Onewheel action may be more serious than usual The Commission is warning against using Future Motion s entire product line and says it s still pursuing a recall ーthe company has no fallbacks if sales take a hit |
2022-11-16 21:35:55 |
海外TECH |
Engadget |
Twitter seems to be working on end-to-end encryption for DMs again |
https://www.engadget.com/twitter-end-to-end-encryption-direct-messages-210221765.html?src=rss
|
Twitter seems to be working on end to end encryption for DMs againThings aren t exactly going smoothly at Twitter under Elon Musk s chaotic stewardship to put it mildly But although reports suggest that engineers have been prohibited from deploying non critical features and products the company is working on a few updates One of those is an attempt to salvage the Twitter Blue verification catastrophe Another project that appears to be in the works is end to end encryption EEE for direct messages As spotted by researcher Jane Manchun Wong Twitter s Android app includes code indicating that EEE is on the way for DMs Musk added fuel to the fire by replying to Wong s tweet with a winking emoji ーa strong indicator that EEE is indeed in development for direct messages We ve contacted Twitter for confirmation but Musk has dismantled the communications team ーElon Musk elonmusk November Soon after Musk made a formal offer to buy Twitter in April he wrote that Twitter DMs should have end to end encryption like Signal so no one can spy on or hack your messages so EEE is clearly a subject that s of interest to him This wouldn t be the first time that Twitter has looked into EEE for direct messages either The company tested encrypted messaging in but that version of the feature never saw the light of day |
2022-11-16 21:02:21 |
海外科学 |
NYT > Science |
Highlights From NASA’s Artemis Moon Rocket Launch |
https://www.nytimes.com/live/2022/11/15/science/nasa-artemis-moon-launch
|
Highlights From NASA s Artemis Moon Rocket LaunchThe uncrewed mission overcame scrubbed launches hurricanes and late launchpad drama to kick off a key test of America s ability to send astronauts back to the moon |
2022-11-16 21:25:14 |
ニュース |
BBC News - Home |
Ukraine war: Nato says Poland probably hit by Ukrainian missile |
https://www.bbc.co.uk/news/world-europe-63656664?at_medium=RSS&at_campaign=KARANGA
|
defences |
2022-11-16 21:20:30 |
ニュース |
BBC News - Home |
Prince William asked who is his winning World Cup team |
https://www.bbc.co.uk/news/uk-wales-63656908?at_medium=RSS&at_campaign=KARANGA
|
qatar |
2022-11-16 21:33:37 |
ニュース |
BBC News - Home |
100,000 birds culled after farm avian flu outbreaks |
https://www.bbc.co.uk/news/uk-scotland-63652849?at_medium=RSS&at_campaign=KARANGA
|
aberdeenshire |
2022-11-16 21:46:36 |
ニュース |
BBC News - Home |
Plastic Pollution: Waste from across world found on remote British Island |
https://www.bbc.co.uk/news/science-environment-63484729?at_medium=RSS&at_campaign=KARANGA
|
ascension |
2022-11-16 21:11:44 |
ニュース |
BBC News - Home |
Cristiano Ronaldo: Manchester United forward says he was close to joining rivals City |
https://www.bbc.co.uk/sport/football/63656472?at_medium=RSS&at_campaign=KARANGA
|
Cristiano Ronaldo Manchester United forward says he was close to joining rivals CityCristiano Ronaldo says he was close to joining Manchester City before following his heart by re joining Manchester United |
2022-11-16 21:48:54 |
ビジネス |
ダイヤモンド・オンライン - 新着記事 |
アマゾン、約1万人の人員削減を発表 コスト見直しの一環 - WSJ発 |
https://diamond.jp/articles/-/313063
|
人員削減 |
2022-11-17 06:24:00 |
ビジネス |
東洋経済オンライン |
窮地の岸田首相、政権維持へ表沙汰にできない秘策 閣僚辞任ドミノで支持率落ちても強気なワケ | 国内政治 | 東洋経済オンライン |
https://toyokeizai.net/articles/-/633396?utm_source=rss&utm_medium=http&utm_campaign=link_back
|
国内政治 |
2022-11-17 06:40:00 |
コメント
コメントを投稿