diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2753bb1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,46 @@ +# Hugo build artifacts +/public/ +/resources/ +.hugo_build.lock + +# Temporary files +*.tmp +*.temp +*~ +.DS_Store +Thumbs.db + +# Editor files +.vscode/ +.idea/ +*.swp +*.swo +*~ + +# OS files +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +ehthumbs.db +Thumbs.db + +# Node.js (if using npm/yarn for asset processing) +node_modules/ +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# Environment files +.env +.env.local +.env.development.local +.env.test.local +.env.production.local + +# Hugo cache +/.hugo_build.lock + +# Claude Code directories +.claude/ \ No newline at end of file diff --git a/.hugo_build.lock b/.hugo_build.lock deleted file mode 100644 index e69de29..0000000 diff --git a/public/categories/feed.xml b/public/categories/feed.xml deleted file mode 100644 index f305b5d..0000000 --- a/public/categories/feed.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - Categories on NERDER.LAND - http://localhost:1313/categories/ - Recent content in Categories on NERDER.LAND - Hugo - en-us - - - diff --git a/public/css/style.css b/public/css/style.css deleted file mode 100644 index 2708124..0000000 --- a/public/css/style.css +++ /dev/null @@ -1,230 +0,0 @@ -/* Cyberpunk Console Theme */ -:root { - --neon-green: #00ff41; - --neon-blue: #00d4ff; - --neon-pink: #ff0080; - --dark-bg: #0a0a0a; - --console-bg: #000000; - --terminal-green: #00ff00; - --matrix-green: #41ff00; - --grid-color: #333333; -} - -* { - margin: 0; - padding: 0; - box-sizing: border-box; -} - -body { - font-family: 'Courier New', monospace; - background: var(--dark-bg); - color: var(--neon-green); - line-height: 1.6; - background-image: - linear-gradient(rgba(0, 255, 65, 0.05) 1px, transparent 1px), - linear-gradient(90deg, rgba(0, 255, 65, 0.05) 1px, transparent 1px); - background-size: 20px 20px; - min-height: 100vh; -} - -/* Console border effect */ -.container { - max-width: 1200px; - margin: 0 auto; - padding: 20px; - border: 2px solid var(--neon-green); - border-radius: 5px; - background: rgba(0, 0, 0, 0.8); - box-shadow: - 0 0 20px var(--neon-green), - inset 0 0 20px rgba(0, 255, 65, 0.1); - margin-top: 20px; - margin-bottom: 20px; -} - -/* Typography */ -h1 { - color: var(--neon-blue); - text-shadow: 0 0 10px var(--neon-blue); - font-size: 2.5rem; - margin-bottom: 1rem; - text-transform: uppercase; - letter-spacing: 2px; - text-align: center; -} - -h2 { - color: var(--neon-pink); - text-shadow: 0 0 10px var(--neon-pink); - font-size: 1.8rem; - margin-bottom: 0.8rem; - text-transform: uppercase; -} - -h3 { - color: var(--matrix-green); - text-shadow: 0 0 8px var(--matrix-green); - font-size: 1.4rem; - margin-bottom: 0.6rem; -} - -p { - margin-bottom: 1rem; - color: var(--neon-green); -} - -/* Links */ -a { - color: var(--neon-blue); - text-decoration: none; - text-shadow: 0 0 5px var(--neon-blue); - transition: all 0.3s ease; -} - -a:hover { - color: var(--neon-pink); - text-shadow: 0 0 10px var(--neon-pink); - text-decoration: underline; -} - -/* Event listing */ -.event-list { - list-style: none; - margin-top: 2rem; -} - -.event-item { - border: 1px solid var(--grid-color); - margin-bottom: 1.5rem; - padding: 1.5rem; - background: rgba(0, 0, 0, 0.6); - border-left: 4px solid var(--neon-green); - transition: all 0.3s ease; -} - -.event-item:hover { - border-left-color: var(--neon-pink); - box-shadow: 0 0 15px rgba(255, 0, 128, 0.3); - transform: translateX(5px); -} - -.event-date { - color: var(--neon-blue); - font-weight: bold; - text-transform: uppercase; - letter-spacing: 1px; - font-size: 0.9rem; -} - -.event-title { - color: var(--neon-pink); - font-size: 1.3rem; - margin: 0.5rem 0; - text-shadow: 0 0 8px var(--neon-pink); -} - -.event-description { - color: var(--neon-green); - margin-top: 0.5rem; -} - -.event-location, .event-cost { - color: var(--matrix-green); - font-size: 0.9rem; - margin: 0.3rem 0; -} - -.event-link { - margin-top: 1rem; -} - -.event-link a { - color: var(--neon-blue); - font-weight: bold; - text-decoration: none; - border: 1px solid var(--neon-blue); - padding: 0.3rem 0.8rem; - border-radius: 3px; - transition: all 0.3s ease; -} - -.event-link a:hover { - background: var(--neon-blue); - color: var(--dark-bg); - text-shadow: none; -} - -/* Terminal-style prompt */ -.prompt::before { - content: "$ "; - color: var(--terminal-green); - font-weight: bold; -} - -/* ASCII art borders */ -.ascii-border { - font-family: monospace; - color: var(--neon-green); - text-align: center; - margin: 1rem 0; - font-size: 0.8rem; -} - -/* Event detail page styles */ -.event-detail { - border: 2px solid var(--neon-blue); - padding: 2rem; - background: rgba(0, 212, 255, 0.05); -} - -.calendar-actions { - margin-top: 2rem; - padding: 1rem; - background: rgba(0, 255, 65, 0.05); - border: 1px solid var(--neon-green); -} - -.event-meta { - display: grid; - grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); - gap: 1rem; - margin: 1.5rem 0; - padding: 1rem; - border: 1px solid var(--grid-color); - background: rgba(0, 0, 0, 0.4); -} - -.meta-item { - display: flex; - flex-direction: column; -} - -.meta-label { - color: var(--neon-blue); - font-size: 0.8rem; - text-transform: uppercase; - letter-spacing: 1px; - margin-bottom: 0.3rem; -} - -.meta-value { - color: var(--neon-green); - font-weight: bold; -} - -/* Responsive design */ -@media (max-width: 768px) { - .container { - margin: 10px; - padding: 15px; - } - - h1 { - font-size: 2rem; - } - - .event-meta { - grid-template-columns: 1fr; - } -} \ No newline at end of file diff --git a/public/events/calendar.ics b/public/events/calendar.ics deleted file mode 100644 index 1952e20..0000000 --- a/public/events/calendar.ics +++ /dev/null @@ -1,64 +0,0 @@ -BEGIN:VCALENDAR -VERSION:2.0 -PRODID:-//NERDER.LAND//Event Calendar//EN -NAME:NERDER.LAND Events -X-WR-CALNAME:NERDER.LAND Events -DESCRIPTION:Welcome to the underground tech scene. Here you'll find the latest nerdy events in our community. -TIMEZONE-ID:America/Denver -BEGIN:VTIMEZONE -TZID:America/Denver -BEGIN:DAYLIGHT -TZOFFSETFROM:-0700 -TZOFFSETTO:-0600 -TZNAME:MDT -DTSTART:20250309T020000 -RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=2SU -END:DAYLIGHT -BEGIN:STANDARD -TZOFFSETFROM:-0600 -TZOFFSETTO:-0700 -TZNAME:MST -DTSTART:20251102T020000 -RRULE:FREQ=YEARLY;BYMONTH=11;BYDAY=1SU -END:STANDARD -END:VTIMEZONE -BEGIN:VEVENT -UID:fba924c3385ccd32bad915fa99f6a2bd@localhost:1313/ -DTSTART;TZID=America/Denver:20250622T140000 -DTEND;TZID=America/Denver:20250622T170000 -DTSTAMP:20250604T132919Z -SUMMARY:DIY Electronics Workshop: Build Your Own Gadgets -DESCRIPTION:

