Skip to content
This repository was archived by the owner on Feb 11, 2026. It is now read-only.

Commit dff75ef

Browse files
committed
site deploy
0 parents  commit dff75ef

179 files changed

Lines changed: 27512 additions & 0 deletions

File tree

Some content is hidden

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

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
lonami.dev

ascii.html

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
<!DOCTYPE html><html><head><meta charset="utf-8"><meta name="description" content="Get in. Get typing. Get codepoint. Get copying. Get out. GGGGG"><meta name="theme-color" content="#000"><title>ASCII code points</title><style>
2+
body {
3+
margin: 0;
4+
overflow: hidden;
5+
}
6+
input {
7+
border: none;
8+
outline: none;
9+
color: transparent;
10+
background-color: #000;
11+
width: 100%;
12+
height: 100%;
13+
position: absolute;
14+
top: 0;
15+
left: 0;
16+
}
17+
ul {
18+
position: absolute;
19+
bottom: 30%;
20+
left: 39%;
21+
list-style-type: none;
22+
padding: 0;
23+
font-size: 2rem;
24+
}
25+
@supports (background-clip: text) {
26+
ul {
27+
background: linear-gradient(0deg, #fff, #000);
28+
background-clip: text;
29+
color: transparent;
30+
}
31+
}
32+
@supports not (background-clip: text) {
33+
ul {
34+
color: #fff;
35+
}
36+
}
37+
</style></head><body><input id=input><ul id=ul></ul></body><script>
38+
const input = document.getElementById('input');
39+
const ul = document.getElementById('ul')
40+
let count = 0;
41+
const max = 7;
42+
43+
input.focus()
44+
input.oninput = e => {
45+
for (c of e.target.value) {
46+
const p = c.codePointAt(0);
47+
ul.innerHTML += `<li><pre><code>${c} - ${(' ' + p).slice(-5)} - \\u${('0000' + p.toString(16)).slice(-4)}</code></pre></li>`
48+
if (count === max) {
49+
ul.children[0].remove();
50+
} else {
51+
++count;
52+
}
53+
}
54+
e.target.value = ''
55+
}
56+
</script></html>

0 commit comments

Comments
 (0)