Sunday, January 25, 2015

billing invoice

Hey there,


Sending you this email to apologize for the little typo errors I made in my last email.

Basically, someone email me mentioning that I have a few too many K’s in the billing section.


Sorry for that once again, and here’s the correct version:



A week later, the owners received a bill from the old man for ten thousand dollars.

“What?!” the owners exclaimed. “He hardly did anything!”

So they wrote the old man a note saying, “Please send us an itemized bill.”


The man sent a bill that read:

Tapping with a hammer ........................ $ 0.2K

Knowing where to tap .......................... $ 9.8K

Total billable invoice ............................ $ 10K



P.s. If you still are NOT charging at least $ 10K for your projects...


Cheers! :)

James Richman
CEO / Co-Founder

Injap Tower
IloIlo, 5000, PH
Unsubscribe

Saturday, January 24, 2015

DISABLE CSS TRANSFORMS, TRANSISTIONS AND ANIMATIONS

* {
2 /*CSS transitions*/
3 -o-transition-property: none !important;
4 -moz-transition-property: none !important;
5 -ms-transition-property: none !important;
6 -webkit-transition-property: none !important;
7 transition-property: none !important;
8 /*CSS transforms*/
9 -o-transform: none !important;
10 -moz-transform: none !important;
11 -ms-transform: none !important;
12 -webkit-transform: none !important;
13 transform: none !important;
14 /*CSS animations*/
15 -webkit-animation: none !important;
16 -moz-animation: none !important;
17 -o-animation: none !important;
18 -ms-animation: none !important;
19 animation: none !important;
20}