commit c108fed0f936455bd55cda03e2385bd96ad7b2be
Author: root <root@hub.scroll.pub>
Date: 2024-12-31 13:22:07 +0000
Subject: Initial commit
diff --git a/body.html b/body.html
new file mode 100644
index 0000000..878ebfd
--- /dev/null
+++ b/body.html
@@ -0,0 +1,65 @@
+<header>
+ <h1>PhD or OnlyFans?</h1>
+ <p>The Ultimate Decision Tool</p>
+</header>
+
+<main>
+ <section class="intro">
+ <p>Struggling to decide whether to continue your PhD or pivot to OnlyFans? This interactive tool will help you weigh your options and make an informed decision.</p>
+ </section>
+
+ <section class="calculator">
+ <h2>Decision Calculator</h2>
+ <form id="decisionForm">
+ <div class="form-group">
+ <label for="phdSatisfaction">How satisfied are you with your PhD? (1-10)</label>
+ <input type="number" id="phdSatisfaction" min="1" max="10" required>
+ </div>
+ <div class="form-group">
+ <label for="ofPotential">How successful do you think you could be on OnlyFans? (1-10)</label>
+ <input type="number" id="ofPotential" min="1" max="10" required>
+ </div>
+ <div class="form-group">
+ <label for="financialNeed">How important is financial stability to you? (1-10)</label>
+ <input type="number" id="financialNeed" min="1" max="10" required>
+ </div>
+ <div class="form-group">
+ <label for="riskTolerance">How comfortable are you with taking risks? (1-10)</label>
+ <input type="number" id="riskTolerance" min="1" max="10" required>
+ </div>
+ <button type="submit">Calculate</button>
+ </form>
+ <div id="result" class="hidden">
+ <h3>Your Decision:</h3>
+ <p id="decisionText"></p>
+ </div>
+ </section>
+
+ <section class="pros-cons">
+ <h2>Pros & Cons</h2>
+ <div class="grid">
+ <div>
+ <h3>PhD</h3>
+ <ul>
+ <li>Prestige and recognition</li>
+ <li>Long-term career stability</li>
+ <li>Intellectual fulfillment</li>
+ <li>Potential for academic impact</li>
+ </ul>
+ </div>
+ <div>
+ <h3>OnlyFans</h3>
+ <ul>
+ <li>Potential for high earnings</li>
+ <li>Flexible schedule</li>
+ <li>Creative freedom</li>
+ <li>Direct connection with audience</li>
+ </ul>
+ </div>
+ </div>
+ </section>
+</main>
+
+<footer>
+ <p>Remember, this is just a tool. The final decision is yours!</p>
+</footer>
\ No newline at end of file
diff --git a/index.scroll b/index.scroll
new file mode 100644
index 0000000..671fca8
--- /dev/null
+++ b/index.scroll
@@ -0,0 +1,8 @@
+buildHtml
+baseUrl https://phd-or-of.scroll.pub
+metaTags
+editButton /edit.html
+title PhD or OnlyFans? The Ultimate Decision Tool
+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..16c9bb9
--- /dev/null
+++ b/prompt.json
@@ -0,0 +1,25 @@
+{
+ "id": "65fb0a72-061b-4750-83c3-5baef483e55d",
+ "object": "chat.completion",
+ "created": 1735651302,
+ "model": "deepseek-chat",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "\n\n---domain---\nphd-or-of.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://phd-or-of.scroll.pub\nmetaTags\neditButton /edit.html\ntitle PhD or OnlyFans? The Ultimate Decision Tool\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header>\n <h1>PhD or OnlyFans?</h1>\n <p>The Ultimate Decision Tool</p>\n</header>\n\n<main>\n <section class=\"intro\">\n <p>Struggling to decide whether to continue your PhD or pivot to OnlyFans? This interactive tool will help you weigh your options and make an informed decision.</p>\n </section>\n\n <section class=\"calculator\">\n <h2>Decision Calculator</h2>\n <form id=\"decisionForm\">\n <div class=\"form-group\">\n <label for=\"phdSatisfaction\">How satisfied are you with your PhD? (1-10)</label>\n <input type=\"number\" id=\"phdSatisfaction\" min=\"1\" max=\"10\" required>\n </div>\n <div class=\"form-group\">\n <label for=\"ofPotential\">How successful do you think you could be on OnlyFans? (1-10)</label>\n <input type=\"number\" id=\"ofPotential\" min=\"1\" max=\"10\" required>\n </div>\n <div class=\"form-group\">\n <label for=\"financialNeed\">How important is financial stability to you? (1-10)</label>\n <input type=\"number\" id=\"financialNeed\" min=\"1\" max=\"10\" required>\n </div>\n <div class=\"form-group\">\n <label for=\"riskTolerance\">How comfortable are you with taking risks? (1-10)</label>\n <input type=\"number\" id=\"riskTolerance\" min=\"1\" max=\"10\" required>\n </div>\n <button type=\"submit\">Calculate</button>\n </form>\n <div id=\"result\" class=\"hidden\">\n <h3>Your Decision:</h3>\n <p id=\"decisionText\"></p>\n </div>\n </section>\n\n <section class=\"pros-cons\">\n <h2>Pros & Cons</h2>\n <div class=\"grid\">\n <div>\n <h3>PhD</h3>\n <ul>\n <li>Prestige and recognition</li>\n <li>Long-term career stability</li>\n <li>Intellectual fulfillment</li>\n <li>Potential for academic impact</li>\n </ul>\n </div>\n <div>\n <h3>OnlyFans</h3>\n <ul>\n <li>Potential for high earnings</li>\n <li>Flexible schedule</li>\n <li>Creative freedom</li>\n <li>Direct connection with audience</li>\n </ul>\n </div>\n </div>\n </section>\n</main>\n\n<footer>\n <p>Remember, this is just a tool. The final decision is yours!</p>\n</footer>\n---style.css---\n:root {\n --primary-color: #6c5ce7;\n --secondary-color: #a29bfe;\n --background-color: #f8f9fa;\n --text-color: #2d3436;\n --font-family: 'Segoe UI', system-ui, sans-serif;\n}\n\nbody {\n font-family: var(--font-family);\n color: var(--text-color);\n background-color: var(--background-color);\n margin: 0;\n padding: 0;\n line-height: 1.6;\n}\n\nheader {\n background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));\n color: white;\n padding: 2rem;\n text-align: center;\n}\n\nh1 {\n font-size: 2.5rem;\n margin-bottom: 0.5rem;\n}\n\np {\n font-size: 1.1rem;\n}\n\nmain {\n max-width: 800px;\n margin: 2rem auto;\n padding: 0 1rem;\n}\n\nsection {\n margin-bottom: 2rem;\n}\n\n.calculator {\n background: white;\n padding: 2rem;\n border-radius: 10px;\n box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);\n}\n\n.form-group {\n margin-bottom: 1.5rem;\n}\n\nlabel {\n display: block;\n margin-bottom: 0.5rem;\n font-weight: 600;\n}\n\ninput {\n width: 100%;\n padding: 0.5rem;\n border: 1px solid #ddd;\n border-radius: 5px;\n font-size: 1rem;\n}\n\nbutton {\n background: var(--primary-color);\n color: white;\n padding: 0.75rem 1.5rem;\n border: none;\n border-radius: 5px;\n font-size: 1rem;\n cursor: pointer;\n transition: background 0.3s ease;\n}\n\nbutton:hover {\n background: var(--secondary-color);\n}\n\n#result {\n margin-top: 2rem;\n padding: 1rem;\n background: #f0f0f0;\n border-radius: 5px;\n}\n\n.pros-cons .grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n gap: 2rem;\n}\n\nfooter {\n text-align: center;\n padding: 2rem;\n background: var(--primary-color);\n color: white;\n}\n\n@media (max-width: 600px) {\n h1 {\n font-size: 2rem;\n }\n}\n---script.js---\ndocument.getElementById('decisionForm').addEventListener('submit', function(e) {\n e.preventDefault();\n \n const phdSatisfaction = parseInt(document.getElementById('phdSatisfaction').value);\n const ofPotential = parseInt(document.getElementById('ofPotential').value);\n const financialNeed = parseInt(document.getElementById('financialNeed').value);\n const riskTolerance = parseInt(document.getElementById('riskTolerance').value);\n \n const phdScore = (phdSatisfaction * 2) + (financialNeed * 1.5);\n const ofScore = (ofPotential * 2) + (riskTolerance * 1.5);\n \n const result = document.getElementById('result');\n const decisionText = document.getElementById('decisionText');\n \n if (phdScore > ofScore) {\n decisionText.textContent = \"You should continue your PhD!\";\n } else if (ofScore > phdScore) {\n decisionText.textContent = \"You should consider starting an OnlyFans!\";\n } else {\n decisionText.textContent = \"It's a tie! You might want to explore both options further.\";\n }\n \n result.classList.remove('hidden');\n});\n---end---"
+ },
+ "logprobs": null,
+ "finish_reason": "stop"
+ }
+ ],
+ "usage": {
+ "prompt_tokens": 260,
+ "completion_tokens": 1514,
+ "total_tokens": 1774,
+ "prompt_cache_hit_tokens": 256,
+ "prompt_cache_miss_tokens": 4
+ },
+ "system_fingerprint": "fp_f1afce2943"
+}
\ No newline at end of file
diff --git a/readme.scroll b/readme.scroll
new file mode 100644
index 0000000..bd5ffc9
--- /dev/null
+++ b/readme.scroll
@@ -0,0 +1,2 @@
+# phd-or-of1.scroll.pub
+Website generated by DeepSeek from prompt: 我需要一个网站,来将决定我是否需要放弃我的博士学位去做only fans ,所以应该有一些数值工具和互动性,要有创意。
\ No newline at end of file
diff --git a/script.js b/script.js
new file mode 100644
index 0000000..6c29ccc
--- /dev/null
+++ b/script.js
@@ -0,0 +1,24 @@
+document.getElementById('decisionForm').addEventListener('submit', function(e) {
+ e.preventDefault();
+
+ const phdSatisfaction = parseInt(document.getElementById('phdSatisfaction').value);
+ const ofPotential = parseInt(document.getElementById('ofPotential').value);
+ const financialNeed = parseInt(document.getElementById('financialNeed').value);
+ const riskTolerance = parseInt(document.getElementById('riskTolerance').value);
+
+ const phdScore = (phdSatisfaction * 2) + (financialNeed * 1.5);
+ const ofScore = (ofPotential * 2) + (riskTolerance * 1.5);
+
+ const result = document.getElementById('result');
+ const decisionText = document.getElementById('decisionText');
+
+ if (phdScore > ofScore) {
+ decisionText.textContent = "You should continue your PhD!";
+ } else if (ofScore > phdScore) {
+ decisionText.textContent = "You should consider starting an OnlyFans!";
+ } else {
+ decisionText.textContent = "It's a tie! You might want to explore both options further.";
+ }
+
+ result.classList.remove('hidden');
+});
\ No newline at end of file
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..2a6af38
--- /dev/null
+++ b/style.css
@@ -0,0 +1,108 @@
+:root {
+ --primary-color: #6c5ce7;
+ --secondary-color: #a29bfe;
+ --background-color: #f8f9fa;
+ --text-color: #2d3436;
+ --font-family: 'Segoe UI', system-ui, sans-serif;
+}
+
+body {
+ font-family: var(--font-family);
+ color: var(--text-color);
+ background-color: var(--background-color);
+ margin: 0;
+ padding: 0;
+ line-height: 1.6;
+}
+
+header {
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ color: white;
+ padding: 2rem;
+ text-align: center;
+}
+
+h1 {
+ font-size: 2.5rem;
+ margin-bottom: 0.5rem;
+}
+
+p {
+ font-size: 1.1rem;
+}
+
+main {
+ max-width: 800px;
+ margin: 2rem auto;
+ padding: 0 1rem;
+}
+
+section {
+ margin-bottom: 2rem;
+}
+
+.calculator {
+ background: white;
+ padding: 2rem;
+ border-radius: 10px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+}
+
+.form-group {
+ margin-bottom: 1.5rem;
+}
+
+label {
+ display: block;
+ margin-bottom: 0.5rem;
+ font-weight: 600;
+}
+
+input {
+ width: 100%;
+ padding: 0.5rem;
+ border: 1px solid #ddd;
+ border-radius: 5px;
+ font-size: 1rem;
+}
+
+button {
+ background: var(--primary-color);
+ color: white;
+ padding: 0.75rem 1.5rem;
+ border: none;
+ border-radius: 5px;
+ font-size: 1rem;
+ cursor: pointer;
+ transition: background 0.3s ease;
+}
+
+button:hover {
+ background: var(--secondary-color);
+}
+
+#result {
+ margin-top: 2rem;
+ padding: 1rem;
+ background: #f0f0f0;
+ border-radius: 5px;
+}
+
+.pros-cons .grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+}
+
+footer {
+ text-align: center;
+ padding: 2rem;
+ background: var(--primary-color);
+ color: white;
+}
+
+@media (max-width: 600px) {
+ h1 {
+ font-size: 2rem;
+ }
+}
\ No newline at end of file