Thứ Năm, 30 tháng 11, 2017

Auto news on Youtube Nov 30 2017

Darien Gutter Services. Are your gutters prepared to weather the next storm?

Did you know that clogged gutters are actually one of the most common causes of roof leaks?

Gutters play an integral part in your roofs performance and the overall of condition of

your home.

Neglecting a small gutter issue now, will lead to larger and more costly repairs down

the road.

Don't underestimate the importance of routine gutter maintenance.

And trust it to professionals, because cleaning your own gutters can be very dangerous for

some homeowners.

Give us a call today for quality and affordable gutter installation, repair, and maintenance.

For more infomation >> Darien Gutter Services 203-316-8526 Darien Gutter Services - Duration: 0:45.

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

Study For Civil Services Channel |Plz Help Him Guys | STUDY FOR CIVIL SERVICES - Duration: 3:28.

THIS VIDEO IS NOT MONITIZED.... JUST WANT TO HELP THIS MAN

For more infomation >> Study For Civil Services Channel |Plz Help Him Guys | STUDY FOR CIVIL SERVICES - Duration: 3:28.

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

How to work in Community Services - Gaynor's story - Duration: 3:00.

My name is Gaynor Holmes and I'm the Senior Case Manager for a Child Community Agency

that's funded by the Department of Health & Human Services.

I chose this career because I was raised in a single family and from a very you g age

I saw there was a difference between myself and other families.

From a very young age I decided I wanted to work with children

I secured the job I have now with my current employer following the community services

diploma through Chisholm Chisholm prepared me very well in working

with families and children They helped me to understand the dynamics

of families and the importance of positive family functioning.

It wasn't all theoretical, it was practical.

What really inspired me were the real life stories that came from women and families

and children that had suffered adversity in the community or disadvantage or an injustice

A light bulb moment for me coming out of Chisholm was, when I had learned so many different

theories – child development theories, social economic disadvantage… you know, health

education and employment.

I sort of sat there and wondered how all of this fits into one situation and when I began

working with families in the home I realised that all of those areas intersect to create

positive family functioning A day in my life as a case manager, I have

ten cases that I work with at any one time.

I spend roughly about 4 hours per week with each family, so that's a full time role.

I work with newborn babies and sometimes babies in utero all the way through to families.

I love working with young kids.

I also have a responsibility to my organisation, so I am a senior family violence worker.

I hold the portfolio for our organisation.

So I do what we call reflective practise groups for my team where I educate my team on elements

of family violence and case management.

And I'm proud of that.

I enjoy the work that I do, it's extremely varied.

In ten years' time I see myself working specifically in family violence and working

with children who have been subjected to family violence.

It's a passion of mine and I would actually like to write a book at some stage about my

journey through family violence and through adversity and how I was able to manage out

of that The most rewarding thing about my work is

seeing families get back on their feet and having fun, we have fun with the kids.

There's nothing more rewarding than hearing the child's side of things, their view,

their feelings, and being able to encourage them to be the best little humans that they

can be.

For more infomation >> How to work in Community Services - Gaynor's story - Duration: 3:00.

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

Question 9 - Brett Hudson to the Associate Minister of State Services (Open Government): - Duration: 3:22.

For more infomation >> Question 9 - Brett Hudson to the Associate Minister of State Services (Open Government): - Duration: 3:22.

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

IoT Starter Kit, Part 3a: How to connect to Amazon Web Services - Duration: 5:47.

Hi, this is Simon with IQRF.

We have designed the IQRF IoT Starter Kit in the way to be connectable to different clouds via

bidirectional MQTT channel. So you can collect,

store, process and visualize data on a cloud or you can send your commands to the IQRF network remotely.

In this particular video, we will configure the UP board to communicate with the Amazon web services through the MQTT channel.

So, let's start. Connect your UP board to your local network so it can obtain an IP address using DHCP.

In the following steps you will enter this address into your web browser and configure your gateway through the IQRF Daemon web application.

First, create an Amazon Web Services account. You have to fill in your personal or company data,

and add your credit card details. Your credit card will be used for payments in a case you exceed limits of the selected services.

In Services, in the Internet of Things section, find AWS IoT.

