Search:

Type: Posts; User: Steven_Williams; Keyword(s):

Search: Search took 0.10 seconds.

  1. [SOLVED] Re: able to work with array in spite of not malloc'ing enough memory

    You could just use strstr to find where the newline occurs and just replace that with null. Also you could write your own gets type function that does not grab newline characters, but I think just...
  2. [ubuntu] Re: Cannot establish OpenVPN connection in 14.10

    Have you tried using the openvpn client from the command line? That should let you know what errors you might be running into with it, and if there are none, then you can focus your attention on...
  3. [SOLVED] Re: What language should I learn to hacking?

    This would be a good read for you. http://www.catb.org/~esr/faqs/hacker-howto.html Honestly you will probably want to avoid C or C++ initially. That is what I started with, but I didn't really...
  4. [server] Re: Proxy Transparent or hidden for College

    I agree with Herman, buy an appliance. If you are wanting squid and dansguardian specifically, http://www.smoothwall.com/ For a network your size, you will need a serious machine or series of them to...
  5. Re: No wireless connection after update 14 "you are now offline"

    You probably want to be using the b43 driver instead of wl. http://wireless.kernel.org/en/users/Drivers/b43 This page explains how you can use the b43 driver. The firmware-b43-installer should take...
  6. Replies
    1
    Views
    1,098

    [ubuntu] Re: Ubuntu 14.10 32-bit wifi problem

    Can you try connecting a few times and then run dmesg and paste the contents here?
  7. Re: Is this how you print out a 2d array using array of pointers?

    I think he is trying to say that an array of pointers is different than a pointer to a pointer. As far as function definitions and declarations go, both are equivalent.
  8. Re: Accidentally rm -r */ Ubuntu does not boot up ( GRUB RESCUE )

    It's okay. I think I ended up installing Linux about 5 or 6 times before I got to the point an install lasted longer than a few hours or days. You will get there, but you are probably going to have...
  9. [SOLVED] Re: able to work with array in spite of not malloc'ing enough memory

    What you are running into is undefined behavior. http://blog.llvm.org/2011/05/what-every-c-programmer-should-know.html# This articles explains a bit about it. As has been said you are "getting...
  10. Re: surprised that not being able to work between 2d arrays and pointers interchangea

    Your problem with 1 is you are only dereferencing it once. To access it like you intend you need to do the following:

    printf("%d ", *(*(a+i)+j));

    Your problem with 2 is you are specifying just...
  11. [ubuntu] Re: Tor config: do I need polipo AND privoxy along with tor ?

    If you are just looking to use Firefox to browse anonymously you could just grab the Tor Browser Bundle and fire that up. Its version of Firefox doesn't support things like flash, but you can after...
  12. Re: Evolution - POP3 - where are my emails ?

    Can you explain more about what happened with your emails? Was Evolution working at all after you set it up? Did it die suddenly? We will need more information in order to help you.

    Unless you...
  13. [kubuntu] Re: 14.04.1LTS wired connections not working

    Check your /var/log/boot.log and /var/log/kern.log. Also check dmesg and see what shows up concerning your NICs. Have you tried booting other distros live images to see if those work?
  14. Replies
    7
    Views
    643

    Re: Memory,addresses and pointers

    This is another good resource for dealing with pointers.http://cslibrary.stanford.edu/102/

    As has been said data structures are a great way to get familiar with pointers. Simple lists that can...
Results 1 to 14 of 14