topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Thursday November 27, 2025, 1:55 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 ... 131 132 133 134 135 [136] 137 138 139 140 141 ... 222next
3377
Nice work, 4wd.  Well done.   :D
3378
Finished Programs / Re: DONE: Drop target to move files to predefined folders
« Last post by skwire on March 29, 2011, 04:23 PM »
Maybe you remember this thread http://www.donationcoder....m/index.php?topic=24936.0.

Sure, I remember.  :)

Both your tools need to be present in the subdirectory with the mp3 files.
[...]
I have TAR and the other program stored in d:\MP3. I need it in every subdir.

Correct me if I'm wrong but are you copying the TAR.exe file into every folder that you have MP3s in?  If so, why?!
3379
Living Room / Re: The Official DonationCoder.com card game: CodyCards
« Last post by skwire on March 29, 2011, 11:08 AM »
The cards look great.  =]
3380
N.A.N.Y. 2011 / Re: NANY 2011 Release: List Numberer
« Last post by skwire on March 29, 2011, 09:07 AM »
It's there...maybe clear your cache?
3381
N.A.N.Y. 2011 / Re: NANY 2011 Release: List Numberer
« Last post by skwire on March 29, 2011, 08:53 AM »
Here you go:

Website | Download
v1.0.7 - 2011-03-29
    + Added ability to edit/save a list of prefixes and suffixes.
3382
Post New Requests Here / Re: IDEA to avoid double typing
« Last post by skwire on March 29, 2011, 05:32 AM »
Though I think you'll find using software to solve this more cumbersome than getting a different keyboard, here's a way using AutoHoktey.  Just play with the timeout value of the second Input call (T0.08) until it's how you want.  The value is in seconds.

Code: Autohotkey [Select]
  1. {
  2.     Input, foo, L1 V I,
  3.     If ( ErrorLevel = "MAX" )
  4.     {
  5.         Input, bar, T0.08
  6.     }
  7. }
3383
N.A.N.Y. 2011 / Re: NANY 2011 Release: Snap DB
« Last post by skwire on March 28, 2011, 03:49 PM »
Skwire, thanks for your excellent program, I can see many uses.

You're welcome and welcome to DonationCoder.   :)

I have some suggestions that would make it even more useful for me.
1. Don't clear the filter match field when you turn off filter mode - I often want to use it again.
2. A method to import a CSV file, use its first line as header names and delete that row in one operation.
3. More filter types like "doesn't equal", "doesn't contain", "greater than", "less than", regular expression match.

  • Can do.  Added to the ToDo list.
  • I understand the reasoning behind this.  However, this would sort of break the mass import you can do by dropping a bunch of CSV onto the list (or multi-selecting them via the file choose dialog).  Did you see the Edit/Context menu option to convert a row to the header?  Maybe a solution/option would be if there was only one file dropped (or selected via the dialog), auto convert the first line into a header.
  • I'll add these to the ToDo list as well.

Thanks for the feedback.   :)
3384
N.A.N.Y. 2011 / Re: NANY 2011 Release: List Numberer
« Last post by skwire on March 28, 2011, 01:14 PM »
That would be cool!  Would it just keep track of the history, like the last 10 items?  Either way, it sounds like a gret idea.

I could make it like that or make it so you can add/edit the entries manually.  That way, favourites don't get cycled out.
3385
N.A.N.Y. 2011 / Re: NANY 2011 Release: List Numberer
« Last post by skwire on March 28, 2011, 12:19 PM »
If you want, I can make it so the prefix and suffix fields are combo boxes.  That way, you could save your favourites of each.
3386
Skwire Empire / Re: SFV Ninja (Simple File Verification application)
« Last post by skwire on March 28, 2011, 12:14 PM »
I just tested out the latest FlashSFV and, unless I'm mistaken (entirely possible), here are some of my findings:

  • It can't handle Unicode paths.
  • It can only create an SFV file out of files from one folder.
  • It does not save the SFV with relative paths.  In other words, if you save the created SFV into another folder other than the one with the checksummed files, it won't work anymore.

The above items are important to me so SFV Ninja does all three.  It handles Unicode paths just fine and writes its SFV files out in UTF-8 format.  You can also build an SFV file out of files that come from any number of folders.  The resulting SFV file is then saved with paths relative to the save folder of the SFV file.  Furthermore, I tested out SFV Ninja on a 4GB VM hard drive file and it worked just fine.  Give it a shot, you may like it.   :D
3387
Skwire Empire / Re: SFV Ninja (Simple File Verification application)
« Last post by skwire on March 28, 2011, 11:24 AM »
does it have decent progress bars?
Does speed rock?
Does it handle >2GB files?
Does it support the MD5 SFV extensions?

  • The progress bar is less than desirable by your standards, I'd say.
  • Speed should be fine.  It is for me, anyway.
  • I've tested with 1GB sized files.  Now tested successfully with 4GB sized files.
  • No, only standard CRC32 SFV files.  Now supports SFV, MD5 & SHA-1 checksum files.

