Changes to phdtoof.scroll.pub

root
root
24 days ago
Initial commit
body.html
Changed around line 1
+
+

PhD or OnlyFans?

+

Let’s crunch the numbers and find your path.

+
+
+
+

Decision Calculator

+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

Your Result:

+

+
+
+
+

Pros & Cons

+
+
+

PhD

+
    +
  • Stable income
  • +
  • Prestige
  • +
  • Long-term career prospects
  • +
    +
    +
    +

    OnlyFans

    +
      +
    • Flexible schedule
    • +
    • High earning potential
    • +
    • Creative freedom
    • +
      +
      +
      +
      +
      +
      +

      Made with ❤️ by someone who’s been there.

      +
      index.scroll
      Changed around line 1
      + buildHtml
      + baseUrl https://phdtoof.scroll.pub
      + metaTags
      + editButton /edit.html
      + title Should I Drop My PhD for OnlyFans?
      + style.css
      + body.html
      + script.js
      prompt.json
      Changed around line 1
      + {
      + "id": "5caad2a0-f68b-4957-82b2-b10b599a5ed5",
      + "object": "chat.completion",
      + "created": 1735452619,
      + "model": "deepseek-chat",
      + "choices": [
      + {
      + "index": 0,
      + "message": {
      + "role": "assistant",
      + "content": "---domain---\nphdtoof.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://phdtoof.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Should I Drop My PhD for OnlyFans?\nstyle.css\nbody.html\nscript.js\n---body.html---\n
      \n

      PhD or OnlyFans?

      \n

      Let’s crunch the numbers and find your path.

      \n
      \n
      \n
      \n

      Decision Calculator

      \n
      \n \n \n \n \n \n \n \n \n \n \n \n \n \n
      \n
      \n

      Your Result:

      \n

      \n
      \n
      \n
      \n

      Pros & Cons

      \n
      \n
      \n

      PhD

      \n
        \n
      • Stable income
      • \n
      • Prestige
      • \n
      • Long-term career prospects
      • \n
      \n
      \n
      \n

      OnlyFans

      \n
        \n
      • Flexible schedule
      • \n
      • High earning potential
      • \n
      • Creative freedom
      • \n
      \n
      \n
      \n
      \n
      \n
      \n

      Made with ❤️ by someone who’s been there.

      \n
      \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: 'Arial', sans-serif;\n line-height: 1.6;\n margin: 0;\n padding: 0;\n background-color: var(--background);\n color: var(--text);\n}\n\nheader {\n background: var(--primary);\n color: white;\n padding: 2rem;\n text-align: center;\n}\n\nh1 {\n margin: 0;\n font-size: 2.5rem;\n}\n\nmain {\n padding: 2rem;\n max-width: 800px;\n margin: 0 auto;\n}\n\nsection {\n margin-bottom: 2rem;\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}\n\nbutton:hover {\n background: var(--secondary);\n}\n\n#result {\n margin-top: 1rem;\n padding: 1rem;\n background: white;\n border-radius: 4px;\n box-shadow: var(--shadow);\n}\n\n.grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n gap: 1rem;\n}\n\nfooter {\n text-align: center;\n padding: 1rem;\n background: var(--primary);\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 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 const phdTotal = phdYears * 12 * phdStipend;\n const ofTotal = phdYears * 12 * ofEarnings;\n\n const resultText = document.getElementById('resultText');\n const resultDiv = document.getElementById('result');\n\n if (ofTotal > phdTotal && happiness < 7) {\n resultText.textContent = \"OnlyFans might be the better choice for you!\";\n } else {\n resultText.textContent = \"Stick with your PhD for now.\";\n }\n\n resultDiv.classList.remove('hidden');\n});\n---end---"
      + },
      + "logprobs": null,
      + "finish_reason": "stop"
      + }
      + ],
      + "usage": {
      + "prompt_tokens": 270,
      + "completion_tokens": 1185,
      + "total_tokens": 1455,
      + "prompt_cache_hit_tokens": 0,
      + "prompt_cache_miss_tokens": 270
      + },
      + "system_fingerprint": "fp_f1afce2943"
      + }
      readme.scroll
      Changed around line 1
      + # phdtoof.scroll.pub
      + Website generated by DeepSeek from prompt: I want a website that will help me decide if I should drop out of my PhD program to do Only Fans. So it should have Some numerical tools and interactivity. Be creative.
      script.js
      Changed around line 1
      + document.getElementById('decisionForm').addEventListener('submit', function (e) {
      + e.preventDefault();
      +
      + 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);
      +
      + const phdTotal = phdYears * 12 * phdStipend;
      + const ofTotal = phdYears * 12 * ofEarnings;
      +
      + const resultText = document.getElementById('resultText');
      + const resultDiv = document.getElementById('result');
      +
      + if (ofTotal > phdTotal && happiness < 7) {
      + resultText.textContent = "OnlyFans might be the better choice for you!";
      + } else {
      + resultText.textContent = "Stick with your PhD for now.";
      + }
      +
      + resultDiv.classList.remove('hidden');
      + });
      style.css
      Changed around line 1
      + :root {
      + --primary: #6c5ce7;
      + --secondary: #a29bfe;
      + --background: #f8f9fa;
      + --text: #2d3436;
      + --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      + }
      +
      + body {
      + font-family: 'Arial', sans-serif;
      + line-height: 1.6;
      + margin: 0;
      + padding: 0;
      + background-color: var(--background);
      + color: var(--text);
      + }
      +
      + header {
      + background: var(--primary);
      + color: white;
      + padding: 2rem;
      + text-align: center;
      + }
      +
      + h1 {
      + margin: 0;
      + font-size: 2.5rem;
      + }
      +
      + main {
      + padding: 2rem;
      + max-width: 800px;
      + margin: 0 auto;
      + }
      +
      + section {
      + margin-bottom: 2rem;
      + }
      +
      + 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;
      + }
      +
      + button:hover {
      + background: var(--secondary);
      + }
      +
      + #result {
      + margin-top: 1rem;
      + padding: 1rem;
      + background: white;
      + border-radius: 4px;
      + box-shadow: var(--shadow);
      + }
      +
      + .grid {
      + display: grid;
      + grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      + gap: 1rem;
      + }
      +
      + footer {
      + text-align: center;
      + padding: 1rem;
      + background: var(--primary);
      + color: white;
      + }
      +
      + @media (max-width: 600px) {
      + h1 {
      + font-size: 2rem;
      + }
      + }