Home
Archive
Contact
Search results for 'Mobile casino app (ph365.mx)Mobile casino app (ph365.mx)'
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
Unit Testing with Silverlight 2
"It doesn't appear there is any VS IDE integrated support for running SL unit tests but there is a browser-based unit testrunner, To get the correct templates follow this straightforward ..."
Type
: Post
http://dontcodetired.com/blog/post/Unit-Testing-with-Silverlight-2
ICYMI C# 9 New Features: Adding foreach Support To Any Type
This is part of a series of articles on new features introduced in C# 9. Prior to C# 9 you could add
Type
: Post
Tags
: icymcs9series, c#, .net, .net core, C#9
http://dontcodetired.com/blog/post/ICYMI-C-9-New-Features-Adding-foreach-Support-To-Any-Type
New Course Update: Working with Files and Streams in C#
An newly updated version of my Working with Files and Streams in C# video training course is now ava
Type
: Post
Tags
: C#, .net
http://dontcodetired.com/blog/post/New-Course-Update-Working-with-Files-and-Streams-in-C
SilverKeys on Microsoft's Silverlight showcase
"SilverKeys has been featured on Microsoft's Silverlight showcase site. Currently has avg user rating of 4.5/5 which I'm really happy with :)"
Type
: Post
Tags
: silverkeys, silverlight, xaml, wpf, microsoft
http://dontcodetired.com/blog/post/SilverKeys-on-Microsofts-Silverlight-showcase
JavaScript Breakpoints Not Working In Visual Studio 2008
"This can happen, sometimes fixed by re-installing VS or installing VS 2008 SP1. In this case it seems Javascript breakpoints do not seem to work in Visual Studio 2008 when Silverlight debugging is ena ..."
Type
: Post
Tags
: .net, asp.net, html, ide, silverlight, silverlight 3, visual studio, visual studio 2008
http://dontcodetired.com/blog/post/JavaScript-Breakpoints-Not-Working-In-Visual-Studio-2008
Changing background image on element with jQuery when using ASP.NET master pages
"If you have an ASP.NET master page defined as below which specifies a css class for the body element to generate a background image for the whole page, you might want to override the default backgroun ..."
Type
: Post
Tags
: asp.net, jquery, html, css, javascript
http://dontcodetired.com/blog/post/Changing-background-image-on-3cbody3e-element-with-jQuery-when-using-ASPNET-master-pages
Maintaining Basic State With jQuery And CSS
"When working on the client, you may have a number of HTML elements that have some form of logical state, e.g. coins (heads/tails), cards (face up/down), importance (high, medium, low), etc. You c ..."
Type
: Post
Tags
: asp.net, html, jquery, css, javascript
http://dontcodetired.com/blog/post/Maintaining-Basic-State-With-jQuery-And-CSS
Exception Handling in C# Course Update
An updated version of my Exception Handling in C# course is now available that updates demos to to u
Type
: Post
Tags
: C#, pluralsight courses, profession, personal development
http://dontcodetired.com/blog/post/Exception-Handling-in-C-Course-Update
ICYMI C# 8 New Features: Upgrade Interfaces Without Breaking Existing Code
This is part 7 in a series of articles. Prior to C# 8, if you add members to an interface, exiting c
Type
: Post
Tags
: icymcs8series, c#, .net, .net core, C#8
http://dontcodetired.com/blog/post/ICYMI-C-8-New-Features-Upgrade-Interfaces-Without-Breaking-Existing-Code
ICYMI C# 8 New Features: Prevent Bugs with Static Local Functions
This is part 6 in a series of articles. C# 7 introduced local functions that allow you to create fun
Type
: Post
Tags
: icymcs8series, C#, .net, .net core, C#8
http://dontcodetired.com/blog/post/ICYMI-C-8-New-Features-Prevent-Bugs-with-Static-Local-Functions
Silverlight 3 - Detecting Network Availability
"One of the new SL3 features is the ability to test if there is a network connection currently active. This complements the out of browser experience by letting an app use local (isolated) storage when ..."
Type
: Post
Tags
: silverlight, silverlight 3, wpf, c#, oob, out of browser, sloob
http://dontcodetired.com/blog/post/Silverlight-3-Detecting-Network-Availability
ICYMI C# 8 New Features: Switch Expressions
In the first part of this series on what was introduced in C# 8, we’re going to take a look at
Type
: Post
Tags
: icymcs8series, C#, .net, .net core, C#8
http://dontcodetired.com/blog/post/ICYMI-C-8-New-Features-Switch-Expressions
Goodbye 2020, Hello 2030
"It has felt like a looong year. We have been relatively lucky here in Australia and especially so in Western Australia. We still went through the toilet paper panic, the handwash shortages, and the tr ..."
Type
: Post
Tags
: personal development
http://dontcodetired.com/blog/post/Goodbye-2020-Hello-2030
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
New Pluralsight Course: Feature Flag Fundamentals with Microsoft Feature Management
My latest Pluralsight video training course was just published just in time for some holiday season
Type
: Post
Tags
: .net, msftseries, FeatureManagement, featuretoggle, c#, software development, productivity
http://dontcodetired.com/blog/post/New-Pluralsight-Course-Feature-Flag-Fundamentals-with-Microsoft-Feature-Management
Determine if code is currently running in Blend
"You can use IsInDesignTool to change behaviour of code if it is running in a designer (Blend), e.g. if (System.ComponentModel.DesignerProperties.IsInDesignTool) // code ..."
Type
: Post
Tags
: c#, silverlight, silverlight 3, xaml, blend
http://dontcodetired.com/blog/post/Determine-if-code-is-currently-running-in-Blend
Understanding Lambda Expressions
Of all the additions to the C# language, lambda expressions are potentially the most confusing. Part
Type
: Post
Tags
: c#, lambda expressions, .net
http://dontcodetired.com/blog/post/Understanding-Lambda-Expressions
Controlling HTML IDs in ASP.NET 4.0 Webforms
"ASP.NET 4 introduces more control over how client-side IDs are rendered by ASP.NET controls. By default ASP.NET 4 will render client IDs in the same way as ASP.NET 3.5 and earlier. To change the ..."
Type
: Post
Tags
: .net, asp.net, asp.net 4, databinding, html, web
http://dontcodetired.com/blog/post/Controlling-HTML-IDs-in-ASPNET-40-Webforms
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20