はてなブックマークアプリ

サクサク読めて、
アプリ限定の機能も多数!

アプリで開く

はてなブックマーク

  • はてなブックマークって?
  • アプリ・拡張の紹介
  • ユーザー登録
  • ログイン
  • Hatena

はてなブックマーク

トップへ戻る

  • 総合
    • 人気
    • 新着
    • IT
    • 最新ガジェット
    • 自然科学
    • 経済・金融
    • おもしろ
    • マンガ
    • ゲーム
    • はてなブログ(総合)
  • 一般
    • 人気
    • 新着
    • 社会ニュース
    • 地域
    • 国際
    • 天気
    • グルメ
    • 映画・音楽
    • スポーツ
    • はてな匿名ダイアリー
    • はてなブログ(一般)
  • 世の中
    • 人気
    • 新着
    • 新型コロナウイルス
    • 働き方
    • 生き方
    • 地域
    • 医療・ヘルス
    • 教育
    • はてな匿名ダイアリー
    • はてなブログ(世の中)
  • 政治と経済
    • 人気
    • 新着
    • 政治
    • 経済・金融
    • 企業
    • 仕事・就職
    • マーケット
    • 国際
    • はてなブログ(政治と経済)
  • 暮らし
    • 人気
    • 新着
    • カルチャー・ライフスタイル
    • ファッション
    • 運動・エクササイズ
    • 結婚・子育て
    • 住まい
    • グルメ
    • 相続
    • はてなブログ(暮らし)
    • 掃除・整理整頓
    • 雑貨
    • 買ってよかったもの
    • 旅行
    • アウトドア
    • 趣味
  • 学び
    • 人気
    • 新着
    • 人文科学
    • 社会科学
    • 自然科学
    • 語学
    • ビジネス・経営学
    • デザイン
    • 法律
    • 本・書評
    • 将棋・囲碁
    • はてなブログ(学び)
  • テクノロジー
    • 人気
    • 新着
    • IT
    • セキュリティ技術
    • はてなブログ(テクノロジー)
    • AI・機械学習
    • プログラミング
    • エンジニア
  • おもしろ
    • 人気
    • 新着
    • まとめ
    • ネタ
    • おもしろ
    • これはすごい
    • かわいい
    • 雑学
    • 癒やし
    • はてなブログ(おもしろ)
  • エンタメ
    • 人気
    • 新着
    • スポーツ
    • 映画
    • 音楽
    • アイドル
    • 芸能
    • お笑い
    • サッカー
    • 話題の動画
    • はてなブログ(エンタメ)
  • アニメとゲーム
    • 人気
    • 新着
    • マンガ
    • Webマンガ
    • ゲーム
    • 任天堂
    • PlayStation
    • アニメ
    • バーチャルYouTuber
    • オタクカルチャー
    • はてなブログ(アニメとゲーム)
    • はてなブログ(ゲーム)
  • おすすめ

    参議院選挙2025

