Thứ Hai, 26 tháng 2, 2018

Waching daily Feb 26 2018

Hi, this is Lourdes.

The Reiki in this video

is for brain Injuries.

If you are new to Reiki, my videos,

or my channel, please check out

my Frequently Asked Questions Playlist.

There is a link to it above my head.

If you are new to Reiki please check out

my website for sessions, classes,

services and readings.

The website is www.RestRelaxationandReiki.com

Please subscribe to my channel to receive

notifications as to when new videos

are produced.

If you are interested in social media

platforms like Facebook, Instgram, Tumblr

and Pinterest, please check out the description box.

At the end of this video there

will be other videos listed that will also

work with this goal.

One thing I forgot to mention,

Reiki is not a medical treatment.

It works best when used with allopathic medicine.

So if someone has any brain injuries

please make sure to get the advice of a medical professional.

If you are ready, please sit back,

relax, and let this Reiki flow to you.

Thank you for watching this video. And

for more videos that may interest you, please check out the videos around me.

Thank you.

For more infomation >> Reiki for Brain Injuries* - Duration: 11:25.

-------------------------------------------

Azure Friday | Cassandra API for Azure Cosmos DB - Duration: 8:57.

>> Hey friends, it's Azure Friday.

I'm here with Caron and we're going to talk a little

bit more about Azure Cosmos DB,

some of the exciting new features

like Cassandra Support. How's it going?

>> Awesome. It's always such a pleasure

to be here. Thank you for having me.

And today is especially

exciting because at the end of the year,

lots of good things came out,

as we announced just

a couple of weeks ago, and one of them

was availability of Cassandra API on Cosmos DB.

So as many of you know,

Cosmos DB is

a globally distributed database with multi-model support.

So, it allows you to work with multiple different things.

For example with documents using CQL or MongoDB API,

with graphs using Gremlin API,

working with key value APIs using Azure Table API,

and now it offers you Cassandra API.

And support for Cassandra API is a protocol level,

so you can take your existing app or existing tool set

that you use with Cassandra and just redirect it,

point it at Cosmos DB

and they will not know the difference.

>> So, Cassandra is an open source database that

people run on Linux PMs on their own?

>> Yep, good point.

It's a very popular,

a very cool open source database

for high scale real-time data scenarios,

which is what we're especially excited about because

it's exactly what Cosmos DB is for as well.

So we love Cassandra.

The main thing, it's an open source database,

so if you run it, you have to run it and manage it,

and it's usually used

for high skill scenarios where

you're managing large clusters.

It's a non-trivial investment of DevOps of your time,

and it's a pretty complicated thing to configure.

So, we just tried to help and make a spin out of.

>> Couldn't Azure have made

a Cassandra database as a service?

>> Good question. Yes, we had two options.

We could take Cassandra open source

and run it as a service,

just like we do RADIUS as a service in

Azure and it's a good approach.

The challenge of this approach is that,

not really a challenge,

but we thought that we could do better,

and by better meaning that

we are not saying that we can do,

what I'd better called an

open source community,

the open source community got phenomenal code,

but we can do services that are more optimized for Azure.

And we have been investing in

a particular service called Azure Cosmos DB

that brings you global distribution,

that brings you multiple consistency,

intuitive consistency choices,

it brings you super low latency,

high scale, and it's a managed service on Azure.

Optimized for Azure platform.

It's aware of the fact that it runs on Azure,

as opposed to Cassandra that is written as a Linux.

Database runs on Linux, it doesn't know-

>> It runs in a VM,

it doesn't care if it's in the cloud.

That means that you're going to get all of

the benefits of what's good about

Cassandra and all of the benefits

of being in Azure and knowing you're in Azure?

>> Yes. That is our goal with this.

So let's do a quick demo.

So you can create a Cosmos DB with Cassandra API by

just going and clicking

"Create" and choosing a Cassandra API.

I have already created one because it

takes a few seconds,

close to a minute to create an account.

So I have created this one and it's

an empty account, as we can see, it doesn't have anything.

We open data explorer, there are no Cassandra tables.

You have a nice "Quick start".

I'm pretty proud of the "Quick start."

It speeds up, it answers you a lot of questions.

Many people use them and

we use the same technique for Cassandra API.

So what I'm going to do is,

I'm going to communicate to this database using

"Cassandra CQL Shell" that's

a command line utility that's

very common among Cassandra developers.

It allows them to do

data management separations and

serve data all from command line.

>> And this shell doesn't know about Azure?

>> Absolutely.

>> It doesn't know that it's not talking to Cassandra.

>> Exactly.

>> Because it is, it's talking to Cassandra on Cosmos.

>> Let's see what it will do.

So let's copy this line. Let's go.

So here I'm running Python and I'm

running cqlsh.py which is a CQL Shell-.

>> So CQL Shell is a Python app?

>> It's a Python app. And this will

connect CQL Shell to

Cosmos DB account with Cassandra API.

And again, it seems that it's connected to

a broad cluster at some hostname. That's all it knows.

>> It says write there, Native Protocol v4.

For all it knows, it's talking to Cassandra.

>> Yep. So let's do a few CQL.

CQL is Cassandra query language,

very similar to SQL.

I think it's a subset of SQL with few additional.

So what are we going to do is we're going to create

a key space equivalent of a database,

create a key space.

We'll create a table in that key space and we'll

insert few empty points.

The fact is the videos that we're recording today.

We can just copy paste this and in

CQL Shell we'll insert them one by one.

And again, it doesn't know anything about Cosmos DB,

it just keeps executing

Cassandra query language commands.

>> Is Cassandra a more SQL like or more Mongo like?

>> It's neither.

It's effectively a white column Family Database.

So it's good at operating with the flat rows,

you can have as many columns as you like.

It's similar to SQL in the sense the that the schema,

