Win10 Strikes again: More Bad (new) UI/UX
-
Get a 4K monitor. :-) I'm currently counting 19 items on the taskbar (excluding the Cortana and Task View icons), and it's not even using one third of the available width.
dandy72 wrote:
and it's not even using one third of the available width.
...width?? Oh, wait, you have the taskbar at the bottom (horizontal). That's old school. Mine's on the left side (vertical). It makes sense if you think about it since screens are so wide now. I've made a lot of converts to this new TaskBar Vertical Way. If you try it for a few minutes, you'll change too. :rolleyes: Now, I've planted the idea you can't not try it. :laugh: And, yes, at work I have two screens and it is on the left side of my right screen and it works great. It's right there in the middle of the desktop. :thumbsup: What can I say, I'm amazingly innovative. :-\ :laugh:
-
dandy72 wrote:
and it's not even using one third of the available width.
...width?? Oh, wait, you have the taskbar at the bottom (horizontal). That's old school. Mine's on the left side (vertical). It makes sense if you think about it since screens are so wide now. I've made a lot of converts to this new TaskBar Vertical Way. If you try it for a few minutes, you'll change too. :rolleyes: Now, I've planted the idea you can't not try it. :laugh: And, yes, at work I have two screens and it is on the left side of my right screen and it works great. It's right there in the middle of the desktop. :thumbsup: What can I say, I'm amazingly innovative. :-\ :laugh:
Ok, so my 19 (+2) icons are taking roughly half the vertical space on the 4K monitor. FWIW, I've used vertical taskbars for a good while, years ago. I'm somewhat ambivalent; I can take it or leave it. One of my secondary monitors is arranged vertically (1200x1920)--even though it's great for long web pages or coding windows (which benefit from being taller than wide), a vertical taskbar is definitely a non-starter on *that* monitor, as you're already left with very little space horizontally. And I *hate* auto-collapsing taskbars, so I'm not even going there.
-
Jacek Gajek wrote:
*A friend or whoever comes to a visit* - Hey, what's a pass to WI-FI? - Give me a second, I will check in the settings... uhm, oh... uhuh.... aaah...
I've solved that problem with a PowerShell script. Sorry about the formatting - it insists on pasting it that way.
$output = netsh wlan show profiles
$profiles = @()foreach ( $line in $output )
{
$index = $line.LastIndexOf( ": " )
if ( $index -eq -1 ) { continue }
$afterColon = $line.Substring( $index + 2 )
if ( $afterColon.Trim() -ne "" ) { $profiles += $afterColon }
}$profilesWithPasswords = @()
foreach ( $profile in $profiles | Sort-Object )
{
$output = netsh wlan show profiles "$profile" key=clear
$pwd = ""
$authentication = ""foreach ( $line in $output ) { $index = $line.LastIndexOf( "Authentication" ) if ( $index -ne -1 ) { $index = $line.LastIndexOf( ": " ) if ( $index -eq -1 ) { $authentication = "" } else { $authentication = $line.Substring( $index + 2 ) } continue } $index = $line.LastIndexOf( "Key Content" ) if ( $index -ne -1 ) { $index = $line.LastIndexOf( ": " ) if ( $index -eq -1 ) { continue } $pwd = $line.Substring( $index + 2 ).Trim() continue } } if ( $pwd -eq "" ) { if ( $authentication -ne "Open" ) { $pwd = "" } #else { $pwd = "" } } $profilesWithPasswords += New-Object -TypeName PSObject -Prop ( @{ 'Profile'=$profile; 'Password'=$pwd } )
}
Write-Host "Found $($profilesWithPasswords.Count) wifi profiles:"
$profilesWithPasswords | Format-Table Profile, Password -
...seriously? Not saying that I know every XKCD comic, but I totally do... and that solution reminds another one: xkcd: Command Line Fu[^]
-
Jörgen Andersson wrote:
So allow me to introduce the Apple Pencil - Apple[^]
:laugh: :laugh: :laugh: I know. My son has an iPad that he uses for notes at college and it really works for him but when I saw that he had purchased a stylus I was like screaming, "Steve Jobs killed my stylus and now they're back?!?!!!!! No way!!!" Remember how Jobs ranted against the stylus saying no one wanted to use them. Arghghghgggg!!!!
-
*A friend or whoever comes to a visit* - Hey, what's a pass to WI-FI? - Give me a second, I will check in the settings... uhm, oh... uhuh.... aaah... Navigating new-old Win 10 UI reminds me this comic: xkcd: Troubleshooting[^]
-
Ok, so my 19 (+2) icons are taking roughly half the vertical space on the 4K monitor. FWIW, I've used vertical taskbars for a good while, years ago. I'm somewhat ambivalent; I can take it or leave it. One of my secondary monitors is arranged vertically (1200x1920)--even though it's great for long web pages or coding windows (which benefit from being taller than wide), a vertical taskbar is definitely a non-starter on *that* monitor, as you're already left with very little space horizontally. And I *hate* auto-collapsing taskbars, so I'm not even going there.
-
Had to kill them off so they could invent them! :laugh:
Common sense is admitting there is cause and effect and that you can exert some control over what you understand.
-
dandy72 wrote:
Ok, so my 19 (+2) icons are taking roughly half the vertical space on the 4K monitor.
:thumbsup: It's all good. I was just kidding about horizontal being old school of course. :)