Changes to phd2of4.scroll.pub

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

PhD or OnlyFans?

+

Let's crunch the numbers and see which path makes more sense for you.

+
+
+
+
+

Decision Calculator

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

Your Results:

+

Total PhD Earnings:

+

Total OnlyFans Earnings:

+

Happiness Factor:

+

You should:

+
+
+
+
+

Pros & Cons

+
+
+

PhD

+
    +
  • Prestige & Recognition
  • +
  • Stable Career Path
  • +
  • Intellectual Growth
  • +
  • Lower Income Potential
  • +
  • High Stress
  • +
    +
    +
    +

    OnlyFans

    +
      +
    • High Earning Potential
    • +
    • Flexible Schedule
    • +
    • Creative Freedom
    • +
    • Social Stigma
    • +
    • Uncertain Longevity
    • +
      +
      +
      +
      +
      +
      +
      +

      Disclaimer: This is a satirical tool. Make life decisions carefully.

      +
      index.scroll
      Changed around line 1
      + buildHtml
      + baseUrl https://phd2of.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": "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
      \n

      PhD or OnlyFans?

      \n

      Let's crunch the numbers and see which path makes more sense for you.

      \n
      \n\n
      \n
      \n

      Decision Calculator

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

      Your Results:

      \n

      Total PhD Earnings:

      \n

      Total OnlyFans Earnings:

      \n

      Happiness Factor:

      \n

      You should:

      \n
      \n
      \n \n
      \n

      Pros & Cons

      \n
      \n
      \n

      PhD

      \n
        \n
      • Prestige & Recognition
      • \n
      • Stable Career Path
      • \n
      • Intellectual Growth
      • \n
      • Lower Income Potential
      • \n
      • High Stress
      • \n
      \n
      \n
      \n

      OnlyFans

      \n
        \n
      • High Earning Potential
      • \n
      • Flexible Schedule
      • \n
      • Creative Freedom
      • \n
      • Social Stigma
      • \n
      • Uncertain Longevity
      • \n
      \n
      \n
      \n
      \n
      \n\n
      \n

      Disclaimer: This is a satirical tool. Make life decisions carefully.

      \n
      \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"
      + }
      readme.scroll
      Changed around line 1
      + # 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.
      script.js
      Changed around line 1
      + 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');
      + });
      style.css
      Changed around line 1
      + :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;
      + }
      + }