commit 1ed823fdd0a77a48093452e7f3c13c44b213ee0e
Author: root <root@hub.scroll.pub> Date: 2024-12-27 21:38:31 +0000 Subject: Initial commit diff --git a/body.html b/body.html new file mode 100644 index 0000000..35c593e --- /dev/null +++ b/body.html @@ -0,0 +1,62 @@ +<header> + <div class="header-content"> + <h1>Welcome to My PhD Journey</h1> + <p>Exploring the frontiers of knowledge and innovation</p> + </div> +</header> + +<nav> + <ul> + <li><a href="#about">About Me</a></li> + <li><a href="#projects">Projects</a></li> + <li><a href="#publications">Publications</a></li> + <li><a href="#teaching">Teaching</a></li> + </ul> +</nav> + +<main> + <section id="about"> + <h2>About Me</h2> + <div class="about-content"> + <img src="profile.jpg" alt="Profile Picture" class="profile-img"> + <p>Hi! I'm a passionate PhD student dedicated to advancing research in my field. My journey is fueled by curiosity and a drive to make meaningful contributions to science and society.</p> + </div> + </section> + + <section id="projects"> + <h2>Projects</h2> + <div class="project-grid"> + <div class="project-card"> + <h3>Project 1</h3> + <p>Description of the first project, including goals and achievements.</p> + </div> + <div class="project-card"> + <h3>Project 2</h3> + <p>Description of the second project, including goals and achievements.</p> + </div> + </div> + </section> + + <section id="publications"> + <h2>Publications</h2> + <ul class="publication-list"> + <li>Publication 1 - Journal Name, Year</li> + <li>Publication 2 - Conference Name, Year</li> + </ul> + </section> + + <section id="teaching"> + <h2>Teaching</h2> + <div class="teaching-content"> + <p>I am committed to sharing knowledge and mentoring the next generation of researchers. Here are some of the courses I have taught:</p> + <ul> + <li>Course 1 - University Name, Year</li> + <li>Course 2 - University Name, Year</li> + </ul> + </div> + </section> +</main> + +<footer> + <p>Connect with me on <a href="mailto:email@example.com">email@example.com</a></p> +</footer> \ No newline at end of file diff --git a/index.scroll b/index.scroll new file mode 100644 index 0000000..4a61b89 --- /dev/null +++ b/index.scroll @@ -0,0 +1,8 @@ +buildHtml +baseUrl https://phdjourney.scroll.pub +metaTags +editButton /edit.html +title PhD Journey | Personal Academic Portfolio +style.css +body.html +script.js \ No newline at end of file diff --git a/prompt.json b/prompt.json new file mode 100644 index 0000000..0c9c50a --- /dev/null +++ b/prompt.json @@ -0,0 +1,25 @@ +{ + "id": "fbadcab0-0819-41f5-92fd-f5f958972f42", + "object": "chat.completion", + "created": 1735335494, + "model": "deepseek-chat", + "choices": [ + { + "index": 0, + "message": { + "role": "assistant", + "content": "---domain---\nphdjourney.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://phdjourney.scroll.pub\nmetaTags\neditButton /edit.html\ntitle PhD Journey | Personal Academic Portfolio\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header>\n <div class=\"header-content\">\n <h1>Welcome to My PhD Journey</h1>\n <p>Exploring the frontiers of knowledge and innovation</p>\n </div>\n</header>\n\n<nav>\n <ul>\n <li><a href=\"#about\">About Me</a></li>\n <li><a href=\"#projects\">Projects</a></li>\n <li><a href=\"#publications\">Publications</a></li>\n <li><a href=\"#teaching\">Teaching</a></li>\n </ul>\n</nav>\n\n<main>\n <section id=\"about\">\n <h2>About Me</h2>\n <div class=\"about-content\">\n <img src=\"profile.jpg\" alt=\"Profile Picture\" class=\"profile-img\">\n <p>Hi! I'm a passionate PhD student dedicated to advancing research in my field. My journey is fueled by curiosity and a drive to make meaningful contributions to science and society.</p>\n </div>\n </section>\n\n <section id=\"projects\">\n <h2>Projects</h2>\n <div class=\"project-grid\">\n <div class=\"project-card\">\n <h3>Project 1</h3>\n <p>Description of the first project, including goals and achievements.</p>\n </div>\n <div class=\"project-card\">\n <h3>Project 2</h3>\n <p>Description of the second project, including goals and achievements.</p>\n </div>\n </div>\n </section>\n\n <section id=\"publications\">\n <h2>Publications</h2>\n <ul class=\"publication-list\">\n <li>Publication 1 - Journal Name, Year</li>\n <li>Publication 2 - Conference Name, Year</li>\n </ul>\n </section>\n\n <section id=\"teaching\">\n <h2>Teaching</h2>\n <div class=\"teaching-content\">\n <p>I am committed to sharing knowledge and mentoring the next generation of researchers. Here are some of the courses I have taught:</p>\n <ul>\n <li>Course 1 - University Name, Year</li>\n <li>Course 2 - University Name, Year</li>\n </ul>\n </div>\n </section>\n</main>\n\n<footer>\n <p>Connect with me on <a href=\"mailto:email@example.com\">email@example.com</a></p>\n</footer>\n---style.css---\nbody {\n font-family: 'Arial', sans-serif;\n margin: 0;\n padding: 0;\n background-color: #f4f4f9;\n color: #333;\n}\n\nheader {\n background: linear-gradient(135deg, #6a11cb, #2575fc);\n color: white;\n padding: 60px 20px;\n text-align: center;\n}\n\nheader h1 {\n font-size: 2.5em;\n margin: 0;\n}\n\nheader p {\n font-size: 1.2em;\n margin: 10px 0 0;\n}\n\nnav {\n background: #333;\n padding: 10px 0;\n text-align: center;\n}\n\nnav ul {\n list-style: none;\n padding: 0;\n margin: 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-size: 1.1em;\n}\n\nmain {\n padding: 20px;\n}\n\nsection {\n margin-bottom: 40px;\n}\n\nh2 {\n font-size: 2em;\n margin-bottom: 20px;\n color: #2575fc;\n}\n\n.about-content {\n display: flex;\n align-items: center;\n gap: 20px;\n}\n\n.profile-img {\n border-radius: 50%;\n width: 150px;\n height: 150px;\n object-fit: cover;\n}\n\n.project-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n gap: 20px;\n}\n\n.project-card {\n background: white;\n padding: 20px;\n border-radius: 8px;\n box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);\n}\n\n.publication-list {\n list-style: none;\n padding: 0;\n}\n\n.publication-list li {\n background: white;\n padding: 10px;\n margin-bottom: 10px;\n border-radius: 4px;\n box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);\n}\n\n.teaching-content {\n background: white;\n padding: 20px;\n border-radius: 8px;\n box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);\n}\n\nfooter {\n background: #333;\n color: white;\n text-align: center;\n padding: 20px;\n margin-top: 40px;\n}\n\nfooter a {\n color: #2575fc;\n text-decoration: none;\n}\n\n@media (max-width: 768px) {\n .about-content {\n flex-direction: column;\n text-align: center;\n }\n\n .profile-img {\n margin-bottom: 20px;\n }\n\n nav ul li {\n display: block;\n margin: 10px 0;\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": 261, + "completion_tokens": 1341, + "total_tokens": 1602, + "prompt_cache_hit_tokens": 0, + "prompt_cache_miss_tokens": 261 + }, + "system_fingerprint": "fp_f1afce2943" +} \ No newline at end of file diff --git a/readme.scroll b/readme.scroll new file mode 100644 index 0000000..c2092e9 --- /dev/null +++ b/readme.scroll @@ -0,0 +1,2 @@ +# phdjourney1.scroll.pub +Website generated by DeepSeek from prompt: Create a website for a new PhD student, including spaces for personal information, projects, publications, and teaching. Be creative and visually cool \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..5716c79 --- /dev/null +++ b/script.js @@ -0,0 +1,9 @@ +// 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' + }); + }); +}); \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..08544c0 --- /dev/null +++ b/style.css @@ -0,0 +1,136 @@ +body { + font-family: 'Arial', sans-serif; + margin: 0; + padding: 0; + background-color: #f4f4f9; + color: #333; +} + +header { + background: linear-gradient(135deg, #6a11cb, #2575fc); + color: white; + padding: 60px 20px; + text-align: center; +} + +header h1 { + font-size: 2.5em; + margin: 0; +} + +header p { + font-size: 1.2em; + margin: 10px 0 0; +} + +nav { + background: #333; + padding: 10px 0; + text-align: center; +} + +nav ul { + list-style: none; + padding: 0; + margin: 0; +} + +nav ul li { + display: inline; + margin: 0 15px; +} + +nav ul li a { + color: white; + text-decoration: none; + font-size: 1.1em; +} + +main { + padding: 20px; +} + +section { + margin-bottom: 40px; +} + +h2 { + font-size: 2em; + margin-bottom: 20px; + color: #2575fc; +} + +.about-content { + display: flex; + align-items: center; + gap: 20px; +} + +.profile-img { + border-radius: 50%; + width: 150px; + height: 150px; + object-fit: cover; +} + +.project-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); + gap: 20px; +} + +.project-card { + background: white; + padding: 20px; + border-radius: 8px; + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); +} + +.publication-list { + list-style: none; + padding: 0; +} + +.publication-list li { + background: white; + padding: 10px; + margin-bottom: 10px; + border-radius: 4px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); +} + +.teaching-content { + background: white; + padding: 20px; + border-radius: 8px; + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); +} + +footer { + background: #333; + color: white; + text-align: center; + padding: 20px; + margin-top: 40px; +} + +footer a { + color: #2575fc; + text-decoration: none; +} + +@media (max-width: 768px) { + .about-content { + flex-direction: column; + text-align: center; + } + + .profile-img { + margin-bottom: 20px; + } + + nav ul li { + display: block; + margin: 10px 0; + } +} \ No newline at end of file