📺 Develpreneur YouTube Episode

Video + transcript

Learn Python And Django Day 48

2021-04-13 •Youtube

Detailed Notes

Part I of our walk-through/UAT testing. We will be testing the application for usability and features to make our experience a productive one.

You can view source for today and all prior days by reviewing the tag Day 47 at this GitHub: https://github.com/robbroadhead/develpreneur-pythontutorial

Transcript Text
[Music]
well hello and welcome back
we are getting near the end of our
python django
application and walking through some of
the the python skills here
and we are looking at a an overhaul
application so
this episode we're going to look at
essentially it's a user acceptance
testing
kind of thing and what we're going to do
is we're going to bootstrap this so
we're going to use
as we go through we're going to walk
through our application this is you know
a human kind of thing
and we're going to look for some maybe
some things that we want to do to clean
stuff
up to sort of uh you know button down
the last little pieces
and we're going to use our application
to track this
and so we're going to dive right in
we'll start with
coming in from our road maps and we've
got a road map already that we're going
to use for 2021
and we're going to create a new time
frame and we're going to call this one
immediate and this is stuff that we're
going to be working on
and uh the parent is going to be
nothing so i think we're just going to
keep it as itself
and the roadmap is already set and uh
period this is going to be
uh monthly and
that will work for now so we're not
getting any need
any uh time frames we'll go right to our
goals
now one thing that we would look at here
as part of our testing is what happens
if i do a create task
when i have not yet fully created the
time frame
so if i try to do that boom that gives
me an
error so what we're going to do is we're
going to actually create a task
let's see we created all that so we're
going to save this and then one of the
first tasks we're going to do
is create task on new time frame
so we save our record now i think we're
going to be able to no
actually we probably have to so we've
got a nice little bug so if we look at
our let's go back to our roadmaps 2021
immediate now create task
and so the first one we're going to do
is
error message
on create task
when well let's see
click on bite i'm sorry on create task
went
on and clicked on
create time frame
now here's another little thing is our
name is a bit long
and so we may want to add a description
so let's see we're going to do
uh here on create task
new time frame so we're going to do that
this will be so this isn't really built
necessarily for some details
but we are going to do is we're going to
add that so time frame is immediate
uh no due date no completed date but
this is gonna be new
so that's another thing we wanna do is
let's default some of our stuff so we're
gonna create this
and then um here let's see
so now this is on a test let's see what
happens if we create a second task so
let's say
default status on
create task and
if we do save let's go look at our task
let's go roadmap
this one immediate
okay good so it did create it but it
doesn't clear it out i don't know if we
want to do that so right now we'll leave
it that way you can go in you can edit
but it does mean we also want to
this is going to be add
description field to task
uh well we'll just say text for now
we're gonna we'll figure out our size at
some point so we want to do that
and notice a lot of this is going to be
for
uh usability and speed and this is one
of the things that when we
uh what is you call it scratch your own
itch we're creating an application
that we use it's probably going to be
pretty nice because we're using it we're
in it every day or
regularly enough we're going to want to
you know make it work
nicely it's going to try to work with
the way we do stuff
so we want to do that and
let's see so if we return to immediate
we can go back here we can see that we
have our tasks
now one of the things i think we want to
do here because tasks
can get sort of long we're going to see
how this looks here in a minute
so let's say so we've got got our basics
put together
right now so let's go look at so
starting from scratch essentially in our
app we come into our login
we've got a home which works uh
let me log out because now what we do if
we do home doesn't really do anything if
we do about
about is broken on the long end page
and log out exists even if
you have uh logged in i mean even if
you're already so
let's make sure if i do let me just
reset this real quick
okay good so now i've got a couple of
things so i'm going to do
login
shows log out
when logged out
and we also are going to do that
login
about page broken
and i think that's because we don't have
an about anymore we can actually
probably look at that do we have
uh i do not see
yep we don't have an about anymore i
don't know if we have one over here so
we'll have to actually create an about
page of some sort we'll have to do
something for that
so uh let's just say
well we'll do that and we're going to
want to create it
now the nice thing is because we're
returning to this create task
then uh we you know we're seeing we're
able to
tweak these and really quickly enter
tasks what we probably want to do is
we're going to do a create task
provides let's just call it save message
because we want to do something here to
say hey we did save our record
so let's go back to immediate we're
going to see a bunch of tasks
and so now they you know it's starting
to get a little bit long so we may
want to change how we do the task
listing
on edit time frame
so let's say uh slimmer
display of tasks
time frame now what we're doing here
i do want to mention is that we are
building this more as a
bug tracking type of we're using this as
a bug tracking tool
which is not really what tasks
uh typically would do you know our task
is going to be you know mow the yard do
the dishes things like that
we don't necessarily need for example
descriptions
but we're going to provide it and we
will make it
nullable so we save that
make that new save the record now the
other thing is is like
if we save on an already saved record
what does this do let's go look at that
real quick so
we're going to see that we're actually
duplicating
so let's take this one and delete it
okay good that works now delete returns
us to all tasks so that's
yet another that we want to look at so
let's go back to
roadmaps time frame
immediate and so we've got a couple here
so one we want to do
is uh save
may duplicate task
which probably is okay but we're going
to put it up there anyways because as we
change some other things that may work
for us
and we also want to do uh delete
tasks task returns
to task list which we probably don't
want to do we want to go back to where
we were
this is one of those navigation things
we ran across when we started to add a
little bit of a
flow from you know road maps into time
frames and things like that
so now if we look at task list uh
task list what we probably want to do
here
is uh this is a report so there's a
couple things well if we look at our
reports let's go back to that
so let's just say tasks
by roadmap
if we look at that remember we aren't
able to really do anything
with these we can see that there's some
status stuff like that but if we go to
our task list
we can complete and i guess we can come
in and edit but we don't have a way to
filter
so we probably want to add a filter to
all tasks
so let's oops and create tasks doesn't
work from the task list so there's
another one for us to work on
notice as you start getting in testing
you can uh yeah you can crank out some
tasks pretty quick
so let's see first one is a create task
from task list does
not work i will just say broken
and then we also want to do uh
add filter to task list
and that'll work here and so where i
thought maybe we're getting close
and we probably have a couple episodes
of stuff to go through doing some
uh some of this bug fixing some of this
or
uh feature rounding out we'll say it's
not some of it's bugs some of it as we
see our feature changes
uh but we'll you know this can take a
little bit time to clean stuff
up and this is just really we're sort of
functionally focused right now so if we
come in
uh we do our home page is our active
tasks
and we probably uh these are actually
all
i believe new are these are things that
aren't completes remember so we've got
that we may want to
tweak that i think for now we'll leave
active tasks as it is so we've got quite
a few
uh we actually probably want to change
active tasks filter by time frame
oh that does allow us there that's
interesting uh so we want to
active tasks
filter by time frame
it's gonna be new he's gonna work off
his time frame immediate
save the record okay good so he's there
oh and he even returns us to immediate
so that's pretty good there's some of
this that's working
actually pretty nicely uh let's see so
we are going to have to look at
something that's rather interesting here
that i don't know i want to test it
right
at this point i'm going to test it on
the other one is delete record from a
time frame
so roadmaps uh if we go into a roadmap
we can
delete a roadmap but we want to figure
out what does it do
downstream so let's look at
this one at our 2022 because we didn't
really do much with it so we're going to
have to actually create some test data
so this is going to be time frame one
and uh it'll be well we'll just say it's
quarterly
parent is nothing because this is a time
for oh wait
yeah okay so it doesn't have a parent
within the time frame so we're gonna do
that
and then we have sort of the same thing
here but we can quickly create some time
frames
so now if we go back to our roadmap uh
it has two children
we have some time frame so let's go in
here and let's
uh actually we're gonna have to create
both so this is gonna be uh
time frame three because we're gonna
have to walk down
our list a little bit so let's create a
time frame three
and we're going to create a task on this
it's just a
random task off of time frame one
oh
and uh we're actually going to need to
go back to
our uh annual goals and on time frame
two i want to create a task without a
time frame
oh let's see it's just going to be
another task let's call it that
and so now what we've got if we work our
way up to
goals 2022 on that for our road map is
we've got two different time frames
we've got a time frame that has children
and then we have a time frame that does
not have children
but it has a task the first thing we
want to test is what happens if i delete
this time frame
for this task now the task is another
task
whoops and let's see what happens to it
so if i try to delete my time frame boom
now delete time frame returns to all
time frames that's probably something we
want to change
so delete time frame
goes to time frame list
let me see if i can get here we go okay
so if i go back to annual goals
oh i don't want annual goals 2022 oh
this is moving stuff around
so this is going to be where i'm going
to have a little bit of a challenge so
first let's go here
2021 immediate
uh create a task and this is going to be
uh
delete time frame returns
to time frame list which i don't think
we want to do
whoops i don't need a due date yet
and then what was the other one okay so
now i need to look
from here let's go back to roadmaps
2022. so it only has one child but if we
look
it says it has two
which is not right so we also know
that let's go back here
2021 2022 oh so here
we go back into immediate
and we need a task which is
time frame does not
show child count when deleted
we'll just say that
and so now if we go back to our road
maps 2022
the interesting thing is is that we have
no we don't it shows two but we only
have one so if we go back to i think we
called it tfs
is our time frame list so we look from
here and it's going to see
we're going to see the time frame too oh
it's because the child
is the child of the child time frame
which is probably okay
so now we do want to look at our task
list
and we should see somewhere down here
so it looks like it did create our
our other task it looks like it did get
deleted so that's good so it did do
a child delete so now we can probably go
in and if we say
annual goals 2022 then we should see
time frame 1 disappear let's see if all
of this works so if we delete our
roadmaps
so now we only have our one
and if we look at our task list
then uh down here
we lost the tasks that were
on that time frame these are all under
immediate so we're all good
if we look at our time frames
then we'll see that these are all based
off of
our 2021. if we look at any one of these
oh we're gonna have to fix that then
we're gonna see that these are the
annual goals 2021.
so let's go back here so if we look at
the uh
time frame list i don't know if we're
actually still going to use it
uh let's go here uh here
immediate task
let's see fix edit on
time frame list because we want to make
it something other than that button
so that's our start this has gone a
little long but i'm going to
maybe determine a little bit where i can
but we're going to come in next episode
we're going to continue this is notice
that it can take a little bit of time
so we'll do so we're going to take some
time and get ourselves a nice healthy
list
of things we want to fix and then talk
about
actually addressing those remediation of
those issues
that being said i'll cut it short right
now there's not going to be an update
in the um
in github at this point what i'll end up
doing is i'll probably export the items
uh create a list or something like that
and store that so there's not a version
control
update for this episode and likely not
the next one
sorry if i ran a little bit long but as
always go out there have yourself a
great day
and we will talk to you next time
you
Transcript Segments
0.94

