topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Saturday September 19, 2026, 9:36 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 ... 383 384 385 386 387 [388] 389 390 391 392 393 ... 404next
9676
General Software Discussion / Re: Source Code / Code Snippet Manager
« Last post by wraith808 on June 19, 2009, 10:27 AM »
I always allow a choice personally.  There might be a reason not to use the default proxy, so I just put a radio button to allow (a) default proxies or (b) custom proxy.  This also takes care of the case where IE won't play right, which I've had a problem with before.
9677
General Software Discussion / Re: Source Code / Code Snippet Manager
« Last post by wraith808 on June 19, 2009, 10:04 AM »
I see you're using .NET.  Not sure if it's C#, or what libraries you're using to connect, but if you're using the out of the box support and are using C#, here's an example of setting a proxy...

Code: C# [Select]
  1. var result = new StringBuilder();
  2.             try
  3.             {
  4.               var transferProxy = new WebProxy("http://proxy:80/", true);
  5.               transferProxy.Credentials = new NetworkCredential("userId", "password", "Domain");
  6.               var transferRequest = WebRequest.Create("http://www.snipplr.com");
  7.               transferRequest.Proxy = transferProxy;
  8.               HttpWebResponse transferResponse = (HttpWebResponse)transferRequest.GetResponse();
  9.               System.IO.Stream outputStream = transferResponse.GetResponseStream();
  10.               System.Text.Encoding outputEncoding = System.Text.Encoding.GetEncoding("utf-8");
  11.               System.IO.StreamReader outputReader = new System.IO.StreamReader(outputStream, outputEncoding);
  12.               char[] chars = new Char[256];
  13.               int readCount = outputReader.Read(chars, 0, 256);
  14.               int totalRead = readCount;
  15.               while(readCount > 0)
  16.               {
  17.                 string str = new String(chars, 0, 256);
  18.                 result.Append(str);
  19.                 readCount = outputReader.Read(chars, 0, 256);
  20.               }
  21.               transferResponse.Close();
  22.               outputStream.Close();
  23.               outputReader.Close();
  24.             }
  25.             catch(Exception ex)
  26.             {
  27.               string str = ex.Message;
  28.             }

Caveat- I pulled this from some other code and scrubbed some of the identifying lines, so there may be extraneous lines in there or it may not compile offhand, but the code is correct.  Let me know if you have any questions, but it's pretty straightforward, and from what you've already done with snip-it, I'm sure it shouldn't be an issue.  :Thmbsup:

UPDATE: Made sure it still compiled and fixed an embarrassing oversight.
9678
General Software Discussion / Re: Source Code / Code Snippet Manager
« Last post by wraith808 on June 19, 2009, 09:00 AM »
One of the first things I notice is a lack of the ability to set your internet proxy.  Without that, I can't use it to access snipplr.  Do you have any intention of adding that ability?
9679
Thanx Tinjaw.  You don't need to access Experts-Exchange to get the answer (read how here).

Oooh... thanks!
9680
General Software Discussion / Re: Database for Homeschool
« Last post by wraith808 on June 17, 2009, 04:12 PM »
Hi-

My wife is a homeschooler also, and we've talked about doing something like this for a while.  Maybe once you get your list together, we can work together to come up with something that satisfies our needs, and perhaps is out there for other homeschoolers also.

Let me know if you're interested- and also if there's anyone else on the boards that might be interested.

Thanks!
9681
My understanding is that System Restore does not always play nice with low-level programs, including image save-restores.  Also it triggers false positive anti-virus stuff.  So to me the only issue is whether to get rid of it completely or leave it at minimum size. 
-Steven Avery (June 17, 2009, 09:21 AM)

