topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Friday June 27, 2025, 12:25 pm
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Recent Posts

Pages: prev1 ... 71 72 73 74 75 [76] 77 78 79 80 81 ... 113next
1876
General Software Discussion / Re: DVCS ?
« Last post by ewemoa on May 10, 2011, 09:35 AM »
Thanks Armando, for your continued efforts  :Thmbsup:

As the topic of the index / staging area in Git is being touched upon, perhaps the following two extensions in Mercurial might be of interest:

  http://mercurial.sel...wiki/RecordExtension
  http://mercurial.sel...iki/CrecordExtension (demo video)

The record extension provides the record command, which may be used in lieu of commit. This command lets you choose which parts of the changes in a working directory you'd like to commit, at the granularity of patch hunks.

The crecord extension is a curses (i.e. text-based GUI) interface which provides the crecord and qcrecord commands that may be used in lieu of commit or qnew -f. These commands let you choose which parts of the changes in a working directory you'd like to commit, at the granularity of patch hunks or lines.

I've used both and much preferred the crecord extension experience (see video link above for a sample).  There were a few times when crecord didn't seem to take note of some things I wanted committed -- but perhaps this has been fixed by now as it has been over half a year since I used Mercurial.

At:

  http://kevin-berridg...ercurial-record.html

I encountered the following:

sometimes you forget to be proactive about separating your changes and then you want to untangle them after the fact.  You can do this using the Record extension.  This is another extension that ships with Mercurial, but you have to enable it to use it.

The Record extension is invoked with "hg record" and will go through the files you've changed (or just the ones you tell it to look at) and will iterative over each change "hunk" in the file.  A change hunk is a set of sequentially changed lines.  For each hunk it asks you if you want to record the change or not.  You simply say "y" if you want it, and "n" if you don't.

The result is a new commit that contains the changes you recorded.  It's a surprisingly easy process.

However, there's a flaw with this approach.  The resulting commit might be broken: it might not compile, or the tests might not pass.  And since it turns directly into a commit, you don't really get the chance to test it...
1877
Skwire Empire / Re: Release: sWeather (tray-based weather app)
« Last post by ewemoa on May 10, 2011, 09:18 AM »
Thanks for making this attempt.

I have 1.0.8 build 2 on two machines now and hope to report back with how it works before too long.


P.S. Sorry for taking a bit for getting back to you on this.
1878
Skwire Empire / Re: Release: sWeather (tray-based weather app)
« Last post by ewemoa on May 09, 2011, 04:16 PM »
but still problems when coming out of sleep-mode...
With respect to this, I've tested some code from:

  http://www.autohotke...orum/topic21697.html

Some (lightly edited) relevant bits include:

OnMessage(0x218, "DispatchOnResults")
Return

DispatchOnResults(wParam, lParam)
{
  If (lParam = 0)
  {
    ; PBT_APMSUSPEND or PBT_APMSTANDBY? -> System will sleep
    If (wParam = 4 OR wParam = 5)
    {
;
    }
    ; PBT_APMRESUMESUSPEND or PBT_APMRESUMESTANDBY? -> System wakes up
    If (wParam = 7 OR wParam = 8)
    {
;     
    }
  }
  Return
}

What is master skwire's opinion on this matter? ;)
1879
Thanks for the concrete steps!

Any chance this info could be made readily available via the application?  Or perhaps it is already and I haven't found it  :-[
1880
General Software Discussion / Re: DVCS ?
« Last post by ewemoa on May 08, 2011, 10:46 PM »
Regarding some SmartGit functionality...

not having an option to use the system JDK but installing it's own separate copy.
Currently there is something like the following bit in section 5.4 of the bundled file quick-start-guide.pdf:

5.4 JRE search order (Windows)
On Windows, the smartgit.exe launcher will search for an appropriate JRE in the following order (from top to bottom):
  • Environment variable SMARTGIT JAVA HOME
  • Sub-directory jre within SmartGit’s installation directory
  • Environment variable JAVA HOME
  • Environment variable JDK HOME
  • Registry key HKEY LOCAL MACHINE\SOFTWARE\JavaSoft\Java Runtime Environment

