Microsoft Tech ed 2010 was a great success. Infact Most of such conferences always provide a great place to meet other technology enthusiasts and ofcourse,whats in the pipeline for future products of a company or field.. And yet again,MS Tech ed India is coming on 23-25 march in Banglore,India.Well,the place is ofcourse right suited for any IT/Computing conference.After all,Its Silicon Valley of India.. From Last year.I remember a session by Harish about “Building pure client side apps with Jquery ......
string input = @"cool man dog no dude yes fight son"; string pattern = @"cool (?<hello>((.)* )) (?<h>( (dude)?)) (?(h)(?<dude>((.)*)))"; MatchCollection matches = Regex.Matches(input, pattern, RegexOptions.ExplicitCapture | RegexOptions.IgnorePatternW... foreach (Match match in matches) { Console.WriteLine("dude=" + match.Groups["dude"].Value); Console.WriteLine("hello=" + match.Groups["hello"].Value); Console.ReadLine(); } /*Output- dude= hello= man dog no dude yes fight ......
College is opening tommorow and I am thinking what i have done in past 1 and half months of vacations. The only thing i can remember is bluz,my open source project. Where is that p2p thing i decided earlier? All the research papers about skype,overlay networks ,guntella etc are lying there on disk as it is.i have read them only once.I have read not understood.. The positive side of vacations is: 1)I learned a lot about WPF,Blend etc. 2) I am participating in win7 contest based on above experience. ......
Hii guys, Just heard about this https://www.code7contest.com/ If you have a little experience with MS .Net and you are as empty as me,Have a look over it. The prizes are awesome and mouth watering .You will have to grasp a little about the windows 7 techonolgies though .But you can do that for atleast 17777$. I am getting ready with a killer app idea..yes it is a a killer idea,Either it will Kill MS or my Laptop.lol!(Sorry bill,its a metaphor,don't take it serious.) And the best thing is that ,My ......
hi guys. I have just released a pre beta release of next generation media player bluz. Link is here: http://code.google.com/p/bluz/ Its based on vlc libraries and bass and a couple of others for various tasks. Its in c#,WPF but if any of you would like to contribute through any means. The UI is purely in XAML,I am not a good designer,Even all icons are made in XAML. . If any of you would like to contribute through coding various modules or helping me develop the website,it would be nice of you to ......
I have moved the tagging features for my media player application from MediaInfo to taglib-sharp. because taglib-sharp provides writing of tags back to audio files too.. As a matter of fact, Everything else was fine but,it took me whole half day to figure out how to display an image (album art) from taglib-sharp. I thought to finally post this workaround. TagLib.File file = TagLib.File.Create((FilePath); //FilePath is the audio file location TagLib.IPicture pic=file.Tag.Pictures[0]; //pic contains ......
This is in continuation to my last post in which i was confused of "what to do in summers". After a lot of thinking,I have got the answer. I'll study/research on "p2p architectures and there use in enterprises"...Lets see how it goes,i have semester exams next week and i have downloaded a lot of books/technical papers to get started. .. p2p will help me distinguish my music player from others in the market... I'll also look at using the p2p library "Brunet" which is not much publicized as gnutella ......
I am a Computer science student and there is a big Question mark of what i'll do in summers. Ofcourse,I have some projects to do ,But even then i would like to get some internship.A fun and learning opportunity at the same time,i can earn too.. But this recession has really affected my internship hopes.. Companies like Microsoft,Google are giving paid internships to Phd Students only and i am a pursuing undergraduate from not so famous college. ..And they require some big references which i am not ......
Hey all, I can't imagine how easy it can be to develop and maintain a plugin architecture with System.AddIn and this tool VSPipelineBuilder.. This is a visual studio addIn is an open source project by the ClrAddIn team and is really awesome. U just define an interface/Contract and rest of the things, just a single click through that addIn. AddIn will implement that Interface and thats it,u can use it..Cheers ......... I used it for first defining a single interface .and implemented a small AddIn. ......
Hey everyone,I am writing this so that anyone can point me to some good articles,tutorials on creating a plugin support for an application in .Net 3.5 or higher(SP1).
I tried a lot of google searches but nothing that can let me create plugin support for my application in a standard way...
Thanx in advance.
Full .Net Archive