[Music]

26.08

well hello and welcome back

27.84

we are getting near the end of our

30.64

python django

32.48

application and walking through some of

34.079

the the python skills here

36.64

and we are looking at a an overhaul

38.8

application so

40.16

this episode we're going to look at

42.399

essentially it's a user acceptance

44.96

testing

45.6

kind of thing and what we're going to do

47.68

is we're going to bootstrap this so

49.2

we're going to use

50.719

as we go through we're going to walk

52.079

through our application this is you know

53.76

a human kind of thing

55.12

and we're going to look for some maybe

57.12

some things that we want to do to clean

58.48

stuff

58.8

up to sort of uh you know button down

61.6

the last little pieces

63.039

and we're going to use our application

64.72

to track this

66.72

and so we're going to dive right in

68.64

we'll start with

70.159

coming in from our road maps and we've

73.119

got a road map already that we're going

74.4

to use for 2021

76.56

and we're going to create a new time

77.84

frame and we're going to call this one

80.24

immediate and this is stuff that we're

83.36

going to be working on

84.479

and uh the parent is going to be

89.04

nothing so i think we're just going to

90.24

keep it as itself

92.4

and the roadmap is already set and uh

95.6

period this is going to be

99.36

uh monthly and

102.96

that will work for now so we're not

104.64

