投稿時間:2022-02-25 02:18:50 RSSフィード2022-02-25 02:00 分まとめ(24件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
Linux Ubuntuタグが付けられた新着投稿 - Qiita windowsにubuntuの仮想環境を作ってみた https://qiita.com/OSISOMIRU/items/70ac36c2ba6b297872e1 windowsにubuntuの仮想環境を作ってみたまず仮想環境を作るソフトVirtualBoxをダウンロードしてインストールするVirtualBoxとはアメリカのオラクルという会社の仮想環境をつくることができるフリーソフト。 2022-02-25 01:03:55
golang Goタグが付けられた新着投稿 - Qiita Goの日時フォーマットあれこれ https://qiita.com/elfincafe/items/d6293f123ba39bb5f9ec 先頭は埋め日の場合fmtPrintlntimeNowFormatfmtPrintlntimeNowFormatfmtPrintlntimeNowFormat曜日文字解説出力例Mon省略した曜日名MonTueSatSunMondayフルテキストの曜日名MondayTuesdaySaturdaySunday年月日火の場合fmtPrintlntimeNowFormatMonTuefmtPrintlntimeNowFormatMondayTuesday日数文字解説出力例元日からの日数。 2022-02-25 01:15:03
GCP gcpタグが付けられた新着投稿 - Qiita Google cloud クライアントライブラリでやりがちなサービスアカウントの認証エラー https://qiita.com/mtriplecrown6/items/3a16cd2e9171944809f1 Googlecloudクライアントライブラリでやりがちなサービスアカウントの認証エラーCloudstorageやBigqueryをpythonなどから操作するクライアントライブラリを使用する時に、下記のようなエラーに遭遇しました。 2022-02-25 01:10:23
海外TECH Ars Technica USPS sticks with decision to buy inefficient 8.6 mpg trucks https://arstechnica.com/?p=1836404 house 2022-02-24 16:36:33
海外TECH MakeUseOf How to Fix a Grayed-Out "Pause Windows Updates" Option in Windows 11 and 10 https://www.makeuseof.com/windows-11-10-fix-greyed-out-windows-updates-pause/ windows 2022-02-24 16:45:13
海外TECH MakeUseOf Audible Plus vs. Premium Plus: Which Subscription Is Right for You? https://www.makeuseof.com/audible-plus-vs-premium-plus-subscription-plans/ Audible Plus vs Premium Plus Which Subscription Is Right for You There are two Audible subscription to choose from but which is better Read on to discover the differences between Audible Plus and Premium Plus 2022-02-24 16:30:13
海外TECH MakeUseOf Microsoft Says You Should Avoid These 25 Group Policies in Windows 10 and 11 https://www.makeuseof.com/windows-10-11-avoid-group-policies/ Microsoft Says You Should Avoid These Group Policies in Windows and There are some old group policies you can safely disable in Windows So safely in fact that Microsoft itself recommends that you do so 2022-02-24 16:15:13
海外TECH DEV Community How to fetch a contribution branch to test it locally as an open-source maintainer https://dev.to/adiatiayu/how-to-fetch-a-contribution-branch-to-test-it-locally-as-an-open-source-maintainer-hgf How to fetch a contribution branch to test it locally as an open source maintainerHello Fellow CodeNewbies In my last post we were talking about how to fetch a branch from upstream repo as a contributor and test it locally And in this post let s change the role If we were a maintainer of a repo we would want to test the changes locally and see if things work as expected Otherwise we can encounter problems when we merge a contribution without testing it How can we do so I will walk you through the steps below Fetch a contribution branch Add a remote repo for the forked repoFirst of all we need to add the contributor s forked repo as our remote repo git remote add lt remote name gt lt fork repo url gt We can name the lt remote name gt anything we want I find it clearer for me to name this remote with the contributor s name or their GitHub username As an example git remote add ayu lt fork repo url gt Go to the contributor s fork repo on GitHub to copy their repo URL and paste it to replace the lt fork repo url gt part Check if the remote repo has been added Run this command to check our remote repos git remote vIf the remote repo has been added we should see origin lt original repo url gt fetch origin lt original repo url gt push ayu lt fork repo url gt fetch ayu lt fork repo url gt push Fetch the forked repo to our localRun this command to fetch the repo git fetch lt remote name gt So in our case git fetch ayuNow the contents of the repo including the targeted branch are fetched We will see something like this on our command line new branch main gt ayu main new branch some branch gt ayu some branch new branch target branch gt ayu target branchBut wait There are two branches there How do we know which branch is pushed by the contributor to the repo and is asked for a merge How to find out the pushed branchFrom the origin repo on GitHub navigate to the Pull requests tab Click on the contributor s pull request Under the title of the pull request next to the green Open button we will see ayu wants to merge X commits into main from target branchFrom here we know that the branch that we want to navigate to is the target branch Navigate to the branchRun this command git checkout lt branch name gt In this example it would be git checkout target branchWe now can test out the changes from the contributor locally Thank you for reading Last but not least you can find me on Twitter Let s connect 2022-02-24 16:26:30
海外TECH DEV Community New tsParticles Confetti website is now live https://dev.to/matteobruni/new-tsparticles-confetti-website-is-now-live-pej New tsParticles Confetti website is now liveToday the new tsParticles Confetti website was approved by the maintainers The content of this new website will be more focused on confetti animations instead of all kind of particles There are few samples actually but more will be available in the next days If someone wants to be creative helping with the website any kind of help is welcome and appreciated The website is open source like any other tsParticles project and the repository is linked below The new website is matteobruni confetti tsParticles Easily create highly customizable particles confetti and fireworks animations and use them as animated backgrounds for your website Ready to use components available for React js Vue js x and x Angular Svelte jQuery Preact Inferno Solid Riot and Web Components confettitsParticles confetti webpage View on GitHubAny useful feedback is appreciated it s something created in few hours I know it needs more work 2022-02-24 16:23:40
海外TECH DEV Community Creating a TRX File from an API for Azure DevOps CI/CD Pipeline Integration https://dev.to/robmulpeter/creating-a-trx-file-from-an-api-for-azure-devops-pipeline-integration-2io5 Creating a TRX File from an API for Azure DevOps CI CD Pipeline IntegrationThe purpose of this article is to provide you with an example of a TRX file structure and how our team took a TRX formatted string response from a web service and injected it into our CI CD pipeline on Azure DevOps This web service is called Palladium and is an open source solution for executing asynchronous long running tests in Orleans and produces TRX results via a HTTP web API endpoint A TRX File Rawr A TRX file or T REX file as I like to pronounce it is a test result file created typically by Visual Studio when outputting the results of unit tests It has a trx file extension and is formatted the same as xml It can be viewed and edited in most text editors or IDE s such Visual Studio or Jetbrains Rider The Belly of the Beast Below is an example of the TRX output from Palladium AsynchronousTests We made some slight alterations from the default file structure to better serve our needs For example we removed the deployment node from TestSettings and made it self closing We also did away with the contents of the Output node lt xml version encoding UTF gt lt TestRun xmlns id aee fe fd bc cefbccdb name edf bd b a cfae gt lt Times creation T Z queueing T Z start T Z finish T Z gt lt TestSettings id fe c bb b name bcc b a bf bcca gt lt Results gt lt UnitTestResult executionId bb ed ec e aac testId abd ab e b a testName Test computerName f e e c bfeb duration startTime T Z endTime T Z testType cdcd ddb fa ad dccfcdb outcome Passed testListId ccdb ada ade b eddad relativeResultsDirectory bb ed ec e aac gt lt UnitTestResult executionId af b bf f bfb testId ece de dff b dceeb testName Test computerName f e e c bfeb duration startTime T Z endTime T Z testType cdcd ddb fa ad dccfcdb outcome Passed testListId ccdb ada ade b eddad relativeResultsDirectory af b bf f bfb gt lt UnitTestResult executionId fbcb ad d f fd testId eedb b ada f fe testName Test computerName f e e c bfeb duration startTime T Z endTime T Z testType cdcd ddb fa ad dccfcdb outcome Passed testListId ccdb ada ade b eddad relativeResultsDirectory fbcb ad d f fd gt lt Results gt lt TestDefinitions gt lt UnitTest id abd ab e b a name Test storage AsynchronousTests dll gt lt Execution id bb ed ec e aac gt lt TestMethod codeBase AsynchronousTests dll className Grains AsynchronousTests name Test adapterTypeName orleans gt lt UnitTest gt lt UnitTest id ece de dff b dceeb name Test storage AsynchronousTests dll gt lt Execution id af b bf f bfb gt lt TestMethod codeBase AsynchronousTests dll className Grains AsynchronousTests name Test adapterTypeName orleans gt lt UnitTest gt lt UnitTest id eedb b ada f fe name Test storage AsynchronousTests dll gt lt Execution id fbcb ad d f fd gt lt TestMethod codeBase AsynchronousTests dll className Grains AsynchronousTests name Test adapterTypeName orleans gt lt UnitTest gt lt TestDefinitions gt lt TestEntries gt lt TestEntry testId abd ab e b a executionId bb ed ec e aac testListId ccdb ada ade b eddad gt lt TestEntry testId ece de dff b dceeb executionId af b bf f bfb testListId ccdb ada ade b eddad gt lt TestEntry testId eedb b ada f fe executionId fbcb ad d f fd testListId ccdb ada ade b eddad gt lt TestEntries gt lt TestLists gt lt TestList id ccdb ada ade b eddad name All Loaded Results gt lt TestLists gt lt ResultSummary outcome Complete gt lt Counters total executed passed failed error timeout aborted inconclusive passedButRunAborted notRunnable notExecuted disconnected warning completed inProgress pending gt lt Output StdOut gt lt ResultSummary gt lt TestRun gt VSTS Integration Below is an extract of two steps from our CI CD pipeline which occur after our application deployment to a particular environment We first used the Bash task to call an internally hosted instance of the Palladium solution and save the resulting string as a trx file in the DefaultWorkingDirectory of the VSTS server We then configured a PublishTestResult task to VSTest and searched explicitly for the palladium output trx file in the working directory This step publishes the contents of the TRX file to the UI on the Azure pipeline build task Bash displayName Calling Palladium API Tests inputs targetType inline script curl s m PALLADIUM API o palladium output trx task PublishTestResults displayName Printing Test Result File inputs testResultsFormat VSTest testResultsFiles palladium output trx searchFolder System DefaultWorkingDirectory testRunTitle Test Palladium TRX publishRunAttachments true failTaskOnFailedTests trueThe PALLADIUM API environment variable holds our URL to the test result endpoint of our Palladium instance ConclusionThe reason for the above implementation is because we as a team wanted to abstract out our unit tests into an independent API solution to call our various environments If you decide to implement a similar design you can integrate it into your CI CD with the above solution Co Author Piotr Justyna 2022-02-24 16:11:04
海外TECH DEV Community Allow User Registration on Your WordPress https://dev.to/elinabey/allow-user-registration-on-your-wordpress-i9h Allow User Registration on Your WordPressThere are many reasons why you should enable user registration in WordPress For example if you have a need for guest blogging allowing your guest bloggers to register to your website and assigning them a Contributor role can really make things more efficient for you In this way when they re done with their post they can simply submit it for a review and you get to decide what to do with the post from there User registration can also be of excellent use in case you want to create certain areas of your website that only registered users can access or if you want to provide them with an exclusive offer like limited deals for example Finally allowing users to register to your site can help you a great deal when it comes to your marketing strategy since this way you can easily reach all your registered users via email In other words you can effectively inform them about any news related to your brand if you want to promote a new service or product and so on Enabling WordPress User Registration in the General SettingsBefore you can do anything else you have to allow user registrations at your website first This setting is actually turned off by default which is why you need to go to Settings gt gt General in your WordPress admin to switch it on Find the “Anyone can register box next to the “Membership option and mark it Then you should pick the user role that you wish to set as default Keep in mind that whichever role you pick it will be automatically assigned to new users that register on your site Also make sure to never assign the Administrator role for registered users Finally once you assign your default role to users you should click on Save Changes for the settings to take effect Want to learn in detail visit there official website How to Allow User Registration on Your WordPressI hope you like this post and now you are able to get registration from the visitors easily 2022-02-24 16:07:26
Apple AppleInsider - Frontpage News Apple highlights Poppy Seed Health app for pregnancy care https://appleinsider.com/articles/22/02/24/apple-highlights-poppy-seed-health-app-for-pregnancy-care?utm_medium=rss Apple highlights Poppy Seed Health app for pregnancy careApple has celebrated the impact of the Poppy Seed Health advocacy app in the App Store and how it has helped people with pregnancy and postpartum care Poppy Seed Health founder Simmone Taitt has told Apple how her need for information following her own first pregnancy loss led to the app I was in my doctor s office and we couldn t find a heartbeat Taitt said to Apple I left that appointment with no medical emotional or mental health support I was just spinning for information So I went to the internet Read more 2022-02-24 16:30:18
海外科学 NYT > Science Using Science and Celtic Wisdom to Save Trees (and Souls) https://www.nytimes.com/2022/02/24/climate/celtic-wisdom-trees-climate.html Using Science and Celtic Wisdom to Save Trees and Souls Diana Beresford Kroeger a botanist and author has created a forest with tree species handpicked for their ability to withstand a warming planet 2022-02-24 16:31:15
ニュース BBC News - Home UK will not look away from Russia invasion in Ukraine - PM https://www.bbc.co.uk/news/uk-60508671?at_medium=RSS&at_campaign=KARANGA ukraine 2022-02-24 16:55:35
ニュース BBC News - Home Oil hits seven-year high and shares sink as Russia invades Ukraine https://www.bbc.co.uk/news/business-60502451?at_medium=RSS&at_campaign=KARANGA crude 2022-02-24 16:04:27
ニュース BBC News - Home Roman Abramovich: Labour MP urges government to seize Russian billionaire's assets https://www.bbc.co.uk/news/uk-politics-60506563?at_medium=RSS&at_campaign=KARANGA football 2022-02-24 16:17:22
ニュース BBC News - Home PC Adam Zaman: Met officer accused of rape has case dismissed https://www.bbc.co.uk/news/uk-england-london-60513766?at_medium=RSS&at_campaign=KARANGA dismissedpc 2022-02-24 16:25:03
ニュース BBC News - Home Blackpool mother jailed for starving daughter to death https://www.bbc.co.uk/news/uk-england-lancashire-60507814?at_medium=RSS&at_campaign=KARANGA emaciation 2022-02-24 16:22:25
ニュース BBC News - Home Ukraine: What sanctions are being imposed on Russia? https://www.bbc.co.uk/news/world-europe-60125659?at_medium=RSS&at_campaign=KARANGA ukraine 2022-02-24 16:39:43
ニュース BBC News - Home Ukraine crisis: Uefa to move Champions League final after Russian invasion https://www.bbc.co.uk/sport/football/60504979?at_medium=RSS&at_campaign=KARANGA emergency 2022-02-24 16:42:05
ニュース BBC News - Home Darge to make first Scotland start against France https://www.bbc.co.uk/sport/rugby-union/60509613?at_medium=RSS&at_campaign=KARANGA france 2022-02-24 16:02:31
ビジネス ダイヤモンド・オンライン - 新着記事 ロシアの関心、中国は支持 「侵攻」表現避ける - WSJ発 https://diamond.jp/articles/-/297361 関心 2022-02-25 01:22:00
北海道 北海道新聞 JR、除雪車不具合 発表も遅れ https://www.hokkaido-np.co.jp/article/649557/ 記者会見 2022-02-25 01:08:57
北海道 北海道新聞 老人ホームから出火 入居者2人軽傷 旭川 https://www.hokkaido-np.co.jp/article/649558/ 老人ホーム 2022-02-25 01:05:20

コメント

このブログの人気の投稿

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