Welcome Guest.   Make a donation to an author on the site May 23, 2013, 10:03:11 AM  *

Please login or register.
Or did you miss your validation email?


Login with username and password (forgot your password?)
Why not become a lifetime supporting member of the site with a one-time donation of any amount? Your donation entitles you to a ton of additional benefits, including access to exclusive discounts and downloads, the ability to enter monthly free software drawings, and a single non-expiring license key for all of our programs.


You must sign up here before you can post and access some areas of the site. Registration is totally free and confidential.
 
Check out and download the GOE 2007 Freeware Challenge productivity tools.
   
  Forum Home Thread Marks Chat! Downloads Search Login Register  
  Show Posts
      View this member's profile 
      donate to someone Donate to this member 
Pages: Prev 1 2 [3] 4 5 6 7 8 ... 59 Next
51  Main Area and Open Discussion / Living Room / Re: I know I've got a dose of absenteeism... but it's going to get worse on: August 30, 2011, 04:07:11 AM
Actually our boots are just about the only piece of clothing that we have not renewed. Most of our other clothes were sourced at second-hand stores (so well worn in Wink) -- but they were all either getting too thin or worn to take on a 2 month walk (last weekend it was my shorts that I put a hole in Sad ).

Our boots are not that old, they're propper hiking boots (unfortunately they don't come with an odometer), but I'm sure they'll last the distance. They are a little on the heavy side, but we like the confidence that gives: lots of snakes down that way (mind you the light weight walkers swear by just a pair of volleys -- I have read somewhere that 1kg on your feet is that same as 5kg on your back).

The camp shoes we've got double as river shoes and are pretty good walking sandals in their own right -- so will get us out of an emergency.
52  Main Area and Open Discussion / Living Room / I know I've got a dose of absenteeism... but it's going to get worse on: August 29, 2011, 10:44:29 PM
Sandi and I are 78 hours from flying out to Western Australia and the start of a 1,000 km walk from Perth to Albany. The Bibbulmun Track is well known, and getting more so; I'm not sure how we came across it now, but it feels like we've been working toward this point for about a year.

We've been in active planning for the last 6 months, and actively training for the last 4 weeks, and at the moment I'm at fever pitch and hardly able to control myself with the excitement (or is it nerves?).

Anyway, we'll be gone for just over 2 months and completely out of communication (to tell the truth, the planning and training has been so intense that I feel that I've not been on the same planet this year: I haven't kept up with NANY at all, and don't even get to read my feeds properly, all my little projects are lying at the bottom of the hard drive...).  Actually, we will be communicating: we carry a SPOT Messenger that acts both as a EPIRB and a satellite messenger, so we'll be communicating our current location -- this will be displayed on our site: mitupela.net/gnw/bibbulmun.html, as well as FaceBook and Twitter (if you're interested). 

It's at this point you stop and ask yourself "Why the hell are we taking leave without pay to spend two months walking 1,000 km in Western Australia's sun, wind and rain?" The answer is complex, and simple: We both enjoy getting away, into the Australian bush, by ourselves and our God. The solitude and isolation that blooms into a deep belonging and closeness feeds both us and our relationship. The simplicity of reducing your day to putting one foot in front of the other generates a buoyancy in our spirits.

Of course, putting your foot in front of the other 1.3 million times is something we've not done before in one go smiley so it'll be interesting to see what lies in the unknown beyond our previous boundaries.

All the best for the next two months whilst we're away!

53  DonationCoder.com Software / YUMPS / Re: A new web project: YUMPS on: August 16, 2011, 06:29:59 AM
Perry, that walking trip looks wild.  Thmbsup

It's made me feel selfish really  embarassed 

It's pushed just about everything else out of the way (NANY, coding, drawing, etc)... But it's an investment into my marriage that I'm very much looking forward to.  It's also for me (which makes me feel selfish)... but hopefully it will reap dividends in other areas  smiley

I'm not looking for investors since i don't think something like this can be sold.. But i'd be very pleased to find a company that would be willing to fund further development/customization for use in other projects, enough so i could keep working on it.

  • Can't donations be gathered pre-project? (just give me the opportunity...)
  • Can't the project have a funded version as well as a donation version? (although that sounds like a headache)
