Oh no! More boring computer problems! Oh no!

Message Bookmarked
Bookmark Removed
Not all messages are displayed: show all messages (1739 of them)
I've got a requirement to do this for work. SMP support would be good. Low cost also good.

Ed (dali), Monday, 21 November 2005 19:44 (twenty years ago)

NEW QUESTION: My Mac clone is languishing at home for want of a systems disk; apparently something got corrupted and needs to be re-written but I haven't hit on the right generation of OS yet. OS 8 was too old and 9.2 too new, so now it's time to experiment -- does anyone in the States have an 8.5, 8.6, 9.0, or 9.1 universal systems disk you wouldn't mind loaning out?

Laurel (Laurel), Monday, 21 November 2005 20:04 (twenty years ago)

bump

Ed (dali), Tuesday, 22 November 2005 15:37 (twenty years ago)

ed: i use mencoder on linux which works a treat. the windows port didn't do as expected this morning when i tried it (using lavc ffmpeg4 encoder just crashed out, didn't try it with anything else). i'm sure there are a million other mpg-avi encoders out there, mencoder is just the one i know.

here's a bunch that i haven't used:
http://www.videohelp.com/convert#4;13
this looks promising:
http://www.videohelp.com/forum/viewtopic.php?t=259841
as does this:
http://www.videohelp.com/forum/viewtopic.php?p=1271288#1271288

(if only because the mention libraries i recognise - tmpgenc and ffmpeg respectively).

koogs (koogs), Tuesday, 22 November 2005 16:24 (twenty years ago)

I pay a guy to update a website. The most time consuming part is the photos. We take the photos using a pretty expensive top quality digital camera. It doesn't have options for 600dpi or anything, it's just set to take them at top quality which I think is 8 megapixels. It results in jpegs which are about 3mb each.

So we send these photos to our website guy each month. He scales the pics down each time, to about 13kb so they're usable for a website.

The first time, the photos all went up fine. The second time, all fine again. The third time, we checked the pics on the site and they were real crappy. All blocky and ugly. I mailed him and asked why. He said it was because we were taking the pictures at 72dpi. Either that, or when we were taking them off the camera, the program we used was converting them to 72dpi. Thing is, we don't use a program to take them off the camera, we just drag them off. And the settings on the camera haven't been changed ever, they're all taken at the best quality.

Plus, saying that we take them at 72dpi doesn't make sense because surely this would make the jpegs much smaller than 3mb?

So, I'm confused. Is it the camera at fault? The website admin guy says that pictures can still be taken at 72dpi and be of a large file size, but this doesn't make sense. These photos can be printed on an A3 sheet of paper and still be great quality so saying they only have 72 dots per inch sounds mighty wrong.

We sent the most recent batch of photos over and he said that when he opens them, they're 72dpi again.

Here's one of the pics: http://s49.yousendit.com/d.aspx?id=2BGUVE28MVREY2VZ9FOJ1DZF33

Does anyone have an explanation for what might have happened here?

Affectian (Affectian), Tuesday, 22 November 2005 17:36 (twenty years ago)

