Friday

Pomodoro technique timer - this one with the RPG game

Pomodorium is a new pomodoro technique timer with embedded RPG game :)

In this game for completing pomodoro you are receiving 25-gold,

and you can spend it on buying weapons and armors and play from level 0 to 40 , travel through the map and free cities from monsters.


Software requires Adobe AIR.

here is link on Pomodorium website

Wednesday

linq subquery for in

for example following sql

select * from AccountTransactions a
where
a.TransactionId =19687 OR
a.TransactionId in (select ChildId from AccountTransactionRelations where InvoiceId=19687)


will have this equivalent in linq:

var records = from t in odc.AccountTransactions
join r in odc.AccountTransactionRelations on t.TransactionId equals r.InvoiceId into rel
where t.TransactionId == transactionId || rel.Select(o => o.ChildId).Contains(transactionId)
select t;



Friday

application monetization

Banners and ads :

Theres CPM banners, which pay per ad displayed:
Adbrite: www.adbrite.com
AdSense www.Google.com/AdSense < br>
Theres CPC banners, which pay per ad clicked:
Zohark: www.f
acebook.com/applications/Zohark_Ads/18584639088

Adchap: http://adchap.com/

Theres CPA
systems, which pay per action,
like surveys/offers:
Peanutlabs: www.peanutlabs.com
MillnicMedia: www.millnicmedia.com
$uperRewa
rds: http://www.facebook.com/apps/applicatio … 6131192103

Theres PPP
system, which pay per play of
audio advertisements:
Netaudioads: http://www.selling
ppp.com/a.cgi?ppp=1207763387


Some are easy to apply for..
like Google
AdSense Others are very difficult to apply for.. like peanut labs

Virtual currency:


imagemagic add text to image

rem different types of text annotations on existing images rem cyan yellow orange gold rem -gravity SouthWest rem draw text and anno...