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!
| #!/bin/bash | |
| #brew install eigen3 | |
| EIGEN_PATH=/opt/local/include/eigen3 | |
| # build for device | |
| cmake . -DCMAKE_TOOLCHAIN_FILE=./cmake/iOS.cmake -DEIGEN_INCLUDE_DIR=${EIGEN_PATH} -DIOS_PLATFORM=OS -DEIGENSPARSE=ON | |
| make -j8 | |
| # install headers in .. | |
| make install |
| // | |
| // GradientView.swift | |
| // Aura | |
| // | |
| // Created by Egor Sakhabaev on 23.07.17. | |
| // Copyright © 2017 Egor Sakhabaev. All rights reserved. | |
| // | |
| import UIKit |
This basic guide supports Ubuntu Xenial Xerus 16.04 and will enable several external encoding and decoding libraries: libfaac (AAC encoder), libfdk-aac (AAC encoder), libmp3lame (MP3 encoder), libopencore-amr (AMR encoder/decoder), librtmp (for additional RTMP protocols), libtheora (Theora encoder), libvorbis (Vorbis encoder), libvpx (VP8 encoder/decoder), and libx264 (H.264 encoder). These are optional and may be omitted if desired. This guide will also install many filters (see the filter list in the [Filtering Guide][1].
Note: Copy and paste the whole code box for each step.
| #include "Model.hpp" | |
| bool core::ModelLoader::loadModel(const char* fp, Model* m) | |
| { | |
| core::log("Loading " + (std::string)fp, core::green); | |
| Assimp::Importer importer; // used to import the model | |
| const aiScene* scene = importer.ReadFile(fp, | |
| aiProcess_Triangulate | |
| curl -s https://api.github.com/orgs/twitter/repos?per_page=200 | ruby -rubygems -e 'require "json"; JSON.load(STDIN.read).each { |repo| %x[git clone #{repo["ssh_url"]} ]}' |
| IFS="$(printf '\n\t')" | |
| mkdir -p ~/.ssh | |
| if ! [[ -f ~/.ssh/authorized_keys ]]; then | |
| echo "Creating new ~/.ssh/authorized_keys" | |
| touch ~/.ssh/authorized_keys | |
| fi | |
| user=$1 |
transmission-cli for the torrent client, and nginx to serve files.seedbox-setup.sh present in the current directory.| #!/usr/bin/ruby | |
| # brew install portaudio | |
| # gem install bloopsaphone | |
| require 'bloops' | |
| # the bloops o' phone | |
| bloops = Bloops.new | |
| bloops.tempo = 150 |