1. Gentoo Build Publisher: Running arbitrary commands in a machine's chroot

    Gentoo Build Publisher uses buildah containers to build each machine's binary packages. For each machine, the Jenkins build runs arbitrary commands in the respective container. Usually the user does not need to concern themselves with this implementation detail. But sometimes we need to "open up" the container and do something …

  2. Delaware Tornado

    I've decided to set up a GoFundMe for my elderly Aunt and cousins who were affected by the 2023-03-31 a series of tornados and severe thunderstorms struck through North America.

    It struck in areas that are not typically areas for tornados. One such area was Delaware, and especially Southern Delaware …

  3. Historical Values in Python

    Often in programming we have some "constant" value that we define as a variable in Python. But the only try constant is change.

    Consider for example you have a program that needs to process a file with a certain filename. So you might have something like:

    FILENAME = "foo.txt"
    
    data …
    Tagged as : development python
  4. Python Cannot Return Multiple Values

    It is often said that Python functions can return multiple values, but this isn't really true. Often the examples given to show Python returning multiple values is something like this:

    def foo():
       return 1, 3
    
    a, b = foo()
    

    But is that really returning multiple values? No. Well then how come …

    Tagged as : development python

Page 1 / 2