(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| #!/usr/bin/env bash | |
| # USAGE: ./yocto2oci.sh <sdk> | |
| # where sdk is a yocto-generated installer | |
| # example sdk: https://downloads.yoctoproject.org/releases/yocto/yocto-4.0.16/toolchain/x86_64/poky-glibc-x86_64-core-image-sato-ppc7400-qemuppc-toolchain-ext-4.0.16.sh | |
| set -e | |
| ALGORITHM="sha256" | |
| BUILD_DIR="build" | |
| BLOBS_DIR="$BUILD_DIR/blobs/$ALGORITHM" |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
I bought M1 MacBook Air. It is the fastest computer I have, and I have been a GNOME/GNU/Linux user for long time. It is obvious conclusion that I need practical Linux desktop environment on Apple Silicon/M1.
Fortunately, Linux already works on Apple Silicon/M1. But how practical is it?
| *.tar.gz | |
| .sentinel.* |
| // Just before switching jobs: | |
| // Add one of these. | |
| // Preferably into the same commit where you do a large merge. | |
| // | |
| // This started as a tweet with a joke of "C++ pro-tip: #define private public", | |
| // and then it quickly escalated into more and more evil suggestions. | |
| // I've tried to capture interesting suggestions here. | |
| // | |
| // Contributors: @r2d2rigo, @joeldevahl, @msinilo, @_Humus_, | |
| // @YuriyODonnell, @rygorous, @cmuratori, @mike_acton, @grumpygiant, |
| using Ninject.Modules; | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Reflection; | |
| using System.Web; | |
| using System.Web.Http; | |
| using System.Web.Http.Dependencies; | |
| // A small Library to configure Ninject (A Dependency Injection Library) with a WebAPI Application. |
| using System; | |
| using System.Collections.Generic; | |
| using System.Diagnostics.Contracts; | |
| using System.Web.Http.Dependencies; | |
| using Ninject; | |
| using Ninject.Syntax; | |
| public class NinjectDependencyScope : IDependencyScope | |
| { | |
| private IResolutionRoot resolver; |
| using System; | |
| using System.Collections.Generic; | |
| using System.Diagnostics.Contracts; | |
| using System.Web.Http.Dependencies; | |
| using Ninject; | |
| using Ninject.Syntax; | |
| public class NinjectDependencyScope : IDependencyScope | |
| { | |
| private IResolutionRoot resolver; |