Jump to content

exxon

Active Members
  • Posts

    22
  • Joined

  • Last visited

Contact Methods

  • Website URL
    http://
  • ICQ
    0

Profile Information

  • Gender
    Male

Recent Profile Visitors

2,714 profile views

exxon's Achievements

Newbie

Newbie (1/14)

  1. exxon

    Web Hosting

    Hello I've been away for a while and come back to you looking for help. The company I work for decided that they wanted a website which I'm building (in flash). The problem is when looking for hosting for this site. I have never actually had to get hosting other than random free stuff like blogger. My question is which hosting companies are good? I know domain.com has a pretty nice hosting service for a decent price, I believe its the deluxe package. But I also saw that dreamhost has good options as well. As well as countless others. If anyone could help out with input or personal experience I would really appreciate it. Thanks
  2. I've actually been looking for some kind of low power http server. I know someone already did it for the old zipit but I havent had time to install the necessary things to compile it for this zipit.
  3. are you still using the code posted on the previous page? your for loops are wrong. for(int b = 0; b == 99; b++) That doesnt do anything. You initialize b to 0 and check if b is equal to 99. since its not equal your loop never starts. and one of those loops controls the switch statement which controls the output. what you want is for( int i = 0; i < 100; i++ ) of course this is assuming that you're still using the code you posted before.
  4. True. but you have to admit sometimes sshing late at night is not the best idea just because of how loud the zipit's keyboard is. I still rather enjoy that sound.
  5. ok something weird is happening now. A couple of weeks ago I was able to install ssh with no problem on rootNexus. Now I try and it doesnt find the packages. I dont know if its just me but could somebody try running apt-get install ssh and see if they get the not found message. EDIT: NEVERMIND! if anyone has this problem just apt-get update and it should be good
  6. I still believe you might need that file.open("filename") part.
  7. dont you have to open the file? Try doing it like this: ifstream input; input.open("input.txt", ifstream::in); or just input.open("input.txt"); and that should work
  8. if the input file is "44459103123" where each digit is its own separate number then the initial code i posted should be all you need for this.
  9. where 4445 is one number or 4 separate numbers? by the way with the code I posted you should be able to get it to work. All you have to do is change the char part.
  10. The thing about atoi is that its a C function so you would have to include a C library. Cant remember which. anyways just did this really fast so sorry if its messy and not that optimal #include <iostream> #include <cstring> using namespace std; int main(){ char array[] = "1 2 3 4 5 6 7 8 9 10 11 12 13 14 15"; int n[15]; int x = 0; int j = 0; for( int i = 0; i<=strlen(array); i++ ) { if( array[i] == ' ' || array[i] == '\0') { n[j] = x; j++; x=0; } else { x *= 10; x += (int)array[i]-48; } } for( int i = 0; i < 15; i++ ) { cout << n[i] << endl; } return 0; }
  11. You could use atoi which converts strings into an int. If you would like to write your own function for that then something like this would work: char array[50]; int n[50]; ... for( int i = 0; i < 50; i++ ) n[i] = (int)array[i] - 48; That would just convert to single digits. But you get the idea. EDIT: instead of that whole switch statement and stuff you can do what I posted. Although depends on how your input file is setup. Assuming in your input it says something like: 1 2 3 4 5 6 7 8 you would have to include something like: if( array[i] != ' ' ) ...
  12. Just saw this and I had to post it here to see what we could do. http://www.linuxfordevices.com/c/a/News/Qi...e-Ben-NanoNote/ Kinda replaces the zipit in every way.
  13. Hahaha, sorry, i was just missing some files, everything itś working now jeje.

    But i have a new question...

    Is it possible to install the crhome OS on the zipit? i mean itś almost linus so....

    Jejeje, aniway, i'll see what i can do to get this possible =]

  14. Hey just saw your comment. Actually the bricking part can only happen in the first part of the process. Once you got the openzipit with the weird wallaby penguin hybrid there should be no risk of bricking it. I think if you cant get the system to boot then maybe you're writing to the micro sd in the wrong way or something. What method is it that you're using?

  15. He listen, i think i need your help.

    When i tried ti flash my zipit, something went wrong, and the weird linux logo apearred, but nothing else happend.

    I mean, did i brickes it? What should, i do, cause i've tried with and i wont flash.

    Thanks man!

×
×
  • Create New...