Re: OT: External Security testing of websites

2011-03-14 Thread David Connors
On Tue, Mar 15, 2011 at 4:56 PM, Noon Silk  wrote:

> On Tue, Mar 15, 2011 at 4:59 PM, Joseph Cooney 
> wrote:
> > Putting a big 'fuck you guys' message on 4chan is a great way to have
> your site pen-tested. Otherwise it's pay out 15-20k for some grad from
> > [expensive-consulting-company-with-agressive-legal-dept] to run some
> scripts and copy-and-paste the output from the script window into a word
> > document.
>
> Obviously, these are far from the logical options.
>

I agree. There is no way to get a pen test done by an external consultancy
of note for only $15-20K :)

-- 
*David Connors* | da...@codify.com | www.codify.com
Software Engineer
Codify Pty Ltd
Phone: +61 (7) 3210 6268 | Facsimile: +61 (7) 3210 6269 | Mobile: +61 417
189 363
V-Card: https://www.codify.com/cards/davidconnors
Address Info: https://www.codify.com/contact


Re: OT: External Security testing of websites

2011-03-14 Thread Noon Silk
On Tue, Mar 15, 2011 at 4:59 PM, Joseph Cooney  wrote:
> Putting a big 'fuck you guys' message on 4chan is a great way to have your 
> site pen-tested. Otherwise it's pay out 15-20k for some grad from
> [expensive-consulting-company-with-agressive-legal-dept] to run some scripts 
> and copy-and-paste the output from the script window into a word
> document.

Obviously, these are far from the logical options.


> Sent from my iPhone

-- 
Noon Silk

http://dnoondt.wordpress.com/  (Noon Silk) | http://www.mirios.com.au:8081 >

Fancy a quantum lunch?
http://www.mirios.com.au:8081/index.php?title=Quantum_Lunch

"Every morning when I wake up, I experience an exquisite joy — the joy
of being this signature."


Re: IE9 RTW

2011-03-14 Thread Noon Silk
On Tue, Mar 15, 2011 at 4:06 PM, Grant Molloy  wrote:
> On Tue, Mar 15, 2011 at 1:48 PM, David Burela 
> wrote:
>> The final release Internet Explorer 9 is now
>> available http://beautyoftheweb.com
>> Go download it.
>
> Why?? I have chrome !!

Yeah, I tend to agree; I fail to see why any new browser should be
required downloading; unless it has some compelling reason to change.
And the messing around with the location of menu bars isn't something
I find compelling.


>> Thoughts?
>> I'm wondering if we'll start seeing smaller point releases (IE 9.5) as
>> things get standardized. There has been a lot of talk about the release
>> schedules of competing browsers (Firefox, Chrome).
>> -David Burela

-- 
Noon Silk

http://dnoondt.wordpress.com/  (Noon Silk) | http://www.mirios.com.au:8081 >

Fancy a quantum lunch?
http://www.mirios.com.au:8081/index.php?title=Quantum_Lunch

"Every morning when I wake up, I experience an exquisite joy — the joy
of being this signature."


Attaching event to child controls of UserControl

2011-03-14 Thread Michael Ridland
Hi

I need to catch a Control-Enter keyboard input on a UserControl and any of
it's children, but it seems only the actual focused control gets the events.
So I looked around the net and didn't find a solution. I came up with my own
solution, which involved cycling through all the children and attaching a
KeyDown event.


public void Init()
{
RecursivelyAddEvent(this.Controls, 0);
}

public void RecursivelyAddEvent(ControlCollection controls, int level)
{
foreach(Control ctrl in controls)
{
ctrl.KeyDown += EmailEditor_KeyDown;
if(level < 3)
RecursivelyAddEvent(ctrl.Controls, level+1);
 }
}

It works, but there must be a better solution?

Thanks
Noobie Winforms Dude


Re: OT: External Security testing of websites

2011-03-14 Thread Joseph Cooney
Putting a big 'fuck you guys' message on 4chan is a great way to have your site 
pen-tested. Otherwise it's pay out 15-20k for some grad from 
[expensive-consulting-company-with-agressive-legal-dept] to run some scripts 
and copy-and-paste the output from the script window into a word document.

Sent from my iPhone

On 15/03/2011, at 3:03 PM, Simon Haigh  wrote:

> How do people get their websites tested by 3rd party security firms
> without publishing them to a live environment and running the risk of
> the site being hacked and/or internal networks being compromised.
> 
> Do people have a 2nd 'sandbox' environment which is totally isolated
> (airgapped) from your main business networks or do you just take the
> risk.
> 
> Thanks
> Simon
> 
> On 3/15/11, mike smith  wrote:
>> On Tue, Mar 15, 2011 at 3:12 PM, David Connors  wrote:
>>> [Window Title]
>>> Windows Internet Explorer 9
>>> [Main Instruction]
>>> Internet Explorer 9 is now installed
>>> [Content]
>>> Some Internet Explorer files were in use during setup. Restart your
>>> computer
>>> to use Internet Explorer 9.
>>> [Restart now] [Restart later]
>>> Fail.
>> 
>> Yes, you still can't close IE completely...
>> 
>> and
>> 
>> http://www.itnews.com.au/News/251183,non-microsoft-hypervisors-miss-ie9-acceleration.aspx
>> 
>> VMware, and I don't know which others.
>> 
>> 
>> --
>> Meski
>> 
>> "Going to Starbucks for coffee is like going to prison for sex. Sure,
>> you'll get it, but it's going to be rough" - Adam Hills
>> 
> 
> -- 
> Sent from my mobile device


Re: IE9 RTW

2011-03-14 Thread Stephen Price
Did you choose the "nuke everything thats open" option, or the "i'll reboot
later" option?
I went the later. I don't like to be told when to reboot. I'll do it when
i'm good and ready. <- control freak
On Tue, Mar 15, 2011 at 12:58 PM, David Connors  wrote:

> On Tue, Mar 15, 2011 at 2:46 PM, David Kean wrote:
>
>> What did you have open? VS?
>>
>
> IE9 RC downloading IE9 RTM. [?]
>
> --
> *David Connors* | da...@codify.com | www.codify.com
> Software Engineer
> Codify Pty Ltd
> Phone: +61 (7) 3210 6268 | Facsimile: +61 (7) 3210 6269 | Mobile: +61 417
> 189 363
> V-Card: https://www.codify.com/cards/davidconnors
> Address Info: https://www.codify.com/contact
>
>
<<360.gif>>

Re: IE9 RTW

2011-03-14 Thread Grant Molloy
On Tue, Mar 15, 2011 at 1:48 PM, David Burela wrote:

> The final release Internet Explorer 9 is now available
> http://beautyoftheweb.com
> Go download it.
>

Why?? I have chrome !!


> Thoughts?
> I'm wondering if we'll start seeing smaller point releases (IE 9.5) as
> things get standardized. There has been a lot of talk about the release
> schedules of competing browsers (Firefox, Chrome).
>
> -David Burela
>


OT: External Security testing of websites

2011-03-14 Thread Simon Haigh
How do people get their websites tested by 3rd party security firms
without publishing them to a live environment and running the risk of
the site being hacked and/or internal networks being compromised.

Do people have a 2nd 'sandbox' environment which is totally isolated
(airgapped) from your main business networks or do you just take the
risk.

Thanks
Simon

On 3/15/11, mike smith  wrote:
> On Tue, Mar 15, 2011 at 3:12 PM, David Connors  wrote:
>> [Window Title]
>> Windows Internet Explorer 9
>> [Main Instruction]
>> Internet Explorer 9 is now installed
>> [Content]
>> Some Internet Explorer files were in use during setup. Restart your
>> computer
>> to use Internet Explorer 9.
>> [Restart now] [Restart later]
>> Fail.
>
> Yes, you still can't close IE completely...
>
> and
>
> http://www.itnews.com.au/News/251183,non-microsoft-hypervisors-miss-ie9-acceleration.aspx
>
> VMware, and I don't know which others.
>
>
> --
> Meski
>
> "Going to Starbucks for coffee is like going to prison for sex. Sure,
> you'll get it, but it's going to be rough" - Adam Hills
>

-- 
Sent from my mobile device


Re: IE9 RTW

2011-03-14 Thread David Connors
On Tue, Mar 15, 2011 at 2:46 PM, David Kean wrote:

> What did you have open? VS?
>

IE9 RC downloading IE9 RTM. [?]

-- 
*David Connors* | da...@codify.com | www.codify.com
Software Engineer
Codify Pty Ltd
Phone: +61 (7) 3210 6268 | Facsimile: +61 (7) 3210 6269 | Mobile: +61 417
189 363
V-Card: https://www.codify.com/cards/davidconnors
Address Info: https://www.codify.com/contact
<<360.gif>>

RE: IE9 RTW

2011-03-14 Thread David Kean
What did you have open? VS?

-Original Message-
From: ozdotnet-boun...@ozdotnet.com [mailto:ozdotnet-boun...@ozdotnet.com] On 
Behalf Of mike smith
Sent: Monday, March 14, 2011 9:27 PM
To: ozDotNet
Subject: Re: IE9 RTW

On Tue, Mar 15, 2011 at 3:12 PM, David Connors  wrote:
> [Window Title]
> Windows Internet Explorer 9
> [Main Instruction]
> Internet Explorer 9 is now installed
> [Content]
> Some Internet Explorer files were in use during setup. Restart your 
> computer to use Internet Explorer 9.
> [Restart now] [Restart later]
> Fail.

Yes, you still can't close IE completely...

and

http://www.itnews.com.au/News/251183,non-microsoft-hypervisors-miss-ie9-acceleration.aspx

VMware, and I don't know which others.


--
Meski

"Going to Starbucks for coffee is like going to prison for sex. Sure, you'll 
get it, but it's going to be rough" - Adam Hills



Re: IE9 RTW

2011-03-14 Thread mike smith
On Tue, Mar 15, 2011 at 3:12 PM, David Connors  wrote:
> [Window Title]
> Windows Internet Explorer 9
> [Main Instruction]
> Internet Explorer 9 is now installed
> [Content]
> Some Internet Explorer files were in use during setup. Restart your computer
> to use Internet Explorer 9.
> [Restart now] [Restart later]
> Fail.

Yes, you still can't close IE completely...

and

http://www.itnews.com.au/News/251183,non-microsoft-hypervisors-miss-ie9-acceleration.aspx

VMware, and I don't know which others.


-- 
Meski

"Going to Starbucks for coffee is like going to prison for sex. Sure,
you'll get it, but it's going to be rough" - Adam Hills


Re: IE9 RTW

2011-03-14 Thread David Connors
[Window Title]
Windows Internet Explorer 9

[Main Instruction]
Internet Explorer 9 is now installed

[Content]
Some Internet Explorer files were in use during setup. Restart your computer
to use Internet Explorer 9.

[Restart now] [Restart later]

Fail.

On Tue, Mar 15, 2011 at 1:52 PM, Chris Walsh  wrote:

> I’d be interested to see their release plans but I wouldn’t count on a 9.5
>
>
>
> Seeing how they’ve been the past few releases I’m not excited.
>
>
>
> *From:* ozdotnet-boun...@ozdotnet.com [mailto:
> ozdotnet-boun...@ozdotnet.com] *On Behalf Of *David Burela
> *Sent:* Tuesday, 15 March 2011 2:49 PM
> *To:* ozDotNet
> *Subject:* IE9 RTW
>
>
>
> The final release Internet Explorer 9 is now available
> http://beautyoftheweb.com
>
> Go download it.
>
>
>
> Thoughts?
>
> I'm wondering if we'll start seeing smaller point releases (IE 9.5) as
> things get standardized. There has been a lot of talk about the release
> schedules of competing browsers (Firefox, Chrome).
>
>
>
> -David Burela
>



-- 
*David Connors* | da...@codify.com | www.codify.com
Software Engineer
Codify Pty Ltd
Phone: +61 (7) 3210 6268 | Facsimile: +61 (7) 3210 6269 | Mobile: +61 417
189 363
V-Card: https://www.codify.com/cards/davidconnors
Address Info: https://www.codify.com/contact


RE: IE9 RTW

2011-03-14 Thread Chris Walsh
I'd be interested to see their release plans but I wouldn't count on a 9.5

Seeing how they've been the past few releases I'm not excited.

From: ozdotnet-boun...@ozdotnet.com [mailto:ozdotnet-boun...@ozdotnet.com] On 
Behalf Of David Burela
Sent: Tuesday, 15 March 2011 2:49 PM
To: ozDotNet
Subject: IE9 RTW