it's not a schemaless database,

it has a schema, so tables have schemas.

And ironically, Cosmos DB

in this case serves you the schema,

but the only thing is you can change it

anytime in the back.

The other thing is that we index everything

so you don't have to worry about indexing.

It doesn't really matter what I

specify here has to be indexed,

everything will get indexed.

So let's go back to our Data Explorer.

As we can see now we have created

Azure Friday key space and videos collection

and now if we click on rows,

we should see the rows that gets inserted by CQL Shell.

So this kind of completes the round trip,

so you can work with if you

prefer the graphic UI interface,

you are welcome to work with

your Cassandra from the Portal.

We offer you a reasonable nice data explorer

or you can work with your existing tools that you love

and you can take any app and redirect

just like we redirect to CQL Shell.

You can redirect an app at

Cosmos DB just by changing your connections.

>> Sometimes with these databases

like Mongo as an example,

there are Niche or more obscure features.

So when you initially came out with

your Mongo support you

supported like 80 percent of what Mongo supports.

How does that work in the Cassandra space?

Could I plug my Cassandra app in and

find out that maybe there's a feature

that you don't support?

>> Definitely. Right now we're in preview.

So we don't support

certain data types which we are adding.

There are certain constructs of

SQL language that we don't map to.

But the good news is that we've done

a pretty thorough analysis of

Cassandra API and there

is nothing that we cannot support.

In some sense it's actually easier than Mongo,

because Mongo is a very sophisticated data model,

the lots of features and tools.

Mongo always focused on making it developer friendly.

As a result, they satisfied as many OSC's as possible.

>> All right. They did everything.

>> With Cassandra it's optimized for

Path which we are already pretty good at,

the data model is much simpler.

>> Cool. So it sounds like

people should be using this in preview now,

trying it out and seeing if their Cassandra apps

work great and seeing

what the performance characteristics are.

>>Yep, and we'll keep working on it and then

in some time we'll deliver 100 percent.

>> That's fantastic and it sounds like you're

pretty excited about the compatibly that you have today.

>> Yes. It's a preview.

It's just like when we went with Mongo,

80 percent is probably an accurate number.

>> Yes, that's great. And so it's in preview now.

People can try it out and then as

you start to have more confidence in it,

you'll eventually GA, it's will to be available forever.

Fantastic. All right.

I'm learning all about how you can do

the Cassandra database on

top of Azure Cosmos DB with the new Cassandra DB APIs,

here on Azure Friday.

For more infomation >> Azure Friday | Cassandra API for Azure Cosmos DB - Duration: 8:57.

-------------------------------------------

Cincinnati's East End waits for flooding to recede - Duration: 0:56.

For more infomation >> Cincinnati's East End waits for flooding to recede - Duration: 0:56.

-------------------------------------------

Attorney for deputy that did not enter school says client is no coward - Duration: 1:12.

For more infomation >> Attorney for deputy that did not enter school says client is no coward - Duration: 1:12.

-------------------------------------------

SEPTA Sells Special Travel Pass For The Philadelphia Flower Show - Duration: 0:33.

For more infomation >> SEPTA Sells Special Travel Pass For The Philadelphia Flower Show - Duration: 0:33.

-------------------------------------------

Why a Doctor Chose NMC for His Knee Replacement - Duration: 1:49.

When you can choose any partner in healthcare, we're more than proud when

patients choose NMC. We're also deeply touched and ready to rise to the

challenge to consistently provide the very best in services for every need.

When it came time for Dr. Charles Thompson to choose a joint replacement

program, he could have chosen virtually any Hospital anywhere but he chose us.

Our total joint program is the only one in the area recognized by the Joint

Commission with the Gold Seal of Approval for its advanced technology,

expertise of practices, and personalized attention for every patient and

procedure. Dr. Thompson wasn't willing to accept a loss of lifestyle or mobility.

And as a physician, he had the unique perspective to know what to look for in

a top-rated facility and it's specialists, The fact that he could get

all of this so close to home just made the decision that much easier. With

shortened length of stays enabled by our restorative approach that puts people

first, Dr. Thompson was literally back on his

feet in short order and ready to think about what matters most again. He gave us

the highest marks for compassionate and expert care and he's not alone. More

patients perceive our care to be exceptional compared to other facilities

so we know we're doing something very right to earn this trust. And at NMC, no

matter what we do, it's always about our commitment to quality our dedication to

care and our focus on healthy futures for our entire community. Because we're

not in this to be chosen just today. We're in this to serve you for life

Ready to see a doctor about your hip or knee pain?

Call 833-214-8634 or visit NacMedicalCenter.com/Conquer

For more infomation >> Why a Doctor Chose NMC for His Knee Replacement - Duration: 1:49.

-------------------------------------------

Dragon Idle - My friend Bolobi made this game for me! Dragon Idle C++ - Duration: 11:03.

hello friends and welcome to a game called dragon Idle this game was made by

my friend Bolobi for me and it's it's a very very simple little thing made in

C++ so I think it's really cool we'll look at the presentation here and they

say and he says that this game was made for DragoNate it's an idle speedrun

game made in C++ the goal is to reach 50 million gold in the least time possible

there is no rush to have I tried to have ad a leaderboard but I failed instead

the game shows her score at the end of the game tried to beat me i won with the

score of 275 it is recommended to play in full-screen mode I don't know exactly

how to play in full-screen mode but you guys are seeing in full in full-screen

mode here it's gonna take up the entire screen there and bla bla bla

now he wasn't able to add pictures because I don't think you can with C++

so what I was thinking is I may add some pictures behind the screen for right now

it'll be my face behind the the stuff here but then and we are going to make

pictures later on so we'll see how well that goes because I think I think it'll

be really cool so anyway commands here how to play

press B to buy something you can only buy 9 things at once if you want to buy

