Career Web Site Usability Testing 9028 #Root #Web Usability

https://www.youtube.com/watch?feature=player_embedded&v=Y_rKE0O7tek

Usography career web site usability testing in lab. User discusses relevance of personal job factor filters. From: http://sitestree.com/?p=2498
Categories:Root, Web Usability
Tags:Testing, Web Usability
Post Data:2015-10-10 08:25:56

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

Pretty Simple Java Code #SCJP


/**
 * The HelloWorldApp class implements an application that
 * simply prints "Hello World!" to standard output.
 */

class HelloWorldApp {

	public static void main(String[] args) {
		System.out.println("Hello Worlld");
	}

}

class ArrayDemo {
    public static void main(String[] args) {
        // declares an array of integers
        int[] anArray;
        int[] theArray;

        // allocates memory for 10 integers
        anArray = new int[10];
        theArray = new int[30];
           
        // initialize first element
        anArray[0] = 100;
        // initialize second element
        anArray[1] = 200;
        // and so forth
        anArray[2] = 300;
        anArray[3] = 400;
        anArray[4] = 500;
        anArray[5] = 600;
        anArray[6] = 700;
        anArray[7] = 800;
        anArray[8] = 900;
        anArray[9] = 1000;

        System.out.println("Element at index 0: "
                           + anArray[0]);
        System.out.println("Element at index 1: "
                           + anArray[1]);
        System.out.println("Element at index 2: "
                           + anArray[2]);
        System.out.println("Element at index 3: "
                           + anArray[3]);
        System.out.println("Element at index 4: "
                           + anArray[4]);
        System.out.println("Element at index 5: "
                           + anArray[5]);
        System.out.println("Element at index 6: "
                           + anArray[6]);
        System.out.println("Element at index 7: "
                           + anArray[7]);
        System.out.println("Element at index 8: "
                           + anArray[8]);
        System.out.println("Element at index 9: "
                           + anArray[9]);
        
        
        byte[] anArrayOfBytes;
        short[] anArrayOfShorts;
        long[] anArrayOfLongs;
        float[] anArrayOfFloats;
        double[] anArrayOfDoubles;
        boolean[] anArrayOfBooleans;
        char[] anArrayOfChars;
       
        		
        		
    }
} 


/*class ArrayCopyDemo {
    public static void main(String[] args) {
        char[] copyFrom = { 'd', 'e', 'c', 'a', 'f', 'f', 'e',
			    'i', 'n', 'a', 't', 'e', 'd' };
        char[] copyTo = new char[7];

        System.arraycopy(copyFrom, 2, copyTo, 0, 7);
        System.out.println(new String(copyTo));
    }
}
*/

class ArrayCopyDemo {
	
	public static void main(String[] args) {
		char[] copyFrom = {'a','b','c','d','e','f'};
		char[] copyTo = new char[10];
		
		System.arraycopy(copyFrom, 0, copyTo, 1,3);
		System.out.println(new String(copyTo));
	}
}



/*
class ArrayCopyOfDemo {
    public static void main(String[] args) {        
        char[] copyFrom = {'d', 'e', 'c', 'a', 'f', 'f', 'e',
            'i', 'n', 'a', 't', 'e', 'd'};
            
        char[] copyTo = java.util.Arrays.copyOfRange(copyFrom, 2, 9);
        
        System.out.println(new String(copyTo));
    }
}*/


class ArrayCopyOfDemo {
	public static void main (String[] args) {
		char[] copyFrom = {'d', 'e', 'c', 'a', 'f', 'f', 'e',
	            'i', 'n', 'a', 't', 'e', 'd'};
		
		char[] copyTo = java.util.Arrays.copyOfRange(copyFrom, 2, 7); 
		System.out.println(copyTo);
		
	}
}



/*
class MultiDimArrayDemo {
    public static void main(String[] args) {
        String[][] names = {
            {"Mr. ", "Mrs. ", "Ms. "},
            {"Smith", "Jones"}
        };
        // Mr. Smith
        System.out.println(names[0][0] + names[1][0]);
        // Ms. Jones
        System.out.println(names[0][2] + names[1][1]);
    }
}*/


class MultiDimArrayDemo {
	public static void main (String[] args) {
		String[][] names = {
				{"mr", "smith", "ms"},
				{"smith", "jones"}
		};
		
		System.out.println(names[0][1]);
	}
	
}