I'd also like to know more about that, as I've never heard about the AV before.  And I use Acronis religiously and have never had a problem with it, and I keep system restore around because I don't want to have to restore the whole partition whenever I have a problem; I like to go back to the last checkpoint and see if it works.
9682
I also always turn off system restore -- as far as im concerned turning it off has two benefits: one is i save space, the other is it keeps me from ever losing my mind and trying to do a restore using this method, which im convinced is nothing but trouble.
I turn it off on my own setups, but it's been a useful help on other people's computers a few times.
I keep it... it's saved me more than once.  I do change the amount of checkpoints it keeps to save space; if I can't reach a checkpoint within the last couple of weeks, I doubt it's going to do me any good.
9683
Maybe if not, you can get her to send a desktop support request (or whatever that is) that allows you to RDP in to her desktop.

And definitely a  :down: on the blind deletion thing.
9684
Living Room / Re: IE to be removed from Windows 7 in EU
« Last post by wraith808 on June 15, 2009, 08:13 PM »
But does the average user know how to do that?  I think we all know the answer is no.
9685
Not exactly, but close enough- the creator even admitted that it was large parts the Prisoner.  Especially in the beginning when they actually have him locked up before he escaped...
9686
A very different show was Nowhere Man.  Unforunately or fortunately, depending on your point of view, it was only one season.  I got the entire show on a DVD set from Deep Discount DVD for $30.  I wish they used maybe one more DVD to get a little better bitrate.  But you could watch it.  The plot was unique. Not the usual boiler plate.


Not boiler plate, but not exactly original either.
9687
Living Room / Re: IE to be removed from Windows 7 in EU
« Last post by wraith808 on June 13, 2009, 07:37 AM »
i've read elsewhere that Internet Explorer 8 will be supplied on a separate CD with every copy of the retail euro Win 7. making the situation all the more annoying and completely pointless.

also, when you think about it, MS can't provide installs or shortcuts to other browsers as there will be browsers that are neglected. these missing browser companies could then claim some kind of unfair anti-competitive blah blah. so the cycle begins all over again.



Exactly. And more elegant, sure.  But who suffers if none is included?  The user.  and who will complain?  The user.  Most users really don't care- they just want to be able to get on the internet out of the box.  and if they can't, you can bet that there will be a snowball effect as tech support and other charges get out of hand... this is not the end of this...
9688
General Software Discussion / Re: Source Code / Code Snippet Manager
« Last post by wraith808 on June 12, 2009, 12:21 PM »
I bought Source Code Library off of Bits, and have been very satisfied with it.  It actually does *more* than I need it to, as it has functionality similar to DirectAccess and Surfulater also.  :up:
9689
Found Deals and Discounts / Re: White Smoke 70% off
« Last post by wraith808 on June 11, 2009, 02:33 PM »
I notice that there are several 1 and 2 posters (that post only in this thread) that tout the quality of WhiteSmoke...

Things that make you go 'hmmm...'
9690
Wraith, that's a fair enough assessment for some people. Babylon 5 was a space opera on a massive scale. There was lots of groundwork for later plotpoints in early episodes that would leave you wondering, "What's that got to do with the price of tea in China?" and then 3 or 5 or 10 episodes down the line it'd be, "Ohhh! That's what *that* meant!!".

It probably wouldn't fare too well in today's climate of ADD-oriented, instant-gratification TV viewing.

But the funny thing is, I like shows like that! :(  I love all of the Whedon stuff where he pulls from older episodes and especially unfinished business (Niska was a piece of work!).  I don't like episodic stuff; I prefer long ranging arcs where things have meaning, which is the reason that DS9 was my fave Star Trek.  In books, I devour epic series like A Song of Ice and Fire.  B5 just didn't catch me for some reason...
9691
If someone is a sci-fi fan and wants a far-reaching epic storyline and is willing to make a time investment look no farther than Babylon 5. With a non-static world where if something happens in one episode it is true in all subsequent episodes and story arcs that reach across seasons it's a very well-written space opera with a widely varied cast of characters with plenty of intrigue & cloak and dagger mystery.

I'm as big a sci-fi fan as any, but I just couldn't get into it for some reason.  I even like Straczynski's other work, especially Rising Stars (I wish Heroes hadn't taken off an let us down- Rising Stars was better and well plotted), Supreme Power and surprisingly Midnight Nation.

