commit c103b9f761100808ffec61d6f19597568b46eafa
Author: root <root@hub.scroll.pub>
Date: 2024-12-27 18:34:40 +0000
Subject: Initial commit
diff --git a/body.html b/body.html
new file mode 100644
index 0000000..1521eb8
--- /dev/null
+++ b/body.html
@@ -0,0 +1,59 @@
+<header>
+ <nav>
+ <ul>
+ <li><a href="#about">About</a></li>
+ <li><a href="#skills">Skills</a></li>
+ <li><a href="#projects">Projects</a></li>
+ <li><a href="#contact">Contact</a></li>
+ </ul>
+ </nav>
+ <div class="hero">
+ <h1>AI & ML Researcher</h1>
+ <p>Exploring the frontiers of Artificial Intelligence and Machine Learning</p>
+ </div>
+</header>
+
+<section id="about">
+ <h2>About Me</h2>
+ <p>I am a second-year student pursuing Artificial Intelligence and Machine Learning with a keen interest in research. My passion lies in exploring innovative solutions to complex problems using AI/ML techniques.</p>
+</section>
+
+<section id="skills">
+ <h2>Skills</h2>
+ <ul>
+ <li>Machine Learning Algorithms</li>
+ <li>Deep Learning</li>
+ <li>Data Analysis</li>
+ <li>Python Programming</li>
+ <li>Research Methodology</li>
+ </ul>
+</section>
+
+<section id="projects">
+ <h2>Projects</h2>
+ <div class="project">
+ <h3>Predictive Analytics</h3>
+ <p>Developed a predictive model using regression techniques to forecast sales trends.</p>
+ </div>
+ <div class="project">
+ <h3>Image Classification</h3>
+ <p>Implemented a convolutional neural network (CNN) for image classification tasks.</p>
+ </div>
+</section>
+
+<section id="contact">
+ <h2>Contact</h2>
+ <form id="contactForm">
+ <label for="name">Name:</label>
+ <input type="text" id="name" name="name" required>
+ <label for="email">Email:</label>
+ <input type="email" id="email" name="email" required>
+ <label for="message">Message:</label>
+ <textarea id="message" name="message" required></textarea>
+ <button type="submit">Send</button>
+ </form>
+</section>
+
+<footer>
+ <p>Connect with me on <a href="#">LinkedIn</a> | <a href="#">GitHub</a></p>
+</footer>
\ No newline at end of file
diff --git a/index.scroll b/index.scroll
new file mode 100644
index 0000000..35694fc
--- /dev/null
+++ b/index.scroll
@@ -0,0 +1,8 @@
+buildHtml
+baseUrl https://ai-researcher.scroll.pub
+metaTags
+editButton /edit.html
+title AI & ML Researcher 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..4ff7522
--- /dev/null
+++ b/prompt.json
@@ -0,0 +1,25 @@
+{
+ "id": "7417f5f0-dd2a-4f82-9da7-82d223260d85",
+ "object": "chat.completion",
+ "created": 1735324465,
+ "model": "deepseek-chat",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "---domain---\nai-researcher.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://ai-researcher.scroll.pub\nmetaTags\neditButton /edit.html\ntitle AI & ML Researcher Portfolio\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header>\n <nav>\n <ul>\n <li><a href=\"#about\">About</a></li>\n <li><a href=\"#skills\">Skills</a></li>\n <li><a href=\"#projects\">Projects</a></li>\n <li><a href=\"#contact\">Contact</a></li>\n </ul>\n </nav>\n <div class=\"hero\">\n <h1>AI & ML Researcher</h1>\n <p>Exploring the frontiers of Artificial Intelligence and Machine Learning</p>\n </div>\n</header>\n\n<section id=\"about\">\n <h2>About Me</h2>\n <p>I am a second-year student pursuing Artificial Intelligence and Machine Learning with a keen interest in research. My passion lies in exploring innovative solutions to complex problems using AI/ML techniques.</p>\n</section>\n\n<section id=\"skills\">\n <h2>Skills</h2>\n <ul>\n <li>Machine Learning Algorithms</li>\n <li>Deep Learning</li>\n <li>Data Analysis</li>\n <li>Python Programming</li>\n <li>Research Methodology</li>\n </ul>\n</section>\n\n<section id=\"projects\">\n <h2>Projects</h2>\n <div class=\"project\">\n <h3>Predictive Analytics</h3>\n <p>Developed a predictive model using regression techniques to forecast sales trends.</p>\n </div>\n <div class=\"project\">\n <h3>Image Classification</h3>\n <p>Implemented a convolutional neural network (CNN) for image classification tasks.</p>\n </div>\n</section>\n\n<section id=\"contact\">\n <h2>Contact</h2>\n <form id=\"contactForm\">\n <label for=\"name\">Name:</label>\n <input type=\"text\" id=\"name\" name=\"name\" required>\n <label for=\"email\">Email:</label>\n <input type=\"email\" id=\"email\" name=\"email\" required>\n <label for=\"message\">Message:</label>\n <textarea id=\"message\" name=\"message\" required></textarea>\n <button type=\"submit\">Send</button>\n </form>\n</section>\n\n<footer>\n <p>Connect with me on <a href=\"#\">LinkedIn</a> | <a href=\"#\">GitHub</a></p>\n</footer>\n---style.css---\nbody {\n font-family: 'Arial', sans-serif;\n line-height: 1.6;\n margin: 0;\n padding: 0;\n background-color: #f4f4f4;\n color: #333;\n}\n\nheader {\n background: #333;\n color: #fff;\n padding: 1rem 0;\n text-align: center;\n}\n\nheader .hero {\n padding: 2rem;\n}\n\nheader .hero h1 {\n margin: 0;\n font-size: 2.5rem;\n}\n\nheader .hero p {\n font-size: 1.2rem;\n}\n\nnav ul {\n list-style: none;\n padding: 0;\n}\n\nnav ul li {\n display: inline;\n margin: 0 10px;\n}\n\nnav ul li a {\n color: #fff;\n text-decoration: none;\n}\n\nsection {\n padding: 2rem;\n margin: 1rem 0;\n background: #fff;\n border-radius: 5px;\n box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);\n}\n\nh2 {\n color: #333;\n margin-bottom: 1rem;\n}\n\nul {\n list-style-type: none;\n}\n\n.project {\n margin-bottom: 1rem;\n}\n\nform {\n display: flex;\n flex-direction: column;\n}\n\nform label {\n margin-bottom: 0.5rem;\n}\n\nform input, form textarea {\n margin-bottom: 1rem;\n padding: 0.5rem;\n border: 1px solid #ccc;\n border-radius: 5px;\n}\n\nform button {\n padding: 0.5rem;\n background: #333;\n color: #fff;\n border: none;\n border-radius: 5px;\n cursor: pointer;\n}\n\nfooter {\n text-align: center;\n padding: 1rem;\n background: #333;\n color: #fff;\n}\n\nfooter a {\n color: #fff;\n text-decoration: none;\n}\n\n@media (max-width: 768px) {\n header .hero h1 {\n font-size: 2rem;\n }\n\n header .hero p {\n font-size: 1rem;\n }\n\n nav ul li {\n display: block;\n margin: 10px 0;\n }\n}\n---script.js---\ndocument.getElementById('contactForm').addEventListener('submit', function(event) {\n event.preventDefault();\n alert('Thank you for your message!');\n this.reset();\n});\n---end---"
+ },
+ "logprobs": null,
+ "finish_reason": "stop"
+ }
+ ],
+ "usage": {
+ "prompt_tokens": 256,
+ "completion_tokens": 1126,
+ "total_tokens": 1382,
+ "prompt_cache_hit_tokens": 0,
+ "prompt_cache_miss_tokens": 256
+ },
+ "system_fingerprint": "fp_f1afce2943"
+}
\ No newline at end of file
diff --git a/readme.scroll b/readme.scroll
new file mode 100644
index 0000000..f82bc72
--- /dev/null
+++ b/readme.scroll
@@ -0,0 +1,2 @@
+# ai-researcher.scroll.pub
+Website generated by DeepSeek from prompt: create an advance portfolio website i m currently in 2nd year pursuing ai/ml have an interest in research also
\ No newline at end of file
diff --git a/script.js b/script.js
new file mode 100644
index 0000000..dc73857
--- /dev/null
+++ b/script.js
@@ -0,0 +1,5 @@
+document.getElementById('contactForm').addEventListener('submit', function(event) {
+ event.preventDefault();
+ alert('Thank you for your message!');
+ this.reset();
+});
\ No newline at end of file
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..9e589df
--- /dev/null
+++ b/style.css
@@ -0,0 +1,116 @@
+body {
+ font-family: 'Arial', sans-serif;
+ line-height: 1.6;
+ margin: 0;
+ padding: 0;
+ background-color: #f4f4f4;
+ color: #333;
+}
+
+header {
+ background: #333;
+ color: #fff;
+ padding: 1rem 0;
+ text-align: center;
+}
+
+header .hero {
+ padding: 2rem;
+}
+
+header .hero h1 {
+ margin: 0;
+ font-size: 2.5rem;
+}
+
+header .hero p {
+ font-size: 1.2rem;
+}
+
+nav ul {
+ list-style: none;
+ padding: 0;
+}
+
+nav ul li {
+ display: inline;
+ margin: 0 10px;
+}
+
+nav ul li a {
+ color: #fff;
+ text-decoration: none;
+}
+
+section {
+ padding: 2rem;
+ margin: 1rem 0;
+ background: #fff;
+ border-radius: 5px;
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
+}
+
+h2 {
+ color: #333;
+ margin-bottom: 1rem;
+}
+
+ul {
+ list-style-type: none;
+}
+
+.project {
+ margin-bottom: 1rem;
+}
+
+form {
+ display: flex;
+ flex-direction: column;
+}
+
+form label {
+ margin-bottom: 0.5rem;
+}
+
+form input, form textarea {
+ margin-bottom: 1rem;
+ padding: 0.5rem;
+ border: 1px solid #ccc;
+ border-radius: 5px;
+}
+
+form button {
+ padding: 0.5rem;
+ background: #333;
+ color: #fff;
+ border: none;
+ border-radius: 5px;
+ cursor: pointer;
+}
+
+footer {
+ text-align: center;
+ padding: 1rem;
+ background: #333;
+ color: #fff;
+}
+
+footer a {
+ color: #fff;
+ text-decoration: none;
+}
+
+@media (max-width: 768px) {
+ header .hero h1 {
+ font-size: 2rem;
+ }
+
+ header .hero p {
+ font-size: 1rem;
+ }
+
+ nav ul li {
+ display: block;
+ margin: 10px 0;
+ }
+}
\ No newline at end of file