Search:

Type: Posts; User: bholzer

Search: Search took 0.07 seconds.

  1. Replies
    0
    Views
    1,095

    Crawler has trouble logging in.

    I am trying to make a program that crawls the front page of a site and gets stats like number of comments on each post, how long it took a post to get to front page, upvotes, etc.
    I'm having a...
  2. Replies
    7
    Views
    1,369

    Re: Testing values in an array.

    Well, I got it to work, but it might just be the ugliest code I've ever written:


    public static boolean[][] life(boolean[][] isLive, int N)
    {
    int livecount = 0;
    for (int t = 0; t < N;...
  3. Replies
    7
    Views
    1,369

    Re: Testing values in an array.

    I plan to use if statements to test whether the current value is on an edge or corner. If it is, I need certain statements to not execute, but now I'm stuck there!!
  4. Replies
    7
    Views
    1,369

    Testing values in an array.

    Okay, I'm writing a program for class. It creates a random boolean array of a given size, then loops through the array and on each value, it tests all the values around it. If it has a certain number...
  5. Replies
    2
    Views
    1,438

    Hoe do I read html from the web?

    I want to write a program that allows user input, then returns a certain value based on that input. Let me illustrate:


    <tr class="dataSmall stripe">
    <td>
    <a...
Results 1 to 5 of 5