Ultimate RoundUp Stuff to Know

Ultimate RoundUp Stuff to Know

No alt text provided for this image

LinkedIn Tuesday is here. Take a look at all the variety in the groups that LinkedIn offers. Also make sure you have added a personal video, a link to a website that you want folks to go to find out more about you, or buy your stuff.

A number of the articles talk about some areas that you should look at and more than likely modify. Also start creating polls, around two a week is good. Make the intro great, the selections creative (I've got a challenge in mind) and the comments need to be responded to and encouraged. #linkedin #chatgpt #class


Class starts today. Here is the link.


No alt text provided for this image

I came across these two baseball articles and reminded me that success in the sport to succeed you need focus on many skills. The outfielders describing the flight of balls of the bat and where it is headed, height, speed, yikes! What is physics doing in baseball and the ballplayers understanding this? Yeah, the sport has changed and for the better. These guys know a few things.

The above artcile simply amplifies that there is a method to solve all problems, and that sometimes they cannot be solved. Its ok, play the game, and yes sometimes you lose. Learn from it, there were probably opportunities to win along the way that were not taken.

No alt text provided for this image


No alt text provided for this image

Our Happy Hour Mixers are a fun way to meet, connect and develop long lasting relationships with business professionals from the Phoenix Metro area. The Moxy Hotel has a great vibe and has plenty of room for everyone to mix and mingle.

The talented Will Hall playing the Ukulele for us. Check out the video of him playing at our Westside Mixer in November: https://www.instagram.com/reel/ClAoSA3jsEl/?igshid=MDJmNzVkMjY=

Date: February 7, 2023

Time: 5:30 pm - 7:30 pm

Location: The Moxy Hotel - 1333 South Rural Road Tempe, AZ

**Parking in the CVS parking lot is okay - disregard the signs :)

This is a FREE event and all are welcome to attend. Connections Members (legacy Passport Members) get their first drink FREE.

Please R.S.V.P. below so we know how many people to plan for. Spread the word and invite your friends!

****FIND ME & GET A FREE FROSTY FOR ALL OF 2023! ***


It seems that today is an educational day, what do you know that your competition does not? Is that your advantage?


No alt text provided for this image

A little preview for tomorrow. These guys are getting new competition from a few places, more on that tomorrow. Here's a result from a request. This chatGPT is pretty amazing.


We asked: create actual code for website membership site, four payment teers (one off, monthly, quarterly, annual, lifetime) The benefits are two classes a week, monthly mastermind, Facebook Group to a private group, weekly code snippets or recipes, weekly office hours more on the way.

We Got :

Here is a sample code in Python using Django framework to implement the membership site with four payment tiers:

python

Copy code
# models.py from django.db import models class Member(models.Model): # payment options ONE_OFF ?= 'OO' MONTHLY = 'MO' QUARTERLY = 'QU' ANNUAL = 'AN' LIFETIME = 'LI' PAYMENT_OPTIONS = [ (ONE_OFF, 'One-Off'), (MONTHLY, 'Monthly'), (QUARTERLY, 'Quarterly'), (ANNUAL, 'Annual'), (LIFETIME, 'Lifetime'), ] name = models.CharField(max_length=100) email = models.EmailField(unique=True) payment_option = models.CharField( max_length=2, choices=PAYMENT_OPTIONS, default=MONTHLY, ) subscribed = models.BooleanField(default=False) def __str__(self): return self.email # views.py from django.shortcuts import render from .models import Member def memberships(request): if request.method == 'POST': email = request.POST.get('email') payment_option = request.POST.get('payment_option') member = Member.objects.create( email=email, payment_option=payment_option, subscribed=True, ) return render(request, 'memberships/thank_you.html', {'member': member}) return render(request, 'memberships/memberships.html') # memberships.html <form method="post"> {% csrf_token %} <input type="email" name="email" required> <select name="payment_option"> {% for payment_option, name in member.PAYMENT_OPTIONS %} <option value="{{ payment_option }}">{{ name }}</option> {% endfor %} </select> <button type="submit">Subscribe</button> </form> # thank_you.html <p>Thank you for subscribing, {{ member.email }}!</p> <p>You have selected the {{ member.get_payment_option_display }} option.</p> 

