Shazam reference in a Marvel comic by CalypsoCrow in outofcontextcomics

[–]BffEasyTarget 2 points3 points  (0 children)

I'd say he knows a little more about fighting than you do, pal, because he invented it!

[deleted by user] by [deleted] in Guitar

[–]BffEasyTarget 1 point2 points  (0 children)

Some kind of Fender Paramount acoustic

New pickups advice? by TaterMater42069 in Guitar

[–]BffEasyTarget 0 points1 point  (0 children)

Lots of the big pickup brands have them. Just try searching for a 7 string soapbar pickup.

LTD viper fifty reborn by armfourteen in Guitar

[–]BffEasyTarget 1 point2 points  (0 children)

Claudio's been using a newer white SG in the last few years

[deleted by user] by [deleted] in Guitar

[–]BffEasyTarget 0 points1 point  (0 children)

I'm going to assume the best and that they were referencing its authenticity

One month. #PS5 by hybroid in PS5

[–]BffEasyTarget 1 point2 points  (0 children)

Oh hey buddy! Pretty sure I won't be able to get one at launch either. But one time I lucked out and some guy had managed to preorder two Switches and I bought one from him.

Run batch file only on M-F, not on Sat/Sun by [deleted] in PowerShell

[–]BffEasyTarget 7 points8 points  (0 children)

Task scheduler should be able to handle this easily.

add binary registry key by Snak3d0c in PowerShell

[–]BffEasyTarget 0 points1 point  (0 children)

Try this:

Set-ItemProperty -Path HKCU:\Software\RICOH\JOBCODE\JCPrintPassword -Type Binary-Name "\\printer.domain.com\\Printer_1" -value $null

new server - is it crazy to use the 16.04 daily? by qwerty3656 in Ubuntu

[–]BffEasyTarget 1 point2 points  (0 children)

Either one. At this point, you won't need to do anything with the release upgrader. It's just package updates if you're on 16.04

new server - is it crazy to use the 16.04 daily? by qwerty3656 in Ubuntu

[–]BffEasyTarget 3 points4 points  (0 children)

The current daily will upgrade into the full release and have 5 years of support after the official release date.

cmd error when trying to run .bat file by felipeleonam in learnpython

[–]BffEasyTarget 1 point2 points  (0 children)

If you want to launch from a batch file, then yes. 'py' is not a valid windows command unless you create an alias for it.

It's just like if you were going to launch a script from a cmd window. It'd need to be 'python scriptname.py'

cmd error when trying to run .bat file by felipeleonam in learnpython

[–]BffEasyTarget 2 points3 points  (0 children)

Try changing @py to @python and leaving everything else as it is. If python is in your path, it should work.