more do you have to buy more again W to make the time go forward once hint you

can type multiple W to make the game go further if you see a bud please tell me

that's all enjoy winky face press 0 to go back to main menu and let's go so

zeros to exit the game yes it is a game it is definitely a game very simple

little game but I think is cute so close to the goal of the game is to reach

hundred million money in the least time possible I thought you said 50 million

before yeah we'll see you can see the time at the top of the screen press W 2

and then enter to play the game so if press W once now it shows we can well we

start with a thousand money oh ok well we start with the thousand money there

we go so we might as well press B to buy and then we have to press 3 to what one

of those things there then we want to choose how many dragon

kids to buy so I'm going to choose one to start with

that should be all of my money is that is that not correct

b1 well that was very confusing okay so maybe we can't do that then huh so let's

try this there we go okay so now I can but it's only let me get one at a time

hmm okay that strange it's only like it's

only letting me get one at a time which is strange because when I played it

before it was allowing me to buy multiples at a time but now it seems huh

okay so it works for the for the first one but not for the others odd okay well

let's let's see how this goes so for all pressing 10 w's and then we get a bunch

of money back okay so let's let's get to a thousand there now we should be able

to buy we can't buy and I progressed a little further now it's letting me buy

two of the baby dragon here let's see what happens next

so I'll press a bunch of W with there we go now if we go three then one no so

won't let me buy any of the dragon kids odd okay I went back to the previous

version because I think the this one this one should definitely work here so

now what I should be able to do is go b2 and then one yes so now I can buy one of

the baby dragon we all start with a hundred money this time instead of a

thousand but that's okay well we'll just keep it going so now I'll press no I

don't know if at five W's maybe six six dollars sure let's go with that then it

will be one and we should be able to buy three of those

now we'll increase a little further w oops my bad sorry I am pressing wrong

thing w and one more w now let's go be two and

then one alright so now we have a bit of money here we'll just progressed oh oops

and I pressed a bunch of twos and save a bunch w is my bad okay so let's let's

keep the W is going I don't know if there's more strategy or not but I'm

gonna get two of these things maybe I can look at one let's see how many of

these things like I can get that should be able to give a couple be one two more

no be one only one what I should be able to get one more of those come on there

you go now it's - all right now a bunch of w's

b22 should be able to get yeah b12 we I progressed enough with time spent is

only 53 we're gonna buy one of the dragon kids there we go

now at www.viki one more w1 one more extra W Willowby three and then one okay

now we'll go b2 and then one get one of those wwwww go to 70 there we go oh

sweet holy crap okay so we can get one of the team dragons just like that there

we go b2 and I should be able to get one oh I can never get two of those okay so

we'll get two of those bunch more double use before one of those b3 one of the oh

shoot we don't have enough b2 for those yeah I can do that

b1 for those so you can see here it shows our total money production as well

which is 8:49 so that's helpful to know will press a bunch of w's there all

right now I think I believe a 10,000 is the next one okay so until then we'll go

with B form we've got two more though oh did I get - there we go now we have

enough to get the adult dragon so let's go b5

go get one of those perfect lovely never go b2 and one of those go get one more

of those okay there we go bunch of w's oh my okay let's go to of

the dragons there I think I think I get to

to the a second no I won't be able to do that will I be five well I can

definitely at one yeah shoot okay so second one will be too much there let's

go before and get two of those and now a 25,000 here precip of WS where at time

spent 109 so now we can get the ancient dragon which is that six we'll get one

of those lovely now we can get one more of the B threes and I I keep calling

them B threes and B stuff okay so this dragon a baby dragon dragon kid team

dragon adult dragon ancient dragon no there's some other ones that come after

but we'll see those in a little bit be six two of those yes thank you

okay now if we get 200,000 here we can get the dragon master ha ha look at that

dragon master Oh kiss and that to be gets it that I can master you should be

able to grab one of them there we go now our production is much much even higher

than that that is still showing our money at the top time spent Oh No

okay so I need to slightly increase the size of the window here

okay bunch more double use now we're at 300,000 oh but because we passed 250

we're able to get the dragon god oh yes okay so we to get one of those excuse me

b8 give one of those there we go now we got now we got 69 thousand left so b6

should be able to get two of those oh I look at their money production going up

salsa high oh okay I wasted all my money again let's go up a little bit more to a

hundred thousand and see at a hundred thousand or is this a million no this is

a million my bad what am I thinking here so now that

we're out a million we can get shawnee my dragon my dragon shiny there we go

let's get one oh wait my bad b9 and get one of them there ah now our money

production is up extremely high so the goal is 100 million I think it is we

don't want to completely waste all our money's here but we got two million

right let's go with one more W just so that we

can get a couple more of Shawnee there we go get to of Shawnee there we go

seven and we get one oh I like how I can just completely did do everything super

super quickly as well I can just go be three one and then it'll do everything

in sequence be three one oh that's nice then I'll have to press B enter 2 enter

3 enter you know it's so much nicer kiss let's go wwww go 193 we got let's get up

to ten million there we go so we're at ten million now we should be able to get

three of these I think at least oh come on I I can get with two more of those

b9 two more yeah oh look at that I can get one more of them

oh look at our money production that's at 1.4 million each

boom okay there we go we're at 21 million it would go b9 and I'm going to

get five of these because at least five b9 it's now our money production and in

is extremely high so now if we go up even higher that should be 17 million

there right 2.7 million we're running out of time

b9 I should be able to get three more of those at least ya know b8 it's good

two more no I think I can get were than that production is 30 or 3.1 million

each

so the math on this if we multiply that by 50 or okay yeah if we multiply that

by 50 we should actually be to get there right now so you found one million no

yeah yes because the 3.1 million if the goal is to get two hundred million then

