topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Friday November 21, 2025, 2:25 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 ... 321 322 323 324 325 [326] 327 328 329 330 331 ... 438next
8126
Living Room / Re: Pirate vs. Paying Customer illustrated
« Last post by Renegade on March 12, 2011, 06:15 PM »
But you can't really pirate an online service. (In one sense anyways.)

True, but in this case I don't think Dragon Age 2 is an online game. AFAIK it just uses the internet for DRM purposes.

Ugh! That's fugly.

The original post is so right. If you want games/music/movies that work properly... Sigh...

8127
Living Room / Re: What is the purpose of file extensions...
« Last post by Renegade on March 12, 2011, 10:51 AM »
It's an HTML file that accepts XML as input. Probably processed by PHP. Makes sense though.

The query string returns pure XML:

http://battlena29.ev...986a18ed79234f2d.xml

8128
Living Room / Re: Nice DIY project for computer- & cat- lovers: Keyboard Cat
« Last post by Renegade on March 12, 2011, 10:40 AM »
My wife would love that! :) Very cute~!
8129
General Software Discussion / Re: Favorite ZIP/RAR application?
« Last post by Renegade on March 12, 2011, 10:38 AM »
I still like ALZip. I was disappointed though when it changed to shareware after I left.

I think there are better options to make money to pay the people that work on the software and help keep software free for people, but oh well. Not my call anymore.

(Freeloader Ambush) You know you want to click...
ACK~! EVIL~! CRUCIFY ME~! I'M THINKING ABOUT HELPING PEOPLE PUT FOOD ON THE TABLE... JEEZ MURPHY~! I'M IN LEAGUE WITH SATAN~!


8130
General Software Discussion / Re: Favorite ZIP/RAR application?
« Last post by Renegade on March 12, 2011, 08:50 AM »
The slow death of the lifetime license?

8131
Developer's Corner / Named Pipes for Inter Process Communication
« Last post by Renegade on March 12, 2011, 06:10 AM »
8132
Living Room / Re: Pirate vs. Paying Customer illustrated
« Last post by Renegade on March 12, 2011, 05:05 AM »
Arise, thread, arise! (Necro thread revival!)

Another example of why it's better to pirate when DRM is concerned:

When it comes to EA games, you really should watch what you say.

That's what one BioWare forum-goer learned after possibly being banned by asking BioWare, an EA studio, "Have you sold your souls to the EA devil?" The comment resulted in a temporary 72 hour ban, but more importantly meant that the user couldn't play a brand-new copy of Dragon Age II during that time.


Update: We just received word from EA's Andrew Wong that the situation was actually an error. "Unfortunately, there was an error in the system that accidentally suspended a user's entire account," he told Ars. "Immediately upon learning of the glitch, EA took steps to restore the user's macro account and apologized for the inconvenience."

Hmmm... Maybe. Not sure if I believe that or not, but whatever. Could be true. Could be back-peddling.

Still, what happened there happens regularly elsewhere.

In one game that I paid for, I complained and then been banned with in-game punishments. I got pretty pissed at that and turned it into a game to screw with them while I was banned. What was really fun was letting them know that they'd broken some laws and could face prosecution (which was true, but I'd never pursue it).

In another game that I paid for, there was an extended service outage. After a while (and a fair amount of booze), I wrote in to support with an extremely blunt email about their incompetence. I received a snarly letter back. As far as I'm concerned, if you're the one dropping the ball, you should brace yourself to get what you deserve -- lambasted for your incompetence. Ahem... Who's the one that f***ed up?


Getting banned, ignored, or marginalized is common in the game industry.

But you can't really pirate an online service. (In one sense anyways.)

8133
General Software Discussion / Re: What the hell is OpenCandy?
« Last post by Renegade on March 12, 2011, 01:02 AM »
That folder is a system-specific folder, so it's ok that it is still there.

Ref: http://technet.micro...6489%28WS.10%29.aspx

Sorry. I was continuing from a prior post, but truncated that there. I meant that inside THAT folder there is an "OpenCandy" folder, which is empty.