I gave B5 an honest try, and probably will again at some point.  But the first time struck out with me.
9692
Any of the Joss Whedon shows are good if you like that sort of thing.  In order I'd recommend Firefly, Angel, then Buffy.
9693
The lack of user forums was what made me stop evaluating- I couldn't get the JDBC connection to SQL Server set up to even get past ground level.  Add to that fact that Java applications leave me cold, and I didn't try much past that.
9694
Too late...I bought both Fallout 1 and 2 when they hit the shelves & have played them both through more than once.

When I said 'check out' I meant look at the references- I pretty much assumed you would have already heard of it, if not played it.  There was actually supposed to be a sequel, but I never played it.

As far as who owns the rights, apparently Brian Fargo acquired them back in 2003, and has apparently said that he's looking at doing a sequel, but that's only second hand information.
9695
Living Room / Re: Where did your DC user I.D come from?
« Last post by wraith808 on June 04, 2009, 02:02 PM »
wraith808 I've had for a while- back from long nights of playing doom and it's ilk.  The wraith references what my friends call my uncanny ability to camp without camping.  I called it being in the right place at the right time.  8)  The 808 is a reference to our Clan, the 808Klan, which itself comes from the musical background of the founder, in reference to the Roland TR-808.

I also use hachibushu, which I created from the kanji characters hachi (eight) and bushu (warrior spirit), not knowing that there was an actual basis for the name.
9696
I think fallout is the spiritual successor to wasteland.  Checkout fallout 2 for the best proof of that as some of the locales and npcs directly borrow from wasteland.
9697
Living Room / Really Huge MindMap
« Last post by wraith808 on June 04, 2009, 09:39 AM »
I don't get into the whole MindMapping thing- never had enough time to explore it fully.  But this is pretty impressive:

http://www.innovatio...ex-largest-mind-map/

A huge mindmap of "A History of Chinese Civilization".
9698
Gmail Keeper.  It's by Innovation Gear, but I don't see a mention of it on their site strangely enough.   You can find information on Bits Du Jour though.

I bought it, but haven't tried it yet.  So much software, so little time.  But the comments on Bits seemed positive.  I'll try to give it a whirl and let you know how it comes out.
9699
Living Room / Re: What annoys you to no end?
« Last post by wraith808 on June 03, 2009, 10:39 AM »
MS Flight Simulator X and other software like it that assume that you are pirates so much their software is incompatible with you having CD Imaging Software on your system.

For a long time, my son's DVD drive didn't work, so I was taking his games and using VirtualDrive to image them so that he could mount them and play them.  He plays mostly older games, so it didn't really matter.  Enter Flight Simulator.  I couldn't copy it, so broke down and took a DVD drive out of a non-working case and installed it in his system.  He installs- the first DVD installs perfectly, but the second one won't mount (I guess it's the play disc).  No matter what, or how many installs, we get errors- even a blue screen!  I look it up online, and on several sites, including the MS site, there is an indication that if you have *any* imaging software (Nero, etc) installed, it won't install!  :tellme:

How far will DRM go to inconvenience their paying customers!  :mad:
9700
It's funny how many of the good old games were done by EA before their transformation to corporate tyrant, and how many of their games were innovative as opposed to now.

IMHO, it think a lot of it had to do with Trip Hawkins being at the helm in the early days. EA lost its sense of humor and much of its soul after he left.

I think a lot of that soul was drained by EA going public- stockholder accountability can make a company do many things that are counterproductive to maintaining the happiness of it's user base.  It's very hard to maintain a balance between making your users happy and making your stockholders happy.
Pages: prev1 ... 383 384 385 386 387 [388] 389 390 391 392 393 ... 404next