3.1 million multiplied by 50 should get us there quickly right but we don't need

to do that because we can increase a little bit more wait maybe should I be

doing that wait wait I don't know if I should be doing that so let's go three

okay so we're at 215 now right now if we go times five one more two more there we

win I got to 57 Bulova I think I beat your score thank you for playing dragon

I love this game was created by bulla B it's not perfect but I hope you liked it

you can always try to beat your score press zero to go back to the main menu

so we go back to our main menu we go back to here he beat it with a score of

275 I did it with 257 interesting you look at to that that is really cool so

the this was dragon Idle this is really cool thank you Bolobi for making it I

appreciate it it was it was kind of cute kind of cool I know it's very simple but

I don't care it's still cool to see you guys out there please let me know what

you think of this video led to believe I know what do you think of his game give

him some encouragement and thank you all so much for watching and also don't

forget to look up there for some extra stuff for you to watch and I will see

you again very soon Godbless

For more infomation >> Dragon Idle - My friend Bolobi made this game for me! Dragon Idle C++ - Duration: 11:03.

-------------------------------------------

SF9 Names Their Unexpected Role Model For Comeback With "Mamma Mia" - Duration: 1:36.

For more infomation >> SF9 Names Their Unexpected Role Model For Comeback With "Mamma Mia" - Duration: 1:36.

-------------------------------------------

WBZ Midday Forecast For February 26 - Duration: 2:44.

For more infomation >> WBZ Midday Forecast For February 26 - Duration: 2:44.

-------------------------------------------

Q&A - Tools for Brain Dump - Duration: 5:10.

For more infomation >> Q&A - Tools for Brain Dump - Duration: 5:10.

-------------------------------------------

Ready for Retirement - Duration: 25:01.

Hi, my name is Angie, pension specialist here at Teachers and joining me today are my colleague Stephane and Zeina.

This session is for those of you who've made that decision to retire or are really close to it.

Since the day you started teaching the pension plan got to work for you building a benefit for your retirement.

So Angie tonight we are going to talk about some decisions

You need to make leading up to your retirement and to make sure that you're ready.

If you have any questions along the way,

please post them below or via messenger where Zeina will tell us the questions.

We will do our best to answer them today. If not, we promise to post the answer very soon.

So let's jump right in. Excellent idea. So Stephane, you know what, our members often share with us

that the hardest part of this process is deciding actually when to retire.

Now we know it's a matter of finances,

But we also know it's a matter of heart being ready to make such a huge decision in your life.

Now by this point you've already made that decision or you're just about to.

And you've done this by doing your research. You've gone online to our online service,

You've checked your 85 factor date checked it once, probably checked it several times, okay?

You've used the online pension calculator to come up with various pension scenarios,

and finally one day it clicks, it all makes sense, you've settled on a date.

Angie, why don't we take a look on the online pension calculator together?

I just want to point out a few things, is that if you're already familiar with this

You'll actually probably know the information

But if you look at the top, you'll have a date there on the scenario that is actually pre-populated for you,

and the date that you'll find there is your 85 factor.

You'll also find your annual pension, your monthly pension, the gross, the net. You will also find the

reductions that are applied to your pension and often those reductions are the

percentage of the survivor pension, or the ten year guarantee so basically your survivor benefits

Exactly, so you know what, speaking of survivor benefits,

Stephane, let's talk about how your loved ones would be taken care if you were to pass away after you've retired.

So, the first thing we're gonna do, is we're going to take a bit take a look at our post retirement survivor benefits eligibility chart.

So, first in line from any and all survivor benefits,

is always a surviving spouse. So a surviving spouse is someone that you're married to,

or living together for common-law, three or more years, same or the opposite sex.

Next in line for any and all survivor benefits would be eligible children. Eligible children are those under the age of 18, under

25 and in full-time education, or if you have a child with a severe or prolonged disability,

there may be an adult child disability out child benefit for them. Now if this resonates

with you in any way shape or form, we want you to call the pension plan,

we can give you some peace of mind about the retirement benefits available for that child.

Finally, if there are if there's no surviving spouse, and no eligible children,

if there's any money left to be paid, they would be paid to your estate as a lump sum.

So Angie, I know that there are two types of survivor benefits to consider:

the 10-year guarantee and the spousal pension.

I want to mention about the 10-year guarantee. So, I want to bring you up this

example where you see a member started their pension and they've been on pension for five years, right?

They pass away after five years of pension,

so basically that 10-year guarantee that we talked about would cover the five remaining years

to make it all of ten full years, and during those five remaining years, a hundred percent of the pension

of the deceased member would be paid to survivor minus the CPP reduction. only after the ten years

Only after the ten years, then we would get into the survivor percentage.

So, can you tell us much the 10 year guarantee costs?

Well you know what Stephane, if you don't have a spouse on file at the time of your first pension payment,

there's no cost for it. In fact. You're automatically enrolled into this 10-year guarantee program.

But if you do have a spouse on file, there is a nominal fee.

It typically ranges somewhere in and around forty to sixty dollars per year.

That's forty to sixty per year, and this option is something that you elect,

when you apply for your pension. So we strongly encourage to select this benefit

because potentially it could be a very large benefit payable to either your surviving spouse

or maybe even to your estate. That's right now this option only applies to

Sorry, go ahead Stephane.

Okay, so now that we've talked about the ten year guarantee, let's jump and talk about the

or let us tell more about the spousal percentage.

That's right, so you know what, the spousal survivor option is something

That's available for people who only have an eligible spouse on file at the time of the first pension payment

So let's do a quick recap. What is just what is an eligible spouse?

That's someone you're married to or married for or together with them common-law three years or more,

same or opposite sex. So, here's how it works: under the Ontario pension benefits act,

my spouse is automatically entitled to a 60% survivor pension if you were to pass away, okay?

