Home
Archive
Contact
Search results for 'Mobile casino app (ph365.mx)Mobile casino app (ph365.mx)'
Synology DiskStation DS1618 Plus Setup And Initial Review
Early this year I tweeted this: Think 2020 is the year to my first NAS. Would you still recommend a
Type
: Post
Tags
: hardware, nas, networking, Synology
http://dontcodetired.com/blog/post/Synology-DiskStation-DS1618-Plus-Setup-And-Initial-Review
Redesigning DontCodeTired.Com (Part 11) - Conclusion
"The redesigned Don't Code Tired is now live. This article wraps up the series with a look back at what I learned and what things are still outstanding. Key Things I Learned I am not a designer. ..."
Type
: Post
Tags
: redesigning dontcodetired, web design, responsive web design, responsive design, web, web design, sass, design, css
http://dontcodetired.com/blog/post/Redesigning-DontCodeTiredCom-(Part-11)-Conclusion
Microsoft Feature Flags: Controlling Features with Feature Filters (Microsoft.FeatureManagement)
This is the third part in a series. EDIT: my Feature Management Pluralsight training course is now a
Type
: Post
Tags
: .net, .net core, c#, featuretoggle, msftseries, FeatureManagement
http://dontcodetired.com/blog/post/Microsoft-Feature-Flags-Controlling-Features-with-Feature-Filters-(MicrosoftFeatureManagement)
Hosting HTML Content in Silverlight 4
"In Silverlight 4 we can present HTML content to the user. The WebBrowser Control For example to display the content of DontCodeTired.com we can set the Source property in XAML: <WebB ..."
Type
: Post
Tags
: .net, c#, html, javascript, oob, out of browser, silverlight, silverlight 4, wpf, xaml
http://dontcodetired.com/blog/post/Hosting-HTML-Content-in-Silverlight-4
ICYMI C# 9 New Features: Top-level Statements
This is the first in a series of articles on new features introduced in C#9. Top-level statements al
Type
: Post
Tags
: icymcs9series, c#, .net, .net core, C#9
http://dontcodetired.com/blog/post/ICYMI-C-9-New-Features-Top-level-Statements
Coding with Compassion
"From an engineering perspective we judge code by its complexity, test coverage, etc. These are all empirical measurements that give us an indication of the qualities that the code base possesses. ..."
Type
: Post
Tags
: compassion, software development
http://dontcodetired.com/blog/post/Coding-with-Compassion
Push Notifications and Buttons with Microsoft Flow: Part 1
Microsoft Flow allows the creation of serverless cloud workflows. It is similar to services such as
Type
: Post
Tags
: microsoft flow, azure, productivitypushseries
http://dontcodetired.com/blog/post/Push-Notifications-and-Buttons-with-Microsoft-Flow-Part-1
Sending a Regular SMS with Azure Functions and Twilio
"Azure Functions allow the creation of Serverless event driven applications with minimal effort. We can create Azure Functions using C# (or other languages) right inside the Azure Web app. Functions si ..."
Type
: Post
Tags
: C#, .net, azure
http://dontcodetired.com/blog/post/Sending-a-Regular-SMS-with-Azure-Functions-and-Twilio
FallbackValue, TargetNullValue & StringFormat in Silverlight 4
"Silverlight 4 introduces some further databinding functionality including: FallbackValue If there is a problem with performing the binding, for example an incorrect path to a property value, the ..."
Type
: Post
Tags
: .net, c#, databinding, silverlight, silverlight 4, wpf, xaml
http://dontcodetired.com/blog/post/FallbackValue-TargetNullValue-StringFormat-in-Silverlight-4
Using Azure Functions and Microsoft Flow to Send Notifications for NuGet Package Downloads
One of the NuGet packages I maintain is approaching 100,000 downloads. I thought it would be nice to
Type
: Post
Tags
: microsoft flow, azure, azure functions, serverless
http://dontcodetired.com/blog/post/Using-Azure-Functions-and-Microsoft-Flow-to-Send-Notifications-for-NuGet-Package-Downloads
Azure Functions Dependency Injection with Autofac
This post refers specifically to Azure Function V2. If you want to write automated tests for Azure F
Type
: Post
Tags
: azure functions, serverless, c#, cloud, .net
http://dontcodetired.com/blog/post/Azure-Functions-Dependency-Injection-with-Autofac
ChildWindow in Silverlight 3
"SL 3 introduced the ChildWindow to allow easy creation of modal 'pop-up' windows inside our main window. Once you have added a new ChildWindow to your project you can customise its appearance ..."
Type
: Post
Tags
: c#, silverlight, silverlight 3, xaml
http://dontcodetired.com/blog/post/ChildWindow-in-Silverlight-3
In Process Http Server for Integration Test Faking with Owin, Katana, and WebAPI
"Sometimes when integration testing we need an HTTP endpoint. We can set one up in our solution (for example a Web Api project) and make sure it’s running before we execute our integration tests but it ..."
Type
: Post
Tags
: testing, asp.net, owin, katana, web api
http://dontcodetired.com/blog/post/In-Process-Http-Server-for-Integration-Test-Faking-with-Owin-Katana-and-WebAPI
Azure Functions Continuous Deployment with Azure Pipelines: Part 4 - Defining and Consuming Pipeline Variables
This is the fourth part in a series demonstrating how to setup continuous deployment of an Azure Fun
Type
: Post
Tags
: funcpipeseries, azure, azuredevops, azure functions, c#
http://dontcodetired.com/blog/post/Azure-Functions-Continuous-Deployment-with-Azure-Pipelines-Part-4-Defining-and-Consuming-Pipeline-Variables
Akka.NET Dispatchers and User Interface Thread Access
Akka.NET actors typically run in their own (non-UI) threads. This means by default accessing UI obje
Type
: Post
Tags
: .net, akka.net, wpf, mvvm
http://dontcodetired.com/blog/post/AkkaNET-Dispatchers-and-User-Interface-Thread-Access
Conditional HTML Rendering with Microsoft Feature Flags (Microsoft.FeatureManagement)
This is part seven in a series of articles. EDIT: my Feature Management Pluralsight training course
Type
: Post
Tags
: .net, .net core, c#, featuretoggle, msftseries, FeatureManagement
http://dontcodetired.com/blog/post/Conditional-HTML-Rendering-with-Microsoft-Feature-Flags-(MicrosoftFeatureManagement)
Silverlight 3 WritableBitmap pixel colour values
"Rather than taking an array of Color objects, the WritableBitmap.Pixels property holds an array on ints which represent premultiplied ARGB colour values. To set a given pixel to a given colour you hav ..."
Type
: Post
Tags
: c#, .net, extension methods, silverlight, silverlight 3, wpf, xaml
http://dontcodetired.com/blog/post/Silverlight-3-WritableBitmap-pixel-colour-values
Silverlight 3 Out Of Browser Install Errors
"If a user attempts to install a SLOOB app when it is already installed an InvalidOperationException is thrown with the message "Application is already installed.". We can wrap in a try..catc ..."
Type
: Post
Tags
: out of browser, oob, silverlight, silverlight 3, sloob, c#
http://dontcodetired.com/blog/post/Silverlight-3-Out-Of-Browser-Install-Errors
Redesigning DontCodeTired.Com (Part 4) - Adding Semantic HTML 5 Markup and Removing Unwanted Elements
"Redesigning DontCodeTired.Com (Part 3) - Creating Content Reference Wireframes using Mobile-First Responsive In-Browser Design Adding New HTML5 Semantic Tags DontCodeTired.com is currently using ..."
Type
: Post
Tags
: redesigning dontcodetired, web design, responsive web design, responsive design, web, web design
http://dontcodetired.com/blog/post/Redesigning-DontCodeTiredCom-(Part-4)-Adding-Semantic-HTML-5-Markup-and-Removing-Unwanted-Elements
Using Page Object Models in UI Test Automation
"When using UI automation technologies, changes to the UI can break our tests. For example, if a textbox is being located by its ID in numerous tests, if this ID changes then all these tests will break ..."
Type
: Post
Tags
: testing, ui testing
http://dontcodetired.com/blog/post/Using-Page-Object-Models-in-UI-Test-Automation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20