Skip to content

Instantly share code, notes, and snippets.

View tokuda109's full-sized avatar
🐥
pith pith pith

Tsuyoshi Tokuda tokuda109

🐥
pith pith pith
View GitHub Profile
@tokuda109
tokuda109 / vue-lazy-hydration-never.vue
Created October 8, 2021 03:25
Investigation of lazy hydration
<template>
<LazyHydrate never>
<Child>
<Child>
<Child>
<Child>
<p>This page uses vue-lazy-hydration library with never attribute.</p>
</Child>
</Child>
</Child>
@tokuda109
tokuda109 / clearfix.css
Created June 7, 2012 04:43
A new micro clearfix hack
/* For modern browsers */
.cf:before,
.cf:after {
content:"";
display:table;
}
.cf:after {
clear:both;
}
@tokuda109
tokuda109 / localstrage.html
Created December 8, 2011 04:23
Sample localStrage
<!doctype html>
<html>
<head>
<title>Dev Tools Sample</title>
<script type="text/javascript">
localStorage.setItem("message", "Hello World!");
</script>
</head>
<body>
@tokuda109
tokuda109 / logo.svg
Created November 29, 2011 04:06
tokuda109 logo
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@tokuda109
tokuda109 / main.py
Created October 15, 2011 09:49
main.py of my GAE/Py project.
# -*- coding: utf-8 -*-
import os, sys
#: The reason is write at below page:
#: http://code.google.com/p/appengine-monkey/issues/detail?id=25#c3
os.mkdir = None
ROOT_PATH = os.path.dirname(os.path.abspath(__file__))
APP_PATH = os.path.join(ROOT_PATH, 'application')