Skip to content

Commit 878756d

Browse files
author
Andrew Marcuse
committed
AI-coded bytecount working
1 parent c8a236e commit 878756d

13 files changed

Lines changed: 1382 additions & 367 deletions

File tree

README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# tools.fileformat.info
2+
3+
These are some useful tools for viewing, analyzing and fixing file formats. They are web-based, but do all processing locally in your browser.
4+
5+
6+
## Tools
7+
8+
NONE YET
9+
10+
## License
11+
12+
AGPL-3.0-or-later
13+
14+
## Credits
15+
16+
## To do
17+
18+
- [ ] asciify - convert all chars to ASCII
19+
- [ ] bytecount - count bytes
20+
- [ ] runecount - count Unicode runes

bytecount.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>Bytecount</title>
8+
</head>
9+
<body>
10+
<div id="app"></div>
11+
<script type="module" src="/src/bytecount.ts"></script>
12+
</body>
13+
</html>

0 commit comments

Comments
 (0)