commit 6279b8736ed45fb05741dce41e0b9d0463bd7e0e
Author: root <root@hub.scroll.pub> Date: 2024-12-28 14:22:54 +0000 Subject: Initial commit diff --git a/body.html b/body.html new file mode 100644 index 0000000..8e9b546 --- /dev/null +++ b/body.html @@ -0,0 +1,63 @@ +<header> + <h1>PhD or OnlyFans?</h1> + <p>Let's crunch the numbers and see which path makes more sense for you.</p> +</header> + +<main> + <section class="calculator"> + <h2>Decision Calculator</h2> + <form id="decisionForm"> + <label for="phdYears">Years left in PhD:</label> + <input type="number" id="phdYears" min="0" required> + + <label for="phdStipend">Monthly PhD Stipend ($):</label> + <input type="number" id="phdStipend" min="0" required> + + <label for="ofEarnings">Expected Monthly OnlyFans Earnings ($):</label> + <input type="number" id="ofEarnings" min="0" required> + + <label for="happiness">Happiness Level (1-10):</label> + <input type="number" id="happiness" min="1" max="10" required> + + <button type="submit">Calculate</button> + </form> + + <div id="result" class="hidden"> + <h3>Your Results:</h3> + <p>Total PhD Earnings: <span id="totalPhd"></span></p> + <p>Total OnlyFans Earnings: <span id="totalOf"></span></p> + <p>Happiness Factor: <span id="happinessFactor"></span></p> + <p class="finalDecision">You should: <span id="decision"></span></p> + </div> + </section> + + <section class="pros-cons"> + <h2>Pros & Cons</h2> + <div class="grid"> + <div> + <h3>PhD</h3> + <ul> + <li>Prestige & Recognition</li> + <li>Stable Career Path</li> + <li>Intellectual Growth</li> + <li>Lower Income Potential</li> + <li>High Stress</li> + </ul> + </div> + <div> + <h3>OnlyFans</h3> + <ul> + <li>High Earning Potential</li> + <li>Flexible Schedule</li> + <li>Creative Freedom</li> + <li>Social Stigma</li> + <li>Uncertain Longevity</li> + </ul> + </div> + </div> + </section> +</main> + +<footer> + <p>Disclaimer: This is a satirical tool. Make life decisions carefully.</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..a123cff --- /dev/null +++ b/prompt.json @@ -0,0 +1,25 @@ +{ + "id": "0df20f5f-adee-490d-84cd-a597aa18c856", + "object": "chat.completion", + "created": 1735395752, + "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 which path makes more sense for you.</p>\n</header>\n\n<main>\n <section class=\"calculator\">\n <h2>Decision Calculator</h2>\n <form id=\"decisionForm\">\n <label for=\"phdYears\">Years left in PhD:</label>\n <input type=\"number\" id=\"phdYears\" min=\"0\" required>\n \n <label for=\"phdStipend\">Monthly PhD Stipend ($):</label>\n <input type=\"number\" id=\"phdStipend\" min=\"0\" required>\n \n <label for=\"ofEarnings\">Expected Monthly OnlyFans Earnings ($):</label>\n <input type=\"number\" id=\"ofEarnings\" min=\"0\" required>\n \n <label for=\"happiness\">Happiness Level (1-10):</label>\n <input type=\"number\" id=\"happiness\" min=\"1\" max=\"10\" required>\n \n <button type=\"submit\">Calculate</button>\n </form>\n \n <div id=\"result\" class=\"hidden\">\n <h3>Your Results:</h3>\n <p>Total PhD Earnings: <span id=\"totalPhd\"></span></p>\n <p>Total OnlyFans Earnings: <span id=\"totalOf\"></span></p>\n <p>Happiness Factor: <span id=\"happinessFactor\"></span></p>\n <p class=\"finalDecision\">You should: <span id=\"decision\"></span></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 & Recognition</li>\n <li>Stable Career Path</li>\n <li>Intellectual Growth</li>\n <li>Lower Income Potential</li>\n <li>High Stress</li>\n </ul>\n </div>\n <div>\n <h3>OnlyFans</h3>\n <ul>\n <li>High Earning Potential</li>\n <li>Flexible Schedule</li>\n <li>Creative Freedom</li>\n <li>Social Stigma</li>\n <li>Uncertain Longevity</li>\n </ul>\n </div>\n </div>\n </section>\n</main>\n\n<footer>\n <p>Disclaimer: This is a satirical tool. Make life decisions carefully.</p>\n</footer>\n---style.css---\n:root {\n --primary: #6d28d9;\n --secondary: #f472b6;\n --bg: #f3e8ff;\n --text: #1e293b;\n}\n\nbody {\n font-family: system-ui, sans-serif;\n line-height: 1.5;\n color: var(--text);\n background: var(--bg);\n margin: 0;\n padding: 1rem;\n}\n\nheader {\n text-align: center;\n padding: 2rem 0;\n}\n\nh1 {\n color: var(--primary);\n font-size: 2.5rem;\n margin-bottom: 0.5rem;\n}\n\n.calculator {\n max-width: 600px;\n margin: 2rem auto;\n padding: 2rem;\n background: white;\n border-radius: 1rem;\n box-shadow: 0 4px 6px rgba(0,0,0,0.1);\n}\n\nform {\n display: grid;\n gap: 1rem;\n}\n\nlabel {\n font-weight: 500;\n}\n\ninput {\n padding: 0.5rem;\n border: 1px solid #ddd;\n border-radius: 0.5rem;\n}\n\nbutton {\n background: var(--primary);\n color: white;\n padding: 0.75rem;\n border: none;\n border-radius: 0.5rem;\n cursor: pointer;\n font-weight: bold;\n}\n\nbutton:hover {\n background: #5b21b6;\n}\n\n#result {\n margin-top: 2rem;\n padding: 1rem;\n background: #f3f4f6;\n border-radius: 0.5rem;\n}\n\n.finalDecision {\n font-size: 1.25rem;\n font-weight: bold;\n margin-top: 1rem;\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 border-bottom: 1px solid #eee;\n}\n\nfooter {\n text-align: center;\n padding: 2rem 0;\n color: #64748b;\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 phdYears = parseFloat(document.getElementById('phdYears').value);\n const phdStipend = parseFloat(document.getElementById('phdStipend').value);\n const ofEarnings = parseFloat(document.getElementById('ofEarnings').value);\n const happiness = parseFloat(document.getElementById('happiness').value);\n \n // Calculate totals\n const totalPhd = phdYears * 12 * phdStipend;\n const totalOf = phdYears * 12 * ofEarnings;\n \n // Calculate happiness factor\n const happinessFactor = happiness >= 7 ? 1.5 : 1;\n \n // Make decision\n let decision;\n if (totalOf * happinessFactor > totalPhd) {\n decision = 'Go for OnlyFans!';\n } else {\n decision = 'Stick with the PhD';\n }\n \n // Display results\n document.getElementById('totalPhd').textContent = `$${totalPhd.toLocaleString()}`;\n document.getElementById('totalOf').textContent = `$${totalOf.toLocaleString()}`;\n document.getElementById('happinessFactor').textContent = happinessFactor;\n document.getElementById('decision').textContent = decision;\n \n document.getElementById('result').classList.remove('hidden');\n});\n---end---" + }, + "logprobs": null, + "finish_reason": "stop" + } + ], + "usage": { + "prompt_tokens": 275, + "completion_tokens": 1516, + "total_tokens": 1791, + "prompt_cache_hit_tokens": 0, + "prompt_cache_miss_tokens": 275 + }, + "system_fingerprint": "fp_f1afce2943" +} \ No newline at end of file diff --git a/readme.scroll b/readme.scroll new file mode 100644 index 0000000..7a94bea --- /dev/null +++ b/readme.scroll @@ -0,0 +1,2 @@ +# phd2of4.scroll.pub +Website generated by DeepSeek from prompt: i want a website that will help decide if i should drop out of my Phd program to do only Fans. so it should have some numberical tools and interactivity. Be crreative. \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..8979eb4 --- /dev/null +++ b/script.js @@ -0,0 +1,32 @@ +document.getElementById('decisionForm').addEventListener('submit', function(e) { + e.preventDefault(); + + // Get input values + const phdYears = parseFloat(document.getElementById('phdYears').value); + const phdStipend = parseFloat(document.getElementById('phdStipend').value); + const ofEarnings = parseFloat(document.getElementById('ofEarnings').value); + const happiness = parseFloat(document.getElementById('happiness').value); + + // Calculate totals + const totalPhd = phdYears * 12 * phdStipend; + const totalOf = phdYears * 12 * ofEarnings; + + // Calculate happiness factor + const happinessFactor = happiness >= 7 ? 1.5 : 1; + + // Make decision + let decision; + if (totalOf * happinessFactor > totalPhd) { + decision = 'Go for OnlyFans!'; + } else { + decision = 'Stick with the PhD'; + } + + // Display results + document.getElementById('totalPhd').textContent = `$${totalPhd.toLocaleString()}`; + document.getElementById('totalOf').textContent = `$${totalOf.toLocaleString()}`; + document.getElementById('happinessFactor').textContent = happinessFactor; + document.getElementById('decision').textContent = decision; + + document.getElementById('result').classList.remove('hidden'); +}); \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..8f8bef1 --- /dev/null +++ b/style.css @@ -0,0 +1,114 @@ +:root { + --primary: #6d28d9; + --secondary: #f472b6; + --bg: #f3e8ff; + --text: #1e293b; +} + +body { + font-family: system-ui, sans-serif; + line-height: 1.5; + color: var(--text); + background: var(--bg); + margin: 0; + padding: 1rem; +} + +header { + text-align: center; + padding: 2rem 0; +} + +h1 { + color: var(--primary); + font-size: 2.5rem; + margin-bottom: 0.5rem; +} + +.calculator { + max-width: 600px; + margin: 2rem auto; + padding: 2rem; + background: white; + border-radius: 1rem; + box-shadow: 0 4px 6px rgba(0,0,0,0.1); +} + +form { + display: grid; + gap: 1rem; +} + +label { + font-weight: 500; +} + +input { + padding: 0.5rem; + border: 1px solid #ddd; + border-radius: 0.5rem; +} + +button { + background: var(--primary); + color: white; + padding: 0.75rem; + border: none; + border-radius: 0.5rem; + cursor: pointer; + font-weight: bold; +} + +button:hover { + background: #5b21b6; +} + +#result { + margin-top: 2rem; + padding: 1rem; + background: #f3f4f6; + border-radius: 0.5rem; +} + +.finalDecision { + font-size: 1.25rem; + font-weight: bold; + margin-top: 1rem; +} + +.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; + border-bottom: 1px solid #eee; +} + +footer { + text-align: center; + padding: 2rem 0; + color: #64748b; +} + +@media (max-width: 600px) { + h1 { + font-size: 2rem; + } + + .calculator { + padding: 1rem; + } +} \ No newline at end of file