I haven't personally tested this functionality though as I'm currently trying the portable installation (it comes packaged with a JRE).
1881
Skwire Empire / Re: Release: sWeather (tray-based weather app)
« Last post by ewemoa on May 08, 2011, 08:31 PM »
Thanks for the update, it is working well here so far  :Thmbsup:
1882
FWIW, I think that's Japanese ;)
1883
Giving it a try.  Thanks for sharing :)
1884
Skwire Empire / Re: Release: sWeather (tray-based weather app)
« Last post by ewemoa on May 08, 2011, 12:33 AM »
    + Cosmetic GUI change.
Looks clearer from here -- thank you!  (And thanks Ath for the support ;) )

    + Added "Refresh weather data" entry to the Options menu.
    + Added F5 hotkey to refresh weather data when sWeather is the active
      window.
I see these and hope to be trying them soon.

    + Right-click the main dialog for two new copy-to-clipboard options.
It seems that the first popup menu item "Copy" leads to copying individual "chunks" of information (so "59%", but not "Humidity:") close to beneath where the pointer was when the popup menu was invoked.  Does this interpretation seem close?

FWIW, the popup menu seems to appear when right-clicking in the area where the 5 buttons are as well as in the status bar.  Is this behavior intentional?  At least with respect to the "Copy" menu item?
1885
Living Room / Re: After PSN. Who's next?
« Last post by ewemoa on May 05, 2011, 05:29 AM »
It sounds like LastPass is saying they may have had a breach -- PSN is a reference to the recent SONY incident, perhaps?
1886
Clipboard Help+Spell / Re: Clipboard Help+Spell Screencasts
« Last post by ewemoa on May 04, 2011, 04:33 PM »
On a tangential note, with these screencasts I tend to download them first (as the DownloadHelper FF plugin makes them available as mp4) and then view them using an external player such as smplayer or VLC.

I find that this kind of "offline" viewing provides a less frustrating, robust, and familiar experience :)

(I appreciate that one has a choice in the matter though (thanks mouser!) -- it's not always so easy to obtain a local copy.)

mumbling
Wish it were easy and reasonable to produce screencasts with navigable outlines...even nicer would be for 3rd parties to be able to provide separate files that could be used together with the original media to provide that navigability and annotation...

1887
Skwire Empire / Re: Release: sWeather (tray-based weather app)
« Last post by ewemoa on May 04, 2011, 09:09 AM »
Thanks for the background info -- I should patch myself to pay attention to status bar info more :)

I think the vertical separator is an improvement  :Thmbsup:
1888
Clipboard Help+Spell / Re: Clipboard Help+Spell Screencasts
« Last post by ewemoa on May 04, 2011, 08:26 AM »
Clicking on the triangle in the lower left for pausing and dragging the rectangle found to the triangle's right seemed to work for here for advancing / rewinding.

screencast-controls.png

FWIW, this was with Firefox 4.0.1.
1889
Living Room / Re: Techno Life Skills -- anything you buy, you must maintain
« Last post by ewemoa on May 04, 2011, 02:29 AM »
I try to apply some similar reasoning to data storage -- the less I store the better :)
1890
Skwire Empire / Re: Release: sWeather (tray-based weather app)
« Last post by ewemoa on May 04, 2011, 12:58 AM »
I really ought to clean it up a bit or notify the user in some way.
Heh heh.  Any word on this?

FWIW, I've nearly put together a utility to restart sWeather when my notebook resumes.  It uses code from:

http://www.autohotkey.com/forum/topic21697.html
1891
Skwire Empire / Re: Release: sWeather (tray-based weather app)
« Last post by ewemoa on May 03, 2011, 06:12 PM »
A minor point of confusion:

sweather-buttons.png

