Tech blog with variety of postings on PC/laptop OS, software, hardware, web infrastructure such as domain registration, web hosting, CDN and DNS.
Amazon.com spelling mistake
Get link
Facebook
X
Pinterest
Email
Other Apps
You see mistakes all the time in really crappy ads, but it's interesting to see it from Amazon.com in a banner ad for their Video on Demand service. I guess they "instanty" made this ad and skipped quality control. xD
So for a few weeks now, I've been dismissing this new Windows 10 Creators Update nag dialog. Some days I wake up to find that my PC is already awake. It turns out that Microsoft's been doing something sneaky behind the scenes. I thought I'd done all the usual methods to prevent that scenario, such as disabling the mouse from being able to wake up Windows. Looking in Event Viewer (eventvwr), I see the wake source is Unknown. We can run a command in Windows Powershell to list all Scheduled Tasks that could wake the PC: Windows PowerShell Copyright (C) 2015 Microsoft Corporation. All rights reserved. PS C:\WINDOWS\system32> Get-ScheduledTask | where {$_.settings.waketorun} TaskPath TaskName State -------- -------- ----- \Microsoft\Windows\.NET Framework\ .NET Framework NGEN v4.0.30319... Disabled \Microsoft\Windows\.NE...
I don't mind seeing the occasional banner or text ad while browsing web sites. What I do mind is malvertising, auto-playing videos (despite steps taken by browsers to stop auto-play) and excessive ads that slow down my browser to the point where it affects the user experience. This is on a modern quad-core desktop PC with 16 GB of RAM. To that end, I gave in and installed uBlock Origin a few years ago. If ads and third-party tracking hadn't gotten so bad, I would not have had to resort to an ad-blocker. These days, sites are fighting back. They're using ad-block detection scripts in order to request that you whitelist their site. In some cases, I am happy to do this. Recently, I've seen a new one with the logo "Powered by Admiral", which pops up a modal and asks you to whitelist. These are usually on sites that have a ton of auto-play videos and Taboola ads ("Doctors hate this one weird trick!"). I get it. Sites need ad revenue to fund thei...
I had a piece of C# vendor code to install for authentication: IDictionary userInfo = new Dictionary (); userInfo.Add(Agent.TOKEN_SUBJECT, sAMAccountName); userInfo.Add(“domain”, domain); Kept getting errors: CS0246: The type or namespace name 'Dictionary' could not be found CS0305: Using the generic type 'System.Collections.Generic.IDictionary ' requires '2' type arguments Turns out the vendor did not specify which classes to include, so I had to do a bit of digging. I found some posts that said Dictionary was no longer being used in .NET 2.0 (not sure about that). To resolve this, make sure you import the following in order to instantiate a Dictionary object with 2 params: using System; using System.Collections; using System.Collections.Generic; ASP.NET, .NET 2.0
Comments
Post a Comment