#Cajun Code Camp
207 messages · Page 1 of 1 (latest)
hey! i would like to begin coding however i am very overwhelmed by the amount of resources out there
I understand. Typically a lot of people tend to find sticking to a more linearly structured learning system is more intuitive. Like "Learn this, do these exercises, move on to the next concept." And kind of accumulate knowledge and understanding until you're "qualified" enough to work on a real project. With programming, a lot of the times that's not the most efficient way to learn. Try to, 1) pick a programming language you would like to learn. 2) Learn some coding fundamentals, and some language-specific fundamentals. 3) Try and build something. It could be anything. Try and create a basic shell (which is just a terminal you type commands in and produces an output). Maybe build a webpage. Maybe build a discord bot. There's lots of ideas out there that you can pick. Pick whatever interests you. In short, go to the page in the image below. It'll help guide you in your first steps. It basically explains what I just said.
In case anybody's interested in exploring some projects in Java/basic python/js/Bash/C# here's my page https://github.com/nsgwick . Would be interested in seeing anyone's work in java, bash or python 🙂 I'd also be happy to answer any java or (simple) python coding questions as well as others here 🙂
Btw for new coders this is brilliant to look around:, however there are hundreds of files and so many languages. Well-known and easy-to-read things like Fibonacci, dice roller, etc. are good to look at https://github.com/ReciHub/FunnyAlgorithms
Hi Nick, I'm learning python right now. I might ask you some questions if you don't mind. 🙂
feel free 😄
Are you guys familiar with 'Advent of Code'?
I'm joining my fellow students from uni for the first time in this challenge of solving daily coding puzzles in December.
Haven’t heard of it but I’d enjoy that
just google it. you can do it in any language as far as I've understood. Every day you get 2 puzzles, and every day will be harder than the day before.
If you're really fast you can even get on a leaderboard (speedcoding component), but since it's my first time, I'll just go for solving as many puzzles as possible at my own pace.
Has anyone tried or does anyone run Linux here?
yea I've heard of that
Did you ever try it? If so, how did it go for you? Did you like it?
https://github.com/ossu/computer-science For you guys who are starting out, in my opinion this is the BEST way to learn CS. Enjoy!
Well I know it's starting dec
Do u have a favourite distro? I had a real long-term problem distrohopping like most people. Or are there ones you prefer (which ones)? Right now I just use windows 10 because it's best for compatability with what I need for college etc. - but I have EndeavourOS dual-booted (despite not having booted on it for months). I made my own Arch linux installation scripts which were fun to run lol. I'm really interested in just coding software for the command line or something. are you too or just interested in general?
Right now I only looked into the Ubuntu distros because it was stable and supported for what I was trying to do in Linux. I love coding software and command line too.
Who work with javascript? 🤓
Here's some fun stuff:
https://github.com/codecrafters-io/build-your-own-x
hello gang, I'm new to coding and this is my first exercise with the string functions that I just learn, also, is there a way to show characters before the pointer?
Ig u could do something like this:
Thanks @pastel sinew , I will try and let you know
But do u understand why it works tho?
Same situation as a beginner, i am learning in this google app grasshopper, java
👀
I did not know about that and I barely know the basics (booleans and stuff) so thanks for letting me know of that i'll start working on it now!
Am going to start doing the problems on project Euler 👍
CCC
Im kind of confused about return in Java script can anyone explain that to me
I have always wanted to learn coding but i can't find the right steps there are lots of resources out there. Where should i start from?
as I read from dev mozilla, return statement ends a function execution
function getRectArea(width, height) {
if (width > 0 && height > 0) {
return width * height;
}
return 0;
}
console.log(getRectArea(3, 4));
// expected output: 12
console.log(getRectArea(-3, 4));
// expected output: 0
so there the first output is 12 because 3 and 4 both are > 0, conditions were met, but else when it specified -3, the condition didn't met (because the condition has &&) thus return 0 means return the number 0 because there is no output to return from the function since the conditions weren't met.
but that's just one thing that return does, I didn't finish the article by https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/return#try_it
@restive charm
oohhh i get it now thanks!
if you're looking for roadmaps : https://roadmap.sh/
@weak epoch
☝️
ok thx I didn't know about did either
@worthy minnow This is the coding forum! I believe you were asking about it
Thank You @elfin ibexi
What language are you studying @worthy minnow ?
@obsidian sinew I have little experience with Python but want to polish it up and understand it properly. Also looking into DevOps Tools and concepts. What about you Sharon ?
I'm currently learning Java. And this month I also want to start learning some SQL.
@obsidian sinew With Java, are you covering concepts or currently in coding phase ?
Python is really good
I'm still covering concepts, but I guess I have the basics almost down. I'm hoping to start some small project by the end of the month.
It's my first programming language though, so there's a lot to learn and a whole new way of thinking for me.
Great to hear your enthusiasm. 😃 🙌


