Search:

Type: Posts; User: Annonymous

Page 1 of 13 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    0
    Views
    992

    libgpod API questions

    I am not able to sync my iTouch due to it using iOS5. I hve tried many work arounds with no luck. I have copied the songs over to my iTouch using scp but they do not show unless you use iFile to...
  2. Replies
    11
    Views
    3,693

    I took out all the junk and fixed it. I was the...

    I took out all the junk and fixed it. I was the slopy write function. We had and still have massive power outage all over the east coast after that hurricane. My part of Jersey just got power back...
  3. Replies
    11
    Views
    3,693

    I truely respect what you have just said here! I...

    I truely respect what you have just said here! I was going to leave this alone and try and figure it out on my own but after seeing this post, I saw that I was being a stubborn jack**s! I will break...
  4. Replies
    11
    Views
    3,693

    Which I did fix up. Its a lot of code considering...

    Which I did fix up. Its a lot of code considering the heavily nested if/else structure it's built on. If I try to indent it any more I will most likely debeautify the code. You could take a look at...
  5. Replies
    11
    Views
    3,693

    No, I didn't click review. So, do you see what...

    No, I didn't click review. So, do you see what I'm doing wrong?
  6. Replies
    11
    Views
    3,693

    Server(moddified indentation). #include...

    Server(moddified indentation).


    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>
    #include <unistd.h>
    #include <errno.h>
    #include <netdb.h>
    #include <sys/types.h>
  7. Replies
    11
    Views
    3,693

    select server help

    So i wrote a server that incorporates the select function but it is not working properly. I know that I am missing something vital but what? I am trying to make it echo the message from the client...
  8. Replies
    1
    Views
    1,428

    fixed the problem.

    fixed the problem.
  9. Replies
    1
    Views
    1,428

    Bash troubles

    This script I wrote has some unexpected behavior.



    #!/bin/bash

    bashts=$(ls -l /bin/bash | awk '{print $7}' | sed 's/\://g');

    readarray array < <(ls -l | awk '{ print $7" "$8}';
    echo...
  10. Replies
    15
    Views
    3,150

    I never bothered learning about stuff like this....

    I never bothered learning about stuff like this. My main focus was always network programming. Its the main reason i started coding in the first place. I had no need for fork, or wait. This is why...
  11. Replies
    15
    Views
    3,150

    Ok, i see what you mean by initialize ch to zero...

    Ok, i see what you mean by initialize ch to zero and why using sleep was wrong. I thought i just needed to give execl time to finish but i see wait waits for a process to change states.

    So you...
  12. Replies
    15
    Views
    3,150

    Ok, i see. So, I'll just switch it around to a do...

    Ok, i see. So, I'll just switch it around to a do while loop instead.

    I used sleep instead of wait. With the execl call being run by both the parent and child, i have no more problems.

    thanks...
  13. Replies
    15
    Views
    3,150

    Yes, both the child and the parent are calling...

    Yes, both the child and the parent are calling execl. The reason being is that when I had only the parent running execl, the program wasnt working properly. I would have to execute the program twice...
  14. Replies
    15
    Views
    3,150

    Ahh, thanks. Oh.... yeah I don't know why i...

    Ahh, thanks.


    Oh.... yeah I don't know why i was making that a char lol


    yeah i just caught that, its dup2(old fd, new fd);

    Thanks oogabooga!!
  15. Replies
    15
    Views
    3,150

    Well I am redirecting stdout to the file. So i...

    Well I am redirecting stdout to the file. So i would need to redirect it back to the terminal. I assume, unles there is another reason I am getting nothing back to the screen when i try and print the...
  16. Replies
    15
    Views
    3,150

    Yeah, I tried that and unfortunately it did not...

    Yeah, I tried that and unfortunately it did not work.



    #include <unistd.h>
    #include <sys/types.h>
    #include <sys/stat.h>
    #include <fcntl.h>
    #include <errno.h>
    #include <stdlib.h>
  17. Replies
    15
    Views
    3,150

    dup question - file io

    Lets say i want to use an execl call to netstat and then pipe it to a file. I know i could use dup like so:



    int fd = open("string.txt", O_CREAT | O_RDWR, 0755);
    if(fd < 0) {...
  18. Replies
    7
    Views
    1,203

    I'm not beat for that dressing up crap either lol...

    I'm not beat for that dressing up crap either lol I hate the word cosplay too! The whole concept is so dumb! Unless its just the chicks dressed up haha I'm not a pervert I swear. I love to see girls...
  19. Replies
    7
    Views
    1,203

    Sly, I thought you meant that you didn't look...

    Sly, I thought you meant that you didn't look like a geek. Most people associate the word geek or nerd with a skinny guy with glasses. I mean I box, run 5 K's, dirt bike, paintball, sky dive. I'm...
  20. Replies
    7
    Views
    1,203

    what exactly is, "Not geeky enough."?

    what exactly is, "Not geeky enough."?
  21. Replies
    7
    Views
    1,203

    NYC Comiccon in October

    NYC Comiccon is coming up! Super eff'in stoked! OCTOBER 11-14TH. 3 day tickets are $65 and $84 for 4 day. Anyone going?
  22. Thread: LANchat

    by Annonymous
    Replies
    3
    Views
    1,492

    Looks really good! I am working on one in GTK2.xx...

    Looks really good! I am working on one in GTK2.xx for Linux.
  23. My new stand alone Openbox WM with tint2, wbar,...

    My new stand alone Openbox WM with tint2, wbar, and an embedded transparent urxvt terminal running top.

    11867
  24. Replies
    6
    Views
    2,637

    Ok had another crack at it tonight and it only...

    Ok had another crack at it tonight and it only took about a half hour to resolve all glibc dependencies and conflicts this time. A pain but at least now I can finally install the desktop!
  25. Replies
    6
    Views
    2,637

    Yeah I found a wiki article devoted to just this....

    Yeah I found a wiki article devoted to just this. I satisfied all dependencies and got all the way to the last package... glibc and instead of removing it, I moved the lib dir like a dumbass and now...
Results 1 to 25 of 314
Page 1 of 13 1 2 3 4