Wikipedia:Reference desk/Archives/Computing/2012 July 19

From Wikipedia, the free encyclopedia
Computing desk
< July 18 << Jun | July | Aug >> July 20 >
Welcome to the Wikipedia Computing Reference Desk Archives
The page you are currently viewing is an archive page. While you can leave answers for any questions shown below, please ask new questions on one of the current reference desk pages.


July 19[edit]

USB gadgets[edit]

Is such usb gadgets available in market?

1)USB moniter

2)USB Sound Card

3)USB hard disk with 2 TB capacity that do not require external power supply

Xentram (talk) 01:25, 19 July 2012 (UTC)[reply]

  1. Yes
  2. Yes
  3. Yes

- Cucumber Mike (talk) 07:16, 19 July 2012 (UTC)[reply]

I would be skeptical of a USB monitor, though. USB does not support anywhere near the bandwidth required by an ordinary video signal, so the data needs to be compressed for transmission to the monitor, which introduces all kinds of potential problems. Looie496 (talk) 17:10, 19 July 2012 (UTC)[reply]
USB monitors do exist. They've generally got small resolutions and integrated graphics cards to minimize the amount of data transmitted. --Carnildo (talk) 02:18, 21 July 2012 (UTC)[reply]

And most importantly, they have a very low refresh rate and image quality, compared to VGA/HDMI etc. 109.67.203.144 (talk) 09:12, 21 July 2012 (UTC)[reply]

How do I make a global keyboard shortcut to paste the current date yyyy-mm-dd under Windows7 Ultimate?[edit]

Resolved

I often, in many different places, need to type in the current date in the format: yyyy-mm-dd
and sometimes in the format: yyyy-mm-dd hh_mm
I'm using various applications under Windows7 Ultimate.
How do I make global keyboard shortcuts that will paste these dates anywhere? --89.9.211.221 (talk) 16:32, 19 July 2012 (UTC)[reply]

  1. Download and install AutoHotkey.
  2. Right-click an empty spot on your desktop or in a folder of your choice.
  3. In the menu that appears, select New -> AutoHotkey Script. (Alternatively, select New -> Text Document.)
  4. Type a name for the file, ensuring that it ends in .ahk. For example: Test.ahk
  5. Right-click the file and choose Edit Script.
  6. On a new blank line, type the following: #T::Send %A_YYYY%-%A_MM%-%A_DD%
  7. Save and close the file.
  8. Double-click the file to launch it. A new icon appears in the taskbar notification area.
  9. Hold down the Windows key and press the spacebar. A web page opens in the default browser.
  10. To exit or edit the script, right-click the green "H" icon in the taskbar notification area.
I've set the shortcut as 'Windows-T' (i.e. hold down the Windows key and press T). That is the '#T' part of the code above. You can change this to anything you like. # stands for the Windows key. You can see other codes for different keys here.
AutoHotKeys is a fairly powerful program. The full documentation is available here.
Finally, I should say that I haven't tested the script. You should always be careful when running stuff on your computer because some guy on the internet told you to - please be doubly so in this case. - Cucumber Mike (talk) 18:53, 19 July 2012 (UTC)[reply]
Great! As of 2012-07-21 :-) :-) it works perfectly! Thank you!
-- (OP) 89.9.198.9 (talk) 16:40, 21 July 2012 (UTC)[reply]