Highest Rated Comments


noxbl321 karma

Great work in Cyberbully, I saw it and you really keep the attention of the viewer all through, quite a feat for such a focused one-room movie! I'm curious what is your favorite music and your favorite movies or tv shows at the moment? Cheers

noxbl2 karma

The times I use tail recursive function is when I don't know how many items I'm iterating over, with an API being the prime example. I just write a function get the api data and then if "next page" token exists in the data, call the function again, is this a bad thing?

I'm not sure how to write a loop for this and the recursive way seems super clean and readable to me.