So what that means is that with a cost to your pension, a reduction to your pension,

you can provide a 60% survivor pension upon your death.

This reduction to your pension is permanent even if your spouse dies before you do.

Okay, but you and your spouse have other options to keep in mind. You can go with a 50% survivor pension,

there's no cost to provide that. You can go with 65, 70 or 75 percent on the higher end.

But there is a cost for those options as well. There is a permanent reduction to that pension for 60 and onwards

even if your spouse dies before you as we mentioned earlier.

So I would like to say the higher the percentage, the higher the cost.

So, what would someone need to consider when deciding on their spousal percentage?

So there are two key things you want to keep in mind when you're selecting a survivor percentage.

The first thing is, is your spouse's financial dependency on your pension.

The second thing to keep in mind, is health and that's not just your health, it's also the health of your spouse.

Now, why would someone go with a no-cost 50% survivor pension?

If your spouse is financially stable they have their own income and they don't need as much support from you.

Now, the health of your spouse's something also to consider.

Sometimes, we know that our spouse is not well or

maybe they're older than us and will likely not outlive us and therefore collect that survivor pension.

So why experience a permanent reduction to your pension in a case like that?

The final reason why somebody would actually not take a higher survivor option and go with something like a 50%

is the cost of that survivor pension is too high compared to the value of the pension

So, let me add that if you are choosing a 50%, a waiver of joint and survivor form needs to be completed,

which means signed by you and your spouse with a witness.

And needs to be sent to us at the earliest 12 months prior to the beginning of your pension,

so it is something that you can wait towards the end when you're preparing all your documents to complete

and send to us if want to elect the 50% right?

Yes. So on the other hand, why would someone go with the 75% Angie?

So someone may go with the higher end of the survivor percentage scale because maybe their spouse is not

financially stable on their own and they would depend on you and your pension

as a key source of their financial income if you were to pass away.

That's one key reason. Another key reason is your health okay?

Sometimes that we know that we are not well, and more than likely our spouse is going to outlive us

perhaps your spouse is significantly younger, and the odds are they are going to outlive you

and collect that survivor pension. So this is why it might be worthwhile to consider a higher cost short term

in order to insure your loved ones are taken care of over the long term.

So we talked about this percentage, fifty to seventy-five percent.

However the costs for those percentages are different for everyone .

So I want to point out here that when you go to the pension calculator,

and you look at the details that you see there.

You'll see that when you look at the survivor pension in the seventy five percent or whatever survivor

pension that you have there, if you click on this audit because you'll see that it's blue,

basically, what will appear is a table in which you'll be able to find

what is the cost of the deduction for you, as well as what kind of pension what your spouse would receive

depending on the percentage that you select.

So it's really important that you consult this before you actually start your pension,

so that you know that the decision that you're making is actually well-informed.

Yeah, and you can make your election for both the ten year pension guarantee,

and the survivor percentage via the online pension application.

This is a very important thing to point out. The survivor options that you choose cannot be changed

once your pension begins. So another reason to keep in mind that

the decisions that you make are set in stone and cannot be changed after the fact.

Is this it for the survivor benefits then?

Actually. Hi Zeina. Hi. I'm still here. So, you guys did a great job talking about the available survivor options.

So we do have a question that came in from Roger. And he's asking about

the process that a surviving spouse has to go through to apply for their benefit upon the passing of the member.

Okay well, I'll take that so

Roger, thank you so much for your question.

Should you pass away, your survivor or representative of your survivor should give the pension plan a call.

and what we would do in that phone call is we would guide that person through the process

to start the survivor options available for the survivor. We also are going to post a link below

for a former session that we had: "Planning for Your Loved Ones"

which actually goes into a little bit more detail of how that process would work.

Just a reminder. Actually good point, Zeina.

You know what, reminding everyone that you can post any questions you have below

In the comment section of and of course send them in through messenger.

Okay, so let's now talk about buybacks and transfers. Can you talk more about that, Angie?

Okay so buying back time this is that one of the best times that you should finalize any buybacks and

transferring another opportunity for you to increase the credit on your pension

and that ultimately will improve the value of your pension.

So for buybacks, if you are on a leave of absence within the last five years,

you can check the buyback Center online for those details

now fine back time on a contributions plus interest basis

This is the most cost effective way to improve the value of your pension.

It has a lasting impact on what you'll receive over the rest of your life.

Now let's switch over to transfers. If you have service with another pension plan,

maybe with a major Ontario pension plan like OMERS or OPSEU,

or perhaps you're with another province, teaching in British Columbia and the funds are still there,

there may be an opportunity for you to move that service from their plan to ours.

This will also improve the value of the pension potentially.

But transfers as you and I both know because we process these, these take a long time.

so give us a call, and we can provide you with the guidance you need to move through that situation.

So moving on to two different topics. We often also get questions regarding the medical coverage

and also the gratuity. Can you tell us more about that?

Actually that's a great question Stephane. That actually came through from David as well.

That question is regarding the health and dental benefits.

So anything you can add on that is much appreciated.

Thank you so much for your question David. So OTPP, the pension plan does not provide medical coverage.

But as a courtesy we can deduct the medical premiums from your monthly pension for some insurance carriers.

So what we can do is we can post a link below in the comment section with a list of those carriers and more

information leading you directly to their website, so you can make the right decisions about

what best plan is for you, okay? So Stephane you also mentioned gratuities.

Now gratuity is a benefit that is administered directly by the employer.

So this is another opportunity for you to contact them and to find out what the details

are with respect to the payout. So so far we've talked about the decision

you have to make leading up to retirement, right? So can we switch gear and - not yet!

No switching gears yet! We do have another question before we switch gears

The question is around the age requirement to start a pension.

Is there a specific age on which you can apply for a pension a minimum, a maximum?