he's an idiot? that picture looks fine - it's 2000x3000 pixels and will scale down nicely (resolution doesn't matter here - the target for websites is about 72dpi anyway)

> The third time, we checked the pics on the site and they were real crappy. All blocky and ugly

this sounds like either a compression problem ie they are too compressed or like he has them one size and is forcing them via img height and width in the code to be a different size.

http://home.clara.net/koogy/photos/01s.JPG = same image resized to 300x450 (75dpi, jpeg quality = 50%, filesize = 21K, done using gimp) (50% is quite low)

koogs (koogs), Tuesday, 22 November 2005 18:09 (twenty years ago)

Thanks Koogs, I thought as much. Thing is, the guy's having a huge sulk at me for daring to doubt his website mastery. But that's a whole other thread...

Thanks again for clearing that up.

Affectian (Affectian), Tuesday, 22 November 2005 19:21 (twenty years ago)

Laurel, I have an 8.5 disc. It's out on loan but I can get it back this weekend.

Paul Eater (eater), Wednesday, 23 November 2005 02:31 (twenty years ago)

Resizing without resampling? That's what it sounds like. But why would the problem only crop up the third time?

M. V. (M.V.), Wednesday, 23 November 2005 03:16 (twenty years ago)

Why, on my iBook, is VLC's maximum volume three times louder than QuickTime's, with no distortion, even playing the same movie file? Is there some behind-the-scenes hack to let everything have as much volume range as VLC?

Paul Eater (eater), Monday, 28 November 2005 15:24 (twenty years ago)

Ed, if you don't have the answer, email me at [email protected] and I'll forward it to a few people I know and ask them.

Nathalie (stevie nixed), Monday, 28 November 2005 15:27 (twenty years ago)

Whoah, Paul, somehow I never saw your post above. Thank you thank you thank you -- have you got it back yet? I'll email.

Laurel (Laurel), Monday, 28 November 2005 15:29 (twenty years ago)

"An error occurred while evaluating custom action attribute "null" with value "null": A null expression string may not be passed to the expression evaluator (null)"

koogs (koogs), Tuesday, 29 November 2005 14:20 (twenty years ago)

That's a great error message!

Forest Pines (ForestPines), Tuesday, 29 November 2005 14:28 (twenty years ago)

one month passes...
(we need one of these threads for programming problems i think. and general algorithm talk)

ok, Java. i have a list of things (for a particle system), only some of which are currently active. i've currently got them in an array and everytime i want to draw them i go through the entire array and draw the ones where the state is ALIVE. when i need another particle i go through the array until i find one that is DEAD and re-initialise that. this strikes me as bad and i'd rather have a list of ALIVE elements and a list of DEAD elements and swapt things between the lists as the state changes. in C (i am a lot more comfortable with C) i'd malloc a bunch of space and modify pointers as required. what happens in Java? can i change pointers? can i switch things between lists (Vectors? Arrays? what) without having to recreate them? will the vm be continually deallocating and reallocating memory? how fast will it be?

(can i just say in advance: threadkilla! thanks)

koogs (koogs), Friday, 27 January 2006 17:57 (twenty years ago)

The VM will take care of memory (likely quite inefficiently). You could probably do the pointer-style stuff with the two lists, but I imagine this would be hideously inefficient when done in Java.

I would consider using a linked list rather than an array (you could even store the linked list in state order, hence dead ones could always be at the front of the list, so you'll get O(1) performance on re-initialising dead particles).

tissp! (the impossible shortest specia), Friday, 27 January 2006 18:09 (twenty years ago)

cheers. i will probably do more with ALIVE particles (moving them, drawing them, collision detection etc) so they are best at the front.

if i use an ArrayList can i add ALIVE things to the front and DEAD things to the end? i guess so (array is fixed size (at the mo). i never need information about DEAD things so i can delete them without worrying). if i add things or delete them will that bollocks up the indexing for the rest of the list i'm iterating over? i remember vaguely having to make a copy of something because i couldn't modify it whilst iterating over it. (maybe that was j2me only.)

in C you had to write all this stuff yourself (until glib came along) but at least you then knew how it worked 8)

koogs (koogs), Friday, 27 January 2006 18:31 (twenty years ago)

I believe the ArrayList has add(Object, index) so you could easily prepend items. Adding and deleting will change indicies, but you could store the particle in a wrapper class i.e.


class ParticleWrapper {
int id;
Particle p;
}

with a unique id.

tissp! (the impossible shortest specia), Friday, 27 January 2006 18:35 (twenty years ago)

that's not quite what i meant by bollocksing up the indexes. i'm not really bothered about which particle i'm dealing with, they are all the same.

if i'm trundling through a list, processing the alive ones, and get to element 4 and decide it's now dead (due to aging or collision or whatever) so i mark it as such and move it to the end. but what is element 5 now? is it what used to be element 5 before i deleted #4 or is it what used to be element 6 because everything's moved up to fill the gap?

i think i need to write some tests...

koogs (koogs), Friday, 27 January 2006 19:02 (twenty years ago)

Everything moves up I believe.

tissp! (the impossible shortest specia), Friday, 27 January 2006 19:07 (twenty years ago)

cheers tissp. will post results on monday.

koogs (koogs), Friday, 27 January 2006 19:14 (twenty years ago)

three weeks pass...
Ok this is very boring and no doubt very simple but I've googled and googled and googled to no avail: how do you partition C: drive?

I've got a 300gb C: drive (Windows XP, 1gb ram, 2.21ghz) and foolishly chose not to partition it when I first set up my PC. Now the hard drive is about half full and running r e a l slowly, so I guess I need to partition it. But how do I do it without wiping everything off my pc and starting again from scratch? Do I have to download a new program or can XP do it quickly and easily? (sorry for sounding like a st00pid newbie moron)

Melissa. (melissamelissa), Friday, 17 February 2006 13:40 (twenty years ago)

hmmk i think this is what i need to do as well, so ill join in the clamour for an answer

ed is this what i need to do?!?!

ambrose (ambrose), Friday, 17 February 2006 13:47 (twenty years ago)

I don't know of a free tool that can do this but Partition Magic was always the recommended thing to buy if you didn't want to lose your data. I dunno if this has changed in the recent past (they were bought out by symantec, i seem to remember)

Greig (treefell), Friday, 17 February 2006 13:51 (twenty years ago)

yes Partition Magic is the tool I use as well, I'm pretty sure it's still the leader in this field.

Ste (Fuzzy), Friday, 17 February 2006 13:55 (twenty years ago)

Defrangment not partition is the way to go in this situation (although partitioning on install is not a bad strategy). After defragging set the swap file size so it is not variable. That will stop the swap file from getting fragmented.

Right click on my computer
choose properties
select the advanced tab
Click on the performance 'Settings' Button
Click on the Advnanced tab
Click on the virtual memory change button
select custom size
Set the inital size and the maximum size to the same value, minimum 1.5 times installed RAM, maximum 3 times installed RAM

Ed (dali), Friday, 17 February 2006 13:55 (twenty years ago)

Does anyone know how to get Evolution (the Mail/Groupware client) to see outlook public folders over an Exchange connection?

Ed (dali), Friday, 17 February 2006 16:31 (twenty years ago)

Ok, bit of a nightmare problem here. We got a bunch of photos of last night at Big Sexy Land and we've just stuck the memory card reader into the pc and ALL the photos have disappeared. What we see are dozens of folders all named things like '_&.%_&.%_&.%_&.%'. When we double click on any of the folders we get an error message saying 'the file or volume is incorrect' or '.... refers to a location that is unavailable' or similar. It won't let us drag any of these folders off the card and onto the pc.

The memory card is inserted properly and we've tried a different card and that works fine. We've put the card back in the camera and it says 'no pictures', but we took another picture and it said '1 out of 60' so that suggests there are pictures still on there. It recognises any new pictures we take, but not the old ones.

Probably grasping at withered straws here but does anyone have a magical solution for making these pictures come back to life? It's seriously important as there were a lot of vital shots for people on there. The camera is a Canon EOS350D (similar to yours Ed, I do believe) if that's any help. Has anyone had this happen before even?

Affectian (Affectian), Sunday, 19 February 2006 22:48 (twenty years ago)

i'm rebumping this thread to remind myself i'm going to need VBA/Excel help later. anyone qualified?

nervous (cochere), Sunday, 19 February 2006 23:24 (twenty years ago)

Affection - there are plenty of programs designed for recovering photos off corrupted memory cards. They usually have a free trial version that shows you what you could restore if you bought them. I can't recommend any in particular (maybe someone else can?) but have do a search on download.com for a PC or versiontracker.com for a Mac (can't remember which you use) for "photo recovery" and you'll get plenty of options.

Alba (Alba), Sunday, 19 February 2006 23:36 (twenty years ago)

Albo, thank you. Didn't even know those programs existed and doubted very much that they'd work. But they do! Annoyingly, all the photos have PICTURE RETRIEVER slashed across them - until I pay $24.99. Emule is on the case right now, and will hopefully save me the cash. Thanks again.

Affectian (Affectian), Monday, 20 February 2006 21:33 (twenty years ago)

I have just acquired MSN, but to use it is says I have to disable my Norton firewall?, which is something I'm not too comfortable doing. So my boring question is: does anyone here know a way round this, so that I can use MSN with Norton firewall fully operational?

Jase, Saturday, 25 February 2006 14:48 (twenty years ago)

Not to worry - just worked it out!

Jase, Saturday, 25 February 2006 15:20 (twenty years ago)

Does anyone know of a good online guide to updating a website in Dreamweaver? I've been paying a guy £30 a month to update a website but I've decided to take it on myself, and I want to get my head round Dreamweaver myself.

I've got the username, password and ftp details. I'm getting hold of Fireworks (for the photos) and Cuteftp to upload the photos to the ftp server. But I'm clueless as to where to begin with actually sticking this stuff up on the site.

I guess it's all there in the help file but there's so much to wade through I thought I'd try here first. Is it a simple task? (I only need to add some text to a few pages and upload some more photos to a gallery). Can anyone give a quick idiots guide on how to begin?

