Changes to cs.scroll.pub

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

Computer Science Essentials

+
+
    +
    +
    +
    +
    +
    +
    +

    What is Computer Science?

    +

    Computer Science is the study of computers and computational systems. It involves both theoretical and practical aspects, including algorithms, data structures, software development, and more.

    +
    +
    +
    +

    Key Topics in Computer Science

    +
      +
    • Algorithms and Data Structures
    • +
    • Programming Languages
    • +
    • Artificial Intelligence
    • +
    • Machine Learning
    • +
    • Computer Networks
    • +
    • Cybersecurity
    • +
      +
      +
      +
      +

      Resources

      +

      Explore more about computer science through these resources:

      +
        +
        +
        +
        +
        +
        +

        Learn more about the fascinating world of computer science.

        +
        index.scroll
        Changed around line 1
        + buildHtml
        + baseUrl https://cs.scroll.pub
        + metaTags
        + editButton /edit.html
        + title Computer Science Essentials
        + style.css
        + body.html
        + script.js
        prompt.json
        Changed around line 1
        + {
        + "id": "92902b07-c638-4561-83ca-2a5b1f6b296c",
        + "object": "chat.completion",
        + "created": 1735447954,
        + "model": "deepseek-chat",
        + "choices": [
        + {
        + "index": 0,
        + "message": {
        + "role": "assistant",
        + "content": "---domain---\ncs.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://cs.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Computer Science Essentials\nstyle.css\nbody.html\nscript.js\n---body.html---\n
        \n

        Computer Science Essentials

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

        What is Computer Science?

        \n

        Computer Science is the study of computers and computational systems. It involves both theoretical and practical aspects, including algorithms, data structures, software development, and more.

        \n
        \n\n
        \n

        Key Topics in Computer Science

        \n
          \n
        • Algorithms and Data Structures
        • \n
        • Programming Languages
        • \n
        • Artificial Intelligence
        • \n
        • Machine Learning
        • \n
        • Computer Networks
        • \n
        • Cybersecurity
        • \n
        \n
        \n\n
        \n

        Resources

        \n

        Explore more about computer science through these resources:

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

        Learn more about the fascinating world of computer science.

        \n
        \n---style.css---\nbody {\n font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;\n margin: 0;\n padding: 0;\n background-color: #f4f4f9;\n color: #333;\n}\n\nheader {\n background-color: #6200ea;\n color: white;\n padding: 20px;\n text-align: center;\n}\n\nheader h1 {\n margin: 0;\n font-size: 2.5em;\n}\n\nnav ul {\n list-style-type: none;\n padding: 0;\n}\n\nnav ul li {\n display: inline;\n margin: 0 15px;\n}\n\nnav ul li a {\n color: white;\n text-decoration: none;\n font-weight: bold;\n}\n\nmain {\n padding: 20px;\n}\n\nsection {\n margin-bottom: 40px;\n}\n\nsection h2 {\n color: #6200ea;\n font-size: 2em;\n margin-bottom: 10px;\n}\n\nsection p, section ul {\n font-size: 1.1em;\n line-height: 1.6;\n}\n\nfooter {\n background-color: #333;\n color: white;\n text-align: center;\n padding: 10px;\n position: fixed;\n width: 100%;\n bottom: 0;\n}\n\n@media (max-width: 768px) {\n header h1 {\n font-size: 2em;\n }\n\n nav ul li {\n display: block;\n margin: 10px 0;\n }\n\n section h2 {\n font-size: 1.5em;\n }\n\n section p, section ul {\n font-size: 1em;\n }\n}\n---script.js---\n// Smooth scrolling for anchor links\ndocument.querySelectorAll('a[href^=\"#\"]').forEach(anchor => {\n anchor.addEventListener('click', function (e) {\n e.preventDefault();\n document.querySelector(this.getAttribute('href')).scrollIntoView({\n behavior: 'smooth'\n });\n });\n});\n---end---"
        + },
        + "logprobs": null,
        + "finish_reason": "stop"
        + }
        + ],
        + "usage": {
        + "prompt_tokens": 236,
        + "completion_tokens": 849,
        + "total_tokens": 1085,
        + "prompt_cache_hit_tokens": 0,
        + "prompt_cache_miss_tokens": 236
        + },
        + "system_fingerprint": "fp_f1afce2943"
        + }
        readme.scroll
        Changed around line 1
        + # cs.scroll.pub
        + Website generated by DeepSeek from prompt: computer science
        script.js
        Changed around line 1
        + // Smooth scrolling for anchor links
        + document.querySelectorAll('a[href^="#"]').forEach(anchor => {
        + anchor.addEventListener('click', function (e) {
        + e.preventDefault();
        + document.querySelector(this.getAttribute('href')).scrollIntoView({
        + behavior: 'smooth'
        + });
        + });
        + });
        style.css
        Changed around line 1
        + body {
        + font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        + margin: 0;
        + padding: 0;
        + background-color: #f4f4f9;
        + color: #333;
        + }
        +
        + header {
        + background-color: #6200ea;
        + color: white;
        + padding: 20px;
        + text-align: center;
        + }
        +
        + header h1 {
        + margin: 0;
        + font-size: 2.5em;
        + }
        +
        + nav ul {
        + list-style-type: none;
        + padding: 0;
        + }
        +
        + nav ul li {
        + display: inline;
        + margin: 0 15px;
        + }
        +
        + nav ul li a {
        + color: white;
        + text-decoration: none;
        + font-weight: bold;
        + }
        +
        + main {
        + padding: 20px;
        + }
        +
        + section {
        + margin-bottom: 40px;
        + }
        +
        + section h2 {
        + color: #6200ea;
        + font-size: 2em;
        + margin-bottom: 10px;
        + }
        +
        + section p, section ul {
        + font-size: 1.1em;
        + line-height: 1.6;
        + }
        +
        + footer {
        + background-color: #333;
        + color: white;
        + text-align: center;
        + padding: 10px;
        + position: fixed;
        + width: 100%;
        + bottom: 0;
        + }
        +
        + @media (max-width: 768px) {
        + header h1 {
        + font-size: 2em;
        + }
        +
        + nav ul li {
        + display: block;
        + margin: 10px 0;
        + }
        +
        + section h2 {
        + font-size: 1.5em;
        + }
        +
        + section p, section ul {
        + font-size: 1em;
        + }
        + }