commit 302f9f3cbcb7d84709254cbd62a743dff864f39d
Author: root <root@hub.scroll.pub>
Date: 2024-12-27 18:20:48 +0000
Subject: Initial commit
diff --git a/body.html b/body.html
new file mode 100644
index 0000000..7a7489b
--- /dev/null
+++ b/body.html
@@ -0,0 +1,17 @@
+<main class="horizontal-scroll">
+ <section id="hegel">
+ <h1>Hegel</h1>
+ <p>Zizek interprets Hegel's dialectics as a process of constant negation and sublation, emphasizing the importance of the "negation of the negation" in understanding historical and social progress.</p>
+ </section>
+ <section id="lacan">
+ <h1>Lacan</h1>
+ <p>Zizek integrates Lacan's psychoanalytic theory, particularly the concepts of the Real, the Symbolic, and the Imaginary, to analyze ideology and subjectivity in contemporary society.</p>
+ </section>
+ <section id="adorno">
+ <h1>Adorno</h1>
+ <p>Zizek draws on Adorno's critique of the culture industry, highlighting the ways in which mass culture perpetuates conformity and suppresses critical thought.</p>
+ </section>
+</main>
+<footer>
+ <p>Explore the philosophical insights of Slavoj Zizek on Hegel, Lacan, and Adorno.</p>
+</footer>
\ No newline at end of file
diff --git a/index.scroll b/index.scroll
new file mode 100644
index 0000000..f93cdad
--- /dev/null
+++ b/index.scroll
@@ -0,0 +1,8 @@
+buildHtml
+baseUrl https://zizek-insights.scroll.pub
+metaTags
+editButton /edit.html
+title Zizek Insights: Hegel, Lacan, Adorno
+style.css
+body.html
+script.js
\ No newline at end of file
diff --git a/prompt.json b/prompt.json
new file mode 100644
index 0000000..6325259
--- /dev/null
+++ b/prompt.json
@@ -0,0 +1,25 @@
+{
+ "id": "f1b524e2-70e1-45c9-b900-2303a30b673c",
+ "object": "chat.completion",
+ "created": 1735323638,
+ "model": "deepseek-chat",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "---domain---\nzizek-insights.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://zizek-insights.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Zizek Insights: Hegel, Lacan, Adorno\nstyle.css\nbody.html\nscript.js\n---body.html---\n<main class=\"horizontal-scroll\">\n <section id=\"hegel\">\n <h1>Hegel</h1>\n <p>Zizek interprets Hegel's dialectics as a process of constant negation and sublation, emphasizing the importance of the \"negation of the negation\" in understanding historical and social progress.</p>\n </section>\n <section id=\"lacan\">\n <h1>Lacan</h1>\n <p>Zizek integrates Lacan's psychoanalytic theory, particularly the concepts of the Real, the Symbolic, and the Imaginary, to analyze ideology and subjectivity in contemporary society.</p>\n </section>\n <section id=\"adorno\">\n <h1>Adorno</h1>\n <p>Zizek draws on Adorno's critique of the culture industry, highlighting the ways in which mass culture perpetuates conformity and suppresses critical thought.</p>\n </section>\n</main>\n<footer>\n <p>Explore the philosophical insights of Slavoj Zizek on Hegel, Lacan, and Adorno.</p>\n</footer>\n---style.css---\n* {\n margin: 0;\n padding: 0;\n box-sizing: border-box;\n}\n\nbody {\n font-family: 'Arial', sans-serif;\n line-height: 1.6;\n color: #333;\n background-color: #f4f4f4;\n}\n\n.horizontal-scroll {\n display: flex;\n overflow-x: auto;\n scroll-snap-type: x mandatory;\n height: 100vh;\n}\n\nsection {\n flex: 0 0 100vw;\n scroll-snap-align: start;\n padding: 2rem;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n text-align: center;\n background-color: #fff;\n border-right: 1px solid #ddd;\n}\n\nh1 {\n font-size: 2.5rem;\n margin-bottom: 1rem;\n color: #222;\n}\n\np {\n font-size: 1.2rem;\n max-width: 600px;\n}\n\nfooter {\n text-align: center;\n padding: 1rem;\n background-color: #222;\n color: #fff;\n position: fixed;\n bottom: 0;\n width: 100%;\n}\n\n@media (max-width: 768px) {\n h1 {\n font-size: 2rem;\n }\n\n p {\n font-size: 1rem;\n }\n}\n---script.js---\ndocument.addEventListener('DOMContentLoaded', () => {\n const sections = document.querySelectorAll('section');\n sections.forEach(section => {\n section.addEventListener('click', () => {\n section.scrollIntoView({ behavior: 'smooth', block: 'nearest', inline: 'start' });\n });\n });\n});\n---end---"
+ },
+ "logprobs": null,
+ "finish_reason": "stop"
+ }
+ ],
+ "usage": {
+ "prompt_tokens": 269,
+ "completion_tokens": 686,
+ "total_tokens": 955,
+ "prompt_cache_hit_tokens": 0,
+ "prompt_cache_miss_tokens": 269
+ },
+ "system_fingerprint": "fp_f1afce2943"
+}
\ No newline at end of file
diff --git a/readme.scroll b/readme.scroll
new file mode 100644
index 0000000..a12230d
--- /dev/null
+++ b/readme.scroll
@@ -0,0 +1,2 @@
+# zizek-insights.scroll.pub
+Website generated by DeepSeek from prompt: Create a website based on the key insights of Slavoj Zizek about hegel, lacan and adorno, keep it minimalist, and with make it horizotal scroll
\ No newline at end of file
diff --git a/script.js b/script.js
new file mode 100644
index 0000000..952b06b
--- /dev/null
+++ b/script.js
@@ -0,0 +1,8 @@
+document.addEventListener('DOMContentLoaded', () => {
+ const sections = document.querySelectorAll('section');
+ sections.forEach(section => {
+ section.addEventListener('click', () => {
+ section.scrollIntoView({ behavior: 'smooth', block: 'nearest', inline: 'start' });
+ });
+ });
+});
\ No newline at end of file
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..d24643b
--- /dev/null
+++ b/style.css
@@ -0,0 +1,63 @@
+* {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+}
+
+body {
+ font-family: 'Arial', sans-serif;
+ line-height: 1.6;
+ color: #333;
+ background-color: #f4f4f4;
+}
+
+.horizontal-scroll {
+ display: flex;
+ overflow-x: auto;
+ scroll-snap-type: x mandatory;
+ height: 100vh;
+}
+
+section {
+ flex: 0 0 100vw;
+ scroll-snap-align: start;
+ padding: 2rem;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ background-color: #fff;
+ border-right: 1px solid #ddd;
+}
+
+h1 {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ color: #222;
+}
+
+p {
+ font-size: 1.2rem;
+ max-width: 600px;
+}
+
+footer {
+ text-align: center;
+ padding: 1rem;
+ background-color: #222;
+ color: #fff;
+ position: fixed;
+ bottom: 0;
+ width: 100%;
+}
+
+@media (max-width: 768px) {
+ h1 {
+ font-size: 2rem;
+ }
+
+ p {
+ font-size: 1rem;
+ }
+}
\ No newline at end of file