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!
import com.android.volley.NetworkResponse; | |
import com.android.volley.ParseError; | |
import com.android.volley.Response; | |
import com.android.volley.toolbox.HttpHeaderParser; | |
import com.android.volley.toolbox.StringRequest; | |
import java.io.BufferedReader; | |
import java.io.ByteArrayInputStream; | |
import java.io.IOException; | |
import java.io.InputStreamReader; |
# Determine if an index has been checked | |
def index_not_in(list_of_indices, index): | |
res = True | |
for i in list_of_indices: | |
if index == i: | |
res = False | |
return res | |
# Determine if 2 strings are anagrams | |
def anagram(str1, str2): |
public class Unique{ | |
public static void main(String [] args){ | |
Unique unique = new Unique(); | |
String[] _args = {"as", "as", "se", "so","so","an","no"}; | |
System.out.println(unique.det(_args)); | |
} | |
public int det(String [] args_){ |
# Reverse a given string | |
def reverse(str): | |
l = [] | |
for index, i in enumerate(str): | |
j = len(str)-1 - index | |
l.append(str[j]) | |
return ''.join(l) | |
print reverse("asdaad") |
let jsonObj = { | |
"name": "Lon", | |
"email": "[email protected]" | |
}; | |
console.log(JSON.stringify(jsonObj).replace(/(")(\w*)(")(:)/g, '$2$4')) |
// === Arrays | |
var [a, b] = [1, 2]; | |
console.log(a, b); | |
//=> 1 2 | |
// Use from functions, only select from pattern | |
var foo = () => [1, 2, 3]; |
// Restify Server CheatSheet. | |
// More about the API: http://mcavage.me/node-restify/#server-api | |
// Install restify with npm install restify | |
// 1.1. Creating a Server. | |
// http://mcavage.me/node-restify/#Creating-a-Server | |
var restify = require('restify'); |
// {{compare unicorns ponies operator="<"}} | |
// I knew it, unicorns are just low-quality ponies! | |
// {{/compare}} | |
// | |
// (defaults to == if operator omitted) | |
// | |
// {{equal unicorns ponies }} | |
// That's amazing, unicorns are actually undercover ponies | |
// {{/equal}} | |
// (from http://doginthehat.com.au/2012/02/comparison-block-helper-for-handlebars-templates/) |
// Debounce function | |
let debounce = (func, delay) => { | |
let timeout; | |
return (...args) => { | |
// If this function is called again, and there's a timeout defined, clear it; | |
if (timeout) clearTimeout(timeout); | |
// Set a timeout to call the original function, after the `delay` | |
timeout = setTimeout(() => { |