System.Security.SecurityException: Inaccessible logs: Security |
Wednesday, December 29, 2010
Tuesday, December 14, 2010
Silverlight Features
AutoComplete Box |
Jeff Wilcox – Introducing the AutoCompleteBox http://www.jeff.wilcox.name/2008/10/introducing-autocompletebox/ |
Resize with Browser |
Silverlight Tip : How to Scale your entire App and its Elements to your Browsers Size http://blogs.silverlight.net/blogs/msnow/archive/2008/08/26/silverlight-tip-of-the-day-33-how-to-scale-your-entire-app-and-its-elements-to-your-browsers-size.aspx |
Improve your user experience using the AutoCompleteBox - Jonas Follesø's http://jonas.follesoe.no/2008/10/28/improve-your-user-experience-using-the-autocompletebox/ |
On browser window size change/Full screen change http://forums.silverlight.net/forums/p/137122/306300.aspx |
Getting Silverlight Plugin to resize on resize of Browser Window http://forums.silverlight.net/forums/p/4331/13007.aspx |
Managed Extensibility Framework and Silverlight MVVM |
Monday, December 13, 2010
Toastmasters Speeches
Toastmasters Speech 1: Ice Breaker http://sixminutes.dlugan.com/toastmasters-speech-1-ice-breaker-icebreaker/ |
Ravi's World: TM CC-1 The Ice Breaker Speech - About Me http://ravisingal.blogspot.com/2008/04/toastmaster-1-ice-breaker-speech.html |
#1 – the Ice Breaker Speech « LIFE IN OLEG http://lifeinoleg.wordpress.com/2008/04/29/the-ice-breaker-speech/ |
Thursday, December 02, 2010
Silverlight Applications
http://grapholite.com/ online flow charting solution. |
http://www.telerik.com/products/facedeck.aspx Silverlight Facebook Client for Desktop |
iMeta Agility http://agility.imeta.co.uk/Cloud/ |
Silverlight Eyes - SliBall http://www.pay4foss.org/jumpstation/sliball/ |
DeepZoom http://www.wssdemo.com/livepivot/ http://www.mumbaiindians.com/DeepZoom.aspx http://thejit.org/demos/ http://roomseeker.eu/content/pivot.htm |
Monday, November 22, 2010
Vista
How to disable/stop Vista’s Search Indexing (Windows Search) http://4sysops.com/archives/how-to-disable-vista%E2%80%99s-desktop-search-indexing-windows-search/
Start - Control Panel - Indexing Options |
Wednesday, October 27, 2010
Tuesday, October 26, 2010
Handling DataGrid.SelectedItems in an MVVM-friendly manner
An interesting question from one of the MVVM Light users today:
Is there an MVVM-friendly way to get a DataGrid’s SelectedItems into the ViewModel?
The issue there is as old as the DataGrid (that’s not very old but still): SelectedItem (singular) is a DependencyProperty and can be databound to a property in the ViewModel. SelectedItems (plural) is not a DependencyProperty.
Thankfully the answer is very simple: Use EventToCommand to call a Command in the ViewModel, and pass the SelectedItems collection as parameter. For example, if the command in the ViewModel is declared as follows:
public RelayCommand<IList> SelectionChangedCommandand (in the MainViewModel constructor):
{
get;
private set;
}
SelectionChangedCommand = new RelayCommand<IList>(
items =>
{
if (items == null)
{
NumberOfItemsSelected = 0;
return;
}
NumberOfItemsSelected = items.Count;
});
Then the XAML markup becomes:
<sdk:DataGrid x:Name="MyDataGrid"
ItemsSource="{Binding Items}">
<i:Interaction.Triggers>
<i:EventTrigger EventName="SelectionChanged">
<cmd:EventToCommand
Command="{Binding SelectionChangedCommand}"
CommandParameter="{Binding SelectedItems,
ElementName=MyDataGrid}" />
</i:EventTrigger>
</i:Interaction.Triggers>
</sdk:DataGrid>
I slapped a quick sample and published it here (VS2010, SL4 but the concept works in SL3 and WPF too).
Cheers!
Laurent
"
Monday, October 25, 2010
WCF
WCF : BasicHttpBinding compared to WSHttpBinding at SOAP packet level. *** http://geekswithblogs.net/claeyskurt/archive/2008/04/22/121508.aspx |
Winterdom » Blog Archive » WCF Configuration Complexity ** http://winterdom.com/2007/02/wcfconfigurationcomplexity |
WCF Binding: BasicHttpBinding vs WsHttpBinding - Fabian's Blog ** http://www.apexa.net/Blog/web_design_Blog_20080911.aspx |
Configuring Message Logging – MSDN ** http://msdn.microsoft.com/en-us/library/ms731859.aspx |
Stephen Covey’s Five Metastasizing cancers
Watch out for an organizational culture that produces any of these five:
1. Criticizing
2. Complaining
3. Comparing
4. Competing
5. Contending
The above culture shows a victim mentality. Instead, strive to uphold the following values in your organization:
1. Gratitude
2. Forgiveness
3. Abundance
Websites
Interview You need to identify this type of applicant quickly & the quickest way is the short coding interview. You don't even have to have them come into the office. Get a private site right here where you can watch your job candidate write code over the internet in real-time. |
http://i.seemikecode.com/ |
Task management - Online http://www.producteev.com/ |
Photo Gallery http://tympanus.net/codrops/2010/06/27/beautiful-photo-stack-gallery-with-jquery-and-css3/ |
Simple Diagrams A small desktop application that helps you express your ideas quickly and simply. There's just enough functionality to describe a thought or capture a process. It keeps the visual expression clear through the simple design of library items and backgrounds. http://www.simplediagrams.com/
We Used To Wait |
Friday, October 22, 2010
Friday, October 15, 2010
Silverlight Offline Mode
|
|
|
|
Wednesday, October 13, 2010
The Debut Of Cheteshwar Pujara
2nd Test: India v Australia at Bangalore - Oct 9-13, 2010
India 2nd innings (target: 207 runs)
CA Pujara b Hauritz 72 (89)
What a knock, though. You wait five years for the call from selectors. You keep scoring runs.
You finally get that call. You wait for six hours to bat and you get a grubber, a shooter.
You then get promoted ahead of your idol Rahul Dravid in the second innings. And play a super knock. Sometimes, dreams do come true. Sometimes..
http://www.cricinfo.com/india-v-australia-2010/engine/current/match/464527.html
Tuesday, October 12, 2010
Silverlight Applications
|
|
|
Design Patterns
|
|
Monday, October 11, 2010
Coca Cola India – Diwali 2010 Ad
here are the lyrics
jaata kahan hai diwane.. sab kuchh yahaan hai sanam
jab honge hum sath tere.. khushiya chalen sang sang
o raaja tu aaja.. humare sang aaja.. o jhum le zaraa!
ita remix of a song form 1956 movie 'C.I.D'
Wednesday, October 06, 2010
Silverlight – Message Box
How to make a Silverlight MessageBox.Show that waits until a choice is made ? – Forum http://forums.silverlight.net/forums/t/155304.aspx |
Refactoring Silverlight ChildWindow for a non-modal use – Tim Heure ** http://timheuer.com/blog/archive/2009/05/10/silverlight-childwindow-non-modal-refactor.aspx |
Others * |
Threading
Using Delegates Asynchronously - O'Reilly Media http://ondotnet.com/pub/a/dotnet/2003/02/24/asyncdelegates.html |
Sunday, October 03, 2010
Refactoring
Martin Fowler http://www.refactoring.com/sources.html |
Neil Ford: 10 Ways to Improve Your Code - InfoQ http://www.infoq.com/presentations/10-Ways-to-Better-Code-Neal-Ford http://nealford.com/downloads/10_Ways_to_Improve_Your_Code(Neal_Ford).pdf |
Neal Ford – The Productive Programmer... Part 1 http://www.nealford.com/mypastconferences.htm |
Code Smells Listing http://wiki.java.net/bin/view/People/SmellsToRefactorings |
Refactoring – examples from the book (Java/JUnit) http://david.koontz.name/home/Projects/Entries/2008/4/13_Photo_of_the_Day.html |
Refactoring – Chapter 1 (C#) http://www.thycotic.com/articles/refactoring/Csharphandout.pdf |
Thursday, September 30, 2010
Task Schedule Library
http://www.codeproject.com/KB/cs/tsnewlib.aspx
http://quartznet.sourceforge.net/
Wednesday, September 29, 2010
Skills Development
http://www.infoq.com/presentations/Sharpening-the-Tools Dan North advices programmers on how to advance from beginner to expert: practice the basics, learn from others, understand trends, share knowledge, maintain the toolbox, learn how to learn, and start all over again. |
http://www.pomodorotechnique.com/ |
Personal development books http://www.whitetailedeagle.com/web/index.php?option=com_wrapper&view=wrapper&Itemid=13 |
Pomzen Software http://www.whitetailedeagle.com/web/index.php?option=com_content&view=article&id=1&Itemid=7 |
Pomodoro application https://sites.google.com/a/dylan.id.au/software-blog/home/pomodoro |
Sunday, September 26, 2010
Silverlight MVVM Validation
Wednesday, September 22, 2010
Pervasive
Tuesday, September 21, 2010
Tuesday, August 10, 2010
Project Management
Principles 1: The Essence of Driving
A Crash Course in Project Management - Ivo Manolov
http://blogs.msdn.com/b/ivo_manolov/archive/2010/07/18/10039624.aspxRock Solid Leadership
http://www.rock-solidmovie.com/
Change is Good, You Go First by Mac Anderson
Kurt Lewin - Three step model and change theory
http://www.scribd.com/doc/21556594/Change-Management-Lewin’s-3-Step-Model
http://rapidbi.com/management/kurt-lewin-three-step-change-theory/
Sunday, August 08, 2010
Silverlight MVVM
Wednesday, August 04, 2010
Music
Man Chandre Lyrics– Connections Album by A R Rehman http://www.mail-archive.com/arrahmanfans@yahoogroups.com/msg58491.html |
Background Score - JTYJN http://www.indianbackgroundscore.com/viewtopic.php?f=10&t=297&p=638&hilit=jaane#p630 |
Tuesday, August 03, 2010
Miscellaneous
Monday, August 02, 2010
Database Version Control
Coding Horror |
http://www.codinghorror.com/blog/2006/12/is-your-database-under-version-control.html |
http://www.codinghorror.com/blog/2008/02/get-your-database-under-version-control.html |
Walkthroughs (Creating and Updating Version-Controlled Database Schemas) http://msdn.microsoft.com/en-us/library/aa833298(v=VS.90).aspx Data Generation / Static Data 1. http://leon.mvps.org/StaticData/ 2. http://msdn.microsoft.com/en-us/library/aa833237(v=VS.80).aspx |
Tuesday, July 27, 2010
Friday, July 09, 2010
WCF Security Articles
WCF Throttling & Concurrency
Tuesday, July 06, 2010
RIA Screen Layouts
http://uxmag.com/design/rich-internet-application-screen-design
Seth Godin: The difference between running and managing a project
If you choose to manage a project, it's pretty safe. As the manager, you report. You report on what's happening, you chronicle the results, you are the middleman.
If you choose to run a project, on the other hand, you're on the hook. It's an active engagement, bending the status quo to your will, ensuring that you ship.
Running a project requires a level of commitment that's absent from someone who is managing one. Who would you rather hire, a manager or a runner?
Monday, July 05, 2010
Saturday, July 03, 2010
WCF: Miscellaneous
WCF Concurrency (Single, Multiple and Reentrant) and Throttling http://computerauthor.blogspot.com/2010/06/wcf-concurrency-single-multiple-and.html |
WCF, Interop, and the elusive BinarySecurityToken http://threeisit.com/post/WCF2c-Interop2c-and-the-elusive-BinarySecurityToken.aspx |
WCF Callbacks http://idunno.org/archive/2008/05/29/wcf-callbacks-a-beginners-guide.aspx |
Create WebService From WSDL http://objectmix.com/csharp/119152-creating-web-service-wsdl-file.html http://www.thinktecture.com/resourcearchive/tools-and-software/wscf/wscf-walkthrough http://forums.asp.net/p/1313373/2598687.aspx http://forums.asp.net/p/1576711/3962009.aspx |
Wednesday, June 30, 2010
The Power of Saying "I Don't Know" - VerticalResponse
The leader then elaborates and you see a sign of quiet calm come over all of the people that now know what a TPS report is, because you asked. They wouldn’t risk looking like an idiot or risk showing a sign of weakness, but you actually showed a sign of strength.
In today's ultra competitive work environment, many people feel the need to be "super workers" and have an answer to every question. But, it's not always a good thing if you have people who work for you that are afraid to admit they don't know something, and it's the kind of behavior that can ultimately get you in trouble with potential clients.
I once worked with a guy who was a stereotypical Sales Shark! His problem? He sold whatever the prospect wanted, even if we didn’t have it. One particular prospect asked a ton of questions about our service and instead of saying "I don’t know if we can deliver that, I’ll check on it and get back to you," he said "Yes, we can do that." After closing and signing this pretty big deal, it turned out that the service that our new customer wanted wasn’t anything that we could deliver on. The customer wasn’t happy, which is the worst way to start a business relationship.
In another incident, I was recently on a conference call with someone who was trying to get our business. During the call, I asked this gentleman if he had seen the latest news on a company we were both tracking. He told me that he had, as I heard his fingers frantically scrambling on the keyboard for him to Google it and read it to me. Was I born yesterday? I don’t think so.
Why do people have to pretend to know everything? At my company, VerticalResponse, if we don’t know the answer to a question I encourage people to say, "I don’t know, but let me find out and get back to you with an answer." There is no value in dancing around something that isn’t true just to look good, because in the long run, if you’re wrong, you just look bad.
The Bottom Line: The Truth Doesn’t Hurt
I work in a male-dominated industry, so that’s probably the reason I see it happening with guys more than women. In any case, my opinion is those three little words are not any sign of weakness. Saying “I don’t know” is a sign of strength because it’s the most honest thing you can say.
It’s critical that your people/staff understand that they can actually earn respect by being confident in the fact that they aren’t expected to know every answer to every question. And your company can earn more business as a result.
The Power of Saying "I Don't Know" - VerticalResponse
Column by Janine Popick
February 11, 2010
Tuesday, June 29, 2010
WCF Security Articles
WCF over HTTPS - Christophe Geers
|
9 simple steps to enable X.509 certificates on WCF - CodeProject http://www.codeproject.com/KB/WCF/9StepsWCF.aspx?display=Print
|
Securing WCF Services with Certificates.- CodeProject http://www.codeproject.com/KB/WCF/wcf_certificates.aspx
|
How To Configure WCF Security Using Only X.509 Certificates - CodeProject http://www.codeproject.com/KB/webservices/WCFx509Security.aspx
|
WCF certificate authentication under Windows Vista - Windows Live http://romualdas.spaces.live.com/blog/cns!DCDC5E439E70339D!1006.entry?sa=894596551
|
Use Transport Security and Message Credentials - MSDN http://msdn.microsoft.com/en-us/library/ms789011.aspx |
|
WCF - 2 Way SSL Security using Certificates - Imaya's Blog http://blogs.msdn.com/b/imayak/archive/2008/09/12/wcf-2-way-ssl-security-using-certificates.aspx
|
Thoughts on BasicHttpBinding, Security and SSL - Sajay MSDN Blogs http://blogs.msdn.com/b/sajay/archive/2007/01/05/thoughts-on-basichttpbinding-security-and-ssl.aspx
|
Programming WCF Security - MSDN http://msdn.microsoft.com/en-us/library/ms731925.aspx |
Improving Web Services Security Guide - patterns & practices http://wcfsecurityguide.codeplex.com http://msdn.microsoft.com/en-us/library/ff648360.aspx
|
Certificate Authentication - MSDN Forum http://social.msdn.microsoft.com/forums/en-US/wcf/thread/4e12a513-ba7f-485d-93a7-2f093f1ccd8d |
Misc http://webservices20.blogspot.com/ http://wcfsecurity.codeplex.com/wikipage?title=How%20Tos |
Books
http://www.readprint.com/ |
Free online books library for students, teachers, and the classic enthusiast. |
http://webdesignledger.com/freebies/10-free-online-books-for-web-designers |
10 Free Online Books for Web Designers | Freebies |
http://www.infoq.com/resource/minibooks/domain-driven-design-quickly/en/pdf/DomainDrivenDesignQuicklyOnline.pdf |
7 Freely available E-Books/Guides I found essential for .NET Programmers and Architects http://amazedsaint.blogspot.com/2010/09/7-freely-available-e-booksguides-i.html |
Seth Godin: Validation is overrated
If you're waiting for a boss or an editor or a college to tell you that you do good work, you're handing over too much power to someone who doesn't care nearly as much as you do.
We spend a lot of time organizing and then waiting for the system to pick us, approve of us and give us permission to do our work.
Feedback is important, selling is important, getting the market to recognize your offering and make a sale--all important. But there's a difference between achieving your goals and realizing your work matters.
If you have a book to write, write it. If you want to record an album, record it. No need to wait for someone in a cubicle halfway across the country to decide if you're worthy.
http://sethgodin.typepad.com/seths_blog/2010/06/validation-might-be-overrated.html
Monday, June 28, 2010
Friday, June 25, 2010
Wednesday, June 23, 2010
IIS7: SSL Certificate binding issue
Problem
I recently tried installing a certificate into IIS7 on an new Windows 2008 server at work. The import went well but when I tried to bind a site to use the new certificate I got a dialog box with the following message
There was an error while performing this operation.
Details:
A specified logon session does not exist. It may already have been terminated. (Exception from HRESULT: 0x80070520)
Solution
You have to check the "Allow this certificate to be exported" box when you import the certificate file to certificate store
Source
http://blog.freakcode.com/2009/02/iis7-certificate-binding-issue.html
Tuesday, June 22, 2010
SSIS: Unable to execute web service task
Error Microsoft.SqlServer.Dts.Tasks.WebServiceTask.WebserviceTaskException: Could not generate the proxy for the specified Web service. The following errors were encountered while generating the proxy: Source file 'C:\Windows\TEMP\xyz.cs' could not be found . No inputs specified |
Solution Make sure that the account that the job is running under (the proxy account) has permissions to C:\Windows\TEMP. |
Source http://social.msdn.microsoft.com/Forums/en/sqlintegrationservices/thread/3249cb4e-00ea-419b-be90-d47394630673 |
WebDesign:: Icon Sources
Wednesday, June 16, 2010
C#:: Code Factory
Split string in equal sized chunks |
private IEnumerable<string> SplitIntoChunks(string text, int chunkSize) |
source: http://stackoverflow.com/questions/1632078/split-string-in-512-char-chunks-c |
Find the Date for the Start of the Week? |
public static class DateTimeExtensions |
source: http://stackoverflow.com/questions/38039/how-can-i-get-the-datetime-for-the-start-of-the-week |
Chained null checks and the Maybe monad - CodeProject |
OLD string postCode = null; |
NEW public static TResult With<TInput, TResult>(this TInput o, Func<TInput, TResult> evaluator) string postCode = this.With(x => person) |
source: http://www.codeproject.com/KB/cs/maybemonads.aspx |
C# Puzzlers http://streaming.ndc2010.no/tcs/?id=E915B78B-D9B7-4CE9-96DA-2B794391AD2F |