8134
Mini-Reviews by Members / Re: Micro-mini Review of Lipsum text generator
« Last post by Renegade on March 11, 2011, 07:44 PM »
Certainly an invaluable tool!

I've never seen it before, but as above, have been using the Lipsum.com site.

This is a great example (and a nice snappy review, Chris!) of something that I never would have dreamed would exist.

This is one of the reasons that I have recently got into the habit of checking Bits du Jour and so on regularly: not so much to find the bargains, more to just see what's out there, in case it's something I never knew I needed, but now need really urgently  :o

Bwahahahaha~! :D

I know the feeling... Much to the chagrin of my pocketbook~! :)
8135
Developer's Corner / Re: Automatic Updater
« Last post by Renegade on March 11, 2011, 05:27 PM »
Well, I don't really know the DCUpdater, but here's a nice little thing:

http://wyday.com/wyb...pdates/translate.php

I don't like some of the string in there, e.g.:

PrematureExitMessage :   wyUpdate ended before the current update step could be completed.

Because nobody knows what "wy" is. So, the translation feature let's me change a few strings quite easily:

Code: C# [Select]
  1. private void SetUpdaterText()
  2.         {
  3.             automaticUpdater1.Translation.AlreadyUpToDate = "This is the latest version.";
  4.             automaticUpdater1.Translation.PrematureExitMessage = "Updater ended before the current update step could be completed.";
  5.             automaticUpdater1.Translation.PrematureExitTitle = "Updater exited prematurely";
  6.         }

It's a nice little convenience.

I went through the EXE and did the same, though that's done in the utility program that comes with the software, and not in your own program. Still, very easy to do.

8136
General Software Discussion / Re: What the hell is OpenCandy?
« Last post by Renegade on March 11, 2011, 03:44 PM »
Checking from a reboot, the folder:

C:\Users\Renegade\AppData\Local

Is still there, but the DLL is deleted.

So, there is a trace of a folder, but no executable files.
8137
public void CheckDMCA()
{
if (Google.Results.Contains("DMCA takedown"))
{
SendMail.To("Google");
CheckDMCA();
}
}

;)
-fenixproductions (March 11, 2011, 12:34 PM)

Nice!
8138
Developer's Corner / Re: Search Engines
« Last post by Renegade on March 11, 2011, 02:49 PM »
Something like this ?

Yes! Exactly. How is it? Have you tried it?
8139
Developer's Corner / Search Engines
« Last post by Renegade on March 11, 2011, 05:45 AM »
Has anyone implemented a custom search engine? Like Lucene (I think that's what it's called) or something.

I was just "trying" to search in a phpBB powered forum, and yet again, hit in the face with just how horrible some search engines are.

Is there anything you'd recommend?

Preferably in the .NET/Mono world, though something that just worked would be ok too.
8140
That was simply amazing!

This article has a few interesting bits/twists:

http://www.techeye.n...r-its-own-censorship

Confusing isn't it? This is because Fox's lawyers are in a perpetual legal loop trying to use the DMCA to shut up Chilling Effects and have not worked out that they are simply creating more Chilling Effects posts.

8141
General Software Discussion / Re: A LOUDER Internet
« Last post by Renegade on March 10, 2011, 11:54 PM »
It's funny how innovation in Opera filters into the other browsers.
8142
General Software Discussion / A LOUDER Internet
« Last post by Renegade on March 10, 2011, 10:14 PM »
While I love music, and write audio software, I really think that default on/play for audio on the web is a colossally gargantuan mistake. I hate it.

Lately, I've been finding a few sites are blasting away. I never found that a few years ago.

Has anyone else been finding any sites that start audio without a user action?

e.g. http://www.dominos.com.au/

8143
Developer's Corner / Re: Automatic Updater
« Last post by Renegade on March 10, 2011, 10:00 PM »
Regarding the actual topic on wyupdate... its webpage looks nice, but since the file specification page is actually quite empty I cannot form an opinion about its technical suitability and usability from a programmers perspective. Does anyone have experience with it so far, or can enlighten me a bit about the details? I am curious how it compares to dcuhelper/dcupdater and such. (I am a bit of a sucker for free as in BSD free. :-[)


It works very well and is simple to put in.

I've not tried the DCUpdater. The page it was on didn't have much information, and I only checked the thread on it now. So, I can't really say much there.

The wyUpdate lets you choose how many days to leave between checks, whether to only check, check and download, or leave it automatic or do nothing.

In my brief tests, it works very well and does what it says it does. It can update and restart the application for the user. It's minimally intrusive and has only a small icon in the default view:


Screenshot - 2011-03-11 , 2_35_03 PM.png

Screenshot - 2011-03-11 , 2_35_59 PM.png

Screenshot - 2011-03-11 , 2_35_53 PM.png

You can hide it by clicking on it.

So it has a nice, clean UI, minimally intrusive, and offers a good amount of control over the process.

Deployment is simple. You use the wyBuild utility to create 2 files that you deploy with your software:

client.wyc
wyUpdate.exe

The client file contains the information. The EXE is the actual updater.

You also integrate the AutomaticUpdater.dll into your program, but it's not necessary. It gives you the front-facing UI stuff inside your software. The EXE runs itself, so you obviously can't put that in your own software, but it is also customizable to a degree.


The Automatic updating can be silent as well, so if you have a networked application that relies on clients running the same version (a lot of games are like this), then it's perfect. You never need to bother the user at all.

I think I'll run with "Check Only" though as that should be sufficient. Users can simply click to update with minimal fuss, which is nice.

In fact, it is so clean and seamless, that you're kind of left wondering if anything happened at all! :) Usually things are much messier.


Hot damn, this is so offtopic but I cannot help myself... 300 posts!

YAY~! :D

Gotta get those in there when they're timely~! :)
8144
Developer's Corner / Re: Automatic Updater
« Last post by Renegade on March 10, 2011, 07:10 PM »
Shut up then!

I am not going to go down this path with you, Renegade. You seem to be annoyed at anything and anyone that does not think like or hold the same views as you do.

Your initial post was (intentionally, maybe) vague. I think you were hoping to get the kind of response that would give you a chance at another rant. Well than, I feel blessed for being part of a process that helped you release. Anyways, 'Automatic Updater' and 'Automatic Version Check' is not the same thing (both not welcome,IMO).

It should be a user's choice whether a software connects to the Internet every run.
(I do not have a funny video to attach here, sorry.  ;))

Bye.


The original post was about a software component. It's currently on sale. It's useful. I thought it would be nice to share that with other developers here.

Then you come out firing away with insults.

You seem to be annoyed at anything and anyone that does not think like or hold the same views as you do.

Your post was a flat out attack on me. There's a difference between insulting someone and holding an opinion. You started with insults.

I think you were hoping to get the kind of response that would give you a chance at another rant.

Where does that come from? It's a standard thing for software to do. I listed a few above that have autoupdaters. Most major software titles do it. What is there to rant about? You're the one ranting:

It should be a user's choice whether a software connects to the Internet every run.

Did you even look at it? Do you know what it does?

Shut up then!

Nicely put. Is there anything else constructive you'd like to add to the discussion that I thought would be about a software component?

8145
Living Room / Re: England Is Grinding To A Halt.
« Last post by Renegade on March 10, 2011, 06:49 PM »
Wow. I thought public transport was bad here (Melbourne).

Traffic is bad in Seoul, but it flows pretty well. The public transportation system is excellent.

A number of years ago they redid the roads to accommodate buses better, and it improved the flow of traffic a lot.

Traveling a functional distance in Seoul is actually quicker than here. It took me about 1.5 hours to get to, and 2 hours to get home from a concert by public transport here where it's only a 20 minute drive with no traffic and 30 or 40 in normal traffic.

Here, public transport can't be relied on to be on schedule, if it shows up at all. On my way to the concert nothing showed up for one scheduled time, and the next one was late. Schedules in Seoul work differently with buses coming every X to Y minutes, e.g. every 5~7 minutes or every 15~20 minutes.

