Some tips of youtube

I have decided to make a short
post about Some tips to youtube. If you have any tips that should be added to the list, leave in the comment box. These tips are based on my personal experience after over doing YouTube every day for over one years.


  • Don’t let anyone tell you, you are too late to the game. It’s not true.



  • Watch Tutorial by other YouTubers and read up on the topic. Learn how to edit your videos.



  • Always try to improve your commentary.



  • Play what you enjoy; switch it up with smaller, less popular games.



  • Don’t spam your link in comments (or anywhere).



  • Don’t do a sub for sub or anything similarly stupid.



  • Don’t obsess so much over sound insulation and hardware before you got your commentary down.



  • Treat every other YouTuber with respect. Treat your viewers with respect. A happy viewer is worth those few seconds you spend replying to him.



  • Try something different – don’t always do what everyone else is doing.



  • Don’t take mean comments to heart.



  • Don’t ignore constructive criticism, you will need it to grow.



  • Don’t take it personal if a YouTuber does not want to collab with you. We are busy people and less social than you might think.



  • Don’t get into fights in the comments, be the bigger person. Delete insulting comments and ignore.



  • Remember: People subscribe for you. If they sub for a game, they are not here to stay anyway.



  • Help other people that want to start YouTube or anything in life.



  • Don’t expect the same enthusiasm from your friends that don’t do YouTube – they will probably not get it.



  • Find a group online to have other YouTubers to chat with and grow.


  • Watch your video after recording and ask yourself “What can I do better next time?”.


  • Learn how to make engaging thumbnails.


  • Don’t be lazy: Write your descriptions and tags.


  • Be consistent and upload on a schedule. If you can’t keep to the schedule, do less – but stay consistent.


  • Don’t expect anyone to give you shout outs, they won’t help anyway if your content isn’t good.


  • Use Social Media to your advantage. Don’t just auto-post your videos there – engage with your audience.


  • Expect to spend a LOT of time on your new hobby.


  • Unless you are very, very good or have a very unique idea, don’t try to do a Mine craft-focused channel.


  • Growth in the beginning is slow, don’t get discouraged. It can take years, but you can do it!


  • Never buy subscribers, Twitter followers or any of that. It will just hurt you.


  • Don’t overexert yourself too often – it will burn you out. Get some sleep instead.


  • You should not expect any money from YouTube in the beginning. It takes time.


  • Don’t even think about going full-time unless you already make money.


  • That's all I know. If you know anything out of this tips, then you can drop it in comments. Thanks for reading.

    10 special use and tricks of .htaccess

    .htccess or hyper-text access to the configuration file is a powerful tool. It's specialty is anybody can edit it easily and use. Today we will see the use of this powerful tool.

    Stop Hotlink

    Is there anybody who consume your bandwidth by using your uploaded image? Then you can add this code to
    .htaccess file.

    Options +FollowSymlinks
    #Protect against hotlinking
    RewriteEngine On
    RewriteCond %{HTTP_REFERER} !^$
    RewriteCond %{HTTP_REFERER} !^http://(www.)?domainname.com/ [nc]
    RewriteRule .*.(gif|jpg|png)$ http://yourdomainname.com/img/stop_stealing_bandwidth.gif[nc]

    Protect your site from bad bot
    some hacking tools when use bot to crowling, scaning your site then you can stop them by adding this code to your .htaccess file.

    #Block bad bots
    SetEnvIfNoCase user-Agent ^FrontPage [NC,OR]
    SetEnvIfNoCase user-Agent ^Java.* [NC,OR]
    SetEnvIfNoCase user-Agent ^Microsoft.URL
    [NC,OR]
    SetEnvIfNoCase user-Agent ^MSFrontPage
    [NC,OR]
    SetEnvIfNoCase user-Agent ^Offline.Explorer
    [NC,OR]
    SetEnvIfNoCase user-Agent ^[Ww]eb[Bb]andit
    [NC,OR]
    SetEnvIfNoCase user-Agent ^Zeus [NC]
    Order Allow,Deny
    Allow from all
    Deny from env=bad_bot

    Block specific IP
    when you see that a specific ip used to hack or spaming to your website then you can block that ip by add this code to .htaccess file.

    allow from all
    deny from 145.186.14.102
    deny from 124.15

    here replace your targeted ip by 145.186.14.102 and then it will be blocked.

    Redirect to 401, 403, 404, 503 etc error page.
    You can redirect your visitor to this error page when they input the url which doesn't exist in your website.

    ErrorDocument 401 /error/401.php
    ErrorDocument 403 /error/403.php
    ErrorDocument 404 /error/404.php
    ErrorDocument 500 /error/500.php

    Here we store our error page in the error directory. you should replace this with your own directory.

    Protect any specific file
    you need to protect your configuration file for your security.

    #Protect the your-file-name-with-extension File
    order allow,deny
    deny from all

    Here replace your file name with your-file-name-with-extension.(must include extension)

    Protect any file or directory with password.
    To protect file with password you can use this code

    password-protect a file
    AuthType Basic
    AuthName "Prompt"
    AuthUserFile /home/path/.htpasswd
    Require valid-user
    # password-protect a directory
    resides
    AuthType basic
    AuthName "This directory is protected"
    AuthUserFile /home/path/.htpasswd
    AuthGroupFile /dev/null
    Require valid-user

    Make your site super fast by compressing content to gzip.

    AddOutputFilterByType DEFLATE text/html text/plain text/xml application/xml application/xhtml+xml text/javascript text/css
    application/x-javascript
    BrowserMatch ^Mozilla/4 gzip-only-text/html
    BrowserMatch ^Mozilla/4.0[678] no-gzip
    BrowserMatch bMSIE !no-gzip !gzip-only-text/html

    Remove extension from link

    If your site have a page named page.php
    and it will load by http://yoursite.com/page.php. but you can remove this .php
    extension by adding this code to your .htaccess and then it will http://yoursite.com/page

    RewriteRule ^(([^/]+/)*[^.]+)$ /$1.php [L]

    You can also remove .html by this code. simply remove .php and add .html

    Remove category from url
    Say, your site have a category called downloads. Then you can access this directory by /category/downloads. But now, you want to remove this category tag from url. You can do it by adding this code to .htaccess file.

    RewriteRule ^category/(.+)$ http://www.YourSite.com/$1 [R=301,L]

    Change wordpress default feeds to feedburner.

    #Redirect wordpress content feeds to
    feedburner
    RewriteEngine on
    RewriteCond %{HTTP_USER_AGENT} !
    FeedBurner    [NC]
    RewriteCond %{HTTP_USER_AGENT} !
    FeedValidator [NC]
    RewriteRule ^feed/?([_0-9a-z-]+)?/?$ http://feeds.feedburner.com/yourfeedhere [R=302,NC,L]


    Stop Copy paste from your website

    Nowadays, some people copy content of our site. The copier, the copy of the computer, right-click (hacker's case is different). So there is no worry, because I will show you today how Right button to your site will be disabled. I think your right button to copy and paste the shortcut to the purchase is disabled. In fact I would disable shortcut to the code will no longer have to fear. It's very easy to work.


    Tutorial steps
    Wordpress:
    Login to your wordpress site। Then go  Apearence→Editor. Now open your themesheader.php file। Now update your header file with adding this code before closing head tag. After saving successfull, back to your site and test copy paste.


    Blogspot/Blogger:
    Login to your blogget site। Then go  Template→Edit HTML(Don't forget to backup your template). Now update your template with adding this code before closing head tag. After saving successfull, back to your site and test copy paste.


    If you face any problem, then feel free to contact with me.

    Lock your private folder

    If your computer have multi user than you need to lock your private folder. You can do this by software but I am showing you how can you lock folder without software. If your private folder is Document of mine, then enter the folder and create a text file. Now save the text file with bellow code and rename it to lock.bat



    Its your lock file. Now click on lock.bat and your folder has been locked. Now, if you want to unlock the folder again, what can you do?


    Create a new text file and save with bellow code and rename to unlock.bat



    Its your unlock file. Click this file and unlock your folder again.

    Make any youtube video into a GIF animation

    YouTube: The aggregator of fail compilations, the disseminator of cat related humour and a beacon for everything viral. Killing time on YouTube is the most productive way to be unproductive, but there’s so much more to it than salacious thumbnails and unrelated debates about political theory in the comments section. Aside from a few easter eggs to please medium-core trekkies and Star Wars fans, there are some genuinely useful hacks that can enhance your YouTube viewing experience ten-fold. I mean, if you’re prepared to sign away three hours of your life by watching late-nineties wrestling videos, then you should do it in style, right? Ever know how to turning any video into a GIF? No? No problem, today I am going to share this tricks.

    Make any video into a GIF

    You can turn any video into a GIF by simply adding “gif” just after the “www.” in the URL. For example

    “www.gifyoutube.com/?watch=1jhduskh”

    Once you type that in, you’ll be taken to a simple gif making tool page that lets you cut out a section of the video and export it

    Select the point at which you want to start the gif and then select how long it lasts, and you’re done. You’ve made a gif in a matter of minutes.

    How to remove "Powered by Blogger" from the footer of your blogspot blog's mobile version

    Today I am going to share you how can you remove "Powered by Blogger" from your blogspot blog's mobile version.
    You have seen that this blog's mobile version has no "Powered by Blogger" attribution.
    Now come and start tutorial.
    At first, backup your template and then
    go to dashboard → Template → Edit HTML
    Now search bellow code in your template.
    <b:widget id='Attribution1' locked='true' title=''
    type='Attribution'/>
    If you found this code then remove this code, else nothing should be done.
    Now search </body> tag and paste bellow code above </body> tag
    <!--Remove attribution-->
    <div style='display:none;'>
    <b:section class='hiddenbar' id='hiddenbar'
    preferred='no'>
    <b:widget id='Attribution1' locked='true' mobile='no' title='' type='Attribution'/>
    </b:section>
    </div>
    <!--Remove attribution-->
    Now save the template and visit your blog's mobile version by this url:
    http://yourblog.blogspot.com/?m=1
    (if m=0 then it will redirect to main version and if m=1 it will redirect to mobile version)
    See there is no attribution in footer.
    Now hit share button to share this article with others and comment yourself.
    Visit our new blog - Bangla Hub

    How to download youtube videos

    YouTube has been designed to only allow users to watch and view videos on their website. Many users want to download or save their favorite YouTube videos to their computer so they can watch them without being connected to the Internet or on other devices. Below are the steps required for downloading and watching YouTube videos on your computer for free.

    Browse your video and the url will like this:

    http://www.youtube.com/watch/?v=dD40VX

    1. Erase everything in front of youtube,
    so in our example we erase "http://
    www"

    2. Before youtube type "ss" to make the
    above example URL and the URL shown
    below and then press enter.

    ssyoutube.com/watch/?v=dD40VX

    3. After pressing enter, you will enter to
    the link, which will allow you to download youtube videos and you can download them in audio format also.

    Thanks everybody.

    Popular Posts

    Post Category

    Blog Statistics

    Now online

    Page views
    Powered by Blogger.