Search results

  1. ddrueding

    DVD Hi-Def format war near end, Blu-ray wins?

    Sony? Winning a format war? Looks like I picked the wrong one a few months ago. USB Blueray drives are still not cheap...
  2. ddrueding

    Do I need a database for movies?

    Got #3 working the was I wanted by un-doing a bunch of Blake's work...sorry about that. I almost have #1 working as I want; the location is in the hyperlink, but it still starts with the server's address (http://192.168.1.7/ z:\movies\animated\Cinderella.avi ) I understand the explanation...
  3. ddrueding

    6 years of StorageForum!

    I was going by Handruin's account creation date: 01-12-2002.
  4. ddrueding

    6 years of StorageForum!

    What would I do without SF? Know a lot less and work a lot more ;) For years I haven't had any good friends living nearby, you guys have made me not even notice. Thanks.
  5. ddrueding

    BitMicro preps 832GB SSD 2.5 inch SATA

    128GB is over $3k, so I would guess this is around $10k. Just a guess. Also keep in mind this is one of the faster 100mbps devices.
  6. ddrueding

    Do I need a database for movies?

    Ideas are always welcome ;) Half of #3 is already done, I just need it to display all records when the page is first accessed as well. Thanks again.
  7. ddrueding

    Do I need a database for movies?

    Awesome. Thank you so much. The things left on my wish list are all HTML (I think) so I hope I can figure them out: 1. Hyperlink all the titles to launch the movie 2. Hyperlink all the tags to run a new search on that tag. 3. Display all records when no search or an empty search is run.
  8. ddrueding

    Do I need a database for movies?

    Damn. You guys are awesome. It will take me a while to chew through all that and learn what it means. Thanks muchly.
  9. ddrueding

    6 years of StorageForum!

    I just checked, and we are a few days short of 6 years since the first accounts were created. I'd like to thank everyone here for making it such a nice and easy place to be. And of course special thanks to Handruin for running the place!
  10. ddrueding

    Do I need a database for movies?

    Perfect. If I could search for "The Matrix" by just typing "matrix", that would be ideal. Bringing up some additional results is fine, this will mostly be a way to surf between titles.
  11. ddrueding

    Do I need a database for movies?

    Alright, I'm changing the location fields to length 100, that ought to do it. I am running MySQL 5.0.38, so that isn't an issue.
  12. ddrueding

    Do I need a database for movies?

    Handruin, What I want in an ideal world...alright, you asked for it ;) A single search box that will return the records of anything similar to the title or similar to any one of the tags in the tag field. Titles may contain spaces, but tags are alphanumeric and separated with spaces. It would...
  13. ddrueding

    Do I need a database for movies?

    Thanks again Handruin. The HTML looks much cleaner with that quote removed, the backslashes in the form removed, and changing back to post didn't break anything. Now for what should be a simple question: $query = "SELECT title,tags FROM movies WHERE title LIKE 'Cinderella' OR tags LIKE...
  14. ddrueding

    Something Random

    Not yet, but I haven't had to commute in it yet. I've been working from home for the last week. Ask me again this time tomorrow and the answer will likely be different. Is it keeping you up? IIRC, you are PST as well.
  15. ddrueding

    Do I need a database for movies?

    I feel bad posting this code, because I know it is complete crap. But if you guys are going to continue spending your time helping me, you should see the whole thing. So here 'goes: <?php //Connects to database mysql_connect("localhost", "root", "") or die(mysql_error())...
  16. ddrueding

    Do I need a database for movies?

    I created a unique auto-incrementing index, and my VARCHAR fields are length 50, that should be enough.
  17. ddrueding

    Do I need a database for movies?

    Yup, I tried this and it works fine: ...WHERE title='Cinderella'"; And this works fine, too: ...WHERE title LIKE 'Cinderella'";That leads me to believe that it is the syntax of the variable from the form that I got wrong. Awesome. I knew I had to, but I hadn't found out how yet. Thanks...
  18. ddrueding

    Do I need a database for movies?

    Great question. I don't know. The HTML forms tutorial I was working from used post, so that is what I used. The pages I was reading didn't say how they were different.
  19. ddrueding

    Do I need a database for movies?

    I have Webmin installed, but it doesn't look like it will let me run SQL statements. I'll install phpMyAdmin now and see how it goes.
  20. ddrueding

    Do I need a database for movies?

    Wow, thank you so much for the in-depth assistance and tips. I'm off to give them a shot, and I'll report back my progress.
  21. ddrueding

    Do I need a database for movies?

    I'm remembering why I hate coding... The syntax on these is wrong, and I don't know how. $query = "SELECT * FROM movies WHERE title=$_POST['titlesearch'] ";$query = "SELECT * FROM movies WHERE MATCH ( tags ) AGAINST ($tagsearch) ";'titlesearch' and 'tagsearch' are brought in from an HTML page...
  22. ddrueding

    Do I need a database for movies?

    I rip them using RipIt4Me and compress in AutoGK into a 1.85GB XviD file. That way I can fit them evenly onto thumbdrives for trips. The HD-DVDs I rip using AnyDVD and store whole on the drive (~30GB each).
  23. ddrueding

    Do I need a database for movies?

    I have now, and it looks good, thanks. I'll still be fighting my way through my own implementation though, I still want to learn this stuff.
  24. ddrueding

    Do I need a database for movies?

    I've pretty much decided that I want to use a tagging method. A really, really simple one. A single table, with 5 fields: Index (do I need one?) Title (varchar) Tags (text) FileLocation1 (varchar) FileLocation2 (varchar) Now all I need to be able to do is fulltextsearch the tags field, insert...
  25. ddrueding

    Do I need a database for movies?

    I'm now looking at FreeTag.
  26. ddrueding

    Do I need a database for movies?

    So. For this project I was thinking of doing it one of two ways: 1. Defined fields per movie: Title Year Genre1 Genre2 Director1 Director2 Writer1 Writer2 Photography Music Actor1 Actor2 Actor3 Actor4 Actor5 Rating Time But I think I can be better served and with easier coding just using a tag...
  27. ddrueding

    Linux Certifications?

    Thanks Handruin. That was indeed the problem. I stumbled accross the answer earlier, and I thought I had posted the fix, but it doesn't look like it's here. Now I'm looking for a reference on getting form data into the database.
  28. ddrueding

    Which cam/lens for flowers? LM,Tan, ed, Handy?

    Wow. Is that sample picture representative? If so, I need to get me one of these in 52mm form for my landscapes/panos. The haze sucks at distances over 2 miles.
  29. ddrueding

    Something Random

    Got it. For some reason, the default LAMP installation was just a LAM install. No sign of PHP installed or associated with Apache2 whatsoever.
  30. ddrueding

    Where's everybody?

    Is he around Houston? I won't have a car, and will be staying with the GF's relatives.
  31. ddrueding

    Where's everybody?

    I did the trip to Disneyland. The next trip will be to Houston, TX in Feb and then Moscow in late May.
  32. ddrueding

    Something Random

    Sorry to hear about your horse(!?) and your trip to China. The pollution there was too brutal. Where abouts in China are you going?
  33. ddrueding

    Linux Certifications?

    My recent plan to get a LAMP server up and running made it impressively (to me) far before failing. Here is what I have so far: Install Ubuntu 7.10 Server in LAMP mode Perform all updates Configure Apache Install Webmin Install basic Gnome GUI (I know, I don't need it, but it's good for local...
  34. ddrueding

    Read this guy's column

    There is a new preface where he tries to back out...cute.
  35. ddrueding

    Quad core AMD $189.99

    Going from my old 3800+ to a 3800+ X2 to a 4200+ X2 to my current 6000+ X2, I only noticed the difference on major computing tasks (video encoding, Photoshop Filters, etc.) It didn't make any "normal" stuff faster in any appreciable way. I'm sure some of the games appreciate it, but new games...
  36. ddrueding

    Something Random

    Thunder and Lightning. We normally don't get that around here. Sweet.
  37. ddrueding

    Do I need a database for movies?

    That was my first thought, to do a LAMP installation in a VM and do it in there.
  38. ddrueding

    Weird USB Problem

    Have you tried a reboot? Without some of the other devices disconnected? Did it show up in "Disk Management" under "Computer Management"? Perhaps you need to format it?
  39. ddrueding

    M$ Office SP3 Planned Obsolence

    I think you (under?)estimate our courts...
  40. ddrueding

    Another video card

    Speedfan should do the trick?
  41. ddrueding

    Quad core AMD $189.99

    At a price that is 2/3rds of the Q6600 that isn't a direct comparison either. It's main competition is really the E6750. That makes it look like a good deal.
  42. ddrueding

    Something Random

    For those that don't follow XKCD, I found the 'Choices' series very insightful.
  43. ddrueding

    Quad core AMD $189.99

    almost $100 more.
  44. ddrueding

    Do I need a database for movies?

    We've been building quite a movie collection, and I keep all of them on my server, for easy access from anywhere in the house. Now the biggest problem is deciding what to watch. What I really want is to tag the .avi files with the names of the actors, directors, genres, awards, etc so I can view...
  45. ddrueding

    M$ Office SP3 Planned Obsolence

    Lunar hinted that he is in a managed environment. I don't think he will have the choice.
  46. ddrueding

    M$ Office SP3 Planned Obsolence

    You could always do the reg hack mentioned or open and re-save your files before they patch...
  47. ddrueding

    Quad core AMD $189.99

    Thanks for the info. Are these the ones with the bugs?
  48. ddrueding

    dSLR thread

    I agree. I'm just not sure how to crop most of them. I don't "see" it yet.
  49. ddrueding

    M$ Office SP3 Planned Obsolence

    I'm loving Google Docs. All my clients are still on MS Office, and I send/receive everything in .doc or .xls to remain compatible. I just wish there were an easy way to send a google doc directly from my GMail account as a .doc or .xls.
  50. ddrueding

    Another video card

    The 8800GT is supposed to be one awesome card, the best on the market by far. I don't know why I don't have one yet, even though my games are fine @ 1920x1080. Perhaps the expansion for Supreme Commander will encourage the replacement...
Top