Population density makes a massive difference though. The high population density in Seoul has resulted in an excellent public transportation system. Here, it's very poor in comparison, but population density is much lower.

Hearing above about rural areas, it's not surprising.


I came across this:

http://www.courierma...frer4f-1226019314886

SMELLY fellow travellers have been rated among the top pet hates of commuters, along with talking too loudly on mobile phones, service interruptions and poor airconditioning.

The international study of more than 10,000 commuters by workplace solutions provider Regus looked at the major stresses of daily peak-hour travel in six different countries.

In Australia, bad or dangerous drivers topped the list of the "seven deadly sins" of commuting, followed by delays or service interruptions, road rage and loud talkers.

Other commuters' body odour, bad breath or smelly food came in seventh behind overheating and lack of information from service providers.

Although most other countries included in the study had similar pet hates, in Japan rude behaviour was rated the worst commuting offence along with "overweight people taking up too much space".



Commuters' pet hates

    * Bad or dangerous drivers
    * Delays
    * Road rage
    * Loud talkers
    * Smelly commuters
    * Overheating
    * Lack of service information

My favorite was Japan though. "overweight people taking up too much space" :D
8146
General Software Discussion / Re: What the hell is OpenCandy?
« Last post by Renegade on March 10, 2011, 06:04 AM »
But I do think they are every bit as 'evil' as OC, I just don't consider that to be really evil at all.

+1

A long time ago, in an Internet domain far, far away, I was doing black hat SEO for clients before it was "black hat SEO". Then the game changed and I stopped. (I never did arbitrage or any of that slimy crap.)

I'm no stranger to what happens in the black hat world. I visit there on occasion to have a "look-see". It's interesting. It's like the zoo. Lots of fun to look at, but you don't want to be in the cage. :)

OpenCandy is nowhere near that place. (I've looked, and I can't see anything "evil". If anyone can correct me with evidence, then PLEASE DO!!!)

Sigh...

1 thought for people to consider:



I would install software on my computer that had OpenCandy supported offers in it without a second thought. I know what's happening under the hood enough to trust it.



That, I believe, is testament enough to my convictions.
8147
General Software Discussion / Re: What the hell is OpenCandy?
« Last post by Renegade on March 10, 2011, 05:40 AM »
Plain and simple, OpenCandy doesn't bother me. I think it is a good medium between being invasive and generating revenue for software developers.  I honestly send no identifiable information then recommends a software, nothing is downloaded, installed, no changes made to your system unless you choose to install it.

MSE detects it and pops up this dialog meant to scare people who have no idea what they are looking at, yet Bing is a partner with OpenCandy and is one of the things offered.  I hate adware, I despise software that installs on my system with other software, but this is not like that at all.

+1 (though that's pretty obvious by now :) )

The whole thing sounds like a false positive to me.


If I had a choice, it would not be there, but since developers need revenue, this is the way to go.  IMHO.

Do you mean the false positive, or OpenCandy?

To be honest, I think that revenue sources that don't require developers to be business people are great. That lets the developers do what they love and still make a living from it. Let the business guys sort out the other things. It's a big pie out there. :)


8148
General Software Discussion / Re: What the hell is OpenCandy?
« Last post by Renegade on March 10, 2011, 05:20 AM »
@40Hz

I suppose I get frustrated sometimes. It's not my intent to be abusive or unnecessarily contrary.

I've looked into OpenCandy, and can't see what the fuss is about. It looks like a great thing as it presents a win-win-win-win situation. Users win when they get decent recommendations. Software publishers win when they make money. Software advertisers win when they get their titles in front of people in the crowded market. OpenCandy wins because their business is successful in facilitating all of that.

Sigh... :(
8149
That. Looks. Cool!

I gotta try this!
8150
Living Room / Re: England Is Grinding To A Halt.
« Last post by Renegade on March 10, 2011, 03:22 AM »
I'm not sure the cost we are paying in the UK isnt closer to the real cost of fuel - human, environmental etc.

Very good point.

Pages: prev1 ... 321 322 323 324 325 [326] 327 328 329 330 331 ... 438next