User alexmac - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T11:40:31Zhttp://stackoverflow.com/feeds/user/23066http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/181745/why-does-the-message-bc30560-mymoduleascx-is-ambiguous-in-the-namespace-asp0Why does the message BC30560 'mymodule_ascx' is ambiguous in the namespace 'ASP' come up sometimes then go away?alexmac2008-10-08T07:55:21Z2009-12-03T14:18:32Z
<p>Often when making changes to a VS2008 ASP.net project we get a message like:</p>
<p>BC30560: 'mymodule_ascx' is ambiguous in the namespace 'ASP'.</p>
<p>This goes away after a recompile or sometimes just waiting 10 seconds and refreshing the page. </p>
<p>Any way to get rid of it?</p>
http://stackoverflow.com/questions/144553/how-do-you-move-from-being-a-developer-to-team-leader17How do you move from being a developer to team leader?alexmac2008-09-27T21:50:11Z2009-07-28T14:01:48Z
<p>I have been programming for about 9 years and want to move into leading a small team. I have a good technical knowledge & qualifications, a number of successful projects and have decent interpersonal skills. </p>
<p>I like the comapny I work with and do not want to change jobs. Most other team leader jobs seem to want management experience anyway which creates a chicken and egg scenario.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/932137/whats-the-best-source-of-information-on-the-dlr-net-4-0-beta-1/932570#9325702Answer by alexmac for What's the best source of information on the DLR (.NET 4.0 beta 1)?alexmac2009-05-31T18:11:42Z2009-05-31T18:11:42Z<p>I too am researching this at the moment and there is not too much info yet. I cant help with your query but below is some information I have found: </p>
<p>There is a fair amount within the PDC videos.</p>
<p><a href="http://channel9.msdn.com/pdc2008/TL44/" rel="nofollow">http://channel9.msdn.com/pdc2008/TL44/</a></p>
<p><a href="http://channel9.msdn.com/pdc2008/TL10/" rel="nofollow">http://channel9.msdn.com/pdc2008/TL10/</a></p>
<p>This article talks about how the DLR works with IronPython:
<a href="http://msdn.microsoft.com/en-us/magazine/cc163344.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/magazine/cc163344.aspx</a></p>
<p>There is a very small amount in the training kit preview at: <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=752cb725-969b-4732-a383-ed5740f02e93&displayLang=en" rel="nofollow">http://www.microsoft.com/downloads/details.aspx?FamilyID=752cb725-969b-4732-a383-ed5740f02e93&displayLang=en</a></p>
<p>Hope this helps</p>
<p>Alex</p>
http://stackoverflow.com/questions/385841/does-it-help-to-use-ngen/923419#9234190Answer by alexmac for Does it help to use NGEN ?alexmac2009-05-28T21:59:19Z2009-05-28T21:59:19Z<p>I was looking into this tonight and came across the following:</p>
<p>The common language runtime cannot load images that you create with NGEN into the shared application domain. Because ASP.NET standard assemblies are shared and are then loaded into a shared application domain, you cannot use Ngen.exe to install them into the native image cache on the local computer.
<a href="http://support.microsoft.com/kb/331979" rel="nofollow">http://support.microsoft.com/kb/331979</a></p>
<p>Not sure if this just refers to assemblies referenced from ASP.net app or the app itself?</p>
http://stackoverflow.com/questions/916057/suggestion-needed-best-way-of-parsing-html-in-c/916088#916088-1Answer by alexmac for Suggestion Needed: Best way of parsing HTML in C#alexmac2009-05-27T14:40:07Z2009-05-27T14:40:07Z<p>Unless you are working with perfectly formed XHTML Regular expressions will be more suitable for parsing the html?</p>
<p>Watin allows you to script button clicks, script calls etc on a web page through IE (can it use other browsers not sure?). I dont think this will accomplish what you are looking for.</p>
http://stackoverflow.com/questions/915941/way-to-automatically-see-which-functions-can-potentially-return-exception-in-c/916032#9160321Answer by alexmac for Way to automatically see which functions can potentially return exception in c#alexmac2009-05-27T14:29:48Z2009-05-27T14:29:48Z<p>Any code could potentially cause an exception it is your job to try and anticipate this! </p>
<p>There are a number of third party tools that may assist with finding some common errors e.g fxcop and tools such as refactor can make suggestions.</p>
<p>There is some work been done at the moment that can assist you with finding potential exceptions. Take a look into PEX which can help generate tests for your functions: research.microsoft.com/en-us/projects/Pex/ (link seems to be down at time of posting)</p>
<p>Another exciting area is code contracts (coming in .net 4/available as spec#). Code contracts allow you to write statements that specify conditions that must be met. These can be prior to and after your function being called and you can also declare invariants. A condition might be something as simple as value != null. These conditions are then analyzed at compile and runtime to check no code paths violate them. </p>
http://stackoverflow.com/questions/894637/is-asp-net-mvc-a-step-backwards-in-some-ways/894899#8948990Answer by alexmac for Is ASP.NET MVC a step backwards in some ways?alexmac2009-05-21T20:14:19Z2009-05-21T20:14:19Z<p>ASP.net MVC is not for everyone or for every application (some may argue this through!). MVC is a framework you can use in its basic form or extend to your hearts content. It allows you full control over what is rendered to the user. </p>
<p>MVC has a number of advantages:</p>
<p>Seperation of concerns resulting in better testability, arguably better design and easier to modify UI </p>
<p>Full control over what is rendered - which can result in standards compliant, smaller, faster pages</p>
<p>Clearn SEO friendly URLs although ASP.net 4 has routing features</p>
<p>In its purest form without use of session load balances very well.</p>
<p>It also has some disadvantages:</p>
<p>Learning curve and change of thinking required</p>
<p>Lack of 3rd party support although this will change</p>
<p>Pages can look cluttered</p>
<p>Can be more difficult to develop certain types of controls e.g. something like a reorderable data grid or something with many steps like a wizard</p>
http://stackoverflow.com/questions/892713/how-is-working-in-the-healthcare-industry/893264#8932641Answer by alexmac for How is working in the healthcare industry?alexmac2009-05-21T14:39:16Z2009-05-21T14:39:16Z<p>I have worked in the health care industry for the past 4 years more on the clinical side than insurance. </p>
<p>Like any industry some projects can be really interesting and others not so much. It has been a bit of an eye opener for me seeing how hospitals operate. </p>
<p>I have worked on a number of insurance applications and have to admit I despise that side of my work! Insurance schemes can get extremely complex and tedious and just does not interest me at all. It can be a tricky problem to get right but the individual operations are pretty simple and of little interest. </p>
<p>Good points:</p>
<p>Your development can improve peoples lives (maybe more clinical side)
Healthcare can be an interesting domain and is useful to know more about
Probably fairly safe employment area as will always be important</p>
<p>Bad points</p>
<p>Your development <em>can</em> adversely affect peoples lives - it is a responsibility and a bug could have serious implications (although this is true of many software)</p>
<p>For obvious reasons there can be a fair amount of regulation and beaurcracy which can be tedious. </p>
<p>Perhaps not so relevant for you as you specify insurance but I am in the UK so sometimes work with free healthcare providers. This can be a bit mixed as some are short on resources</p>
http://stackoverflow.com/questions/204076/application-architecture-how-would-you-design-this-process2Application Architecture - How would you design this processalexmac2008-10-15T08:46:22Z2009-05-13T15:10:45Z
<p>I have an application that is made up of the following:</p>
<p>A central database containing 100k+ records
A number of "client" databases each containing around 10-20k records</p>
<p>The client databases contain details of contacts that each have a unique ID (contactID).<BR>
The central database contains some of these contacts identified by the same contactID.</p>
<p>Overnight we need to iterate through the client databases querying the central database for updates to each contact then bring it into the client database. <BR>
The central database is held by a third party so we cannot change anything. <BR>
The company holding the central database want to do this over web services iterating through each contact. <BR></p>
<p>My concerns are this would be very slow to do over web services given the number of records. </p>
<p>Currently I am thinking of generating a file on each client which contains a list of all the contacts for that client. This would then be sent to the central database. The central database would then process this file and send back another file containing all updates. </p>
<p>How would you create this so it runs as quick as possible?</p>
http://stackoverflow.com/questions/720228/why-are-vb-net-programmers-looked-down-upon/747307#7473070Answer by alexmac for Why are VB.net programmers looked down upon?alexmac2009-04-14T12:32:32Z2009-04-14T12:32:32Z<p>VB.net is not a bad language but it does encourage some bad habbits that C# is less tolerant of. There is also some snobbery involved. C#'s syntax is also more similar to well used existing languages such as Java and C++.</p>
<p>There is however little you can do in one language that you cannot accomplish in the other as they also compile down to the same intermediary language. </p>
<p>As Fish points out C# has some features VB does not. You could also argue the reverse that C# is missing some features VB has such as optional params and XML literals. </p>
<p>Microsoft have said that in future both C# and VB will co-evolve so this argument becomes weaker as most features will be available in both languages. Wikimedia covers some of these changes: <a href="http://en.wikipedia.org/wiki/C_Sharp_" rel="nofollow">http://en.wikipedia.org/wiki/C_Sharp_</a>(programming_language). There is also a Microsoft white paper detailing them which I cant find at the moment (sorry).</p>
<p>Overall through if you are going to learn one language learn C#. The syntax is cleaner, more examples are written c# and it seems to be more popular job wise and command higher salaries.</p>
http://stackoverflow.com/questions/327499/why-was-validate-request-taken-out-of-asp-net-mvc2Why was validate request taken out of ASP.net MVC?alexmac2008-11-29T12:45:13Z2009-04-02T08:31:28Z
<p>In standard ASP.net applications ASP.net offered some protection from XSS attacks with validateRequest throwing detect dangerous input errors if some one tried to. This functionality seems to have been taken out of MVC any idea why?</p>
<p>Thanks,</p>
<p>Alex</p>
http://stackoverflow.com/questions/195285/what-stupid-policies-affecting-developers-has-your-company-introduced28What stupid policies affecting developers has your company introduced?alexmac2008-10-12T09:42:51Z2009-03-29T02:41:35Z
<p>Recently my company has introduced a new policy that routes all incoming telephone calls into the development dept as well as everwhere else. </p>
<p>This seems crazy to me as:<BR>
There is noting worse than being interupted from a complex issue by some silly job agent cold calling<BR>
We are small but there is still a support team and receptionist<BR>
The ringing is distracting<BR></p>
<p>I wondered what other short sighted policies such as this you have seen introduced?</p>
http://stackoverflow.com/questions/197489/jquery-drag-and-drop-how-to-get-at-element-being-dragged2JQuery drag and drop - how to get at element being draggedalexmac2008-10-13T12:51:32Z2009-03-18T23:11:42Z
<p>Hi,
I am using the JQuery libs to implement drag and drop. </p>
<p>How do I get at the element that is being dragged when it is dropped?</p>
<p>I want to get the id of the image inside the div. The following element is dragged:</p>
<p>I have the standard dropped function from their example</p>
<pre><code>$(".drop").droppable({
accept: ".block",
activeClass: 'droppable-active',
hoverClass: 'droppable-hover',
drop: function(ev, ui) { }
});
</code></pre>
<p>I have tried various ui.id etc which doesnt seem to work. </p>
<p>Thanks,</p>
http://stackoverflow.com/questions/630805/alexandria-silverlight-3-features-list/630841#6308410Answer by alexmac for Alexandria/Silverlight 3 features list?alexmac2009-03-10T15:41:52Z2009-03-10T15:41:52Z<p>Most of the major/cool features are expected to be announced at Mix next week.</p>
<p>Channel 9 has video that lists some features at: <a href="http://channel9.msdn.com/shows/The+Knowledge+Chamber/Brad-Abrams-Silverlight-30-for-Great-Business-Apps/" rel="nofollow">http://channel9.msdn.com/shows/The+Knowledge+Chamber/Brad-Abrams-Silverlight-30-for-Great-Business-Apps/</a></p>
<p>There are some neat features including
New Web Navigation project type
Support for hooking into back/forward buttons and deep linking
Detail control
Enhancements to data grid</p>
<p>They are also expected to support more video formats.</p>
<p>Some cool stuff coming up now if only they could improve the tools to work with it! </p>
http://stackoverflow.com/questions/312412/what-advantages-does-using-oslo-and-m-have-and-when-would-you-use-it6What advantages does using Oslo and M have and when would you use it?alexmac2008-11-23T11:33:19Z2009-01-28T15:25:42Z
<p>After attending a talk on Oslo/M I am struggling a bit to see the advantages of using it over existing methods and in what situation it would be useful.</p>
<p>I know its quite new and not all details have been released etc but can some one give me some advantages and when you might use it?</p>
<p>Thanks,</p>
<p>Alex</p>
http://stackoverflow.com/questions/173496/code-syntax-formatter-for-posting-code-on-webpages2Code syntax formatter for posting code on webpagesalexmac2008-10-06T07:46:35Z2009-01-19T15:00:48Z
<p>Is there a utility that will generate html or css for blocks of code (.net c#) when you post it on a website? </p>
<p>I have seen several websites with very nicely formatted code and I dont believe they do this manually.</p>
<p>Thanks,</p>
<p>Alex</p>
http://stackoverflow.com/questions/438285/what-are-the-top-3-main-concepts-in-wpf/438333#4383331Answer by alexmac for What are the top 3 main concepts in WPF? alexmac2009-01-13T08:36:20Z2009-01-13T08:36:20Z<p>I duno about top 3 but Attached/Dependency properties is pretty important. </p>
http://stackoverflow.com/questions/359582/sql-reporting-serices-not-showing-anything-when-go-to-web-interface0sql reporting serices not showing anything when go to web interfacealexmac2008-12-11T14:44:06Z2009-01-07T12:06:59Z
<p>Hi,
A client has installed Sql server 2005 reporting services. When we go to the web bit at <a href="http://servername/reports/" rel="nofollow">http://servername/reports/</a> we just see a blank screen like:
<a href="http://img91.imageshack.us/img91/3787/rsblankqx4.jpg" rel="nofollow">http://img91.imageshack.us/img91/3787/rsblankqx4.jpg</a></p>
<p>We are using windows authentication and I think it has authenticated us as the "site settings" button is appearing and we can alter site security, add to roles etc. </p>
<p>I have had this before and cant remember how I fixed it. </p>
<p>Any ideas?</p>
<p>Thanks,</p>
<p>Alex</p>
http://stackoverflow.com/questions/359582/sql-reporting-serices-not-showing-anything-when-go-to-web-interface/420062#4200620Answer by alexmac for sql reporting serices not showing anything when go to web interfacealexmac2009-01-07T12:06:59Z2009-01-07T12:06:59Z<p>Client reinstalled and this then worked fine. Must have become corrupted in some way.</p>
http://stackoverflow.com/questions/367730/how-to-change-xml-value-file-using-c/367772#3677722Answer by alexmac for how to change xml value file using c#alexmac2008-12-15T08:31:31Z2008-12-15T08:31:31Z<p>Using LINQ to xml if you are using framework 3.5:</p>
<p>using System.Xml.Linq;</p>
<p>XDocument xmlFile = XDocument.Load("books.xml"); </p>
<p>var query = from c in xmlFile.Elements("catalog").Elements("book")</p>
<p>select c; </p>
<p>foreach (XElement book in query) </p>
<p>{</p>
<p>book.Attribute("attr1").Value = "MyNewValue";</p>
<p>}</p>
<p>xmlFile.Save("books.xml");</p>
http://stackoverflow.com/questions/367707/thoughts-about-using-silverlight-in-desktop-apps/367755#3677553Answer by alexmac for Thoughts about using Silverlight In Desktop Apps?alexmac2008-12-15T08:20:19Z2008-12-15T08:20:19Z<p>Is a full WPF application not an option for your situation? </p>
<p>As you probably know Silverlight uses a subset of WPF so you may be able to change your application relatively easy. </p>
<p>A wpf app would be easier than having a web server etc bundled within your application. </p>
<p>You wont in the foreseeable future be able to have access to resources such as printer and files (apart from isolated storage) through Silverlight as you know. </p>
<p>You could have a seperate part of your app to upload files to the webserver then read these in your silverlight app from a service.</p>
<p>Depending on your printing requirements (e.g. if you just want to send everything to an office printer) you could send the informaton you wanted printed to a service that will then print it for you. However I am guessing you want each client machine to be able to print in which case this wont work for you.</p>
http://stackoverflow.com/questions/267215/to-azure-or-not-to-azure/357849#35784910Answer by alexmac for To Azure or Not to Azure?alexmac2008-12-10T22:34:11Z2008-12-10T22:34:11Z<p>I have played with the Azure beta and worked my way through the sdk examples they provide. It looks very promising and performance is good. Some of the web management console looks a bit ropey still.</p>
<p>Scalability - sure thats one of the driving reasons for cloud apps</p>
<p>Ease of writing code - Well its all .net but you will obviously need to modify it to use Azures capabilities. Azure projects have an extra description file that describes the project when you deploy it.</p>
<p>Reliablity
Who knows until this is put to the test. A number of companies are already using it as announced in PDC. Microsoft obviously have the resources to ensure reliability and make this a successful platform. Additionally I would expect Azure to integrate better with .net and visual studio than the solutions from Amazon and Google.</p>
<p>Backup</p>
<p>I havent seen any specific backup facilities although part of the benefit in hosting it in the cloud is Microsoft are looking after it so this may be implicit. </p>
<p>Scheduled tasks</p>
<p>You can host workflow instances in the cloud which may take care of your scheduled tasks requirement. You could also create another component which called the service bus to initiate tasks. </p>
<p>The main problems with Azure at the moment for me are:</p>
<p>Microsoft have not announced pricing yet</p>
<p>As with any cloud platform legal issues with moving data about</p>
<p>I suggest you sign up for the beta and go through the examples as they will answer some of your questions.</p>
<p>I wrote a little post about my experiences with it:
<a href="http://www.simpleisbest.co.uk/Blog/BlogEntryDetail/Azurefirstlook?id=60" rel="nofollow">http://www.simpleisbest.co.uk/Blog/BlogEntryDetail/Azurefirstlook?id=60</a></p>
http://stackoverflow.com/questions/355477/in-silverlight-why-are-some-properties-prefixed-with-x-e-g-xname-and-some-are-no1In Silverlight why are some properties prefixed with x e.g x:name and some are not?alexmac2008-12-10T09:09:11Z2008-12-10T10:32:41Z
<p>In Silverlight (and I guess WPF) why are the properties x:name x:fieldmodifier x:uid the only ones with the prefix x. </p>
<p>I understand the x prefix is used to refer to the XML namespace but there are a number of other properties that do not use a prefix such as width. Identifying a control is such a common task it seems odd to require a prefix?</p>
http://stackoverflow.com/questions/349150/how-long-before-asp-net-mvc-becomes-widely-used-in-industry/349242#3492420Answer by alexmac for How long before ASP.NET MVC becomes widely used in industry?alexmac2008-12-08T11:25:24Z2008-12-08T11:25:24Z<p>I think both options will be around for a long time. </p>
<p>The current trend seems to be towards RESTful applications etc and I expect MVC to gain in popularlity. However some projects are more suited for the existing webforms style whilst others will greatly benefit from MVC.</p>
<p>MVC is great and to learn the basics is not going to take long. Go through the tutorials on Scott Guthries blog (although some of the early stuff is out of date and syntax has changes)</p>
<p>MVC does have some disadvantages:</p>
<p>MVC does not use viewstate. This has positive (smaller pages, faster, cleaner model) and negative points. Although not impossible it is trickier to develop items such as controls that need to maintain state e.g. a paging datagrid etc </p>
<p>Many companies already have an investment in existing webforms technologies</p>
http://stackoverflow.com/questions/312412/what-advantages-does-using-oslo-and-m-have-and-when-would-you-use-it/315818#3158180Answer by alexmac for What advantages does using Oslo and M have and when would you use it?alexmac2008-11-24T23:07:00Z2008-11-24T23:07:00Z<p>Thinking about this a bit more and after reading the articles posted by Qdoom and RoadWarrior I can see Oslo aiding sharing,</p>
<p>Okay you can share a model with something like xml & xsd but Oslo could make it easier as it looks like you can generate classes and your database from them whilst storing the model in a central repository.</p>
<p>Perhaps later on people will sell models for common scenarios as well.</p>
http://stackoverflow.com/questions/310226/should-net-assembly-names-include-a-version-number/310235#3102350Answer by alexmac for Should .NET Assembly names include a version number?alexmac2008-11-21T21:23:33Z2008-11-21T21:23:33Z<p>The version information can be contained in assemblyInfo file and can then be queried via reflection etc.</p>
<p>Some vendors include the version number in the name to make it easier to see at a glance what it is. The Microsoft dll names dont contain a version number in framework directory.</p>
http://stackoverflow.com/questions/301201/whats-the-best-operating-system-for-a-microsoft-developer/301411#3014110Answer by alexmac for What's the best operating system for a Microsoft developer?alexmac2008-11-19T09:47:48Z2008-11-19T09:47:48Z<p>I use XP pro and Vista Ultimate. Vista seems fine to me if you turn off uac although I know a number of developers that develop with it on. There was something that came out recently (might have been a card space preview but not sure?) that would only run on vista. </p>
<p>There is a difference about how some framework elements will work in XP and vista. For example some code to write to an event log will work fine in XP but in Vista will not unless you set up the permissions correctly to create the event source etc. At first this irritated me that it didnt function the same but then if you think about it why should an application not need permission to write to event log. </p>
<p>Although MS have been "fairly" good with supporting XP etc (apart from the example above I cant think of something that doesnt work on both) but it seeems likely that if you want to develop with some of the newer features then you will need a newer OS. XP is a good os and I dont want to start a vista bashing session but XP is now about 8 years old.</p>
http://stackoverflow.com/questions/290137/graduate-scheme-for-uk-cs-student/290556#2905560Answer by alexmac for Graduate scheme for UK CS Studentalexmac2008-11-14T16:01:05Z2008-11-14T16:01:05Z<p>I am based in the UK and always use jobserve.co.uk when I have been jobhunting in the past.</p>
<p>You may also want to look at <a href="http://www.prospects.ac.uk/" rel="nofollow">http://www.prospects.ac.uk/</a> as this maintains lists of graduate jobs. </p>
http://stackoverflow.com/questions/177953/webdav-windows-server-2008-not-allowing-doc-files-to-save0Webdav windows server 2008 not allowing doc files to savealexmac2008-10-07T11:01:40Z2008-11-14T04:15:13Z
<p>Hi,
I have setup web dav on windows server 2008. It seems to work fine but will not allow me to save a word document to the dir but it will allow a text file to be saved. Any ideas?</p>
<p>Thanks,</p>
<p>Alex</p>
http://stackoverflow.com/questions/286750/how-to-add-cardspace-support-to-your-asp-net-application/286805#2868052Answer by alexmac for How to add CardSpace support to your ASP.NET applicationalexmac2008-11-13T10:56:27Z2008-11-13T10:56:27Z<p>For card space take a look at the open source library SharpSTS a https://sharpsts.com/</p>
<p>They also have links to a number of card space resources that might help you get started at: https://sharpsts.com/resources.aspx </p>
http://stackoverflow.com/questions/46047/need-advice-on-getting-a-job-in-a-foreign-country/1205549#1205549Comment by alexmac on Need advice on getting a job in a foreign countryalexmac2009-07-30T09:56:38Z2009-07-30T09:56:38Z"melodious songs"?!http://stackoverflow.com/questions/385841/does-it-help-to-use-ngen/923419#923419Comment by alexmac on Does it help to use NGEN ?alexmac2009-06-02T10:01:10Z2009-06-02T10:01:10ZCool I didnt realise that thanks! http://stackoverflow.com/questions/916057/suggestion-needed-best-way-of-parsing-html-in-c/916088#916088Comment by alexmac on Suggestion Needed: Best way of parsing HTML in C#alexmac2009-05-27T14:52:56Z2009-05-27T14:52:56ZSo how is "XMLizing" the markup going to assist with malformed HTML? However I agree HTML agility pack is probably what he/she is looking for - which probably uses regular expressions at some point ;)http://stackoverflow.com/questions/916057/suggestion-needed-best-way-of-parsing-html-in-c/916088#916088Comment by alexmac on Suggestion Needed: Best way of parsing HTML in C#alexmac2009-05-27T14:46:21Z2009-05-27T14:46:21ZNo but I suspect many third party libs utilize them in conjunction with standard string manipulation to process the html and either way regex is superior to the flexibility offered by XML queries.http://stackoverflow.com/questions/423823/whats-your-favorite-programmer-ignorance-pet-peeve/423861#423861Comment by alexmac on What's your favorite "programmer ignorance" pet peeve?alexmac2009-01-08T11:16:05Z2009-01-08T11:16:05Zyeah cant understand it there is always more to learnhttp://stackoverflow.com/questions/18120/best-programming-books-in-2008/418046#418046Comment by alexmac on Best Programming Books in 2008alexmac2009-01-07T12:02:19Z2009-01-07T12:02:19Zread that a few weeks ago. Gladwell is good to read but I doubt that some of his suggestions would stand up to detailed examination and testing. http://stackoverflow.com/questions/18120/best-programming-books-in-2008/418459#418459Comment by alexmac on Best Programming Books in 2008alexmac2009-01-07T12:00:00Z2009-01-07T12:00:00ZThats a very good bookhttp://stackoverflow.com/questions/395292/what-potential-do-you-see-in-silverlight/395396#395396Comment by alexmac on What potential do you see in Silverlight?alexmac2008-12-28T00:35:29Z2008-12-28T00:35:29ZDoes actionscript really come close to c# or vb? I dont know because I havent used it but I bet it doesnt have the same functionality or nice idehttp://stackoverflow.com/questions/362151/how-many-c-vs-vb-developers-are-out-there/362339#362339Comment by alexmac on How many C# vs. VB developers are out there?alexmac2008-12-12T14:49:36Z2008-12-12T14:49:36Zyep same here. A software house that grew from access to .net I prefer c#http://stackoverflow.com/questions/359582/sql-reporting-serices-not-showing-anything-when-go-to-web-interface/359661#359661Comment by alexmac on sql reporting serices not showing anything when go to web interfacealexmac2008-12-11T15:24:56Z2008-12-11T15:24:56ZIts a new installation so there are no existing reports but there is not the option to create anything either. It is missing the tool bar with the new folder, new data source optionshttp://stackoverflow.com/questions/267215/to-azure-or-not-to-azureComment by alexmac on To Azure or Not to Azure?alexmac2008-12-11T08:12:06Z2008-12-11T08:12:06ZA fair point but it doesnt harm to deploy on a platform that is initially inexpessive and that is easily expandable should this become an issuehttp://stackoverflow.com/questions/355477/in-silverlight-why-are-some-properties-prefixed-with-x-e-g-xname-and-some-are-no/355634#355634Comment by alexmac on In Silverlight why are some properties prefixed with x e.g x:name and some are not?alexmac2008-12-10T10:37:12Z2008-12-10T10:37:12ZYep I agree, I think this is probably the reason it is done this wayhttp://stackoverflow.com/questions/355477/in-silverlight-why-are-some-properties-prefixed-with-x-e-g-xname-and-some-are-no/355503#355503Comment by alexmac on In Silverlight why are some properties prefixed with x e.g x:name and some are not?alexmac2008-12-10T10:30:53Z2008-12-10T10:30:53ZIt just seems odd that a commonly used thing like the name property couldnt be part of whichever namespace all the other properties are in? I guess this is probably to keep it seperate from the presentation and xaml namespaces so it could be used for other thingshttp://stackoverflow.com/questions/355477/in-silverlight-why-are-some-properties-prefixed-with-x-e-g-xname-and-some-are-no/355503#355503Comment by alexmac on In Silverlight why are some properties prefixed with x e.g x:name and some are not?alexmac2008-12-10T09:37:36Z2008-12-10T09:37:36ZThanks but I understand that. Why not have x:name in one of the root namespaces so it doesnt need a prefix?http://stackoverflow.com/questions/355460/what-problems-could-be-solved-using-genetic-programming/355494#355494Comment by alexmac on What problems could be solved using Genetic Programming?alexmac2008-12-10T09:34:51Z2008-12-10T09:34:51ZVery cool animation