Is there a fast technique that I can use that is similar in each case to calculate the following:
$$(1100)^{1357} \mod{2623} = 1519$$
$$(1819)^{1357} \mod{2623} = 2124$$
$$(0200)^{1357} \mod{2623} = 2227$$
$$(1111)^{1357} \mod{2623} = 1111$$
I used Wolfram Alpha to get to these answers, but I would like to know how to calculate it by hand (with a standard pocket calculator).
Use the Carmichael theorem. This theorem states that $$a^{\lambda(n)} \equiv 1 \mod n$$
if $\gcd(a,2623)=1$. In this case we have $\lambda(2623)=\mathrm{lcm}(42,60)=420$.
Therefore, if $\gcd(a,n)=1$, then $$a^{1357} \equiv a^{1357-1260} = a^{97} \mod 2623$$
This is more friendly to compute with the method @Mauris describes.