Archive for June, 2007
SharePoint Licensing
Posted on 25. Jun, 2007 by bryan.
Lots of people out there are asking the same questions regarding SharePoint licensing. Are CAL’s for concurrent users? Do I need both Standard and Enterprise CAL’s? Can I mix Standard and Enterprise CAL’s in a given environment?
It has been difficult finding definitive responses to these questions, and it seems like if you [...]
Continue Reading
My First Linq Program
Posted on 18. Jun, 2007 by bryan.
I successfully coded my very first LINQ program today, and man is it a doozie! Observe:
class Program
{
static void Main(string[] args)
{
List<Student> studentList = new List<Student>();
studentList.Add(new Student(“Charlie”, “Brown”));
[...]
Continue Reading
Safari for Windows!
Posted on 12. Jun, 2007 by bryan.
Thank you Apple! I am now one step closer to retiring my 500MHz iBook!
Incase you missed it, you can download it here. This is definitely not a production build, as I have been running it for less than a day and it has crashed 3 times, but it is very, VERY promising!
Continue Reading
SPLimitedWebPartManager Memory Leak?
Posted on 05. Jun, 2007 by bryan.
Have a look at the following code segment:
while(true)
{
using (SPSite siteCollection =
new SPSite(“http://localhost”))
using (SPWeb site =
siteCollection.OpenWeb(“/Marketing”))
{
SPFolder pagesFolder = site.GetFolder(“Pages”);
[...]

