commit 5d8721eb370cbf60bd7c49b6aa9b224f9f10ccf1
Author: root <root@hub.scroll.pub>
Date: 2024-12-27 22:41:56 +0000
Subject: Initial commit
diff --git a/body.html b/body.html
new file mode 100644
index 0000000..2ef92ca
--- /dev/null
+++ b/body.html
@@ -0,0 +1,57 @@
+<header>
+ <h1>PhD or OnlyFans?</h1>
+ <p>Let's crunch the numbers and see what's best for you!</p>
+</header>
+
+<main>
+ <section class="calculator">
+ <h2>Decision Calculator</h2>
+ <form id="decisionForm">
+ <label for="phdIncome">Current PhD Stipend (per month):</label>
+ <input type="number" id="phdIncome" required>
+
+ <label for="ofPotential">Potential OnlyFans Income (per month):</label>
+ <input type="number" id="ofPotential" required>
+
+ <label for="happinessPhD">Happiness with PhD (1-10):</label>
+ <input type="number" id="happinessPhD" min="1" max="10" required>
+
+ <label for="happinessOF">Happiness with OnlyFans (1-10):</label>
+ <input type="number" id="happinessOF" min="1" max="10" required>
+
+ <button type="submit">Calculate</button>
+ </form>
+
+ <div id="result" class="hidden">
+ <h3>Your Decision:</h3>
+ <p id="decisionText"></p>
+ <p id="explanation"></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>Stable career path</li>
+ <li>Intellectual fulfillment</li>
+ </ul>
+ </div>
+ <div>
+ <h3>OnlyFans</h3>
+ <ul>
+ <li>Potential for high income</li>
+ <li>Flexible schedule</li>
+ <li>Creative freedom</li>
+ </ul>
+ </div>
+ </div>
+ </section>
+</main>
+
+<footer>
+ <p>Remember, this is just a tool. The final decision is always yours!</p>
+</footer>
\ No newline at end of file
diff --git a/index.scroll b/index.scroll
new file mode 100644
index 0000000..78e5ff4
--- /dev/null
+++ b/index.scroll
@@ -0,0 +1,8 @@
+buildHtml
+baseUrl https://phd2of.scroll.pub
+metaTags
+editButton /edit.html
+title Should I Drop My PhD for OnlyFans?
+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..add8b86
--- /dev/null
+++ b/prompt.json
@@ -0,0 +1,25 @@
+{
+ "id": "f39d1239-efa4-4519-ac94-aac253dc403f",
+ "object": "chat.completion",
+ "created": 1735339298,
+ "model": "deepseek-chat",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "---domain---\nphd2of.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://phd2of.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Should I Drop My PhD for OnlyFans?\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header>\n <h1>PhD or OnlyFans?</h1>\n <p>Let's crunch the numbers and see what's best for you!</p>\n</header>\n\n<main>\n <section class=\"calculator\">\n <h2>Decision Calculator</h2>\n <form id=\"decisionForm\">\n <label for=\"phdIncome\">Current PhD Stipend (per month):</label>\n <input type=\"number\" id=\"phdIncome\" required>\n \n <label for=\"ofPotential\">Potential OnlyFans Income (per month):</label>\n <input type=\"number\" id=\"ofPotential\" required>\n \n <label for=\"happinessPhD\">Happiness with PhD (1-10):</label>\n <input type=\"number\" id=\"happinessPhD\" min=\"1\" max=\"10\" required>\n \n <label for=\"happinessOF\">Happiness with OnlyFans (1-10):</label>\n <input type=\"number\" id=\"happinessOF\" min=\"1\" max=\"10\" required>\n \n <button type=\"submit\">Calculate</button>\n </form>\n \n <div id=\"result\" class=\"hidden\">\n <h3>Your Decision:</h3>\n <p id=\"decisionText\"></p>\n <p id=\"explanation\"></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>Stable career path</li>\n <li>Intellectual fulfillment</li>\n </ul>\n </div>\n <div>\n <h3>OnlyFans</h3>\n <ul>\n <li>Potential for high income</li>\n <li>Flexible schedule</li>\n <li>Creative freedom</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 always yours!</p>\n</footer>\n---style.css---\n:root {\n --primary: #6c5ce7;\n --secondary: #a29bfe;\n --background: #f8f9fa;\n --text: #2d3436;\n --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);\n}\n\nbody {\n font-family: system-ui, sans-serif;\n line-height: 1.6;\n color: var(--text);\n background: var(--background);\n margin: 0;\n padding: 2rem;\n}\n\nheader {\n text-align: center;\n margin-bottom: 3rem;\n}\n\nh1 {\n color: var(--primary);\n font-size: 2.5rem;\n}\n\nh2 {\n color: var(--primary);\n margin-top: 2rem;\n}\n\n.calculator {\n max-width: 600px;\n margin: 0 auto;\n padding: 2rem;\n background: white;\n border-radius: 8px;\n box-shadow: var(--shadow);\n}\n\nform {\n display: grid;\n gap: 1rem;\n}\n\nlabel {\n font-weight: bold;\n}\n\ninput {\n padding: 0.5rem;\n border: 1px solid #ddd;\n border-radius: 4px;\n}\n\nbutton {\n background: var(--primary);\n color: white;\n padding: 0.75rem;\n border: none;\n border-radius: 4px;\n cursor: pointer;\n transition: background 0.3s;\n}\n\nbutton:hover {\n background: var(--secondary);\n}\n\n#result {\n margin-top: 2rem;\n padding: 1rem;\n background: #f0f0f0;\n border-radius: 4px;\n}\n\n.pros-cons {\n max-width: 800px;\n margin: 3rem auto;\n}\n\n.grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n gap: 2rem;\n}\n\nul {\n list-style: none;\n padding: 0;\n}\n\nli {\n padding: 0.5rem 0;\n}\n\nfooter {\n text-align: center;\n margin-top: 3rem;\n padding: 1rem;\n border-top: 1px solid #ddd;\n}\n\n@media (max-width: 600px) {\n h1 {\n font-size: 2rem;\n }\n \n .calculator {\n padding: 1rem;\n }\n}\n---script.js---\ndocument.getElementById('decisionForm').addEventListener('submit', function(e) {\n e.preventDefault();\n \n // Get input values\n const phdIncome = parseFloat(document.getElementById('phdIncome').value);\n const ofPotential = parseFloat(document.getElementById('ofPotential').value);\n const happinessPhD = parseInt(document.getElementById('happinessPhD').value);\n const happinessOF = parseInt(document.getElementById('happinessOF').value);\n \n // Calculate weighted scores\n const phdScore = (phdIncome * 0.4) + (happinessPhD * 60);\n const ofScore = (ofPotential * 0.4) + (happinessOF * 60);\n \n // Determine decision\n const resultDiv = document.getElementById('result');\n const decisionText = document.getElementById('decisionText');\n const explanation = document.getElementById('explanation');\n \n if (ofScore > phdScore) {\n decisionText.textContent = \"Consider OnlyFans!\";\n explanation.textContent = \"Based on your inputs, OnlyFans seems to be the better choice for you right now.\";\n } else {\n decisionText.textContent = \"Stick with your PhD!\";\n explanation.textContent = \"Based on your inputs, continuing your PhD seems to be the better choice for you right now.\";\n }\n \n resultDiv.classList.remove('hidden');\n});\n---end---"
+ },
+ "logprobs": null,
+ "finish_reason": "stop"
+ }
+ ],
+ "usage": {
+ "prompt_tokens": 268,
+ "completion_tokens": 1385,
+ "total_tokens": 1653,
+ "prompt_cache_hit_tokens": 0,
+ "prompt_cache_miss_tokens": 268
+ },
+ "system_fingerprint": "fp_f1afce2943"
+}
\ No newline at end of file
diff --git a/readme.scroll b/readme.scroll
new file mode 100644
index 0000000..fc4e4f6
--- /dev/null
+++ b/readme.scroll
@@ -0,0 +1,2 @@
+# phd2of3.scroll.pub
+Website generated by DeepSeek from prompt: I want a website that will help decide if I should drop out of PhD program to do only Fans. So it should have some numerical tools and interactivity. Be creative
\ No newline at end of file
diff --git a/script.js b/script.js
new file mode 100644
index 0000000..1ae7f51
--- /dev/null
+++ b/script.js
@@ -0,0 +1,28 @@
+document.getElementById('decisionForm').addEventListener('submit', function(e) {
+ e.preventDefault();
+
+ // Get input values
+ const phdIncome = parseFloat(document.getElementById('phdIncome').value);
+ const ofPotential = parseFloat(document.getElementById('ofPotential').value);
+ const happinessPhD = parseInt(document.getElementById('happinessPhD').value);
+ const happinessOF = parseInt(document.getElementById('happinessOF').value);
+
+ // Calculate weighted scores
+ const phdScore = (phdIncome * 0.4) + (happinessPhD * 60);
+ const ofScore = (ofPotential * 0.4) + (happinessOF * 60);
+
+ // Determine decision
+ const resultDiv = document.getElementById('result');
+ const decisionText = document.getElementById('decisionText');
+ const explanation = document.getElementById('explanation');
+
+ if (ofScore > phdScore) {
+ decisionText.textContent = "Consider OnlyFans!";
+ explanation.textContent = "Based on your inputs, OnlyFans seems to be the better choice for you right now.";
+ } else {
+ decisionText.textContent = "Stick with your PhD!";
+ explanation.textContent = "Based on your inputs, continuing your PhD seems to be the better choice for you right now.";
+ }
+
+ resultDiv.classList.remove('hidden');
+});
\ No newline at end of file
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..9061d29
--- /dev/null
+++ b/style.css
@@ -0,0 +1,113 @@
+:root {
+ --primary: #6c5ce7;
+ --secondary: #a29bfe;
+ --background: #f8f9fa;
+ --text: #2d3436;
+ --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+}
+
+body {
+ font-family: system-ui, sans-serif;
+ line-height: 1.6;
+ color: var(--text);
+ background: var(--background);
+ margin: 0;
+ padding: 2rem;
+}
+
+header {
+ text-align: center;
+ margin-bottom: 3rem;
+}
+
+h1 {
+ color: var(--primary);
+ font-size: 2.5rem;
+}
+
+h2 {
+ color: var(--primary);
+ margin-top: 2rem;
+}
+
+.calculator {
+ max-width: 600px;
+ margin: 0 auto;
+ padding: 2rem;
+ background: white;
+ border-radius: 8px;
+ box-shadow: var(--shadow);
+}
+
+form {
+ display: grid;
+ gap: 1rem;
+}
+
+label {
+ font-weight: bold;
+}
+
+input {
+ padding: 0.5rem;
+ border: 1px solid #ddd;
+ border-radius: 4px;
+}
+
+button {
+ background: var(--primary);
+ color: white;
+ padding: 0.75rem;
+ border: none;
+ border-radius: 4px;
+ cursor: pointer;
+ transition: background 0.3s;
+}
+
+button:hover {
+ background: var(--secondary);
+}
+
+#result {
+ margin-top: 2rem;
+ padding: 1rem;
+ background: #f0f0f0;
+ border-radius: 4px;
+}
+
+.pros-cons {
+ max-width: 800px;
+ margin: 3rem auto;
+}
+
+.grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+}
+
+ul {
+ list-style: none;
+ padding: 0;
+}
+
+li {
+ padding: 0.5rem 0;
+}
+
+footer {
+ text-align: center;
+ margin-top: 3rem;
+ padding: 1rem;
+ border-top: 1px solid #ddd;
+}
+
+@media (max-width: 600px) {
+ h1 {
+ font-size: 2rem;
+ }
+
+ .calculator {
+ padding: 1rem;
+ }
+}
\ No newline at end of file