On a number of occasions when I go to look for the refreshing functionality in the main window, I end up looking through the menus and then (perhaps lamely) wonder how to refresh.  Somehow at first I thought each of the buttons were associated with items to their left (even though they don't really line up) and thus dismissed the possibility of the desired functionality being available via one of them.

I was thinking it might be a bit clearer if there were some border around the buttons or if the buttons were displayed more like a vanilla toolbar (though may be there's some downside to that?).

Does this seem pointless?
1892
General Software Discussion / Re: What Android Apps Do You Use?
« Last post by ewemoa on May 03, 2011, 09:15 AM »
I don't know of a good reader that supports all of those (tending to read pdfs with one set of apps and epub with another set).  Certainly would be interested in one though :)
1893
Developer's Corner / Re: Code Samples from Microsoft
« Last post by ewemoa on May 02, 2011, 11:32 PM »
Mmm, code samples.
1894
General Software Discussion / Re: What Android Apps Do You Use?
« Last post by ewemoa on May 02, 2011, 07:47 PM »
  • AndFTP (now anyone tell me there's ANY better FTP client?)
I think ES File Explorer may have FTP client support -- I haven't been using the FTP support though.  Did you happen to try it out?

On random occasions, I also use:
  • AndChat (the least ugly IRC client I could find)
I did not have any luck getting this to work :(  I keep getting what seems to be described here:

http://groups.google...ead/80413f78ea1fbce5
http://groups.google...ead/d02852e17123ecbe
1895
Finished Programs / Re: DONE: automated mp3 rip from video clip
« Last post by ewemoa on May 02, 2011, 03:22 AM »
I haven't worked out the details, but it seems like it might be possible to apply Drag and Drop Robot to get generated mp3 files to play.
1896
Finished Programs / Re: DONE: automated mp3 rip from video clip
« Last post by ewemoa on April 30, 2011, 11:05 PM »
I'm still pondering...

Thanks for asking :)
1897
Finished Programs / Re: DONE: automated mp3 rip from video clip
« Last post by ewemoa on April 30, 2011, 01:12 AM »
Seems like it was a good bet as that worked here.
1898
Finished Programs / Re: DONE: automated mp3 rip from video clip
« Last post by ewemoa on April 29, 2011, 04:54 AM »
Tried using Video2MP3.exe from cmd.exe:

C:\TEMP>Video2MP3.exe some.avi

Processing seemed to happen but didn't find an mp3 file in C:\TEMP (this is with Video2MP3.exe and a suitable config.ini in C:\TEMP).  After looking around a bit, found it in C:\.  Do others confirm this sort of thing happens in their environments too?

I realize that readme.txt has:

    1) Drag & drop a video file or files onto this executable file.

But perhaps it could work from the command line too?
1899
FWIW, took a quick look at Chrome's Bookmarks file...a single bookmark might look like:

    {
        "date_added": "12948459931936850",
        "id": "4",
        "name": "DonationCoder.com",
        "type": "url",
        "url": "https://www.donationcoder.com/"
     }

In FF (at least with 4) that might look like:

    {
        "index": 10,
        "title": "DonationCoder.com",
        "id": 22,
        "parent": 3,
        "dateAdded": 1260840327468000,
        "lastModified": 1260840327468000,
        "type": "text/x-moz-place",
        "uri": "https://donationcoder.com/"
    }
1900
Concerning FarrFox, although I'm not using it myself, I'm not sure it can handle Firefox 3 / 4 bookmarks (Since Firefox 3 bookmarks are stored in a database instead of a text file).
FWIW, for FF3 (may be in FF4 too) perhaps some of the following may be relevant:

  https://www.donationcoder.com/forum/index.php?topic=18615.msg195345#msg195345

  https://www.donationcoder.com/forum/index.php?topic=18615.msg195489#msg195489

IIRC, under the appropriate circumstances, one can get at slightly older bookmark info in the form of JSON files in the bookmarkbackups folder in one's profile directory.  Don't have any idea whether this is in a form at all similar to how Chrome stores things.

Last time this was discussed with mouser, I believe the conclusion that was reached was that to get up-to-date info, one would end up copying the sqlite data elsewhere to operate on it (blech)...looks like other folks may have reached similar conclusions:

  http://stackoverflow.com/questions/627937/how-do-i-access-firefox-3-bookmarks-while-firefox-is-running
Pages: prev1 ... 71 72 73 74 75 [76] 77 78 79 80 81 ... 113next