getting any need

106.32

any uh time frames we'll go right to our

108.799

goals

109.759

now one thing that we would look at here

111.84

as part of our testing is what happens

113.68

if i do a create task

115.68

when i have not yet fully created the

118.399

time frame

119.84

so if i try to do that boom that gives

122.32

me an

123.2

error so what we're going to do is we're

124.96

going to actually create a task

126.56

let's see we created all that so we're

127.92

going to save this and then one of the

129.039

first tasks we're going to do

130.16

is create task on new time frame

134.879

so we save our record now i think we're

137.52

going to be able to no

139.36

actually we probably have to so we've

142.16

got a nice little bug so if we look at

143.76

our let's go back to our roadmaps 2021

146.8

immediate now create task

151.44

and so the first one we're going to do

153.36

is

154.8

error message

158.56

on create task

161.68

when well let's see

166.16

click on bite i'm sorry on create task

169.92

went

170.319

on and clicked on

174.239

create time frame

177.36

now here's another little thing is our

178.64

name is a bit long

181.44

and so we may want to add a description

184.48

so let's see we're going to do

185.76

uh here on create task

189.92

new time frame so we're going to do that

191.92

this will be so this isn't really built

193.44

necessarily for some details

195.12

but we are going to do is we're going to

196.48

add that so time frame is immediate

