What is Extra Life? Donate I’ve pledged to play games and raise funds for kids at my local children’s hospital. Please visit my Extra Life Page to make a donation. Your donation is tax-deductible and will make miracles happen for families who desperately need them.
Watch Visit my Twitch Stream and Follow my channel so you are notified when I go live on Game Day, November 5th, 2022.
I was invited to the Ford F-150 Lightning event here in Denver, CO. I got to ride along in the new Lightning and get an up close and personal look. They also had an E-Transit on site as well.
Test Ride Let’s start with the most exciting part. After registration, I walked straight over to the test ride tent. Unfortunately, I was prohibited from recording anything inside the vehicle during the test ride.
I had an article published on the Netflix Tech Blog.
Applying Netflix DevOps Patterns to Windows
My own special version of Hush Little Baby.
Hush little baby, don’t say a word.
Daddy’s gonna buy you a mockingbird.
If that mockingbird doesn’t sing,
daddy’s gonna buy you a golden ring.
If that golden ring turns brass,
daddy’s gonna buy you a looking glass.
If that looking glass does break,
daddy’s gonna buy you some roller skates.
If those roller skates make you fall,
daddy’s gonna buy you a bouncy ball.
Update: This docker image is now available on the Docker Hub as linuturk/mono-choco.
Do you want to create Chocolatey packages but don’t want to run a Windows server? Use this Dockerfile to build Chocolatey and do your package development without a Windows system.
FROMmono:3.12.1MAINTAINERJustin PhelpsRUN apt-get update && apt-get install -y wget unzipWORKDIR/usr/local/src/chocoRUN wget https://github.com/chocolatey/choco/archive/stable.zipRUN unzip stable.zipRUN rm stable.zipWORKDIR/usr/local/src/choco/choco-stableRUN chmod +x build.shRUN chmod +x zip.shRUN ./build.shWORKDIR/usr/local/binRUN ln -s /usr/local/src/choco/choco-stable/build_output/chocolateyCOPY choco /usr/local/bin/chocoWORKDIR/rootIn the same directory as the Dockerfile, place a file called choco with executable permissions.