funsl1ng3r's recent activity

  1. Comment on Programming Challenge: creative FizzBuzz in ~comp

    funsl1ng3r
    Link
    I had just done this for my bootcamp. Here's mine in JavaScript (repl.it = https://repl.it/@nickfp1985/array-index-fizzbuzz ) for (i = 1; i < 100; i++) { if (i % 3 === 0 && i % 5 === 0) {...

    I had just done this for my bootcamp. Here's mine in JavaScript (repl.it = https://repl.it/@nickfp1985/array-index-fizzbuzz )

    for (i = 1; i < 100; i++) {
    if (i % 3 === 0 && i % 5 === 0) {
    console.log('fizzbizz');
    } else if (i % 5 === 0) {
    console.log('fizz');
    } else if (i % 3 === 0) {
    console.log('bizz');
    } else {
    console.log(i);
    }
    }

  2. Comment on New Group Idea: JavaScript / Coding in ~misc

    funsl1ng3r
    (edited )
    Link Parent
    thank you! I did not think to add something like this to ~comp

    thank you! I did not think to add something like this to ~comp

  3. Comment on New Group Idea: JavaScript / Coding in ~misc

    funsl1ng3r
    Link Parent
    I meant JavaScript, or coding in general. It does look like I considered them two different things, ha!

    I meant JavaScript, or coding in general. It does look like I considered them two different things, ha!

  4. Comment on New Group Idea: JavaScript / Coding in ~misc

    funsl1ng3r
    Link Parent
    Thank you! I appreciate any help.

    Thank you! I appreciate any help.

  5. New Group Idea: JavaScript / Coding

    I'm working towards becoming a full time web developer and I would love to see a thread dedicated to sharing developer tools, tips, code help, etc. I have learned a lot from these type of...

    I'm working towards becoming a full time web developer and I would love to see a thread dedicated to sharing developer tools, tips, code help, etc. I have learned a lot from these type of subreddits and think they would be a great addition to Tildes.

    Getting help, I always need help lol, always inspires me to help others. I believe that to be a desired trait of this new community. It's my dream to become a web developer. On my journey I'd love more help and also have the ability to help others on Tildes!

    4 votes
  6. Comment on Do we need to see the vote count? in ~tildes

    funsl1ng3r
    Link Parent
    I like this idea, have it as an account setting. If it's not set like this already, would it be good to hide vote counts for non-account visitors / bots?

    I like this idea, have it as an account setting. If it's not set like this already, would it be good to hide vote counts for non-account visitors / bots?

    1 vote
  7. Comment on The vote count for comments has been moved to the Vote button in ~tildes.official

    funsl1ng3r
    Link Parent
    I think the whole point of tildes is to minimize the power of the vote. I rather enjoy the minimalistic vote as it stands now. I'm not saying your idea isn't a good one, only sharing my view.

    I think the whole point of tildes is to minimize the power of the vote. I rather enjoy the minimalistic vote as it stands now. I'm not saying your idea isn't a good one, only sharing my view.

    1 vote