How to Choose Blogging Platform? (Blogger Vs Wordpress)

22:13:00 0 Comments



How to Choose Blogging Platform?

You need to ask yourself one main question before you select your blogging platform..
You need to know what is your budget ..how much money you can afford as a person.

Another question you need to ask yourself is what is the main purpose for your website?
Is it going to be just for fun? or Is it something serious....
WordPress is for someone more serious whereas Blogger is for other users..
Blogger has a search Description section where you can enter in your keywords so you can optimize your posts for Google...

I hope you see the above video which will help you take a Good Decision...

0 comments:

Basic Angular File Structure for Most Applications

08:23:00 0 Comments




Hey Guys here I am sharing with you the Very basic file structure to start writing any Angular Js application...I hope it is useful in your projects

It consists of two main files

the html file and the js file


The HTML file will look like the following

<html ng-app="joealmodule" ng-controller="JoelController">
<head>
/*scripts to include jquery and angular and css*/
<link rel="stylesheet" type="text/css" href="style.css">

        <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="http://code.jquery.com/jquery-1.12.0.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
    <script src="js/angular.min.js"></script>
    <script src="js/angular-animate.js"></script>
    <script src="js/pagination.js"></script>
    <script src="js/toastr/angular-toastr.min.js"></script>
    <script src="js/toastr/angular-toastr.tpls.min.js"></script>

    <script src="js/admin.js"></script>
</head>
<body>
</body>
<html>

Now here below you will see the admin.js file

var joelmodule = angular.module("joelmodule",["toastr","angularUtils.directives.dirPagination"]);
joelmodule.controller("JoelController", function($scope,$http, toastr,$timeout) {
     
toastr.success('Hello world!', 'Toastr fun!');

/*define functions*/
$scope.myfunctionname = function (){
alert('my first function');
}

});


joelmodule.config(function(paginationTemplateProvider) {
    
    setTimeout(function(){ paginationTemplateProvider.setPath('dirPagination.tpl.html'); }, 3000);
    
});


Here is the full explanation for pagination 
https://github.com/michaelbromley/angularUtils/tree/master/src/directives/pagination

View his Video for full understanding




Apart from this I have even added Toaster for messages


Make sure to download the files in the correct location ie dirPagination.tpl.html should be placed in the same folder as the html file as per the above example..Comment below if you still have doubts..

I hope that this tutorial was useful to you...


0 comments:

Angular JavaScript Tutorial Series - Soon to be Launched!

12:17:00 0 Comments





Dear Guys!...Welcome to my website ! :D I will soon be launching my own tutorial series after a few weeks where I will post one video Daily for 30 days!



In the Videos I will teach you about the basic concepts to learn Angular Js and JavaScript.

I will show you as I create small Examples



Subscribe to my channel to stay tuned https://www.youtube.com/channel/UCEgvqqQgOteLU9OgTho8_Wg

0 comments:

Improve Sound Quality in Adobe Premier Pro (Vocal Enhancer in Premiere Pro)

10:07:00 2 Comments





Dear Guys I have created this video to show you how I applied the effects that are the De hummer ,the  De Noise and Equalizer Effects in Adobe Premier.Fiddle with the settings as shown and preview untill you get the best sound output :)

Adobe Premier Pro is the Best software to edit your Videos.

Making these changes where quiet easy when using adobe premier pro



Subscribe to my channel http://www.youtube.com/subscription_c...

2 comments: