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!
package com.example; | |
import lombok.AllArgsConstructor; | |
import lombok.Builder; | |
import lombok.Data; | |
import lombok.NoArgsConstructor; | |
@Data | |
@Builder | |
@NoArgsConstructor |
name: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build_web: |
Positioned( | |
bottom: MediaQuery.of(context).size.height * .37, | |
left: MediaQuery.of(context).size.width * .05, | |
child: RaisedButton( | |
// padding: EdgeInsets.all(20), | |
padding: EdgeInsets.symmetric( | |
vertical: 18.0, | |
horizontal: 38.0, | |
), | |
color: Color(0xFFEE112D), |
startup | vc | |
---|---|---|
Lenskart | Tpg Growth | |
Lenskart | Tr Capital | |
Lenskart | Idg Ventures | |
Violetstreet | Venkat Vallabhneni | |
Violetstreet | Sudhakar Reddy | |
Violetstreet | Srinivasa Rao Paturi | |
Lookup | Dena Co. | |
Lookup | Teruhide Sato | |
Lookup | Kris Gopalkrishnan |
package ciphers | |
import ( | |
"crypto/rand" | |
"crypto/rsa" | |
"crypto/sha512" | |
"crypto/x509" | |
"encoding/pem" | |
"log" | |
) |
// Embedded in this article https://medium.com/p/c98e491015b6 | |
package main | |
import ( | |
"fmt" | |
"log" | |
"net/http" | |
"time" | |
"github.com/graph-gophers/graphql-go" |
admin.addPeer("enode://8c5131f577ee602ccaad5e5f600011c024d43d33e6af6f8a89ed26cbfadd7efe903a8e426dde4071b857e0838a2efa29ae3b268f8b55acd59e72d4a919673cbc@13.251.47.174:30303"); | |
admin.addPeer("enode://798b8eba7b65cdd71bb061a6b18a1f7d16612d54e1aa542d8dc5c3573322b5dd7496c1eea100dbb84f8495d89f3d5ddb4142b0006a73cd32daa2f643bd5d1c76@175.24.29.183:30311"); | |
admin.addPeer("enode://9a4be35fec78cf91e7e959029ae3f5d3d3e86446186eb14f181c8f3b9917f57839ef98d4ba53cf06eb4fea696ecc14796b34d96db4f4294864edfcab27dd9956@31.220.51.107:30303"); | |
admin.addPeer("enode://2763ab6d19d6e7ce7a953ba95c9a87fe6ae5eac3434bf216282f53142d89cb5451faa701311d7de1d79cc8ecbd57f1781156e26f5722aee835547aeab870e385@52.237.88.221:30303"); | |
admin.addPeer("enode://81488a6c0b62aa14a1172d607893b6317e4f2565ca2bd73c7c0b8bfd55842af6b7972218728d1f352b3fddc61d0dccbf92e81d2bbfdc375db44ae44ee332d4db@88.198.59.75:30303"); | |
admin.addPeer("enode://3d55f613d74e90f5b8a4154d20d8a7260a973751c1402bf52adde2b08b72a9e0327a522bf187765f2d6e2a3b893dfe7aa41b204bce5f793bd9470f24fa3aafc |
#!/usr/bin/env ruby | |
require 'openssl' | |
require 'time' | |
begin | |
require 'origami' | |
rescue LoadError | |
abort 'origami not installed: gem install origami' | |
end |
mutation { | |
NewClass { | |
create(foo: "hello", bar: false, increment: 1) { | |
objectId, foo, bar, increment | |
} | |
} | |
} | |
mutation { | |
create(className: "NewClass", params: {foo: "Bar", bar: true, increment: 10}) { |