From: http://sitestree.com/?p=10873
Categories:SCJP
Tags:
Post Data:2017-07-19 18:16: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

SCJP: Sun Certified Java Programmer: All that you need to know #SCJP

From: http://sitestree.com/?p=5213
Categories:SCJP
Tags:
Post Data:2013-02-13 20:16:32

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

SCJP: Topics and Resources : will be continued #SCJP

SCJP topics and related resources are provided. I have skimed through the resources at least one time.

Garbage Collection

Parameter Passing

Command Line Parameter

Access Modifiers, Package Declaration, Import

Concurrency:java.lang.Thread and java.lang.Runnable

Java Thread:wait/notify/notifyall-lock

OOP Concept 1

From: http://sitestree.com/?p=4852
Categories:SCJP
Tags:
Post Data:2011-03-09 21:03: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

SCJP: Java Operators #SCJP

By Sayed

Exams like SCJP test your understanding of Java operators and how to use them like:
assignment operators: =, +=, -=
arithmetic operators: +, -, *, /, %, ++, —
relational operators: <, <=, >, >=, ==, !=
logical operators: &, |, ^, !, &&, ||
conditional operators: ? :
Also operators to check the equality of two objects or two primitives

In the following table operators and their precedences are shown. Upper rows operators have higher precedence. Same row operators have equal precedence. For equal precedence operators, All binary operators except the assignment operators work from left to right while assignment operators work from right to left.

 

Operator Precedence
Operators Precedence
postfix expr++ expr--
unary ++expr --expr +expr -expr ~ !
multiplicative * / %
additive + -
shift << >> >>>
relational < > <= >= instanceof
equality == !=
bitwise AND &
bitwise exclusive OR ^
bitwise inclusive OR |
logical AND &&
logical OR ||
ternary ? :
assignment = += -= *= /= %= &= ^= |= <<= >>= >>>=

The following quick reference summarizes the operators supported by the Java programming language.

Simple Assignment Operator

=	Simple assignment operator

Arithmetic Operators

+ 	Additive operator (also used for String concatenation)
- 	Subtraction operator
*	Multiplication operator
/ 	Division operator
%	Remainder operator

Unary Operators

+ 	Unary plus operator; indicates positive value (numbers are positive without this, however)
- 	Unary minus operator; negates an expression
++  	Increment operator; increments a value by 1
--    	Decrement operator; decrements a value by 1
!     	Logical compliment operator; inverts the value of a boolean

Equality and Relational Operators

==	Equal to
!=	Not equal to
>	Greater than
>=	Greater than or equal to
<	Less than
<=	Less than or equal to

Conditional Operators

&& 	Conditional-AND
|| 	Conditional-OR
?:      Ternary (shorthand for if-then-else statement)

Type Comparison Operator

instanceof	Compares an object to a specified type 

Bitwise and Bit Shift Operators

~	Unary bitwise complement
<<	Signed left shift
>>	Signed right shift
>>>	Unsigned right shift
&	Bitwise AND
^	Bitwise exclusive OR
|	Bitwise inclusive OR

From: http://sitestree.com/?p=3643
Categories:SCJP
Tags:
Post Data:2016-07-17 08:33:36

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

Resources: PXE Boot, PXE Network, PXE Network Security, PXE Boot Over the Internet #Security #By Sayed Ahmed #Misc. Reading

PXE Boot:

Boot your computer over the network, load boot image from a PXE server.
Your computer BIOS will have an option to enable PXE boot. If you are not using PXE boot i.e. Network Boot, it is recommended that you keep it disabled.
One note: In your “my computer” properties, there is an option to enable or disable : allow remote access. Keep it turned off.

Anyway, how to use PXE and How to Configure PXE based Network
You can check one discussion and video at : http://www.howtogeek.com/57601/what-is-network-booting-pxe-and-how-can-you-use-it/ (I did not check; so do not know how good or bad it is)
On 2001, I was part of setting up a network based on PXE.

Advantages of PXE Network:
http://serverfault.com/questions/606229/kvm-advantages-of-installing-from-pxe

Works on real servers as well as virtual ones without changing anything, so you need to set-up the infrastructure only once.
It’s easy to automate installations from start to finish (technically possible with DVDs but usually requires more work)
Once you have the infrastructure set-up, adding a new version of your distribution or some alternative install method is a piece of cake
No losing of DVDs, USB sticks, etc.
I find it’s faster than installing from local media; my network can provide the packages faster than optical drives and most USB sticks.



