So if you've been under a rock lately, you might have missed this little phenom known as KickStarter. Well today you're going to want to check it out. Secret Labs, the folks who brought you Netduino (hey, I'm wearing a Netduino t-shirt today, what a coincidence) have teamed up with a watch maker in New York City (SL is based there as well) to bring you Agent! http://www.agentwatches.com/ So what i
Recently a reader asked about a tricky issue with HTML5 drag and drop. The issue is this: HTML5 supports native drag and drop through draggable property and several events such as dragstart, drag, dragenter, dragleave, dragover and drop. Normally dragstart event handler is where you set the data that is to be transferred between the drag source and drop target. The drop event handler is where
_[This is actually a repost from my personal blog, but I think the technical audience might “dig” it as well.]_Innovation is hard. You can definitely foster it, but you can't really force it. It's completely fascinating when people innovate in a massively disruptive way. While you can't make innovation happen, it's something I try to strive for. There are certain ways that I've had a great de
We are planning to update our very old web application so that it works better with modern web browsers. I have heard of modern.ie in the past and decided to give it a try. The site has a scanner that can scan a URL entered by a user. Unfortunately, our site requires log-in before getting to the page we want to scan. Fortunately, the site also offers a downloadable scanner that we can use in our
Red Gate is looking for feedback on its ASP.NET Web Development Education website.Visit their website and answer the survey.
Just got this one! Here is a little tip for you: While studying a new exam the first thing to do is to consult the “Skills Measured” section of the official page of Microsoft Learning website: http://www.microsoft.com/learning/en/us/Exam.aspx?ID=70-484Better than that, Vitor Ciaramella, put together this nice sheet with direct hyperlinks to MSDN resources for each topics covered by the ex
The following is a link to my talk on Mapping & Location in iOS and Android at Xamarin Evolve 2013. Obviously, the talk is centered on MonoTouch, aka Xamarin.iOS, and Mono for Android, aka Xamarin.Android. In this talk, I cover the native functionality of each platform. In addition, I cover Google Maps for iOS SDK. I hope that you find the talk to be helpful.http://xamarin.com/evolve/2013#s
Entrepreneurship has been on the rise in sunny Singapore over the past years with more and more youths having the guts to take the bold step to be different - stepping out of the comforts of a stable 9am to 5pm desk job to realize their dreams. Although I'm still fairly un-impressed with our startup scene here (in comparison with the US, or something closer to home - China and Korea), I am happy t
I wrote previously about how I built a "live blog" app in Azure, so we could use it for PointBuzz during last week's festivities at Cedar Point. Not surprisingly, it worked just fine. As I expected, the whole thing was kind of overkill. Sweet, over-provisioned overkill.The traffic loads we encountered were not a big deal. At one point, we were close to 300 simultaneous connections. We didn't
Windows Azure Mobile Services lets the developers to use structured storage, user authentication and push notifications to Android, iOS, HTML, Windows Store, or Windows Phone 8 apps by leveraging the Windows Azure Cloud platform. Using with Windows Azure Mobile Services, you can enjoy the scalability power of Cloud to your Mobile apps. In this blog post, I will demonstrate how to persist data o
Introduction: I am from Pakistan. Like most of Pakistanis, I am also a huge fan of Cricket. Yesterday, I got some time from my busy job. I thought to create a simple Cricket Live Score feature using ASP.NET SignalR. It is also Interesting to note that the guys(David Fowler from West Indies and Damian Edwards from Australia) that are heavily involved in SignalR devel
For security reasons browsers prohibit AJAX calls to resources residing outside the current origin. This means you under the current settings, you can't provide a service exposed by a Web API to some other origin. However, at times you might want to allow a legitimate origin to access a resource. This is where Cross Origin Resource Sharing (CORS) specifications come into the picture. While there
Back to Entity Framework Code First (EFCF) validation. On my previous post I mentioned that EFCF did not support fluent validation. While this is true, it isn’t too hard to implement one such mechanism, which is exactly why I am writing this! I will be using the SavingChanges event to inject the validation logic, which will be implemented by strongly typed delegates. Let’s see some code:
IntroductionMost persistence frameworks implement some kind of custom validation of entities before they are sent to the database. By custom I mean something more than just “is not null”, “has XX characters”, etc. This typically includes individual properties as well as validation of the entity as a whole – for example, checking that a property’s value is valid when used together with another
This post is in portuguese only, sorry!A partir de um comentário no LinkedIn, no grupo da Comunidade Portuguesa de SharePoint (http://www.linkedin.com/groups?home=&gid=996587&trk=anet_ug_hm) foi começada uma lista dos blogs de autores portugueses e brasileiros sobre SharePoint, ainda que não exclusivamente. Vou publicar essa lista aqui, e tentarei mantê-la actualizada.* Comunidade Portugu
If you are getting a 'web service undefined' error when calling a web service from Javascript which is defined inside the ScriptManager tag like so: <asp:ScriptManager ID="ScriptManager1" runat="server"><Services><asp:ServiceReference Path="~/Services/WebService.asmx" InlineScript="True" /></Services></asp:ScriptManager>Actual Error: System.InvalidOperationException: jsdebug Web Ser
You will have to download and run the Configuration Console from http://www.microsoft.com/en-us/download/details.aspx?id=38789, there is no NuGet package for it. After that, you will get a context menu for each project on the solution for editing the configuration:
My company, Thycotic Software is hiring for .NET Developers. http://www.thycotic.com/career_tdddeveloper.html This is a great position - competitive salary, great benefits, awesome developers and fun problems to solve - you will be challenged!
If you install DotNet framework 4.0 on IIS server and then enable .NET 3.0 or 3.5 WCF features, you might see following error when browse your application site made of ASP.NET 4.0 (or run on ASP.NET 4.0 application pool).Could not load type ‘System.ServiceModel.Activation.HttpModule' from assembly ‘System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089′. De
There are a lot of things that one can find satisfying about building stuff for the Web. For a lot of people, it's probably just the act of building something cool, pretty and useful. These are certainly things to strive for, but for me, the interesting thing has always been to build something that can scale.Like so many things in life, this particular desire grew out of experience. Very earl
Our team develops tools for Windows Server. Fifteen years ago we started with a pop3 queuing (popConnect) tool. We offer a free extender for the IIS SMTP Service to support pop3.· You want to provide emails from any source (e.g. IIS, SharePoint, …) for POP3 retrieval by any mail client (e.g. Outlook, Thunderbird, …). · You used the Microsoft POP3 Service in Windows Server 200
IntroductionIn some O/RMs, it is possible to specify automatic filters for entity collections such as one-to-many or many-to-many. These are applied automatically whenever these collections are being populated. Entity Framework does not offer one such mechanism, however, it is possible to implement it.Context CollectionsIn Entity Framework Code First, entities are exposed as IDbSet<T> or
Most of us deal with Zip files on a daily basis. Normally people use some third-party utility to create, open and extract Zip files. At times you may want to deal with Zip files programmatically. Luckily, .NET framework 4.5 introduces some new classes in System.IO.Compression namespace that allows you to do just that. Using these classes you can create new Zip files, open and modify existing Zip
I have been searching for a way to get rid of some performance counter errors (WmiApRpl and BITS) on my SharePoint 2013 installation for a while but couldn't find the answer. Today I decided to have a look with Process Monitor and finally found a solution....(read more)
In Part 1 of this blog series about adding custom FTP providers with the IIS Configuration Editor , I showed you how to add a custom FTP provider with a custom setting for the provider that is stored in your IIS configuration settings. For my examples, I showed how to do this by using both the AppCmd.exe application from a command line and by using the IIS Configuration Editor . In part 2 of this
In my recent blog post I wrote about the technical aspects of using the Nancy framework, in this post I’d like explain the “what did I want to achieve” a bit more. Maybe it inspires other people to think about possible self-hosting scenarios that combine desktop and web software.The Desktop SoftwareOne of my hobbies involves writing software for the local basketball club, the Telekom Baske
I’m excited to announce the release of WebMatrix 3. WebMatrix is a free, lightweight web development tool we first introduced in 2010, and which provides a great, focused web development experience for ASP.NET, PHP, and Node.js. Today’s release includes a ton of great new features. You can easily get started by downloading it, and watching an introduction video:Some of the highlights o
The Windows Azure Cloud Computing platform has been in the big news after the platform exceeded the annual revenue of $1 billion. Today, Microsoft has been released the Windows Azure SDK 2.0 for .NET update that lets the .NET developers to build Windows Azure apps from Visual Studio with an easy and more elegant manner. The new update provides the lot of improvements within Visual Studio, for de
I recently had the requirement to control a desktop application from a mobile device. The application, written using Windows Presentation Foundation (WPF) uses the secondary monitor of a system in full-screen mode, generating views that are shown on projection screens in a sports arena. More on the background story in a later blog post. [Update: the post is now online]When I write “control” I
Publishing technical documentation is an interesting business, and a lot of discussion & deliberation goes into the creation process for articles and videos that we produce at Microsoft. For example, when I am writing an article for IIS, should I publish that on www.iis.net, or technet.microsoft.com, or msdn.microsoft.com? Or should I just write a blog about it? And after I have published an artic
Inbox.com News | Awards & Certificates | Promote Us | Contact Us | Privacy Policy | Terms of Use | Uninstall Info
© 2013 Inbox.com, Inc. All rights reserved. Inbox.com, Inc. is part of the Xacti Group Companies.
All other names are trademarks and/or registered trademarks of their respective owners.