Clipboard.

  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord

xTordX

New Member
Jul 29, 2019
576
-6
1
Count? >.>

You have to know a link to your own word. If you prove it when needed you get a free point.


Making rules for that game.
 

ljfa

New Member
Jul 29, 2019
2,761
-46
0
upload_2015-4-28_19-18-41.png
 

lenscas

Over-Achiever
Jul 31, 2013
2,015
1,801
248
Code:
________________________
< I am the all powerfull >
------------------------
                       \                    ^    /^
                        \                  / \  // \
                         \   |\___/|      /   \//  .\
                          \  /O  O  \__  /    //  | \ \           *----*
                            /     /  \/_/    //   |  \  \          \   |
                            @___@`    \/_   //    |   \   \         \/\ \
                           0/0/|       \/_ //     |    \    \         \  \
                       0/0/0/0/|        \///      |     \     \       |  |
                    0/0/0/0/0/_|_ /   (  //       |      \     _\     |  /
                 0/0/0/0/0/0/`/,_ _ _/  ) ; -.    |    _ _\.-~       /   /
                             ,-}        _      *-.|.-~-.           .~    ~
            \     \__/        `/\      /                 ~-. _ .-~      /
             \____(oo)           *.   }            {                   /
             (    (--)          .----~-.\        \-`                 .~
             //__\\  \__ Ack!   ///.----..<        \             _ -~
            //    \\               ///-._ _ _ _ _ _ _{^ - - - - ~
 
  • Like
Reactions: ljfa and gold49

PODonnell

New Member
Jul 29, 2019
876
0
0
upload_2015-4-30_19-20-36.jpeg


Looking for something more interesting than typing 100 in another thread........ In short a $100 is a Benjamin
 

Strikingwolf

New Member
Jul 29, 2019
3,709
-26
1
Code:
int pins[] = {0, 1, 2, 3};
int curveToDraw = 1;

void setup() {
  for (int i = 0; i < sizeof(pins) / sizeof(pins[0]); i++) {
    pinMode(pins[i], OUTPUT); 
  } 
}

void loop() {
}

int * * dragon(int n) {
  if (n == 0) {
    return {{HIGH, LOW, HIGH, LOW}};
  } else if (n == 1) {
    return {{HIGH, LOW, HIGH, HIGH}};
  } else {
    int last[][4] = dragon(n-1);
    return last;
  }
  return {};
}

int * rotate(int input[]) {
  static int rotated[] = {input[3], input[1], input[4], input[2]};
  return rotated;
}

int * reverse(int input[]) {
  int n = sizeof(input) / sizeof(input[0]);
  int end = n - 1;
  int t;

  for (int c = 0; c < n/2; c++) {
    t          = input[c];
    input[c]   = input[end];
    input[end] = t;

    end--;
  } 
}

/me tries to do C for arduino
/me throws comp