Jump to content

OtterFox

Active Members
  • Posts

    200
  • Joined

  • Last visited

Everything posted by OtterFox

  1. OtterFox

    Dual WAN

    Ahh thats the term I was looking for "load balance." OK Ill do some searches.
  2. OtterFox

    Dual WAN

    I have two internet connections at home that I could like to link together to get double the speed but all the solutions that I found are $400NZ routers. Is there some way to use a old computer with 3 NICs and hook that up to both modems and my network?
  3. Found this just before: http://www.apcmag.com/node/5162/ It looks handy.
  4. Everest home edition will tell you everything you need to know about your computer. http://www.majorgeeks.com/download4181.html
  5. I recently had a power supply fan die on me. One makeshift solution that I used was duct taping a fan sucking air out of the PSU to the back of the PSU. That worked fine until I got a new PSU. If you are very careful, had life insurance and didn't touch any capacitors in the PSU you may just be able to swap out the broken fan with your working one. What may also work for you is if you have one PSU attached to just the MoBo and get your other PSU and attach that to your optical drives and your HDDs so that the sort of broken one will be under a very low load and not create much heat.
  6. I don't get how it can be too fast! Is it cat5e because that should be plenty fast enough? A faster NIC might be a good idea because although your 100Mb/s NIC might say 100Mb/s speed it actually go that fast
  7. Whenever I run this code the while ((c = getchar()) != EOF) wont end and It keeps asking for more input, I've tried with microsoft visual C++, cygwin+gcc and Linux. #include <stdio.h> int main() { int c, i, nwhite, nother; int ndigit[10]; nwhite = nother = 0; for(i = 0; i < 10; ++i) { ndigit[i] = 0; } while ((c = getchar()) != EOF) { if(c >= '0' && c <= '9') ++ndigit[c-'0']; else if(c == ' '|| c == 'n' || c == 't') ++nwhite; else ++nother; } printf("digits ="); for(i = 0; i < 10; ++i) printf(" %d", ndigit[i]); printf(", white space = %d, other = %dn", nwhite, nother); return 0; } if I change it to... ... while ((c = getchar()) != EOF) { if(c >= '0' && c <= '9') ++ndigit[c-'0']; else if(c == ' '|| c == 'n' || c == 't') ++nwhite; else ++nother; printf("digits ="); for(i = 0; i < 10; ++i) printf(" %d", ndigit[i]); printf(", white space = %d, other = %dn", nwhite, nother); } return 0; } It prints the correct output but it also prints it for each loop which is understandable. How do I make it so than when I press enter it returns a EOF? Thanks
  8. Yep I'm using it right now, haven't tried games with it but I would say Fedora is better. EDIT: I would recommned sabayon though because it comes with all the graphics card drives pre installed for you :)
  9. OtterFox

    cisco test

    Yea I'm doing a IT essentials course at school and people in my class were just screen shotting the questions and finding the answers for the resit, but I don't know if you guys get a resit. The course is really easy so I don't know why they needed to cheat. Why don't you not cheat, I have to spend 2hours reading the modules but it's worth it.
  10. OK that sounds easy. Learning Intel will be fine then.
  11. Yea I read the read the thread about books to read, and checked out the book that metatron recommended(the art of assembly) and then I looked at it on amazon and found comments about it being about High-Level assembly and sort of decided that I might as well learn proper assembly. I was thinking that too. But Ive bookmarked them for later. I also read the Intel syntax was easier too. Is it very hard to change form Intel to AT&T syntax later? Because I wouldn't mind doing that because I also want get into disassembling things.
  12. Please continue this thread inside: http://forums.hak5.org/index.php/topic,6397.0.html this thread.
  13. @dualism: Thanks looks nice. @Cooper: Whats do you know anything about the different types of assembly, I was looking at some books and they were all for different types of x86(which is fine because I will use a duron CPU) but for intel assembly compilers or AT&T compilers and most cater for either Linux or Windows/DOS. Which is the best compiler to learn with and is there a OS independent type of assembly?
  14. Looking to start assembly language. I have some experience with C and am interested in getting lower. I know nothing about it so what sort of things would I need to know first and wheres a good starting point?(web site maybe?)
  15. I'm looking for a book on assembly language from amazon, I cut a deal with my brother so that he will buy me one. Can anyone recommend me any books on assembly? x86 CPU. EDIT: I'm looking for a book on regular Intel assembly rather than on Linux or Windows assembly.
  16. Now that the Wiki is down I free a longing to listen to "The Real Perl Coder" song adnd Im wondering if someone could post a link to it?
  17. Really depends on what you want to use it for?
  18. Could it be graphics drivers or something?
  19. Well I'm searching on google right how need less sleep. Thanks Metatron.
  20. How do you do that please tell me? I never have enough time in a day. I have no idea, I just wake up and can’t go back to sleep. Does you getting only 4 hours of sleep decrease you ability to think/concentrate? or perform in your various sports?
  21. Anyone know anythng about Xen?
  22. Linuxdefender is a live CD virus scanner. I haven't tried it though.
×
×
  • Create New...