Affectian (Affectian), Monday, 27 February 2006 23:57 (twenty years ago)

is it just a gallery type page? if so then it may just be as simple as uploading the file to the right place and the web software will detect the new files and display them with everything else (like flickr does).

failing that you'll have to modify the html to include links to the new pictures.

do you have a url we could look at, to investigate a bit?

koogs (koogs), Tuesday, 28 February 2006 10:04 (twenty years ago)

Hi Koogs, thanks for helping. It's a bit trickier than that though - I have to set up a new section for these photos and create a thumbnail pic, etc. The main thing I need to do is add the February bit to http://www.clubclique.co.uk/gallery.htm but I'll also need to change some of the text on 'News' and 'Music'. Would you say it's too difficult for a complete newcomer to work out?

Affectian (Affectian), Tuesday, 28 February 2006 14:01 (twenty years ago)

(oops, was out at lunch)

well, the next two pictures will be easy enough to add as there are already spaces for them in the table (look for [td width="90"]@nbsp;[/td]* and replace the @nbsp; with a modified copy of the line above). after that you'll need a new table row which is a bit harder (but again just a modified copy of code that's already there).

* i've changed the triangle brackets to [ and ] here and the ampersand to an @ because otherwise the ilx software will throw a wobbly. you should keep them as they were)

the actually gallery pages (the next one will be gallery13.html) can just be modified copies of the pages that already exist, updated for new pictures. ditto the http://www.clubclique.co.uk/gallery_pages_jan06/11.htm type pages. none of this is difficult as long as you're ok with editing files and uploading.

i once wrote something (www.koogy.clara.co.uk/page74/) that had a clever javascript main page and which just let you modify a simple secondary script (http://www.koogy.clara.co.uk/page74/routes.js) and upload that day's image and it'd regenerate itself on the fly. might be an idea for your site.

> Would you say it's too difficult for a complete newcomer to work out?

the tables can be messy if you nest them (yours look ok). look into simple table stuff. and, like i say, as long as you're ok with editing files and uploading then it's fine. the ftp client will typically work just like a file manager. try downloading a copy of what's already there and modifying it locally. point the browser at the local copy and edit it until it looks ok. if it messes up just download it again. rinse, repeat.

koogs (koogs), Tuesday, 28 February 2006 15:02 (twenty years ago)

Koogs, thank you very very much. I managed to get a friend to talk me through it step by step but your advice helped me understand it pretty much before that. Sussing out all this was made all the sweeter by aforementioned guy repeatedly saying 'ahh you'll not be able to do it, it's very tricky... just give me a tenner now and it'll all be fine...' - well IN YOUR FACE condescending guy! And thanks Koogs!

Affectian (Affectian), Thursday, 2 March 2006 00:09 (twenty years ago)

cool. i did have a quick look at it last night and it is the usual dreamweaver mess of tables (triple nested, some with only a single row and single cell = pointless) but just copy and modify what's already there and it'll be fine.

what you could do is change the a:active colour so that links don't disappear when you click on them 8)

koogs (koogs), Thursday, 2 March 2006 09:13 (twenty years ago)

How do I get my phonebook off my mobile phone onto my work PC. I have paired the laptop and phone no problem but what can I use instead of the Mac iSync and Address Book to copy store and manipulate my phone numbers?

Ed (dali), Thursday, 2 March 2006 12:52 (twenty years ago)

I've got a Toshiba Satellite Pro 2100 laptop, it's kinda old, bought in 2003 but does most things pretty well. I recently upgraded the ram from 256mb to 512mb. It has two slots for ram cards, one has a 512mb card in and the other slot is empty. Today I bought another 512mb card and put it into the spare slot but when I turned the laptop back on it just went BEEEEP BEEEEP BEEEP and the screen stayed black.

I went back to the shop and the shop guy told me that all it means is that the BIOS needs updating, an easy enough job. I've just tried to update the BIOS now and it says 'You do not need to update BIOS'. So now I'm stumped. Have I wasted £40 on a useless bit of plastic or can I sort it out so my laptop can have 1gb of ram? Is a laptop from 2003 likely to be capable of managing 1gb of ram?

Affectian (Affectian), Monday, 13 March 2006 22:23 (twenty years ago)

Sounds like a memory incompatability or bad stick. Try moving the stick to the other slot and see if it boots normally. The limit for your system is 1024mb, so this shouldn't be a problem. If this fails, exchange the RAM for another similar stick wherever you purchased it.

ng-unit, Tuesday, 14 March 2006 04:50 (twenty years ago)

so I can't read my secondary hard drive that has thousands of mp3s on it. should I pay for data recovery, or is there something else I can do?

Sym Sym (sym), Tuesday, 14 March 2006 06:14 (twenty years ago)

Try running a disk scan on it first. Start -> Run -> type "cmd" (no quotes) -> type "cd f:" (no quotes, and the "f" refers to the drive letter -- if it normally mounts as something else, "d" or "g" or whatever, use that) -> type "chkdsk /r" (no quotes) -> type "y" for yes -> reboot

You may not be able to get that far, in which case you could run a hard drive recovery utility to harvest the data. I can't think of any good ones that are free, but they may reveal themselves to you after a google search.

ng-unit, Tuesday, 14 March 2006 12:41 (twenty years ago)

Xpost x 2, thanks ng-unit. Just emailed Toshiba and found out that my laptop can't cope with more than 512mb of ram. Wish I knew this before splurging £40 on a useless bit of plastic. Ngh. (thanks for the advice though).

Sym Sym, not sure if a hard drive works the same way but I had a memory card full of photos that became corrupt. I downloaded PHOTORECOVERY 3.07 and it retrieved them all no probs. This probably wouldn't work for you but it's worth a try - try Emule for a 'demo' version..

How useful are these data recovery services? Can these people do things that average computer user cannot?

Affectian (Affectian), Tuesday, 14 March 2006 12:51 (twenty years ago)

There are two levels of data recovery. One involves removing the hard drive from your computer, putting it in an enclosure (or connecting it straight to a computer) and basically treating it as the equivalent of a USB device. The idea is that if the file system is fucked and you're booting into a clean copy of Windows, you can view it as an additional drive and copy the files over easily. Encolsures run about $25 at Comp USA/Micro Center, or you could take it to a repair shop who will charge you whatever the hourly rate is for labor (maybe $80) to copy the files.

The other is when there's physical damage to the drive (i.e. it makes horrible sounds and won't appear in the BIOS as a bootable device). Then you can send it to a company like Drive Savers and prepare to spend $600-1700 for recovery. Even if they can not recover files, you're out the $$$. They do have capabilities that the standard user or your company's tech guy don't, in that they can scrape the data off layer-by-layer and reconstitute it into something usable. Sometimes. I would never recommend this option unless you seriously can not live w/o what you have on your computer.

ng-unit, Tuesday, 14 March 2006 13:25 (twenty years ago)

any guess on how many hours it would take for the repair people to copy 16 gb of music? i'm pretty sure my stuff is recoverable, but I need to figure out if it's worth paying for.

Sym Sym (sym), Tuesday, 14 March 2006 17:50 (twenty years ago)

I am trying to wireless up Sgs's laptop. I have stuck a wireless card in it and installed the drivers; at least, the machine now recognises both the card and the fact that there is a wireless network in the vicinity.

However, it can't actually access it. When I try and set it up, it gets stuck on "renewing IP address" and fails to connect to it. Anything I can do to make it connect to our wireless network successfully?

Markelby (Mark C), Friday, 17 March 2006 11:36 (twenty years ago)

when you say 'set up' where exactly are you?

Ste (Fuzzy), Friday, 17 March 2006 11:55 (twenty years ago)

When I try and set it up, it gets stuck on "renewing IP address" and fails to connect to it

That means it's trying to find a DHCP server, and can't. Giving it a static IP address on the same subnet will work, but if you're trying to use a DHCP server it might cause clashes in the future.

Forest Pines (ForestPines), Friday, 17 March 2006 11:57 (twenty years ago)


You must be logged in to post. Please either login here, or if you are not registered, you may register here.