501
DesktopCoral / Re: DesktopCoral crashing
« Last post by dr_andus on July 16, 2014, 06:24 AM »Are you using the latest version?-mouser (July 16, 2014, 05:29 AM)
I think so (v1.10.01). I've just emailed you.
Are you using the latest version?-mouser (July 16, 2014, 05:29 AM)
Vulnerabilities ( 8 )
Information about applications and operating system components in which vulnerabilities have been detected.
C:\Program Files (x86)\Adobe\Adobe Digital Editions 2.0\DigitalEditions.exe
C:\Program Files (x86)\LibreOffice 4.0\program\soffice.exe
C:\Program Files (x86)\program\soffice.exe
C:\Program Files (x86)\QuickTime\QuickTimePlayer.exe
C:\Program Files (x86)\Safari\Safari.exe
C:\Program Files (x86)\Story Lite with Java Library\lib\bin\java.exe
C:\Program Files (x86)\Story Turbo\lib\bin\java.exe
C:\Windows\SysWOW64\Adobe\Shockwave 12\SwInit.exe
Other issues (15)
Information about vulnerabilities associated with the settings of installed applications and the operating system.
"System process debugger detected"
"Process termination timeout is out of admissible values"
"Service termination timeout is out of admissible values"
"Autorun from hard drives is allowed"
"Autorun from network drives is enabled"
"CD/DVD autorun is enabled"
"Removable media autorun is enabled"
"Windows Explorer - show extensions of known file types"
"Microsoft Internet Explorer: clear history of typed URLs"
"Microsoft Internet Explorer - disable caching data received via protected channel"
"Microsoft Internet Explorer: disable sending error reports"
"Microsoft Internet Explorer: clear the list of trusted domains"
"Microsoft Internet Explorer: clear list of pop-up blocker exceptions"
"Microsoft Internet Explorer: enable cache autocleanup on browser closing"
"Windows Explorer: display of known file types extensions is disabled"
Just for comparison, I switched over to Avast! Free for A/V and ditched MSE. I have not noticed any slowdown, slowness in email, etc.-x16wda (July 10, 2014, 07:54 PM)
I also get a message about A/V not working, but that is limited to when the engine is updating.-x16wda (July 10, 2014, 07:54 PM)
BTW: Did your on-line Kaspersky scan find anything?-crabby3 (July 08, 2014, 06:40 AM)
Yesterday I ran this free Kaspersky scan http://usa.kaspersky...scan?ICID=INT1676497-crabby3 (July 07, 2014, 10:33 AM)

But yes, it does feel like a beta still. I ran into a number of bugs on a Win7, 64-bit system (although the developer does warn about them). E.g. I couldn't detach Notepad2-mod, once attached. Also, when moved between different monitors (with different resolutions and sizes), the docked windows can get a bit messed up, so need manual rearranging.How about the latest version of TaskSpace? I really need your opinion...
I do hope this app will mature soon.-dr_andus (February 01, 2014, 06:18 AM)-cshnik (July 07, 2014, 02:58 AM)

From the description i can't quite tell if the new method will be better for you, but it's now an option, so it's safe for you to upgrade (the option is for each item, where you set the start+end dates).
Let me know.-mouser (May 17, 2014, 01:24 PM)
For diaries however, I'd think one of the wiki apps might also be a possibility.-40hz (June 18, 2014, 06:07 PM)
... today I came across this:Chrome extension All Seeing Eye indexes all text in your Web history - CNET, and found in the Chrome Web Store:-IainB (June 17, 2014, 08:56 PM)

Circles and arrows and a paragraph linked to each one explainin' what each one wuz may help.-MilesAhead (May 30, 2014, 05:18 AM)

Do you use a clipboard manager like ArsClip or CHS? If so, you could use their search-and-replace feature to do this. Or, try Clippy or Text Monkey, which I mentioned in a previous thread: Explote a clip from the clipboard-rjbull (May 22, 2014, 03:51 PM)
;-----------------------
; ALT+W to count words |
;-----------------------
!W:: ; ALT + W to activate script
ClipSaved := ClipboardAll ; Save the entire clipboard to a variable of your choice.
Clipboard :=
Send ^c
; Send {Left}
ClipWait, 2
StringReplace, clipboard, clipboard, ', x, All
ClipWait, 2
StringReplace, clipboard, clipboard, -, x, All
RegExReplace( Clipboard, "\w+", "", Count ) ; PhiLho
Clipboard := ClipSaved
; To have a ToolTip disappear after a certain amount of time
; without having to use Sleep (which stops the current thread):
#Persistent
ToolTip, Word Count: %Count%
SetTimer, RemoveToolTip, 5000
return
RemoveToolTip:
SetTimer, RemoveToolTip, Off
ToolTip
Return