# models.py

from django.db import models

class Member(models.Model):

# payment options

ONE_OFF ?= 'OO'

MONTHLY = 'MO'

QUARTERLY = 'QU'

ANNUAL = 'AN'

LIFETIME = 'LI'

PAYMENT_OPTIONS = [

(ONE_OFF, 'One-Off'),

(MONTHLY, 'Monthly'),

(QUARTERLY, 'Quarterly'),

(ANNUAL, 'Annual'),

(LIFETIME, 'Lifetime'),

]

name = models.CharField(max_length=100)

email = models.EmailField(unique=True)

payment_option = models.CharField(

max_length=2,

choices=PAYMENT_OPTIONS,

default=MONTHLY,

)

subscribed = models.BooleanField(default=False)

def __str__(self):

return self.email

# views.py

from django.shortcuts import render

from .models import Member

def memberships(request):

if request.method == 'POST':

email = request.POST.get('email')

payment_option = request.POST.get('payment_option')

member = Member.objects.create(

email=email,

payment_option=payment_option,

subscribed=True,

)

return render(request, 'memberships/thank_you.html', {'member': member})

return render(request, 'memberships/memberships.html')

# memberships.html

<form method="post">

{% csrf_token %}

<input type="email" name="email" required>

<select name="payment_option">

{% for payment_option, name in member.PAYMENT_OPTIONS %}

<option value="{{ payment_option }}">{{ name }}</option>

{% endfor %}

</select>

<button type="submit">Subscribe</button>

</form>

# thank_you.html

<p>Thank you for subscribing, {{ member.email }}!</p>

<p>You have selected the {{ member.get_payment_option_display }} option.</p>


YES lots of code. Have not plugged in yet.

This code allows users to subscribe to the membership site by entering their email and selecting a payment option from the dropdown list. Once the form is submitted, the member's information will be saved to the database, and a thank-you page will be displayed to the user.

This code serves as a basic foundation for your membership site and can be further developed to include the benefits you mentioned.


No alt text provided for this image


No alt text provided for this image

I'm going with two today. Need to find this kid, he knows how to throw a party, and as long as I am planing my snow photo excursion these are all very inspiring. #food #snowsculpture #snow #snowflakes


要查看或添加评论,请登录

Paul Valach的更多文章

  • Power

    Power

    The Laws of Power: A Study Guide (Laws 1-5) Quiz: Short-Answer Questions What is the central idea behind the law "Never…

  • To steal ideas..

    To steal ideas..

    I entered into chatGPT..

    1 条评论
  • Navigating the Resume Flood: A Guide for Modern Job Seekers

    Navigating the Resume Flood: A Guide for Modern Job Seekers

    In today's digital age, where AI-generated resumes and one-click applications are the norm, standing out in the sea of…

    1 条评论
  • Breakfast - French Toast

    Breakfast - French Toast

    We all know that breakfast is VERY important. A good solid one at that.

  • $7 Million, All Sold Out

    $7 Million, All Sold Out

    So you have the $7 million, but there are no more spots left, and its only November. Well ok, another way to put it 99…

  • A few gifts...

    A few gifts...

    Is it really Trick or Treat Day today? There's an Official Day, NOT DAY. Dalle-3 The prompt it generated: Illustration…

    1 条评论
  • International Black Cat Day - PURR

    International Black Cat Day - PURR

    I've had the pleasure of having TWO black cats, and at the same time. I recall a few times people asking, 'you have…

  • National Mule Day!

    National Mule Day!

    Did you know today is National Mule Day? --- Celebrating the Sturdy and Steadfast Mule on National Mule Day Today, on…

    2 条评论
  • Ultimate RoundUp Need to Know

    Ultimate RoundUp Need to Know

    A somewhat quick bits of news and creativeness. Enjoy! New Sticker Collecion cOmming Soon EVENTS COMING UP IN…

    1 条评论
  • Ultimate RoundUp Stuff to Know

    Ultimate RoundUp Stuff to Know

    Let's see how far this one goes. Been playing with Midjourney quite a bit, coupled with chatGPT and now stories and…

其他会员也浏览了