Certainly. Angie?

Yes, please I'll take that one, okay.

So you know what, you can start collecting pension as early as the age of 50

You will experience an early retirement reduction for doing so. But, not sure if everyone knows this.

If you're so inclined, you can actually continue to teach or contribute to the pension plan

up until 30th of November the year that you turn 71, or of course any time in-between.

But the most opportune time for you should be selected by using the online pension calculator

figure out what your optimal date is, and then you can make a comfortable decision accordingly.

So can we switch gears now?

So basically again, so, let's look at what members need to do next,

once they've looked at everything that we've explained so far.

So, these next steps are mandatory in order for us to start your pension. So first, here's what we're gonna need for you.

We're going to need a bunch of personal documents

in order to confirm certain parts of information on your file.

So we're gonna need proof of both yours and your spouse's date of birth.

We're going to need a copy of either a birth certificate Canadian passport or your Ontario driver's license.

We're gonna need proof of your marital status, so if you're married,

we're going to need a copy of your marriage certificate, or a statutory declaration of common-law relationship.

Now, you can download that statutory declaration from our website simple and easy to complete.

If your marital status is divorced or separated we're going to require a copy of your divorce certificate

, a copy of your separation agreement, and we encourage you to send the entire version of your separation agreement, okay?

and/or a statutory declaration of your separation.

Again, a form that you can download on our website.

so let me add here Angie that the

easiest and the most secure way to send those this document is by using the document uploader.

This is a feature that you'll find in the document Center. It allows you to upload directly unto our website:

any PDF or JPEG document that you have. So if you scan them and you send it directly to us that way,

this is the fastest way, the most secure, and the easiest way by far to send us those documents.

You know what, if you're not sure what documents you've already sent in

when you go to the document Center, if you see a green check mark by the document it means

you've successfully sent them in in the past . If there's a red X and that's the document that's outstanding and

unless you're planning to divorce your current spouse, you don't have to wait till you're retired you can actually

send those little documents right away. Even before you apply for your pension. That's a very good tip Stephane.

Excellent. Alright so the next two steps are crucial in the retirement process.

We're going to get serious for a second.

So you might want a circle or underline these. Number one:

You must send your letter of retirement or resignation to your employer before your retirement date.

So let me repeat that again.

You should send your letter of retirement or resignation to your employer before your retirement date.

Now we often advise our members to contact their employer to find out

what their deadlines and requirements are to get that specific letter in that's a very important step, okay?

The next step, you must apply for your pension. Your pension does not automatically start

when you reach your eighty-five factor, it's not something that happens.

But if you are super keen you can apply up to four months in advance of starting your pension.

Actually, regarding the application deadline, we did get a few question on that actually from John and Kathleen

wondering about what is the deadline to apply. So you mentioned four months?

Is there a deadline by which you have to apply, otherwise you miss out?

Angie? So you know what four months is if you're super keen, but the happy medium is 2-3 months in advance.

This gives us ample time to process your pension payment. Now, if there is a processing delay,

which is very rare not to worry, you will be paid retroactively plus interest, okay?

Perfect, all right.

So as I continue you can find online pension application under the "Your Pension" tab,

when you're signed into the online service. You know one of the major tabs that we have is "Your Pension"

and we'll take a look at that later on and the pension application button is there.

All you need to do is click on "Apply Now" to start the process and you know what,

it really takes no more than 5 to 10 minutes to apply for your pension.

It's a point-and-click system. It's customized to your specific situation.

It's that simple and this is the time where all those decisions that we talked about earlier

will come into place. All you're gonna need to do is confirm your retirement date

and when you want to start your pension, you'll confirm your survivor options,

you'll add in your banking information. Have it handy, a void check or your banking information

you can add that information safely and securely and it's also one less item for you to send in as well.

Then all you have to do and this is probably the hardest part, is to click that submit button.

Ok now what we're gonna do is we're gonna post a video below and

it's actually gonna walk you through the individual screens

if you need some assistance and guidance along the way. So let me add something

Angie, here is that in order to erase all the urban legends and the myth out there regarding the

resignation date because we do have a lot of questions about that and people are confused often about

what resignation date they should put when they go online and apply for your pension.

It should be June 30th? Should be August 31st?

I'm glad you're addressing that Stephane because we've had a couple of members also ask about that

Jun 30th vs August, Jodie being one of them.

Thank you Jodie. Let me say quickly that when you are a a teacher, you work usually from September to June

and usually have the summer off and here we're talking about somebody in classroom,

not necessarily somebody who's an administrator, it might well twelve months of the year.

But you finish your work at June and usually the employer pays you throughout the summer.

Your resignation should really be June 30th. Why?

Because you do want to get or receive the pension from the Teacher's Pension Plan for those months in July and August.

As well as your pay from your employer to date, it is not illegal.

So you are entitled to those two pension payments as well as your pay. So for anyone again that works

from September to June your resignation date should be June 30th okay?

All right, so after you've bravely hit that submit button we get to work putting your pension into place.

Now, this is the time where we may need to contact your employer

you know, for further information in certain circumstances.

But you should receive a retirement statement within a few weeks of submitting your application.

But remember. we cannot finalize your pension

until we receive all the outstanding documents that we've mentioned earlier. That's right.

Question. I was wondering if you guys are gonna touch on the frequency of payment.

Denise was wondering when is the pension payment made.

Okay so very good question.

Okay, so Denise the pension payments get made last business day of every month.

You can actually sign in to the online service, and we actually have a calendar of the dates that the pension would be deposited.

Thank you great question Denise.

But, for those who are about to hit that submit button and they're waiting for their first pension payment

or information related to that, about a week before your first pension payment is due, it's scheduled,

you're going to mail the deposit advice letting you know the net amount of pension that's going to be deposited into your bank account.

Okay, so Stephane

