Re: [OT] Assign app role in subscription

2023-05-08 Thread Richard Carde
On Tue, 9 May 2023 at 08:27, Greg Keogh via ozdotnet wrote: > In the Select Members panel on the right, it'll show users and groups in >> the list by default, but doesn't show applications. You may just need to >> search for the application service principal by name. >> > > This morning I sit dow

Re: [OT] VS2022 Replace in Files problem

2022-07-14 Thread Richard Carde via ozdotnet
Greg I just did a test as you requested. VS 2019 Pro 16.11.17 works as expected. VS 2022 Pro 17.2.6 does not make changes, as you have experienced, even though the output window says otherwise. . Regards, RC On Thu, 14 Jul 2022 at 14:10, Greg Keogh via ozdotnet wrote: > Folks, about 2 months

Re: ozdotnet - New List Infrastructure

2022-06-23 Thread Richard Carde
Another +1 for the new list. This is the first David Kean post that didn't need to have the "Not Spam" treatment in the Gmail spam folder. On Thu, 23 Jun 2022 at 16:48, David Kean via ozdotnet wrote: > Also appreciate you keeping this alive. As a matter of interest, how many > folks are still

[Trivia] PowerShell / .Net implicit string conversions

2022-06-23 Thread Richard Carde
I have no idea how widely known this is, but it annoyed me for an hour or so. PS C:\> *(Get-Date).ToString()* 23/06/2022 2:06:24 PM PS C:\> *"$(Get-Date)"* 06/23/2022 14:06:33 Huh? I know why there's a difference. Anyone been stung by that before? The implicit conversion does this: PS C:\> *

Re: here's a question for the list: NT

2022-06-22 Thread Richard Carde
Greg You are correct. C:\>*tzutil /l* (UTC+09:30) Adelaide Cen. Australia Standard Time (UTC+09:30) Darwin AUS Central Standard Time Check with PowerShell: PS C:\> *([System.TimeZoneInfo]::FindSystemTimeZoneById("Cen. Australia Standard Time")).SupportsDaylightSavingTime* True PS C:\> *([Sys

Re: ozdotnet - New List Infrastructure

2022-06-21 Thread Richard Carde
đź‘Ť On Tue, 21 Jun 2022 at 15:36, David Burstin via ozdotnet < ozdotnet@ozdotnet.com> wrote: > Cool. Thanks Richard. Appreciated. > > On Tue, 21 Jun 2022, 15:27 David Connors via ozdotnet, < > ozdotnet@ozdotnet.com> wrote: > >> Richard Carde was a huge help tod

Re: Testing GTG

2022-06-20 Thread Richard Carde
Exchange Online not going to Junk now. From: Richard Carde via ozdotnet Sent: Tuesday, 21 June 2022 11:20 To: ozdotnet Cc: Richard Carde Subject: Testing GTG Looks like it's good to go??

Testing GTG

2022-06-20 Thread Richard Carde
Looks like it's good to go??

Re: Testing new list infra

2022-06-20 Thread Richard Carde
Reply-All. All good. On Tue, 21 Jun 2022 at 10:58, David Connors via ozdotnet < ozdotnet@ozdotnet.com> wrote: > Testing the new list infra. > > David Connors > da...@connors.com | M +61 417 189 363 > Telegram: https://t.me/davidconnors > LinkedIn: http://au.linkedin.com/in/davidjohnconnors > >

Re: DI in MVC

2019-12-10 Thread Richard Carde
On Fri, 29 Nov 2019 at 11:22, David Burstin wrote: > Hi guys, > > Got a DI question: > ... > Is there a way that I can get MVC DI to resolve IHoldAllInterfaces so that > at runtime it will pass in an object that holds all of the internal > interfaces already resolved per the startup.cs file? >

Re: MSDN Portal decommission left me without access keys

2018-08-21 Thread Richard Carde
FYI I had the opposite where I could download my keys but my benefits and subscription details were gone after I had renewed via the Azure Portal (in the second year after having an annual MSDN retail sub for ages). The Portal has my subscriptions but my.visualstudio.com was ignorant of that. Or

Re: Using Azure blob storage for static web sites

2018-07-16 Thread Richard Carde
On 12 July 2018 at 13:10, Nick Randolph wrote: > I thought that they’d fixed that in Azure where you can assign custom > domain w SSL via CDN (https://buildazure.com/2017/ > 02/08/setup-ssl-tls-on-azure-cdn-custom-domain/)? > > I did a quick test and this does indeed work for the static web sites

Re: Links from Microsoft Word losing authentication context.

2018-01-20 Thread Richard Carde
Rings a bell and I've come across this quite some time ago. Refer to the following, it probably relates to your situation: https://support.microsoft.com/en-us/help/899927/you-are-redirected-to-a-logon-page-or-an-error-page-or-you-are-prompte *The Web site in the hyperlink uses a Single Sign-On (S

Re: [OT] Windows SCHANNEL Protocol registry keys

2014-11-30 Thread Richard Carde
Noonie IISCrypto is your friend. But you should really understand a little about protocols and cipher suites and the ordering thereof. Test your public site with Qualys ssllabs. You're aiming for an A. https://www.ssllabs.com/ssltest/ Using SHA1 certs will lower the score but that's not too muc

Re: X509 certificate and trust

2014-11-30 Thread Richard Carde
Greg What it sounds like you are being asked to do is certificate based authentication. This is something that cannot be forged, unlike a 'magic number'. The server can verify the validity of the cert and identify the client. You might have individual certs to identify a user or device. I've do

Re: IIS7 Application Pool Identity on domain joined machine

2014-01-08 Thread Richard Carde
rsonation when the machine is domain joined... > > So must be the way the account is resolved inside SQL ? Latest sqlncli? > David. > > David Connors > da...@connors.com | M +61 417 189 363 > Download my v-card: https://www.codify.com/cards/davidconnors > Follow me on Twit

Re: [OT] FTP client problems

2013-10-18 Thread Richard Carde
Or SFTP (not to be confused with FTPS) which works flawlessly through firewalls, is easy to reverse publish and is secure. I don't understand why Server 2012 still doesn't do it. -- Richard Carde Ph: +44 7956 356 226 > On 18 Oct 2013, at 04:22, Grant Maw wrote: > >

Kerberos Pt 2

2011-11-22 Thread Richard Carde
e used anyway). Have I not read something in the docs or is this a general gotcha that one should be aware of? -- *Richard Carde* E: rich...@carde.id.au

LINQ to SharePoint Issues and 100% CPU in w3wp.exe

2011-11-22 Thread Richard Carde
aused by the use of the static Dictionary and static helper? - Can it be that the use of a static helper combined with anonymous delegate which might get compiled into a totally static method be the cause (I don't know enough about the innards of the IL to know or check)? You probably want to see code, but I thought the blog posts should do the trick as there's not much more to it. -- *Richard Carde* E: rich...@carde.id.au

Re: Anyone got some sort laser cutter better than a CNC lathe?

2011-07-22 Thread Richard Carde
To get lower than 1mm resolution, chemical milling or photochemical etching might be then next step. NFI on the cost. -- Richard Carde On 21 Jul 2011, at 02:25, Keith Peck wrote: > Have a chat to a stamp maker. I'm sure you aren't the first person to want a > metal stamp and

Re: add code to all button on my asp.net website?

2011-04-20 Thread Richard Carde
store it in the DB or session state. When you've processed it, mark it as such and move the user on - a GUID is often used for this purpose. Job done! No jiggery-pokery on the client side where you have less control. Good luck, and do let us know the site you're working on if it g

Re: adding ssl to asp.net website

2011-04-13 Thread Richard Carde
On Tue, Apr 12, 2011 at 9:44 AM, Ken Schaefer wrote: > > > > > *From:* ozdotnet-boun...@ozdotnet.com [mailto: > ozdotnet-boun...@ozdotnet.com] *On Behalf Of *Richard Carde > *Sent:* Tuesday, 12 April 2011 2:46 PM > > > On Sun, Apr 10, 2011 at 12:55 PM, Anthony wr

Re: adding ssl to asp.net website

2011-04-11 Thread Richard Carde
eans they'll lose their basket upon entering http mode. Roll on HTTP Strict Transport Security so a site owner/developer can, in theory and in a user-friendly way, turn on TLS at the server and ensure the session remains secure (or fails altogether). -- *Richard Carde* E: rich...@carde.id.au M: +44 7956 356 226

Re: In praise of robocopy

2011-04-09 Thread Richard Carde
#x27;gets going' so it probably depends on the circumstances. High latency gigabit networks (DCs hundreds of miles apart) do get you head scratching until you know what's going on and SMB2 and TCP scaling are really important. -- Richard Carde On 9 Apr 2011, at 08:35, David Connors

Re: Windows 7 explorer quirks [OT]

2011-01-23 Thread Richard Carde
, showing in Explorer. I think this is just a side-effect of MS trying to make Explorer less blocking (more multi-threaded?). It think it's more apparent on my SSD. > Thanks for the advice. > > Regards Peter > -- Richard Carde

[OT] Creating new posts

2010-09-20 Thread Richard Carde
I merely make the simple suggestion that a new thread is started by starting a new message. If this is too hard, I shall suffer the pain. Thanks in advance. -- Richard Carde Sent from my phone. Please excuse spelling mistakes & brevity.

Re: Embedding SQL index hints into SQL commands for SQL SERVER.

2010-06-25 Thread Richard Carde
batch processing died. This was an exceptional case where the 3rd party system was joining over 20 tables. It's a relatively simple query, it *should* be quick. > > > Regards Peter Maddin > > Regards, -- Richard Carde

Re: How to validate directory path

2010-06-18 Thread Richard Carde
On 18 Jun 2010, at 09:01, Richard Carde wrote: On 18 Jun 2010, at 01:01, Tom Rutter wrote: The time in fact can vary. Some times it can be a few seconds and other times it may be 10s of minutes. I would hate it as a user if i make a request and then 5 minutes later i get told that the

Re: How to validate directory path

2010-06-18 Thread Richard Carde
already doesnt exist? -- Richard Carde

Re: OT - Magic Mushroom song from the 1980s

2010-06-08 Thread Richard Carde
As I recall there was a similar effort on the trusty old Commodore 1541 disk drives - although I'm not sure it was good for the drive head. RC On 8 Jun 2010, at 08:57, "Greg Keogh" wrote: I did not see it happen myself, but a Honeywell engineer told me in the late 70s that one of his colle

Re: ASP.NET Web Forms vs MVC vs ...

2010-03-25 Thread Richard Carde
, the fun one could have... -- David Connors (da...@codify.com) -- Richard Carde

Re: ASP.NET Web Forms vs MVC vs ...

2010-03-24 Thread Richard Carde
f poorly constructed/documented code which is just picked up and used. Don't get ne wrong, there's plenty of good stuff too! As for the use of such imperative code, each to their own. What would you do if Model.Customers it customer.Name was null? -- David Connors (da...@codify.com) -- Richard Carde

Re: ASP.NET Web Forms vs MVC vs ...

2010-03-24 Thread Richard Carde
as the original intent of my question I thought the wide range of experience of subscribers might solicit some different views - not necesarily invoke such emotive ones. 'nuff said. -- Richard Carde

Re: ASP.NET Web Forms vs MVC vs ...

2010-03-18 Thread Richard Carde
On 19 Mar 2010, at 01:24, silky wrote: Yeah, but there are obviously implementation issues and training issues there. Complexity leads to errors. There's a balance point somewhere, your just moving the complexity. Depends on how far you take the abstraction. I would argue that the HTTP

Re: ASP.NET Web Forms vs MVC vs ...

2010-03-18 Thread Richard Carde
Pty Ltd - www.codify.com 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 -- silky http://www.programmingbranch.com/ -- Richard Carde

Re: ASP.NET Web Forms vs MVC vs ...

2010-03-18 Thread Richard Carde
a very big worry when people writing the framework can be so fundamentally stupid as to think that avoiding XSS issues is a function of input, not output. Just HtmlEncode() when persisting the input. That will make it safe and save you a heck of a lot of work down the track. ;) -- David Connors (da...@codify.com) -- Richard Carde

ASP.NET Web Forms vs MVC vs ...

2010-03-18 Thread Richard Carde
s for outputting into strings used by JavaScript - watchout for the apostrophes and backslashes etc. Thank goodness ASP.NET traps 'dodgy' characters like < and > in user supplied data -- Richard Carde

Re: Calling a class library C# method from ms access

2010-03-09 Thread Richard Carde
he string to be hashed, you at least remove the rainbow attack - which is as good as 'unhashing'. I'd look to using the username or primary key of the user to further differentiate - this will ensure no two hashes of the same password match. HTH. Regards Peter On 9/

Re: Calling a class library C# method from ms access

2010-03-08 Thread Richard Carde
'. Regards Peter Maddin Applications Development Officer PathWest Laboratory Medicine WA Phone : +618 9473 3944 Fax : +618 9473 3982 E-Mail : peter.mad...@pathwest.wa.gov.au -- Richard Carde

Re: Problem with GetFiles() or me?

2010-03-05 Thread Richard Carde
ycle (ie a month away from > shipping), this won’t be fixed for the RTM of 4.0. However, it will become a > candidate for a future release or service pack. > > Thanks David. I'll use Mark's ingenious "workaround" - by adding a period to the path - for now. > Regards > > > > David > -- Richard Carde

Problem with GetFiles() or me?

2010-03-05 Thread Richard Carde
mat("Processing file {0}", file)); } } } } --8K---8K---8K-- -- Richard Carde

Re: PDF Printers

2010-03-04 Thread Richard Carde
e printing route, I've seen "Amyuni Document Converter 2.51" used a lot. It came bundled with QuckBooks Pro 2008 package as "QuickBooks PDF Converter" printer. Amyuni's promotional documentation states: "*Edit and print PDF documents programmatically without any us

Re: ASP.NET dynamic images

2010-03-04 Thread Richard Carde
est. I always* "read the label and use as directed". YMMV. > Greg > *Save for those labels which recommend 2-3 "units" of alcohol per day, unless "unit" can be mean"pint". -- Richard Carde

Re: ASP.NET dynamic images

2010-03-04 Thread Richard Carde
ations on the server - but you takes your chances on stability. Look for a lightweight thread-safe image processing library perhaps. > Greg > -- Richard Carde

Re: And we're back

2010-03-01 Thread Richard Carde
rror handling code. > I feel sorry for you... Your hard work will, one day, be rewarded. > -- > David Connors (da...@codify.com) > -- Richard Carde ___ ozdotnet mailing list ozdotnet@ozdotnet.com http://prdlxvm0001.codify.net/mailman/listinfo/ozdotnet

RE: And we're back part 2

2010-03-01 Thread Richard Carde
Last test from my, ugh, WM6 device. Regards, RC -Original Message- From: David Connors Sent: 01 March 2010 13:26 To: ozdotnet@ozdotnet.com Subject: And we're back part 2 This time with reply to list and not reply to sender (thanks for finding that one Richard!). -- David Connors Softw