Get your hands dirty with circuits\, sensors\, and microcontrollers! Learn circuit design\, soldering\, and programming while building your own working gadgets to take home.

-LOCATION:MakerSpace Lab\, 789 Circuit St -URL:http://localhost:1313/events/maker-workshop/ -ORGANIZER:Hardware Hackers Guild -STATUS:CONFIRMED -TRANSP:OPAQUE -END:VEVENT -BEGIN:VEVENT -UID:93711c4881fb7721f00b4451e4ff7893@localhost:1313/ -DTSTART;TZID=America/Denver:20250615T090000 -DTEND;TZID=America/Denver:20250616T180000 -DTSTAMP:20250604T132919Z -SUMMARY:Cyberpunk Hackathon: Code the Future -DESCRIPTION:

Join us for a 24-hour coding marathon where reality meets the digital underground! Build AR interfaces\, blockchain solutions\, or AI-powered tools in this innovation celebration.

-LOCATION:TechHub Downtown\, 123 Main St -URL:http://localhost:1313/events/cyberpunk-hackathon/ -ORGANIZER:Local Hackers Collective -STATUS:CONFIRMED -TRANSP:OPAQUE -END:VEVENT -BEGIN:VEVENT -UID:10125500066f2fe44cd952eadb298a93@localhost:1313/ -DTSTART;TZID=America/Denver:20250608T190000 -DTEND;TZID=America/Denver:20250608T230000 -DTSTAMP:20250604T132919Z -SUMMARY:Retro Gaming Night: Pixels & Power-Ups -DESCRIPTION:

Step back in time to the golden age of gaming! Classic arcade cabinets\, console gaming stations\, tournaments with prizes\, and chiptune DJ sets all night long.

-LOCATION:Arcade Underground\, 456 Neon Ave -URL:http://localhost:1313/events/retro-gaming-night/ -ORGANIZER:Pixel Pushers Society -STATUS:CONFIRMED -TRANSP:OPAQUE -END:VEVENT -END:VCALENDAR \ No newline at end of file diff --git a/public/events/cyberpunk-hackathon/calendar.ics b/public/events/cyberpunk-hackathon/calendar.ics deleted file mode 100644 index d2100b0..0000000 --- a/public/events/cyberpunk-hackathon/calendar.ics +++ /dev/null @@ -1,38 +0,0 @@ -BEGIN:VCALENDAR -VERSION:2.0 -PRODID:-//NERDER.LAND//Event Calendar//EN -NAME:Cyberpunk Hackathon: Code the Future -X-WR-CALNAME:Cyberpunk Hackathon: Code the Future -TIMEZONE-ID:America/Denver -BEGIN:VTIMEZONE -TZID:America/Denver -BEGIN:DAYLIGHT -TZOFFSETFROM:-0700 -TZOFFSETTO:-0600 -TZNAME:MDT -DTSTART:20250309T020000 -RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=2SU -END:DAYLIGHT -BEGIN:STANDARD -TZOFFSETFROM:-0600 -TZOFFSETTO:-0700 -TZNAME:MST -DTSTART:20251102T020000 -RRULE:FREQ=YEARLY;BYMONTH=11;BYDAY=1SU -END:STANDARD -END:VTIMEZONE -BEGIN:VEVENT -UID:93711c4881fb7721f00b4451e4ff7893@localhost:1313/ -DTSTART;TZID=America/Denver:20250615T090000 -DTEND;TZID=America/Denver:20250616T180000 -DTSTAMP:20250604T132919Z -SUMMARY:Cyberpunk Hackathon: Code the Future -DESCRIPTION:Join us for a 24-hour coding marathon where reality meets the digital underground! Build AR interfaces\, blockchain solutions\, or AI-powered tools in this innovation celebration.\nEvent Description Dive into the neon-lit world of cyberpunk as we challenge developers\, designers\, and tech enthusiasts to build applications that push the boundaries of what’s possible. Whether you’re creating AR interfaces\, blockchain solutions\, or AI-powered tools\, this hackathon celebrates the spirit of innovation.\nWhat to Expect 24 hours of non-stop coding Free meals and energy drinks (because sleep is for the weak) Mentorship from industry experts Amazing prizes including hardware\, software licenses\, and crypto rewards Networking with like-minded rebels Categories Best Overall Hack Most Creative Use of AI Blockchain Innovation Cybersecurity Solution UI/UX Design Excellence Requirements Bring your own laptop and charger Form teams of 2-4 people (or go solo if you dare) All skill levels welcome - we’ll have beginner-friendly workshops Get ready to jack in and code the future!\n -LOCATION:TechHub Downtown\, 123 Main St -URL:http://localhost:1313/events/cyberpunk-hackathon/ -ORGANIZER:Local Hackers Collective -CONTACT:hackathon@nerder.land -STATUS:CONFIRMED -TRANSP:OPAQUE -END:VEVENT -END:VCALENDAR \ No newline at end of file diff --git a/public/events/cyberpunk-hackathon/index.html b/public/events/cyberpunk-hackathon/index.html deleted file mode 100644 index 54c66a8..0000000 --- a/public/events/cyberpunk-hackathon/index.html +++ /dev/null @@ -1,163 +0,0 @@ - - - - - - Cyberpunk Hackathon: Code the Future - NERDER.LAND - - - - - - - - - - -
-
- -

