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

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
AWS AWS Government, Education, and Nonprofits Blog How Digithurst and Telepaxx built a secure and scalable radiology solution chain using AWS https://aws.amazon.com/blogs/publicsector/digithurst-telepaxx-built-secure-scalable-radiology-solution-chain-aws/ How Digithurst and Telepaxx built a secure and scalable radiology solution chain using AWSMedical software development companies Digithurst and Telepaxx worked together to create an end to end cloud solution chain handling administration of patient data and their radiological scans viewing and editing of scans as well as long term archiving To develop a scalable secure and cost effective solution chain supporting further innovations the companies turned to the AWS Cloud 2023-01-19 19:35:20
海外TECH MakeUseOf How to Fix AnyDesk Not Working on Windows 11 https://www.makeuseof.com/anydesk-not-working-windows-11/ windows 2023-01-19 19:15:15
海外TECH DEV Community Your CI needs CI: A New Way to Build CI Pipelines https://dev.to/kpenfound/your-ci-needs-ci-a-new-way-to-build-ci-pipelines-2gbi Your CI needs CI A New Way to Build CI Pipelinesgit commit m fix ci If you ve ever made changes to a CI pipeline you ve probably committed a message like this many times The development process most likely looked something like make a few changes to some yamlpush those changes to a remote git branchwait for the CI platform to detect the changes and run the pipelinedetermine if your change was successful Repeat many times This process is painful There is a better way What if you had a CI for your CI For proper testing pipelines need to be executable independent of your CI platform Steps need to be executable in isolation Environments have to be strongly defined This is where the concept of pipelines as code comes to the rescue When you define pipelines with code you can test that code This post covers how you can build a CI for your CI without crazy amounts of toil What makes CI pipelines hard to build There are a variety of factors that make CI pipelines painful to build and maintain Proprietary yaml syntaxIn contrast to application development where you can compile your code on your workstation with CI pipelines you have to let the CI platform interpret the proprietary yaml configuration to even know if it s valid That s before it can perform the operations you re expecting Each CI platform has their own yaml syntax for defining CI pipelines Not only do you have to learn a new syntax for each platform that you use but you can t execute the configuration outside of each individual CI platform Yaml can get complicatedAs your pipeline grows more complex so does your yaml Your yaml is probably some mix of reusable platform specific utilities inline commands calls to bash scripts and calls to make targets With this complexity and mixed logic it can be hard to determine where certain operations are taking place and what the current state might be This leads to a lot of time figuring out how to fix your yaml or what s wrong with the yaml you wrote Your environment lives in CISteps within the pipeline typically depend on specific environment variables and secrets getting set by the CI platform This makes it rather difficult to reproduce many of these key steps outside of the CI platform Even if you re very strict about having each CI step map to a specific make target or bash script these tasks will all depend on the expected environment to be fully reproduced in order to properly test your pipeline How to build a maintainable CI pipeline with DaggerDagger is a free and open source programmable cross platform CI CD engine In short it s a tool for building pipelines as code With Dagger you build pipelines as code with a SDK in languages such as Go NodeJS and Python Cross platform means your pipelines can be executed in any CI environment including your local development machine These pipelines can be tested and more easily maintained using the language s native testing capabilities Dagger executes your pipelines entirely as standard OCI containers allowing you to build declarative environments for complete control on the pipeline execution context You can build a maintainable pipeline with Dagger by following the steps I cover in this section to build what we call “pipelines as code Pipelines as code are like infrastructure as code but decoupled from underlying tooling environment and YAML limitations In other words a CI for your CI With Dagger you can easily Create end to end testsTo test a pipeline end to end you need to be able to run the entire pipeline definition separate from its typical execution context inside your CI platform Dagger allows you to define pipelines in a platform agnostic way Control logic is tested independently of pipeline execution When you build pipelines as code with Dagger you can write tests for that specific control logic and have confidence in the proper logic for any given test scenario Test steps in isolationPipeline steps need to be discrete functions that can be tested without a pipeline execution When you build pipelines as code with Dagger you can build unit tests for individual steps to validate their functionality A step might be something like “build Unit tests should verify that the appropriate build flags are generated for a given set of inputs or that the resulting environment has the correct dependencies to run the build command Tests at this level allow you to make modifications to existing steps with the confidence that you re not breaking pipelines that use the step Build declarative environmentsEnvironments are typically hard to debug in a CI pipeline because you re relying on the CI platform to set secrets and environment variables and to install the appropriate dependencies which may not be the same as in your local environment When you use Dagger to build pipelines as code you explicitly declare the environment for every step and control how the environment gets built With declarative environments you no longer need to be concerned about potential differences between your local environment and the CI runner because you know exactly what the execution context will look like Conclusion Decoupling CI from complexity with DaggerIn the old world of CI making changes to CI pipelines is painful because CI specific yaml is inherently hard to test YAML complexity quickly gets out of control You have to write different YAML for each platform because YAML can only get executed within the specific CI platform it was written for This is why we built Dagger ーto create a new way of doing CI with pipelines as code When you write pipelines as code you re able to write tests for your pipelines and confidently maintain them without having to constantly go back and run the entire CI pipeline Dagger is a programmable open source cross platform CI CD engine which enables you to build pipelines as code with end to end tests isolated testing for steps and declarative environments In other words Dagger enables CI for your CI ーthe abstraction layer that lets you write pipelines once as code and run them anywhere without refactoring or customizing the pipelines to match the requirements of the CI environment We hope you will give Dagger a spin and tell us what you think 2023-01-19 19:42:27
海外TECH DEV Community Simpler CSS Selectors With :is() https://dev.to/builderio/simpler-css-selectors-with-is-58m2 Simpler CSS Selectors With is Simplifying redundant selectorsIf you ve got redundant CSS selectors like this active a active button active label color steelblue Did you know that you can rewrite it like this active is a button label color steelblue That s right the is psueo class is built into plain ole CSS now You can use is to group any part of a selector for instance you could similarly transform this section h aside h nav h color steelblue into just this is section aside nav h color steelblue But is is not just useful for parents and children it can also select multiple adjoining selectors as well like button is focus hover active color steelblue button is active pressed color lightsteelblue Which behave equivalent to button focus button hover button active color steelblue button active button pressed color lightsteelblue Comparison to where where is a very similar pseudo class to is and is worth being aware of as well They look very similar where section aside nav h color steelblue But the difference is that where has a specificity of whereas is always takes on the specificity of the most specific selector in the list So do you know what color the button will be in this CSS is html button color red where html button color blue In the above example although the block starting with where is below the block starting with is the is block has a higher specificity for the html tag for the button vs the block below it that has a lesser specificity for html because it is within where and for button Comparison to has A related but very different pseudo class is has has allows you to select a parent what contains a child matching a selector or set of selectors An example use case of has is to not underline links that contain an image or video a text decoration underline Links are underlined unless they contain an image or video a has img video text decoration none Now if by default our a tags have underlined text but we have an image or video inside one the underlining will be removed for any matching anchor elements You can also combine this with is is a button has img video text decoration none Note though that has is not yet supported in all major browsers https developer mozilla org en US docs Web CSS has browser compatibility so use with caution Do we still need preprocessors Now you may be reading this and saying “SCSS can do this and you may even prefer its syntax active button label a color steelblue And you would be right this is quite elegant But it seems like every day CSS natively gets features that we once needed SCSS or other preprocessors for CSS variables has also been another incredible addition to CSS itself that it begs the question when or how often you really need preprocessors anymore Plain ole modern CSS baby active is a button label color steelblue color var steelblue That s not to say preprocessors don t still have their use cases and merits But I think at one point in time they were truly mandatory for handling any non trivial CSS elegantly at least and now that s not as much the case anymore One last surprise…Just to leave things on a high note I want to point out that the future of CSS continues to look bright The CSS Working Group is actively working on adding nested selectors directly to CSS They are actively deciding between possible syntaxes known as options “ “ and “ Option article font family avenir amp aside font size rem Option article font family avenir aside font size rem Option nest article amp font family avenir aside font size rem Which do you like best And does your choice match the winner in the official poll Spoiler alert won the poll so we may be getting a very SCSS like nesting syntax as an icing on the cake to CSS soon assuming the CSSWG s chooses the poll winner And yes I agree Option is an absolute abomination that needs to burn in fire Browser support Browser support for is and where The is and where pseudo classes are supported in all major browsers Source MDN Browser support for has Note that the has pseudo class that we touched on here does not have the same level of support so use has with caution Source MDN ConclusionModern CSS is awesome and only keeps getting better Next time you ve got redundant selectors in your code don t forget to reach for that handy is pseudo class About meHi I m Steve CEO of Builder io We make a way to drag drop with your components to create pages and other CMS content on your site or app visually You can read more about how this can improve your workflow here You may find it interesting or useful 2023-01-19 19:32:52
海外TECH DEV Community Apirze studio , create HTML file with style without code https://dev.to/aieeeo/apirze-studio-create-html-file-with-style-without-code-am9 Apirze studio create HTML file with style without codeAprize studio is simple website that you can create a html page easily this is the first version and it still under development so you can chat with apirze team to tell them what you miss in the studio and it will be consider in the next version 2023-01-19 19:06:10
Apple AppleInsider - Frontpage News Brazil watchdog investigates Apple over App Store payment rules https://appleinsider.com/articles/23/01/19/brazil-watchdog-investigates-apple-over-app-store-payment-rules?utm_medium=rss Brazil watchdog investigates Apple over App Store payment rulesBrazil s antitrust watchdog CADE is investigating a complaint against Apple for alleged anti competitive practices with the App Store App StoreThe Conselho Administrativo de Defesa Economica CADE is looking into a complaint from MercadoLibre that was filed in December according to a report from Reuters Similar investigations are being conducted by antitrust authorities in other jurisdictions CADE said Read more 2023-01-19 19:58:01
Apple AppleInsider - Frontpage News New 14-inch MacBook Pro with M2 Pro vs 2022 13-inch MacBook Pro - compared https://appleinsider.com/inside/macbook-pro/vs/new-14-inch-macbook-pro-with-m2-pro-vs-2022-13-inch-macbook-pro---compared?utm_medium=rss New inch MacBook Pro with M Pro vs inch MacBook Pro comparedApple added powerful new M Pro and M Max chips to the inch MacBook Pro Here s how it compares to the inch MacBook Pro with M inch MacBook ProApple refreshed the inch MacBook Pro in and gave it an M chip However other than the new chip not much else changed on the machine Read more 2023-01-19 19:19:54
海外TECH Engadget 'Tron 3' may finally be happening with Jared Leto https://www.engadget.com/tron-3-jared-leto-disney-movie-192711855.html?src=rss x Tron x may finally be happening with Jared LetoIt s been over years since Tron Legacy nbsp debuted and those who ve been longing for a third entry in the classic sci fi series may have wished for it on a monkey s paw Tron Ares as the film may be called nbsp could start filming this August with Jared Leto ol Morbius himself reportedly set to star Joachim Rønning Maleficent Mistress of Evil and Pirates of the Caribbean Dead Men Tell No Tales is in talks to direct according to Deadline As Variety nbsp notes Leto first signed on back in but Disney has had a third movie on the backburner since long before then Tron Legacy director Joseph Kosinski who went on to make Top Gun Maverick said in an interview that he wrote and storyboarded a sequel quot that takes place on the internet with Yahoo and Google and all those sites quot Kosinski said he was close to moving forward with it in but suggested Disney quot pulled the plug quot as it had bigger Marvel and Star Wars sized fish to focus on This time around Tron Ares could finally be happening Unfortunately it seems unlikely that Daft Punk will return to deliver another banger of a score The iconic duo split up in 2023-01-19 19:27:11
ニュース BBC News - Home Beth Matthews: Blogger who took poisonous substance failed by hospital https://www.bbc.co.uk/news/uk-england-manchester-64305822?at_medium=RSS&at_campaign=KARANGA inquest 2023-01-19 19:42:29
ニュース BBC News - Home Three women died at Priory psychiatric unit in two months https://www.bbc.co.uk/news/uk-england-manchester-64318583?at_medium=RSS&at_campaign=KARANGA matthews 2023-01-19 19:42:47
ニュース BBC News - Home Beano's Bash Street Kids artist David Sutherland dies https://www.bbc.co.uk/news/uk-scotland-64339747?at_medium=RSS&at_campaign=KARANGA career 2023-01-19 19:05:05
ニュース BBC News - Home Rishi Sunak sorry for not wearing seat belt in moving car https://www.bbc.co.uk/news/uk-politics-64337866?at_medium=RSS&at_campaign=KARANGA media 2023-01-19 19:43:56
ニュース BBC News - Home Levelling up funding process is broken, says Conservative mayor Andy Street https://www.bbc.co.uk/news/uk-politics-64337596?at_medium=RSS&at_campaign=KARANGA local 2023-01-19 19:27:36
ニュース BBC News - Home John Yems: Anger over calling manager 'not conscious racist' https://www.bbc.co.uk/news/uk-64332290?at_medium=RSS&at_campaign=KARANGA abuse 2023-01-19 19:42:40
ニュース BBC News - Home Cristiano Ronaldo and Lionel Messi both score in exhibition https://www.bbc.co.uk/sport/football/64337699?at_medium=RSS&at_campaign=KARANGA Cristiano Ronaldo and Lionel Messi both score in exhibitionCristiano Ronaldo scores twice in his first game in Saudi Arabia and Lionel Messi is also on the scoresheet as PSG edge a Riyadh All Stars XI 2023-01-19 19:52:17
ビジネス ダイヤモンド・オンライン - 新着記事 消費税の「益税」、実は商品対価の一部!?誰も知らない消費税の正体を税理士が解説 - 個人も企業も大混乱! インボイス&改正電帳法の落とし穴 https://diamond.jp/articles/-/316028 東京地方裁判所 2023-01-20 05:00:00
ビジネス ダイヤモンド・オンライン - 新着記事 日銀vs市場“いたちごっこ”第二幕!3月「黒田最後の会合」で金利上限倍に? - Diamond Premium News https://diamond.jp/articles/-/316401 diamondpremiumnews 2023-01-20 04:57:00
ビジネス ダイヤモンド・オンライン - 新着記事 眞子さん結婚で皇室の権威に陰り、欧州にならい「皇室典範」変えよ - 総予測2023 https://diamond.jp/articles/-/315946 君塚直隆 2023-01-20 04:55:00
ビジネス ダイヤモンド・オンライン - 新着記事 日銀の新総裁人事で「1ドル100円、株価暴落」もあり得る!金融緩和の行方を徹底予測【山崎元×馬渕磨理子・動画】 - 【山崎元×馬渕磨理子】マルチスコープ https://diamond.jp/articles/-/316351 2023-01-20 04:50:00
ビジネス ダイヤモンド・オンライン - 新着記事 「行政書士」は法律家として独立したければ狙い目、有望性が増す法改正も - Diamond Premiumセレクション https://diamond.jp/articles/-/316189 diamond 2023-01-20 04:45:00
ビジネス ダイヤモンド・オンライン - 新着記事 日銀新総裁体制で2%物価目標見直しやマイナス金利解除も、YCCは温存か - 政策・マーケットラボ https://diamond.jp/articles/-/316350 物価目標 2023-01-20 04:40:00
ビジネス ダイヤモンド・オンライン - 新着記事 2つの「新宿駅」に迷う人続出…京王線と京王新線の迷路構造を調べてみた - 弁護士ドットコム発 https://diamond.jp/articles/-/316324 乗り換え 2023-01-20 04:35:00
ビジネス ダイヤモンド・オンライン - 新着記事 インボイスで会社員の経費精算も変わる!交通費、備品費、接待交際費…新ルールを大解説 - 有料記事限定公開 https://diamond.jp/articles/-/316027 接待交際費 2023-01-20 04:30:00
ビジネス ダイヤモンド・オンライン - 新着記事 中古車が新車より高い「ロレックス化」、価格高止まりの恐れがあるワケ - 今週もナナメに考えた 鈴木貴博 https://diamond.jp/articles/-/316349 異常事態 2023-01-20 04:25:00
ビジネス ダイヤモンド・オンライン - 新着記事 韓国人の9割が「もう犬肉料理を食べない」、理由は2つ - News&Analysis https://diamond.jp/articles/-/316229 newsampampanalysis 2023-01-20 04:20:00
ビジネス ダイヤモンド・オンライン - 新着記事 高市早苗氏は「増税派」なのに「増税否定派」のように報じてもらえる理由 - DOL特別レポート https://diamond.jp/articles/-/316273 2023-01-20 04:15:00
ビジネス ダイヤモンド・オンライン - 新着記事 中国で1000万人超失業の報道…ゼロコロナが残した医療崩壊、財政難、大失業 - China Report 中国は今 https://diamond.jp/articles/-/316348 chinareport 2023-01-20 04:10:00
ビジネス ダイヤモンド・オンライン - 新着記事 「デリカミニ」が注目!次期「N-BOX」に期待…軽アウトドアブームの気になる行方 - エコカー大戦争! https://diamond.jp/articles/-/316347 日本市場 2023-01-20 04:05:00
ビジネス 東洋経済オンライン 便利だが油断禁物「環状線」、大阪ご当地鉄道事情 中心部に乗り入れる近鉄・南海・京阪も存在感 | トラベル最前線 | 東洋経済オンライン https://toyokeizai.net/articles/-/646553?utm_source=rss&utm_medium=http&utm_campaign=link_back 大阪メトロ 2023-01-20 04: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件)