投稿時間:2023-03-07 16:18:54 RSSフィード2023-03-07 16:00 分まとめ(22件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT ITmedia 総合記事一覧 [ITmedia Mobile] iPhoneを家に忘れて外出 Apple Watch Ultraだけで乗り切ったこと、詰みかけたこと https://www.itmedia.co.jp/mobile/articles/2303/07/news138.html applewatch 2023-03-07 15:02:00
IT ITmedia 総合記事一覧 [ITmedia PC USER] JBL、最大57時間のワイヤレス駆動を実現したBluetoothワイヤレスヘッドフォン https://www.itmedia.co.jp/pcuser/articles/2303/07/news137.html bluetooth 2023-03-07 15:02:00
TECH Techable(テッカブル) クラウドサーカス、ソフトバンク営業網活用でデジマSaaSの導入拡大へ https://techable.jp/archives/198070 株式会社 2023-03-07 06:00:42
IT 情報システムリーダーのためのIT情報専門サイト IT Leaders ネットワークから切り離してバックアップデータを守る「AT-Offline Manager」、新たにVeeamと連携 | IT Leaders https://it.impress.co.jp/articles/-/24541 ネットワークから切り離してバックアップデータを守る「ATOfflineManager」、新たにVeeamと連携ITLeadersアライドテレシスは年月日、オフラインバックアップシステム「NetProAlliedTelesisOfflineManager」ATOfflineManagerと連携するバックアップソフトウェアを拡充した。 2023-03-07 15:13:00
python Pythonタグが付けられた新着投稿 - Qiita foliumを使用して、地理空間データを用いて、聖地巡礼マップを作成しよう!! https://qiita.com/dressing/items/c37a7955f6f00a2cdbcd folium 2023-03-07 15:39:49
Ruby Rubyタグが付けられた新着投稿 - Qiita フォロー・フォロワー機能の実装 https://qiita.com/sm0322/items/b53bec6219ced41b1c35 説明 2023-03-07 15:40:24
AWS AWSタグが付けられた新着投稿 - Qiita AWS備忘録(自分用) https://qiita.com/ashdesuyo/items/2087bc58de9612ee37d3 ertifiedcloudpractitioner 2023-03-07 15:20:32
Azure Azureタグが付けられた新着投稿 - Qiita Private RepositoryのARM テンプレートをAzure PipelinesでDeployする方法 https://qiita.com/norihito_yamazaki/items/16f95528cfe92c0335ae azurepipelines 2023-03-07 15:57:52
Ruby Railsタグが付けられた新着投稿 - Qiita フォロー・フォロワー機能の実装 https://qiita.com/sm0322/items/b53bec6219ced41b1c35 説明 2023-03-07 15:40:24
技術ブログ Developers.IO SnowflakeからBrazeにユーザーデータを自動連携で取り込む #Cloud Data Ingestion https://dev.classmethod.jp/articles/snowflake-braze-clouddataingestion/ braze 2023-03-07 06:29:08
技術ブログ Developers.IO [レポート] #Security Days Spring 2023 – DevSecOps実現のためのDevOps超入門 https://dev.classmethod.jp/articles/securitydaysspring2023-d1-02/ securityday 2023-03-07 06:19:19
技術ブログ Developers.IO [Security Hub修復手順][EC2.24] 準仮想化 EC2 インスタンスタイプは使用しないでください https://dev.classmethod.jp/articles/securityhub-fsbp-remediation-ec2-24/ awssecurityhub 2023-03-07 06:05:44
海外TECH DEV Community How atomic Git commits dramatically increased my productivity - and will increase yours too https://dev.to/samuelfaure/how-atomic-git-commits-dramatically-increased-my-productivity-and-will-increase-yours-too-4a84 How atomic Git commits dramatically increased my productivity and will increase yours tooAtomic of or forming a single irreducible unit or component in a larger system Knowing VS Actually KnowingI remember when my first mentor told me about Test Driven Development A great methodological approach to software engineering It took me just a few minutes to understand what it was and how it worked Then I spent the next six months actively not practicing it TDD is hard when you start so you just don t Half a year later I was hitting my head against a wall trying to build a new feature I forced myself for the first time to actually do TDD by the book The wall that was blocking my progress disappeared instantly In a previous article I explained how many managers and tech leads often know exactly how to make our industry better yet don t There is always a good reason to not do things right And somehow we still end up surprised when we re doing things wrong This long introduction is here to illustrate a point you can know what you should do but you might not know how important it is to actually do it So many people out there just like I did before know how TDD is great yet still don t use it The simplest concepts can often completely change the way you work if you would only apply them Introducing the atomic git commits What s an atomic git commit Working with atomic git commits means your commits are of the smallest possible size Each commit does one and only one simple thing that can be summed up in a simple sentence The amount of code change doesn t matter It can be a letter or it can be a hundred thousand lines but you should be able to describe the change with one simple short sentence Ideally you also want your test suite to be in the green when you commit Your changes might be atomic i e the smallest possible but they should also be complete which means your test suite always follow through As small as possible but complete this is an atomic git commit Why should you write atomic git commits There are a few great advantages to practicing atomic git commits and we ll briefly detail them But the last one really is the most important It might completely change the way you approach your work increase your productivity by an order of magnitude and make your job much more enjoyable Reason number An atomic change is a reversible changeWe all know this simple truth about software the requirements are always changing By writing atomic git commits we allow ourselves to revert any changes by a simple commit revert This already increases your productivity tremendously Reason number A clean git historyWhen shit hit the fan a clean git history means the difference between pain and salvation It s like insuring your house seems useless until there s a fire Reason number Pull requests are much easier to reviewYour team will absolutely love you for this Reason number A much much better workflowThis is by far the most important reason to practice atomic git commits it completely alters the way you approach problem solving If you re like me you might have a tendency while developing a feature to just do it Entirely Then you realize how you did not think everything through You need to change more that you expected Some edge cases aren t taken into account You broke some unrelated tests they need fixing Soon you end up in a maze of your own making You re lost Your head hurts You can t make any progress without being entirely focused Now this is the wrong way to do things And worse you already know the right way because it s so obvious The well known method to complete a big complex task cut it down into smaller manageable tiny steps Each step its own simple problem to solve This is obvious advice that you probably already heard many times But are you actually practicing it in your daily job Well here s a great way to actually practice it write atomic git commits By forcefully working in atomic commits you re approaching the work the right way by simplifying it into smaller steps After all simplifying complexity is the very core of our job So why aren t we always consciously doing it Of course this advice might sound obvious But if my past experience proves anything it s that the obvious really bears repeating and even more importantly it bears practicing Make your work simpler better more manageable and most importantly make it easier Take small steps Write small commits Atomic commits You will love them 2023-03-07 06:02:22
海外科学 NYT > Science New Japanese Rocket Is Destroyed During First Test Flight to Space https://www.nytimes.com/2023/03/06/science/japan-rocket-h3-launch.html country 2023-03-07 06:35:30
医療系 医療介護 CBnews 精神保健福祉士の国家試験、合格率は71.1%-厚労省が発表、前回比5.5ポイント上昇 https://www.cbnews.jp/news/entry/20230307145816 厚生労働省 2023-03-07 15:05:00
ニュース BBC News - Home Pilot in crash which killed Britons did not hear radio https://www.bbc.co.uk/news/world-australia-64870697?at_medium=RSS&at_campaign=KARANGA radio 2023-03-07 06:13:22
ニュース BBC News - Home Ukraine war: The cost and scale of rehabilitating the wounded https://www.bbc.co.uk/news/world-europe-64862900?at_medium=RSS&at_campaign=KARANGA wounds 2023-03-07 06:00:55
ニュース BBC News - Home Six Nations 2023: Should foreign-based players be picked for England? https://www.bbc.co.uk/sport/rugby-union/64870428?at_medium=RSS&at_campaign=KARANGA rugby 2023-03-07 06:13:42
IT 週刊アスキー 『レジオナルパワー(PC-9801・Windows11対応版)』が「プロジェクトEGG」で無料配信開始! https://weekly.ascii.jp/elem/000/004/127/4127621/ windows 2023-03-07 15:50:00
IT 週刊アスキー 京都の伝統と歴史を感じる老舗の銘産品・銘菓が勢揃い! 「第37回 京のみやび 京都老舗の会」 https://weekly.ascii.jp/elem/000/004/127/4127562/ 銘菓 2023-03-07 15:30:00
IT 週刊アスキー Steamでカプコンの人気タイトルが最大87%オフ!「CAPCOM PUBLISHER SALE」が開催中 https://weekly.ascii.jp/elem/000/004/127/4127605/ capcompublishersale 2023-03-07 15:05:00
マーケティング AdverTimes BiSHのアイナ・ジ・エンドがメンバーに手紙 日本郵便が「卒業と旅立ち」応援 https://www.advertimes.com/20230307/article413290/ 新聞広告 2023-03-07 06:25:53

コメント

このブログの人気の投稿

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