Showing posts with label YouTube. Show all posts
Showing posts with label YouTube. Show all posts

Sunday, 16 September 2018

Local kids make YouTube channel to raise money

Local kids make YouTube channel to raise money

Local siblings make a YouTube channel to raise money
IDAHO FALLS, Idaho (KIFI/KIDK) - Kids and teenagers will be looking for ways to earn money this summer and some local siblings found a way to do just that.
The Ward kids created a YouTube channel in hopes of gaining enough subscribers to earn money.
"The kids came home one day and they're like mom 'we want this, we want that' and I'm like, how are going to pay for it? Because I can't pay for it. And then they ran across my computer and they're like 'what's that?" and I'm like, it's YouTube, then they were like 'can we make a YouTube channel?" I'm like, yeah sure," says Audra Ward, their mom.
"We found a website that's called Jumpcut and it told us how to do things step-by-step," says Jewel Ward, one of the kids.
Audra helps her kids shoot and edit the videos. The videos are inspired by their imagination and they compare it to real life.
"We have one where it's the dog's perspective of getting a bath versus what's actually happening. And it just made for a fun video," says Audra.
They hope to expand into more than videos.
"We have a mission statement, we have a business plan, eventually have an llc. It's business skills and financial skills combined while they're doing what they want to do."
If you want to subscribe, here's the link.

How to make a YouTube channel

How to make a YouTube channel

As the premier video sharing website in the world, YouTube attracts everyone from the biggest online content creators to those just looking to share a few clips of themselves with friends and family. Whether you’re trying to become the next Pewdiepie or manage a personal video storage locker, everyone starts from the same place. You need to know how to make a YouTube channel.

Fortunately, Google has made the process easier and easier over the years, so you can follow just a few quick steps and you’ll be up and running in no time at all.
When you’re all set up, if you want to learn how to stream games on your channel, here’s our guide to get you started.
Creating a YouTube account
You can’t have a YouTube channel without a YouTube account. If you already have one, then you can simply sign in and move on to the next section, but for those who don’t, follow these simple steps
Step 1: Go to YouTube’s homepage and click the “Sign in” button in the top right-hand corner.
how to make a youtube channel makeyoutubechannel01
More
Step 2: If you have an existing Google account, congratulations, you also have a YouTube account! Login to it and skip to the next section. Otherwise, click “More options” and then “Create account.”
how to make a youtube channel makeyoutubechannel03
More
Step 3: Fill in the relevant information on the account set up page and click the “Next Step” button.
how to make a youtube channel makeyoutubechannel02
More
Story Continues
Step 4: If Google asks you to, verify your account using your mobile. Once complete, you should be sent to the welcome screen.
how to make a youtube channel makeyoutubechannel04
More
Step 5: Go back to YouTube’s homepage. You should be automatically logged in, but if not, click the “Sign in” button in the top right-hand corner again and fill in your relevant login information.
Creating a YouTube channel
YouTube is pretty keen to give everyone a YouTube channel, even if they only plan to post comments with it. That means that if you try to do anything on YouTube, you’ll be prompted to make one. The easiest method to do so though is with the steps below.
Step 1: Click the upload button (the up arrow with a line under it) in the top right-hand corner.
how to make a youtube channel makeyoutubechannel05
More
Step 2: You’ll be shown a prompt asking you to confirm your name and display picture. You can keep those the same as your Google account, but if you’d rather stay anonymous on your YouTube channel, you can input any information you want.
Step 3: It’s a good idea to read through the YouTube terms of service while you’re here, so you know what you’re signing up for. Once done, click the “Create Channel” button.
how to make a youtube channel makeyoutubechannel06
More
That’s it! You now have a functioning YouTube channel. You can now post videos and work your way towards internet stardom — or just show off your cat. Hey, sometimes they’re the same thing.

How to re-create YouTube TV list animation in React Native

How to re-create YouTube TV list animation in React Native

Last but not least, fine tuning and cleanup. I still have to fix the bottom overflowing, allow clicking the rows to scroll to them and add a progress bar.
Calculating scrollview’s height
I am used to use native navigation and can get constants with heights of the Navbar, so I could calculate the above height from the device height and the constants. But as we’re using React Navigation, and to be safe, we will get the actual height of the scrollview and pass it into our Bottom view.
Passing scrollTo method down to components
This may look weird to you. Most likely because you’re not used to React.createRef or accessing internal refs from Animated components.
React.createRef can be used to access component refs without custom functions. The only difference is that you have to access the reference through thecurrent property.
Next we have Animated, which composes the ScrollView component, but gives us access through a private property, _component . This is not completly safe and could change, but currently there is no other way of doing this.
Some updated styles and fine-tuning of the variables, you can see the result here:
Here is the final demo — iOS only, click the lower right corner to switch (Desktop)