Let’s work together!

Get Notified When Something Happens!

function submitEmail() { console.log(“submitEmail triggered”); // Debug log const input = document.getElementById(“wcp-email”); const email = input.value.trim(); if (email) { db.collection(“mailingList”).add({ email: email, timestamp: Date.now() }).then(() => { alert(“Email submitted successfully!”); input.value = “”; }).catch(err => { alert(“Error: ” + err.message); }); } else { alert(“Please enter a valid email.”); } }

Let’s Build Something

I’m always looking for cool weed-adjacent collaborators. Writers, growers, artists, product nerds—whatever your thing is, if it vibes with weedcomma, I want to hear it. Read the blog

If you’ve got something in mind, hit me up using the form on the left. Let’s make something fun and weird and good.

// Initialize Firebase const firebaseConfig = { apiKey: “AIzaSyCR8DrZDtD0u5lREKcohR84aaLepG7CM3Q”, authDomain: “weedcommaplease.firebaseapp.com”, projectId: “weedcommaplease”, storageBucket: “weedcommaplease.appspot.com”, messagingSenderId: “400666576100”, appId: “1:400666576100:web:28d0384d98c46fc86ad8f1”, measurementId: “G-D9CWZZTJ9Y” }; firebase.initializeApp(firebaseConfig); const db = firebase.firestore(); function submitEmail() { const input = document.getElementById(“wcp-email”); const email = input.value.trim(); if (email) { db.collection(“mailingList”).add({ email: email, timestamp: Date.now() }).then(() => { alert(“Email submitted successfully!”); input.value = “”; }).catch(err => { alert(“Error: ” + err.message); }); } else { alert(“Please enter a valid email.”); } } document.addEventListener(“DOMContentLoaded”, function () { const collabForm = document.getElementById(“collab-form”); collabForm.addEventListener(“submit”, function (e) { e.preventDefault(); // Prevent page reload const message = collabForm.message.value.trim(); if (message) { db.collection(“collabMessages”).add({ message: message, timestamp: Date.now() }).then(() => { alert(“Message submitted successfully!”); collabForm.reset(); }).catch(err => { alert(“Error: ” + err.message); }); } else { alert(“Please enter a message.”); } }); });
Scroll to Top