54  DonationCoder.com Software / YUMPS / Re: A new web project: YUMPS on: August 15, 2011, 03:18:14 AM
I'll post some updates and screenshots as I go along -- still a ton of work to do and it's a rather massive project.  And I would be very interested in hearing ideas and suggestions for it.

If it's something all encompassing, maybe if it's done in a modular way so that aspects can be excluded if not required?

For example, if you don't want Projects for a particular site it can be excluded from the Db and interface.
55  DonationCoder.com Software / YUMPS / Re: A new web project: YUMPS on: August 15, 2011, 03:13:19 AM
I've got a couple of Yii projects bubbling along (well, not very bubbling because I've got other things drawing on my time at the moment), and the user management on Yii is neat and powerful, but not delivered as a plugin... so the common user functions have to be pieced together each project.

I'm keen to see how you go, and support  Kiss
56  Other Software / Developer's Corner / Re: SQL Query is Kicking my Ass. on: July 05, 2011, 01:06:31 AM
I've probably not understood your problem, but what I generally do to get the last date for a sub-set of records is something like the following (written for a table we use to check this year's changed data... My apologies if I've not understood, this basically gets all the fields from the table where one field is equal to something and it's the last date:

Formatted for SQL with the GeSHI Syntax Highlighter [copy or print]
  1. SELECT DISTINCT
  2.    T1.[CheckDate],
  3.    T1.[Assessment_Key],
  4.    T1.[TPKLAPAPPL],
  5.    T1.[Assessment],
  6.    T1.[Purpose],
  7.    T1.[RateType],
  8.    T1.[Address]
  9. FROM
  10.    [infoprod].[dbo].[LicenseOnSiteCheckTable] T1
  11.    INNER JOIN [infoprod].[dbo].[LicenseOnSiteCheckTable] T2
  12.        ON T1.[TPKLAPAPPL] = T2.[TPKLAPAPPL]
  13.            AND T2.RateType= 'OSM1'
  14.            AND T1.[CheckDate] = (
  15.                SELECT
  16.                    Max(CheckDate)
  17.                FROM
  18.                    [infoprod].[dbo].[LicenseOnSiteCheckTable]
  19.                WHERE
  20.                    T1.[TPKLAPAPPL]= [TPKLAPAPPL])
  21. ORDER BY
  22. [Assessment]

57  Main Area and Open Discussion / General Software Discussion / Re: Good week for Software Security FUD (MSE and LastPass vulnerability found) on: February 27, 2011, 09:15:11 PM
Grr! I just started using LastPass since the whole Gawker fiasco! Now I have to switch? Angry mad

No... I'd just keep your very sensitive passwords (banks etc) out of the cloud.

PayPal is my main issue I think as all my banks use other measures that are not stored in LP.
58  News and Reviews / Official Announcements / Re: March 2011 DonationCoder.com Fundraiser Celebration -- Ideas for Special Events? on: February 13, 2011, 02:33:59 AM
It seems sensible to focus on the unique aspects of DC, which I think community features pretty high.

It would be great to have a Coding Snack a day, Mini-Review a day, and other ??? a days... organising it could be a bit of an issue... maybe we could just open threads and members can post and a moderator can select to publish?

I also like something simple like "a buck a day"...