NERDER.LAND

- -
-
- -
-
-
-+==================================================================+
-|                        EVENT DETAILS                            |
-+==================================================================+
-
-
- -

Cyberpunk Hackathon: Code the Future

- -
-
- Date & Time - Sunday, June 15, 2025 at 9:00 AM MDT -
- - -
- End Time - Monday, June 16, 2025 at 6:00 PM MDT -
- - -
- Timezone - Mountain Time (UTC-6) -
- - -
- Location - TechHub Downtown, 123 Main St -
- - - -
- Organizer - Local Hackers Collective -
- - - -
- Capacity - 50 people -
- - - -
- Cost - Free -
- -
- -
-

Join us for a 24-hour coding marathon where reality meets the digital underground! Build AR interfaces, blockchain solutions, or AI-powered tools in this innovation celebration.

-

Event Description

-

Dive into the neon-lit world of cyberpunk as we challenge developers, designers, and tech enthusiasts to build applications that push the boundaries of what’s possible. Whether you’re creating AR interfaces, blockchain solutions, or AI-powered tools, this hackathon celebrates the spirit of innovation.

-

What to Expect

-
    -
  • 24 hours of non-stop coding
  • -
  • Free meals and energy drinks (because sleep is for the weak)
  • -
  • Mentorship from industry experts
  • -
  • Amazing prizes including hardware, software licenses, and crypto rewards
  • -
  • Networking with like-minded rebels
  • -
-

Categories

-
    -
  • Best Overall Hack
  • -
  • Most Creative Use of AI
  • -
  • Blockchain Innovation
  • -
  • Cybersecurity Solution
  • -
  • UI/UX Design Excellence
  • -
-

Requirements

-
    -
  • Bring your own laptop and charger
  • -
  • Form teams of 2-4 people (or go solo if you dare)
  • -
  • All skill levels welcome - we’ll have beginner-friendly workshops
  • -
-

Get ready to jack in and code the future!

-
- - -
-
-
-+--------------------------------------------------------------+
-|                       REGISTRATION                          |
-+--------------------------------------------------------------+
-
-
-

Register for this event

-
- - - -
-

Contact Information

-

hackathon@nerder.land

-
- - -
-
-
-+--------------------------------------------------------------+
-|                    ADD TO CALENDAR                          |
-+--------------------------------------------------------------+
-
-
-

- 📅 Download Event (.ics) -