We've covered quite a bit today.

So let's see if there are any additional questions from our viewers.

Should we go over to Zeina? Absolutely.

All right. We do have a couple of questions.

Well we have a couple that came from Terry and Linda, both were asking about working after retirement.

That seems to be an interesting topic. So are there any rules?

What is it that you can tell us about

going back to work after having started to collect the pension. That sounds like a perfect question for Angie.

Well Stephane, as you know, you can teach up to 50 days in a single school year, okay?

And at this point - you know what, this is after you retire. You can start you can teach up to fifty days in

A single school year. One of the things that members need to keep in mind is you are

responsible for tracking your days the onus is on you to do that and you know we have developed an app,

it's called "Worklog" that you can download and track your days accordingly.

You know you also have to let us know if you go over the limit.

But you know at this point, we recommend that you sign into the online service.

And there's a great section about working in education after employment.

So we strongly advise you to visit that section and you know what if you've got questions,

Before you think you're going to exceed those limits, give us a call, we want to make sure that you understand

you know, what would happen if you go over those limits. And to help you track those days accordingly.

Anything to add? No that was good. Are you up to take one more question?

All right, so can you and you may have touched on this but can you maybe repeat the process to apply for a pension?

How does someone go about it? Can it be done over the phone? Can it be done by completing the form?

Well, the simplest way to apply for your pension is to sign in to the online service and actually since we're here,

click on this button here that says "Apply Now" in under the your pension section, okay

And this is going to actually, as I mentioned before it's going to provide you with an electronic

customized application built on the information that we have about you. So if you have a surviving spouse

currently on file we're going to ask you to review it,

click on those details, and make those decisions and like I said it takes about five to ten minutes to apply and

that's the simplest way to do so.

And there is no more paper application.

That's correct. I think that's all we have for now.

So you know what, Zeina, Stephane,

let's wrap up by quickly taking a look at a very important

one-stop section of the online service.

So when you sign in you click on the section that says "Your Pension",

and this is an excellent place to get all the information that we touched on earlier today.

You can use the pension calculator section here to help you figure out your optimal retirement date.

You can upload your documents in the document center. If you have any leave of absences,

this is the right place to get all the details you need to make the payment and make those decisions, okay?

Survivor benefits was really big topic today. This is an excellent place to get information to help you solidify the decisions you need to make,

Profile: you can update your survivors. You can give us the up-to-date information that we need about your file, your address,

contacts and most importantly, why we're all here today, the pension applications simply click apply now, and we'll do the rest for you.

Okay, so I just want to let everybody know at this time. We're going to be turning off messenger.

I want to thank you all so very much for joining us here today. You've got a lot of homework to do.

Please stay connected with us on Facebook, check out our Pinterest board,

sign in to your online teachers pension account and of course contact us here directly

This is a big decision, and we're always happy to help.

Thank you so much Zeina, and thank you so much Stephane until next time.

For more infomation >> Ready for Retirement - Duration: 25:01.

-------------------------------------------

WINTER WORK OUTFITS FOR WOMEN | LOOKBOOK WINTER STYLE 2018 - Duration: 2:47.

WINTER WORK OUTFITS FOR WOMEN | LOOKBOOK WINTER STYLE 2018

WINTER WORK OUTFITS FOR WOMEN | LOOKBOOK WINTER STYLE 2018

For more infomation >> WINTER WORK OUTFITS FOR WOMEN | LOOKBOOK WINTER STYLE 2018 - Duration: 2:47.

-------------------------------------------

Vulpera Customization & Gear! Will They Be Playable In Battle For Azeroth? - Duration: 10:11.

Hi guys, So in this video we'll take a look at the

current customization options for the Vulpera, some of their animations, and how the gear

looks on them.

But first let's talk a little bit about the speculation that has been going on about

the Vulpera and whether it will be a playable race or not.

The speculation started because the race was added to the db2 , and if you don't know

what that is, its basically a client side database that contains data about Items, NPC's,

Mounts and much more.

Some people might believe that we're getting the Vulpera as a playable race because they

were added to a database that mostly contains playable characters.

But it also contains races such as the nagas which we know are not playable.

if we take a look at the FactionID for the humans and the vulpera we'll see that they

are exactly the same, however this doesn't help us out either, since the un-playable

characters have the same id.

However a good indication to see is if a race will be playable or not is through the LowResScreenFileDataID

colum and if we take a look we can see 2 different ids one for the alliance and another one for

the horde, so if we look at the vulpera its value is 0, however just one build ago it

had a id.

So this could maybe be blizzard being smart about it and not showing the ID's before

they actually revele which races are gonna be playable.

So what do I think, if we look past the client side databases I think there is a high chance

of them being added, maybe not in bfa but it could defiantly happened down the road.

I know a lot people wont be too happy but let me know if you would want them to be added

as a playable race or not.

Now let's take a look at their customization options.

So that's it for this video guys if you enjoyed it make sure to leave a like and subscribe

to my channel to keep up with my latest videos, thank you for watching and I hope to see you

again.

For more infomation >> Vulpera Customization & Gear! Will They Be Playable In Battle For Azeroth? - Duration: 10:11.

-------------------------------------------

Classes begin for prospective MGM Springfield dealers - Duration: 2:16.

For more infomation >> Classes begin for prospective MGM Springfield dealers - Duration: 2:16.

-------------------------------------------

Big turnout for End Heroin BHAM Walk - Duration: 0:34.

For more infomation >> Big turnout for End Heroin BHAM Walk - Duration: 0:34.

-------------------------------------------

Las Vegas Airport Installs Marijuana Amnesty Boxes for Passengers - Duration: 1:02.

For more infomation >> Las Vegas Airport Installs Marijuana Amnesty Boxes for Passengers - Duration: 1:02.

-------------------------------------------

