Tangible Thoughts

SharePoint, MOSS? and all the other questions

  Home  |   Contact  |   Syndication    |   Login
  858 Posts | 6 Stories | 482 Comments | 2088 Trackbacks

News

Tag Cloud


Article Categories

Archives

Post Categories

Image Galleries

Linky Things

SharePoint Bloggers

SharePoint Related

What I am playing

What I am Reading

Csharp

There are 16 entries for the tag Csharp
I was writing an extension for my blog that uses the MetaWeblog API, so here is what I have learnt about it. It uses XML RPC for communication. So if you are coding in .NET you will need the xml-rpc library from CookComputing. XML-RPC Firstly an Introduction to XML RPC over here (I would recommend reading the whole series posted there) so that you may get an idea of 1. XML RPC Types 2. Request 3. Response 4. Errors (a.k.a. Faults) Using CookComputing XML-RPC.Net The following link shows you how to...

Tools written in Csharp for Video and Audio work. Check it out - http://moitah.net/. There's some cool stuff there (if you are into that kinda thing anyways) Technorati tags: audio, video, tools, csharp, .net Cross-posted from tariqayad.com...

Needing to spew out some javascript as a format template I ran into the issue of how do you escape a curly brace for String.Format. Obviously \{ doesnt work. Googling around brought me to this Forum. Guess what a double curly brace works. So the format string becomes "function foo(){{ document.write("{0}"); }}" Technorati tags: . NET, Csharp, Format String Cross-posted from tariqayad.com...

I've seen quite a few blog post on the topic of writing a SP 2007 WebPart. But heres one at CodeGuru http://www.codeguru.com/csh... Cross-posted from tariqayad.com

Was looking for a lighter vesion of the Configuration Application Block – something that could do its job of writing settings to a ini flie or xml file. And found this http://www.codeproject.com/

Are you confused with the new namespace alias qualifier ‘::‘ in C# 2.0 MSDN gives a brief explanation. But Jerod Moemeka has a very good write-up illustrating the whole fiasco

Nope, not by me, Better minds have already done so and you can follow/contribute to the thread here on the newgroups

In my hunt for IM bots and IM Sdks I came across this IRC API for .NET Link: http://sourceforge.net/proj... Example: http://www.codeproject.com/

59 Dr E.A. Cooray Mw, Wellawatte, Colombo 6, Sri Lanka +94 11 2360793 tariqayad@gmail.com M. Tariq Al Ayad OBJECTIVE An experienced Software Engineer in .NET Development with a keen interest in SharePoint Technologies and high-tech collaboration solutions, having experience in working on project teams as well as leading teams from a technical aspect Enjoys learning new skills and is confident working in different cultures. EMPLOYMENT STATUS I am currently employed but am open to discussing fulltime,...

Once upon a time (not very long ago to be quite honest) I thought it would pretty neat if there were a Parser that could convert conditions written in natural language to CAML. What I wanted was a parser that could convert something like this (Column1 = Test) | (Column2 = JohnDoe) To <Where> <Or> <Eq> <FieldRef Name=”Column1”/... <Value Type=”Text”>... </Eq> <Eq> <FieldRef Name=”Column2”/... <Value Type=”Text”>...

namespace Test { /// <summary> /// Summary description for MainStream. /// </summary> public class MainStream { // 3=Width2=Yield1=Zorder|& // W3=Y2=Z1=|& const string cond = "( ( F1 = 3) & ( ( F2 = 2 ) | ( F3 = 1 ) ) )"; public static void Main() { ArrayList conditionList; conditionList = Parser.SanitizeCondition(co... conditionList = Parser.PrepareConditionList... string caml = Parser.CreateCaml(condition... Console.WriteLine(caml); } } /// <summary>...

I am not sure if this has been already done, but I think it’s about high time someone started consolidating a list of tools that are out for SharePoint. I am thinking of something similar to the SharpToolbox. Of course the list will not be huge like the CSharp list at SharpToolbox, but I think we’ve got enough to go around. So let me start it off by providing the ones I know, you guys can contribute by adding the ones you know to the comments system of this post, and I will update the...

Yes those url shrinking sites, First there was tinyurl and now there's shrinkster. The logic behind them is pretty easy. In fact I created one at work just for the fun of it, actually named it gURL; pronounced girl and supposed to stand for Get URL. The interesting bit about it was creating a base 36 number system to count each url stored. The actual url could be stored in a database, but I used a hashtable with the base 36 number as the key and the url as value. The hashtable was serialized once...

Here is a cool article on Code Project about programmatic access to GMail

Heres a great example snippet on how you can join two DataTables in CSharp. IMO this should really replace all this nastycode posted on the Microsoft Knowledge Base

Found this one whist trying to sort out a problem with search Active Directory. I circulated the csharp help article on memmory managment that Raju had posted around work and got these ones in response. 1. http://msdn.microsoft.com/m... 2. http://msdn.microsoft.com/m...