Reptorian

u/Reptorian@programming.dev
6 posts · 90 comments

Recent posts

Recent comments

As someone who dislikes Python, I can't say I agree. So, I will use Python, but I only use it for 3 lines of code snips to test before making codes on other languages.

I'll admit I did used AI for code before, but here's the thing. I already coded for years, and I usually try everything before last resort things. And I find that approach works well. I rarely needed to go to the AI route. I used it like for .11% of my coding work, and I verified it through stress testing.

In G'MIC, there's repeat(num_of_iters,_var_name,code();); on JIT code, and repeat code_block done outside of JIT. It has while, for, dowhile on JIT too. Other than repeat, there is only do while, and for which is while outside of JIT.

Note: _var_name, can be omitted. So, if you need to just repeat a code N times, that can be removed.

on Recursion · c/programmer_humor · 2 pts · 1y

Yeah. repeat() is unique to a few language. I think just Scala, and G'MIC has it. I use the second one. It's more convenient than say for(p=0,p<5,++p,);. Sometimes, repeat(5,); suffice.

on Recursion · c/programmer_humor · 2 pts · 1y

I actually use repeat(iterations,index_name(optionall),);. No need for i++ or ++i for loop in many cases.

on Recursion · c/programmer_humor · 3 pts · 1y

I had this problem only once. Luckily, I do not need recursion. I know my way using iterative process.