copy paste

Discussion in 'Off Topic' started by LordDz_2, Jan 23, 2014.

  1. flasche

    flasche Member Staff Member Moderator

    Messages:
    13,299
    Likes Received:
    168
    Trophy Points:
    0
    im sorry, but you two sound like 60 - minimum.
    let me tell you, if you dont act proactive now, it wont get better the next 13 years (if your profile age is correct) - actually if it stays like its now, you can consider yourself lucky.

    also i really am sorry if its a medical condition you aint to blame for. i was an ass then and i really didnt mean it, but if you are in your 20s and complain about joint pain its usually attributed to slacking.
    i didnt want to listen to those who told me when i was your age too - but sport helps, we aint built for sitting, i now have less issues then i had mid 20 ;)
     
    Last edited: Jan 28, 2014
  2. McGyver

    McGyver Experimental Pedagogue

    Messages:
    6,533
    Likes Received:
    31
    Trophy Points:
    0
    You Sir, are the definition of fucked up.
     
  3. Z100000M

    Z100000M Vithered Weteran

    Messages:
    9,120
    Likes Received:
    70
    Trophy Points:
    0
    And he wants to become a doctor.

    murica
     
  4. D.D.D. Destroyer

    D.D.D. Destroyer Member Staff Member Moderator

    Messages:
    9,509
    Likes Received:
    111
    Trophy Points:
    0
    There are no healthy people, there's just those diagnosed and not diagnosed.
     
  5. Paradox

    Paradox I am a gigantic asshole who loses people's hard wo

    Messages:
    6,926
    Likes Received:
    148
    Trophy Points:
    0
    I never saw that picture.
     
  6. LordDz_2

    LordDz_2 Strange things happens here

    Messages:
    2,956
    Likes Received:
    93
    Trophy Points:
    0
    /** fragmentShader.fs
    Example fragmentShader */

    #version 130

    in vec4 colour;
    in vec4 position;
    in vec4 normal;

    uniform vec4 light0pos;

    out vec4 fragmentColour;

    void main() {

    vec4 Vl = normalize(light0pos - vec4(position.x, position.y, position.z, 1));
    vec4 Ve = normalize(vec4(position.x, position.y, position.z, 0));
    vec4 N = normalize(vec4(normal.x, normal.y, normal.z, 0)); // normalize(vec4(normal.x, normal.y, normal.z, 0));

    vec4 rL = reflect(Vl, N);

    vec3 Ca = vec3(0.8, 0.8, 0.5);
    vec3 Cd = vec3(0.8, 0.8, 0.5);
    vec3 Cs = vec3(1.0, 1.0, 1.0);
    vec3 La = vec3(0.2, 0.2, 0.2);
    vec3 Ld = vec3(0.8, 0.8, 0.8);
    vec3 Ls = vec3(3.0, 3.0, 3.0);
    float Fs = 20.0;

    vec3 ambient = Ca * La;
    vec3 diffuse = vec3(Cd.x, Cd.y, Cd.z) * Ld * max(dot(Vl, N), 0.0);
    vec3 specular = vec3(Cs.x, Cs.y, Cs.z) * Ls * pow(max(dot(rL, Ve), 0.0), Fs);

    fragmentColour = colour * vec4(ambient + diffuse + specular, 1.0);
    }
     
  7. LordDz_2

    LordDz_2 Strange things happens here

    Messages:
    2,956
    Likes Received:
    93
    Trophy Points:
    0
    #version 330

    /**layout(location=0)*/ in vec4 inPos;
    /**layout(location=1)*/ in vec4 inNormal;
    /**layout(location=2)*/ //in vec4 inColour;


    uniform mat4 pMatrix;
    uniform mat4 mvMatrix;
    uniform vec4 light0pos;

    out vec4 colour;
    out vec4 position;
    out vec4 normal;

    void main() {

    // MVP (Remember: it's reverse)
    gl_Position = pMatrix * mvMatrix * inPos;

    colour = vec4(1,0,0,1);
    normal = mvMatrix * inNormal;
    position = mvMatrix * inPos;

    }
     
  8. BigTeef

    BigTeef Bootleg Headshot master

    Messages:
    7,036
    Likes Received:
    36
    Trophy Points:
    0
    I pretend to be fucked up for the amusement of others.

    You dont remember calling my hands rapist hands and then I proceeded to post a picture of my left hand rubbing its fingers on your forum avatar.

    It is like -7 outside and some people are trapped in their house basement level, assuming they don't have a back door.
    I will be active again when the weather stops putting me to sleep.

    They closed my school two consecutive days now.
     
    Last edited: Jan 28, 2014
  9. McGyver

    McGyver Experimental Pedagogue

    Messages:
    6,533
    Likes Received:
    31
    Trophy Points:
    0
    -7 Celsius, as in a mild autumn evening?
     
  10. Paradox

    Paradox I am a gigantic asshole who loses people's hard wo

    Messages:
    6,926
    Likes Received:
    148
    Trophy Points:
    0
    wtf man, I never received any of those, and fucking I feel lucky I didnt.
     
  11. BigTeef

    BigTeef Bootleg Headshot master

    Messages:
    7,036
    Likes Received:
    36
    Trophy Points:
    0
    From 0 to 100

    It is -7.
    Snow everywhere...
    About knee deep.
     
  12. McGyver

    McGyver Experimental Pedagogue

    Messages:
    6,533
    Likes Received:
    31
    Trophy Points:
    0
    If i ask Google for -7 Fahrenheit i get 251,483333 Kelvin as answer.

    Thank you, leading edge of artificial intelligence!
     
  13. Z100000M

    Z100000M Vithered Weteran

    Messages:
    9,120
    Likes Received:
    70
    Trophy Points:
    0
    you do realise that kelvin/celsius conversion is braindead level hard?
    If memeory servers right, that be like 15 degrees.
     
  14. Candles

    Candles CAPTAIN CANDLES, DUN DUN DUN, DUN DUN DUN DUN.

    Messages:
    4,251
    Likes Received:
    10
    Trophy Points:
    0
    -7 Fahrenheit is approximately -22 Celsius
     
    Last edited: Jan 28, 2014
  15. flasche

    flasche Member Staff Member Moderator

    Messages:
    13,299
    Likes Received:
    168
    Trophy Points:
    0
    minus 22, 40°C is quite a difference;)
     
  16. Candles

    Candles CAPTAIN CANDLES, DUN DUN DUN, DUN DUN DUN DUN.

    Messages:
    4,251
    Likes Received:
    10
    Trophy Points:
    0
    I always forget to put the sign...
     
  17. flasche

    flasche Member Staff Member Moderator

    Messages:
    13,299
    Likes Received:
    168
    Trophy Points:
    0
    figured it was just that ^^

    also wtf teef? -22°C where do you live, arctica? poor you :\
     
    Last edited: Jan 28, 2014
  18. Z100000M

    Z100000M Vithered Weteran

    Messages:
    9,120
    Likes Received:
    70
    Trophy Points:
    0
    well derp, I mixed the two last digits of -273.
     
  19. Señor_Awesome

    Señor_Awesome Member

    Messages:
    1,511
    Likes Received:
    58
    Trophy Points:
    0
    America's having a bit of a freeze right now, I presume he's in one of the colder areas. It's about 30F (just under 0C, for reference) where I am and I'm in one of the warmer places.
    This is not how January in Texas is supposed to be.
     
  20. BigTeef

    BigTeef Bootleg Headshot master

    Messages:
    7,036
    Likes Received:
    36
    Trophy Points:
    0
    Yeah I heard texas actually got ice, if not snow.
    What the fuck is going on..

    Here is the weather in Chicago.
    It's either too hot or too cold.
    There is no middle ground, weather hits my state HARD constantly.
    We get like one month of nice weather then its like 90 for the rest of the days until fall.
     

Share This Page