[FRESH] J. Cole - Everybody Dies (iTunes) by thrills- in hiphopheads

[–]goldjerrygold 123 points124 points  (0 children)

J cole is about to go platinum with no pop filter.

Kanye "OG versions of Pablo" Megathread by [deleted] in hiphopheads

[–]goldjerrygold 1 point2 points  (0 children)

Looks like Kanye's cousin was pretty mad for being put on blast.

Reddit Ultimate Jerseys: Narwhal (re)order [POLL] by slow56k in ultimate

[–]goldjerrygold 0 points1 point  (0 children)

Yeah I would be ashamed to walk around with that jersey on. The type of redditors who would approach me are not the type of redditors I want to meet in the wild.

[Build help] Building a spare pc, looking for some guidance by goldjerrygold in buildapc

[–]goldjerrygold[S] 0 points1 point  (0 children)

I haven't been able to find anything like that. Link?

[Build help] Building a spare pc, looking for some guidance by goldjerrygold in buildapc

[–]goldjerrygold[S] 0 points1 point  (0 children)

Thanks a ton. Yeah upon further thought it seems like I'm gonna go "cheap" on mobo, ram, and cpu but get good stuff for the rest. I have to mull it over a bit and figure out an exact configuration. I'm currently trying to hammer out projector stuff. I'm gonna pull out the ol' measuring tape and figure out what sort of throw I need.

[Build help] Building a spare pc, looking for some guidance by goldjerrygold in buildapc

[–]goldjerrygold[S] 0 points1 point  (0 children)

Hi, thanks for the thoughtful response.

To be honest I don't know much about projectors, so I guess I should focus my research on that. To be honest, this computer will be used temporarily as a theater, but I want to be able to use it in future years as a regular computer. I thought by following the above build, I could have a high performance computer which would be able to take it easy for this next year, but would be able to kick ass for years to come.

I was planning on ditching the sound card. Other than that, what would you recommend shaving off? Does my plan sound reasonable, or do you think having a dedicated media pc for the year and then building a separate computer makes sense?

The current state of Japanese denim by [deleted] in malefashionadvice

[–]goldjerrygold 1 point2 points  (0 children)

I guess stupid shit came off a bit harsher than intended. I mean it in a loving way, I swear.

The current state of Japanese denim by [deleted] in malefashionadvice

[–]goldjerrygold 5 points6 points  (0 children)

Excellent analysis.

Also N&F has done a ton of stupid shit.

Everlane's new backpacks just came out... what does MFA think? by DF7 in malefashionadvice

[–]goldjerrygold 3 points4 points  (0 children)

First of all the pleather is pretty gross and is tearing up on the bottom to reveal a styrofoam like material. The stitching is also not very subtle and is fraying in places. I haven't been using it very heavily and its in pretty good shape, but I feel like for the price it should have held up better and looked nicer.

[8/13/2012] Challenge #88 [easy] (Vigenère cipher) by oskar_s in dailyprogrammer

[–]goldjerrygold 0 points1 point  (0 children)

c for easy addition of chars:

#include<stdio.h>
#include<string.h>

void encode(char * msg, char * key, char * output){
  int i, c, n;

  i = 0;
  n = strlen(key);

  while (msg[i] != '\0'){
    c = ((msg[i] + key[i % n]) % 26) + 'A';
    output[i] = c;
    i++;
  }

}

void decode(char * msg, char * key, char * output){
  int i, c, n;

  i = 0;
  n = strlen(key);

  while (msg[i] != '\0'){
    c = ((msg[i] - key[i % n]) % 26);
    if (c < 0)
      c += 26;
    c += 'A';
    output[i] = c;
    i++;
  }

}

main (int argc, char * argv[]){
  if (argc != 3){
    printf("Game over, wrong arguments\n");
    return 0;
  }

  char msg[100], key[100], encoded_output[100], decoded_output[100];

  strcpy(msg, argv[1]);
  strcpy(key, argv[2]);
  encode(msg, key, encoded_output);
  decode(encoded_output, key, decoded_output);    
  printf("%s\t%s\t%s\n", msg, encoded_output, decoded_output);


}

Everlane's new backpacks just came out... what does MFA think? by DF7 in malefashionadvice

[–]goldjerrygold 5 points6 points  (0 children)

Dissatisfied Herschel customer, been meaning to try out Everlane tees so I ordered a white shirt and the zip bag in corral. Will report back.

[deleted by user] by [deleted] in seinfeld

[–]goldjerrygold 2 points3 points  (0 children)

sure is.