IBM Rational System Architect Overview: Part 4 of 9 #Root #IBM Rational System Architect

https://www.youtube.com/watch?feature=player_embedded&v=uQIsRnl-a_A From: http://sitestree.com/?p=2645
Categories:Root, IBM Rational System Architect
Tags:IBM, Rational System, Architect, Overview
Post Data:2015-10-21 18:56:13

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

Java Multimedia #Root #Java

Java Multimedia

From: http://sitestree.com/?p=3256
Categories:Root, Java
Tags:
Post Data:2016-01-22 23:15: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

object oriented concepts in java #Root #Java

https://www.youtube.com/watch?feature=player_embedded&v=H2PWrFoR37o From: http://sitestree.com/?p=2631
Categories:Root, Java
Tags:Java
Post Data:2015-10-20 06:04: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

Crystal Report for Java/JSP/Java EE #Root #Java #Java

Similar to the way you use Crystal Report for report creation in Visual Studio. The following web-pages and videos will demonstrate how to use Crystal Report in Eclipse IDE [for Java] for report creation. Creating reports using tools like this may be faster and more efficient than creating reports with Java/JSP coding solely. Modification to existing reports also becomes much more easier. Just to change a column title or to change the font size, you will not require to dig into codes

Crystal Report for Java can be used with other environments like

IBM Rational Application Developer
IBM WebSphere Studio
BEA WebLogic Workshop
Borland JBuilder From: http://sitestree.com/?p=3563
Categories:Root, Java, Java
Tags:
Post Data:2016-07-04 15:20:54

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

Check File Type and Also Check File Size using JQuery #Root #JQuery #By Sayed Ahmed

