Minikube requires that VT-x/AMD-v virtualization is enabled in BIOS. To check that this is enabled on OSX / macOS run:
sysctl -a | grep machdep.cpu.features | grep VMX
If there's output, you're good!
| using System.Web.Mvc; | |
| using MyProject.ModelBinders; | |
| using Kendo.Mvc.UI; | |
| namespace MyProject.CustomAttributes | |
| { | |
| public class CustomDataSourceRequestAttribute : DataSourceRequestAttribute | |
| { | |
| public override IModelBinder GetBinder() | |
| { |
| #!/usr/bin/env bash | |
| echo " | |
| ---------------------- | |
| NODE & NPM | |
| ---------------------- | |
| " | |
| # add nodejs 10 ppa (personal package archive) from nodesource | |
| curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash - |
| echo " | |
| ---------------------- | |
| MEANIE | |
| ---------------------- | |
| " | |
| # clone meanie project from github into /opt/meanie folder | |
| sudo git clone https://github.com/cornflourblue/meanie /opt/meanie | |
| # install npm packages for meanie |
| using ServiceStack.WebHost.Endpoints; | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Net; | |
| using System.Security; | |
| using ServiceStack.Common.Web; | |
| using ServiceStack.Logging; | |
| using ServiceStack.ServiceHost; | |
| using ServiceStack.ServiceInterface; |
If you haven’t worked with JavaScript in the last few years, these three points should give you enough knowledge to feel comfortable reading the React documentation:
let and const statements. For the purposes of the React documentation, you can consider them equivalent to var.class keyword to define JavaScript classes. There are two things worth remembering about them. Firstly, unlike with objects, you don't need to put commas between class method definitions. Secondly, unlike many other languages with classes, in JavaScript the value of this in a method [depends on how it is called](https://developer.mozilla.org/en-US/docs/Web/JavJust run this from your Mac terminal and it'll drop you in a container with full permissions on the Moby VM. This also works for Docker for Windows for getting in Moby Linux VM (doesn't work for Windows Containers).
docker run -it --rm --privileged --pid=host justincormack/nsenter1
more info: https://github.com/justincormack/nsenter1
| # Compiled source # | |
| ################### | |
| *.com | |
| *.class | |
| *.dll | |
| *.exe | |
| *.o | |
| *.so | |
| # Packages # |
NDJSON is a convenient format for storing or streaming structured data that may be processed one record at a time.
cat test.json | jq -c '.[]' > testNDJSON.json