Changes to decide3.scroll.pub

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

Decide Your Path

+

Master Program, Finance, or Tech Industry?

+
+
+
+

Take the Quiz

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

Your Recommended Path

+

+
+
+
+
+

Made with clarity and purpose.

+
index.scroll
Changed around line 1
+ buildHtml
+ baseUrl https://decide.scroll.pub
+ metaTags
+ editButton /edit.html
+ title Decide Your Path: Master Program vs. Finance vs. Tech
+ style.css
+ body.html
+ script.js
prompt.json
Changed around line 1
+ {
+ "id": "009db7a2-e021-4341-aefc-90e535ba4e7f",
+ "object": "chat.completion",
+ "created": 1735814173,
+ "model": "deepseek-chat",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "---domain---\ndecide.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://decide.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Decide Your Path: Master Program vs. Finance vs. Tech\nstyle.css\nbody.html\nscript.js\n---body.html---\n
\n

Decide Your Path

\n

Master Program, Finance, or Tech Industry?

\n
\n
\n
\n

Take the Quiz

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

Your Recommended Path

\n

\n \n
\n
\n
\n

Made with clarity and purpose.

\n
\n---style.css---\nbody {\n font-family: 'Arial', sans-serif;\n line-height: 1.6;\n margin: 0;\n padding: 0;\n background: #f4f4f4;\n color: #333;\n}\n\nheader {\n background: #0056b3;\n color: #fff;\n padding: 20px 0;\n text-align: center;\n}\n\nmain {\n padding: 20px;\n}\n\n#quiz, #result {\n background: #fff;\n margin: 20px auto;\n padding: 20px;\n border-radius: 8px;\n box-shadow: 0 2px 4px rgba(0,0,0,0.1);\n max-width: 600px;\n}\n\n.question {\n margin-bottom: 20px;\n}\n\nlabel {\n display: block;\n margin-bottom: 5px;\n}\n\nselect, button {\n width: 100%;\n padding: 10px;\n margin-top: 5px;\n border-radius: 4px;\n border: 1px solid #ddd;\n}\n\nbutton {\n background: #0056b3;\n color: #fff;\n border: none;\n cursor: pointer;\n}\n\nbutton:hover {\n background: #004494;\n}\n\n#result {\n text-align: center;\n}\n\n.hidden {\n display: none;\n}\n\nfooter {\n text-align: center;\n padding: 20px;\n background: #333;\n color: #fff;\n margin-top: 20px;\n}\n---script.js---\ndocument.getElementById('decisionQuiz').addEventListener('submit', function(event) {\n event.preventDefault();\n const q1 = document.getElementById('q1').value;\n const q2 = document.getElementById('q2').value;\n const q3 = document.getElementById('q3').value;\n\n const results = { master: 0, finance: 0, tech: 0 };\n results[q1]++;\n results[q2]++;\n results[q3]++;\n\n let recommendedPath = 'master';\n if (results.finance > results[recommendedPath]) recommendedPath = 'finance';\n if (results.tech > results[recommendedPath]) recommendedPath = 'tech';\n\n document.getElementById('pathResult').textContent = `You should consider the ${recommendedPath.toUpperCase()} path.`;\n document.getElementById('quiz').classList.add('hidden');\n document.getElementById('result').classList.remove('hidden');\n});\n\ndocument.getElementById('retakeQuiz').addEventListener('click', function() {\n document.getElementById('result').classList.add('hidden');\n document.getElementById('quiz').classList.remove('hidden');\n});\n---end---"
+ },
+ "logprobs": null,
+ "finish_reason": "stop"
+ }
+ ],
+ "usage": {
+ "prompt_tokens": 259,
+ "completion_tokens": 1083,
+ "total_tokens": 1342,
+ "prompt_cache_hit_tokens": 0,
+ "prompt_cache_miss_tokens": 259
+ },
+ "system_fingerprint": "fp_f1afce2943"
+ }
readme.scroll
Changed around line 1
+ # decide3.scroll.pub
+ Website generated by DeepSeek from prompt: i want a website that will help me to decide whether to join the master program or going to work in finance or tech industry
script.js
Changed around line 1
+ document.getElementById('decisionQuiz').addEventListener('submit', function(event) {
+ event.preventDefault();
+ const q1 = document.getElementById('q1').value;
+ const q2 = document.getElementById('q2').value;
+ const q3 = document.getElementById('q3').value;
+
+ const results = { master: 0, finance: 0, tech: 0 };
+ results[q1]++;
+ results[q2]++;
+ results[q3]++;
+
+ let recommendedPath = 'master';
+ if (results.finance > results[recommendedPath]) recommendedPath = 'finance';
+ if (results.tech > results[recommendedPath]) recommendedPath = 'tech';
+
+ document.getElementById('pathResult').textContent = `You should consider the ${recommendedPath.toUpperCase()} path.`;
+ document.getElementById('quiz').classList.add('hidden');
+ document.getElementById('result').classList.remove('hidden');
+ });
+
+ document.getElementById('retakeQuiz').addEventListener('click', function() {
+ document.getElementById('result').classList.add('hidden');
+ document.getElementById('quiz').classList.remove('hidden');
+ });
style.css
Changed around line 1
+ body {
+ font-family: 'Arial', sans-serif;
+ line-height: 1.6;
+ margin: 0;
+ padding: 0;
+ background: #f4f4f4;
+ color: #333;
+ }
+
+ header {
+ background: #0056b3;
+ color: #fff;
+ padding: 20px 0;
+ text-align: center;
+ }
+
+ main {
+ padding: 20px;
+ }
+
+ #quiz, #result {
+ background: #fff;
+ margin: 20px auto;
+ padding: 20px;
+ border-radius: 8px;
+ box-shadow: 0 2px 4px rgba(0,0,0,0.1);
+ max-width: 600px;
+ }
+
+ .question {
+ margin-bottom: 20px;
+ }
+
+ label {
+ display: block;
+ margin-bottom: 5px;
+ }
+
+ select, button {
+ width: 100%;
+ padding: 10px;
+ margin-top: 5px;
+ border-radius: 4px;
+ border: 1px solid #ddd;
+ }
+
+ button {
+ background: #0056b3;
+ color: #fff;
+ border: none;
+ cursor: pointer;
+ }
+
+ button:hover {
+ background: #004494;
+ }
+
+ #result {
+ text-align: center;
+ }
+
+ .hidden {
+ display: none;
+ }
+
+ footer {
+ text-align: center;
+ padding: 20px;
+ background: #333;
+ color: #fff;
+ margin-top: 20px;
+ }