Results 1 to 40 of 49

Thread: tcaudilllg seems incredibly LSI

Hybrid View

  1. #1

    Join Date
    May 2007
    Posts
    890
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)

    Default tcaudilllg seems incredibly LSI

    F Y I

  2. #2
    Elro's Avatar
    Join Date
    Sep 2005
    Location
    Not here
    Posts
    2,795
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)

    Default

    How so?
    Quote Originally Posted by Logos
    Holy mud-wrestling bipolar donkeys, Batman!

    Retired from posting and drawing Social Security. E-mail or PM to contact.


    I pity your souls

  3. #3

    Join Date
    May 2007
    Posts
    890
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)

    Default

    Quote Originally Posted by Elro View Post
    How so?
    For starters, read this and consider the ISTj in relation to ENFj, ENTp ... must I be-labor the details?

    http://www.the16types.info/vbulletin...ad.php?t=17000

    (Then consider the Ti-spreadsheets he often posts ... )

    Considering HOW often typings are incorrect, and how hard it can be for one to find their true type, he was still pretty darn close. (As I do not mean this thread to be a point of embarrassment, by any means.)
    Last edited by astralsilky; 02-21-2008 at 04:32 PM.

  4. #4

    Join Date
    Sep 2011
    Posts
    8,577
    Mentioned
    8 Post(s)
    Tagged
    0 Thread(s)

    Default

    ?

  5. #5

    Join Date
    May 2007
    Posts
    890
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)

    Default

    rmv

  6. #6

    Join Date
    Sep 2011
    Posts
    8,577
    Mentioned
    8 Post(s)
    Tagged
    0 Thread(s)

    Default

    Code:
    import java.io.*;
    import java.util.*;
    import cs1.Keyboard;
    
    public class chore {
    
      private int choreNum;
      private int cost;
      private ArrayList<Integer> dependencies;
      
      public chore(int number) {
        choreNum = number;
        dependencies = new ArrayList<Integer>();
        System.out.println("Enter time for chore " + (choreNum + 1));
        cost = Keyboard.readInt();
        
        if (number == 0)
          dependencies.add(0);
        else {
          System.out.println("tEnter any dependencies or 0 to stop");
          boolean keepGoing = true;
          Integer input;
          while (keepGoing) {
            input = Keyboard.readInt();
            dependencies.add(input - 1);//the index of the first process is 0, so the user sees process n as process n+1.  correct for that by subtracting 1 here.
            if (input.equals((Integer) 0))
              keepGoing = false;
          }
        }
      }
      
      public int getCost() {
        return cost;
      }
      
      public int getChoreNum() {
        return choreNum;
      }
      
      public int getArg(int index) {
        int f = dependencies.get(index);
        return f;
      }
      
      public int getArgsSize() {
        return dependencies.size();
      }
      
      public static void main(String[] args) {
        System.out.println("This doesn't do anything.  Run the chores file instead.");
      }
    }

  7. #7
    Banned
    Join Date
    Oct 2005
    TIM
    TiNe
    Posts
    7,858
    Mentioned
    11 Post(s)
    Tagged
    0 Thread(s)

    Default

    Quote Originally Posted by dee View Post
    tcaud's blog wrote: (like can it get more Ni and Fe than this??)

    http://www.youtube.com/watch?v=RZHqvOv3zxo
    Ah, the rapture of a journey into the subconscious. Never met an INTj yet who didn't keep fantasy material close at hand. It's an important outlet for us.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •