hukiajakson
Name: hukiajakson
Score:
Last Seen: 1 day, 23 hours, 10 minutes ago
Member Since: 9 July, 2012
DotNetShoutout
atom rss
9
Shouts

A Bug Report is a Gift - Scott Hanselman

published 258 days, 7 hours, 49 minutes ago posted by hilarycookhilarycook 268 days, 2 hours, 4 minutes ago
Friday, October 05, 2012 10:20:12 AM GMT Tuesday, September 25, 2012 4:04:52 PM GMT
Is it easy for your users to report a bug? Does you app automatically report crashes? Is your site friendly? Are you support people friendly and engaged? Are your bug support forums filled with reports but no company representatives? Do you use GetSatisfaction or UserVoice? (more)
category: Architecture | clicked: 66 | comment | | source: www.hanselman.com
4
Shouts

Opening an URL in the default browser on Windows 8

published 262 days, 3 hours, 8 minutes ago posted by http://byteflux.myopenid.com/http://byteflux.myopenid.com/ 270 days, 20 hours, 33 minutes ago
Monday, October 01, 2012 3:01:19 PM GMT Saturday, September 22, 2012 9:36:00 PM GMT
With the changes to the UAC system in Windows 8, it seems that whenever you try to launch an non-elevated application from an elevated application, you get an error similar to: “Class not registered (Exception from HRESULT: 0×80040154 (REGDBECLASSNOTREG)”. This article presents a simple solution to starting the default system browser with an URL from an elevated application running under Windows 8. (more)
category: How To | clicked: 23 | comment | | source: byteflux.me
tags:
3
Shouts

Gang of Four Design Patterns Reference Sheet

published 265 days, 8 hours, 30 minutes ago posted by BlackWaspBlackWasp 272 days, 11 hours, 20 minutes ago
Friday, September 28, 2012 9:39:44 AM GMT Friday, September 21, 2012 6:49:36 AM GMT
The Gang of Four are the four authors of the book, "Design Patterns: Elements of Reusable Object-Oriented Software". They described twenty-three design patterns for object-oriented programming. This reference sheet provides the UML for those patterns. (more)
category: How To | clicked: 34 | comment | | source: www.blackwasp.co.uk
tags:
4
Shouts

Data cache into indexedDb of browser using html5

published 262 days, 3 hours, 8 minutes ago posted by abhi2434abhi2434 270 days, 6 hours, 42 minutes ago
Monday, October 01, 2012 3:01:19 PM GMT Sunday, September 23, 2012 11:27:24 AM GMT
Index DB storage is another important storage unit of browser local cache storage. Applications can take advantage of local storage to store data based on index. The data is stored in a hashtable using javascript and html 5. (more)
category: Architecture | clicked: 27 | comment | | source: www.helloworldgeeks.com
tags:
4
Shouts

My first Nancy webapplication

published 262 days, 7 hours, 53 minutes ago posted by jphellemonsjphellemons 271 days, 21 hours, 49 minutes ago
Monday, October 01, 2012 10:16:12 AM GMT Friday, September 21, 2012 8:20:42 PM GMT
As web developer you might have heard of Sinatra. Not the famous artist, but the Sinatra framework! It is a framework/Domain Specific Language (DSL) for Ruby to quickly create web applications with minimal effort. Nancy is a lightweight framework which is inspired by Sinatra. It has been around since November 2010 and a few days ago there was the Nancy 0.12 release. (more)
category: How To | clicked: 27 | comment | | source: www.jphellemons.nl
tags:
5
Shouts

Metro Elements Weekly Update 3

published 260 days, 6 hours, 29 minutes ago posted by hilarycookhilarycook 269 days, 6 hours, 10 minutes ago
Wednesday, October 03, 2012 11:40:34 AM GMT Monday, September 24, 2012 11:58:52 AM GMT
The Metro Elements update is a doozy this week with 5 new controls you can start using! (more)
category: Metro | clicked: 6 | comment | | source: www.mindscapehq.com
tags:
4
Shouts

Export to Excel with MVC

published 260 days, 6 hours, 29 minutes ago posted by http://derans.myopenid.com/http://derans.myopenid.com/ 269 days, 7 hours, 24 minutes ago
Wednesday, October 03, 2012 11:40:34 AM GMT Monday, September 24, 2012 10:44:48 AM GMT
I’m sure you’ve all had to export to Excel at one point or another. I created a small wrapper around the EPPlus library for MVC. (more)
category: How To | clicked: 38 | comment | | source: derans.blogspot.com
tags:
4
Shouts

What is new in C# and Visual Basic in Visual Studio 2012 | TechBubbles

published 260 days, 6 hours, 29 minutes ago posted by kalyanms1kalyanms1 269 days, 8 hours, 4 minutes ago
Wednesday, October 03, 2012 11:40:34 AM GMT Monday, September 24, 2012 10:05:35 AM GMT
This post discusses the new language features that is introduced in Visual Studio 2012. One of the main things that language team introduced is the idea of producing windows 8 App. These APPs are talking to new API called windows runtime. Small new feature Caller Info Attributes is also added in this release. More about this feature can be read here. (more)
category: Architecture | clicked: 53 | comment | | source: www.techbubbles.com
tags:
4
Shouts

Func Injection in Unity

published 258 days, 7 hours, 49 minutes ago posted by tduponttdupont 267 days, 2 hours, 16 minutes ago
Friday, October 05, 2012 10:20:12 AM GMT Wednesday, September 26, 2012 3:52:44 PM GMT
If you are using LinqToSql and dependency injection, then you have probably created a factory with which you create DataContexts. But what if you could just let your IOC Container do that work for you? You can! If you are using Unity then you can inject a Func (more)
category: How To | clicked: 26 | comment | | source: www.tomdupont.net
tags:
5
Shouts

Metro Elements: Area Charts and Custom Styling

published 258 days, 7 hours, 49 minutes ago posted by hilarycookhilarycook 267 days, 7 hours, 46 minutes ago
Friday, October 05, 2012 10:20:12 AM GMT Wednesday, September 26, 2012 10:23:35 AM GMT
In this blog post I’ll show you how to create and style Area Series and other similar charts. (more)
category: Metro | clicked: 13 | comment | | source: www.mindscapehq.com
tags:
3
Shouts

Delicious Dot Net: Developing jQuery plugins

published 269 days, 6 hours, 10 minutes ago posted by deliciousdotnetdeliciousdotnet 278 days, 12 hours, 50 minutes ago
Monday, September 24, 2012 11:59:03 AM GMT Saturday, September 15, 2012 5:19:28 AM GMT
This is very simple to write our own plug-in. Following is the syntax to create a method: The guideline recommended by the jQuery team is as follows: Read more: http://www.deliciousdotnet.com/2012/08/developing-jquery-plugins.html#ixzz26Vxyd847 (more)
category: Web Dev | clicked: 17 | comment | | source: www.deliciousdotnet.com
tags:
3
Shouts

Ways to Interact Asynchronously with C# against Cloud Foundry w/ Iron Foundry

published 272 days, 7 hours, 59 minutes ago posted by http://compositecode.com/http://compositecode.com/ 277 days, 8 hours, 12 minutes ago
Friday, September 21, 2012 10:09:58 AM GMT Sunday, September 16, 2012 9:57:10 AM GMT
While working on the Thor Project there have been numerous situations where I need to fire off an asynchronous callback in C# while maintaining good responsiveness in the actual user interface. Benjamin (@bvanderveen) has been using Reactive Extensions with subscriptions to do this in the Objective-C code for the Cocoa based OS-X Thor user interface. See my previous blog entry for an example of what he’s doing. (more)
category: How To | clicked: 22 | comment | | source: compositecode.com
tags:
5
Shouts

ASP.NET Web Forms DynamicData FieldTemplates for DbGeography Spatial Types (plus Model Binders and Friendly URLs) - Scott Hanselman

published 272 days, 7 hours, 59 minutes ago posted by hilarycookhilarycook 282 days, 3 hours, 22 minutes ago
Friday, September 21, 2012 10:09:58 AM GMT Tuesday, September 11, 2012 2:47:06 PM GMT
Scott Hanselman - DisplayTemplates and EditorTemplates are a great way in ASP.NET MVC to keep things DRY (Don't Repeat Yourself.) That means I can just write EditorFor() calls like this: (more)
category: Architecture | clicked: 48 | comment | | source: www.hanselman.com
3
Shouts

Creating a Secure Textbox

published 269 days, 6 hours, 10 minutes ago posted by BlackWaspBlackWasp 276 days, 9 hours, 43 minutes ago
Monday, September 24, 2012 11:59:03 AM GMT Monday, September 17, 2012 8:26:25 AM GMT
The SecureString class holds confidential information in an encrypted format, reducing the risk that the information could be obtained by reading a computer's memory directly. However, there is no easy way to obtain the secure information from a user. (more)
category: How To | clicked: 42 | comment | | source: www.blackwasp.co.uk
tags:
5
Shouts

What’s New in C# 5.0 - Learn about CallerFilePath Attribute

posted by http://www.kunal-chowdhury.com/http://www.kunal-chowdhury.com/ 321 days, 11 hours, 16 minutes ago
Friday, August 03, 2012 6:53:24 AM GMT
For last two days we learnt about the new attributes named “CallerMemberName” and “CallerLineNumber” introduced in CSharp 5.0. Today in this post we will learn about another attribute named “CallerFilePath” which has been newly included in C# 5. Tune in to know about it with a simple example to trace the development issues that one source file can generate. (more)
category: How To | clicked: 19 | comment | | source: www.kunal-chowdhury.com
tags:
6
Shouts

How to Create an AdRotator using JavaScript?

posted by http://www.kunal-chowdhury.com/http://www.kunal-chowdhury.com/ 321 days, 11 hours, 15 minutes ago
Friday, August 03, 2012 6:54:39 AM GMT
If you are ASP.Net developer, you might be aware of the AdRotator control. The AdRotator control is used to display a sequence of ad images from an XML file which stores the ad information in proper format. But if you want to use the same in a non-asp site, how can you develop it? Exactly, I was looking for such answer for one of my friend and later found a solution which uses plain JavaScript to build the adrotator in a simple HTML page. A simple knowledge of JavaScript coding can help you on this. In ... (more)
category: How To | clicked: 24 | comment | | source: www.kunal-chowdhury.com
tags:
6
Shouts

How to Deploy XAP File in a Windows Phone Emulator?

posted by http://www.kunal-chowdhury.com/http://www.kunal-chowdhury.com/ 321 days, 11 hours, 13 minutes ago
Friday, August 03, 2012 6:56:04 AM GMT
This post is with response to a question asked by my friend Abhimanyu. Yesterday he asked me whether it is possible to test the Windows Phone app on computer by installing in emulators? I answered him personally but thought to write a post on the same with proper steps so that, if you want to deploy any Windows Phone XAP file in your emulator to test it, this post will guide you. (more)
category: How To | clicked: 12 | comment | | source: www.kunal-chowdhury.com
tags:
7
Shouts

Solution for “FrameworkDispatcher.Update has not been called exception” in WP XNA

posted by http://www.kunal-chowdhury.com/http://www.kunal-chowdhury.com/ 321 days, 11 hours, 11 minutes ago
Friday, August 03, 2012 6:57:53 AM GMT
While working with the XNA Framework in Windows Phone 7 application, you might face an exception which says “Invalid Operation Exception” with a message “FrameworkDispatcher.Update has not been called”. This exception generally occurs when you are working with the sound effects. In this post, we will discuss about this exception and the solution to fix it. (more)
category: How To | clicked: 21 | comment | | source: www.kunal-chowdhury.com
tags:
3
Shouts

Changing the Title bar on PuTTY « Matt Duffield

published 293 days, 4 hours, 2 minutes ago posted by hilarycookhilarycook 301 days, 7 hours, 28 minutes ago
Friday, August 31, 2012 2:07:13 PM GMT Thursday, August 23, 2012 10:40:53 AM GMT
If you have ever had to work with PuTTY and you are working with multiple environments, it can be a pain to know which environment you have open - Matt Duffield (more)
category: How To | clicked: 2 | comment | | source: mattduffield.wordpress.com
tags:
3
Shouts

SQL Server: Query to Find Upcoming birthdays for Current Week : Connect SQL

published 295 days, 3 hours, 15 minutes ago posted by lionofdezertlionofdezert 300 days, 14 hours, 8 minutes ago
Wednesday, August 29, 2012 2:54:33 PM GMT Friday, August 24, 2012 4:01:09 AM GMT
A common query, for Human Resource databases or different social sites is to find out employee/subscribers name who’s birthday is coming in near future i.e. (In current week, or in next given days). (more)
category: Data | clicked: 3 | comment | | source: connectsql.blogspot.com
tags:
Previous 1 2 3 Next