Add .gitignore and clean up tracked artifacts
Some checks failed
Build Hugo Site / build (push) Failing after 5s
Some checks failed
Build Hugo Site / build (push) Failing after 5s
- Added comprehensive .gitignore for Hugo projects - Includes exclusions for Claude Code directories - Removed public/ and .hugo_build.lock from tracking - These files will be rebuilt during CI/CD 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
217e4a5de5
commit
eeb487211b
46
.gitignore
vendored
Normal file
46
.gitignore
vendored
Normal file
@ -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/
|
@ -1,11 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Categories on NERDER.LAND</title>
|
||||
<link>http://localhost:1313/categories/</link>
|
||||
<description>Recent content in Categories on NERDER.LAND</description>
|
||||
<generator>Hugo</generator>
|
||||
<language>en-us</language>
|
||||
<atom:link href="http://localhost:1313/categories/feed.xml" rel="self" type="application/rss+xml" />
|
||||
</channel>
|
||||
</rss>
|
@ -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;
|
||||
}
|
||||
}
|
@ -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:<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>
|
||||
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:<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>
|
||||
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:<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>
|
||||
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
|
@ -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
|
@ -1,163 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us" dir="ltr">
|
||||
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Cyberpunk Hackathon: Code the Future - NERDER.LAND</title>
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
|
||||
|
||||
<link rel="alternate" type="application/rss+xml" title="NERDER.LAND - All Content" href="http://localhost:1313/feed.xml">
|
||||
<link rel="alternate" type="application/rss+xml" title="NERDER.LAND - Events" href="http://localhost:1313/events/feed.xml">
|
||||
|
||||
|
||||
<link rel="alternate" type="text/calendar" title="NERDER.LAND - Events Calendar" href="http://localhost:1313/events/calendar.ics">
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<header>
|
||||
|
||||
<h2><a href="/">NERDER.LAND</a></h2>
|
||||
|
||||
</header>
|
||||
<main>
|
||||
|
||||
<article class="event-detail">
|
||||
<div class="ascii-border">
|
||||
<pre>
|
||||
+==================================================================+
|
||||
| EVENT DETAILS |
|
||||
+==================================================================+
|
||||
</pre>
|
||||
</div>
|
||||
|
||||
<h1>Cyberpunk Hackathon: Code the Future</h1>
|
||||
|
||||
<div class="event-meta">
|
||||
<div class="meta-item">
|
||||
<span class="meta-label">Date & Time</span>
|
||||
<span class="meta-value">Sunday, June 15, 2025 at 9:00 AM MDT</span>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="meta-item">
|
||||
<span class="meta-label">End Time</span>
|
||||
<span class="meta-value">Monday, June 16, 2025 at 6:00 PM MDT</span>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="meta-item">
|
||||
<span class="meta-label">Timezone</span>
|
||||
<span class="meta-value">Mountain Time (UTC-6)</span>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="meta-item">
|
||||
<span class="meta-label">Location</span>
|
||||
<span class="meta-value">TechHub Downtown, 123 Main St</span>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="meta-item">
|
||||
<span class="meta-label">Organizer</span>
|
||||
<span class="meta-value">Local Hackers Collective</span>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="meta-item">
|
||||
<span class="meta-label">Capacity</span>
|
||||
<span class="meta-value">50 people</span>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="meta-item">
|
||||
<span class="meta-label">Cost</span>
|
||||
<span class="meta-value">Free</span>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="event-content">
|
||||
<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>
|
||||
<h2 id="event-description">Event Description</h2>
|
||||
<p>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.</p>
|
||||
<h2 id="what-to-expect">What to Expect</h2>
|
||||
<ul>
|
||||
<li><strong>24 hours of non-stop coding</strong></li>
|
||||
<li><strong>Free meals and energy drinks</strong> (because sleep is for the weak)</li>
|
||||
<li><strong>Mentorship from industry experts</strong></li>
|
||||
<li><strong>Amazing prizes</strong> including hardware, software licenses, and crypto rewards</li>
|
||||
<li><strong>Networking with like-minded rebels</strong></li>
|
||||
</ul>
|
||||
<h2 id="categories">Categories</h2>
|
||||
<ul>
|
||||
<li>Best Overall Hack</li>
|
||||
<li>Most Creative Use of AI</li>
|
||||
<li>Blockchain Innovation</li>
|
||||
<li>Cybersecurity Solution</li>
|
||||
<li>UI/UX Design Excellence</li>
|
||||
</ul>
|
||||
<h2 id="requirements">Requirements</h2>
|
||||
<ul>
|
||||
<li>Bring your own laptop and charger</li>
|
||||
<li>Form teams of 2-4 people (or go solo if you dare)</li>
|
||||
<li>All skill levels welcome - we’ll have beginner-friendly workshops</li>
|
||||
</ul>
|
||||
<p>Get ready to jack in and code the future!</p>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="registration">
|
||||
<div class="ascii-border">
|
||||
<pre>
|
||||
+--------------------------------------------------------------+
|
||||
| REGISTRATION |
|
||||
+--------------------------------------------------------------+
|
||||
</pre>
|
||||
</div>
|
||||
<p class="prompt"><a href="https://example.com/register">Register for this event</a></p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="contact">
|
||||
<h3>Contact Information</h3>
|
||||
<p>hackathon@nerder.land</p>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="calendar-actions">
|
||||
<div class="ascii-border">
|
||||
<pre>
|
||||
+--------------------------------------------------------------+
|
||||
| ADD TO CALENDAR |
|
||||
+--------------------------------------------------------------+
|
||||
</pre>
|
||||
</div>
|
||||
<p class="prompt">
|
||||
<a href="/events/cyberpunk-hackathon/calendar.ics" download>📅 Download Event (.ics)</a>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
</main>
|
||||
<footer>
|
||||
<div class="ascii-border">
|
||||
<pre>
|
||||
+===================================================================+
|
||||
</pre>
|
||||
</div>
|
||||
<p class="prompt">NERDER.LAND 2025 - Connecting the tech underground</p>
|
||||
<p style="margin-top: 1rem; font-size: 0.8rem;">
|
||||
<a href="http://localhost:1313/events/feed.xml">📡 RSS Feed</a> |
|
||||
<a href="http://localhost:1313/events/calendar.ics">📅 Calendar Subscription</a> |
|
||||
<a href="mailto:events@nerder.land?subject=Event Submission&body=Please include:%0A%0AEvent Name:%0ADate & Time:%0ALocation:%0ADescription:%0AOrganizer:%0AContact Info:%0ACost:%0ARegistration URL (if any):">📧 Submit an Event</a>
|
||||
</p>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
@ -1,38 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Events on NERDER.LAND</title>
|
||||
<link>http://localhost:1313/events/</link>
|
||||
<description>Welcome to the underground tech scene. Here you'll find the latest nerdy events in our community.</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sun, 22 Jun 2025 14:00:00 -0600</lastBuildDate><atom:link href="http://localhost:1313/events/feed.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>DIY Electronics Workshop: Build Your Own Gadgets</title>
|
||||
<link>http://localhost:1313/events/maker-workshop/</link>
|
||||
<pubDate>Sun, 22 Jun 2025 14:00:00 -0600</pubDate>
|
||||
|
||||
<guid>http://localhost:1313/events/maker-workshop/</guid>
|
||||
<description>📍 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></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Cyberpunk Hackathon: Code the Future</title>
|
||||
<link>http://localhost:1313/events/cyberpunk-hackathon/</link>
|
||||
<pubDate>Sun, 15 Jun 2025 09:00:00 -0600</pubDate>
|
||||
|
||||
<guid>http://localhost:1313/events/cyberpunk-hackathon/</guid>
|
||||
<description>📍 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></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Retro Gaming Night: Pixels & Power-Ups</title>
|
||||
<link>http://localhost:1313/events/retro-gaming-night/</link>
|
||||
<pubDate>Sun, 08 Jun 2025 19:00:00 -0600</pubDate>
|
||||
|
||||
<guid>http://localhost:1313/events/retro-gaming-night/</guid>
|
||||
<description>📍 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></description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
@ -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
|
@ -1,171 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us" dir="ltr">
|
||||
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>DIY Electronics Workshop: Build Your Own Gadgets - NERDER.LAND</title>
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
|
||||
|
||||
<link rel="alternate" type="application/rss+xml" title="NERDER.LAND - All Content" href="http://localhost:1313/feed.xml">
|
||||
<link rel="alternate" type="application/rss+xml" title="NERDER.LAND - Events" href="http://localhost:1313/events/feed.xml">
|
||||
|
||||
|
||||
<link rel="alternate" type="text/calendar" title="NERDER.LAND - Events Calendar" href="http://localhost:1313/events/calendar.ics">
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<header>
|
||||
|
||||
<h2><a href="/">NERDER.LAND</a></h2>
|
||||
|
||||
</header>
|
||||
<main>
|
||||
|
||||
<article class="event-detail">
|
||||
<div class="ascii-border">
|
||||
<pre>
|
||||
+==================================================================+
|
||||
| EVENT DETAILS |
|
||||
+==================================================================+
|
||||
</pre>
|
||||
</div>
|
||||
|
||||
<h1>DIY Electronics Workshop: Build Your Own Gadgets</h1>
|
||||
|
||||
<div class="event-meta">
|
||||
<div class="meta-item">
|
||||
<span class="meta-label">Date & Time</span>
|
||||
<span class="meta-value">Sunday, June 22, 2025 at 2:00 PM MDT</span>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="meta-item">
|
||||
<span class="meta-label">End Time</span>
|
||||
<span class="meta-value">Sunday, June 22, 2025 at 5:00 PM MDT</span>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="meta-item">
|
||||
<span class="meta-label">Timezone</span>
|
||||
<span class="meta-value">Mountain Time (UTC-6)</span>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="meta-item">
|
||||
<span class="meta-label">Location</span>
|
||||
<span class="meta-value">MakerSpace Lab, 789 Circuit St</span>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="meta-item">
|
||||
<span class="meta-label">Organizer</span>
|
||||
<span class="meta-value">Hardware Hackers Guild</span>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="meta-item">
|
||||
<span class="meta-label">Capacity</span>
|
||||
<span class="meta-value">15 people</span>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="meta-item">
|
||||
<span class="meta-label">Cost</span>
|
||||
<span class="meta-value">$25 (includes materials)</span>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="event-content">
|
||||
<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>
|
||||
<h2 id="workshop-overview">Workshop Overview</h2>
|
||||
<p>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.</p>
|
||||
<h2 id="what-youll-build">What You’ll Build</h2>
|
||||
<p>Choose from one of these beginner-friendly projects:</p>
|
||||
<ul>
|
||||
<li><strong>LED Matrix Display</strong> - Program patterns and text</li>
|
||||
<li><strong>Motion Sensor Alarm</strong> - Detect intruders with style</li>
|
||||
<li><strong>Temperature Monitor</strong> - IoT device with wireless connectivity</li>
|
||||
<li><strong>Sound Reactive LEDs</strong> - Lights that dance to music</li>
|
||||
</ul>
|
||||
<h2 id="whats-included">What’s Included</h2>
|
||||
<ul>
|
||||
<li>All electronic components and tools</li>
|
||||
<li>Step-by-step instruction guides</li>
|
||||
<li>Expert mentorship from experienced makers</li>
|
||||
<li>Soldering lessons for beginners</li>
|
||||
<li>Take-home project kit</li>
|
||||
</ul>
|
||||
<h2 id="prerequisites">Prerequisites</h2>
|
||||
<ul>
|
||||
<li>No prior experience required!</li>
|
||||
<li>Bring curiosity and willingness to learn</li>
|
||||
<li>Safety glasses will be provided</li>
|
||||
</ul>
|
||||
<h2 id="skills-youll-learn">Skills You’ll Learn</h2>
|
||||
<ul>
|
||||
<li>Basic circuit design</li>
|
||||
<li>Soldering techniques</li>
|
||||
<li>Microcontroller programming</li>
|
||||
<li>Sensor integration</li>
|
||||
<li>Troubleshooting electronic systems</li>
|
||||
</ul>
|
||||
<p>Perfect for beginners looking to break into the world of electronics and making!</p>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="registration">
|
||||
<div class="ascii-border">
|
||||
<pre>
|
||||
+--------------------------------------------------------------+
|
||||
| REGISTRATION |
|
||||
+--------------------------------------------------------------+
|
||||
</pre>
|
||||
</div>
|
||||
<p class="prompt"><a href="https://example.com/maker-register">Register for this event</a></p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="contact">
|
||||
<h3>Contact Information</h3>
|
||||
<p>makers@nerder.land</p>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="calendar-actions">
|
||||
<div class="ascii-border">
|
||||
<pre>
|
||||
+--------------------------------------------------------------+
|
||||
| ADD TO CALENDAR |
|
||||
+--------------------------------------------------------------+
|
||||
</pre>
|
||||
</div>
|
||||
<p class="prompt">
|
||||
<a href="/events/maker-workshop/calendar.ics" download>📅 Download Event (.ics)</a>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
</main>
|
||||
<footer>
|
||||
<div class="ascii-border">
|
||||
<pre>
|
||||
+===================================================================+
|
||||
</pre>
|
||||
</div>
|
||||
<p class="prompt">NERDER.LAND 2025 - Connecting the tech underground</p>
|
||||
<p style="margin-top: 1rem; font-size: 0.8rem;">
|
||||
<a href="http://localhost:1313/events/feed.xml">📡 RSS Feed</a> |
|
||||
<a href="http://localhost:1313/events/calendar.ics">📅 Calendar Subscription</a> |
|
||||
<a href="mailto:events@nerder.land?subject=Event Submission&body=Please include:%0A%0AEvent Name:%0ADate & Time:%0ALocation:%0ADescription:%0AOrganizer:%0AContact Info:%0ACost:%0ARegistration URL (if any):">📧 Submit an Event</a>
|
||||
</p>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
@ -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
|
@ -1,150 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us" dir="ltr">
|
||||
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Retro Gaming Night: Pixels & Power-Ups - NERDER.LAND</title>
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
|
||||
|
||||
<link rel="alternate" type="application/rss+xml" title="NERDER.LAND - All Content" href="http://localhost:1313/feed.xml">
|
||||
<link rel="alternate" type="application/rss+xml" title="NERDER.LAND - Events" href="http://localhost:1313/events/feed.xml">
|
||||
|
||||
|
||||
<link rel="alternate" type="text/calendar" title="NERDER.LAND - Events Calendar" href="http://localhost:1313/events/calendar.ics">
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<header>
|
||||
|
||||
<h2><a href="/">NERDER.LAND</a></h2>
|
||||
|
||||
</header>
|
||||
<main>
|
||||
|
||||
<article class="event-detail">
|
||||
<div class="ascii-border">
|
||||
<pre>
|
||||
+==================================================================+
|
||||
| EVENT DETAILS |
|
||||
+==================================================================+
|
||||
</pre>
|
||||
</div>
|
||||
|
||||
<h1>Retro Gaming Night: Pixels & Power-Ups</h1>
|
||||
|
||||
<div class="event-meta">
|
||||
<div class="meta-item">
|
||||
<span class="meta-label">Date & Time</span>
|
||||
<span class="meta-value">Sunday, June 8, 2025 at 7:00 PM MDT</span>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="meta-item">
|
||||
<span class="meta-label">End Time</span>
|
||||
<span class="meta-value">Sunday, June 8, 2025 at 11:00 PM MDT</span>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="meta-item">
|
||||
<span class="meta-label">Timezone</span>
|
||||
<span class="meta-value">Mountain Time (UTC-6)</span>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="meta-item">
|
||||
<span class="meta-label">Location</span>
|
||||
<span class="meta-value">Arcade Underground, 456 Neon Ave</span>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="meta-item">
|
||||
<span class="meta-label">Organizer</span>
|
||||
<span class="meta-value">Pixel Pushers Society</span>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="meta-item">
|
||||
<span class="meta-label">Capacity</span>
|
||||
<span class="meta-value">30 people</span>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="meta-item">
|
||||
<span class="meta-label">Cost</span>
|
||||
<span class="meta-value">$10 cover charge</span>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="event-content">
|
||||
<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>
|
||||
<h2 id="event-highlights">Event Highlights</h2>
|
||||
<ul>
|
||||
<li><strong>Classic arcade cabinets</strong> from the 80s and 90s</li>
|
||||
<li><strong>Console gaming stations</strong> with retro systems</li>
|
||||
<li><strong>High score competitions</strong> with prizes</li>
|
||||
<li><strong>Chiptune DJ sets</strong> all night long</li>
|
||||
<li><strong>Retro snacks and drinks</strong> (think Mountain Dew and pizza!)</li>
|
||||
</ul>
|
||||
<h2 id="featured-games">Featured Games</h2>
|
||||
<ul>
|
||||
<li>Street Fighter II</li>
|
||||
<li>Pac-Man Championship</li>
|
||||
<li>Contra Co-op Challenge</li>
|
||||
<li>Tetris Speed Runs</li>
|
||||
<li>Mario Kart 64 Tournament</li>
|
||||
</ul>
|
||||
<h2 id="tournaments">Tournaments</h2>
|
||||
<ul>
|
||||
<li>7:30 PM - Street Fighter II Tournament</li>
|
||||
<li>8:30 PM - Pac-Man High Score Challenge</li>
|
||||
<li>9:30 PM - Mario Kart 64 Grand Prix</li>
|
||||
</ul>
|
||||
<p>Prizes include vintage gaming memorabilia, gift cards, and bragging rights that last forever!</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="contact">
|
||||
<h3>Contact Information</h3>
|
||||
<p>pixels@nerder.land</p>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="calendar-actions">
|
||||
<div class="ascii-border">
|
||||
<pre>
|
||||
+--------------------------------------------------------------+
|
||||
| ADD TO CALENDAR |
|
||||
+--------------------------------------------------------------+
|
||||
</pre>
|
||||
</div>
|
||||
<p class="prompt">
|
||||
<a href="/events/retro-gaming-night/calendar.ics" download>📅 Download Event (.ics)</a>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
</main>
|
||||
<footer>
|
||||
<div class="ascii-border">
|
||||
<pre>
|
||||
+===================================================================+
|
||||
</pre>
|
||||
</div>
|
||||
<p class="prompt">NERDER.LAND 2025 - Connecting the tech underground</p>
|
||||
<p style="margin-top: 1rem; font-size: 0.8rem;">
|
||||
<a href="http://localhost:1313/events/feed.xml">📡 RSS Feed</a> |
|
||||
<a href="http://localhost:1313/events/calendar.ics">📅 Calendar Subscription</a> |
|
||||
<a href="mailto:events@nerder.land?subject=Event Submission&body=Please include:%0A%0AEvent Name:%0ADate & Time:%0ALocation:%0ADescription:%0AOrganizer:%0AContact Info:%0ACost:%0ARegistration URL (if any):">📧 Submit an Event</a>
|
||||
</p>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
@ -1,33 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>NERDER.LAND</title>
|
||||
<link>http://localhost:1313/</link>
|
||||
<description>Recent content on NERDER.LAND</description>
|
||||
<generator>Hugo</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sun, 22 Jun 2025 14:00:00 -0600</lastBuildDate>
|
||||
<atom:link href="http://localhost:1313/feed.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>DIY Electronics Workshop: Build Your Own Gadgets</title>
|
||||
<link>http://localhost:1313/events/maker-workshop/</link>
|
||||
<pubDate>Sun, 22 Jun 2025 14:00:00 -0600</pubDate>
|
||||
<guid>http://localhost:1313/events/maker-workshop/</guid>
|
||||
<description><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></description>
|
||||
</item>
|
||||
<item>
|
||||
<title>Cyberpunk Hackathon: Code the Future</title>
|
||||
<link>http://localhost:1313/events/cyberpunk-hackathon/</link>
|
||||
<pubDate>Sun, 15 Jun 2025 09:00:00 -0600</pubDate>
|
||||
<guid>http://localhost:1313/events/cyberpunk-hackathon/</guid>
|
||||
<description><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></description>
|
||||
</item>
|
||||
<item>
|
||||
<title>Retro Gaming Night: Pixels & Power-Ups</title>
|
||||
<link>http://localhost:1313/events/retro-gaming-night/</link>
|
||||
<pubDate>Sun, 08 Jun 2025 19:00:00 -0600</pubDate>
|
||||
<guid>http://localhost:1313/events/retro-gaming-night/</guid>
|
||||
<description><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></description>
|
||||
</item>
|
||||
</channel>
|
||||
</rss>
|
@ -1,120 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us" dir="ltr">
|
||||
<head>
|
||||
<meta name="generator" content="Hugo 0.147.7"><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>NERDER.LAND</title>
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
|
||||
|
||||
<link rel="alternate" type="application/rss+xml" title="NERDER.LAND - All Content" href="http://localhost:1313/feed.xml">
|
||||
<link rel="alternate" type="application/rss+xml" title="NERDER.LAND - Events" href="http://localhost:1313/events/feed.xml">
|
||||
|
||||
|
||||
<link rel="alternate" type="text/calendar" title="NERDER.LAND - Events Calendar" href="http://localhost:1313/events/calendar.ics">
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<header>
|
||||
|
||||
<h1>NERDER.LAND</h1>
|
||||
<div class="ascii-border">
|
||||
<pre>
|
||||
+===================================================================+
|
||||
</pre>
|
||||
</div>
|
||||
|
||||
</header>
|
||||
<main>
|
||||
|
||||
<div class="intro">
|
||||
<p class="prompt">Welcome to the underground tech scene. Here you'll find the latest nerdy events in our community.</p>
|
||||
</div>
|
||||
|
||||
<div class="ascii-border">
|
||||
<pre>
|
||||
+==================================================================+
|
||||
| UPCOMING EVENTS |
|
||||
+==================================================================+
|
||||
</pre>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<ul class="event-list">
|
||||
|
||||
<li class="event-item">
|
||||
<div class="event-date">Sunday, June 8, 2025 at 7:00 PM MDT</div>
|
||||
<h3 class="event-title">
|
||||
<a href="/events/retro-gaming-night/">Retro Gaming Night: Pixels & Power-Ups</a>
|
||||
</h3>
|
||||
|
||||
<div class="event-location">📍 Arcade Underground, 456 Neon Ave</div>
|
||||
|
||||
|
||||
<div class="event-cost">💰 $10 cover charge</div>
|
||||
|
||||
<div class="event-description"><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></div>
|
||||
<div class="event-link">
|
||||
<a href="/events/retro-gaming-night/">View Details →</a>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="event-item">
|
||||
<div class="event-date">Sunday, June 15, 2025 at 9:00 AM MDT</div>
|
||||
<h3 class="event-title">
|
||||
<a href="/events/cyberpunk-hackathon/">Cyberpunk Hackathon: Code the Future</a>
|
||||
</h3>
|
||||
|
||||
<div class="event-location">📍 TechHub Downtown, 123 Main St</div>
|
||||
|
||||
|
||||
<div class="event-cost">💰 Free</div>
|
||||
|
||||
<div class="event-description"><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></div>
|
||||
<div class="event-link">
|
||||
<a href="/events/cyberpunk-hackathon/">View Details →</a>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="event-item">
|
||||
<div class="event-date">Sunday, June 22, 2025 at 2:00 PM MDT</div>
|
||||
<h3 class="event-title">
|
||||
<a href="/events/maker-workshop/">DIY Electronics Workshop: Build Your Own Gadgets</a>
|
||||
</h3>
|
||||
|
||||
<div class="event-location">📍 MakerSpace Lab, 789 Circuit St</div>
|
||||
|
||||
|
||||
<div class="event-cost">💰 $25 (includes materials)</div>
|
||||
|
||||
<div class="event-description"><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></div>
|
||||
<div class="event-link">
|
||||
<a href="/events/maker-workshop/">View Details →</a>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
</main>
|
||||
<footer>
|
||||
<div class="ascii-border">
|
||||
<pre>
|
||||
+===================================================================+
|
||||
</pre>
|
||||
</div>
|
||||
<p class="prompt">NERDER.LAND 2025 - Connecting the tech underground</p>
|
||||
<p style="margin-top: 1rem; font-size: 0.8rem;">
|
||||
<a href="http://localhost:1313/events/feed.xml">📡 RSS Feed</a> |
|
||||
<a href="http://localhost:1313/events/calendar.ics">📅 Calendar Subscription</a> |
|
||||
<a href="mailto:events@nerder.land?subject=Event Submission&body=Please include:%0A%0AEvent Name:%0ADate & Time:%0ALocation:%0ADescription:%0AOrganizer:%0AContact Info:%0ACost:%0ARegistration URL (if any):">📧 Submit an Event</a>
|
||||
</p>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
@ -1,24 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
|
||||
xmlns:xhtml="http://www.w3.org/1999/xhtml">
|
||||
<url>
|
||||
<loc>http://localhost:1313/events/maker-workshop/</loc>
|
||||
<lastmod>2025-06-22T14:00:00-06:00</lastmod>
|
||||
</url><url>
|
||||
<loc>http://localhost:1313/events/</loc>
|
||||
<lastmod>2025-06-22T14:00:00-06:00</lastmod>
|
||||
</url><url>
|
||||
<loc>http://localhost:1313/</loc>
|
||||
<lastmod>2025-06-22T14:00:00-06:00</lastmod>
|
||||
</url><url>
|
||||
<loc>http://localhost:1313/events/cyberpunk-hackathon/</loc>
|
||||
<lastmod>2025-06-15T09:00:00-06:00</lastmod>
|
||||
</url><url>
|
||||
<loc>http://localhost:1313/events/retro-gaming-night/</loc>
|
||||
<lastmod>2025-06-08T19:00:00-06:00</lastmod>
|
||||
</url><url>
|
||||
<loc>http://localhost:1313/categories/</loc>
|
||||
</url><url>
|
||||
<loc>http://localhost:1313/tags/</loc>
|
||||
</url>
|
||||
</urlset>
|
@ -1,11 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Tags on NERDER.LAND</title>
|
||||
<link>http://localhost:1313/tags/</link>
|
||||
<description>Recent content in Tags on NERDER.LAND</description>
|
||||
<generator>Hugo</generator>
|
||||
<language>en-us</language>
|
||||
<atom:link href="http://localhost:1313/tags/feed.xml" rel="self" type="application/rss+xml" />
|
||||
</channel>
|
||||
</rss>
|
Loading…
x
Reference in New Issue
Block a user