Then it can all be packaged at the end of March in a Newsletter (it'd be pretty huge)...

Keeping it simple is key (I think)... "31 Days of Snacks, Reviews and News" type thing?
59  Main Area and Open Discussion / General Software Discussion / Re: Windows Resizing tool on: February 13, 2011, 12:17:31 AM
I was wondering if there is a windows resizing tool that remembers preferences and with one click launches the set of the application in their predefined space to start working without the hassle to reajust windows again.

This is what I designed AMPL to do: FARR Plugin: AMPL [updated to version 0.6.2]

I have not worked on it for some time as there was not a lot of interest shown in it, but I use it every day... though it is still pretty rough around the edges Wink
60  News and Reviews / Official Announcements / Re: January 2011 Giveaway - Winners Posted on: February 04, 2011, 05:19:26 PM
You've done an amazing job, Perry.  Many thanks!

Agreed  Thmbsup  He's DoCo's Agent P!



That's funny: never seen that before.

But (like mouser said), I was blown away by the generosity of the companies I approached for the Giveaway (which really was meant to supply tools for the NANY Volunteers -- but I think I got the cart before the horse with that one  embarassed)... Every company I approached immediately said they'd contribute prizes!! I think the DonationCoder Community has a lot to do with that sort of response!!
61  News and Reviews / Official Announcements / Re: January 2011 Giveaway is open for entry on: February 04, 2011, 02:33:57 AM
Congratulations all the winners!!! There are a lot of great tools there... hopefully some of them can be used on DC  Kiss

...and thanks to everyone for helping to make the Celebration such a success!!
62  News and Reviews / Official Announcements / January 2011 Giveaway is open for entry -- Winners Posted on: February 04, 2011, 02:30:55 AM
Winners of the New Year Celebration Giveaway Drawing


January 2011 Giveaway Drawing

Supporting Members, you've got until the last day of the month to take advantage of this month's Discounts..

This Month's Special Discounts and Giveaways:



Winners of 'Axialis Icon Workshop Professional' (10):
  • llc_silly
  • u-ki
  • rno2
  • codemonger
  • edbro
  • Bionic71
  • app103
  • y0himba
  • dcm
  • kimajac
Winners of 'Dr. Explain Advanced' (2):
  • limelect
  • mrainey
Winners of 'Help & Manual Pro + Premium Pack' (1):
  • Renegade
Winners of 'Camtasia Studio 7' (2):
  • NinJA999
  • vlastimil
Winners of 'BB Flashback Pro' (4):
  • kyrathaba
  • skwire
  • CodeTRUCKER
  • wraith808
Winners of 'Sagelight Image Editor' (5):
  • tomos
  • nharding
  • richdr
  • HOTGA
  • hamradio


All winners are now being notified by email to their forum email address.  If you haven't received an email but your name is listed above, check spam filters and forum email address, and then mail prizes@donationcoder.com and let us know you never got any mail.  It can take a few days for companies to send you your serial number; if a few days pass and you haven't received it - send a reminder to the company email as noted in your winning notification email, or to us by replying to the email you received or to us directly.

Curious about how we award prizes?  See http://www.donationcoder....um/index.php?topic=1684.0 for a discussion about our custom prize optimizer utility. Winning something one month reduces your chances of winning the next month, and being helpful on the forum slightly increases your chances.
63  DonationCoder.com Software / DC Member Programs and Projects / Re: GetSerious0.1 - (don't expect much) on: February 01, 2011, 04:23:21 AM
Ya know this would be kinda cool if you could have a live link to a forum sig code, where it updates your forum sig with what software your using most (not the page titles or anything).  Could be quite fun to see lol

You can pretty much do this with Wakoopa.

Actually you're probably better going to their social section: http://social.wakoopa.com/

 Check out Perry's sig.
Here:
64  Special User Sections / N.A.N.Y. 2011 / Re: Major feature instead of new up for NANY? on: January 25, 2011, 02:59:17 AM
A sort of shower of software that builds up to the new year and new stuff. Think of it like a fireworks show, with the NANY releases being the big finale at the end.

Yes... it's been my goal since that discussion: I love the fireworks analogy... I've been using the word Celebration, hopefully approaching the same effect  Wink

Not sure how well that works with the March anniversary though.
65  Special User Sections / N.A.N.Y. 2011 / Re: Major feature instead of new up for NANY? on: January 24, 2011, 09:39:32 PM
But it doesnt make sense to have a programming event then i don't think.. Though i guess encouraging UPDATES to existing apps for march could make some sense.

You don't think that doing a wrap up of the previous year's achievements wouldn't work? for which badges could also be given??

Seems to me that reminding people of the great benefits of DC have given over the past 12 months could have lots of nice follow ons...

Edit: Agreed -- another competition wont work so close...
66  Special User Sections / N.A.N.Y. 2011 / Re: Major feature instead of new up for NANY? on: January 24, 2011, 09:33:14 PM
Would it really change any of the end-of-the-year NANY stuff?  People would still participate in the final push for NANY apps, etc.

This was sort of done this year as we opened the event mid year... and looking at the release dates:
  • people were releasing teasers as early as June, and about 30% had teased by end November
  • people were releasing final releases  as early as November

We had similar worries for this year, but I think what happened was that each entrant used NANY the best way they could... those that like the end of year rush do that and those that prefer the slow build up do that (and everywhere in between). So it may not have an effect...

But personally I'd keep NANY as New Year and do something else for the Celebration / Anniversary (was it March??)
67  Special User Sections / N.A.N.Y. 2011 / Re: Major feature instead of new up for NANY? on: January 24, 2011, 06:45:35 PM

Should NANY encompass any NEW apps made during the previous year.

NAPY???
68  Special User Sections / N.A.N.Y. 2011 / Re: Major feature instead of new up for NANY? on: January 24, 2011, 05:49:53 PM
We've actually discussed previously that the New Year Celebration could / should encompass other aspects of DC's year (NANY just being one). There are lots of facets of DC that get "lost" through the year that could be helped by being repackaged at the end of the year.

Coding Snacks is one, and New Releases of existing software is another.

Where as they aren't really a NANY (more just a NA  Wink ) maybe the badge could extended to the celebration, which could include things like featured:
  • coding snacks
  • major new releases
  • major reviews

as well as New Apps??
69  Main Area and Open Discussion / General Software Discussion / Re: LastPass - What are your thoughts? on: January 21, 2011, 10:20:24 PM
I too am in the process of moving from RoboForm to LastPass. One reason I didn't even look at LP previously was I'd paid for RB and RB Portable.

LastPass has done nearly everything I used RoboForm for, though it does have a few issues with one or two websites. But in the main I'm more than happy with LastPass.

LastPass satisfied my security issues, so I'm happy.

Synchronising RoboForm data was always an issue for me... I had the Desktop and the USB version which needed to by sync'd (and with RoboForm cloud) but the free version of their sync software complained there were too many files. This made me very unhappy. There is of course no sync'ing problems with LastPass  smiley

I use KeyPass too, but not for my online password usage: more for other secure stuff I need to remember...
70  Special User Sections / N.A.N.Y. 2011 / Re: Itching to code apps on: January 21, 2011, 09:50:32 PM
Also there are many ideas submitted for previous NANYs as well:

Maybe we should bring unused ideas forward? They tend to get lost once the year goes past...
71  Special User Sections / N.A.N.Y. 2011 / Re: That NANY badge on: January 20, 2011, 07:55:15 PM
If we're simply counting, it should be number of apps, but I would say that  tongue

...not lines of code??  Wink
72  Special User Sections / N.A.N.Y. 2011 / Re: That NANY badge on: January 20, 2011, 07:52:43 PM
Hmmm... my first impression on seeing them was "very nice!"  Then the digits, "01," "03" and the "05" on the badges provoked an instinctive perception the digits were "years." 

+1

I think the leading zero is unnecessary...
73  Special User Sections / N.A.N.Y. 2011 / Re: That NANY badge on: January 20, 2011, 01:19:43 AM
ham is working on the badges now -- i vote for ONE small 16x16 badge showing the # of NANY's you've participated in, and then on your profile and on the badge listing page, it will show one for each year.  i can implement this easily and i think it will reduce clutter on the posts pages (like this one).

 Thmbsup

I'd like a grey one (because I'm not actually Entrant Class  Sad
74  Special User Sections / N.A.N.Y. 2011 / Re: That NANY badge on: January 17, 2011, 03:54:03 AM
I think you've (not quite) succinctly summed up my feelings about NANY... it is an amazing community event where the coders do put their pledge on the line, but for most there is a huge amount of help / volunteering / encouragement / etc from the forum.

It's not about the number or quality... it's about the celebration and the community.

The more NANY structure encourages celebration and development of community the better.
75  Main Area and Open Discussion / General Software Discussion / Re: Copying Collapsed Rows/Columns in Excel Misses Data on: January 16, 2011, 09:39:09 PM
You sure they don't just get pasted in a collapsed state??
Pages: Prev 1 2 [3] 4 5 6 7 8 ... 59 Next
DonationCoder.com | About Us
DonationCoder.com Forum | Powered by SMF
[ Page time: 0.062s | Server load: 0.08 ]