-
- -
- -
- -
- - \ No newline at end of file diff --git a/public/events/feed.xml b/public/events/feed.xml deleted file mode 100644 index 2f3b48f..0000000 --- a/public/events/feed.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - Events on NERDER.LAND - http://localhost:1313/events/ - Welcome to the underground tech scene. Here you'll find the latest nerdy events in our community. - Hugo -- gohugo.io - en-us - Sun, 22 Jun 2025 14:00:00 -0600 - - DIY Electronics Workshop: Build Your Own Gadgets - http://localhost:1313/events/maker-workshop/ - Sun, 22 Jun 2025 14:00:00 -0600 - - http://localhost:1313/events/maker-workshop/ - 📍 MakerSpace Lab, 789 Circuit St | 🗓️ June 22, 2025 at 2:00 PM MDT | 💰 $25 (includes materials) | <p>Get your hands dirty with circuits, sensors, and microcontrollers! Learn circuit design, soldering, and programming while building your own working gadgets to take home.</p> - - - - Cyberpunk Hackathon: Code the Future - http://localhost:1313/events/cyberpunk-hackathon/ - Sun, 15 Jun 2025 09:00:00 -0600 - - http://localhost:1313/events/cyberpunk-hackathon/ - 📍 TechHub Downtown, 123 Main St | 🗓️ June 15, 2025 at 9:00 AM MDT | 💰 Free | <p>Join us for a 24-hour coding marathon where reality meets the digital underground! Build AR interfaces, blockchain solutions, or AI-powered tools in this innovation celebration.</p> - - - - Retro Gaming Night: Pixels & Power-Ups - http://localhost:1313/events/retro-gaming-night/ - Sun, 08 Jun 2025 19:00:00 -0600 - - http://localhost:1313/events/retro-gaming-night/ - 📍 Arcade Underground, 456 Neon Ave | 🗓️ June 8, 2025 at 7:00 PM MDT | 💰 $10 cover charge | <p>Step back in time to the golden age of gaming! Classic arcade cabinets, console gaming stations, tournaments with prizes, and chiptune DJ sets all night long.</p> - - - - \ No newline at end of file diff --git a/public/events/maker-workshop/calendar.ics b/public/events/maker-workshop/calendar.ics deleted file mode 100644 index 834a704..0000000 --- a/public/events/maker-workshop/calendar.ics +++ /dev/null @@ -1,38 +0,0 @@ -BEGIN:VCALENDAR -VERSION:2.0 -PRODID:-//NERDER.LAND//Event Calendar//EN -NAME:DIY Electronics Workshop: Build Your Own Gadgets -X-WR-CALNAME:DIY Electronics Workshop: Build Your Own Gadgets -TIMEZONE-ID:America/Denver -BEGIN:VTIMEZONE -TZID:America/Denver -BEGIN:DAYLIGHT -TZOFFSETFROM:-0700 -TZOFFSETTO:-0600 -TZNAME:MDT -DTSTART:20250309T020000 -RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=2SU -END:DAYLIGHT -BEGIN:STANDARD -TZOFFSETFROM:-0600 -TZOFFSETTO:-0700 -TZNAME:MST -DTSTART:20251102T020000 -RRULE:FREQ=YEARLY;BYMONTH=11;BYDAY=1SU -END:STANDARD -END:VTIMEZONE -BEGIN:VEVENT -UID:fba924c3385ccd32bad915fa99f6a2bd@localhost:1313/ -DTSTART;TZID=America/Denver:20250622T140000 -DTEND;TZID=America/Denver:20250622T170000 -DTSTAMP:20250604T132919Z -SUMMARY:DIY Electronics Workshop: Build Your Own Gadgets -DESCRIPTION:Get your hands dirty with circuits\, sensors\, and microcontrollers! Learn circuit design\, soldering\, and programming while building your own working gadgets to take home.\nWorkshop Overview Join us for an afternoon of hands-on electronics where you’ll learn the fundamentals of circuit design and build your own working gadgets to take home.\nWhat You’ll Build Choose from one of these beginner-friendly projects:\nLED Matrix Display - Program patterns and text Motion Sensor Alarm - Detect intruders with style Temperature Monitor - IoT device with wireless connectivity Sound Reactive LEDs - Lights that dance to music What’s Included All electronic components and tools Step-by-step instruction guides Expert mentorship from experienced makers Soldering lessons for beginners Take-home project kit Prerequisites No prior experience required! Bring curiosity and willingness to learn Safety glasses will be provided Skills You’ll Learn Basic circuit design Soldering techniques Microcontroller programming Sensor integration Troubleshooting electronic systems Perfect for beginners looking to break into the world of electronics and making!\n -LOCATION:MakerSpace Lab\, 789 Circuit St -URL:http://localhost:1313/events/maker-workshop/ -ORGANIZER:Hardware Hackers Guild -CONTACT:makers@nerder.land -STATUS:CONFIRMED -TRANSP:OPAQUE -END:VEVENT -END:VCALENDAR \ No newline at end of file diff --git a/public/events/maker-workshop/index.html b/public/events/maker-workshop/index.html deleted file mode 100644 index 166e158..0000000 --- a/public/events/maker-workshop/index.html +++ /dev/null @@ -1,171 +0,0 @@ - - - - - - DIY Electronics Workshop: Build Your Own Gadgets - NERDER.LAND - - - - - - - - - - -
-
- -