PXE can help in deploying aspect of applications
https://technet.microsoft.com/en-us/magazine/2008.07.desktopfiles.aspx

Can you use PXE over the internet.
it might be possible though implement strict security
http://www.computerhope.com/forum/index.php?topic=133268.0

Security risks for PXE:

Some Security Risks for PXE

https://technet.microsoft.com/en-ca/library/cc755837(v=ws.10).aspx
“PXE does not provide a way to prevent an unknown server from performing remote installations on PXE-enabled client computers. If a server can establish a connection with the clients, it can perform remote installations on them.

PXE does not provide a way to fully prevent packet spoofing. This means that packets sent by an attacker could be received by a client computer and incorporated into that client computer’s installation.

PXE does not provide a way to prevent an unknown PXE-enabled computer from installing from a server if the PXE-enabled computer can connect to the network. RIS provides some security not inherent in PXE, however, because RIS performs remote installation only after the user has logged on. A user who lacks a valid user name and password cannot use RIS to perform an installation.

In addition, you can achieve a somewhat greater degree of security with RIS if you pre-stage your client computers and configure your RIS servers to respond only to known (pre-staged) clients. Then, if an intruder succeeds in connecting an unknown, PXE-enabled client computer to your RIS server, no installation files will be sent to that client computer. The intruder will not gain information about the configuration you use on your RIS client computers. For more information about pre-staging, see Pre-stage client computers.”

http://www.symantec.com/connect/articles/what-security-risks-are-associated-using-pxe-and-how-can-i-reduce-them

 

Understanding Security Considerations for the PXE Boot Process in Windows HPC Server 2008 R2

https://technet.microsoft.com/en-us/library/gg250682(v=ws.10).aspx

 

Discussion on security concerns for PXE

http://security.stackexchange.com/questions/64915/what-are-the-biggest-security-concerns-on-pxe

 

Providing Security for PXE environment

  • Use a firewall, and configure it appropriately.
  • Use appropriate auditing and monitoring to detect intrusions into the network.
  • Restrict physical access to the network.
  • Use strong passwords throughout your organization.
  • Follow other best practices for secure networks.

 

” From: http://sitestree.com/?p=2132
Categories:Security, By Sayed Ahmed, Misc. Reading
Tags:
Post Data:2015-08-06 12:20:29

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

search engine optimization and google webmaster tools #SEO

https://www.youtube.com/watch?feature=player_embedded&v=F61jEGNWs1I From: http://sitestree.com/?p=2621
Categories:SEO
Tags:search engine optimization, google webmaster, SEO
Post Data:2015-10-19 00:51:51

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

Software Testing Basics #Software Development #Root #Software Testing #By Sayed Ahmed

Software Testing Basics

Note: Different testing strategies are described here. In practice, a detail test plan is helpful that may be formed with a subset of these strategies [and delivered to the testers] according to the need of the customers, and the company policies.

Five Fold Testing System

Any testing can be described in five dimensions:
1. Testers: Who does the testing?
2. Coverage: What needs to be tested? function, domain, extreme value?
3. Potential Problems: Why you are testing?
4. Activities: How you test?
5. Evaluation: How to measure the success of testing?

Some Forms of Testing

1. Function testing: Test all functions
2. Extreme Value Testing: Test for errors when extreme values of the variables are used
3. beta testing: make other people test your product

All testing involve five dimensions. When we tell to do function testing, we can list: who will do the test (programmers, testers, users of the product, internal employees), what needs to be tested like functions, what kind of problems they need to address such as pass by value or pass by reference, test method, evaluate your test

People Based Techniques

1. User Testing: Tests by the real users of the product
2. Alpha testing: By Test team, firendly insiders
3. Beta testing: Not insiders, not clients, but may be part of the target market, volunteers
Design Beta tests: appraise the design
marketing beta tests: to justify will customers buy the product?
compatibility beta tests: test hw/sw platform compatibility
4. bug bashes: in house testing, just before release one full day/half day testing
5. subject matter testing: give an expert on the subject to use and test the product
6. Paired testing: two person together do the tests and shares ideas
7. eat your own dogfood: use the software in-house for your own purpose and check reliability

Coverage based testing

