Re: [OT] DevOps login fails

2020-01-27 Thread Emily Waghorne
I have had this problem and I had to clear cache (to remove cookies?) to
get it to reset itself. Assuming other members of your organisation can log
in fine.

Emily

On Tue, 28 Jan 2020 at 9:59 am, Greg Keogh  wrote:

>
> https://{yourorganisation}.visualstudio.com is now the old format.. The
>> newest is now https://dev.azure.com/{yourorganisation} (Since Microsoft
>> changed from Visual Studio to Azure Devops sometime last year)
>>
>
> Okay, I'll change my bookmarks to the new format. Sadly it doesn't help my
> problem.
>
> My problem is so serious that I sent a free tier support request, and I
> have had 3 exchanges with a support person already who asked for a Fiddler
> dump and some screenshot from my Azure AD portal screen. We determined that
> the problem is independent of my network and environment. I suspect an AD
> problem. It's still in flight …* GK*
>


Re: Ozdotnet list

2017-04-04 Thread Emily Waghorne
Hello everyone,

I haven't posted for ages either, partially I think because the (extreme!)
specifics of what I'm doing are usually covered elsewhere, but where I
think this group really excels with the higher level discussions - I am
still learning about new options via the list and I really like the local
factor (and even took it overseas with me when I worked overseas for a
while - like a thread to home). I will follow the crowd, and maybe even try
to contribute a bit more since you've brought us all out of our shells with
this question Stephen!

Emily

On Wed, 5 Apr 2017 at 00:37 Matthew Lam  wrote:

> Hi all, Been following since I started my career too. Wouldn't a Reddit
> channel work well here? And you still get the benefit of getting a lot of
> the nice things like being notified on my phone..
>
> Cheers Matt
>
> On 4 Apr 2017 10:15 PM, "Stephen Price"  wrote:
>
> If it pans out how I hope, the crowd will be right here in your inbox
> where you left em.
>
> If it doesn't do elist then its a fail and we'll leave it as it is.
>
>
> Doesn't mean we can't create a pretty website (if we don't go with
> Discourse) and put together some stickers and tshirts etc. Spread the word
> around and get more members. I'd like to get Discourse up and running first
> as I think it would be better for new members to not have to change a week
> after joining the list.
>
>
> Dang, my oldest email goes back to 02/12/2002. That's impressive. A lot
> has changed over the years!
> You guys are awesome, this list has helped me heaps over those 15ish
> years.
>
> --
> *From:* ozdotnet-boun...@ozdotnet.com  on
> behalf of Adrian Halid 
> *Sent:* Tuesday, 4 April 2017 7:29:33 PM
> *To:* 'ozDotNet'
> *Subject:* RE: Ozdotnet list
>
>
> Will follow the crowd. +1 for the email list format.
>
>
>
>
>
> Regards
>
>
>
> Adrian Halid
>
>
>
> *From:* ozdotnet-boun...@ozdotnet.com [mailto:
> ozdotnet-boun...@ozdotnet.com] *On Behalf Of *noonie
> *Sent:* Tuesday, 4 April 2017 7:24 PM
> *To:* ozDotNet 
> *Subject:* Re: Ozdotnet list
>
>
>
> Happy to move and follow the crowd. I really do like the list format
> though.
>
>
>
> Gmail does a really good job with it and I'm afraid that I might just
> slide away if I had to visit yet another website :-p
>
>
>
> Lists are old fashioned but, like bow ties, they're still cool after all
> these years.
>
>
>
> --
>
> noonie
>
>
>
>
>
>
>
>
>
> On 3 Apr. 2017 17:00, "Stephen Price"  wrote:
>
> It's been some years since the big move to Mr Connors gracious hosting of
> the eList. Thanks for that by the way David!
>
>
>
> For whatever reason it lives on, despite the low traffic. Perhaps it's the
> entertainment value of people who live/vent there. Hard to measure. I
> expect David would have a way to tell how many people are still on the
> list.
>
>
>
> I do think Aussie developers deserve/need our own identity, and our own
> community. Well, it does exist but I do wonder if other forums might better
> suit the needs (and yet still we are here with people subscribed...).
>
>
>
> As an Admin of the current group (workload of said role is rather low. ie
> It's been almost ten years since I had to do anything Admin like. The Admin
> list seems to be gone)
>
>
>
> I've noticed that Discourse.org now exists and is open source. And Free.
> And has code highlighting built in. And also has elist delivery out of the
> box. As well as a web interface if that floats your boat. Ticks all the
> boxes from what we were looking for many years ago.
>
>
>
> Full feature list is here https://www.discourse.org/about/
>
>
>
> I'd like to propose we move to it and actively promote it once it's all up
> and running. Given the lists currently existing cover a few different
> topics, not just AusDotNet, we should move them all over. Except
> Silverlight. Don't even talk to me about that. Just don't. Ok?
>
>
>
> Seriously, stop looking at me.
>
>
>
> So how do we brand it? OzDev? Did we ever end up with a domain name? It
> would be a good time to get one if not.
>
>
>
> The best part about this is David will have to do most of the work, but if
> we still have any Admins left on this list (maybe it's just me and David?)
> assistance would be good, just put your hand up.
>
>
>
> I have a fond memory of the AusDotNet list and have been on it for my
> entire developer career. It's been invaluable. Time to bring it kicking and
> screaming into the Internet of today, a limelight for fellow Aussie
> developers both existing, and yet to be. We have a big community and I'd
> like to be able to give back to it.
>
>
>
> Will do some work on a logo (or outsource it to my daughter who'd doing a
> graphic design degree)...
>
>
>
> Discuss.
>
> Stephen
>
>


Re: [OT] sql convert datetime problem; forcing order of AND statements

2012-10-29 Thread Emily Waghorne
Hi Wal,

I'm not sure it's a case of one being executed first, because I assume the
where clause has to be executed in its entirety before the engine decides
if it matches or not. You are thinking like the  operator in c# which
only executes the second half of the comparison if the first half passes
first.

So basically you have to write it so that it filters on IsDate and only
then you run your convert. The best way might depend on the volume if data
you have. Sub query? CTE?
Emily

On Monday, 29 October 2012, Wallace Turner wrote:

  I'm running into an issue with a select query; it appears the CONVERT
 operator is performed before any other condition in the WHERE clause.

 Consider the data below:



 Now some queries,
 This one works, note only 6 rows are returned:

 SELECT Value,CONVERT(DATETIME, [Value],6) from DatesTest
 WHERE
 IsDate([Value])=1



 This one does *not *work: Conversion failed when converting date and/or
 time from character string.

 SELECT Value from DatesTest
 WHERE
 IsDate([Value])=1
 AND CONVERT(DATETIME, [Value],6)  GETDATE()


 1) Why is the CONVERT statement being executed first?
 2) How can the IsDate be forced to execute first so the second statement
 works?

 Cheers

 Wal



biac.pnghjffbgac.png

Re: Questions about iPad and iPhone

2012-07-10 Thread Emily Waghorne
My understanding of Mono is that it only supports a subset of the iOS
functionality, so check to make sure what you want to use is made
available.

Native iOS is considered the way to go if you want to be taken
seriously by iPhone and iPad users but it depends a bit on your app
and your target audience. And a web based solution is definitely much
easier! (Consider android, windows mobile, tablets etc and you have a
LOT of different OS's to support...)

Emily


[Sent from my iPhone]

On 10 July 2012 16:59, Craig van Nieuwkerk crai...@gmail.com wrote:



 The second question is a doozy and out of my areas of experience. Can
 someone confirm that .NET and the runtime is not available for iPad or
 iPhone? What kits and languages do you use to write iPad and iPhone apps? Is
 Object C still for that sort of thing? Or Java? Or HTML5? If anyone knows
 anything technical about writing apps for Windows and Mac and the issues
 involved I’d love to hear your comments.





 If depends on if your users expect native apps or not. If they are happy
 with a mobile web app that probably makes it a lot easier, you could create
 an API and mobile web app with MVC4.

 If they expect a native app you may want to check out MonoTouch.
 http://xamarin.com/monotouch/ I have not used it but it looks good. It does
 not support the full .NET framework though so that could be an issue.