-
as seen on Geeks with Blogs
- Search for 'Geeks with Blogs'
Eric Ligman, from Microsoft, posted a great blog post this week listing all of the SharePoint 2010 Virtual Labs that are available from Microsoft. His blog entry is here: http://blogs.msdn.com/b/mssmallbiz/archive/2012/03/13/sharepoint-server-2010-msdn-virtual-labs-available-to-you-online-plus-more-sharepoint-2010-resources…
>>> More
-
as seen on Geeks with Blogs
- Search for 'Geeks with Blogs'
Enterprise SharePoint 2010 Hosting, SharePoint Foundation 2010 Hosting, SharePoint Standard 2010 Hosting, Michigan Sclera, a Microsoft Hosted Services Provider Partner, is offering key Service Offerings around the Microsoft SharePoint Server 2010 stack. Specifically – if you’re looking for SharePoint…
>>> More
-
as seen on ASP-PHP.net
- Search for 'ASP-PHP.net'
Nous avons vu dans les articles pr?c?dents comment agr?menter les pages de recherche afin de permettre une meilleure adoption du produit par les utilisateurs. Il existe une autre fonctionnalit? de Microsoft Office SharePoint Server 2007 (MOSS) qui permet aussi de personnaliser un peu le MySite des…
>>> More
-
as seen on ASP-PHP.net
- Search for 'ASP-PHP.net'
Dans le cadre de la bonne gestion de son environnement SharePoint, il est utile de faire un contr?le de son installation afin d'assurer le bon fonctionnement des fermes et donc, la meilleure disponibilit? pour les usagers. Dans ce but, nous verrons comment auditer sa ferme facilement et les traitements…
>>> More
-
as seen on ASP.net Weblogs
- Search for 'ASP.net Weblogs'
I had an interesting challenge recently that I turned to Marc Anderson’s wonderful SPServices project for. If you haven’t already seen or used SPServices, please do. It’s a jQuery library that does primarily two things. First, it wraps up all of the SharePoint web services in a nice little AJAX wrapper…
>>> More
-
as seen on Simple Talk
- Search for 'Simple Talk'
There are a number of news-feeds for the Simple-Talk site, but for some reason they are well hidden. Whilst we set about reorganizing them, I thought it would be a good idea to list some of the more important ones. The most important one for almost all purposes is the Homepage RSS feed which represents…
>>> More
-
as seen on ASP.net Weblogs
- Search for 'ASP.net Weblogs'
Depending on the application sometimes we have to maintain some shared service throughout our application. Let’s say you are developing a multi-blog supported blog engine where both the controller and view must know the currently visiting blog, it’s setting , user information and url generation service…
>>> More
-
as seen on Ezine Articles
- Search for 'Ezine Articles'
There are so many informative blogs in the online arena today. Sadly, not all of them are getting the kind of attention they deserve. One of the reasons is because their content is not properly optimized. SEO blog writing doesn't need to be a complicated task. Here's an easy...
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have two models defined
from django.db import models
class Blog(models.Model):
title = models.CharField(max_length=144)
@property
def posts(self):
self.Post_set.all()
class Post(models.Model):
title = models.CharField(max_length=144)
text = models.TextField()
…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Don't really know how to formulate the title, but it should be pretty obvious from the example.
More specifically, what rules do you use for naming "dependent" classes. For example, Blog is a pretty descriptive name itself, but how do I deal with posts? BlogPost or Post? Clearly, first name clearly…
>>> More