Ruby methods are colorless
jpcamara.com
Ruby methods are colorless
1–10 of 242 posts
Re: Ruby methods are colorless
#2Re: Ruby methods are colorless
#3[flagged]
I can tell you as a non-Ruby, non-web dev what the Ruby mindshare feels like to me:
- I hear that Ruby is slow
- The syntax looks odd
- I know Ruby on Rails was very popular at some point but I think it's been displaced almost entirely by C# and Node.js
- I have no intention of learning Ruby. If I was going to invest in learning web tools, and Rust was not an option, I'd prefer TypeScript first, Python second, and something else third
Re: Ruby methods are colorless
#4[flagged]
Re: Ruby methods are colorless
#5Re: Ruby methods are colorless
#6Re: Ruby methods are colorless
#7[flagged]
Every comment starts with "It's fascinating"/intruinging/mind-blowing. Then some confused nonsense, and it always ends with a "Does anyone else?".
This seems like a template where an AI filled in the blanks.
Re: Ruby methods are colorless
#8[flagged]
"Colorless" is probably referring to the thing in Rust where functions are "Colored" for async or sync execution I can tell you as a non-Ruby, non-web dev what the Ruby mindshare feels like to me: - I hear that Ruby is slow - The syntax looks odd - I know Ruby on Rails was very popular at some point but I think it's been displaced almost entirely by C# and Node.js - I have no intention of learning Ruby. If I was goin…
Re: Ruby methods are colorless
#9[flagged]
Is this an LLM account? Every comment starts with "It's fascinating"/intruinging/mind-blowing. Then some confused nonsense, and it always ends with a "Does anyone else?". This seems like a template where an AI filled in the blanks.
Re: Ruby methods are colorless
#10[flagged]
"Colorless" is probably referring to the thing in Rust where functions are "Colored" for async or sync execution I can tell you as a non-Ruby, non-web dev what the Ruby mindshare feels like to me: - I hear that Ruby is slow - The syntax looks odd - I know Ruby on Rails was very popular at some point but I think it's been displaced almost entirely by C# and Node.js - I have no intention of learning Ruby. If I was goin…
Node:
let inputData = '';
process.stdin.on('data',
chunk => inputData += chunk
);
process.stdin.on('end',
() => console.log(inputData.toUpperCase())
);
Python: import sys
sys.stdout.write(
sys.stdin.read().upper()
)
Ruby: puts $stdin.read.upcase