Skip to content

Instantly share code, notes, and snippets.

@MiniGod
MiniGod / index.html
Last active January 14, 2021 11:29
vue-i18n + vue-devtools bug
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vue Devtools bug repro</title>
</head>
<body>
<div id="anotherApp">Other app</div>
<div id="app">{{ $t('Hello World') }} {{ a }}</div>
@MiniGod
MiniGod / keybase.md
Last active February 20, 2016 19:03

Keybase proof

I hereby claim:

  • I am minigod on github.
  • I am kbl (https://keybase.io/kbl) on keybase.
  • I have a public key ASDFHQk7EDMYtF2Fa8PtWjAdbJEeNLLiaiYuQ_-nre5aJQo

To claim this, I am signing this object:

@MiniGod
MiniGod / delay.cpp
Last active August 29, 2015 14:11 — forked from dmh2000/simple node.js async c++ addon example
simple node.js async c++ addon example
#include <unistd.h>
#include <node.h>
#include <string.h>
#include <v8.h>
using namespace v8;
unsigned long long count = 0;
// native blocking/compute intensive function