topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Monday April 6, 2026, 8:54 am
  • 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 ... 450 451 452 453 454 [455] 456 457 458 459 460 ... 1515next
11351
Can you elaborate a little bit on your issues with dcuhelper?  This is really a tool for programmers who want to add update support to their applications, so maybe this is just a matter of me not being clear what it's useful for and causing some confusion..
11352
The excellent CybernetNews blog has been running a long series of detailed guides to XBMC, a cross-platform software suite for powering a home theater PC.

It looks like a really useful series for anyone considering making the jump to using a HTPC (Home Theater PC).

Now that I’ve gotten to the cable-cutting point I started looking to see if there was a solution that would fit my needs better, and that’s when I decided to go with the newly released XBMC 11. ..So here I sit, fully converted to an XBMC household. I have documented various aspects of my journey and will be sharing them here on the site starting tomorrow. We have about a month worth of guides that range from building an HTPC all the way to troubleshooting issues you might have with your own setup.

11353
Living Room / Re: Prometheus
« Last post by mouser on May 15, 2012, 06:24 AM »
It looks amazing.  If only we could clone Ridley Scott so we could get these kind of sci-fi movies once a month instead of once every 5 years.
11354
There is no option to do it yet, but i can add one without too much trouble.
11355
Find And Run Robot / Re: Error while launching Java applications (solved)
« Last post by mouser on May 13, 2012, 01:39 AM »
Thanks for posting this solution Vanav  :up:
I clearly have to study the side effects of some of those launch options in FARR..
11356
Finished Programs / Re: DONE: make folder set out of a txt file
« Last post by mouser on May 10, 2012, 08:46 PM »
Mentioned on freewaregenius today:
http://www.freewareg...ch-with-text2folders
11357
N.A.N.Y. 2011 / Re: NANY 2011 Release: Color Warlock
« Last post by mouser on May 09, 2012, 08:06 PM »
excellent!
11358
Neat roundup on FreewareGenius today about some world news reading applications that use different interfaces.

With the explosion of information and news sources that is the hallmark of the internet, application developers are coming up with creative ways to browse and read the News, adding customization, Geo-mapping, and social sharing and discovery functionality to your reading experience. If you subscribe to RSS feeds to get your articles delivered then you should check out some of these services, as some are similar though not the same.

This article will present four free apps that offer novel approaches to perusing and consuming the news. These apps are: Newsmap, News360, Hubii, and Comunitee.

11359
Find And Run Robot / Re: Polish letter "ó"
« Last post by mouser on May 08, 2012, 10:28 AM »
let me see if i cant make an option to disable the shortcuts within farr.
11360
MEWLO Web Framework / Re: OLD - Yumps Videos
« Last post by mouser on May 07, 2012, 10:46 AM »
And here's another question/suggestion: It seems to me that the login screen sort of ignores the possibility that you are logging in to get back to some other page. I find it very annoying when I click a link on a site, it asks me to login, and then takes me to my profile in that site. Also, sort of related to this, I love the way sites such as deviantart handle the login: you can login via a javascript/whatever window, and carry on the same page you were before.

In fact YUMPS is very good at remembering where you wanted to go -- so if it redirects you to a login page it will automatically bring you back to the page you requested after you log in.  Things like this -- and it's good you are mentioning them (keep them coming)! -- are exactly what YUMPS needs to be great at.

