Brief: Newseon creates digestible, industry-specific audio playlists that can be listened to anytime, anywhere.
The client wanted to launch an MVP on Product Hunt as soon as possible in order to validate the idea and the business model. This meant limited resources, a limited budget, and a much tighter design philosophy. The list of deliverables included:
Nov 23rd was a tough day. I was drinking coffee next to my laptop trying to process how I lost $10K in a week. And all of it was my fault.
Making money is awesome. Making money by clicking just a few buttons — even more so. That’s what stock trading kind of feels like. Deceptively simple. Deceptive, being the key.
The year was 2017 and I had just started working for a Fortune 500 company in Toronto. I lived at home so there weren’t any real expenses to worry about and that meant I could look for ways to…
HTTP Requests are the bread and butter of any application. In this example, I will show you how you can make a GET/POST request using Golang.
We will use the jsonplaceholder.typicode.com API to make sample requests to.
package mainimport (
"io/ioutil"
"log"
"net/http"
)func main() {
resp, err := http.Get("https://jsonplaceholder.typicode.com/todos/1")
if err != nil {
log.Printf("Request Failed: %s", err)
return
} defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body) if err != nil {
log.Printf("Reading body failed: %s", err)
return
} // Log the request body
bodyString := string(body)
log.Print(bodyString)
}
Let’s look at how we can add URL params…
Subscription Payments are the bread and butter of a SaaS application; it’s how you start generating revenue. In a well-implemented system, users need to first be able to change or cancel their plans, and second, undergo a trial phase to see if they would even like to pay for premium features. Typically, it’s a hassle to set these up. In this set of guides, we will go through all the steps required to build a complete Subscription Payments system for your SaaS app.
Source Code: https://github.com/bdcorps/stripe-subscriptions-nodejs
Part 1: Adding Basic and Pro subscription plans using Stripe
Subscription Payments are the bread and butter of a SaaS application; it’s how you start generating revenue. In a well-implemented system, users need to first be able to change or cancel their plans, and second, undergo a trial phase to see if they would even like to pay for premium features. Typically, it’s a hassle to set these up. In this set of guides, we will go through all the steps required to build a complete Subscription Payments system for your SaaS app.
Source Code: https://github.com/bdcorps/stripe-subscriptions-nodejs
Part 1: Adding Basic and Pro subscription plans using Stripe
Subscription Payments are the bread and butter of a SaaS application; it’s how you start generating revenue. In a well-implemented system, users need to first be able to change or cancel their plans, and second, undergo a trial phase to see if they would even like to pay for premium features. Typically, it’s a hassle to set these up. In this set of guides, we will go through all the steps required to build a complete Subscription Payments system for your SaaS app.
Source Code: https://github.com/bdcorps/stripe-subscriptions-nodejs
Part 1: Adding Basic and Pro subscription plans using Stripe
Subscription Payments are the bread and butter of a SaaS application; it’s how you start generating revenue. In a well-implemented system, users need to first be able to change or cancel their plans, and second, undergo a trial phase to see if they would even like to pay for premium features. Typically, it’s a hassle to set these up. In this set of guides, we will go through all the steps required to build a complete Subscription Payments system for your SaaS app.
Source Code: https://github.com/bdcorps/stripe-subscriptions-nodejs
Part 1: Adding Basic and Pro subscription plans using Stripe
Subscription Payments are the bread and butter of a SaaS application; it’s how you start generating revenue. In a well-implemented system, users need to first be able to change or cancel their plans, and second, undergo a trial phase to see if they would even like to pay for premium features. Typically, it’s a hassle to set these up. In this set of guides, we will go through all the steps required to build a complete Subscription Payments system for your SaaS app.
Source Code: https://github.com/bdcorps/stripe-subscriptions-nodejs
Part 1: Adding Basic and Pro subscription plans using Stripe
Automated email sequences are an incredible marketing tool for any startup. An email inbox is one of the few 1:1 marketing channels at your disposal. Use it well.
The Candymail NPM package allows you to send marketing email sequences directly from your Node.js server from a single JSON file. Think of it as a docker.yaml but for email marketing.
Let’s say we are building a brand new video editor for the web and looking to delight our new users. We can set up an Onboarding email sequence that welcomes our users and slowly introduces them to the platform.
Let’s get…
At Three Times, we focus on building effective web development solutions to help our customers reach their target audience effectively.
This week we helped a car salesman bring his services to a website so he can deliver a personalized and online car buying experience to his clients — all handled without them having to go into the dealership.
We also streamlined his sales process, automating 75% of the manual workload by using Google Sheets, Calendly, and Mailchimp, combined together with Zapier. Read about how we did that in Part 2! (Coming Soon)