шаблон сайта, проданный 2.5k раз за год, принесший $50k создателю Познавательно - вот этот (http://bit.ly/rttpQP) шаблон сайта принес авторам за год 50 килобаксов (при цене $20).
Здорово, что дизайнеры могут зарабатывать так же, как и шароварщики - ничего не делая.
Wednesday
Thursday
online lesson videos from stanford
Artificial intelligence (http://ai-class.org).
Databases (http://db-class.org)
Machine Learning (http://ml-class.org).
- Computer Science 101: http://www.cs101-class.org/
- Software Engineering for Software as a Service: http://www.saas-class.org/
- Human-Computer Interfaces: http://www.hci-class.org/
- Natural Language Processing: http://www.nlp-class.org/
- Game Theory: http://game-theory-class.org
- Probabilistic Graphical Models: http://www.pgm-class.org/
Monday
linq concatenate rows
we can use Aggregate methods to concatenate fields in rows as follow:
var profiles = (from b in invoiceContext.bills
join p in invoiceContext.PaymentProfiles on 1 equals 1
where b.ProfileID == p.Id || b.ProfileType == p.Id
select p.Name).ToList();
if (profiles.Count() > 0)
{
BillingMethodLabel.Text = profiles.Aggregate((current, next) => current + ", " + next);
}
Friday
hgignore visual studio example
# use glob syntax.
syntax: glob
# c-sharp
/bin
/obj
*.user
*.suo
_ReSharper.*
*.sln.cache
bin/**
bin/Debug/**
obj/*
linq join on multiple fields by OR sample
Linq doesn't allow to do on t1.field1=t2.field1 or t1.field2=t2.field2
therefor it can be done by using OR in where statement:
therefor it can be done by using OR in where statement:
var profiles = (from b in invoiceContext.bills
join p in invoiceContext.PaymentProfiles on 1 equals 1
where b.ProfileID == p.Id || b.ProfileType == p.Id
select p.Name).ToList();
Subscribe to:
Posts (Atom)
here is powershell script on how to get list of files from changesets associated with one tfs task
$dllPath = "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\...

-
Error:The element 'Schedule' has invalid child element 'RecurrenceRule'. List of possible elements expected: 'Occurring...
-
Here is instruction how to make blinking text in rainmeter: 1.right click and select " Edit skin " 2.add following code to temp...
-
2010-11-24 Update: Please download latest version of Pidgin , that has this problem fixed , no additional steps required. Here are 3 ways to...