Skip to content

Instantly share code, notes, and snippets.

View lpstandard's full-sized avatar

Hsiang-Hsuan (Tony) Kung lpstandard

  • Taichung, Taiwan
View GitHub Profile
@lpstandard
lpstandard / index.html
Created January 10, 2020 07:24
The basic "v-model" usage
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<title>The basic "v-model" usage</title>
</head>
@lpstandard
lpstandard / useHexo.md
Created August 5, 2017 22:17 — forked from btfak/useHexo.md
How to use Hexo and deploy to GitHub Pages
n = 100
for num in range(1, n):
if num%3 == 0:
print "Fizz"
elif num%5 == 0:
print "Buzz"
elif num%3==0 and num%5 == 0:
print "FizzBuzz"
else:
print num