1. Function testing: Test each function
White box function testing: testing in respect of code
Black box function testing: test functions in respect of features and commands
2. Function integration testing: test several functions together
3. Menu tour: check all menu items, all available choices
4. Domain testing: Test variable domains and their effect on functions. Find the possible values that a variable can take, classify the value domain, take representative values from each domain, test the variables and related functions
5. Equivalence class analysis: find equivalent domains and tests for one of them
6.Boundary test: Check for smallest and largest values for a variable
7. best representative testing
8. input field test catalogs or matrices
9. Map and test all the ways to edit a field
10. Logic testing: use logics like if then else. cause effect graphing is used for logic based testing
11. state based testing:
12. Path testing: All possible paths to come/go to a state
13. Statement and branch coverage: execute all statements and all branching
14. Configuration coverage: test how many types of printers your software support
15. Specification based testing: Test all claims made in the manual/specification
16. Requirements-based testing: test if all requirements are met
17. combination testing: testing two or more variables in combination with each other

Problems based techniques
1. Input constraints Tests: Check what kinds of input the program can handle. Also check input error protection
2. Output constraints: The inputs are legal but check if they lead to corresponding out value
3. computation constraints : the program may fail while calculating a value
4. Storage constraints: out of memory tests, too big output file to process
5. timimg: race condition, ordering of events

Activity based Testing

How you test?
1. Regression Testing: Test the same issue again.
a. Bug fix regression : bug is fixed but do the test again to prove the bug is not fixed
b. old bugs regression: new bug fix has unfixed old bugs. so test again
c. side effect regression/stability regression : the bug fix has created new bugs/side effects
2. Scripted Testing: execute step by step methods written by senior tester
3. smoke testing : kind of side effect regression testing. but test to prove that no side effect has come. show everything is working. assume may be some simple stuffs have caused the problems not the bug fix. if you can not prove then the new bug fix has created new errors
4. exploratory testing: keep the testers known about the project, product, market, risks. So new tests will be stronger than earlier ones as experience is more
5. guerilla testing: a fast and extensive exploratory test done by senior tester. test whole day a particular part extensively and decide if that area needs much/more testing or can be ignored
6. scenario testing:
a. test what the customer will really do
b. complex feature testing
c. easy to decide success/failure

tests that come from use cases.

7. Installation testing: install in various platform, in different methods, check the files, check if the program works?, check uninstallation
8. Load testing: Test the system at high enough load
9. long sequence testing: run the program for days, weeks. problems like wild pointers, memory leaks, stack overflows, and bad interaction among multiple features are caught by this duration testing
10. Performance testing: test the speed/efficiency of the software. A significant change in speed from time to time is a bad indication and the software need to be optimized

Evaluation based testing
Methods to determine if a test has passed or failed
1. Self verifying data:
2. compare with saved results: if results vary over the week/day, something is wrong
3. compare with specification: mismatch with the specification, failure
4. consistency:
a. with history: software behavior consistent with past behavior?
b. with company image: matches with the image that company focuses on?
c. with claims: does what it is supposed to do
d. user’s expectations: meets users expectations
e. within product: consistent with other functions
f. purpose: consistent with it’s purpose?
From: http://sitestree.com/?p=282
Categories:Software Development, Root, Software Testing, By Sayed Ahmed
Tags:
Post Data:2013-04-26 03:29: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

Waterfall Software Life Cycle Model Features and Risks Software Engineering Tutorial #Software Development #SDLC

http://www.youtube.com/watch?v=p6vW84Pq-Uc From: http://sitestree.com/?p=154
Categories:Software Development, SDLC
Tags:
Post Data:2013-01-01 15:25:49

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

Installing Visual Studio 2012 #Software Development #Web Development #Root #By Sayed Ahmed

Download following from the Internet and install before start installing Visual Studio 2012

Otherwise you may face issues…

Visual Studio 2012 Update 1 – Online install from link provided on top of document

Team Explorer for Visual Studio 2012

Team Explorer Everywhere for TFS 2012 with Update 1

.NET 4.5

Agents for Microsoft Visual Studio 2012 Update 1

IntelliTrace Collector for Visual Studio

Feedback Client for TFS – Online install from link provided on top of document

C++ Redistributable for Visual Studio 2012 Update 1

Visual Studio 2012 Shell

Visual Studio 2012 SDK From: http://sitestree.com/?p=354
Categories:Software Development, Web Development, Root, By Sayed Ahmed
Tags:
Post Data:2013-08-30 00:03:23

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