NERDER.LAND

- -
-
- -
-
-
-+==================================================================+
-|                        EVENT DETAILS                            |
-+==================================================================+
-
-
- -

DIY Electronics Workshop: Build Your Own Gadgets

- -
-
- Date & Time - Sunday, June 22, 2025 at 2:00 PM MDT -
- - -
- End Time - Sunday, June 22, 2025 at 5:00 PM MDT -
- - -
- Timezone - Mountain Time (UTC-6) -
- - -
- Location - MakerSpace Lab, 789 Circuit St -
- - - -
- Organizer - Hardware Hackers Guild -
- - - -
- Capacity - 15 people -
- - - -
- Cost - $25 (includes materials) -
- -
- -
-

Get your hands dirty with circuits, sensors, and microcontrollers! Learn circuit design, soldering, and programming while building your own working gadgets to take home.

-

Workshop Overview

-

Join us for an afternoon of hands-on electronics where you’ll learn the fundamentals of circuit design and build your own working gadgets to take home.

-

What You’ll Build

-

Choose from one of these beginner-friendly projects:

-
    -
  • LED Matrix Display - Program patterns and text
  • -
  • Motion Sensor Alarm - Detect intruders with style
  • -
  • Temperature Monitor - IoT device with wireless connectivity
  • -
  • Sound Reactive LEDs - Lights that dance to music
  • -
-

What’s Included

-
    -
  • All electronic components and tools
  • -
  • Step-by-step instruction guides
  • -
  • Expert mentorship from experienced makers
  • -
  • Soldering lessons for beginners
  • -
  • Take-home project kit
  • -
-

Prerequisites

-
    -
  • No prior experience required!
  • -
  • Bring curiosity and willingness to learn
  • -
  • Safety glasses will be provided
  • -
-

Skills You’ll Learn

-
    -
  • Basic circuit design
  • -
  • Soldering techniques
  • -
  • Microcontroller programming
  • -
  • Sensor integration
  • -
  • Troubleshooting electronic systems
  • -
-

Perfect for beginners looking to break into the world of electronics and making!

-
- - -
-
-
-+--------------------------------------------------------------+
-|                       REGISTRATION                          |
-+--------------------------------------------------------------+
-
-
-

Register for this event

-
- - - -
-

Contact Information

-

makers@nerder.land

-
- - -
-
-
-+--------------------------------------------------------------+
-|                    ADD TO CALENDAR                          |
-+--------------------------------------------------------------+
-
-
-

- 📅 Download Event (.ics) -

