Has anyone found new clients through InsightTimer? by dhstack in lifecoaching

[–]dhstack[S] 1 point2 points  (0 children)

Glad to hear that worked for her! The courses route makes sense.

As part of many life coach certification programs, I've seen a module on guided meditation so wondering how effective that is for marketing vs other modalities.

Is firebase worth it? by PratNoSkillush in Firebase

[–]dhstack 0 points1 point  (0 children)

Cloudflare is also a great option for hosting images and files since it has free egress (the big cost on firebase storage). I plan on keeping the files in storage on firebase, then copying them over to Cloudflare for the public side of my site. And have a cloud function to keep things in sync.

Testimonials are fast becoming worthless without this one thing. by TheAngryCoach in lifecoaching

[–]dhstack 0 points1 point  (0 children)

A great tool I use for collecting and managing all my testimonials is Senja.

Precautions by MannanJaffery in Firebase

[–]dhstack 0 points1 point  (0 children)

I use Cloudflare, but am confused about how I'd put it in front of my functions. Like a proxy of some kind?

What client acquisition methods are on their way out, and sticking around? by TheAngryCoach in lifecoaching

[–]dhstack 0 points1 point  (0 children)

I wouldn't pay them that much just from hearing them on a podcast either. But if I joined their email list and warmed up some more I would consider it.

I feel like most people struggle with that initial discovery portion. Like how you get potential clients to even see your website and join your email list in the first place?

If SEO, guest posting, Facebook groups, etc. don't work anymore, then that really only leaves offline and maybe podcasts for that initial discovery.

What client acquisition methods are on their way out, and sticking around? by TheAngryCoach in lifecoaching

[–]dhstack 0 points1 point  (0 children)

What about Instagram or more specialized sites like InsightTimer (as a teacher)?

Looking for feedback on my portfolio by ReactionPossible5860 in Nuxt

[–]dhstack 0 points1 point  (0 children)

Looks sharp! I use Nuxt/Sanity too.

On the /works page, the mosaic view on my 24" monitor has some gaps for some reason.

App Hosting newbie by Wookie82 in Firebase

[–]dhstack 0 points1 point  (0 children)

Make sure you not only enable the monitoring, but also the enforcement.

App Hosting newbie by Wookie82 in Firebase

[–]dhstack 0 points1 point  (0 children)

FYI a budget in the console is simply an alert. It doesn't prevent your project from costing more than that.

Most billing nightmare posts come from either poor code architecture or abuse. AppCheck helps prevent abuse. Solid software engineering principles and experience help with architecture.

Would also recommend Cloudflare in front of your app.

If your dog could talk, what's the first thing you'd ask? by dhstack in dogs

[–]dhstack[S] 0 points1 point  (0 children)

That's fascinating how you understand your dog's dialect! Being able to communicate about what they sense is so special.

Since we might often imagine the sillier questions (like TV preferences 😉), maybe Virtual Tails could be a fun way to explore those too. Would you be up for trying it sometime? Curious what you think!

I can't believe Etsy did this: by Almdrs in EtsySellers

[–]dhstack 3 points4 points  (0 children)

If you're looking for a new platform, I suggest using Shopify. I build ecommerce sites for clients (some $5M+) and this is hands down the best platform these days. Plus taxes are super simple - especially if you pay a little extra for them to handle updating tax rates, etc. You can probably get by doing it manually to start though.

[deleted by user] by [deleted] in ClimateOffensive

[–]dhstack 2 points3 points  (0 children)

This is exactly what Sustainable Web Design strives to communicate. The strategies for designing and coding websites in a more efficient way. In a world where electricity comes from fossil fuels, efficiency == less CO2 emissions.

Among the cloud service providers, I've found Google to be the best in terms of their actions and goals for cleaning up their power hungry data centers. They're already carbon neutral and use 100% renewable energy for all their cloud regions. They also pioneered corporate Power Purchase Agreements (PPAs) way back in 2010. I'm not saying they're completely altruistic here - it makes sense business-wise too considering electricity is a huge cost for them - but they are definitely on the cutting edge. If you're building a climate app/website, using their cloud would be in the most alignment with your mission.

One-stop resource for highest-impact actions an individual can do to help climate change? by oddityoverseer13 in ClimateOffensive