199.04

uh no due date no completed date but

201.2

this is gonna be new

202.319

so that's another thing we wanna do is

203.92

let's default some of our stuff so we're

206.08

gonna create this

208.4

and then um here let's see

212.319

so now this is on a test let's see what

214

happens if we create a second task so

215.519

let's say

216.72

default status on

220.239

create task and

223.519

if we do save let's go look at our task

226.159

let's go roadmap

229.2

this one immediate

232.799

okay good so it did create it but it

234.56

doesn't clear it out i don't know if we

236.239

want to do that so right now we'll leave

237.599

it that way you can go in you can edit

239.84

but it does mean we also want to

243.439

this is going to be add

247.12

description field to task

252.879

uh well we'll just say text for now

256.56

we're gonna we'll figure out our size at

258.16

some point so we want to do that

260.16

and notice a lot of this is going to be

262.32

for

263.199

uh usability and speed and this is one

265.759

of the things that when we

267.199

uh what is you call it scratch your own

269.199

itch we're creating an application

271.04

that we use it's probably going to be

274.24

pretty nice because we're using it we're

276.16

in it every day or

277.759

regularly enough we're going to want to

280.72

you know make it work

281.759

nicely it's going to try to work with

283.84

the way we do stuff

286.32

so we want to do that and

289.6

let's see so if we return to immediate

290.96

we can go back here we can see that we

292.72

have our tasks

294.56

now one of the things i think we want to

296.16

do here because tasks

298

can get sort of long we're going to see

299.28

how this looks here in a minute

301.6

so let's say so we've got got our basics

304.72

put together

305.44

right now so let's go look at so

308.72

starting from scratch essentially in our

311.039

app we come into our login

312.72

we've got a home which works uh

316

let me log out because now what we do if

317.68

we do home doesn't really do anything if

319.28

we do about

321.199

about is broken on the long end page

324.24

and log out exists even if

327.52

you have uh logged in i mean even if

330.8

you're already so

333.12

let's make sure if i do let me just

335.68

reset this real quick

337.12

okay good so now i've got a couple of

339.36

things so i'm going to do

340.96

login

344

shows log out

347.68

when logged out

353.36

and we also are going to do that

356.56

login

360.16

about page broken

364.479

and i think that's because we don't have

366.08

an about anymore we can actually

367.759

probably look at that do we have

371.28

uh i do not see

374.96

yep we don't have an about anymore i

376.72

don't know if we have one over here so

378.4

we'll have to actually create an about

380.479

page of some sort we'll have to do

381.759

something for that

382.96

so uh let's just say

386.479

well we'll do that and we're going to

388.96

want to create it

392.24

now the nice thing is because we're

393.68

returning to this create task

395.84

then uh we you know we're seeing we're

399.039

able to

399.52

tweak these and really quickly enter

401.199

tasks what we probably want to do is

403.68

we're going to do a create task

408.319

provides let's just call it save message

413.28

because we want to do something here to

414.8

say hey we did save our record

418.56

so let's go back to immediate we're

420.16

going to see a bunch of tasks

422.24

and so now they you know it's starting

424.08

to get a little bit long so we may

426.479

want to change how we do the task

429.199

listing

429.84

on edit time frame

434.4

so let's say uh slimmer

439.919

display of tasks

443.12

time frame now what we're doing here

447.52

i do want to mention is that we are

449.039

building this more as a

450.8

bug tracking type of we're using this as

452.72

a bug tracking tool

454.16

which is not really what tasks

457.599

uh typically would do you know our task

460.24

is going to be you know mow the yard do

461.84

the dishes things like that

463.44

we don't necessarily need for example

465.759

descriptions

467.36

but we're going to provide it and we

469.52

will make it

470.479

nullable so we save that

474.24

make that new save the record now the

477.039

other thing is is like

478

if we save on an already saved record

480

what does this do let's go look at that

481.52

real quick so

483.28