[yes, a nice popup window to login might be even better, i'm just not worrying about visuals and gui niceties at this point].
11361
Developer's Corner / Re: Random Question (About Hash Keys)
« Last post by mouser on May 07, 2012, 09:14 AM »
How the HELL does your machine know how to interpret the information it has been given? - Surely your computer is somehow decrypting the information in order to do what it needs to?

You may be thinking that the idea of a hash (or digest) is to "encrypt" some information so that it can be "recovered/decrypted" later -- but that's precisely the opposite of what you use a hash to do.

The whole point of using a hash/digest for security purposes is to convert plain text data (like a password), into a (unique) representation such that it's completely impractical for anyone to reverse it and get back the original.  The computer never "decrypts" the hash back into the original.  That's why we call hashes "one-way functions".

The way you use hashes to handle account passwords is that you hash the plain text password and store the hash.  The next time someone enters your password, you again calculate a hash of what they type, and then compare it to what they stored.  Now you see why no website has a function that will resend you your password if you forget it -- because they can't do that -- they can't get back what your original plain text password is.  That's why they have to send you a link to RESET your password.

Hash functions are used on files for a different purpose, but the idea is the same -- you perform a mathematical hash function on the input, which can be arbitrarily big, and the output is a number (or a short string of bytes).  If you want to compare 2 files to see if they are the same, you perform the hash function again on the new file, and compare the output to the result you got when you ran it on the original file.  And because the hash function cannot be reversed, people cannot create fake files that generate the same hash as (and therefor might appear to match) the original.

So.. the whole mathematical beauty of hash functions are that the are very carefully designed to be impossible to efficiently reverse (they only go one way) -- and that they have good properties in terms of rarely (but it can happen) mapping different inputs to the same output (collisions), even when the input data is large.

You can't just use any function as your hash function -- it needs to meet these requirements.  If it falls short, then bad things can happen.  If a hash function turns out to be reversible then malicious people could create fake files or fake passwords that compute to the same hash; If a hash function turns out to have lots of collisions, then you will end up with cases where many files/passwords look the same (according to their hash) when they are different.
11362
I did; replying to it now.
11363
It was indeed a bug in my code, triggered when the current version is not found in the whatsnew file; it's been fixed and new version of dcuhelper.zip uploaded.
11364
Announce Your Software/Service/Product / Re: starpunch.net
« Last post by mouser on May 05, 2012, 09:19 PM »
Great  :Thmbsup:
11365
Hi gingerich!
Send me your files so i can test here and i'll investigate -- sounds like a bug on my part.'
[email protected]
11366
Thank you so much for sharing that Vanav!  :up:

I'll make it so you can change the text of the "zuploader" menu.

Note that you can also make "tool" files that serve the same purpose and can be triggered from Tool menu -- the only real advantage there is that you can make multiple tools instead of using the one zuploader "slot".
11367
General Software Discussion / Re: scanning sofware
« Last post by mouser on May 03, 2012, 06:17 AM »
Can I suggest my Screenshot Captor tool -- though primarily for screenshot taking, has a very straightforward minimal interaction Scanning feature set that includes save-to-pdf in predefined folder.

You can watch a video demonstrating the Scanning features in Screenshot Captor here: https://www.donation...c/3ds/sc13/sc13.html
11368
DC Gamer Club / Re: Sniper Elite v2 out now!
« Last post by mouser on May 02, 2012, 09:11 AM »
Definitely one of my favorites, can't wait to play v2.  But not until the price drops a lot.
However if you haven't played the original, it's on sale now for like $3, and I recommend it.
11369
Official Announcements / Re: The DonationCoder 2012 Fundraiser Has Begun!
« Last post by mouser on May 02, 2012, 04:15 AM »
Good to see you AnOldSoul  :up:
11370
General Software Discussion / Re: Simple means of joining images?
« Last post by mouser on April 30, 2012, 05:22 PM »
I was going to suggest the NANY entry ImageGrid that you rejected in your initial post. It's a great too with a real focus on this kind of thing.

I understand it may not do all that you need -- but perhaps at some point you could spell out what you think could be added to make it do what you need in case it could be added to the program.
11371
Screenshot Captor / Re: Access violation error every morning
« Last post by mouser on April 30, 2012, 04:56 PM »
sorry i haven't followed up on this yet -- i'll be working on it in the next couple of days and be in touch -- i have a few more SC things to fix anyway, so expect a new release this week.
11372
OK so you must have a plugin for firefox (or a setting i don't know about) that is doing this, automatically copying to clipboard on select -- it's not CHS doing it.
11373
Do you mean that everytime you highlight something in any program, or in firefox, or only when you highlight text from within Clipboard Help+Spell?
11374
Web Link Captor / Re: Web Link Captor is occasionally useful!
« Last post by mouser on April 30, 2012, 08:05 AM »
I could have also added the term "review" to the searches to find links to reviews.

Since I can ask WLC to output in BBCODE, let me show you a real example of making a nice page with links to reviews.  For good measure I've added more movies and asked for top 5 links for each:

INPUT LIST:
Code: Text [Select]
  1. Avengers
  2. Hunger Games
  3. Wrath of the Titans
  4. Cabin in the Woods
  5. The Raven
  6. Lockout
  7. Safe
  8. Pirates
  9. Take Shelter
  10. Bully
  11. Gone
  12. The Descendants
  13. Ides of March
  14. John Carter
  15. J. Edgar
  16. Sherlock Holmes game of shadows
  17. Underworld awakening
  18. Haywire
  19. Dream house
  20. Rampart
  21. Chronicle
  22. Contraband
  23. Brake
  24. Martha Marcy Marlene
  25. Man on a Ledge

OUTPUT:
Avengers:

Hunger Games:

Wrath of the Titans:

Cabin in the Woods:

The Raven:

Lockout:

Safe:

Pirates:

Take Shelter:

Bully:

Gone:

The Descendants:

Ides of March:

John Carter:

J. Edgar:

Sherlock Holmes game of shadows:

Underworld awakening:

Haywire:

Dream house:

Rampart:

Chronicle:

Contraband:

Brake:

Martha Marcy Marlene:

Man on a Ledge:


NOTE:
If making lists of movie reviews was something I did often, the smart thing to do would be to configure WLC to bias the movie review sites I find the most useful; then i could list just one or two review links for each movie and i'd know they were top quality reviews.
11375
Web Link Captor / Web Link Captor is occasionally useful!
« Last post by mouser on April 30, 2012, 07:55 AM »
Just wanted to thank myself for writing Web Link Captor -- used it today and it performed beautifully.

Since there aren't more then 3 people on this planet who have used this tool, allow me to explain the use I found for it today.

I have a list of movies playing in theaters that i wanted to share with a friend who is visiting -- so they could check them out and see which ones they might want to see.

Now I could send them the plain text list but then they've have to go do a lot of annoying searching.

So instead I pasted the list into Web Link Captor, added the term "movie" to the post processing, and clicked GO.

In under a minute I had a nicely formatted html email with the top 3 links to find out about each of the movies (typically to their imdb page and wikipedia entry).

Thank you WLC!
Pages: prev1 ... 450 451 452 453 454 [455] 456 457 458 459 460 ... 1515next