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
mouse = "鼠" | |
cow = "牛" | |
tiger = "虎" | |
rabbit = "兔" | |
dragon = "龍" | |
snake = "蛇" | |
horse = "馬" | |
sheep = "羊" | |
monkey = "猴" | |
chicken = "雞" |
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> | |
<table | |
:style="{ maxWidth: `${bodyWidthString}` }" | |
> | |
<thead ref="head"> | |
<tr> | |
<th | |
v-for="(header,index) in headers" | |
:key="index" |
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 | |
ref="viewport" | |
:style="{ height: `${containerHeight}px` }" | |
@scroll.passive="onScroll" | |
> | |
<table | |
:class="$style.header" | |
> | |
<thead> |
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
offsetBody () { | |
const scrollTop = (this.$refs.viewport as Element).scrollTop | |
const remainTopNumber = Math.floor(this.remainLineNumber / 2) | |
const remainTopHeight = remainTopNumber * this.renderLineHeight | |
const remainBottomHeight = (this.remainLineNumber - remainTopNumber) * this.renderLineHeight | |
const thresholdHeight = this.thresholdNumber * this.renderLineHeight | |
const gap = scrollTop - this.bodyTranslateY | |
const overThreshold = gap < remainTopHeight - thresholdHeight || gap > remainTopHeight + thresholdHeight | |
const isReachBottom = this.totalHeight - (scrollTop + this.viewportHeight) < remainBottomHeight | |
const isReachTop = scrollTop < remainTopHeight |
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 | |
ref="viewport" | |
:style="{ height: `${viewportHeight}px` }" | |
@scroll.passive="onScroll" | |
> | |
<div | |
:style="{ height: `${totalHeight}px` }" | |
> | |
<section |
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> | |
<table> | |
<thead> | |
<tr v-for="(title, index) in titles"> | |
<th key="index">{{ title }}</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr v-for="(item, index) in items"> | |
<td key="index">{{ item }}</td> |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>Bridgewell</title> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> | |
</head> | |
<body> | |
<script> |
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
// refer to https://github.com/kdchang/reactjs101/blob/master/Appendix04/README.md | |
const facebookCampaignType = new graphql.GraphQLObjectType({ | |
name: 'FacebookCampaign', | |
fields: { | |
id: { type: graphql.GraphQLString }, | |
name: { type: graphql.GraphQLString }, | |
status: { type: graphql.GraphQLString }, | |
// other fields | |
} |
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
const fs = require('fs') | |
const csv = require('fast-csv') | |
var addscore = fs.readFileSync("./addscore.csv").toString() | |
var students = fs.readFileSync("./student.csv").toString() | |
var arr = {} | |
var wa = [] | |
csv | |
.fromString(students, {headers: true}) |
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
from bs4 import BeautifulSoup | |
import requests | |
import pandas as pd | |
import csv | |
import numpy as np | |
import matplotlib | |
import matplotlib.pyplot as plt | |
import time | |
import datetime |
NewerOlder