funsl1ng3r's recent activity
-
Comment on Programming Challenge: creative FizzBuzz in ~comp
-
Comment on New Group Idea: JavaScript / Coding in ~misc
funsl1ng3r (edited )Link Parentthank you! I did not think to add something like this to ~compthank you! I did not think to add something like this to ~comp
-
Comment on New Group Idea: JavaScript / Coding in ~misc
funsl1ng3r 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!
-
Comment on New Group Idea: JavaScript / Coding in ~misc
funsl1ng3r Thank you! I appreciate any help.Thank you! I appreciate any help.
-
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 -
Comment on Do we need to see the vote count? in ~tildes
funsl1ng3r 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?
-
Comment on The vote count for comments has been moved to the Vote button in ~tildes.official
funsl1ng3r 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.
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);
}
}