Search results for 'Investment sa sugal(ph365.mx)'

Enterprise Library Application Block Logging "The Enterprise Library Application Block has been recently released, as a user of the existing Logging Application Block (LAB) with cross web service request tracing it is a little disappointing to se ..." Type: Post http://dontcodetired.com/blog/post/Enterprise-Library-Application-Block-Logging
The PCMEF architectural Framework "The general idea behind PCMEF (Presentation Control Mediator Entity Foundation) is that of dependency and object intercommunication minimisation. PCMEF takes inspiration from established design patter ..." Type: Post http://dontcodetired.com/blog/post/The-PCMEF-architectural-Framework
location.replace doesn’t work when the following page is a PDF "Applies to:IE 6.0 (+others?), ASP.NET 1.1, JavaScript, PDF, Adobe Acrobat For some reason (at least in IE 6.0) if you use location.replace (to’disable’ back button by changing browser his ..." Type: Post http://dontcodetired.com/blog/post/locationreplace-doesne28099t-work-when-the-following-page-is-a-PDF
What’s New in C# 10: Simplify Argument Null Checking Code "This is part of a series on the new features introduced with C# 10.Prior to C# 10 you may have had code similar to the following: public static string Join(string a, string b) { i ..." Type: Post
Tags : cs10newseries, c#, .net, .net core, C#10
http://dontcodetired.com/blog/post/Whats-New-in-C-10-Simplify-Argument-Null-Checking-Code
Generating truly random numbers with multiple simultaneous request "The Random Class, given a constant seed will always generate the samesequence of numbers.Creating a Random object using the default constructor uses the current timeas the seed, so if you have multipl ..." Type: Post http://dontcodetired.com/blog/post/Generating-truly-random-numbers-with-multiple-simultaneous-request
Importing posts from Blogger into BlogEngine.NET "Just managed to successfully get my posts from Blogger into DCT. Read a post suggesting using a new temp WordPress blog which can import directly from Blogger. Then export, then use the Import to ..." Type: Post http://dontcodetired.com/blog/post/Importing-posts-from-Blogger-into-BlogEngineNET
A Silverlight Scale Chord Calculator (SilverKeys Part 1) "One hobby I have is music production (based around a Pro Tools LE 8 setup) and recently I've been learning some music theory. I have created a cheat sheet which is on my wall to assist with workin ..." Type: Post
Tags : silverlight, silverkeys
http://dontcodetired.com/blog/post/A-Silverlight-Scale-Chord-Calculator-(SilverKeys)
Auto Expanding Div Columns (when floated div has no set size) "Usually 2 divs side-by-side (e.g. left menu and main content) will have the left div floated left with set size, the 2nd div also float with a left margin equal to the width of the left div. When ..." Type: Post
Tags : css, html, web
http://dontcodetired.com/blog/post/Auto-Expanding-Div-Columns-(when-floated-div-has-no-set-size)
System.Windows.Markup.XamlParseException when using Tag property in Silverlight "Although MSDN says you can use the FrameworkElement.Tag Property to store an arbitary object, if you try to store anything other than a string you get a System.Windows.Markup.XamlParseException. It se ..." Type: Post
Tags : silverlight, wpf
http://dontcodetired.com/blog/post/SystemWindowsMarkupXamlParseException-when-using-Tag-property-in-Silverlight
Multiple Platform Targeting in Visual Studio 2017 Suppose you are creating a library that has a central set of features and also additional features t Type: Post
Tags : C#, .net, .net core
http://dontcodetired.com/blog/post/Multiple-Platform-Targeting-in-Visual-Studio-2017
A Bouncing Ball Animation in jQuery "Out of the box and without plug-ins, you can animate elements with basic jQuery. You can view a live example of the following code which animates the position of a "ball" up and down. T ..." Type: Post
Tags : jquery, html
http://dontcodetired.com/blog/post/A-Bouncing-Ball-Animation-in-jQuery
Grouping and Filtering Tests in Visual Studio Test Explorer One way to run automated tests is to use Visual Studio’s Test Explorer. Test Explorer can be f Type: Post
Tags : testing, qa, visual studio, tools
http://dontcodetired.com/blog/post/Grouping-and-Filtering-Tests-in-Visual-Studio-Test-Explorer
Running Silverlight 3 Application Out Of Browser "This is pleasantly simple to do :) In response to a user action (clicking a button, etc.) add the following code: Application.Current.Install(); e.g. private void Button_Click_1(object sende ..." Type: Post
Tags : silverlight, silverlight 3, c#, oob, out of browser
http://dontcodetired.com/blog/post/Running-Silverlight-3-Application-Out-Of-Browser
Quickly Take Down an ASP.NET Web Site "If you need to temporarily take down an ASP.NET (2.0+) web site you can simply add a file called app_offline.htm to the root of the site. The content of the app_offline.htm could contain a message suc ..." Type: Post
Tags : asp.net, html, site management, maintenance
http://dontcodetired.com/blog/post/Quickly-Take-Down-an-ASPNET-Web-Site
Thunder (beta) "I've been working on a Silverlight 3 drum machine/sequencer called Thunder, the first (beta) version is now available at: http://www.dontcodetired.com/live/thunder/   It' ..." Type: Post
Tags : c#, blend, silverlight, silverlight 3, wpf, xaml, thunder
http://dontcodetired.com/blog/post/Thunder-(beta)
Free Xaml drawing tool "I stumbled upon a nice (free) open source drawing application (a la Adobe Illustrator) which allows saving in SVG but also XAML! So if you don't want to/cannot afford to use Blend this could be a ..." Type: Post
Tags : .net, xaml, wpf, silverlight, silverlight 3, blend
http://dontcodetired.com/blog/post/Free-Xaml-drawing-tool
Free .NET Testing Courses This Month This month all my Pluralsight courses are available for free including a lot of .NET testing content Type: Post
Tags : C#, pluralsight courses, profession, personal development, .net, .net core
http://dontcodetired.com/blog/post/Free-NET-Testing-Courses
Cleaner Code in Unit Tests One thing that can quickly become messy when writing unit tests is the creation of test objects. If Type: Post
Tags : .net, c#, tdd, testing
http://dontcodetired.com/blog/post/Cleaner-Code-in-Unit-Tests
FeatureToggle v4 Released "Version 4 of FeatureToggle is now released. This release adds initial support for .NET Core. Example code. Release notes. Breaking Changes: Min framework now 4.6.1 / .NET Standard 1.4 Windows 8.n, ..." Type: Post
Tags : featuretoggle, open source, .net, .net core
http://dontcodetired.com/blog/post/FeatureToggle-v4-Released
Quick and Dirty Image Loading Animation Without JavaScript "If you are display a set of images that potentially will take a while to be returned from the server (for example if pulling them out of a database via an .axd or .ashx) you can use css to to display ..." Type: Post
Tags : css, html, web
http://dontcodetired.com/blog/post/Quick-and-Dirty-Image-Loading-Animation-Without-JavaScript