[youtube http://www.youtube.com/watch?v=uxjBRERRTe4?feature=player_detailpage&w=640&h=360] From: http://sitestree.com/?p=1723
Categories:Root, JQuery, By Sayed Ahmed
Tags:
Post Data:2014-12-07 23:50:44

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

Laravel Mocking, Laravel Testing #Root #Laravel

<?php

use AppEventsUserRegistered;

class ExampleTest extends TestCase
{
    /**
     * Test new user registration.
     */
    public function testUserRegistration()
    {
        $this->expectsEvents(UserRegistered::class);

        // Test user registration...
    }
}

--

<?php

class ExampleTest extends TestCase
{
    public function testUserRegistration()
    {
        $this->withoutEvents();

        // Test user registration code...
    }
}
--


<?php

use AppEventsOrderShipped;
use AppEventsOrderFailedToShip;
use IlluminateSupportFacadesEvent;

class ExampleTest extends TestCase
{
    /**
     * Test order shipping.
     */
    public function testOrderShipping()
    {
        Event::fake();

        // Perform order shipping...

        Event::assertFired(OrderShipped::class, function ($e) use ($order) {
            return $e->order->id === $order->id;
        });

        Event::assertNotFired(OrderFailedToShip::class);
    }
}

---

<?php

use AppJobsShipOrder;

class ExampleTest extends TestCase
{
    public function testOrderShipping()
    {
        $this->expectsJobs(ShipOrder::class);

        // Test order shipping...
    }
}

---


<?php

use AppJobsShipOrder;

class ExampleTest extends TestCase
{
    /**
     * Test order cancellation.
     */
    public function testOrderCancellation()
    {
        $this->doesntExpectJobs(ShipOrder::class);

        // Test order cancellation...
    }
}

---


<?php

use AppJobsShipOrder;

class ExampleTest extends TestCase
{
    /**
     * Test order cancellation.
     */
    public function testOrderCancellation()
    {
        $this->withoutJobs();

        // Test order cancellation...
    }
}

---


<?php

class FooTest extends TestCase
{
    public function testGetIndex()
    {
        Cache::shouldReceive('get')
                    ->once()
                    ->with('key')
                    ->andReturn('value');

        $this->visit('/users')->see('value');
    }
}


---


<?php

namespace AppHttpControllers;

use IlluminateSupportFacadesCache;

class UserController extends Controller
{
    /**
     * Show a list of all users of the application.
     *
     * @return Response
     */
    public function index()
    {
        $value = Cache::get('key');

        //
    }
}

From: http://sitestree.com/?p=4682
Categories:Root, Laravel
Tags:
Post Data:2016-12-10 22:08: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

.Net Remoting/ Windows Services #Root #Misc .Net

Brought from: http://salearningschool.com/displayArticle.php?table=Articles&articleID=1121&title=.Net%20Remoting/%20Windows%20Services

From: http://sitestree.com/?p=3777
Categories:Root, Misc .Net
Tags:
Post Data:2016-07-17 13:30: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

Tax Planning Resources, Dividend Tax Credit, Canada, Ontario #Root #Misc. Reading

Some Resources Checked Recently on Taxing (PSB, Small Corporate, and Personal ).

These are just information purpose only. We do not recommend to use this information to plan your tax without discussing with an accountant. And treat this post as a draft/beta. I plan to make the information more accurate (if there is a place to improve).

You will find 2015 tax rates for Provincial and Federal Income Taxes
You will find 2016 tax rates for Provincial and Federal Income Taxes

You will find 2015 CPP rates, maximum CPP, and CPP exempt Amount
You will find 2016 CPP rates, maximum CPP, and CPP exempt Amount

You will know about Dividend Tax Credit, Gross Up (1.38 for Ontario), and Provincial and Federal Credits for Dividend Income. Dividends might reduce your overall tax (depending on your situation). You will see an article where it showed how DTC calculation works. Some dividend and some salary might work best for some. If you take a % of your current year’s revenue/profit as dividends, you have to pay tax on the Corporate Side (on the personal side, it may or may not incur additional tax depending on the amount taken and Dividend tax credits). You also need to keep in mind, if you take dividend from current year’s revenue, you cannot count that as salary/wage expenses, hence, you will be paying more corporate taxes.

Dividends might reduce your CPP pay (it can be good or bad for you depending on what you want and what will be your situation at retirement) and No EI to pay on Dividends (Please verify on your own)

Family Tax Cut is something that might help some people.

Basic Personal Amount and corresponding Federal and provincial Tax credit information – you will find somewhere in the URLs.

RRSP contribution might help to Reduce overall tax and take more money out of your corporation as salary. You might also check exactly how much RRSP contribution make the best sense. You might also want to check if contributing little less RRSP and invest the the difference in TFSA might make better sense or not. You might open a spousal RRSP and from your RRSP contribution limit, you might contribute to your wife’s RRSP (if she is in lower income brackets). Spousal RRSPs might help if your income is usually higher even in retirement ( I need to verify this statement: even in retirement). If you are planning to buy a house (first time) recently, and you have > 25k in your own RRSP then you might want to contribute to Spousal RRSP if she has less than 25k. Then you can withdraw 50k in total for First Time Home Buying.

No resource is provided below but you might think/consider about Quick Method; it might help in GST/HST area (and esp. if you are doing IT consulting).

http://www.cra-arc.gc.ca/tx/bsnss/tpcs/crprtns/rts-eng.html
http://www.tax-services.ca/cpp-ei-maximum-2015/
http://www.cra-arc.gc.ca/tx/ndvdls/tpcs/ncm-tx/rtrn/cmpltng/ddctns/lns300-350/300-eng.html
http://www.taxtips.ca/taxrates/canada.htm
http://www.mewco.ca/tax/blog/tax-tip-business-owners/
http://business.financialpost.com/entrepreneur/how-to-pay-yourself-while-incurring-a-minimum-of-taxes
http://www.cra-arc.gc.ca/tx/ndvdls/fq/txrts-eng.html
http://www.taxtips.ca/taxrates/on.htm

http://www.taxtips.ca/taxrates/on.htm
http://www.taxtips.ca/taxrates/canada.htm
http://www.theglobeandmail.com/globe-investor/investment-ideas/strategy-lab/dividend-investing/you-do-the-math-almost-50000-in-earned-dividends-0-in-tax/article4599950/
http://www.taxtips.ca/dtc/enhanceddtc/enhanceddtcrates.htm
http://www.taxtips.ca/fedtax.htm
From: http://sitestree.com/?p=3216
Categories:Root, Misc. Reading
Tags:
Post Data:2016-01-13 20:23:38

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

On Purchasing ETFs #Root #Money #Finance #& Investment #Blog

http://etfguide.com/7-tips-for-placing-etf-trading-orders/

https://www.mainstreet.com/article/how-to-purchase-shares-of-an-exchange-traded-fund-in-the-market

  From: http://sitestree.com/?p=3444
Categories:Root, Money, Finance, & Investment, Blog
Tags:
Post Data:2016-07-09 09:32:48

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

List of iShares Equity ETFs #Root #Money #Finance #& Investment #Blog

From: http://sitestree.com/?p=3376
Categories:Root, Money, Finance, & Investment, Blog
Tags:
Post Data:2016-04-03 13:55:52

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