CodingComputing Profile Banner
Coding Computing Coach Profile
Coding Computing Coach

@CodingComputing

Followers
9K
Following
9K
Media
330
Statuses
13K

Making Python simple for you, by exploring the fundamentals. Tips and explanations to become code-literate in this AI age. Building @PythonResources

Maximize your coding skills πŸ‘‡
Joined May 2019
Don't wanna be here? Send us removal request.
@CodingComputing
Coding Computing Coach
1 year
🚨 Python Testing Series 🚨 Employ testing to gamify your coding. Learn how to test code using pytest. Build a Cash Dispenser project in Test Driven style. Ongoing series of posts, see README at: https://t.co/yOR9qXSARE
Tweet card summary image
github.com
Contribute to CodingComputing/gamified-testing development by creating an account on GitHub.
0
1
19
@CodingComputing
Coding Computing Coach
6 days
Bugs and Errors are not: ❌ failures ❌ reason to give up ❌ to be taken personally they are: βœ… feedback βœ… signboards βœ… opportunity to learn The right perspective makes a world of difference.
0
0
0
@CodingComputing
Coding Computing Coach
7 days
If you say you don't need to use git... might as well never use the Save button too.
0
0
0
@Prathkum
Pratham
11 days
People think learning to code is becoming useless in the AI era. It’s the opposite. Learning to code is more than just syntax: – understanding how systems talk to each other – reading other people’s code – knowing what to automate and reuse AI can write code but you need to
47
12
154
@CodingComputing
Coding Computing Coach
11 days
@Prathkum Those who don't think before coding (or worse, prompting AI) are doomed to an infinite loop of bugs.
0
1
0
@CodingComputing
Coding Computing Coach
12 days
When you're stuck, getting a different error message feels like progress. That means you either solved your current issue and went on till the next, or... you messed up something even before where you were originally stuck at.
0
0
0
@CodingComputing
Coding Computing Coach
1 month
What do you use python the most for?
1
0
0
@CodingComputing
Coding Computing Coach
2 months
People only see you typing weird symbols. They don't see the thinking that goes behind it.
0
1
1
@CodingComputing
Coding Computing Coach
2 months
The clever thing is to not write clever code. It is to write clean code.
0
0
0
@CodingComputing
Coding Computing Coach
2 months
AI has speed and volume (large amounts of code generated very fast). The catch is... someone competent needs to understand it, and ensure it's really doing what it's supposed to.
0
0
0
@CodingComputing
Coding Computing Coach
2 months
Developers go from "I've been doing this for years" to "Oh I have no clue how that happened", back-and-forth... in a matter of seconds.
0
0
0
@CodingComputing
Coding Computing Coach
2 months
The most inspiring factor to try out Linux is... Windows Updates
0
0
0
@CodingComputing
Coding Computing Coach
2 months
Which one do you choose?
0
0
0
@CodingComputing
Coding Computing Coach
2 months
Curiosity is so underrated
0
1
4
@kotov_dev
Sergei Kotov | Python Made Simple
2 months
@CodingComputing πŸ’―Struggle is part of learning - even experienced devs hit walls regularly. The discomfort means you're growing, not that you're failing.
1
1
3
@CodingComputing
Coding Computing Coach
2 months
Developers go from beginner to pro by: βœ… Tinkering & Building βœ… Making mistakes & Struggling βœ… Fixing & Moving on You'll figure it out as you go
1
0
4
@CodingComputing
Coding Computing Coach
2 months
Things change fast, so there's no time to revisit the fundamentals. However, there is some bug making us go back and think. And then we find something we hadn't understood well. Switching between "This is super-easy" and "I had it wrong all this time!" is a dev's story.
0
0
4
@svpino
Santiago
2 months
Python is the best language in the world. Yes, Python is slower than other languages, but I don't care because most of my work doesn't require it to be faster. Python is fast enough for what I need, and fast enough for most people out there. On top of that, over 90% of the
257
111
1K
@CodingComputing
Coding Computing Coach
2 months
You don't need a novel idea to code as a beginner. Pick any simple project. Implement it, debug it. Repeat till it becomes second nature.
0
0
3
@CodingComputing
Coding Computing Coach
2 months
Computing statistics with Python's builtin module:
@CodingComputing
Coding Computing Coach
2 months
@clcoding Answer: (4.8, 4, 4) Solution: The `statistics` module is used here to obtain statistics from the `data` list. statistics.mean(data) will compute the mean, ie, the arithmetic average of the 5 values in `data`. = (2+4+4+6+8)/5 = 24/5 = 4.8 So, that's mean_val. Next we have +
0
0
1
@clcoding
Python Coding
2 months
Python Coding challenge - Day 755| What is the output of the following Python Code? Answer with Explanation: https://t.co/A8JOanagbj
7
15
99