-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
zilvinas
committed
Oct 15, 2024
1 parent
fdd6b87
commit f1a6aa0
Showing
16 changed files
with
252 additions
and
169 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,31 @@ | ||
<!doctype html> | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="icon" type="image/svg+xml" href="/webstorm-icon-logo.svg" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>WS playground</title> | ||
<link rel="stylesheet" href="/style.css"> | ||
<script type="module" crossorigin src="/assets/index-Cp6D6t7L.js"></script> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>console-like Output</title> | ||
<style> | ||
#console { | ||
/* background-color: #1e1e1e; */ | ||
color: #dcdcdc; | ||
font-family: monospace; | ||
padding: 10px; | ||
border-radius: 5px; | ||
max-height: 400px; | ||
overflow-y: auto; | ||
white-space: pre-wrap; | ||
/* Preserve formatting */ | ||
} | ||
</style> | ||
<script type="module" crossorigin src="/assets/index-RO_tAo3e.js"></script> | ||
</head> | ||
|
||
<body> | ||
<header class="logo"> | ||
<a href="https://www.jetbrains.com/webstorm/"> | ||
<img src="/webstorm-logo.svg" alt="WebStorm logo" width="344" | ||
height="90"> | ||
</a> | ||
</header> | ||
<main id="app"> | ||
<h1 class="title"> | ||
Thank you for trying it out. <br /> Your first project is up and running | ||
now. | ||
</h1> | ||
<section class="counter"> | ||
<div class="counter-info"> | ||
<p class="counter-text">Counter is</p> | ||
<p class="counter-value" id="counter-value"></p> | ||
</div> | ||
<div class="counter-interaction"> | ||
<button id="increaseByOne" type="button">+1</button> | ||
<button id="increaseByTwo" type="button">+2</button> | ||
<button id="decreaseByOne" type="button">-1</button> | ||
<button id="decreaseByTwo" type="button">-2</button> | ||
</div> | ||
</section> | ||
</main> | ||
<footer class="technologies"> | ||
<img src="/technologies.svg" alt="List of supported technologies"> | ||
</footer> | ||
<main id="app"> | ||
<div id="console"></div> | ||
</main> | ||
<!-- <script src="main.js"></script> --> | ||
</body> | ||
</html> | ||
|
||
</html> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,31 @@ | ||
<!doctype html> | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="icon" type="image/svg+xml" href="/webstorm-icon-logo.svg" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>WS playground</title> | ||
<link rel="stylesheet" href="/style.css"> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>console-like Output</title> | ||
<style> | ||
#console { | ||
/* background-color: #1e1e1e; */ | ||
color: #dcdcdc; | ||
font-family: monospace; | ||
padding: 10px; | ||
border-radius: 5px; | ||
max-height: 400px; | ||
overflow-y: auto; | ||
white-space: pre-wrap; | ||
/* Preserve formatting */ | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<header class="logo"> | ||
<a href="https://www.jetbrains.com/webstorm/"> | ||
<img src="/webstorm-logo.svg" alt="WebStorm logo" width="344" | ||
height="90"> | ||
</a> | ||
</header> | ||
<main id="app"> | ||
<h1 class="title"> | ||
Thank you for trying it out. <br /> Your first project is up and running | ||
now. | ||
</h1> | ||
<section class="counter"> | ||
<div class="counter-info"> | ||
<p class="counter-text">Counter is</p> | ||
<p class="counter-value" id="counter-value"></p> | ||
</div> | ||
<div class="counter-interaction"> | ||
<button id="increaseByOne" type="button">+1</button> | ||
<button id="increaseByTwo" type="button">+2</button> | ||
<button id="decreaseByOne" type="button">-1</button> | ||
<button id="decreaseByTwo" type="button">-2</button> | ||
</div> | ||
</section> | ||
</main> | ||
<footer class="technologies"> | ||
<img src="/technologies.svg" alt="List of supported technologies"> | ||
</footer> | ||
<script type="module" src="/src/main.ts"></script> | ||
<main id="app"> | ||
<div id="console"></div> | ||
</main> | ||
<!-- <script src="main.js"></script> --> | ||
<script type="module" src="/src/main.ts"></script> | ||
</body> | ||
</html> | ||
|
||
</html> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="icon" type="image/svg+xml" href="/webstorm-icon-logo.svg" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>WS playground</title> | ||
<link rel="stylesheet" href="/style.css"> | ||
</head> | ||
<body> | ||
<header class="logo"> | ||
<a href="https://www.jetbrains.com/webstorm/"> | ||
<img src="/webstorm-logo.svg" alt="WebStorm logo" width="344" | ||
height="90"> | ||
</a> | ||
</header> | ||
<main id="app"> | ||
<h1 class="title"> | ||
Thank you for trying it out. <br /> Your first project is up and running | ||
now. | ||
</h1> | ||
<section class="counter"> | ||
<div class="counter-info"> | ||
<p class="counter-text">Counter is</p> | ||
<p class="counter-value" id="counter-value"></p> | ||
</div> | ||
<div class="counter-interaction"> | ||
<button id="increaseByOne" type="button">+1</button> | ||
<button id="increaseByTwo" type="button">+2</button> | ||
<button id="decreaseByOne" type="button">-1</button> | ||
<button id="decreaseByTwo" type="button">-2</button> | ||
</div> | ||
</section> | ||
</main> | ||
<footer class="technologies"> | ||
<img src="/technologies.svg" alt="List of supported technologies"> | ||
</footer> | ||
<script type="module" src="/src/main.ts"></script> | ||
</body> | ||
</html> |
This file was deleted.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import { QTableGenerator } from './QTableGenerator'; | ||
import { Utils } from './utils/Utils'; | ||
// import { ConsoleUtils } from './utils/ConsoleUtils'; | ||
|
||
export class G15EntryPoint { | ||
|
||
public static async main() { | ||
// ConsoleUtils.testPrint(); | ||
Utils.prnt("tarining starts in:"); | ||
for (let i = 0; i < 3; i++) { | ||
Utils.prnt(i); | ||
await Utils.sleep(500); | ||
} | ||
|
||
Utils.prnt("tarining .. "); | ||
await Utils.sleep(1000); | ||
await QTableGenerator.train(); | ||
await Utils.sleep(1000); | ||
Utils.prnt("testing .. "); | ||
await Utils.sleep(1000); | ||
await QTableGenerator.test(); | ||
} | ||
} |
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
This file was deleted.
Oops, something went wrong.
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
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
Oops, something went wrong.