we're going to see that we're actually

485.28

duplicating

486.639

so let's take this one and delete it

490.96

okay good that works now delete returns

494.08

us to all tasks so that's

495.759

yet another that we want to look at so

497.759

let's go back to

499.039

roadmaps time frame

502.72

immediate and so we've got a couple here

506.879

so one we want to do

508.16

is uh save

512.159

may duplicate task

516.32

which probably is okay but we're going

518.56

to put it up there anyways because as we

520.32

change some other things that may work

521.76

for us

523.599

and we also want to do uh delete

527.44

tasks task returns

531.36

to task list which we probably don't

533.76

want to do we want to go back to where

535.12

we were

536.32

this is one of those navigation things

537.76

we ran across when we started to add a

540

little bit of a

541.279

flow from you know road maps into time

543.76

frames and things like that

548.24

so now if we look at task list uh

551.519

task list what we probably want to do

553.36

here

554.64

is uh this is a report so there's a

557.279

couple things well if we look at our

558.32

reports let's go back to that

559.839

so let's just say tasks

563.6

by roadmap

567.04

if we look at that remember we aren't

568.56

able to really do anything

570.48

with these we can see that there's some

573.36

status stuff like that but if we go to

575.04

our task list

576.64

we can complete and i guess we can come

579.519

in and edit but we don't have a way to

581.12

filter

582.24

so we probably want to add a filter to

584.399

all tasks

585.839

so let's oops and create tasks doesn't

588.32

work from the task list so there's

590.32

another one for us to work on

593.44

notice as you start getting in testing

595.2

you can uh yeah you can crank out some

597.2

tasks pretty quick

598.64

so let's see first one is a create task

602.24

from task list does

605.36

not work i will just say broken

614.399

and then we also want to do uh

617.44

add filter to task list

624.24

and that'll work here and so where i

627.12

thought maybe we're getting close

628.16

and we probably have a couple episodes

629.519

of stuff to go through doing some

631.2

uh some of this bug fixing some of this

633.12

or

634.32

uh feature rounding out we'll say it's

636.399

not some of it's bugs some of it as we

638.399

see our feature changes

641.12

uh but we'll you know this can take a

642.8

little bit time to clean stuff

644.64

up and this is just really we're sort of

647.12

functionally focused right now so if we

648.8

come in

650

uh we do our home page is our active

654.079

tasks

656.32

and we probably uh these are actually

659.12

all

660.48

i believe new are these are things that

663.2

aren't completes remember so we've got

664.72

that we may want to

668.079

tweak that i think for now we'll leave

669.519

active tasks as it is so we've got quite

671.44

a few

672.32

uh we actually probably want to change

673.92

active tasks filter by time frame

677.68

oh that does allow us there that's

679.12

interesting uh so we want to

681.92

active tasks

686.16

filter by time frame

690.32

it's gonna be new he's gonna work off

693.44

his time frame immediate

695.12

save the record okay good so he's there

697.44

oh and he even returns us to immediate

698.88

so that's pretty good there's some of

699.92

this that's working

700.959

actually pretty nicely uh let's see so

703.44

we are going to have to look at

705.12

something that's rather interesting here

707.68

that i don't know i want to test it

709.279

right

709.92

at this point i'm going to test it on

711.04

the other one is delete record from a

713.2

time frame

715.2

so roadmaps uh if we go into a roadmap

717.76

we can

718.639

delete a roadmap but we want to figure

720.56

out what does it do

722.88

downstream so let's look at

726.079

this one at our 2022 because we didn't

729.12

really do much with it so we're going to

730.48

have to actually create some test data

732.56

so this is going to be time frame one

739.519

and uh it'll be well we'll just say it's

741.6

quarterly

742.639

parent is nothing because this is a time

745.12

for oh wait

746.639

yeah okay so it doesn't have a parent

748

within the time frame so we're gonna do

749.519

that

750.88

and then we have sort of the same thing

752.8

here but we can quickly create some time

755.279

frames

757.12

so now if we go back to our roadmap uh

759.36

it has two children

760.639

we have some time frame so let's go in

762.399

here and let's

764.24

uh actually we're gonna have to create

765.519

both so this is gonna be uh

768.079

time frame three because we're gonna

769.92

have to walk down

771.12

our list a little bit so let's create a

773.68

time frame three

776.399

and we're going to create a task on this

778.16

it's just a

780

