Computing desk | ||
---|---|---|
< May 24 | << Apr | May | Jun >> | May 26 > |
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. |
I'm using Adobe Captivate to make tutorial videosof a new software. My office uses 2 monitors for each computer, and for some reason, I can't record the videos when the application window stretches across both in the "maximised" form. The recording starts, and later, when I press the End button to stop recording, Adobe Captivate simply vanishes from the taskbar and quicklaunch menu, without having saved the recorded video. Can anyone help me? This happens only when I use the Automatic or manual mode. It works fine when I use the Full motion mode. However, in the full motion mode, the video is jerky, as if the individual slides are being played very slowly.. Can someone please tell me what I'm doing wrong? 204.4.182.14 (talk) 04:57, 25 May 2012 (UTC)
I am trying to understand this answer to a question on how to split a string into groups of 4, eg "Thequickbrownfoxjumps" to ["Theq","uick","brow","nfox","jump","s"]. The answer given is
"Thequickbrownfoxjumps".split("(?<=\\G.{4})")
I can see that the \\G.{4} matches the an expression of 4 characters either at the beginning or following the last match. I am not sure why this doesn't work by itself, but has to be included in a look-behind. Also, the look-behind is usually used with a following character, for example
(?<=a)b
matches the b (and only the b) in cab, but does not match bed or debt. So without anything following doesn't that mean it matches nothing? The expression does work (I've tested it) but I can't see how. -- Q Chris (talk) 10:27, 25 May 2012 (UTC)
[s[i:i+4] for i in range(0, len(s), 4)]
. -- BenRG (talk) 23:23, 25 May 2012 (UTC)Does anyone know of a handheld device that will 'read' then 'speak' text, which is available in the UK for a blind friend of mine please? Many thanks in anticipation.--85.211.222.224 (talk) 13:23, 25 May 2012 (UTC)
Many thanks, why did I not think of the RNIB ?!!!--85.211.222.224 (talk) 15:19, 25 May 2012 (UTC)
I would like to know who had invented the caller tune. It is to appreciate the person who used the time space for getting the revenue out of it. I would like to know the first mobile company who used this & the first caller tune used. — Preceding unsigned comment added by Satish.patwardhan99 (talk • contribs) 15:00, 25 May 2012 (UTC)
If I click on a file for an image, for instance this one, when using Firefox, and then click on "Full resolution", I get a black background surrounding the image. Firefox did not used to do that. I am assuming this is a consequence of a recent upgrade in Firefox. Safari still works fine in this regard. When using Safari, the "Full resolution" image has white surrounding it, which I find preferable. How do I make Firefox display these images on a white background? I don't see a "Preference" setting at Firefox that might adjust this but maybe I am overlooking it. Thanks. Bus stop (talk) 15:38, 25 May 2012 (UTC)
I was wary myself of it, but it definitely has its pluses (since so many images are on or are antialiased by having formerly been on white backgrounds), but really it should be a checkerboard. I assume a simple modification of userContent.css/userChrome.css or equivalent could manage it. ¦ Reisio (talk) 21:04, 25 May 2012 (UTC)
Are there any Android apps that can automatically detect when an appointment in Google Calendar requires me to wake up early, and set the alarm clock accordingly? NeonMerlin 21:41, 25 May 2012 (UTC)
Using Perl, I've slurped an article.
I need to match the first sentence of the article, but intervening references with a period in them create an ambiguity so the script does not find the period at end of the sentence (it finds the period in the embedded reference instead).
So, I'd like to be able to save references off, and put them back again into the first sentence after I've extracted and processed it.
How can this be done?
This message is a copy. Please reply to the original at Wikipedia:Village pump (technical)#replacing references temporarily. Thank you. The Transhumanist 21:55, 25 May 2012 (UTC)