Skip to content

Commit 59eb9d6

Browse files
committed
Initial commit
0 parents  commit 59eb9d6

53 files changed

Lines changed: 5674 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/deploy.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Deploy to GitHub Pages
2+
3+
on:
4+
push:
5+
branches: [main]
6+
7+
permissions:
8+
contents: write
9+
10+
jobs:
11+
deploy:
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- name: checkout code
16+
uses: actions/checkout@v3
17+
18+
- name: set up node
19+
uses: actions/setup-node@v3
20+
with:
21+
node-version: 18
22+
23+
- name: install dependencies
24+
run: npm install
25+
26+
- name: build
27+
run: npm run build
28+
29+
- name: deploy
30+
uses: peaceiris/actions-gh-pages@v3
31+
with:
32+
github_token: ${{ secrets.GITHUB_TOKEN }}
33+
publish_dir: ./dist

.gitignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
dist
12+
dist-ssr
13+
*.local
14+
15+
# Editor directories and files
16+
.vscode/*
17+
!.vscode/extensions.json
18+
.idea
19+
.DS_Store
20+
*.suo
21+
*.ntvs*
22+
*.njsproj
23+
*.sln
24+
*.sw?

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2023 RadonCoding
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

index.html

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
<html lang="en">
2+
<head>
3+
<meta charset="UTF-8" />
4+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
5+
<script type="module" src="src/main.ts"></script>
6+
<script type="module" src="src/compiler"></script>
7+
<link
8+
rel="stylesheet"
9+
href="https://site-assets.fontawesome.com/releases/v6.4.0/css/all.css"
10+
/>
11+
<link
12+
rel="icon"
13+
href="https://avatars.githubusercontent.com/u/86915746?v=4"
14+
/>
15+
<title>RadonCoding</title>
16+
</head>
17+
<body>
18+
<main>
19+
<div class="portfolio">
20+
<img
21+
class="profile"
22+
src="https://avatars.githubusercontent.com/u/86915746?v=4"
23+
/>
24+
<div class="details">
25+
<h2>RadonCoding</h2>
26+
<pre class="comment">
27+
/**
28+
* - Full-stack developer
29+
* - Reverse engineer
30+
*
31+
* - Languages I use often:
32+
* C/C++, C#, Rust, Java,
33+
* JavaScript, Python, Go
34+
*
35+
*/</pre
36+
>
37+
</div>
38+
<div class="contacts">
39+
<a class="tooltip" href="https://github.com/RadonCoding">
40+
<i class="fa-brands fa-github"></i>
41+
<span class="tooltip-text">Open GitHub</span>
42+
</a>
43+
<a class="tooltip copy" data-text="radonreborn">
44+
<i class="fa-brands fa-discord"></i>
45+
<span class="tooltip-text">Copy Username</span>
46+
</a>
47+
</div>
48+
</div>
49+
<div class="container">
50+
<div class="compiler">
51+
<header>
52+
Compiler
53+
<a id="compile-button"><i class="fa-solid fa-gears"></i></a>
54+
</header>
55+
<div id="error-tooltip" class="error-tooltip"></div>
56+
<div class="compiler-io">
57+
<pre
58+
id="compiler-input"
59+
contenteditable="true"
60+
spellcheck="false"
61+
class="io"
62+
></pre>
63+
<div class="output-section" id="output-section">
64+
<div class="output-header">
65+
<span class="output-title">Output</span>
66+
<button class="toggle" id="toggle-output">
67+
<i class="fas fa-chevron-down"></i>
68+
</button>
69+
</div>
70+
<div id="compiler-output" class="io" readonly></div>
71+
</div>
72+
</div>
73+
</div>
74+
</div>
75+
</main>
76+
</body>
77+
</html>

0 commit comments

Comments
 (0)