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 ... 133 134 135 136 137 [138] 139 140 141 142 143 ... 222next
3426
Skwire Empire / Re: Birthdays (simple birthday tracking app)
« Last post by skwire on March 21, 2011, 01:49 PM »
Website | Download
v1.0.6 - 2011-03-21
    + "Add as monthly" option when adding a birthday.  (Thanks, Stoic Joker)

3427
Skwire Empire / Re: Birthdays (simple birthday tracking app)
« Last post by skwire on March 21, 2011, 12:35 PM »
For the new parent users, can you add something that does (something like) month anniversaries for the newly born?

Do you mean it would add a separate entry in every month for said newborn?

Thanks :up:

You're welcome.
3428
Skwire Empire / Re: Birthdays (simple birthday tracking app)
« Last post by skwire on March 21, 2011, 12:22 PM »
Could a Double-Click on an empty spot be turned into Add birthday, instead of an errormessage? That's a bit more intuitive,

Website | Download
v1.0.5 - 2011-03-21
    + Double-clicking an empty area in a listview will now add a birthday.
      (Thanks, Ath)
3429
Post New Requests Here / Re: Podcast Conversion and dates
« Last post by skwire on March 21, 2011, 12:07 PM »
Here's a proof-of-concept script.  

  • Save this to <whatever>.ahk and put it in your fre:ac folder.
  • Edit the myOutputDir variable to an output folder of your choice.
  • Run the script.  You should see a small square begging for you to drop some files on it.
  • Drop some files on it!
  • They will be converted to mp3 and placed in your chosen output directory with the original modification times.

