Search:

Type: Posts; User: Markallen85

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. Replies
    12
    Views
    6,374

    well, technically RAID is all about redundancy...

    well, technically RAID is all about redundancy (Redundant Array of Independant Drives), heance my use of AID :P, though the term has a wider meaning now.
  2. Replies
    12
    Views
    6,374

    actually you can stripe the data with two drives,...

    actually you can stripe the data with two drives, you just don't get the redundancy. may not be a true RAID, but it runs through a RAID chipset, maybe call it an AID :P
  3. Replies
    12
    Views
    6,374

    it's working now, drivers were just being screwy,...

    it's working now, drivers were just being screwy, the ones from the support CD refused to work, but the ones off the asus stie were fine.

    for reference it's a pair of 250 WD caviars being striped...
  4. Replies
    12
    Views
    6,374

    installing RAID

    I could use some help with getting my RAID working.

    I'm runing an asus p4c800-e and trying to RAID 2*250 Gb drives

    the raid is physically set up and the bios utility tells me it has created the...
  5. I know a game with predefined controls won't, but...

    I know a game with predefined controls won't, but most PC games allow you to remap controls. Take mechwarrior4 & all its assorted sequels for example, under the mouse controls it uses buttons 1-5 as...
  6. dang..... that's a pain, guess I'll have to swap...

    dang..... that's a pain, guess I'll have to swap back to the old mouse for gaming then, unless I can get some generic driver to work - wonder if such a thing exists.... google time

    -mark
  7. using all the bttons on me intellimouse

    I've just put together a box with microsoft's intellimouse explorer 4 (tiltwheel + 2 thumb buttons) but nothing except windows seems to be able to see more than just the two default buttons (would...
  8. Replies
    62
    Views
    7,181

    a personal favourite algorithm is RSA, I believe...

    a personal favourite algorithm is RSA, I believe PGP is based on this algorithm, and is a free download (www.pgpi.org). I just put "free encryption software" and got a few decent looking links.
    ...
  9. Replies
    62
    Views
    7,181

    time for a few observations: given an exe, it...

    time for a few observations:

    given an exe, it is always possible to convert the binary back to assembly language, as it's a one-to-one correspondance, from there any good compSci with enough time...
  10. Replies
    2
    Views
    1,255

    graceful failure on segFault?

    I'm writing a program that's liable to have segfaults in the first few releases (lots of malloc'ed stuff, unlikely to debug it all in time).

    I was just wondering if there's a way I can make the...
  11. Replies
    20
    Views
    4,606

    depends how fast you want it one monkey could...

    depends how fast you want it one monkey could implement it just fine, except the monkey might die before completing the process.
  12. 1)not quite what I meant, I know that the code...

    1)not quite what I meant, I know that the code you've given will work fine, I was wondering about something slightly different. Anyway I just tested it myself & it don't work, so nevermind.
    ...
  13. passing structs & pointers to structs as arguments

    I'm writing a whole set of functions that needs to edit a huge data structure, and I'm getting a little confused over exactly how some things work:

    1) I know things like arrays are passed to...
  14. Replies
    3
    Views
    1,208

    this is some code I wrote a while ago to turn a...

    this is some code I wrote a while ago to turn a csv line into html, using strtok():



    token=strtok(templine,",");
    for(m=0;token!=NULL;m++)
    {
    fprintf(Ohtml,"<td>");...
  15. Replies
    2
    Views
    3,576

    thanks for all that. What you've said & the links...

    thanks for all that. What you've said & the links look really helpful. Should be able to work out what I really need.

    Thanks again
    -mark
  16. Replies
    2
    Views
    3,576

    Qs about RAID0 & expandability

    I'm planning a new computer, and one requirement is high storage. the current idea is revolving around using a RAID0 array of 4*160 drives, but after digging through overclocker's products, I'm...
  17. Replies
    3
    Views
    1,175

    text editor is probably too complex for them,...

    text editor is probably too complex for them, they really need to be able to do most of it without looking at the html code.

    thanks for the link to the mozilla editor, I'll go take a peek at that....
  18. Replies
    3
    Views
    1,175

    mac html editor

    I'm building a website for someone, and once I've got it set up they want to maintain it themselves. can anyone point out a good html editor that will run on a mac (G4). It doesn't need to have an...
  19. Replies
    10
    Views
    2,338

    I Play Warhammer (lizardmen & dark elves) and 40k...

    I Play Warhammer (lizardmen & dark elves) and 40k (Imperial Guard, Space Marines, Tyranids) here
    also BFG (marnies) & Blood bowl (orcs)

    yup, geek here :)

    -mark
  20. Replies
    24
    Views
    5,540

    whole load of random chunks in here: ...

    whole load of random chunks in here:

    www11.brinkster.com/markalle

    (lots of it is kinda old and not too clean, just haven't got time to deal with it)
  21. Replies
    2
    Views
    2,203

    Here are a few probs to highlight: 1- first...

    Here are a few probs to highlight:

    1- first two errors, where on earth did "char" come from. the letter was read into the letter variable

    2- it's probably a good idea to define a length for the...
  22. Replies
    4
    Views
    2,418

    the general method for a search& replace that I...

    the general method for a search& replace that I would use is something like: (written in a mix of code and text)



    read "old" & "new" strings
    create temp buffer of size strlen(old)+1

    read in...
  23. Replies
    4
    Views
    7,297

    yeah, that should be right, the number of words...

    yeah, that should be right, the number of words in a file should be number of spaces + 1, or plus EOF. eg

    START:
    one two three four five sixEOF

    counts one at the end of 1,2,3,4,5, the again at...
  24. Replies
    15
    Views
    5,758

    cool :) I love random little thingies like...

    cool :)

    I love random little thingies like this, might be interesting to do an experiment to see just how much we can still read after the words are randomly jumbled....

    -mark
  25. Replies
    4
    Views
    7,297

    personally I would use getc (but that's just my...

    personally I would use getc (but that's just my way of doing things, I have a tendency not to take shortcuts). I'd do something like this:



    #include <stdio.h>
    #include <stdlib.h>
    int main()...
Results 1 to 25 of 55
Page 1 of 3 1 2 3