Taxes, the Economy and Where to Look for Growth - Duration: 4:08.

Hello I'm Chris Hyzy.

As we begin to work through 2018, I wanted to share some thoughts

about the markets, the economy and the impact we think the recent Tax Reform Bill

might have on your portfolio.

First of all, the broad global expansion that began last year should continue to strengthen in 2018.

Developed countries and emerging markets alike should benefit from healthy consumer

spending and a new pick-up in capital investment by businesses.

At this point in time in the cycle, this should lead to increased productivity and

accelerating wage growth in many economies for the first time in years.

The solid corporate profits picture should

also continue, and we're projecting another year of

double digit earnings per share growth (on average) for companies around the world.

In the U.S., the new lower corporate tax rate should help earnings growth approach the midteens

and give at least a short-term boost to real gross domestic product growth.

And the reduced tax rate for foreign earnings should

encourage many U.S. companies to repatriate much of the total 1.7 trillion dollars in cash

they currently hold overseas.

Some industries and sectors should benefit from the new tax law more than others.

So it will be important to be selective in how you invest this year.

We think financial conditions will also remain attractive.

And that should support areas like housing, particularly among Millennials who

are benefitting for the first time from rising wages in many years and continued low interest rates.

A stable dollar should also allow emerging markets to remain a major tailwind to world growth.

In addition, the global innovation cycle we've been in for several years

could be entering an entire new phase.

This should unlock new growth opportunities in a variety of areas,

such as healthcare, smart infrastructure, the internet of things, a new cloud architecture, robotics

and other sectors that are being transformed by new technologies.

We do also see some risks however, that investors should be aware of:

First off, the strong economy, rising commodity prices and labor shortages could lead to higher-than-expected rise in inflation.

That could quicken the pace of interest rates hikes here

in the U.S. and eventually in Europe, and this could have a direct impact on markets,

especially the bond markets.

We could also see an increase in geopolitical tensions, such as in the Middle East and North Korea.

And policy uncertainty in Washington particularly around global trade and the midterm

elections later this year could also present risks.

Finally, after an unusual period of calm in 2017 across all markets, we could see an upturn of market volatility.

However, we continue to believe that any weakness in equities would represent an

opportunity for investors to buy stocks at more attractive prices given the strength

of our global profits picture and attractive financial conditions.

These and other potential risks mean that regular rebalancing and portfolio diversification

will be even more important in the coming year.

To sum up, we maintain our preference for stocks over bonds

and believe that non-U.S equities particularly emerging markets, as well as large-cap U.S. multinationals,

offer solid growth opportunities.

Within sectors, we believe technology, healthcare and financials offer investors both good long-term growth and value.

In fixed income which remains an important part of a portfolio, despite our view on higher rates

we suggest investors consider higher-quality corporate bonds and municipal bonds,

over U.S. Treasuries and high yield bonds.

Be sure that whatever changes you make to your investment strategy, they are built around

your own financial goals, your risk tolerance and your life's priorities.

Thanks for watching.

IMPORTANT INFORMATION Information as of 1/10/2018.

Investing involves risk, including possible loss of principal. Asset allocation, diversification and rebalancing do not ensure a profit or protect against loss in declining markets. Merrill Lynch does not provide legal or tax advice.

We recommend that you consult with your lawyer, accountant or other advisor about questions affecting your individual circumstances. This material does not take into account your particular investment objectives, financial situations or needs and is not intended as a recommendation, offer or solicitation

for the purchase or sale of any security, financial instrument, or strategy. Before acting on any information in this material, you should consider whether it is suitable for your particular circumstances and, if necessary, seek professional advice.

Any opinions expressed herein are given in good faith, are subject to change without notice, and are only correct as of the stated date of their issue. Equity securities are subject to stock market fluctuations that occur in response to economic and business developments.

Investments focused in a certain industry may pose additional risks due to lack of diversification, industry volatility, economic turmoil, susceptibility to economic, political or regulatory risks and other sector concentration risks.

Investing in fixed-income securities may involve certain risks, including the credit quality of individual issuers, possible prepayments, market or economic developments and yields and share price fluctuations due to changes in interest rates.

When interest rates go up, bond prices typically drop, and vice versa. Income from investing in municipal bonds is generally exempt from Federal and state taxes for residents of the issuing state.

While the interest income is tax-exempt, any capital gains distributed are taxable to the investor. Income for some investors may be subject to the Federal Alternative Minimum Tax (AMT).

Investments in high-yield bonds (sometimes referred to as "junk bonds") offer the potential for high current income and attractive total return, but involves certain risks.

Merrill Lynch Wealth Management makes available products and services offered by Merrill Lynch, Pierce, Fenner & Smith Incorporated (MLPF&S) and other subsidiaries of Bank of America Corporation (BofA Corp.).

Merrill Edge is the marketing name for two businesses: Merrill Edge Advisory Center, which offers team-based advice and guidance brokerage services; and a self-directed online investing platform.

The Private Banking and Investment Group is a division of MLPF&S that offers a broad array of personalized wealth management products and services.

Both brokerage and investment advisory services (including financial planning) are offered by the Group's Private Wealth Advisors through MLPF&S, a registered broker-dealer and registered investment adviser.

The nature and degree of advice and assistance provided, the fees charged, and client rights and Merrill Lynch's obligations will differ among these services. Investments involve risk, including the possible loss of principal investment. U.S. Trust operates through Bank of America, N.A., and other subsidiaries of BofA Corp.

Investment products: Are Not FDIC Insured Are Not Bank Guaranteed May Lose Value MLPF&S is a registered broker-dealer, member SIPC and a wholly owned subsidiary of BofA Corp. 2018 Bank of America Corporation. All rights reserved. ARRJW9R3

Không có nhận xét nào:

Đăng nhận xét