Code: Autohotkey [Select]
  1. ; Set up environment.
  2. SetWorkingDir, %A_ScriptDir%
  3.  
  4. ; Variables.
  5. AppName     := "Podblivion"
  6. myOutputDir := "c:\tmp2"
  7.  
  8. ; Build simple drop target.
  9. Gui, Add, Text, xm ym w150 h150 Center 0x200 vtxtDisplay, Drop files here...
  10. Gui, Show, , % AppName
  11. Return ; End of auto-execute section.
  12.  
  13.  
  14. GuiDropFiles:
  15. {
  16.     myFiles := A_GuiEvent
  17.     Loop, Parse, myFiles, `n
  18.     {
  19.         If ( A_LoopField != "" )
  20.         {
  21.             myFilePath := A_LoopField
  22.            
  23.             ; Notify user that we're doing something.
  24.             SetTimer, Progress, On
  25.            
  26.             ; Get modified time of dropped file.
  27.             FileGetTime, modTime, % myFilePath, M
  28.            
  29.             ; Crack path and form up output filename with mp3 extension.
  30.             SplitPath, myFilePath, , , , myFileNameNoExt
  31.             myOutputFile := myOutputDir . "\" . myFileNameNoExt . ".mp3"
  32.            
  33.             ; Set parameters for the freaccmd.exe program.
  34.             cmdParams := "-e LAME -m VBR -b -q 5 -d " . myOutputDir . " """ . myFilePath . """"
  35.            
  36.             ; Convert file.
  37.             RunWait, % A_ScriptDir . "\freaccmd.exe " . cmdParams, , Hide
  38.            
  39.             ; Set output file's modified time to input file's value.
  40.             FileSetTime, % modTime, % myOutputFile, M
  41.         }
  42.     }
  43.     SetTimer, Progress, Off
  44.     GuiControl, Text, txtDisplay, Drop files here...
  45. }
  46. Return
  47.  
  48.  
  49. {
  50.     GuiControl, Text, txtDisplay, Converting |
  51.     Sleep, 250
  52.     GuiControl, Text, txtDisplay, Converting /
  53.     Sleep, 250
  54.     GuiControl, Text, txtDisplay, Converting -
  55.     Sleep, 250
  56.     GuiControl, Text, txtDisplay, Converting \
  57.     Sleep, 250
  58. }
  59. Return
  60.  
  61.  
  62. {
  63.     ExitApp
  64. }
  65. Return
3430
Post New Requests Here / Re: Podcast Conversion and dates
« Last post by skwire on March 21, 2011, 11:17 AM »
Either a program that can suck in an audio file (or a list of files) and squirt out an MP3 with the same time/datestamp as the original

fre:ac actually comes with a commandline version in its install so that, combined with a small bit of AHK script, would make this a piece of cake.  Heck, you could even use the lame.exe file directly.  Do you have AutoHotkey installed?
3431
Skwire Empire / Re: Birthdays (simple birthday tracking app)
« Last post by skwire on March 21, 2011, 09:50 AM »
Website | Download
v1.0.4 - 2011-03-21
    + Added "Check/Uncheck this month only" functionality to the right-click
      context menu.  (Thanks, PhilB66)
    + Added notes field.  (Thanks, PhilB66)
    + Added optional "Year" field when adding a birthday.  Bear in mind that the
      displayed age is what the person WILL BE in the current year (even if
      their birthday hasn't actually arrived for that year).  (Thanks, oblivion)     
    * Double-clicking a birthday will now edit it.
3432
Skwire Empire / Re: Birthdays (simple birthday tracking app)
« Last post by skwire on March 20, 2011, 03:48 PM »
It's already in the next build.  =]
3433
Post New Requests Here / Re: IDEA: Automated Metadata Tool
« Last post by skwire on March 19, 2011, 11:18 PM »
That site doesn't appear to have any sort of search API so it would be manual page scraping.  Of course, I could be missing something...
3434
Skwire Empire / Re: Birthdays (simple birthday tracking app)
« Last post by skwire on March 19, 2011, 10:47 PM »
Here are the two choices.

Integrated:
Birthdays_2011-03-19_224453[1].png

Separate (popup is complete resizable and positionable):
Birthdays_2011-03-19_222911.png
3435
Post New Requests Here / MOVED: IDEA: URL Sorter
« Last post by skwire on March 19, 2011, 08:17 PM »
3436
Finished Programs / Re: DONE: Regex Sorter
« Last post by skwire on March 19, 2011, 08:06 PM »
Fantastic.  I'm glad to help.
3437
N.A.N.Y. 2010 / Re: NANY 2010 Release: ClipTrap
« Last post by skwire on March 19, 2011, 08:05 PM »
I'll add it to my ToDo.  Thanks for the feedback.
3438
Living Room / Re: First person mario
« Last post by skwire on March 18, 2011, 07:45 PM »
Really well done.  I especially like the "original view" inset. 
3439
Finished Programs / Re: DONE: Regex Sorter
« Last post by skwire on March 18, 2011, 03:27 PM »
Shardnax...do we call this one done?
3440
Skwire Empire / Re: Birthdays (simple birthday tracking app)
« Last post by skwire on March 18, 2011, 03:02 PM »
1. add to the right-click menu a check/uncheck all just for a specific month.
2. would love to add a comment/note by double clicking on a particular birthday. Is that possible?

  • For sure.
  • Hmmm...I'm trying to keep the listviews very simple but, yes, I could do this.  There are two schools of thought:
    • Store the data (single line only) in a hidden listview column and then display the data in the status bar or edit field at the bottom of the main dialog when said birthday is highlighted.
    • Provide one popup (pop out cake?! =) generic edit field where you can keep notes on all the birthdays.  Think a basic notepad-style window.
3441
Skwire Empire / Re: Birthdays (simple birthday tracking app)
« Last post by skwire on March 18, 2011, 11:39 AM »
Keep in mind that CovArt Ops does NOT download covers or anything like that.  It simply shows you which folders do/don't have art in them (as well as their "quality" for lack of a better term).  My PlayTime app will show you the bitrates of your audio files.
3442
Skwire Empire / Re: Birthdays (simple birthday tracking app)
« Last post by skwire on March 18, 2011, 10:48 AM »
Helps when I uncomment certain lines of code, eh?   :D

Website | Download
v1.0.3 - 2011-03-18
    ! Size & position weren't saved under some circumstances.  (Thanks, zzynx)
3443
Skwire Empire / Re: Birthdays (simple birthday tracking app)
« Last post by skwire on March 18, 2011, 10:27 AM »
Can I do some more suggestions?  ;)
1. Don't enable the "Edit birthday" and "Delete birthday" buttons and (main and right-click) menu items if no birthday is selected.
    (That's better than letting the user click/choose it and then saying "Please select a birthday to edit")
2. Make the button tooltips correspond the menu item texts ("birthday" vs. "entry")
3. Make the 'Day' columns by default as narrow as possible (to display the "Day" header). That way more space can be used for the name.
4. I don't know if AHK allowst it, but it would be great to be able to resize/maximize the application.

All done in the latest update. 

5. I was rather surprised that pressing ESC exits the application

That's how I like apps to work.  Moreover, using escape calls the same routine as exiting the app so everything is saved, etc.

Website | Download
v1.0.2 - 2011-03-18
    + Made the form resizable.  (Thanks, zzynx)
    * Enabled/disabled toolbar icons as necessary.  (Thanks, zzynx)
    * Changed menu item text to match tooltips.  (Thanks, zzynx)
    ! Temp directory wasn't getting deleted.
3444
Skwire Empire / Re: Birthdays (simple birthday tracking app)
« Last post by skwire on March 18, 2011, 03:01 AM »
Thanks for the feedback, zzynx; Give this version a try.

Website | Download
v1.0.1 - 2011-03-18
    + Added a "Delete" key hotkey to delete an entry.
    + Added a "Ctrl-N" hotkey to add a new entry.
    + Added right-click context menu to the listviews.
    * Changed a few toolbar icons.
    + Added entry edit functionality.  (Thanks, zzynx)
    ! Fixed a delete entry bug.  (Thanks, zzynx)


main.png
3445
Finished Programs / Re: DONE: Regex Sorter
« Last post by skwire on March 17, 2011, 12:08 AM »
It should be in the same order as on top.

The screenshot is correct.  In other words, "Example 2" should come before "Examplel" in an alpha sort.  Please redownload the zip file.  I fixed an issue where any trailing newlines would negate any output.
3446
Finished Programs / Re: DONE: Regex Sorter
« Last post by skwire on March 16, 2011, 10:12 PM »
Give this a shot:  http://skwire.dcmembers.com/apps/snacks/RegExTextSorter.zip

The app is still early so nothing is saved, etc.  The RegEx needle dropdown does have two entries in it, though, to help you out; the first one ought to work for your URLs.  At this point, you can only use one back-reference.

Here are some screenshots:

2011-03-16_215510.png

2011-03-16_215527.png
3447
Skwire Empire / Re: Birthdays (simple birthday tracking app)
« Last post by skwire on March 16, 2011, 04:04 PM »
A little background on this app...  My wife's grandmother has had a cloth version of this magneted to her refrigerator for time immemorial.   :D  It has twelve clear pockets (one for each month) and within each pocket is a paper card with all family children's and grandchildren's names and day handwritten on them.  Each month, she checks it, writes out birthday cards and sends them out.  She's never missed one in the eighteen years I've known her.   :P  My wife asked if I could make a software version of it and what you see is what I came up with.  She uses the checkboxes to mark off who she has sent cards or gifts to for the year.  She also prefers to-the-point apps that aren't complicated with all manner of bells and whistles.  As such, there is no complicated scheduler or anything like that in this app (nor will I add one  :)).

I wanna be like Granpa Pete and have 2 birthdays a year!  :'( Also, I see the sex-change went well for him. Her.

Actually, their last name is Peterson, hence, the Grandma and Grandpa Pete.   :P
3448
Finished Programs / Re: DONE: Regex Sorter
« Last post by skwire on March 16, 2011, 02:53 PM »
Yeah, it's general.  Paste a list, provide a needle regex and sort.
3449
General Software Discussion / Re: The best RSS reader?
« Last post by skwire on March 16, 2011, 02:18 PM »
I tried RSSOwl at some point, but since it's Java based it was slower and took up comparatively much memory as I remember it.
Please note that on current computers you likely won't notice it, but since mine is a bit older, stuff like that actually matters

I have an older computer as well (4+ years) and, like you, usually avoid badly-done Java apps.

It may take up some resources, but after having compared it with 'most' of the other readers, I consider it to be the best and most suited to my needs.

Absolutely agreed.  What RSSOwl offers me more than offsets a bit of slowness and resource usage.
3450
Finished Programs / Re: DONE: Regex Sorter
« Last post by skwire on March 16, 2011, 02:05 PM »
I have this pretty much done.  Would you mind providing a list of valid URLs and your expected sorting of them for testing purposes?  If they're sensitive links, feel free to PM the list.
Pages: prev1 ... 133 134 135 136 137 [138] 139 140 141 142 143 ... 222next