After selecting this item, click on GetStarted in the Onboard section. You will register your device,

download the connection kit, and configure and test the connection with your device.

Set up how you will be connected to the AWS IoT. Select the Linux operating system and Node.js

as the AWS IoT Device SDK.

Enter the name of your connected device and download the connection kit to get a certificate and keys for a secure MQTT connection.

Save and unzip this file. Store the certificate and the keys for further use.

Go to the documentation.

Here, look up the Download root CA string. Search in the entire site.

In the search results, find the article Using the AWS IoT Embedded C SDK.

Here you can find the root certificate.

Copy the string and save it as rootCA.pem to the directory with other certificates.

Next, click Done.

In the Settings, note the name of your endpoint because you will need it for the UP board configuration.

Copy the rootCA.pem, IQRF_Gateway.private.key, and IQRF_Gateway.cert.pem

files into the UP /etc/iqrf-daemon directory. We used WinSCP for transfer of the files.

In the new version of the IQRF Daemon web application, you can upload these files directly through the web interface.

Now, using the IQRF Daemon web application, set the MQTT channel on the UP board. In the Configuration menu,

select the MQTT interface.

We will not change the first MQTT interface because this one is used for a local application on the UP board.

Create or edit the second MQTT interface.

Enter the address of the endpoint that you copied before to the broker address field after the SSL protocol.

Write the port number 8883 at the end of this address.

Enter your ClientID and set up the other parameters.

Set IqrfDpaRequest as the topic for commands, and IqrfDpaResponse as the topic for responses.

Set the timeouts, the minimum and maximum connections

and correctly enter the path to the files that set up a secure connection between the gateway and the cloud.

Set the Trust store to rootCA.pem, Key store to IQRF_Gateway.cert.pem, and Private key to IQRF_Gateway.private.key.

Those are exactly the three files you've just copied into the UP board /etc/iqrf-daemon directory.

Save the configuration.

Then, IQRF Daemon must be restarted. After restarting, check the status of the UP board if the selected services are running.

Now let's test the connection between the cloud and the gateway.

In the web browser, click Test. Enter the IqrfDpaResponse to the Response topic to retrieve the gateway responses.

To send commands from the cloud to the gateway, set the IqrfDpaRequest as the topic for requests. Gateway will expect commands in this topic.

Insert a DPA packet in the JSON format into the text box

In our example, we send a command to turn on the red LED on the coordinator. You can find more commands on the GitHub.

We can see that the gateway picked up and executed the command, and sent a confirmation

with "No Error" into the IqrfDpaResponse topic.

We can visually double check the result of this command. The red LED turned on.

So, the bidirectional communication between IQRF network and the Amozon Web Services is up and running.

Now it's just up to you, to use it for your own IoT solution.

For more infomation >> IoT Starter Kit, Part 3a: How to connect to Amazon Web Services - Duration: 5:47.

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

ERP Solution for Professional Services Organizations - Part II - Duration: 2:05.

♪ [music] ♪

Hello. My name is Laura McDowell. I am a registered CPA with the

state of Washington, and I am a Sage Intacct consultant

with the Resource Group.

Today I want to talk to you about Sage Intacct as an ERP solution

for professional services organizations. Intacct has really great forecasting

and budgeting capabilities. So, not only can I have information on today's numbers,

but I can be updating and including more information on budgeting and forecasting,

and have that roll into reports and make that information even more richer for my

management. In addition, if you're concerned about security, Intacct has

very, very strict data access security, with two-step verification,

in order to even enter the environment, not to mention all the security and roles

that you can set up on a report basis, giving access to even just view,

run, add, edit, or any sort of other modifications to those reports.

Specifically with financial reports, on a report by report basis,

which is really great for those managers where you only want them to see some,

but not all of your data. I can also restrict users by entity or department.

So literally, when they go into the system, they are only able to see

financial data for the departments which they have been given access to.

So, even if they're running their financial reports, their balance sheet,

their P&L, they really only see, for example, Department 100 of operations,

if they're that manager. So, that's really cool in terms of security and flexibility.

If you have any additional questions about the information I provided,

please download our E-book on professional services, or feel free to contact us

with any further questions.

♪ [music] ♪

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

Đăng nhận xét