投稿時間:2022-11-23 07:20:15 RSSフィード2022-11-23 07:00 分まとめ(21件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT ITmedia 総合記事一覧 [ITmedia ビジネスオンライン] ビジネスチャットのスタンプ、40代が最も使わず 理由は? https://www.itmedia.co.jp/business/articles/2211/21/news073.html itmedia 2022-11-23 06:30:00
IT ITmedia 総合記事一覧 [ITmedia ビジネスオンライン] 岩手県の「住み続けたい街」ランキング 2位「盛岡市」を抑えた1位は? https://www.itmedia.co.jp/business/articles/2211/23/news028.html itmedia 2022-11-23 06:10:00
IT ビジネス+IT 最新ニュース 【単独】ひろゆき、DJ社長、青汁王子に聞く、BreakingDownが「バズ」を生む納得の理由 https://www.sbbit.jp/article/cont1/99235?ref=rss 【単独】ひろゆき、DJ社長、青汁王子に聞く、BreakingDownが「バズ」を生む納得の理由分間最強を決める、総合格闘技エンターテインメントBreakingDownが、年月日に開催された。 2022-11-23 06:40:00
AWS AWS Partner Network (APN) Blog How to Connect ThoughtSpot to Amazon Redshift Serverless https://aws.amazon.com/blogs/apn/how-to-connect-thoughtspot-to-amazon-redshift-serverless/ How to Connect ThoughtSpot to Amazon Redshift ServerlessOnce data is available in Amazon Redshift Serverless businesses typically look at ways to turn data into business insights This is where modern analytics providers such as ThoughtSpot provide value With its powerful AI based search live visualizations and developer tools and APIs for sharing embedded analytics ThoughtSpot democratizes access to data by providing self service tools for all users Learn how to create a connection between Amazon Redshift Serverless and ThoughtSpot 2022-11-22 21:48:36
AWS AWS Machine Learning Blog Identifying landmarks with Amazon Rekognition Custom Labels https://aws.amazon.com/blogs/machine-learning/identifying-landmarks-with-amazon-rekognition-custom-labels/ Identifying landmarks with Amazon Rekognition Custom LabelsAmazon Rekognition is a computer vision service that makes it simple to add image and video analysis to your applications using proven highly scalable deep learning technology that does not require machine learning ML expertise With Amazon Rekognition you can identify objects people text scenes and activities in images and videos and detect inappropriate content … 2022-11-22 21:04:46
AWS AWS for SAP How to connect SAP BTP Services with AWS Services using SAP Private Link Service https://aws.amazon.com/blogs/awsforsap/how-to-connect-sap-btp-services-with-aws-services-using-sap-private-link-service/ How to connect SAP BTP Services with AWS Services using SAP Private Link ServiceCustomers like Zalando Payments GmbH ZPS Georgia Pacific and HPE are using SAP Business Technology Platform BTP and AWS services to extend SAP applications such as S HANA and to develop new functionality and applications There are BTP services globally available on AWS more than on any other cloud provider AWS has significantly more services … 2022-11-22 21:15:58
AWS AWS Security Blog AWS Security Profile: Sarah Currey, Delivery Practice Manager https://aws.amazon.com/blogs/security/aws-security-profile-sarah-currey-delivery-practice-manager/ AWS Security Profile Sarah Currey Delivery Practice ManagerIn the weeks leading up to AWS re invent I ll share conversations I ve had with some of the humans who work in AWS Security who will be presenting at the conference and get a sneak peek at their work and sessions In this profile I interviewed Sarah Currey Delivery Practice Manager in World Wide Professional … 2022-11-22 21:19:22
AWS AWS Security Blog AWS Security Profile: Sarah Currey, Delivery Practice Manager https://aws.amazon.com/blogs/security/aws-security-profile-sarah-currey-delivery-practice-manager/ AWS Security Profile Sarah Currey Delivery Practice ManagerIn the weeks leading up to AWS re invent I ll share conversations I ve had with some of the humans who work in AWS Security who will be presenting at the conference and get a sneak peek at their work and sessions In this profile I interviewed Sarah Currey Delivery Practice Manager in World Wide Professional … 2022-11-22 21:19:22
海外TECH MakeUseOf How to Change Your Xbox Gamertag https://www.makeuseof.com/tag/change-xbox-live-gamertag/ gamertagneed 2022-11-22 21:01:14
海外TECH DEV Community What's so cool about Fig Autocomplete? 💭 https://dev.to/saminarp/whats-so-cool-about-fig-autocomplete-2j1f What x s so cool about Fig Autocomplete The Perfect Trio ³It was around am when two of my classmates Batu TD and I were online sharing our screens and helping each other out with an open source project We were scanning the documentation as we kept working cautiously coding away to maintain proper style and clean code We each picked an issue to work on and reviewed each other s codes at the end to squash any bugs ahead of time before making the pull requests The three of us decided to work on Fig a tool that provides IDE style autocomplete but for the terminal As developers we all know how important the terminal is We thought this would be a cool project to contribute to since we use this tool daily What s So Cool About Fig Autocomplete As written in their README Fig makes the command line easier for individuals and more collaborative for teams Our most popular product is Autocomplete As you type Fig pops up subcommands options and contextually relevant arguments in your existing terminal Look how beautifully it gives suggestions To install Fig brew install fig I use Fig every day The Fig autocomplete repo had clear documentation and a lot of activity going on Plus it was written in Typescript a language I have experience with The development environment setup took only a few minutes again thanks to the clear documentation I scanned the list of issues and found an interesting one Issue hyperfine missing spec What s HyperfineHyperfine is a command line benchmarking tool with the following features as written in their README md Features Statistical analysis across multiple runs Support for arbitrary shell commands Constant feedback about the benchmark progress and current estimates Warmup runs can be executed before the actual benchmark Cache clearing commands can be set up before each timing run Statistical outlier detection to detect interference from other programs and caching effects Export results to various formats CSV JSON Markdown AsciiDoc Parameterized benchmarks e g vary the number of threads Cross platformTo install hyperfine I did brew install hyperfineSo let s say I type hyperfine ls This shows how much time it takes the ls command to run on my computer Below you see the screenshot of the command run on a Intel MacBook inch model with GB RAM And this one was done on my GB M iMac Honestly this was fun for me to watch the performance metrics I then followed the documentation and played around with a few other commands across all my machines What Are Completion SpecsFor this issue I had to write a completion spec for hyperfine Completion specs are A completion spec is a declarative schema that specifies the subcommands  options and args for a CLI tool Fig uses these schemas to generate suggestions As mentioned in the issue above the hyperfine completion spec was missing I had to read through the documentation very carefully and study the manual of hyperfine to figure out how to get this working After typing in man hyperfine on my terminal to pull up the hyperfine manual I studied the long list of options and commands for the type of arguments I had to pass in Then I started coding The file ended up being almost lines long but here is a small snippet of the code structure As I was doing the autocompletion spec I was testing the commands as well to make sure they were working as intended I also had two more pairs of eyes checking and testing my work before I made the pull request Measuring My Progress This was a much bigger pull request in an open source project compared to the ones I had done before I realized that previously I spent way too much time just setting up the development environment and it took time away from the actual coding part itself I was also working with unfamiliar languages so the scope and size of my contribution were small This time I decided to work on a bigger repo and write more lines of code So what are some of the things I did right this time compared to Hacktoberfest which was my very first plunge into the world of open source development I read the CONTRIBUTING md file and followed it I used proper commit messages as they specified as their guideline I used proper naming conventions I looked through their examples of completion specs to make them consistent with others I squashed and rebased my commits I was more professional in my communication while making the pull request I collaborated with others working on this repo so that we can speed up the process and help each other out I did a lot more research on the topics in this case hyperfine and completion specs before writing code Note I received some feedback from the maintainers to make some minor changes and I am currently working on fixing them Well it is quite evident that as a beginner I learned a LOT of things contributing to open source projects and I continue to learn something new each day 2022-11-22 21:25:44
海外TECH DEV Community #gitPanic - Removing and Restoring Work https://dev.to/abbeyperini/gitpanic-removing-and-restoring-work-ioi gitPanic Removing and Restoring WorkWhen you think you ve lost work don t gitPanic As far as your commit history goes git may as well be Ironborn repeating what is dead may never die This blog assumes you have an intermediate understanding of git or have read Git Merging and Rebasing HEAD and Interactive Rebase Discard ChangesReflogRefs AgainResetRevert Discard ChangesIf you haven t committed yet there are a few ways to wipe all your local changes and start again with a blank working directory If at any time you want to see what local changes are staged or unstaged you can rungit statusNote effectively git doesn t save your changes until they re in a commit If you discard your local changes in your working directory and undo cmd ctrl z doesn t work you ll have to follow instructions for recovering deleted files based on your OS Mac Windows Linux If you really want to start over there s always deleting the branch and fetching the remote Don t forget stashing Stashing has an option for untracked changes but what if you want to delete them not keep them Rungit clean nand thengit clean fWithout configuring anything you can t use git clean without passing an option because it can be just as dangerous as sudo rm rf The n option will show you what running git clean f will do The f stands for force and will do it There are more options for things like deleting directories deleting ignored files and use the interactive mode Next there sgit restore This command restores all tracked files in your working directory You can restore by one or more file names like git restore index html app js Like stashing you can restore parts of files using the patch option What git restore is really doing is checking out a previous version In other words git restore is the same as saying git checkout HEAD or restore the HEAD The only time git restore doesn t act like a checkout is when you rungit restore stagedYou won t lose your changes Any staged changes in the index will move to unstaged in the working directory Say you realized you don t even want the changes from the last commit you have in index html in your local branch You can pass a ref and restore an earlier commit likegit restore source abf index htmlI ve talked about HEAD and passed a SHA here but that s just the tip of the ref iceberg Before I talk about discarding changes with reset let s dig into the reflog and refs ReflogI touched on git log git show and git diff in Interactive Rebase but reflog is even more powerful When you run git reflog you re asking git to show you the log of refs it keeps in git logs refs Like refs this directory has information about head logs in git logs refs heads the HEAD log in git logs HEAD stash in git logs refs stash and so on Running git reflog is the same as git reflog show HEAD This will give you a list of all the commits in the branch you re in with a short SHA reflog shortname and commit message In fact git reflog show is an alias for git log g abbrev commit pretty oneline In other words git reflog is a formatted version of git log with one key difference The g option tells git log to show the reflog and not the log The reflog is on your local machine and private The log is pushed to the remote and public This means interactive rebase will overwrite the log but not the reflog Because the reflog will only be lost after months or by running git reflog expire or git reflog delete you can always rely on the reflog to keep a secret record of your recent commits If you pass a ref to reflog you can see other branches or commits that aren t HEAD The next section will cover reflog shortnames and all the possible refs I could find If you re just interested in how to use what reflog prints out to get back lost work skip ahead to Reset Refs AgainI covered reflog shortnames as they apply to the stash in gitPanic stash They work the same when you apply them to HEAD or a branch name because any reflog including the stash is basically an array of logs of refs The reflog shortname main refers to the head of main and main refers to the second latest commit on main Meanwhile HEAD and HEAD would show you the commit you have checked out This is also known as git ref pointer syntax and the index of the commit in the reflog file is not the only thing you can pass Using time qualifiers you can get all the commits on the main branch from the last week like main week ago You can also pass a timestamp if you want to get really specific I covered short SHAs long SHAs tags branch names head and HEAD in gitPanic HEAD HEAD is one of the special refs In that same blog I also touched on ancestry relative references with carets like HEAD They re called ancestry or relative references because they re referring to commits based on their relation to other commits You can use any commit ref instead of HEAD You can also use ancestry references with tildes like HEAD So if you have commits on a branch the latest being HEAD you can access the oldest or grandparent commit using HEAD You don t have to use numbers you can keep adding carets or tildes like HEAD or HEAD Both HEAD and HEAD are the same when dealing with commits that only have one parent When you have a merge commit that commit has two parents and HEAD is the ancestry reference that is built to handle that You can even combine the carets and tildes Let s say I merged two branches together and committed twice after that If I wanted to access the first parent or most recently committed parent of the merge commit I d use HEAD But wait There s more You can pass refs to commit ranges refspecs connect your local to your remote and sometimes git will run the garbage collector and create packed refs to save space for you Now that we know how to refer to just about anything in git how do we use that to remove and restore work ResetLike interactive rebase reset rewrites the commit history For this reason only use it locally or in your own branch Where git checkout changes what the HEAD ref is pointing to reset changes the branch head ref and points HEAD at it Checking out a branch will not rewrite the commit history just move HEAD Reset will rewrite the commit history move HEAD and make a new reset commit There are three reset tiers soft mixed and hard Runninggit reset soft HEADwill only update the refs to the commit before HEAD Your staged changes index and unstaged changes working directory will remain the same Runninggit reset HEADis the same as runninggit reset mixed HEADThe mixed option will update the refs and your staged changes to match the passed commit It also puts everything from the commits that came after it into your working directory You still have your changes you had committed you d just have to commit them again You can use this to squash commits similar to interactive rebase If my last two commit messages are whoops and fix I could run git reset mixed HEAD and recommit all the changes with a more meaningful commit message Runninggit reset hard HEADdoes everything the previous tiers do and resets the working directory to the commit you passed By running git reset hard HEAD you ve deleted the last commit on the branch and discarded all your changes If you only wanted to discard your changes you would rungit reset hardwhich is the same as runninggit reset hard HEADLike using git restore staged you can unstage changes with git reset You can also unstage changes by file like git reset fileName js Like stash there s an interactive option patch which will take you through the changes hunk by hunk No matter what option you use the commits that you remove with reset still exist in the reflog They re just no longer in the commit history in your repository In other words they re orphaned This means we can also use reset to put commits back in our commit history If I run git reset hard HEADand regret it I can recover First by runninggit reflogwhich will have a record of my new reset commit and will still have my orphaned commit Runninggit reset hard lt orphaned commit ref gt will put us right back where we started You could even start a new branch instead like when you ve detached the HEAD Just rungit branch lt branch name gt lt orphaned commit ref gt RevertRevert is designed to safely remove changes in the remote It doesn t rewrite the commit history When you pass a ref to git reset you re telling it the last commit you want to keep In contrast you pass the ref of the commit you want to get rid of to revert Revert will not run without a ref When you rungit revert abcgit looks at the changes in commit abc and inverts them Running git revert HEAD is effectively the same as git reset HEAD Instead of orphaning a commit revert creates a new commit similar to a merge commit but negating changes instead of combining them In fact git will open an edit window and prompt you to enter a new commit message explaining your revert Reset just automatically commits a message saying it rewrote the commit history You can create your own new commit manually by passing no commit Your index and working directory will be populated with the inverse changes required to revert that commit This way your work and the record of it in the commit history is definitely never lost You could endlessly revert and re revert and you d have a full record of doing so ConclusionMay this knowledge allow you to make all the git mistakes you want content that the reflog has got your back 2022-11-22 21:20:21
海外TECH Engadget Mozilla bundles its VPN and email relay services for $7 per month https://www.engadget.com/mozilla-vpn-firefox-relay-bundle-subscription-211146697.html?src=rss Mozilla bundles its VPN and email relay services for per monthMozilla s privacy services might be more compelling if you were previously on the fence The company now offers its virtual private network VPN and Firefox Relay Premium together in a per month bundle when you pay for an annual subscription Given that the VPN normally costs per month on a similar yearly basis by itself this may be a solid choice if you want more than the fundamentals The VPN secures traffic for up to five devices with servers in over countries no logging and perks like multi hop access that uses more than one server to further protect your connection However Firefox Relay may be more intriguing You get both email aliases to hide your real accounts as well as phone number masking to prevent your digits reaching spammers and hackers You might not worry so much that signing up for a service will eventually lead to a privacy breach Firefox Relay isn t necessarily for everyone Email sizes are still capped at MB and you ll want a Chrome extension if you aren t using the Firefox browser We d add that some privacy services may represent better values depending on what you re looking for Apple offers email aliases and connection relays if you re part of its ecosystem while Google bundles its VPN with cloud storage and other perks At this price though Mozilla s services may well be viable if you re looking to remain more platform independent 2022-11-22 21:11:46
海外ニュース Japan Times latest articles Saudi Arabia celebrates shock defeat of favorites Argentina in World Cup https://www.japantimes.co.jp/sports/2022/11/23/soccer/world-cup/saudi-arabia-defeats-argentina/ match 2022-11-23 06:25:19
ニュース BBC News - Home Manchester United: Glazer family owners look to sell all or part of Premier League club https://www.bbc.co.uk/sport/football/63723992?at_medium=RSS&at_campaign=KARANGA Manchester United Glazer family owners look to sell all or part of Premier League clubManchester United s American owners say they will explore strategic alternatives for the club including new investment a sale or other transactions 2022-11-22 21:58:28
ニュース BBC News - Home Trump taxes: Supreme Court clears Democrats to see returns https://www.bbc.co.uk/news/world-us-canada-63724223?at_medium=RSS&at_campaign=KARANGA financial 2022-11-22 21:19:50
ニュース BBC News - Home Ukraine monastery raid as SBU targets Russian agents https://www.bbc.co.uk/news/world-europe-63715922?at_medium=RSS&at_campaign=KARANGA intelligence 2022-11-22 21:19:53
ニュース BBC News - Home King Charles welcomes South Africa's Cyril Ramaphosa - in pictures https://www.bbc.co.uk/news/in-pictures-63714611?at_medium=RSS&at_campaign=KARANGA state 2022-11-22 21:13:30
ニュース BBC News - Home World Cup 2022: France 4-1 Australia - holders cruise to opening Group D win https://www.bbc.co.uk/sport/football/63631781?at_medium=RSS&at_campaign=KARANGA World Cup France Australia holders cruise to opening Group D winOlivier Giroud equals Thierry Henry s all time scoring record for France as the holders start the defence of their World Cup crown with an emphatic win over Australia 2022-11-22 21:30:32
ニュース BBC News - Home World Cup: Kylian Mbappe and Olivier Giroud fire France to 4-1 win against Australia - highlights https://www.bbc.co.uk/sport/av/football/63670510?at_medium=RSS&at_campaign=KARANGA World Cup Kylian Mbappe and Olivier Giroud fire France to win against Australia highlightsWatch highlights as Kylian Mbappe and Olivier Giroud star in a thrilling victory for France against Australia in their opening Group D match at the World Cup 2022-11-22 21:10:32
ニュース BBC News - Home World Cup 2022: Kylian Mbappe - Alan Shearer, Didier Drogba & Vincent Kompany analysis https://www.bbc.co.uk/sport/av/football/63724322?at_medium=RSS&at_campaign=KARANGA World Cup Kylian Mbappe Alan Shearer Didier Drogba amp Vincent Kompany analysisBBC Sport s Gary Lineker Alan Shearer Didier Drogba and Vincent Kompany discuss Kylian Mbappe s brilliant performance against Australia and ask if there is any way defenders can stop the greatest player on the planet 2022-11-22 21:39:48
ビジネス 東洋経済オンライン 常に結果を出すトップ営業は逆境にへこたれない 有力5社エースに見た、社内論理に流されない精神 | 「若き老害」常見陽平が行く サラリーマン今さら解体新書 | 東洋経済オンライン https://toyokeizai.net/articles/-/633867?utm_source=rss&utm_medium=http&utm_campaign=link_back 常見陽平 2022-11-23 06:30: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件)