hp pavilion ze5200 Hardware and Software Hardware by qis … open the case. [/B]I'm reluctant to accept the thory that it's just broke, i'd like to know… Simple script with escaping quotes Programming Software Development by cwarn23 … submit that data to another program. Although I have the thory right, I don't understand why the middle double quote… Box Blur Theory Programming Software Development by sirlink99 Hello Everyone! I am wondering about the thory behind the box blur. I have an assignment, and I … Re: We apologize for the inconvenience, but Windows did not start successfully Hardware and Software Microsoft Windows by Wires Well your thory seems possible, I however dont want to rule out the … Re: Do you believe evolution? Community Center Geeks' Lounge by cwarn23 … and the species then continued to develope using the evolution thory. So unless you believe god is still alive today then… Re: hp pavilion ze5200 Hardware and Software Hardware by Chaky Is there a Floppy drive? I don't know Sony laptops very well, but I do know that HP laptops do not store BIOS settings in a FLASH ROM. Instead they use hard disc. So if that is the case then try obtaining a boot floppy disc for that particular model. And a hard disc too. Anyway, MBO actually does work without CPU. POST part, that is. Re: hp pavilion ze5200 Hardware and Software Hardware by Chaky Anyway, if you see something in a thrash bin, it's there for a reason. Re: hp pavilion ze5200 Hardware and Software Hardware by qis [quote=Chaky]Is there a Floppy drive? I don't know Sony laptops very well, but I do know that HP laptops do not store BIOS settings in a FLASH ROM. Instead they use hard disc. So if that is the case then try obtaining a boot floppy disc for that particular model. And a hard disc too. Anyway, MBO actually does work without CPU. POST part, that … Re: hp pavilion ze5200 Hardware and Software Hardware by Chaky A dead battery could be a reason it's behaving like it is. Maybe the AC power is for recharging only and without (or dead) battery it just cann't operate. Wuldn't be the first one. Anyway, except for a memory stick, there isn't much to salvage. Everything is intergrated and parts that are not (CD drive, display ect.) is custom made for that model. … Re: hp pavilion ze5200 Hardware and Software Hardware by Chaky Usualy those things have some wierd shaped screws that need wierd shaped screwdriver to unscrew (say that 10 times fast). If that's the case, you will have to go to the hardware store (not a pc-shop) and get the set of scrwedriver tips of all shapes and sizes. Some of the screws may be covered with stickers. Some parts may be without screws … Re: hp pavilion ze5200 Hardware and Software Hardware by Chaky I must be getting old. It's HP isn't it? It will never boot without hard disk. Nor give any life signs because it has no bios settins and can not do post. I imagine that someone's laptop battery died, and that someone, in his indefinite ignorance, threw away, otherwise working, laptop and ripped it's HD in process leaving an empty shell of a laptop… Re: hp pavilion ze5200 Hardware and Software Hardware by Chaky Update to my reply: Replace HP with Compaq. I apologise, for my memory chip is buggy. Re: hp pavilion ze5200 Hardware and Software Hardware by qis [quote=Chaky]I must be getting old. It's HP isn't it? It will never boot without hard disk. Nor give any life signs because it has no bios settins and can not do post. I imagine that someone's laptop battery died, and that someone, in his indefinite ignorance, threw away, otherwise working, laptop and ripped it's HD in process leaving an empty … Re: Simple script with escaping quotes Programming Software Development by iamthwee For the sake of simplicity and less headaches I would create a parsing program. The program will read a text file where you type line you want in there without worrying about escape sequences. Then the program read this line and creates another string already formatted... string quote = "\""; string b_slash = "… Re: Simple script with escaping quotes Programming Software Development by cwarn23 [QUOTE]And lastly, is that php regex legit?[/QUOTE] Yes it is php regex as the c++ command prompt is communicating with the php-gtk application. Anyways, I tried the code ya supplied and it returned [ICODE]" \[/ICODE] Also I just tried putting the expected output into a batch file and the program blew up. That is it wouldn't work. I … Re: Box Blur Theory Programming Software Development by マーズ maazu Hi there, r,g,b should be values 0 < n < 255. If you have 255 straight for all 3, you get black! Which is doing what it is suppose to do, but not what your expecting. Could you just keep the r,g,b values and focus on propagating neighbouring pixels? Re: Box Blur Theory Programming Software Development by JamesCherrill You don't multiply the color values together! You multiply the color values by the corresponding values in the 3x3 matrix, then divide by the sum of the matrix. With a matrix of all 1's that's particularly trivial - you are multiplying the values by 1 (!), adding the results, and dividing by 9 Eg Suppose we have pixel value 100 (just one color to … Re: Box Blur Theory Programming Software Development by sirlink99 @JamesCherrill Thanks! I have managed to get the blur working, however my image moved a little down and to the left whenever I use the blur filter code. This is the code I am using: where `*pixel Im` is an image, and tmpBuffer is a temporary buffer to apply the blur. void MyFilter(pixel* Im, int myIm_Width, int myIm_Height){ int x, … Re: Box Blur Theory Programming Software Development by JamesCherrill I suspect your loop conditoins - you go from -blurRad/2 to (+blurRad/2 -1). Changing the < to a <= should fix that.