Andrew Lock shares his ideas for designing a customer referral system, tips on webinars as a marketing tool plus a simple marketing strategy from Hertz that SMBs can employ.
Google I/O 2012 - Go in Production
Andrew Gerrand Since Go's release in 2009 many companies (besides Google, of course) have used the language to build cool stuff. In this session programmers from several companies will share their first-hand experience using Go in production environments. For all I/O 2012 sessions, go to developers.google.com…
Google doesn't recognize or index audio files, but that doesn't mean your small business SEO strategy has to take a hit. Andrew Lock offers an easy, affordable solution.
<b>Distrowatch:</b> "Andrew Gillis has announced the release of VortexBox 1.2, a Fedora-based Linux distribution with the goal of turning an unused computer into an easy-to-use music server or jukebox:"
We?ve all heard the phrase ?you get what you pay for? in regards to different products: televisions, computers, car audio systems. The question is, does this rule apply to cables? To some extent it c... [Author: Andrew Lang - Computers and Internet - March 27, 2010]
I am aware of javascript techniques to detect whether a popup is blocked in other browsers (as described in the answer to this question). Here's the basic test:
var newWin = window.open(url);
if(!newWin || newWin.closed || typeof newWin.closed=='undefined')
{
//POPUP BLOCKED
}
But this does not work in Chrome. The "POPUP BLOCKED"…
Hello colleagues. I've written secured WCF service and use complex wsHttpBinding. My so-workers try to consume it from php5.0, but there are errors. When I go to basicHttpBinidng all is ok. Is there any way to consume secured wcf service through php. Thanks a lot.
I am invoking a RadWindow as a dialog in my web page.
I am invoking from code-behind since I need to pass some parameters:
radWindow1.NavigateUrl = url + "?England,Germany,France";
radWindow1.VisibleOnPageLoad = true;
This works great, however it keeps reloading on each and every postback.
How can I stop the RadWindow from reloading?…
Upon taking the default sharepoint master page for MySite, making some changes, and making a wsp out of it with WSPBuilder, I come to these errors in my logs:
http://spoint/MySite/%5Fcatalogs/masterpage/MySite.master - An unexpected error has been encountered in this Web Part. Error: The control with virtual path…
Hi I am building an internal app for my company using jQuery's autocomplete and am finding it tends to start off very slow. My assumption is that the bottle neck is perhaps adding its elements to the DOM since after the first query it seems to be substantially speedier. Does anyone know of a way to pre-load these…
There is a tool - http://qt.nokia.com/doc/qtopia4.2/qtopiacore-qvfb.html#skins which allows to use predefined skins. But i cant find tool for skin generation. Does it exists or skins should be created manually.
I have N people who must each take T exams. Each exam takes "some" time, e.g. 30 min (no such thing as finishing early). Exams must be performed in front of an examiner.
I need to schedule each person to take each exam in front of an examiner within an overall time period, using the minimum number of examiners for…
I'm trying to launch a popup window from a Javascript function and ensure it has focus using the following call:
window.open(popupUrl, popupName, "...").focus();
It works in every other browser, but IE8 leaves the new window in the background with the flashing orange taskbar notification. Apparently this is a…
Hi there,
Trying to create an uebersimple class that implements get enumerator, but failing madly due to lack of simple / non-functioning examples out there. All I want to do is create a wrapper around a data structure (in this case a list, but I might need a dictionary later) and add some functions.
public…
Hello. I use ErrorWindow hadling all error at my SL App. I want customize its template. "Want ro replace An unknown error was encountered. Please contact your Admin..". "Error details". How could I change it?
Thanks.
Here is my class:
[DataContract]
public class EventIndex : IExtensibleDataObject
{
public ExtensionDataObject ExtensionData { get; set; }
[DataMember]
private readonly IList<EventDescription> events;
public IEnumerable<EventDescription> Events { get { return events; } }
…
I am trying to get information on the version of Windows installed from WMI. Most fields work. I can get the operating system "Name" as well as the "Version", both are fields of the Win32_OperatingSystem object I have.
But another field "OSArchitecture" generates an exception ("Not found").
strScope…
I am trying to get information on the version of Windows installed from WMI. Most fields work. I can get the operating system "Name" as well as the "Version", both are fields of the Win32_OperatingSystem object I have.
But another field "OSArchitecture" generates an exception ("Not found").
…
I'm using AutoFac. I want to inject a different implementation of a dependency based on an attribute I apply to the constructor parameter. For example:
class CustomerRepository
{
public CustomerRepository([CustomerDB] IObjectContainer db) { ... }
}
class FooRepository
{
public…
The Reactive Extensions have a sexy little hook to simplify calling async methods:
var func = Observable.FromAsyncPattern<InType, OutType>(
myWcfService.BeginDoStuff,
myWcfService.EndDoStuff);
func(inData).ObserveOnDispatcher().Subscribe(x => Foo(x));
I am using this in…
Hi, i want to create Pan & Zoom control Similar thread, so i transform control with ScaleTransform and it overlaps all window, i have ot do it with RenderTransform, becouse with LayoutTransform Pan implemented in example doesn't work. Are there any properties or templates with which…
Hi,
This question is very similar to link text but the responses were minimal to that question.
I have a parent class with a Set of child entities. The child entities are just a wrapper for a string and live in a different table to the parent entity. I want to have a criteria query…
I manage a group of programmers. I do value my employees opinion but lately we've been divided as to which framework to use on web projects.
I personally favor MooTools, but some of my team seems to want to migrate to jQuery because it is more widely adopted. That by itself is not…
I have a legacy atl app that hosts a webbrowser control in an ATL window. I create an instance of the client to host the browser using the following sequence
CComPtr<IOleObject> spOleObject;
HRESULT hr = CoCreateInstance(CLSID_WebBrowser, NULL, CLSCTX_INPROC,…
Can someone with Kanban experience tell me how Kanban and Scrum differ? What are the pro's and con's of each of the different project management methodologies? Kanban seems to be getting a lot of press these days. I don't want to miss the hottest new way of…