-
- -
- -
- -
- - \ No newline at end of file diff --git a/public/events/retro-gaming-night/calendar.ics b/public/events/retro-gaming-night/calendar.ics deleted file mode 100644 index 8c70ccd..0000000 --- a/public/events/retro-gaming-night/calendar.ics +++ /dev/null @@ -1,38 +0,0 @@ -BEGIN:VCALENDAR -VERSION:2.0 -PRODID:-//NERDER.LAND//Event Calendar//EN -NAME:Retro Gaming Night: Pixels & Power-Ups -X-WR-CALNAME:Retro Gaming Night: Pixels & Power-Ups -TIMEZONE-ID:America/Denver -BEGIN:VTIMEZONE -TZID:America/Denver -BEGIN:DAYLIGHT -TZOFFSETFROM:-0700 -TZOFFSETTO:-0600 -TZNAME:MDT -DTSTART:20250309T020000 -RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=2SU -END:DAYLIGHT -BEGIN:STANDARD -TZOFFSETFROM:-0600 -TZOFFSETTO:-0700 -TZNAME:MST -DTSTART:20251102T020000 -RRULE:FREQ=YEARLY;BYMONTH=11;BYDAY=1SU -END:STANDARD -END:VTIMEZONE -BEGIN:VEVENT -UID:10125500066f2fe44cd952eadb298a93@localhost:1313/ -DTSTART;TZID=America/Denver:20250608T190000 -DTEND;TZID=America/Denver:20250608T230000 -DTSTAMP:20250604T132919Z -SUMMARY:Retro Gaming Night: Pixels & Power-Ups -DESCRIPTION:Step back in time to the golden age of gaming! Classic arcade cabinets\, console gaming stations\, tournaments with prizes\, and chiptune DJ sets all night long.\nEvent Highlights Classic arcade cabinets from the 80s and 90s Console gaming stations with retro systems High score competitions with prizes Chiptune DJ sets all night long Retro snacks and drinks (think Mountain Dew and pizza!) Featured Games Street Fighter II Pac-Man Championship Contra Co-op Challenge Tetris Speed Runs Mario Kart 64 Tournament Tournaments 7:30 PM - Street Fighter II Tournament 8:30 PM - Pac-Man High Score Challenge 9:30 PM - Mario Kart 64 Grand Prix Prizes include vintage gaming memorabilia\, gift cards\, and bragging rights that last forever!\n -LOCATION:Arcade Underground\, 456 Neon Ave -URL:http://localhost:1313/events/retro-gaming-night/ -ORGANIZER:Pixel Pushers Society -CONTACT:pixels@nerder.land -STATUS:CONFIRMED -TRANSP:OPAQUE -END:VEVENT -END:VCALENDAR \ No newline at end of file diff --git a/public/events/retro-gaming-night/index.html b/public/events/retro-gaming-night/index.html deleted file mode 100644 index 401bc9b..0000000 --- a/public/events/retro-gaming-night/index.html +++ /dev/null @@ -1,150 +0,0 @@ - - - - - - Retro Gaming Night: Pixels & Power-Ups - NERDER.LAND - - - - - - - - - - -
-
- -

NERDER.LAND

- -
-
- -
-
-
-+==================================================================+
-|                        EVENT DETAILS                            |
-+==================================================================+
-
-
- -

Retro Gaming Night: Pixels & Power-Ups

- -
-
- Date & Time - Sunday, June 8, 2025 at 7:00 PM MDT -
- - -
- End Time - Sunday, June 8, 2025 at 11:00 PM MDT -
- - -
- Timezone - Mountain Time (UTC-6) -
- - -
- Location - Arcade Underground, 456 Neon Ave -
- - - -
- Organizer - Pixel Pushers Society -
- - - -
- Capacity - 30 people -
- - - -
- Cost - $10 cover charge -
- -
- -
-

Step back in time to the golden age of gaming! Classic arcade cabinets, console gaming stations, tournaments with prizes, and chiptune DJ sets all night long.

-

Event Highlights

-
    -
  • Classic arcade cabinets from the 80s and 90s
  • -
  • Console gaming stations with retro systems
  • -
  • High score competitions with prizes
  • -
  • Chiptune DJ sets all night long
  • -
  • Retro snacks and drinks (think Mountain Dew and pizza!)
  • -
