Re: writting apps that run on phones and dial phone numbers

2011-04-25 Thread Grant Molloy
that's http://nicksnettravels.builttoroam.com/ On Mon, Apr 25, 2011 at 8:39 PM, Chris Walsh wrote: > Also look at http://nickstravels.builttoroam.com > > Nick Randolph has started a trio of blog posts on writing cross platform > apps. > > Sent from my Wi

Re: INotifyPropertyChanged on nested objects

2011-05-02 Thread Grant Molloy
Hi Greg, I think there may be a few ways to assist you with your project.. Paul Stovell's Bindable Linq propagates changes from collections in memory to the UI.. http://www.paulstovell.com http://bindablelinq.codeplex.com/ Also, Sacha Barber wrote an article (a very long one) on Chained Property

Re: Dynamic ORM?

2011-05-07 Thread Grant Molloy
I use a self created ORM solution where the DAL DLL does not need changing between projects as it maps the entity object to the appropriate stored proc based on custom class attributes. A custom built code gen builds the entities and stored procs (as well as WPF MVVM View & VM, ASP.NET Forms & use

Re: Dynamic ORM?

2011-05-07 Thread Grant Molloy
Performance nat an issue.. Test harness proves its quicker than linq for same query (single and multi record). it also returns multi resultsets with good speed too. 10 result sets from 1 stored proc in 20 millisecs. On 5/8/11, Mark Ryall wrote: > I've heard of a few projects that needed to do so

Re: Dynamic ORM?

2011-05-08 Thread Grant Molloy
ode template schema's did a >> similar thing - and it is slightly faster, and there are security advantages >> (individual stored procs can be given different rights). But I'm hooked to >> the flexibility that LINQ provides, and the bells and whistles like lazy >>

Re: [OT] Lightweight laptop for dev and demos

2011-05-08 Thread Grant Molloy
Why wait.. Use this service.. http://www.hopshopgo.com On Mon, May 9, 2011 at 12:46 PM, Andrew Coates (DPE AUSTRALIA) < andrew.coa...@microsoft.com> wrote: > Amen - hanging off until my next US trip to get a decent SSD > > -Original Message- > From: ozdotnet-boun...@ozdotnet.com [mailto

Re: [OT] Visual Studio 2010 Premium Edition

2011-05-12 Thread Grant Molloy
Maybe the local MS Vendor could come up with a special on MSDN subscriptions and offer an extended service from FIJI... On Fri, May 13, 2011 at 12:04 PM, Les Hughes wrote: > Greg Keogh wrote: > >> Oh well, it seems that the Harris price is on the low end for SAO MSDN >> Premium with VS2010, so

Re: Govt .net jobs?

2011-05-19 Thread Grant Molloy
There is a theory floating around in the Local Govt in which I work that somewhere in the building there is a fountain of piss. Some people take cups to the fountain, some take buckets.. Unfortunately there are also those who take over sized wheely bins !! On Fri, May 20, 2011 at 10:01 AM, DotNet

Re: clever friday code

2011-05-20 Thread Grant Molloy
Hi Steven, There are already an Attribute within the .net framework that are used to enforce permissions.. Try the PrincipalPermissionAttribute.. http://msdn.microsoft.com/en-us/library/system.security.permissions.principalpermissionattribute.aspx You could maybe use Reflector or other similar t

Re: Govt .net jobs?

2011-05-22 Thread Grant Molloy
Wrong type of piss Winston... On Mon, May 23, 2011 at 7:12 AM, Winston Pang wrote: > Is this an indication that I should be hanging out at pubs to score a > govt job? :p > > On Mon, May 23, 2011 at 6:57 AM, Scott Barnes > wrote: > > love this thread. We went from Govt jobs etc to Piss... Love i

Re: Help I'm being threatened.

2011-05-23 Thread Grant Molloy
This sounds like their game plan from the start.. I would suggest informing eLance about these people, so they don't repeat on another poor sucker. On Mon, May 23, 2011 at 10:44 PM, Michael Ridland wrote: > Hi > > I get onto my computer this afternoon and I have found that the company had > star

Re: .NET Consultant role - Microsoft

2011-05-31 Thread Grant Molloy
Hi Heinrich... If your "SMALL" cv is 12 pages long, how long is your "NORMAL" or "LARGE" cv ? I remember doing "CV" classes with my degree and they told us to keep them to around 4-5 pages. What do other people on the list do? On Tue, May 31, 2011 at 7:54 PM, Heinrich Breedt wrote: > LOL, cant w

Re: [OT] Backups

2011-06-03 Thread Grant Molloy
I've decided to go old school.. I just bought 10,000 floppy disks & a USB FDD.. (Got nothing else on this weekend anyway !! ) :-D On Fri, Jun 3, 2011 at 5:48 PM, Ian Thomas wrote: > Ken > > You’re using WHS (v1 or 2011 - ?), so what Cloud service do you use that * > does* allow you to backup a

Re: EF4 and SQLite monitoring

2011-07-18 Thread Grant Molloy
Does that breach copyright? On Mon, Jul 18, 2011 at 10:36 PM, Greg Keogh wrote: > http://efprof.com/ ? > > ** ** > > Looks great, but it’s $305 and I only want to snoop into the underlying > commands as a learning exercise. Oh, I just noticed it’s written by > ‘Ayende’, I know that guy. If h

Re: System.Data classes and List

2011-07-20 Thread Grant Molloy
Hi Greg.. I've worked a bit with an open source app called nSurvey ( http://survey.codeplex.com), and it uses the datatables and datasets all the way from DB to UI. However, it's overridden/extended the dataset and data table to make them more like strongly bound types. I don't know if these are

Re: Good looking WinForms apps

2011-08-17 Thread Grant Molloy
I think that you should also explain in more detail the "constraints" of the situation which are causing you extra work and why this has made you believe that WPF is not the correct choice. Grant On Thu, Aug 18, 2011 at 2:33 PM, Matt Siebert wrote: > Hi folks, > > Can anyone point out some part

Re: Good looking WinForms apps

2011-08-18 Thread Grant Molloy
atically simplify the > code base and future development. > > > On Thu, Aug 18, 2011 at 3:18 PM, Jake Ginnivan > wrote: > >> +1 would be very interested to know what constraints would cause you to >> choose winforms over wpf.. >> >> ** ** >> >&g

Re: Good looking WinForms apps

2011-08-18 Thread Grant Molloy
> > Ultimately, I just couldn't trust it for running a production application. > > On Thu, Aug 18, 2011 at 10:03 PM, Grant Molloy wrote: > >> You say that the API becomes "flaky" when the add-ins use multiple >> threads.. >> Have you coded the use of e

Re: In praise of Parallel.ForEach

2011-09-17 Thread Grant Molloy
Dot Net 4 TPL is a wonderful thing.. It helped me turn a 2minute task into about 15 seconds. Here's some reading for those interested.. 6 articles by Sacha Barber on "The Code Project".. 1. Starting Tasks / Trigger Operations / Exception Handling / Cancelling / UI Synchronization

Re: [OT] Security clearance for work in Canberra

2011-09-26 Thread Grant Molloy
I think it depends on the security clearance you're after.. For anything serious, all I can say is "bend over & cough!".. Be prepared to put your last 10 yrs on paper, and a full current financial picture of your life! As a start!! On 26/09/2011 6:56 PM, "Preet Sangha" wrote: > I hope it's easie

Re: [OT] Security clearance for work in Canberra

2011-09-26 Thread Grant Molloy
I was told that when you lodge the paperwork, that is deemed to have satisfied the requiement of having the security clearance. It can take months to come through. I am currenly working for ATO and my security hasn't been finalised... yet... (over 2 months since submitted first paperwork). On 27/0

RE: Dynamic

2011-10-05 Thread Grant Molloy
Try json.codeplex.com I've not used but have heard from others that it is useful! Grant On 06/10/2011 12:24 PM, "Ian Thomas" wrote: > In regards to JSON, I was discussing this just the other week in regards to > > VB's XML literals. A .ToJSON extension would be pretty cool. > > Bill, I agree that

Re: while (true) using Parallel.ForEach

2011-10-26 Thread Grant Molloy
Hi Tom, Check out Sacha Barber's TPL posts on code project. Grant On 26/10/2011 11:27 PM, "Tom Gao" wrote: > Hi All, > > ** ** > > Can someone please provide me with an example of how I can replicate a > while(true){ … } using Parallel.ForEach? > > ** ** > > Thank you, > > Tom >

RE: [Friday OT] unstoppable force meets an immovable object,

2011-11-20 Thread Grant Molloy
I think putting dev's in vm's is a bit a55 about. I work in them at current and also in previous job, and have always been issues, mainly having to wait for vm. They gave me a nice big pd with a quad core with 8gb of ram. Then they installed the corporate image on it. Windows XP 32 bit.. Thanks!

Re: Stress testing

2012-01-24 Thread Grant Molloy
I'd start with testing the easiest points first, the actual service and the components behind it. Rig up an application to hit these points in a multi threaded fashion. Eg. In a loop x long, create a new thread and fire off a call to svc or method. Repeat y times with z interval. Grant On 25/01/2

Re: The way NuGet works

2012-01-25 Thread Grant Molloy
I believe you can also make nuget packages for your own libraries that you include in your projects, which means that your library is only in source control once, as the project itself. You may need a corporate nuget server for this, I'm not 100% sure.. On 26/01/2012 9:46 AM, "David Burela" wrote:

Re: The cost of putting small websites online

2012-04-02 Thread Grant Molloy
David, Why not start with shared host first? Usually much cheaper than vps! If your needs expand you can ramp up in future. Places like mochahost have reasonable costs, plus allow multiple domains, multiple database types and number for any future expansion. They even offer free domain names on so

Re: WAN folder replication utils

2012-04-03 Thread Grant Molloy
I use AlwaySync ( www.allwaysync.com) on family pc's to backup "My Document " folders to network location, not sure about over http though.. On 04/04/2012 8:42 AM, "David Connors" wrote: > Howdy, > > Can anyone recommend a good WAN replication utility like rsync but for > Windows with: > >-

Re: x16 PCI-E 2.0 RAID-5 card recommendation

2012-04-10 Thread Grant Molloy
Would it be cheaper to bang up a new box with a mobo with Raid 5 compatibility? On 11/04/2012 7:59 AM, "David Connors" wrote: > On Wed, Apr 11, 2012 at 7:56 AM, Geoff Appleby wrote: > >> >Does anyone out there have *first hand experience* in a third party >> RAID controllers for a whitebox that c

Azure Pricing

2016-07-25 Thread Grant Molloy
Hi list.. Azure has always baffled me a bit with their pricing.. I'm looking into something for my employer and looking at the costs here, https://azure.microsoft.com/en-us/pricing/details/storage/ and trying to work out the cost of storing files starting from scratch.. So with this following sc

Re: Azure Pricing

2016-07-26 Thread Grant Molloy
l amounts which might dissuade small business from > chucking out their own boxes and migrating to the cloud. > > *Greg* > > On 26 July 2016 at 15:45, Grant Molloy wrote: > >> Hi list.. >> >> Azure has always baffled me a bit with their pricing.. I'm looking

<    1   2