random task off of time frame one

785.279

oh

789.68

and uh we're actually going to need to

791.839

go back to

792.959

our uh annual goals and on time frame

795.92

two i want to create a task without a

797.92

time frame

800.88

oh let's see it's just going to be

802.399

another task let's call it that

807.2

and so now what we've got if we work our

809.76

way up to

810.639

goals 2022 on that for our road map is

814.959

we've got two different time frames

816.72

we've got a time frame that has children

819.279

and then we have a time frame that does

820.72

not have children

821.92

but it has a task the first thing we

823.76

want to test is what happens if i delete

825.92

this time frame

827.279

for this task now the task is another

829.68

task

830.72

whoops and let's see what happens to it

835.04

so if i try to delete my time frame boom

838.16

now delete time frame returns to all

840.8

time frames that's probably something we

842.8

want to change

844.48

so delete time frame

848.399

goes to time frame list

854.72

let me see if i can get here we go okay

856.24

so if i go back to annual goals

858.32

oh i don't want annual goals 2022 oh

860.079

this is moving stuff around

861.36

so this is going to be where i'm going

862.32

to have a little bit of a challenge so

863.76

first let's go here

865.76

2021 immediate

869.12

uh create a task and this is going to be

872.079

uh

872.48

delete time frame returns

876.48

to time frame list which i don't think

879.199

we want to do

880

whoops i don't need a due date yet

887.519

and then what was the other one okay so

889.279

now i need to look

890.8

from here let's go back to roadmaps

893.6

2022. so it only has one child but if we

896.32

look

897.279

it says it has two

900.959

which is not right so we also know

904.88

that let's go back here

912.079

2021 2022 oh so here

915.92

we go back into immediate

919.279

and we need a task which is

924.32

time frame does not

927.68

show child count when deleted

931.279

we'll just say that

937.44

and so now if we go back to our road

938.959

maps 2022

941.6

the interesting thing is is that we have

943.36

no we don't it shows two but we only

945.36

have one so if we go back to i think we

947.279

called it tfs

949.44

is our time frame list so we look from

952.079

here and it's going to see

953.759

we're going to see the time frame too oh

955.279

it's because the child

956.8

is the child of the child time frame

959.12

which is probably okay

962.399

so now we do want to look at our task

964.639

list

965.92

and we should see somewhere down here

970.88

so it looks like it did create our

974.48

our other task it looks like it did get

978.16

deleted so that's good so it did do

980.32

a child delete so now we can probably go

982.32

in and if we say

984.399

annual goals 2022 then we should see

987.92

time frame 1 disappear let's see if all

989.92

of this works so if we delete our

991.12

roadmaps

992.24

so now we only have our one

995.519

and if we look at our task list

998.8

then uh down here

1001.839

we lost the tasks that were

1004.88

on that time frame these are all under

1006.959

immediate so we're all good

1009.12

if we look at our time frames

1014.72

then we'll see that these are all based

1016.959

off of

1018.32

our 2021. if we look at any one of these

1021.92

oh we're gonna have to fix that then

1024.319

we're gonna see that these are the

1025.199

annual goals 2021.

1027.28

so let's go back here so if we look at

1029.36

the uh

1030.319

time frame list i don't know if we're

1031.839

actually still going to use it

1033.839

uh let's go here uh here

1038.079

immediate task

1041.52

let's see fix edit on

1046.079

time frame list because we want to make

1048.88

it something other than that button

1053.84

so that's our start this has gone a

1056.32

little long but i'm going to

1057.84

maybe determine a little bit where i can

1060.4

but we're going to come in next episode

1061.76

we're going to continue this is notice

1063.28

that it can take a little bit of time

1065.6

so we'll do so we're going to take some

1067.2

time and get ourselves a nice healthy

1068.72

list

1069.44

of things we want to fix and then talk

1071.76

about

1072.64

actually addressing those remediation of

1074.799

those issues

1075.84

that being said i'll cut it short right

1078.32

now there's not going to be an update

1080

in the um

1083.2

in github at this point what i'll end up

1085.28

doing is i'll probably export the items

1087.919

uh create a list or something like that

1089.36

and store that so there's not a version

1091.6

control

1092.16

update for this episode and likely not

1094.799

the next one

1096.16

sorry if i ran a little bit long but as

1098.08

always go out there have yourself a

1099.76

great day

1100.72

and we will talk to you next time

1118.559

you