Lesson 1 AngularJS Starting #Introduction to AngularJS – 001

Lesson 1 AngularJS Starting
[youtube https://www.youtube.com/watch?v=ZsHo0q44Uw4&w=640&h=480] From: http://sitestree.com/?p=3842
Categories:Introduction to AngularJS – 001
Tags:AngularJS, Angular, jQuery, SPA, Mobile Application
Post Data:2016-08-15 13:33:20

Shop Online: https://www.ShopForSoul.com/
(Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com
In Bengali: http://Bangla.SaLearningSchool.com
http://SitesTree.com
8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
Shop Online: https://www.ShopForSoul.com/
Medium: https://medium.com/@SayedAhmedCanada

Sections and Outlines of an HTML5 Document #Introduction to HTML 5

Just some notes

  • In HTML 4, the sections are not precise with tags like div unless you assign some styles to them. For defining sections, you do not need div tags but header tags (h1..h6) can imply sections. HTML4 is very imprecise on what a section is and what is it’s scope.
  • In HTML5, section tag explicitly defines a section
  • In HTML5, tags such as h1, h2,…h6 are relative to the current section not relative to the whole page
  • article, section, nav and aside are always subsections to their nearest sections; they are not dependent on header tags
  • In HTML 4, everything belongs to the main outline of the web-page. In HTML5, aside does not belong to the main outline. Can be used for advertising blocks
  • In HTML5, nav, header, footer do not belong to the content but to the whole site
  • In non-HTML5 browsers, we can support the HTML5 tags just by defining styles as below for them.
    section, article, aside, footer, header, nav, hgroup {  display:block;}
  • IE8 and earlier does not support styling of unsupported tags. So the above method will not work in IE
  • So we can create these elements for such browsers
    //{ and } are used instead of < and >{!--[if lt IE 9] }  {script}    document.createElement("header" );    document.createElement("footer" );    document.createElement("section");    document.createElement("aside"  );    document.createElement("nav"    );    document.createElement("article");    document.createElement("hgroup" );     document.createElement("time"   );  {/script}< ![endif]-->

From: http://sitestree.com/?p=5332
Categories:Introduction to HTML 5
Tags:
Post Data:2008-03-02 23:21:02

Shop Online: https://www.ShopForSoul.com/
(Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com
In Bengali: http://Bangla.SaLearningSchool.com
http://SitesTree.com
8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
Shop Online: https://www.ShopForSoul.com/
Medium: https://medium.com/@SayedAhmedCanada

HTML 5: New Features #Introduction to HTML 5

Published: January 22nd, 2008, by W3C

New features in HTML 5: Functions for embedding audio, video, graphics, client-side data storage, and interactive documents.

New elements: <nav>, <header>, <footer>, and <figure>

HTML 5 provides precise rules on how to handle the HTML elements, and how to recover from errors to provide interoperability. From: http://sitestree.com/?p=3653
Categories:Introduction to HTML 5
Tags:
Post Data:2016-09-15 14:20:27

Shop Online: https://www.ShopForSoul.com/
(Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com
In Bengali: http://Bangla.SaLearningSchool.com
http://SitesTree.com
8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
Shop Online: https://www.ShopForSoul.com/
Medium: https://medium.com/@SayedAhmedCanada

Key Generation: Security : Basic Java #Java

Key Generation : Basic Java

keytool -genkey -alias signFiles -keystore examplestore
jarsigner -keystore examplestore -signedjar sCount.jar Count.jar signFiles
keytool -export -keystore examplestore -alias signFiles -file Example.cer

Application under Security Manager
java -Djava.security.manager -cp sCount.jar Count C:TestDatadata


Misc
keytool -import -alias susan
-file Example.cer -keystore exampleraystore
keytool -printcert -file Example.cer

java -Djava.security.manager
-Djava.security.policy=exampleraypolicy
-cp sCount.jar Count C:TestDatadata

Set Up a Policy File to Grant the Required Permission

Start Policy Tool
Specify the Keystore
Add a Policy Entry with a SignedBy Alias
Save the Policy File From: http://sitestree.com/?p=10879
Categories:Java
Tags:
Post Data:2017-07-20 21:29:26

Shop Online: https://www.ShopForSoul.com/
(Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com
In Bengali: http://Bangla.SaLearningSchool.com
http://SitesTree.com
8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
Shop Online: https://www.ShopForSoul.com/
Medium: https://medium.com/@SayedAhmedCanada

Count Chars in a File : Pretty Simple Java Code #Java


/*
 * Copyright (c) 1995, 2008, Oracle and/or its affiliates. All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 *   - Redistributions of source code must retain the above copyright
 *     notice, this list of conditions and the following disclaimer.
 *
 *   - Redistributions in binary form must reproduce the above copyright
 *     notice, this list of conditions and the following disclaimer in the
 *     documentation and/or other materials provided with the distribution.
 *
 *   - Neither the name of Oracle or the names of its
 *     contributors may be used to endorse or promote products derived
 *     from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
 * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */ 

import java.io.*;

public class Count {
    public static void countChars(InputStream in) throws IOException
    {
        int count = 0;

        while (in.read() != -1)
            count++;

        System.out.println("Counted " + count + " chars.");
    }

    public static void main(String[] args) throws Exception
    {
        if (args.length >= 1)
            countChars(new FileInputStream(args[0]));
        else
            System.err.println("Usage: Count filename");
    }
}

From: http://sitestree.com/?p=10877
Categories:Java
Tags:
Post Data:2017-07-20 20:24:24

Shop Online: https://www.ShopForSoul.com/
(Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com
In Bengali: http://Bangla.SaLearningSchool.com
http://SitesTree.com
8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
Shop Online: https://www.ShopForSoul.com/
Medium: https://medium.com/@SayedAhmedCanada

Get System Property: Pretty Simple Java Code #Java

/*
 * Copyright (c) 1995, 2008, Oracle and/or its affiliates. All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 *   - Redistributions of source code must retain the above copyright
 *     notice, this list of conditions and the following disclaimer.
 *
 *   - Redistributions in binary form must reproduce the above copyright
 *     notice, this list of conditions and the following disclaimer in the
 *     documentation and/or other materials provided with the distribution.
 *
 *   - Neither the name of Oracle or the names of its
 *     contributors may be used to endorse or promote products derived
 *     from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
 * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
 
import java.lang.*;
import java.security.*;
 
class GetProps {
 
    public static void main(String[] args) {
 
        /* Test reading properties w & w/out security manager */
         
        String s;
 
        try {
 
            System.out.println("About to get os.name property value");
 
            s = System.getProperty("os.name", "not specified");
            System.out.println("  The name of your operating system is: " + s);
 
            System.out.println("About to get java.version property value");
 
            s = System.getProperty("java.version", "not specified");
            System.out.println("  The version of the JVM you are running is: " + s);
 
            System.out.println("About to get user.home property value");
 
            s = System.getProperty("user.home", "not specified");
            System.out.println("  Your user home directory is: " + s);
 
            System.out.println("About to get java.home property value");
 
            s = System.getProperty("java.home", "not specified");
            System.out.println("  Your JRE installation directory is: " + s);
 
 
        } catch (Exception e) {
            System.err.println("Caught exception " + e.toString());
        }
 
    }
 
}

From: http://sitestree.com/?p=10875
Categories:Java
Tags:
Post Data:2017-07-20 19:06:43

Shop Online: https://www.ShopForSoul.com/
(Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com
In Bengali: http://Bangla.SaLearningSchool.com
http://SitesTree.com
8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
Shop Online: https://www.ShopForSoul.com/
Medium: https://medium.com/@SayedAhmedCanada

object oriented concepts in general #Java

https://www.youtube.com/watch?feature=player_embedded&v=kmjm8DR62Qk From: http://sitestree.com/?p=2629
Categories:Java
Tags:Java
Post Data:2015-10-20 00:02:34

Shop Online: https://www.ShopForSoul.com/
(Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com
In Bengali: http://Bangla.SaLearningSchool.com
http://SitesTree.com
8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
Shop Online: https://www.ShopForSoul.com/
Medium: https://medium.com/@SayedAhmedCanada

flow contro collection concurrency generics fundamentals #Java

https://www.youtube.com/watch?feature=player_embedded&v=0fTDGw1pZK0 From: http://sitestree.com/?p=2627
Categories:Java
Tags:Java
Post Data:2015-10-19 18:00:22

Shop Online: https://www.ShopForSoul.com/
(Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com
In Bengali: http://Bangla.SaLearningSchool.com
http://SitesTree.com
8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
Shop Online: https://www.ShopForSoul.com/
Medium: https://medium.com/@SayedAhmedCanada

basic java language concepts #Java

https://www.youtube.com/watch?feature=player_embedded&v=jiJkapK8MLg From: http://sitestree.com/?p=2625
Categories:Java
Tags:Java
Post Data:2015-10-19 12:58:08

Shop Online: https://www.ShopForSoul.com/
(Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com
In Bengali: http://Bangla.SaLearningSchool.com
http://SitesTree.com
8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
Shop Online: https://www.ShopForSoul.com/
Medium: https://medium.com/@SayedAhmedCanada

basic file operations in java #Java

https://www.youtube.com/watch?feature=player_embedded&v=aj5IDtSL6aM From: http://sitestree.com/?p=2623
Categories:Java
Tags:Java
Post Data:2015-10-19 06:56:40

Shop Online: https://www.ShopForSoul.com/
(Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com
In Bengali: http://Bangla.SaLearningSchool.com
http://SitesTree.com
8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
Shop Online: https://www.ShopForSoul.com/
Medium: https://medium.com/@SayedAhmedCanada