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
================================= | |
Python 3.11 | |
================================= | |
Concatenating 5 strings... | |
build_ul_list : 1.0 | |
build_ul_stringio : 1.629 | |
build_ul_concat : 1.013 | |
Concatenating 32 strings... | |
build_ul_list : 1.0 | |
build_ul_stringio : 1.356 |
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
yarn set version berry | |
yarn config set enableGlobalCache true | |
yarn create astro@latest | |
# (astro v2.0.2) | |
# choose defaults for everything except project name: | |
# - project name: myproject | |
# - a few best practices | |
# - install yarn dependencies: yes |
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
- ITERATIONS=15000 | |
- OS: macOS 10.14.5 | |
- Compiled using clang with -O3 | |
Output: | |
running 15000 iterations for ./a.out.c | |
done | |
elapsed: 26.145948sec | |
1.743ms per iteration |
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 http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | |
<link rel="stylesheet" type="text/css" href="css/lib/jqtouch/css/jqtouch.css" /> | |
<link rel="stylesheet" type="text/css" href="css/lib/jqtouch/extensions/jqt.actionsheet.css" /> | |
<title>Actionsheet Demo</title> | |
</head> | |
<body> | |
<div id="jqt"> |
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="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" /> | |
</head> | |
<body> | |
<div> | |
<p style="margin-top: 60px;" class="state">State: <span class="data"></span></p> | |
<input class="start" type="button" value="Start" /> |