Home
Archive
Contact
Search results for 'MALAYSIA 4D, [OFFICIAL | winbox-login.com] , MALAYSIA 4D, FREE 10, [OFFICIAL | winbox-login.com] cE'
Brownfield Application Development (Part 1) - Managing Motivation and Energy
"Normal 0 false false false EN-US X-NONE X-NONE ..."
Type
: Post
Tags
: brownfield application development
http://dontcodetired.com/blog/post/Brownfield-Application-Development-(Part-1)-Managing-Motivation-and-Energy
Using Sass Maps to Save Time in CSS
Sass is a superset of CSS that “compiles” down to regular CSS usable by any browser. It
Type
: Post
Tags
: css, sass, web, html
http://dontcodetired.com/blog/post/Using-Sass-Maps-to-Save-Time-in-CSS
Debugging Share To and Background Agents in Windows Store Apps
"When your main app is running via Visual Studio, when there is a problem you’ll get an exception and Visual Studio will break into the debugger to help you figure out the problem. There’s a couple of ..."
Type
: Post
Tags
: windows store apps, visual studio, debugging
http://dontcodetired.com/blog/post/Debugging-Share-To-and-Background-Agents-in-Windows-Store-Apps
Testing Responsive Web Designs and Layout
"CSS3 Media Queries enable us to have different layouts and show/hide content based on the width of the browser or device the page is being displayed on. Typically you will have a number of Respon ..."
Type
: Post
Tags
: web design, responsive web design, responsive design, web, web design, design
http://dontcodetired.com/blog/post/Testing-Responsive-Web-Designs-and-Layout
Reducing Database Round Trips With Included Documents in Marten
Marten is a .NET document database library that uses an underlying PostgreSQL database to store obje
Type
: Post
Tags
: c#, .net, data, marten, nosql
http://dontcodetired.com/blog/post/Reducing-Database-Round-Trips-With-Included-Documents-in-Marten
Portable Class Library (PCL) Timer when Targeting Both Windows 8 and Windows Phone using Reactive Extensions
"Currently the Timer class is not available when targeting both Windows Phone 8 and Windows 8 Store Apps. For the app I’m building I want the MVVMLight PCL ViewModel to update a property every second – ..."
Type
: Post
Tags
: c#, pcl, rx, reactive extensions, windows store apps, windows phone apps, windows 8 apps
http://dontcodetired.com/blog/post/Portable-Class-Library-(PCL)-Timer-when-Targeting-Both-Windows-8-and-Windows-Phone-using-Reactive-Extensions
C# Tips eBook Complete
I’m pleased to announce that my C# Tips eBook is now complete and currently has over 1,000 rea
Type
: Post
Tags
: writing, c# tips, c#
http://dontcodetired.com/blog/post/C-Tips-eBook-Complete
Working with Files in C# 10 Course
"My latest Pluralsight training course was just published and is an update from the previous version to now use .NET 6 and C# 10.“Reading and writing data is central to many .NET applications, but it c ..."
Type
: Post
Tags
: pluralsight courses, .net, C#, C#10
http://dontcodetired.com/blog/post/Working-with-Files-in-C-10-Course
Retrieving Raw JSON Data in Web API with Marten
Marten is a .NET document database library that uses an underlying PostgreSQL database to store obje
Type
: Post
Tags
: c#, .net, data, marten, nosql
http://dontcodetired.com/blog/post/Retrieving-Raw-JSON-Data-in-Web-API-with-Marten
An Open Letter to Scott Hanselman
"Hi Scott, My name’s Jason, you don’t know me, we’ve never met. I was inspired by your honesty and openness when talking about your experience with cancer to say the following: Thanks. I don’t think th ..."
Type
: Post
Tags
: kindness, meanness, human, people
http://dontcodetired.com/blog/post/An-Open-Letter-to-Scott-Hanselman
Albums to Code To
"I did a little survey to ask what people’s favourite albums were to code to, here’s the results. Hopefully will give some ideas for some different aural code fuel. Artist name Album name Amon A ..."
Type
: Post
Tags
: people, profession
http://dontcodetired.com/blog/post/Albums-to-Code-To
Design Pattern for Silverlight 2
"It seems the Model-View-ViewModel (MVVM) is the preferred pattern at present for implementing cleanly separated SL apps (& WPF client apps). Aims to increase testability and leverage data-bin ..."
Type
: Post
Tags
: silverlight, design patterns, mvvm
http://dontcodetired.com/blog/post/Design-Pattern-for-Silverlight-2
Introduction To Extension Methods in C#
Extension methods allow you to extend the functionality of an existing class without using inheritan
Type
: Post
Tags
: c#, extension methods
http://dontcodetired.com/blog/post/Introduction-To-Extension-Methods-in-C
Designing Windows 8 Apps Course
"It is with much excitement that my first ever Pluralsight course on Designing Windows 8 apps has just been released. The course leads you through the process of capturing and evaluating ideas, choosin ..."
Type
: Post
Tags
: windows 8 apps, windows 8, winrt, design, ui, ui design, ux, user experience, microsoft design language
http://dontcodetired.com/blog/post/Designing-Windows-8-Apps-Course
Introducing JS Name-O-Tron – Find a Name for Your JavaScript Library
"As a Microsoft MVP I get free Azure credits to use every month, so I thought I’d better start making use of them :) JS Name-O-Tron is the first web site I’ve deployed to Azure and I’m pleased to say ..."
Type
: Post
Tags
: azure, asp.net mvc, asp.net, web, bootstrap, .net
http://dontcodetired.com/blog/post/Introducing-JS-Name-O-Tron-e28093-Find-a-Name-for-Your-JavaScript-Library
Configuring Queue Names and Blob Path Bindings in Azure Functions Configuration
When working with Azure Functions in C# (specifically Azure Functions V2 in this article) you can sp
Type
: Post
Tags
: azure, azure functions, C#, serverless
http://dontcodetired.com/blog/post/Configuring-Queue-Names-and-Blob-Path-Bindings-in-Azure-Functions-Configuration
Writing Azure Cosmos DB Data from Azure Functions
This is the third part in a series of articles. In part 2 of this series we saw how to read data fro
Type
: Post
Tags
: c#, .net, .net core, Azure, azure functions, cosmosdb, cosmosfuncseries
http://dontcodetired.com/blog/post/Writing-Azure-Cosmos-DB-Data-from-Azure-Functions
FeatureToggle v3.3 Released
"FeatureToggle is an open source feature toggling library for .NET.Version 3.3 was just released to NuGet and includes two minor new features as described below.FallbackValueDecoratorThe FallbackValueD ..."
Type
: Post
Tags
: featuretoggle, open source, .net
http://dontcodetired.com/blog/post/FeatureToggle-v33-Released
Testing Events Using Rhino Mocks
"There are possible more 'elegant' methods for the below but these are fairly well understandable by someone new to Rhino Mocks or mocking in general. Testing Event Subscription Sometime ..."
Type
: Post
Tags
: .net, c#, lambda expressions, tdd, testing, rhino mocks, mocking
http://dontcodetired.com/blog/post/Testing-Events-Using-Rhino-Mocks
Creating Versioned APIs with Azure Functions and Proxies
One of the interesting possibilities with the (currently in preview) Azure Function Proxies is the a
Type
: Post
Tags
: azure functions, azure, serverless, c#, .net
http://dontcodetired.com/blog/post/Creating-Versioned-APIs-with-Azure-Functions-an-Proxies
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26