Changes to starnamesorter.scroll.pub

root
root
25 days ago
Initial commit
body.html
Changed around line 1
+
+

Star Name Sorter

+

Sort your favorite star names alphabetically with ease!

+
+
+
+
+
+
+
+
+
+

Sorted Star Names

+
+
+
+
+
+

Enjoy exploring the stars!

+
index.scroll
Changed around line 1
+ buildHtml
+ baseUrl https://starnamesorter.scroll.pub
+ metaTags
+ editButton /edit.html
+ title Star Name Sorter
+ style.css
+ body.html
+ script.js
prompt.json
Changed around line 1
+ {
+ "id": "f61570fa-7cf6-4471-b099-b1e398cecfbf",
+ "object": "chat.completion",
+ "created": 1735325808,
+ "model": "deepseek-chat",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "---domain---\nstarnamesorter.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://starnamesorter.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Star Name Sorter\nstyle.css\nbody.html\nscript.js\n---body.html---\n
\n

Star Name Sorter

\n

Sort your favorite star names alphabetically with ease!

\n
\n\n
\n
\n \n \n
\n\n
\n

Sorted Star Names

\n
\n
\n
\n\n
\n

Enjoy exploring the stars!

\n
\n---style.css---\nbody {\n font-family: 'Arial', sans-serif;\n background-color: #0a192f;\n color: #ccd6f6;\n margin: 0;\n padding: 20px;\n line-height: 1.6;\n}\n\nheader {\n text-align: center;\n margin-bottom: 40px;\n}\n\nh1 {\n color: #64ffda;\n font-size: 2.5rem;\n}\n\np {\n color: #8892b0;\n}\n\nmain {\n max-width: 800px;\n margin: 0 auto;\n}\n\ntextarea {\n width: 100%;\n height: 150px;\n padding: 10px;\n border: 2px solid #64ffda;\n border-radius: 5px;\n background-color: #112240;\n color: #ccd6f6;\n font-size: 1rem;\n margin-bottom: 20px;\n}\n\nbutton {\n display: block;\n width: 100%;\n padding: 10px;\n background-color: #64ffda;\n color: #0a192f;\n border: none;\n border-radius: 5px;\n font-size: 1rem;\n cursor: pointer;\n transition: background-color 0.3s ease;\n}\n\nbutton:hover {\n background-color: #52e3c2;\n}\n\n#sortedNames {\n background-color: #112240;\n padding: 20px;\n border-radius: 5px;\n margin-top: 20px;\n}\n\nfooter {\n text-align: center;\n margin-top: 40px;\n color: #8892b0;\n}\n\n@media (max-width: 768px) {\n h1 {\n font-size: 2rem;\n }\n\n textarea {\n height: 100px;\n }\n}\n---script.js---\ndocument.getElementById('sortButton').addEventListener('click', function() {\n const starNames = document.getElementById('starNames').value;\n const namesArray = starNames.split('\\n').map(name => name.trim()).filter(name => name.length > 0);\n const sortedNames = namesArray.sort((a, b) => a.localeCompare(b));\n document.getElementById('sortedNames').innerHTML = sortedNames.join('
');\n});\n---end---"
+ },
+ "logprobs": null,
+ "finish_reason": "stop"
+ }
+ ],
+ "usage": {
+ "prompt_tokens": 238,
+ "completion_tokens": 687,
+ "total_tokens": 925,
+ "prompt_cache_hit_tokens": 0,
+ "prompt_cache_miss_tokens": 238
+ },
+ "system_fingerprint": "fp_f1afce2943"
+ }
readme.scroll
Changed around line 1
+ # starnamesorter.scroll.pub
+ Website generated by DeepSeek from prompt: Star Name Sorter
script.js
Changed around line 1
+ document.getElementById('sortButton').addEventListener('click', function() {
+ const starNames = document.getElementById('starNames').value;
+ const namesArray = starNames.split('\n').map(name => name.trim()).filter(name => name.length > 0);
+ const sortedNames = namesArray.sort((a, b) => a.localeCompare(b));
+ document.getElementById('sortedNames').innerHTML = sortedNames.join('
');
+ });
style.css
Changed around line 1
+ body {
+ font-family: 'Arial', sans-serif;
+ background-color: #0a192f;
+ color: #ccd6f6;
+ margin: 0;
+ padding: 20px;
+ line-height: 1.6;
+ }
+
+ header {
+ text-align: center;
+ margin-bottom: 40px;
+ }
+
+ h1 {
+ color: #64ffda;
+ font-size: 2.5rem;
+ }
+
+ p {
+ color: #8892b0;
+ }
+
+ main {
+ max-width: 800px;
+ margin: 0 auto;
+ }
+
+ textarea {
+ width: 100%;
+ height: 150px;
+ padding: 10px;
+ border: 2px solid #64ffda;
+ border-radius: 5px;
+ background-color: #112240;
+ color: #ccd6f6;
+ font-size: 1rem;
+ margin-bottom: 20px;
+ }
+
+ button {
+ display: block;
+ width: 100%;
+ padding: 10px;
+ background-color: #64ffda;
+ color: #0a192f;
+ border: none;
+ border-radius: 5px;
+ font-size: 1rem;
+ cursor: pointer;
+ transition: background-color 0.3s ease;
+ }
+
+ button:hover {
+ background-color: #52e3c2;
+ }
+
+ #sortedNames {
+ background-color: #112240;
+ padding: 20px;
+ border-radius: 5px;
+ margin-top: 20px;
+ }
+
+ footer {
+ text-align: center;
+ margin-top: 40px;
+ color: #8892b0;
+ }
+
+ @media (max-width: 768px) {
+ h1 {
+ font-size: 2rem;
+ }
+
+ textarea {
+ height: 100px;
+ }
+ }