This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gcloud container clusters create nucleus-backend \ | |
--num-nodes 1 \ | |
--network nucleus-vpc \ | |
--region us-east1 | |
gcloud container clusters get-credentials nucleus-backend \ | |
--region us-east1 | |
kubectl create deployment hello-server \ | |
--image=gcr.io/google-samples/hello-app:2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div> | |
<h1>Fingerprintjs2 with Vue</h1> | |
<div v-if="loading"> | |
Getting Information... | |
</div> | |
<div v-else-if="!loading"> | |
<p style="color:red" v-if="(fingerprintID != '') && (fingerprintID != dbprintID)">YOU'RE FAKE</p> | |
<p style="color:green" v-else-if="(fingerprintID != '') && (fingerprintID == dbprintID)">YOU'RE LEGIT</p> | |
<p> |
OlderNewer