Skip to main content

Some good SharePoint blogs to follow

I have to admit that this post is a refinement from 25+ SharePoint Bloggers to Follow. The reason I did this is I want to provide a little bit more information about the blogs which I found are great from a developer/architect's perspective.

Path to SharePoint

 
Have to say the layout of this blog is a bit old-dated, with categories but no tags, makes it a bit hard to target the specific content you're interested.
 
Content is mixed with overviews of some solutions plus a few post taking about the "Easy Tabs" (guess it is their product). No code snippet and details.
 

Richard Harbridge: Insights

This blog provides some general overviews/comparisons for SharePoint, could be a good resource for entry level devs or business users.
 

SharePoint Javascript

As the name indicates, this blog contains a lot of posts talking about implementing Javascript with SharePoint to achieve some nice customization.
 

SharePoint Rescue

Rather than targeting specific questions and solutions, the topics in this blog is rather kind of generic. Still a good source for SharePoint enthustics.
 
TBC...
 

Comments

Popular posts from this blog

A Step-by-Step guide to use HttpModule in SharePoint with SPContext

I guess you must be familiar with what is HttpModule and how can we leverage it for our web applications. But if not, better have a good read of this article . SharePoint is built on top of .NET, so it has all the rights to use the beauties of .NET. Here I want to demo a simple case of httpmodule on SharePoint. Say if in a company it has lots of site collections and user 'Picky Docky' has access for all of them, for a reason farm administrator want to block him for one of the specific site without change his SharePoint permissions. Here are the steps to do it:-)   Create a empty SharePoint solution add a class file to it named  CustomSecurityModule.cs , code as below Create a feature and scope to "WebApplication" Create a feature receiver. Code as below When activate the feature it will create a modle in the web.config file for the SharePoint web applicaiton you deployed to as below: Enjoy!

Gist

If you want to embed source code (e.g. C#, HTML..) to your blog post I recommend to use Gist https://github.com/ . Especially if you want to give your readers the opportunity to copy and paste your code.

A SharePoint 2013 weather web part

I created a nice SharePoint 2013 weather web part. It has extremely simple code-behind and so easy for you to use or extend.  The core is using Yahoo! Weather Feed Plugin for jQuery Please go to https://weatherwebpartsp2013.codeplex.com/  to grab it. It is free with all the source code. Enjoy!