Changes to wildguard.scroll.pub

root
root
12 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://wildguard.scroll.pub
+ metaTags
+ editButton
+ editBaseUrl /edit.html?folderName=wildguard.scroll.pub&fileName=
+ metaTags
+ style.css
+ script.js
+ container
+ printTitle
index.scroll
Changed around line 1
+ title WildGuard: Smart Wildfire Prevention
+ header.scroll
+ printSnippets All
+ footer.scroll
prompt.json
Changed around line 1
+ {
+ "id": "9bca9fd4-6d3c-4673-84b8-434818cb4b2f",
+ "object": "chat.completion",
+ "created": 1736470069,
+ "model": "deepseek-chat",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "---domain---\nwildguard.scroll.pub\n---index.scroll---\ntitle WildGuard: Smart Wildfire Prevention\nheader.scroll\nprintSnippets All\nfooter.scroll\n---wildfire-prevention-101.scroll---\ntitle Wildfire Prevention 101: Small Actions, Big Impact\ntags All\nheader.scroll\nWildfires are devastating, but prevention starts with you. Did you know that 90% of wildfires are caused by human activity? Here’s how you can help:\n\n1. **Campfire Safety**: Always fully extinguish campfires. Use water, stir the ashes, and repeat until cold.\n2. **Proper Disposal**: Never toss cigarettes or matches out of car windows. Use designated containers.\n3. **Defensible Space**: Clear dry vegetation within 30 feet of your home. This simple step can save properties and lives.\n4. **Report Early**: If you spot a fire, call emergency services immediately. Early detection is key.\n\nSmall actions can prevent big disasters. Be part of the solution.\nfooter.scroll\n---tech-and-wildfires.scroll---\ntitle How Tech is Fighting Wildfires: Drones, AI, and You\ntags All\nheader.scroll\nTechnology is revolutionizing wildfire prevention. Here’s how:\n\n- **Drones**: Equipped with thermal cameras, drones detect hotspots before they spread. In 2022, drones helped reduce wildfire spread by 15% in California.\n- **AI Predictions**: Machine learning analyzes weather patterns, vegetation, and human activity to predict high-risk areas.\n- **Satellite Monitoring**: Real-time satellite imagery helps track fires and coordinate responses.\n\nBut tech alone isn’t enough. Public awareness and action are critical. Together, we can outsmart wildfires.\nfooter.scroll\n---header.scroll---\nimportOnly\nbuildHtml\nbuildTxt\nhomeButton\nleftRightButtons\nbaseUrl https://wildguard.scroll.pub\nmetaTags\neditButton\neditBaseUrl /edit.html?folderName=wildguard.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: #ff6b35;\n --secondary: #004e89;\n --background: #f7f7f7;\n --text: #333;\n --accent: #ffd166;\n}\n\nbody {\n font-family: 'Arial', sans-serif;\n margin: 0;\n padding: 0;\n background: var(--background);\n color: var(--text);\n line-height: 1.6;\n}\n\nheader {\n background: var(--primary);\n color: white;\n padding: 1rem;\n text-align: center;\n}\n\nheader h1 {\n margin: 0;\n font-size: 2rem;\n}\n\n.container {\n max-width: 800px;\n margin: 2rem auto;\n padding: 1rem;\n background: white;\n border-radius: 8px;\n box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);\n}\n\nfooter {\n text-align: center;\n padding: 1rem;\n background: var(--secondary);\n color: white;\n margin-top: 2rem;\n}\n\na {\n color: var(--accent);\n text-decoration: none;\n}\n\na:hover {\n text-decoration: underline;\n}\n\n@media (max-width: 600px) {\n .container {\n margin: 1rem;\n padding: 0.5rem;\n }\n\n header h1 {\n font-size: 1.5rem;\n }\n}\n---script.js---\n// Smooth scroll for anchor links\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\n// Dynamic year in footer\ndocument.querySelector('footer').innerHTML += ` · ${new Date().getFullYear()}`;\n---end---"
+ },
+ "logprobs": null,
+ "finish_reason": "stop"
+ }
+ ],
+ "usage": {
+ "prompt_tokens": 395,
+ "completion_tokens": 886,
+ "total_tokens": 1281,
+ "prompt_cache_hit_tokens": 0,
+ "prompt_cache_miss_tokens": 395
+ },
+ "system_fingerprint": "fp_3a5770e1b4"
+ }
readme.scroll
Changed around line 1
+ # wildguard.scroll.pub
+
+ blog generated by DeepSeek from prompt: a blog about wild fire prevention
script.js
Changed around line 1
+ // Smooth scroll for anchor links
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
+ anchor.addEventListener('click', function (e) {
+ e.preventDefault();
+ document.querySelector(this.getAttribute('href')).scrollIntoView({
+ behavior: 'smooth'
+ });
+ });
+ });
+
+ // Dynamic year in footer
+ document.querySelector('footer').innerHTML += ` · ${new Date().getFullYear()}`;
style.css
Changed around line 1
+ :root {
+ --primary: #ff6b35;
+ --secondary: #004e89;
+ --background: #f7f7f7;
+ --text: #333;
+ --accent: #ffd166;
+ }
+
+ body {
+ font-family: 'Arial', sans-serif;
+ margin: 0;
+ padding: 0;
+ background: var(--background);
+ color: var(--text);
+ line-height: 1.6;
+ }
+
+ header {
+ background: var(--primary);
+ color: white;
+ padding: 1rem;
+ text-align: center;
+ }
+
+ header h1 {
+ margin: 0;
+ font-size: 2rem;
+ }
+
+ .container {
+ max-width: 800px;
+ margin: 2rem auto;
+ padding: 1rem;
+ background: white;
+ border-radius: 8px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ }
+
+ footer {
+ text-align: center;
+ padding: 1rem;
+ background: var(--secondary);
+ color: white;
+ margin-top: 2rem;
+ }
+
+ a {
+ color: var(--accent);
+ text-decoration: none;
+ }
+
+ a:hover {
+ text-decoration: underline;
+ }
+
+ @media (max-width: 600px) {
+ .container {
+ margin: 1rem;
+ padding: 0.5rem;
+ }
+
+ header h1 {
+ font-size: 1.5rem;
+ }
+ }
tech-and-wildfires.scroll
Changed around line 1
+ title How Tech is Fighting Wildfires: Drones, AI, and You
+ tags All
+ header.scroll
+ Technology is revolutionizing wildfire prevention. Here’s how:
+
+ - **Drones**: Equipped with thermal cameras, drones detect hotspots before they spread. In 2022, drones helped reduce wildfire spread by 15% in California.
+ - **AI Predictions**: Machine learning analyzes weather patterns, vegetation, and human activity to predict high-risk areas.
+ - **Satellite Monitoring**: Real-time satellite imagery helps track fires and coordinate responses.
+
+ But tech alone isn’t enough. Public awareness and action are critical. Together, we can outsmart wildfires.
+ footer.scroll
wildfire-prevention-101.scroll
Changed around line 1
+ title Wildfire Prevention 101: Small Actions, Big Impact
+ tags All
+ header.scroll
+ Wildfires are devastating, but prevention starts with you. Did you know that 90% of wildfires are caused by human activity? Here’s how you can help:
+
+ 1. **Campfire Safety**: Always fully extinguish campfires. Use water, stir the ashes, and repeat until cold.
+ 2. **Proper Disposal**: Never toss cigarettes or matches out of car windows. Use designated containers.
+ 3. **Defensible Space**: Clear dry vegetation within 30 feet of your home. This simple step can save properties and lives.
+ 4. **Report Early**: If you spot a fire, call emergency services immediately. Early detection is key.
+
+ Small actions can prevent big disasters. Be part of the solution.
+ footer.scroll