Hello. I would definitely like to learn coding, in fact I will be taking computer science in uni. But I dont know where to start, there are too many resources.
What do you want to do with coding? And what language is thought at your uni?
The syllabus includes C language programming, JAVA, artificial intelligence, Python. There are more of them, but some of them are theory based like operating systems and fundamentals. Plus I dont really have a direction that I think I will have in coding as I have not yet tried it myself. I wish to decide it after I somewhat get an idea of what different forms of coding feels like, so I know what I am getting into and not practice something I dont like. What I do know is that I wont be doing game development. Because I have tried it, but AI and Machine learning seems interesting😄
In that case I'd start with Java. You'll get a good understanding of programming in general and it's object oriented which is pretty important when creating bigger programs. They have it as the first language in my uni as well.
Other option would be Python, as it's also relatively easy to pick up. A lot of uni's switched to that as a first language.
If you want to do Python then a good first free course would be 'python for everybody'.
For both languages (and more) a lot of my fellow student really love the YouTube channel 'Bro Code' which has 12 hour course video's on several languages including Python and Java.
Just remember that the most important thing is to start coding. Start somewhere and see if you like it. If you don't, no worries, just start in another language or another project. You'll always learn from it and eventually you'll find something that fits you.
Thank you so much😭 I think ill start with JAVA as they will teach it in the first semester as you mentioned and python will be in the third semester as you mentioned. Ill progress further and into more languages as I get comfortable. Thanks a lot for going out of your way to help me😄
No problem. If you have any more questions or are stuck while coding feel free to ask here. Aside from me, I believe there are a couple more people who are studying/have studied Java. I'm still pretty new at programming myself (just got the basics of Java down), but I'll try to help if I can.
Good luck!
I would have advised you with java as well aside from uni
Hi guys, i'm new here
hey who know c
I know C but it's been years since I touched it. Now I'm learning Unity to make game
Same I learnt C 2 years back in 8th grade, Kinda remember it because of c++
So do you need help with C? 👀
is there any one in here who work as a web developer
hey guys,
i want to start coding but i just wanna know what are some cool things you can do with code, just to have a goal in mind if i want to start
Hey everyone!
Honestly depends on what you start with. You can develop games, apps, websites, algorithms, chatbots, chrome extensions. Anything you can do on a computer you can do with code!
You need to choose one route however. If you dont have anything in mind, try with Javascript. You can develop websites,games,apps and ai with it. Whatever interest you find in those trial and errors just specialise yourself in it. For example lets say you enjoy making website. Then devote to learning databases's, excell your frontend skills etc
There is also a niche field of competitive programming that involves problem solving with code. I enjoy it a lot, but I would not reccomend it starting out
Im learning lua, for game dev cuz that interests me. I am learning via course, I really want to get into C++ after some smaller projects in lua. Do you guys think that would be a good idea or could I do a language in between. Because Lua is quite simple and C++ quite hard. And I really wonder what are other popular game dev languages I know you can do it in python and java but like more specialized languages. C++ ofcourse isnt really specialized but almost every language is based of C++ so I think its one of the best game dev languages out there. I would love to hear your opinion!
Honestly, I wouldnt have reccomended learning LUA, but since you have done that so it cant be helped.
C# Might be a better choice to learn here. You can use the powerful Unity Engine using it, and its similar to JAVA.
However, after some amount of expertise C++ might be the way to go for game development
PS: Almost every popular enough language has game engines, and ways of game development like javascript
Ye ik lua is a odd choice idk what I was thinking, but thanks
btw, I can feel you on the C++ is hard, I struggled with it in 9th grade. But managed to learn it. Of course I still get bamboozled by certain complex cases of abtsractions, and polymorphisms. But Consistency and Practice would help you learn it.
One approach i had was -> Learn from tutorials courses usually have seperate topics split, So everytime you finish a topic then do the following:
- Make notes on it, make more practical notes rather then theoretical
- (Optional) Try Making a project(before you start the course have a list of projects you can do and when you feel you have enough knowledge for that project code it, if you feel stuck I could try giving you a list of console based problems)
- Attempt Problems on it on Hackerrank C++ Section
After learning C++ and mastering that OOP jump into a game engine
Hello, I learnt flutter about a year ago for app development (basics) and I am now learning python. I streamed today, and will stream for the next 99 days too. Yippie
i want to start coding too any suggestions for any languages i can start with i know a bit of java only for exams of school
Python is the most usual language to start because its widely used and pretty easy to learn. If you want a more specialized language you could look into languages like Ruby, there are a lot more. Those languages are more specialized in web dev, game dev, mobile apps etc. Pretty much for everything there is a more specialized language. So that depends if you know what you wanna do. If you want to learn a general language the easiest is probably Python like I said but javascript is also good. (Im not an expert coder to but I looked into wat language I should learn pretty good. This is still my opinion and could really differentiate)
@cosmic axle could u suggest a youtube channel from where i could learn python
There are a loooot but I cant think of one that is outstanding, I would just do a quick YouTube search
try freecodecamp
If you wanna go the easy route: Python and then move on.
However learning a low level language like C and C++ can be more helpful as you can pick up on other languages pretty quickly with it.
I studied c++ first and was able to easily learn Python in 3 days(and even win a python programming competition the 4th day 😉 )
Learning python and then learning a lower level language is also possible and people have done that. It just becomes a bit more problematic.
As for a resource to learning python:
-Video: Freecodecamp
-Reading: Sololearn
PS: My suggestion is based off of your basic knowledge of JAVA, if however your JAVA knowledge is negglegible start with Python/JS and explore the different fields of coding and pick the field you like the most.
@obsidian plaza thanks for the suggestion u guys r really supportive and helpful
Hi. I'm trying to code my own dynamic qr code - I want to update the text displayed by this. I have my qr code got generated with python and connected this to a SQLite Database. When I update the data in the database and comment out the save-function for the qr code it didn't display the updated text.
I hope you can understand what I'm trying to do - does anybody have an idea what I can do?
Yea I started with python and then transitioned to C/C++. Doing that transition was a bit rough as a lot of programming concepts are abstracted away in Python, but in C/C++ you will be forced to learn how they work.
It's actually really fun when you get the hang of it. Oop concepts are also stripped away a lot in python. Python is def easy but it's not going to replace the OGs anytime in the future.
Luckily I started with the Harvard CS50 so I started with C then C++ and Python+JS.
It depends what you're using it for. Python has really powerful libraries for data analytics, ML/AI, and other more high-level applications. So if ur specializing in that, python is the route to go. If what you're looking for is speed, performance, low-level/bare-metal control of memory, like if you're coding OS components, embedded devices, or coding a game or game engine, you're gonna need C/C++/Rust and/or assembly.
The thing is other languages beat it in Data analysis like R. AI I can agree tho Python had the edge.
soo im currently learning HTML on codeacademy.... planning to go for ai and other stuff
AI is quite an advanced topic. That's a good goal to have but remember you're gonna need to build some foundational skills before you can tackle that field.
soo what are the foundational skills to learn ??????????????
Linear algebra I guess?
Learn how to code first of all. Do some research about what programming languages are out there, and pick the one you would like to learn most. For your case I would recommend Python. Then solve problems and make projects with that programming language. And eventually you'll get better and better at it.
Here's an article that'll help you understand, well, where to start. (Misty keeps deleting my links so just go to the link in the image below)
Super late to this but like, try making a minimal shell with ur chosen programming language. That's a good start. A shell is like a terminal where u can type commands in and it does stuff.
Hello, I been wanting to code a website. Any good resources to start with?
The Odin Project maybe?
Hello, I have a question connected with coding yet a little bit broader I think. Basically I'm now an engineer after computer science degree but I am not sure which area of programming to focus on. I definitely don't want to go for front-end, neither for networking. I tried Unity (quite cool honestly, wanted to try unreal but my computer is too weak), had some projects with embedded stuff (NXP boards + Qt applications, unfortunately no arduino/STM/ESP which are worth knowing for jobs), did fullstack projects (React + NodeJS server + MongoDB), some stuff with python (ML as a part of my studies) and anaconda but I find myself indecisive when it comes to choosing the thing for me. I know that it's more about making a choice work out (aka doing stuff after making a choice) and that I don't have to stick to one thing for my whole life. Ngl finding a job soon is quite important for me, yet I'm trying to find something enjoyable for me. So my question is: what type of tip/advice do you have for making a choice?
Hello, is advanced maths helpful in coding?
Hello there. Apologies for the late reply.
So it seems like your question is a question of:
"What do I want to do?" "And after I find out what I want to do, how do I make it into a profitable career?”
For the first question, if I were in your shoes, I would try to think about which courses/projects I have done before made me feel the most fulfilled/excited. Which were the ones you found the most interesting. That takes some introspection and exploration, and you’re the only person that can do that for yourself.
For the second question, I don’t have much of a personal answer to since I’m not at that stage yet. But from talking to people who are in computer science and people who are already fully-fledged engineers, what I would say is:
- Become super proficient and well-practiced in the field you decided to specialise in:
- Never settle on good enough and always challenge yourself. Solving more and more challenging problems and finishing more and more challenging projects should become routine. Ideally this should excite you. This is how you sharpen:
- your problem solving skills,
- and how you develop experience
- Learn about ways to optimise your solutions and projects. In real-world projects, there are a lot of tradeoffs you will have to make in terms of things like: performance vs scalability vs adaptability etc etc… You can’t have everything. You need to understand what metrics are important for your project, consider what tradeoffs you need to make, and optimise your code accordingly.
- Never settle on good enough and always challenge yourself. Solving more and more challenging problems and finishing more and more challenging projects should become routine. Ideally this should excite you. This is how you sharpen:
c. Make sure your code is readable + learn more about the language(s) you code in as you move forward. This can help you make your solutions more concise, have less redundancy, and perform better.
2. Work with other engineers/people on projects. This helps you develop experience working with other people and gives you experience on what it’s like to work in teams. Through this, you and your coworker/partner can learn from each other.
3. Think about what solutions/projects the world needs. Through this you could build a startup to produce a solution to said problem.
Hope this was helpful!
Depends on what you're trying to do. If you're doing data science, machine learning, cryptography, game development, etc.. being familiar with advanced math concepts is definitely going to help as these fields are quite math intensive when you get into them. But math is everywhere in computer science, so it's a useful thing to know. It also depends how deep you want to go into a specific field. But in terms of programming, math is still useful when trying to understand how some functions/methods work, but what I feel is more helpful in learning how to program is understanding how to think algorithmically, being familiar with programming concepts and certain basic algorithms, and learning how to debug your code. (Use a debugger. It's a lifesaver in many situations.)
Thanks! So do you think it would help in game development
Thank you so much 🙏 
Yup. Here you go. Go to dis link: (Misty keeps blocking my links so here's an image)
Here's a helpful vid about making ur code more readable (u may already know this but here u go anyhow :>): https://youtu.be/CFRhGnuXG-4 and this one: https://youtu.be/Bf7vDBBOBUA
I'm a Never Nester and you should too.
Access to code examples, discord, song names and more at https://www.patreon.com/codeaesthetic
Correction: At 2:20 the inversion should be "less than or equal", not "less than"
Why you shouldn't write comments in your code (write documentation)
Access to code examples, discord, song names and more at https://www.patreon.com/codeaesthetic
References:
https://www.commitstrip.com/en/2016/08/25/a-very-comprehensive-and-precise-spec/?
Also this one: https://youtu.be/-J3wNP6u5YU
It's hard to come up with good names in code, but its also easy to get wrong. By looking at some examples, we can get 80% of the way there. Access to code examples, discord, song names and more at https://www.patreon.com/codeaesthetic
0:00 Introduction
0:31 Variables with a single letter
1:08 Never Abbreviate
2:06 Types in your names
2:36 Units...
thank you, I will definitely check it soon
@pastel sinew thanks for recommending the videos above, although I was a CS student, it's rarely mentioned how to write clean code
Thank you! I will check it out and give you feedback.
Hey anyone got any tips for how to learn python, I wanna learn coding mainly out of interest
harvards cs50p is an amazing free course for python!
Is it free though?
yes, theres a certificate you can pay for if you want, but you can also just not get it
@frosty raft
Hi guys, I am working on a project that I need help in for development, and who could could be a better person for that than you guys. Someone who has got some great skills up his sleeves.
Hoping for your support. 😃
Anyone who knows how to code or more specifically app/web development please dm me.
Project like what
Hi, it's a social news network which would be a platform where people will get latest unbiased news and will be able to debate and discuss on that. We currently want a minimal viable product with just the basic functionalities which will include a news feed, a discussion page for different news and if possible a sign in page.
Nice I will think and tell you about sometime
There are plenty of online tutorials for blog projects follow one of them and instead of blogs add news factor. The rest of the marketting stuff is in ur hands regarding the unbiased perspectives
Thanks that would be really nice of you.
You are making a great point there but I thought it would be good to have someone with higher expertise on team.
See the project you're going for isnt rly that advanced and the tutorials wld be more then enough for the experience and if you ever want you can definitely ask doubts regarding the coding here. Making projects yourself is a much better way to be self independent and learn much more efficiently.
If you want ask anything else then ask on dms since the timeout is rly annoying
Well you are right
If you need any help people are here no one has those expertise
But if you want any snippet of code we are here. Simply I AM IN TO YOUR PROJECT
First off, this exact idea has been done before
Second off, this exact idea has failed almost every time because you can never eliminate bias
Third off, I recommend you learn web development yourself, that way you don't have to constantly go to someone else to write the HTML, CSS, or JS for you
Fourth off, good luck
Fifthly find 3 news API make requests each hour and compare and make them relatively unbias using chatgpt and text humanizing apis. Have unbiased news without any media work
from flask import Flask, render_template, request, redirect, url_for
app = Flask(name)
Sample data structure to store news and debates
news_articles = []
debates = []
Homepage - Display news articles
@app.route('/')
def index():
return render_template('index.html', articles=news_articles)
Upload a news article
@app.route('/upload', methods=['GET', 'POST'])
def upload():
if request.method == 'POST':
title = request.form['title']
content = request.form['content']
news_articles.append({'title': title, 'content': content})
return redirect(url_for('index'))
return render_template('upload.html')
View and participate in debates
@app.route('/debates', methods=['GET', 'POST'])
def view_debates():
if request.method == 'POST':
debate_topic = request.form['topic']
debates.append({'topic': debate_topic, 'comments': []})
return redirect(url_for('view_debates'))
return render_template('debates.html', debates=debates)
Add comments to a debate
@app.route('/debates/int:debate_id', methods=['POST'])
def add_comment(debate_id):
comment = request.form['comment']
debates[debate_id]['comments'].append(comment)
return redirect(url_for('view_debates'))
if name == 'main':
app.run(debug=True)
Can anyone tell what is the problem with this code actually on executing this code it is showing error like flask name module not found
If anyone can help with this
hmm maybe you can search it on StackOverflow
Your flask module isnt downloaded... How did you write all this code without installing it
Actually this is tested on visual studio code and it is written on intellij
- Pls don't use multiple ides for one project.
- Test after each step then creating a whole program and then testing.
guys tell me a site to practice python questions on
I am working on a HTML Form with JavaScript and CSS and I need some ideas as to what kind of webpage to build. Any suggestions are welome :)
you want to practice the basics of python coding or algorithms?
leetcode ?
intellij or pycharm creates a venv when a new project is created
basic python questions to help logic building not data algorithms xD
will check leetcode
thenks shyzen @pastel sinew
(didnt notice the slowmode so editing this msg lol)
maybe hackerrank in that case
no problem
HackerRank is good for beginners to intermediate
thenks @clever fractal @surreal grail
i'll check hackerRank 🥂
👍🏻
man new UI update in IntelliJ is awesome
do anyone have any review on figma
review in what sense?
its a 10/10 platform with comically huge amount of plugins
rly good for illustrations
its rly popular
very easy to use so you can spend more time thinking
for website designing
yep its rly good for website designing its free its popular its convenient
But got to know it's bought by adobe
so it might be possible that figma might not provide as many features before for free than that time
the other softwares include adobe xd...
Which one
The other software is named "adobe xd" and learning ui software is a days worth of time at most. Rest is your creativity and ideas. Just go ahead and use figma its rly good
Thanks
Does anyone know how to code a website?
did you learn frontend and backend languages
Yes many people do you shld ask your question directly instead of asking to ask
Haha that's fair
Only for designing the frontend part you can learn html, CSS and JavaScript
guys I feel like trying this out ~ https://www.codedex.io/
oooh this looks fun
I have experience in coding, but wanted to learn JavaScript recently. Going to schedule learning this in a few days, What about you?
Starting to learn python (again)wish me luck 🤞
Ooh good luck! Feel free to share your experience :)
😄
`# Write code below 💖
ph = int(input('Enter a pH value (0-14): '))
if (ph>7):
print('Basic')
elif(7>ph>0):
print('Acidic')
else:
print('Neutral')`
kinda feel proud for this
Nice, new to python?
Thats the way 1 step at a time with projects along the way!!
Ggs
Good job 👍🏻
best of luck
`'import random
q = (input('What is your question: '))
a = random.randint(1, 9)if a == 1:
print('Magic 8 ball: Yes - definitely.')elif a == 2:
print('Magic 8 ball: It is decidedly so.')elif a == 3:
print('Magic 8 ball: Without a doubt.')elif a == 4:
print('Magic 8 ball: Reply hazy, try again.')elif a == 5:
print('Magic 8 ball: Ask again later.')elif a == 6:
print('Magic 8 ball: Better not tell you now.')elif a == 7:
print('Magic 8 ball: My sources say no. ')elif a == 8:
print('Magic 8 ball: Outlook not so good.')else:
print('Magic 8 ball: Very Doubtful.')'`
today's exercise 😄
`# Write code below 💖
G = 0
H = 0
R = 0
S = 0
print('===============')
print('The Sorting Hat')
print('===============')
one = int(input('Q1) Do you like Dawn or Dusk?\n1) Dawn\n2) Dusk\n'))
if one == 1:
G += 1
R += 1
elif one == 2:
H += 1
S += 1
else:
print("Wrong Input")
two = int(input('Q2) When I’m dead, I want people to remember me as:\n1) The Good\n2) The Great\n3) The Wise\n4) The Bold\n'))
if two == 1:
H += 2
elif two == 2:
S += 2
elif two == 3:
R += 2
elif two == 4:
G += 2
else:
print("Wrong Input")
three = int(input('Q3) Which kind of instrument most pleases your ear?\n1) The violin\n2) The trumpet\n3) The piano\n4) The drum\n'))
if three == 1:
S += 4
elif three == 2:
H += 4
elif three == 3:
R += 4
elif three == 4:
G += 4
else:
print("Wrong Input")
most_points = max(gryffindor, ravenclaw, hufflepuff, slytherin) # We'll learn about max() in the Functions chapter
if gryffindor == most_points:
print('🦁 Gryffindor!')
elif ravenclaw == most_points:
print('🦅 Ravenclaw!')
elif hufflepuff == most_points:
print('🦡 Hufflepuff!')
else:
print('🐍 Slytherin!')`
✨Le Sorting Hat ✨
Thats Awesome!
Provided to YouTube by CONSALAD
99 bottles of pop on the wall Ninety-nine Bottles Of Pop · Pink Jelly Kids
Fun Sing Along-The Best 10 children’s Song
℗ (주)블렌딩
Released on: 2022-05-10
Arranger: Pink Jelly Kids
Auto-generated by YouTube.
bro what is this cursed c and python mixture
But...but it works tho XD
where is the C part
you might want to split up the string into multiple lines instead, try searching multi-line f-string for how to do it
the string parsing was kinda similar to c,
and if you see the print..f.. 😉 😉
you need to "clears throat" C closely enough "wink wink"
That’s called a f-string…and Python is usually compiled to C so to your logic you can basically Python is C lol
mann i was just tryna lighten up the mood and joke around ive done both of them and i very well know the syntax and the terms of both langs 😭
Lol
Okay I might be a bit strict on this issue because it might confuse the learner…anyways sorry for making this situation a bit awkward 
done! this is a project i make related to the CKA
😎
how do you share code like that?
I wanted to share one of my projects but the app wont let me send
Save it as a py file, then you can send it
from print() to modulization
A gif that I make with python (basically put 2 pictures together only 😅)
A game I made in Python
PS. option 4&5 won't work because they involve a custome module
This is pretty funny 🤣
Lots of # though
looks cool, next step is to try minimizing the number of if-else by introducing dictionaries 🤔
I want to start coding from python from today onwards
Any tips for me
Never done coding before
Your 2 best friends are going to be Youtube and Stack Overflow
Hello
How's roadmap.sh is it good for beginners
hey there! im a coding enthusiast and wanted to make an app for my portfolio in the future so any suggestions about what i should code?
ah yes i've done some
Im looking to start my journey in coding
🚀 Day 11 of #100DaysOfCode:
C++ solved Leetcode 13: Roman to Integer 🟢
DEV: IKEA footer Layout With Tailwind CSS 🟢
Anyone here
🚀 Day 12 of #100DaysOfCode:
C++ solved Leetcode 22. Generate Parentheses🟢
DEV: Royal Enfield Hero Banner Layout With Tailwind CSS🏍️🟢
🚀 Day 13 of #100DaysOfCode:
C++:
Leetcode 100. Same Tree 🟢
96. Unique Binary Search Tree 🟢
DEV: Started Learning Javascript
⚫️ Variables
⚫️ Loops
🚀 Day 14 of #100DaysOfCode:
C++:
LeetCode 36. Combination Sum 🟢
217. Cantain Duplicate 🟢
Contain Duplicate
Dev: Rock, paper, scissors using using javascript🟢
⚫️ some problems with the loop
⚫️ Truthy and falsy