Skip to content

Instantly share code, notes, and snippets.

Support Message
Hello!
Thank you for using KanjiKong. If you have any questions, encounter any issues, or need assistance with the app, please feel free to reach out to our support team. We are here to help!
You can contact us by sending an email to: minrenmtv at gmail dot com
We appreciate your feedback and will do our best to provide timely support to ensure the best experience with KanjiKong.
Privacy Policy
Last updated: April 7, 2025
1. Introduction
Welcome to KanjiKong. We respect your privacy and are committed to protecting your personal information. This privacy policy explains how we collect, use, store, and protect your information.
2. Information We Collect
When using KanjiKong, we may collect the following information:
<html>
<head>
<title>Canvas Color</title>
<script type="text/javascript">
function Box(id, color) {
this.id = id;
this.color = color;
}
var boxes = [];
var doneBoxes = [];
@minrenmtv
minrenmtv / asyncTest.js
Last active December 19, 2015 07:29
simple async test
(function() {
var queue = [],
paused = false,
results;
this.test = function(name, fn) {
queue.push(function() {
results = document.getElementById("results");
results = assert(true, name).appendChild(
document.createElement("ul"));
@minrenmtv
minrenmtv / Makefile
Last active December 18, 2015 16:59 — forked from utaal/Makefile
webserver: webserver.c libuv/uv.a http-parser/http_parser.o
gcc -I libuv/include \
-lrt -lm -lpthread -o \
webserver webserver.c \
libuv/uv.a http-parser/http_parser.o
libuv/uv.a:
$(MAKE) -C libuv
http-parser/http_parser.o:
@minrenmtv
minrenmtv / color.html
Created July 13, 2012 01:06
color war
<html>
<head>
<title>Canvas Color</title>
<script type="text/javascript">
function Box(id, color) {
this.id = id;
this.color = color;
}
var boxes = [];
var doneBoxes = [];
@minrenmtv
minrenmtv / todo_app.js
Created July 8, 2012 15:56
Vanilla Todo
(function() {
'use strict';
var todos = [],
stat = {},
ENTER_KEY = 13;
window.addEventListener( 'load', windowLoadHandler, false );
function Todo( title, completed ) {