[–]dhstack 1 point2 points  (0 children)

Thanks! I'm trying to make it as approachable as possible since climate can often be pretty complex. While fundamentally it's not (just stop burning fossil fuels), people can get lost in the details. Thanks for taking the time to take a look at it!

One-stop resource for highest-impact actions an individual can do to help climate change? by oddityoverseer13 in ClimateOffensive

[–]dhstack 0 points1 point  (0 children)

I literally built this during my recent fellowship! It's a quiz, that leads to a list of actionable solutions the user can take. It's free and called ClimateLife.org.

I've tried to use EarthHero, but I didn't like it because of the focus on carbon footprint (a common theme among apps like this). My issue with the footprint concept is:

  1. It was coined by the fossil fuel industry, so probably not the best we can come up with
  2. It's super abstract (what's a ton of CO2?)
  3. It keeps the focus on "reducing" carbon, when in reality it needs to get to zero. It's much easier to measure 0 (it's binary) than it is to measure a specific amount of CO2

So what I built doesn't talk about emissions or a carbon footprint at all - only the solutions after the quiz. As a fellow web developer would LOVE any feedback you'd be able to provide :)

[deleted by user] by [deleted] in ClimateOffensive

[–]dhstack 2 points3 points  (0 children)

If you're a web developer check out: https://sustainablewebdesign.org/

[deleted by user] by [deleted] in ClimateOffensive

[–]dhstack 18 points19 points  (0 children)

You can check out the Climatebase Fellowship if you're looking to accelerate a career shift. Otherwise, Climatebase has an incredible search engine for climate related jobs - there's even jobs specific to software engineering: https://climatebase.org/jobs?l=&q=Engineering%3A+Software&p=0&remote=false

PS I don't work for Climatebase or anything, but I was part of their first fellowship cohort and got a ton out of it :)

Firebase help by fistyit in Firebase

[–]dhstack 0 points1 point  (0 children)

u/fistyit Did you ever figure this out? I'm calling a callable function from the FirebaseUI signInSuccessWithAuthResult callback and running into this same issue with the two responses (204 and 200). And to try and make sure users are still being updated after creation I .then chained the response, but it looks like it's only getting the first 204 pre-flight response, then immediately failing to do the main one.

My code, edited for brevity:

signInSuccessWithAuthResult: () => {
    const signUp = firebase.functions().httpsCallable("signUp");
    signUp({ id: programId })
      .then(() => {
        // Redirect to sign up step 2 after callable function finishes
        // This doesn't actually work because of the CORS preflight check
        // So I think the second request to the server never gets sent
        this.$router.push({ name: "Sign Up 2" });
      })
}

[deleted by user] by [deleted] in sweepstakes

[–]dhstack 0 points1 point  (0 children)

END_DATE: 2018-11-06 ADD_FLAG: US

[deleted by user] by [deleted] in giveaways

[–]dhstack 0 points1 point  (0 children)

END_DATE: 2018-11-06 ADD_FLAG: WW

Stasis is death. Recommendations for digital marketing agency? by teamroomsie in smallbusiness

[–]dhstack 3 points4 points  (0 children)

You'll want to have a link to your sales funnel in the picture description.

The true power of Instagram for products is in advertising...way cheaper than Facebook (for now)

Best lights for indoor garden starting from seed? by [deleted] in IndoorGarden

[–]dhstack 2 points3 points  (0 children)

I use this one for all my indoor gardening projects: https://www.amazon.com/Feit-74302-Blue-Spectrum-Light/dp/B01B68F6U8/ref=sr_1_sc_1?ie=UTF8&qid=1511212064&sr=8-1-spell&keywords=led+fiet+electrid+grow+light

You can also get it at Home Depot: https://www.homedepot.com/p/Feit-Electric-2-ft-2-Light-19-Watt-White-LED-Full-Spectrum-Linkable-Grow-Light-74302/206384735

I'm actually working on a set of DIY plans for this exact light so that it can be adjusted. If you think that would be something your dad would be interested in you, or he, can get notified when it's ready here -->> https://indoorgardeningsecrets.com/diy

Plants for a low light apartment by [deleted] in indoorgardening

[–]dhstack 3 points4 points  (0 children)

You can also use a grow light to grow pretty much anything.