Articles in the programming category

  1. Bazel: A powerful build system for Python

    Posted on in programming

    Bazel is a build system that allows you to build software projects quickly and reliably. It is a popular choice for building Python projects, as it offers a number of features that are well-suited for this language, such as:

    • Fast incremental builds: Bazel only rebuilds the parts of your project …
  2. Bazel: A powerful build system for C++

    Posted on in programming

    Bazel is a build system that allows you to build software projects quickly and reliably. It is a popular choice for building C++ projects, as it offers a number of features that are well-suited for this language, such as:

    • Fast incremental builds: Bazel only rebuilds the parts of your project …
  3. Bazel: Setting max_compatibility_level

    Posted on in programming

    Bazel is a build system that allows you to build software projects quickly and reliably. One of the features of Bazel is the ability to manage dependencies using Bzlmod files. Bzlmod files are used to describe the dependencies of a project and to ensure that the dependencies are compatible with …

  4. What is Bazel's sandbox mode?

    Posted on in programming

    Sandbox mode in Bazel is a security feature that isolates build actions from the host system. This helps to prevent malicious code from being able to access the host system or other build actions.

    In sandbox mode, each build action is executed in a separate directory, called an execroot. The …

  5. Does Bazel Guarantee Hermeticity?

    Posted on in programming

    Bazel does not guarantee hermeticity, but it does provide some features that can help to achieve hermeticity. These features include:

    • Sandboxing: Bazel can sandbox the execution of build actions, which helps to prevent them from accessing the host system.
    • Dependency pinning: Bazel can pin the versions of dependencies that are …
  6. Python's Universal Newline Mode

    Posted on in programming

    Universal newline mode is a feature of the Python open() function that allows it to handle newline characters in a consistent way, regardless of the platform on which the code is running.

    In most programming languages, a newline character is represented by a single character, either \n or \r. However …

  7. What is Python?

    Posted on in programming

    Python is a general-purpose, high-level programming language. It is one of the most popular programming languages in the world, used for a wide variety of tasks, including:

    • Web development
    • Data science
    • Machine learning
    • Artificial intelligence
    • Software development
    • Scientific computing
    • Game development

    Python is known for its simple, easy-to-learn syntax, which …

  8. Bazel: Module Extensions and Metadata Objects

    Posted on in programming

    Bazel is a build system that allows you to build software projects quickly and reliably. One of the features of Bazel is the ability to extend the module system by using module extensions. Module extensions allow you to provide additional information about the repositories that your project depends on.

    One …

  9. What are the Benefits of a Bzlmod Lockfile?

    Posted on in programming

    A bzlmod lockfile is a file that specifies the exact versions of all the dependencies of a Bazel project. This can be beneficial for a number of reasons, including:

    • Reproducibility: The lockfile ensures that the same build results can be produced every time the project is built, regardless of the …
  10. Bazel 6.3: A Major Release with New Features and Improvements

    Posted on in programming

    Bazel 6.3 was released on July 28, 2023. It includes a number of new features and improvements, making it a major release for the popular build tool.

    Here are some of the highlights of Bazel 6.3:

    • Bzlmod lockfile support: Bazel now supports a lockfile for Bzlmod, which can …

My Bookshelf

Reading Now

Other Stuff