『Test-Driven Development, Microservices, Web Development Courses from TestDriv...』

  • 人気
  • 新着
  • すべて
  • FastAPI with Async SQLAlchemy, SQLModel, and Alembic

    5 users

    testdriven.io

    FastAPI with Async SQLAlchemy, SQLModel, and Alembic This tutorial looks at how to work with SQLAlchemy asynchronously with SQLModel and FastAPI. We'll also configure Alembic for handling database migrations. This tutorial assumes you have experience working with FastAPI and Postgres using Docker. Need help getting up to speed with FastAPI, Postgres, and Docker? Start with the following resources:

    • 暮らし
    • 2022/02/12 18:28
    • Docker Best Practices for Python Developers

      4 users

      testdriven.io

      This article looks at some best practices to follow when writing Dockerfiles and working with Docker in general. While most of the practices listed apply to all developers, regardless of the language, a few apply to only those developing Python-based applications. -- Dockerfiles: Use Multi-stage Builds Order Dockerfile Commands Appropriately Use Small Docker Base Images Minimize the Number of Laye

      • テクノロジー
      • 2021/10/06 12:14
      • Pocket
      • *あとで読む
      • Python Dependency Injection

        3 users

        testdriven.io

        Writing clean, maintainable code is a challenging task. Fortunately, there are many patterns, techniques, and reusable solutions available to us to make achieving that task much easier. Dependency Injection is one of those techniques, which is used to write loosely-coupled yet highly-cohesive code. In this article, we'll show you how to implement Dependency Injection as you develop an app for plot

        • テクノロジー
        • 2021/07/15 10:20
        • Python
        • Web Authentication Methods Compared

          6 users

          testdriven.io

          Usernames and passwords are not encrypted. Instead, the username and password are concatenated together using a : symbol to form a single string: username:password. This string is then encoded using base64. >>> import base64 >>> >>> auth = "username:password" >>> auth_bytes = auth.encode('ascii') # convert to bytes >>> auth_bytes b'username:password' >>> >>> encoded = base64.b64encode(auth_bytes)

          • テクノロジー
          • 2020/12/24 04:59
          • Python
          • Async Views in Django

            3 users

            testdriven.io

            Writing asynchronous code gives you the ability to speed up your application with little effort. Django versions >= 3.1 support async views, middleware, and tests. If you haven't already experimented with async views, now's a great time to get them under your belt. This tutorial looks at how to get started with Django's asynchronous views. If you're interested in learning more about the power behi

            • 世の中
            • 2020/08/20 14:58
            • Deploying Django to AWS ECS with Terraform

              4 users

              testdriven.io

              In this tutorial, we'll look at how to deploy a Django app to AWS ECS (via Fargate) with Terraform. Dependencies: Django v4.2.7 Docker v24.0.6 Python v3.12.0 Terraform v1.5.7 Contents Objectives By the end of this tutorial, you will be able to: Explain what Terraform is and how you can use it to write infrastructure as code Utilize the ECR Docker image registry to store images Create the required

              • テクノロジー
              • 2020/08/14 05:51
              • django
              • docker
              • aws
              • Faster CI Builds with Docker Layer Caching and BuildKit

                3 users

                testdriven.io

                This article takes a look at how to speed up your Docker-based builds on CircleCI, GitLab CI, and GitHub Actions with Docker layer Caching and BuildKit. Contents Docker Layer Caching Docker caches each layer as an image is built, and each layer will only be re-built if it or the layer above it has changed since the last build. So, you can significantly speed up builds with Docker cache. Let's take

                • テクノロジー
                • 2020/06/30 21:37
                • Docker
                • article
                • Dockerizing Django with Postgres, Gunicorn, and Nginx

                  4 users

                  testdriven.io

                  $ mkdir django-on-docker && cd django-on-docker $ mkdir app && cd app $ python3.11 -m venv env $ source env/bin/activate (env)$ (env)$ pip install django==4.2.3 (env)$ django-admin startproject hello_django . (env)$ python manage.py migrate (env)$ python manage.py runserver Feel free to swap out virtualenv and Pip for Poetry or Pipenv. For more, review Modern Python Environments. Navigate to http:

                  • テクノロジー
                  • 2020/04/30 09:36
                  • Django
                  • docker
                  • CSS Grid: No Nonsense Layouts

                    3 users

                    testdriven.io

                    Obviously, the main focus here will be on CSS Grid, but it's important to note that many of these methods work really well -- and well together, for that matter -- for specific cases. Grid semi-recently got some amazing browser compatibility updates. With this adoption comes an opportunity for developers to utilize overlooked CSS features such as calc() and minmax() methods, and thefr measurement.

                    • テクノロジー
                    • 2019/06/07 00:02
                    • css
                    • React Hooks - A deeper dive featuring useContext and useReducer

                      3 users

                      testdriven.io

                      React Hooks - A deeper dive featuring useContext and useReducer The main purpose of this article is to get an understanding of useContext and useReducer and how they can work together to make React applications and their state management clean and efficient. The new Hooks API allows for some amazing features to be accessed across React applications which can potentially eliminate the need for stat

                      • テクノロジー
                      • 2019/04/18 20:23
                      • Running Flask on Kubernetes - TestDriven.io

                        4 users

                        testdriven.io

                        In this tutorial, we'll first take a look at Kubernetes and container orchestration in general and then we'll walk through a step-by-step tutorial that details how to deploy a Flask-based microservice (along with Postgres and Vue.js) to a Kubernetes cluster. This is an intermediate-level tutorial. It assumes that you have basic working knowledge of Flask and Docker. Review the Test-Driven Developm

                        • テクノロジー
                        • 2018/09/21 10:32
                        • python
                        • あとで読む
                        • Developing a Single Page App with Flask and Vue.js

                          12 users

                          testdriven.io

                          The following is a step-by-step walkthrough of how to set up a basic CRUD app with Vue and Flask. We'll start by scaffolding a new Vue application and then move on to performing the basic CRUD operations through a back-end RESTful API powered by Python and Flask. Final app: Main dependencies: Vue v3.2.47 Node v20.0.0 npm v9.6.4 Flask v2.2.3 Python v3.11.3 Contents Objectives By the end of this tut

                          • テクノロジー
                          • 2018/05/30 12:52
                          • Vue.js
                          • Python
                          • techfeed
                          • あとで読む
                          • Test-Driven Development, Microservices, Web Development Courses from TestDriven.io

                            3 users

                            testdriven.io

                            Learn to build high-quality web apps with best practices. Our in-depth courses teach you how real-world applications are built, using Test-Driven Development (TDD) along with the latest tools, technologies, and frameworks. In this course, you'll learn how to set up a development environment with Docker in order to build and deploy a microservice powered by Python and Flask. You'll also apply the p

                            • テクノロジー
                            • 2017/06/24 12:48

                            このページはまだ
                            ブックマークされていません

                            このページを最初にブックマークしてみませんか?

                            『Test-Driven Development, Microservices, Web Development Courses from TestDriv...』の新着エントリーを見る

                            キーボードショートカット一覧

                            j次のブックマーク

                            k前のブックマーク

                            lあとで読む

                            eコメント一覧を開く

                            oページを開く

                            はてなブックマーク

                            • 総合
                            • 一般
                            • 世の中
                            • 政治と経済
                            • 暮らし
                            • 学び
                            • テクノロジー
                            • エンタメ
                            • アニメとゲーム
                            • おもしろ
                            • アプリ・拡張機能
                            • 開発ブログ
                            • ヘルプ
                            • お問い合わせ
                            • ガイドライン
                            • 利用規約
                            • プライバシーポリシー
                            • 利用者情報の外部送信について
                            • ガイドライン
                            • 利用規約
                            • プライバシーポリシー
                            • 利用者情報の外部送信について

                            公式Twitter

                            • 公式アカウント
                            • ホットエントリー

                            はてなのサービス

                            • はてなブログ
                            • はてなブログPro
                            • 人力検索はてな
                            • はてなブログ タグ
                            • はてなニュース
                            • ソレドコ
                            • App Storeからダウンロード
                            • Google Playで手に入れよう
                            Copyright © 2005-2025 Hatena. All Rights Reserved.
                            設定を変更しましたx