Changes to greenlanddebate.scroll.pub

root
root
14 days ago
Initial commit
feed.scroll
Changed around line 1
+ buildRss
+ printFeed All
footer.scroll
Changed around line 1
+ importOnly
+ center
+ scrollVersionLink
header.scroll
Changed around line 1
+ importOnly
+ buildHtml
+ buildTxt
+ homeButton
+ leftRightButtons
+ baseUrl https://greenlanddebate.scroll.pub
+ metaTags
+ editButton
+ editBaseUrl /edit.html?folderName=greenlanddebate.scroll.pub&fileName=
+ metaTags
+ style.css
+ script.js
+ container
+ printTitle
index.scroll
Changed around line 1
+ title Greenland Debate
+ header.scroll
+ printSnippets All
+ footer.scroll
prompt.json
Changed around line 1
+ {
+ "id": "b95f35af-3fc6-404e-ab9e-29cbc083e482",
+ "object": "chat.completion",
+ "created": 1736303638,
+ "model": "deepseek-chat",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "---domain---\ngreenlanddebate.scroll.pub\n---index.scroll---\ntitle Greenland Debate\nheader.scroll\nprintSnippets All\nfooter.scroll\n---why-greenland-should-stay-danish.scroll---\ntitle Why Greenland Should Stay Danish\ntags All\nheader.scroll\nGreenland is often romanticized as a potential 51st state, but the reality is far more nuanced. With a population of just 56,000, Greenland is smaller than most U.S. cities. Its economy relies heavily on Denmark, which provides over $600 million annually in subsidies. Joining the U.S. would mean losing this financial lifeline, and Greenlanders would face cultural assimilation pressures far greater than their current semi-autonomous status under Denmark. The Danish model allows Greenland to maintain its indigenous identity while benefiting from European Union trade agreements. Why trade that for a seat at the American table, where Greenland would be a mere footnote in a nation of 331 million?\n\nfooter.scroll\n---the-cost-of-independence.scroll---\ntitle The Cost of Independence\ntags All\nheader.scroll\nIndependence sounds appealing, but let’s talk numbers. Greenland’s GDP is $3 billion, with fishing accounting for 90% of exports. To replace Danish subsidies, Greenland would need to increase its GDP by 20% overnight—a Herculean task. The U.S. might offer infrastructure investments, but history shows such promises often come with strings attached. Look at Puerto Rico: a U.S. territory with limited autonomy and a debt crisis. Greenland’s current arrangement with Denmark provides stability and cultural preservation. Why gamble that for uncertain gains?\n\nfooter.scroll\n---header.scroll---\nimportOnly\nbuildHtml\nbuildTxt\nhomeButton\nleftRightButtons\nbaseUrl https://greenlanddebate.scroll.pub\nmetaTags\neditButton\neditBaseUrl /edit.html?folderName=greenlanddebate.scroll.pub&fileName=\nmetaTags\nstyle.css\nscript.js\ncontainer\nprintTitle\n---feed.scroll---\nbuildRss\nprintFeed All\n---footer.scroll---\nimportOnly\ncenter\nscrollVersionLink\n---style.css---\n:root {\n --primary-color: #2c3e50;\n --secondary-color: #3498db;\n --background-color: #f4f7f6;\n --text-color: #333;\n --font-family: 'Georgia', serif;\n}\n\nbody {\n font-family: var(--font-family);\n line-height: 1.6;\n color: var(--text-color);\n background-color: var(--background-color);\n margin: 0;\n padding: 20px;\n}\n\n.container {\n max-width: 800px;\n margin: 0 auto;\n padding: 20px;\n background: white;\n border-radius: 8px;\n box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);\n}\n\nh1, h2 {\n color: var(--primary-color);\n}\n\na {\n color: var(--secondary-color);\n text-decoration: none;\n}\n\na:hover {\n text-decoration: underline;\n}\n\nfooter {\n text-align: center;\n margin-top: 40px;\n font-size: 0.9em;\n color: #777;\n}\n\n@media (max-width: 600px) {\n body {\n padding: 10px;\n }\n\n .container {\n padding: 10px;\n }\n}\n---script.js---\n// Simple script for smooth scrolling\ndocument.querySelectorAll('a[href^=\"#\"]').forEach(anchor => {\n anchor.addEventListener('click', function (e) {\n e.preventDefault();\n document.querySelector(this.getAttribute('href')).scrollIntoView({\n behavior: 'smooth'\n });\n });\n});\n---end---"
+ },
+ "logprobs": null,
+ "finish_reason": "stop"
+ }
+ ],
+ "usage": {
+ "prompt_tokens": 414,
+ "completion_tokens": 805,
+ "total_tokens": 1219,
+ "prompt_cache_hit_tokens": 0,
+ "prompt_cache_miss_tokens": 414
+ },
+ "system_fingerprint": "fp_3a5770e1b4"
+ }
readme.scroll
Changed around line 1
+ # greenlanddebate.scroll.pub
+
+ blog generated by DeepSeek from prompt: write in the style of paul graham arguing why greenland should stay out of the usa and remain part of denmark
script.js
Changed around line 1
+ // Simple script for smooth scrolling
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
+ anchor.addEventListener('click', function (e) {
+ e.preventDefault();
+ document.querySelector(this.getAttribute('href')).scrollIntoView({
+ behavior: 'smooth'
+ });
+ });
+ });
style.css
Changed around line 1
+ :root {
+ --primary-color: #2c3e50;
+ --secondary-color: #3498db;
+ --background-color: #f4f7f6;
+ --text-color: #333;
+ --font-family: 'Georgia', serif;
+ }
+
+ body {
+ font-family: var(--font-family);
+ line-height: 1.6;
+ color: var(--text-color);
+ background-color: var(--background-color);
+ margin: 0;
+ padding: 20px;
+ }
+
+ .container {
+ max-width: 800px;
+ margin: 0 auto;
+ padding: 20px;
+ background: white;
+ border-radius: 8px;
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
+ }
+
+ h1, h2 {
+ color: var(--primary-color);
+ }
+
+ a {
+ color: var(--secondary-color);
+ text-decoration: none;
+ }
+
+ a:hover {
+ text-decoration: underline;
+ }
+
+ footer {
+ text-align: center;
+ margin-top: 40px;
+ font-size: 0.9em;
+ color: #777;
+ }
+
+ @media (max-width: 600px) {
+ body {
+ padding: 10px;
+ }
+
+ .container {
+ padding: 10px;
+ }
+ }
the-cost-of-independence.scroll
Changed around line 1
+ title The Cost of Independence
+ tags All
+ header.scroll
+ Independence sounds appealing, but let’s talk numbers. Greenland’s GDP is $3 billion, with fishing accounting for 90% of exports. To replace Danish subsidies, Greenland would need to increase its GDP by 20% overnight—a Herculean task. The U.S. might offer infrastructure investments, but history shows such promises often come with strings attached. Look at Puerto Rico: a U.S. territory with limited autonomy and a debt crisis. Greenland’s current arrangement with Denmark provides stability and cultural preservation. Why gamble that for uncertain gains?
+
+ footer.scroll
why-greenland-should-stay-danish.scroll
Changed around line 1
+ title Why Greenland Should Stay Danish
+ tags All
+ header.scroll
+ Greenland is often romanticized as a potential 51st state, but the reality is far more nuanced. With a population of just 56,000, Greenland is smaller than most U.S. cities. Its economy relies heavily on Denmark, which provides over $600 million annually in subsidies. Joining the U.S. would mean losing this financial lifeline, and Greenlanders would face cultural assimilation pressures far greater than their current semi-autonomous status under Denmark. The Danish model allows Greenland to maintain its indigenous identity while benefiting from European Union trade agreements. Why trade that for a seat at the American table, where Greenland would be a mere footnote in a nation of 331 million?
+
+ footer.scroll