The final release Internet Explorer 9 is now available http://beautyoftheweb.com
Go download it.

Thoughts?
I'm wondering if we'll start seeing smaller point releases (IE 9.5) as things 
get standardized. There has been a lot of talk about the release schedules of 
competing browsers (Firefox, Chrome).

-David Burela


IE9 RTW

2011-03-14 Thread David Burela
The final release Internet Explorer 9 is now available
http://beautyoftheweb.com
Go download it.

Thoughts?
I'm wondering if we'll start seeing smaller point releases (IE 9.5) as
things get standardized. There has been a lot of talk about the release
schedules of competing browsers (Firefox, Chrome).

-David Burela


Re: I.T. resume

2011-03-14 Thread Arjang Assadi
On 15 March 2011 13:56, Michael Minutillo wrote:

> One of the Naked Gun films had a newspaper headline of
>
> "Dyslexia For Cure Found"
>
> which for some reason I always remember
>

I had missed that, but now I will always remember it as well!
Thank you for mentioning it

Regards

Arjang


Re: I.T. resume

2011-03-14 Thread Michael Minutillo
One of the Naked Gun films had a newspaper headline of

"Dyslexia For Cure Found"

which for some reason I always remember


On Tue, Mar 15, 2011 at 7:33 AM, Simon Kuldin  wrote:

>  Reminds me of a classic Family guy sign..
>
>
>
> “The Dyslexic Foundation is proud to present Chevy Chase in the film
> Feltch”
>
>
>
>
>
> *Simon Kuldin* | Senior Technical Consultant | *PRISM*
>
> Suite 3, 214 Bay St Brighton, VIC 3186, Australia
>
> *P:* +61 3 9596 8633 *M:* 0408 310 957 *W:* www.prism-solutions.com.au
>
>
>
> [image: prism-v5.jpg]
>
> *People.  Responsive.  Innovative.  Simple.  Methodical.*
>
>
>
> *From:* ozdotnet-boun...@ozdotnet.com [mailto:
> ozdotnet-boun...@ozdotnet.com] *On Behalf Of *Greg Keogh
> *Sent:* Friday, 11 March 2011 7:07 PM
> *To:* 'ozDotNet'
> *Subject:* RE: I.T. resume
>
>
>
> So this dyslexic walks into a bra ...
>
>
>
> (name withheld)
>
<>

Removing an entity

2011-03-14 Thread Stephen Price
Hey all,

Apologies in advance for the crosspost

I have a Silverlight app and am using the Telerik RadGridView control. When
I press escape to undo a newly inserted row, I'm getting an exception thrown
that is essentially the Entity Framework removing the item from the source.
What's strange is that I have one page with a control that works, and a
number of other pages that do not work. I've decompiled the framework (using
Reflector Pro) to see what's actually going on and it seems like the one
that works removes the item once, and the ones that blow up tries to remove
the item twice. The second one seems to be a SubSet collection on the
entity.
I've not been able to find anything on this so far but thought I'd ask if
anyone has been this deep on EF before and might have come across it. I'm
still cutting my teeth on EF.
I'm working remote at the moment but can follow up with the actual error
message but its words to effect that the item is not in the collection when
it tries to remove it (the second time).

cheers,
Stephen


RE: I.T. resume

2011-03-14 Thread Simon Kuldin
Reminds me of a classic Family guy sign..

 

"The Dyslexic Foundation is proud to present Chevy Chase in the film Feltch"

 

 

Simon Kuldin | Senior Technical Consultant | PRISM 

Suite 3, 214 Bay St Brighton, VIC 3186, Australia

P: +61 3 9596 8633 M: 0408 310 957 W: www.prism-solutions.com.au
 

 

prism-v5.jpg 

People.  Responsive.  Innovative.  Simple.  Methodical.

 

From: ozdotnet-boun...@ozdotnet.com [mailto:ozdotnet-boun...@ozdotnet.com]
On Behalf Of Greg Keogh
Sent: Friday, 11 March 2011 7:07 PM
To: 'ozDotNet'
Subject: RE: I.T. resume

 

So this dyslexic walks into a bra ...

 

(name withheld)

<>