One of the main reasons I wrote this five years ago was that I wanted to be able to easily scan through a directory, load all the SFV files found and batch check them.  Nothing I could find back then really suited my purposes.
3388
N.A.N.Y. 2011 / Re: NANY 2011 Release: List Numberer
« Last post by skwire on March 28, 2011, 10:42 AM »
Wonderful!  I'm not sure if this is what you mean, but you do know that you can insert tabs in the prefix or suffix using the \t token, right?  Anything else you want added to this?
3389
When I copy and paste them into a text editor from the browser, I am expecting something like this:
[SNIP]

Ah, you want the text with all the markup and links and such, eh?  If so, you will probably need to spring for Surfulator or maybe you could get by with the Scrapbook extension.

skwire - How did you insert that cool scrolling text box on the forum?  I tried to figure out how to do that, and just used a table to set my example apart. 

I used the AHK code highlighter.  It's available from the Code Highlighting drop-down list when writing a post/reply.
3390
My snippet should work with any flavour of AHK.  All you should need to do is copy out the snippet to a <something>.ahk file, edit the hotkey if you want, save and run then run the .AHK file.
3391
Skwire Empire / Release: SFV Ninja (Simple File Verification application)
« Last post by skwire on March 27, 2011, 03:41 PM »
Name SFV Ninja (Simple File Verification application)
Short Description SFV (Simple File Verification) application.  It also supports MD5, SHA-1, SHA-256, SHA-384, and SHA-512 checksum files.  I wrote this several years ago for my own use but cleaned up the code for a public release.
 
Features
  • Two verifcation modes.  The first will verify all files in the list like any typical SFV application.  The second mode will only verify any newly added files.  This second mode allows you to "update" an existing SFV file without having to verify all of the files.
  • Recursively scan a folder for SFV/MD5/SHA-1/SHA-256 files and load them all at once.
  • Uses relative paths whenever possible when generating checksum files.
Supported OSes Windows 7.  Probably works, but not tested, on Windows XP/Vista/8/10
Website http://skwire.dcmembers.com/fp/?page=sfv-ninja
Download Link Download
Author Jody Holmes - Skwire Empire

main.png
3392
N.A.N.Y. 2010 / Re: NANY 2010 Release: Anuran
« Last post by skwire on March 27, 2011, 02:04 PM »
When your computer goes into idle, do you just lock the desktop (similar to the Win-L hotkey)?  Or, are you suspending/hibernating it?  Also, how are you dismissing the popup?  Escape key?  Click on the X button?
3393
I had to add another Sleep between the ^c and Clipboard get:

Yep, and that's exactly why I mentioned it.  The clipboard is a fickle beast and working with it can be a right pain in the arse.  I'm glad you got it working.   :D
3394
Are you familiar with AutoHotkey?  If so, here's a way to do it with AutoHotkey that seems to work pretty well.  It uses F2 as a hotkey which will only be active if a Firefox or Chrome window is active.  You can change the hotkey to whatever you like.  Also, you may have to play around with the sleep values a bit if it doesn't work right for you immediately.

Code: Autohotkey [Select]
  1. ; Allow partial titlebar text matches.
  2.  
  3. ; Create a window title group to match on for our hotkey.
  4. GroupAdd, myBrowsers, Mozilla Firefox
  5. GroupAdd, myBrowsers, Google Chrome
  6.  
  7.  
  8. #IfWinActive, ahk_group myBrowsers
  9. {
  10.     F2::
  11.     {
  12.         ; Copy user selection to a variable.
  13.         SendInput, ^c
  14.         myText := Clipboard
  15.         Sleep, 100
  16.        
  17.         ; Switch to address bar in browser and copy URL to another variable.
  18.         SendInput, ^l
  19.         Sleep, 100
  20.         SendInput, ^c
  21.         Sleep, 100
  22.         myURL := Clipboard
  23.         Sleep, 100
  24.    
  25.         ; Format data bits.    
  26.         myData := myURL . "`r`n`r`n" . myText
  27.         Sleep, 100
  28.            
  29.         ; Put formatted data back onto clipboard.
  30.         Clipboard := myData
  31.     }
  32.     Return
  33. }

3395
What do you use as your default browser (and version)?
3396
N.A.N.Y. 2010 / Re: NANY 2010 Release: Anuran
« Last post by skwire on March 26, 2011, 07:31 PM »
I can't think of a reason that it won't pop up.  I'm going to assume restarting Anuran solves the issue?
3397
N.A.N.Y. 2010 / Re: NANY 2010 Release: Anuran
« Last post by skwire on March 26, 2011, 05:46 PM »
Did the icon stay green or turn blue?
3398
Living Room / Re: When you make your 100'th Post
« Last post by skwire on March 25, 2011, 02:03 AM »
Hey, cool...and a good post to do it on as well.  =]
3399
Finished Programs / Re: DONE: Scan music collection for missing covers/artwork
« Last post by skwire on March 25, 2011, 01:49 AM »
Thanks for the new features!

You're welcome.  I still need to add your request of a percentage instead of a pixel count.   :-[
3400
Skwire Empire / Re: Birthdays (simple birthday tracking app)
« Last post by skwire on March 25, 2011, 12:10 AM »
I serve the public and the public hath spoken!  The age column stays. 

As for your issue, nogojoe, I haven't seen that happen.  The columns get resized when the app first displays, when a birthday is added, and when you resize the app.  If you lose a column again, try resizing the app slightly to see if that brings them back in line.
Pages: prev1 ... 131 132 133 134 135 [136] 137 138 139 140 141 ... 222next