Computing desk | ||
---|---|---|
< September 1 | << Aug | September | Oct >> | September 3 > |
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. |
My Asus Eee PC 1015PX has a set of multimedia keys (Volume up/down, mute, dim screen, etc...) on the top row on the same buttons as the F keys (F1, F2, F3, etc...). By default, when I press one of the keys, it triggers the F keys, in order to trigger the multimedia functions, I have to hold down the Fn keys on the bottom of the keyboard. Is there anyway to invert this such that when I press the keys without the Fn key it will trigger the multimedia functions, while pressing the keys while holding the Fn key will trigger the F keys?
I believe the programs responsible for this may be called "HotKeyMon.exe" and "HotkeyService.exe." However, I can only find these under the process list of task manager, and not in any program folder. Furthermore, task manager lists the user as SYSTEM, rather than my user name.
Thanks Acceptable (talk) 17:29, 2 September 2012 (UTC)
Hi all, I have a website that works perfectly well offline with explorer and firefox, but when online, it won't work with explorer. I've tracked the error messages, and explorer is definitely concerned about comments in my code starting with //@. I use //@ in javascript to mark major breaks in my code, so it would be unfortunate to have to change all of them, spread across about 5 or 10 files. Does anyone know what might be going on? I'm using lots of jquery include files from google code. Thanks in advance, IBE (talk) 17:44, 2 September 2012 (UTC)
Thanks for the link - googling wasn't helping me. People can add to this if they have any more detail, but I've put resolved so people know it's basically sorted. IBE (talk) 22:43, 2 September 2012 (UTC)
I normally use Internet Explorer to use YouTube. In the last 24 hours when I click to play a video, the entire screen goes white except for the video itself, which I cannot do anything with other than watch in full, no pausing or downloading. If I do click on the video while it is playing the entire screen will go black, although the sound will continue. At this point, if I right click on the black screen and select pop-out I will get a small viewer showing the video only which works properly, allows me to pause and download. But I have none of the background page allowing me to see related videos or comment, or the like. I have followed the suggestions at youtube's help page,disabled hardware accelerator, and used compatibility view in my browser, to no avail.
I tried using Firefox when this started, but Firefox will not even play the video, it shows me a simulated static screen with the words "An Error Occurred. Try Again Later." Are these problems possibly related?
Should I try reinstalling Flash, or an earlier version?
Can restoring default settings on IE help? I am reluctant to try anything drastic since I have no idea what is going on. Thanks. μηδείς (talk) 18:06, 2 September 2012 (UTC)
NOT
AGH!!! It's back! I think the problem may be with YouTube. I don't have problems watching or downloading videos from other sites. μηδείς (talk) 19:25, 2 September 2012 (UTC)
Previously, when I was using Fedora 14, I could open a bit more than 100 image files on GIMP at the same time (the size of each of them was in the order of one megapixel). Now when I have Fedora 17 and GIMP 2.8, I can't open even half that many. Trying to open 40 such files grinds the computer to a complete halt. Opening 30 files is as far as I can get, and even then I experience minor slowdowns. Is GIMP 2.8 really this greedy on resources? JIP | Talk 18:48, 2 September 2012 (UTC)
How many contents are present in MIS? — Preceding unsigned comment added by 188.52.106.189 (talk) 22:36, 2 September 2012 (UTC)
If you have a list of strings, like ['6', '9', '7', '14', '11', '9', '11'] and want a list of integers, how do you do it? Somehow sum(list) won't convert the elements on the fly. I know that I could convert and sum each element with
for i in list: a += int(i)
But, isn't an easier, standard way of doing this? Comploose (talk) 23:47, 2 September 2012 (UTC)
sum(int(i) for i in list)
or, to get a list of integers out of list:
list2 = [int(i) for i in list].
OsmanRF34 (talk) 00:21, 3 September 2012 (UTC)
list2 = map(int, list)
. Note that all these work because int
is not just a type name, but also a function that constructs integers from strings. --Stephan Schulz (talk) 00:33, 3 September 2012 (UTC)list2 = list(map(int, ['6', '9', '7', '14', '11', '9', '11']))
90.211.231.197 (talk) 13:18, 3 September 2012 (UTC)list
, as list is also a built-in function which takes an interable and produces an actual list. Python is forgiving in that it lets you do this, but if you forget and later (in a larger program) you try to call the builtin you'll get TypeError: 'list' object is not callable
, which can be hard to understand. 90.211.231.197 (talk) 13:18, 3 September 2012 (UTC)