Changes to phd-or-of1.scroll.pub

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

PhD or OnlyFans?

+

The Ultimate Decision Tool

+
+
+
+
+

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.

+
+
+
+

Decision Calculator

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

Your Decision:

+

+
+
+
+
+

Pros & Cons

+
+
+

PhD

+
    +
  • Prestige and recognition
  • +
  • Long-term career stability
  • +
  • Intellectual fulfillment
  • +
  • Potential for academic impact
  • +
    +
    +
    +

    OnlyFans

    +
      +
    • Potential for high earnings
    • +
    • Flexible schedule
    • +
    • Creative freedom
    • +
    • Direct connection with audience
    • +
      +
      +
      +
      +
      +
      +
      +

      Remember, this is just a tool. The final decision is yours!

      +
      index.scroll
      Changed around line 1
      + 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
      prompt.json
      Changed around line 1
      + {
      + "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
      \n

      PhD or OnlyFans?

      \n

      The Ultimate Decision Tool

      \n
      \n\n
      \n
      \n

      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.

      \n
      \n\n
      \n

      Decision Calculator

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

      Your Decision:

      \n

      \n
      \n
      \n\n
      \n

      Pros & Cons

      \n
      \n
      \n

      PhD

      \n
        \n
      • Prestige and recognition
      • \n
      • Long-term career stability
      • \n
      • Intellectual fulfillment
      • \n
      • Potential for academic impact
      • \n
      \n
      \n
      \n

      OnlyFans

      \n
        \n
      • Potential for high earnings
      • \n
      • Flexible schedule
      • \n
      • Creative freedom
      • \n
      • Direct connection with audience
      • \n
      \n
      \n
      \n
      \n
      \n\n
      \n

      Remember, this is just a tool. The final decision is yours!

      \n
      \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"
      + }
      readme.scroll
      Changed around line 1
      + # phd-or-of1.scroll.pub
      + Website generated by DeepSeek from prompt: 我需要一个网站,来将决定我是否需要放弃我的博士学位去做only fans ,所以应该有一些数值工具和互动性,要有创意。
      script.js
      Changed around line 1
      + 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');
      + });
      style.css
      Changed around line 1
      + :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;
      + }
      + }