- -
    -
  • Street Fighter II
  • -
  • Pac-Man Championship
  • -
  • Contra Co-op Challenge
  • -
  • Tetris Speed Runs
  • -
  • Mario Kart 64 Tournament
  • -
-

Tournaments

-
    -
  • 7:30 PM - Street Fighter II Tournament
  • -
  • 8:30 PM - Pac-Man High Score Challenge
  • -
  • 9:30 PM - Mario Kart 64 Grand Prix
  • -
-

Prizes include vintage gaming memorabilia, gift cards, and bragging rights that last forever!

-
- - - - -
-

Contact Information

-

pixels@nerder.land

-
- - -
-
-
-+--------------------------------------------------------------+
-|                    ADD TO CALENDAR                          |
-+--------------------------------------------------------------+
-
-
-

- 📅 Download Event (.ics) -

-
- -
- -
- -
- - \ No newline at end of file diff --git a/public/feed.xml b/public/feed.xml deleted file mode 100644 index db2ceb7..0000000 --- a/public/feed.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - NERDER.LAND - http://localhost:1313/ - Recent content on NERDER.LAND - Hugo - en-us - Sun, 22 Jun 2025 14:00:00 -0600 - - - DIY Electronics Workshop: Build Your Own Gadgets - http://localhost:1313/events/maker-workshop/ - Sun, 22 Jun 2025 14:00:00 -0600 - http://localhost:1313/events/maker-workshop/ - <p>Get your hands dirty with circuits, sensors, and microcontrollers! Learn circuit design, soldering, and programming while building your own working gadgets to take home.</p> - - - Cyberpunk Hackathon: Code the Future - http://localhost:1313/events/cyberpunk-hackathon/ - Sun, 15 Jun 2025 09:00:00 -0600 - http://localhost:1313/events/cyberpunk-hackathon/ - <p>Join us for a 24-hour coding marathon where reality meets the digital underground! Build AR interfaces, blockchain solutions, or AI-powered tools in this innovation celebration.</p> - - - Retro Gaming Night: Pixels & Power-Ups - http://localhost:1313/events/retro-gaming-night/ - Sun, 08 Jun 2025 19:00:00 -0600 - http://localhost:1313/events/retro-gaming-night/ - <p>Step back in time to the golden age of gaming! Classic arcade cabinets, console gaming stations, tournaments with prizes, and chiptune DJ sets all night long.</p> - - - diff --git a/public/index.html b/public/index.html deleted file mode 100644 index 99c6306..0000000 --- a/public/index.html +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - NERDER.LAND - - - - - - - - - - -
-
- -

NERDER.LAND

-
-
-+===================================================================+
-
-
- -
-
- -
-

Welcome to the underground tech scene. Here you'll find the latest nerdy events in our community.

-
- -
-
-+==================================================================+
-|                         UPCOMING EVENTS                         |
-+==================================================================+
-
-
- - - - - - - - - -
- -
- - \ No newline at end of file diff --git a/public/sitemap.xml b/public/sitemap.xml deleted file mode 100644 index a79ca4c..0000000 --- a/public/sitemap.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - http://localhost:1313/events/maker-workshop/ - 2025-06-22T14:00:00-06:00 - - http://localhost:1313/events/ - 2025-06-22T14:00:00-06:00 - - http://localhost:1313/ - 2025-06-22T14:00:00-06:00 - - http://localhost:1313/events/cyberpunk-hackathon/ - 2025-06-15T09:00:00-06:00 - - http://localhost:1313/events/retro-gaming-night/ - 2025-06-08T19:00:00-06:00 - - http://localhost:1313/categories/ - - http://localhost:1313/tags/ - - diff --git a/public/tags/feed.xml b/public/tags/feed.xml deleted file mode 100644 index e79daca..0000000 --- a/public/tags/feed.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - Tags on NERDER.LAND - http://localhost:1313/tags/ - Recent content in Tags on NERDER.LAND - Hugo - en-us - - -