GHARIB Posted January 30, 2021 Share Posted January 30, 2021 Well, as @ChaOs, my favorite languages are script languages - especialy related to web (php, javascript...) But I like python, which is quiet powerful and useful to help me to manage some stuffs in my job. On 1/20/2021 at 11:48 PM, Chef<3 said: Nah nevermind, my "Hello World" applications are cool ! @Chef<3 Try find what language is this ( it is not python :D) @RedBaird shhhh, you are not allowed to say , I know that you know 😆 10 CLS 20 COLOR 2 30 PRINT "Hello, world!" 40 END 1 3 Quote Link to comment Share on other sites More sharing options...
Leader RedBaird Posted January 30, 2021 Leader Share Posted January 30, 2021 Assembly? 1 Quote Link to comment Share on other sites More sharing options...
Chef<3 Posted January 30, 2021 Share Posted January 30, 2021 Basic ? 😛 1 Quote Link to comment Share on other sites More sharing options...
GHARIB Posted January 30, 2021 Share Posted January 30, 2021 48 minutes ago, RedBaird said: Assembly Ohohoh BASIC.!!! 1 Quote Link to comment Share on other sites More sharing options...
Gladiator Posted January 30, 2021 Share Posted January 30, 2021 2 hours ago, GHARIB said: Well, as @ChaOs, my favorite languages are script languages - especialy related to web (php, javascript...) But I like python, which is quiet powerful and useful to help me to manage some stuffs in my job. @Chef<3 Try find what language is this ( it is not python :D) @RedBaird shhhh, you are not allowed to say , I know that you know 😆 10 CLS 20 COLOR 2 30 PRINT "Hello, world!" 40 END Good old Basic. Brings back memories 2 Quote Link to comment Share on other sites More sharing options...
Leader RedBaird Posted January 30, 2021 Leader Share Posted January 30, 2021 (edited) 3 hours ago, GHARIB said: Ohohoh BASIC.!!! That was a joke, son! I should copy some old programs here, doing so much work to get so little done, but FAST, FAST, FAST! BTW, you were right. I did know. 😄 Edited January 30, 2021 by RedBaird 2 Quote Link to comment Share on other sites More sharing options...
Snuffs99 Posted January 31, 2021 Share Posted January 31, 2021 On 1/30/2021 at 8:05 AM, GHARIB said: @RedBaird shhhh, you are not allowed to say , I know that you know 😆 10 CLS 20 COLOR 2 30 PRINT "Hello, world!" 40 END Should scrap END as the funs over then. Can also remove the clearscreen as it wont be needed if it repeats the print in a loop. So can have less in general 10 PRINT "Snuffs is great!" 20 GOTO 10 RUN Haha basic i love, first language i ever learnt on my commodore C16 +4......spent about 3 days writing out basic code that when run would draw a wire framed donut. 😄 Only a donut but in the 80's it was a fooking awesome donut. Learnt a few at college including Unix, pascal, cobol and C then moved on to C++ and the likes of python etc. Favourite is always gonna be basic though, cos its the first i learnt and is ...well basic. 2 1 1 Quote Link to comment Share on other sites More sharing options...
Leader RedBaird Posted February 1, 2021 Leader Share Posted February 1, 2021 7 hours ago, Snuffs99 said: 10 PRINT "Snuffs is great!" 20 GOTO 10 Infinite loop! 😮 2 Quote Link to comment Share on other sites More sharing options...
em3l1en Posted February 12, 2022 Share Posted February 12, 2022 Keeping to the topic - it`s Python. Very handy tool, love it 3 1 Quote Link to comment Share on other sites More sharing options...
ktg0000 Posted June 10, 2022 Share Posted June 10, 2022 This coder's corner is quite dead. Currently my favorite is Python. 3 Quote Link to comment Share on other sites More sharing options...
mraw435 Posted June 21, 2022 Share Posted June 21, 2022 started taking online courses via freecodecamp and codecademy - been enjoying the learning process! for learning purposes, I am super glad I started with Python - widely used and easy to understand. 1 Quote Link to comment Share on other sites More sharing options...
parrot Posted September 25, 2022 Share Posted September 25, 2022 Allow me to perform necromancy.... I think the choice of language is primarily determined by your situation and the task at hand. For example, need to jam together a script to do some moderately complicated scripting? You could use Bash, but the syntax will make you cry, so maybe Python. The REPL is super nice for iterative development. Maybe you need to build a CLI tool for your shiny new API? Golang (Cobra) is the best choice, imo. Building a distributed system that needs good Kafka compatibility? I'd pick Java. Otherwise, take a look at your team. If you have a ton of folks who are very familiar with Python, maybe chose that over Golang (assuming performance is not critical), as the end product may be written much faster. A concrete example: My team was tasked with writing an API for a new distributed compute platform. We initially chose Java, as that was what I had been using before, and two of my teammates also. We ended up porting to Golang, because the majority of our new (much broader) team knew Go, and did not know Java, and since the performance was basically a wash, we chose the language most likely to garner contributions from the broader team. There are good and bad things about every language, even the traditional whipping boy PHP - a lot of folks pick up PHP as their first language, and denigrating it is like spitting in the face of those folks. I wouldn't personally choose to work with PHP or node.JS, but I don't fault those who do. 1 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.