Skip to content

Commit

Permalink
Setup for GitPages
Browse files Browse the repository at this point in the history
  • Loading branch information
manueldois committed Sep 18, 2019
1 parent 69c6d00 commit ab946a0
Show file tree
Hide file tree
Showing 50 changed files with 989 additions and 462 deletions.
1 change: 0 additions & 1 deletion Benchmark/dist/bundle.js

This file was deleted.

29 changes: 0 additions & 29 deletions Benchmark/dist/index.html

This file was deleted.

5 changes: 0 additions & 5 deletions Benchmark/src/assembly/index.ts

This file was deleted.

29 changes: 0 additions & 29 deletions Benchmark/src/index.html

This file was deleted.

159 changes: 0 additions & 159 deletions Benchmark/src/index.ts

This file was deleted.

27 changes: 0 additions & 27 deletions Benchmark/src/styles.scss

This file was deleted.

18 changes: 18 additions & 0 deletions Checkerboard/dist/index.html
@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html>

<head>
<meta charset="UTF-8" />
<title>Checkerboard - AssemblyScript</title>
<link rel="stylesheet" href="styles.css">
</head>

<body>
<h1>Checkerboard built in WebAssembly</h1>
<h2>Canvas image data is shared with WebAssembly</h2>
<h3>Canvas is 200 * 200px</h3>
<canvas width="200" height="200" style="transform-origin: 0 0; transform: scale(2)"></canvas>
</body>
<script type="module" src="./index.js"></script>

</html>
File renamed without changes.
File renamed without changes.
File renamed without changes.
11 changes: 11 additions & 0 deletions Checkerboard/dist/styles.css
@@ -0,0 +1,11 @@
body {
min-width: 100vw;
min-height: 100vh;
background-color: #293a4b;
margin: 0;
padding: 10px;
font-family: Ubuntu, Verdana, Geneva, Tahoma, sans-serif;
color: white;
box-sizing: border-box;
overflow-x: hidden;
}
6 changes: 6 additions & 0 deletions Checkerboard/dist/tsconfig.json
@@ -0,0 +1,6 @@
{
"extends": "../../../node_modules/assemblyscript/std/assembly.json",
"include": [
"./**/*.ts"
]
}
11 changes: 0 additions & 11 deletions Checkerboard/index.html

This file was deleted.

6 changes: 0 additions & 6 deletions Checkerboard/tsconfig.json

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
12 changes: 12 additions & 0 deletions Hello World/dist/index.html
@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Hello World - AssemblyScript</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>

</body>
<script type="module" src="./hello-world.js"></script>
</html>
12 changes: 12 additions & 0 deletions Hello World/dist/styles.css
@@ -0,0 +1,12 @@
body {
min-width: 100vw;
min-height: 100vh;
background-color: #293a4b;
margin: 0;
padding: 10px;
font-family: Ubuntu, Verdana, Geneva, Tahoma, sans-serif;
color: white;
box-sizing: border-box;
overflow-x: hidden;
font-size: 1.3em;
}
9 changes: 0 additions & 9 deletions Hello World/index.html

This file was deleted.

13 changes: 13 additions & 0 deletions Importing JS/dist/index.html
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Importing JS - AssemblyScript</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Imported console.log into webAssembly</h1>
<h2>Output in console</h2>
</body>
<script type="module" src="./index.js"></script>
</html>
File renamed without changes.
File renamed without changes.
File renamed without changes.
11 changes: 11 additions & 0 deletions Importing JS/dist/styles.css
@@ -0,0 +1,11 @@
body {
min-width: 100vw;
min-height: 100vh;
background-color: #293a4b;
margin: 0;
padding: 10px;
font-family: Ubuntu, Verdana, Geneva, Tahoma, sans-serif;
color: white;
box-sizing: border-box;
overflow-x: hidden;
}
9 changes: 0 additions & 9 deletions Importing JS/index.html

This file was deleted.

0 comments on commit ab946a0

Please sign in to comment.