Hasil Pencarian: "#pythonbeginner"

17 hasil
Jamey LaMar
Jamey LaMar@_JLaMar·
Unlock Python's potential with PyCharm! Your smart coding companion. Daily Doc Tip: Use `#` for comments to explain *why* your code does something, not just *what*. Concept: Variables. Store data like `user_name = "Dev"`. PyCharm helps you track them easily. #PythonBeginner...
English
0
0
0
2
Jamey LaMar
Jamey LaMar@_JLaMar·
New to PyCharm? Level up your Python journey. Daily Doc Tip: Hover over any code element for instant quick docs. Concept: Smart Code Completion. Type `str.` and PyCharm suggests methods. It's your intelligent assistant, making coding faster & cleaner. #PyCharm #PythonBeginner
English
0
0
0
8
IrisTech
IrisTech@IrisTechss·
Git milestone: Created PR from feature branch, requested review (solo), merged after fixing small conflict. Practicing full Git flow – next up: collaborating with someone! #GitHub #PythonBeginner #CodingJourney
English
0
0
0
31
IrisTech
IrisTech@IrisTechss·
Git practice: Used git branch -d feature/old-branch after merging, then git push origin --delete feature/old-branch to clean remote. Keeping branches tidy = good housekeeping. #GitHub #PythonBeginner #CodingJourney
English
0
0
0
11
IrisTech
IrisTech@IrisTechss·
Git milestone: Did git diff before commit, then git commit -m "added dict comprehension filter" with multi-line message using -m "line1" -m "line2". Descriptive commits satisfying. #GitHub #PythonBeginner #CodingJourney
English
0
0
0
8
Jamey LaMar
Jamey LaMar@_JLaMar·
Starting Python? PyCharm is your smart co-pilot. It anticipates your code, like typing `pri` and hitting `Tab` for `print()`. Daily tip: Document *why* your code does something with `# comments`. Clarity now saves headaches later. #PyCharm #PythonBeginner
English
0
0
3
15
IrisTech
IrisTech@IrisTechss·
Git practice: Created .gitignore (added pycache and .DS_Store), committed, pushed. Clean repo history now. Learning to keep GitHub tidy early. What's in your .gitignore? #GitHub #PythonBeginner #CodingJourney
English
0
0
0
14
IrisTech
IrisTech@IrisTechss·
Git win: Used git log --oneline to review last commits, then git reset --soft HEAD~1 to undo last commit without losing changes. Undoing safely feels empowering. Practicing history control? #GitHub #PythonBeginner #CodingJourney
English
0
0
0
5
Jamey LaMar
Jamey LaMar@_JLaMar·
New to Python? PyCharm streamlines your journey. Daily tip: Document functions with docstrings. E.g., `def func(): '''Does X.'''` for clarity. Concept: Smart code completion. Type `my_list.` and PyCharm suggests `append()`. Write faster, learn smarter. #PyCharm #PythonBeginner
English
0
0
2
21
IrisTech
IrisTech@IrisTechss·
Git milestone: Created branch feature/nested-dicts, committed several times, merged to main with git merge after resolving tiny conflict. First manual merge – learning fast! #GitHub #PythonBeginner #CodingJourney
English
0
0
0
9
IrisTech
IrisTech@IrisTechss·
Git practice: Stashed changes with git stash, pulled main with git pull, applied stash back with git stash pop. No conflicts! Learning stash for task switching. Who uses git stash regularly? #GitHub #PythonBeginner #CodingJourney
English
0
0
0
9
IrisTech
IrisTech@IrisTechss·
Git practice: Reverted bad commit with git revert HEAD, amended last commit with git commit --amend to fix message. Learning to clean history feels pro. Anyone experimenting with Git undo tricks? #GitHub #PythonBeginner #CodingJourney
English
0
0
0
12
IrisTech
IrisTech@IrisTechss·
Git win: Created PR from feature/dicts-practice to main with description. Merged myself – first self-PR! Small step, feels like real dev workflow. Who else practicing Git alongside Python? #GitHub #PythonBeginner #CodingJourney
English
0
0
0
6
IrisTech
IrisTech@IrisTechss·
Quick dictionary play: Added hotel_prices["Comfort Lodge"] = 9500 and used if "Comfort Lodge" in hotel_prices to check existence. Already seeing how this stores tons of info cleanly. Your first "aha" with dicts? #PythonBeginner #PythonTips #CodingJourney
English
0
0
0
4
IrisTech
IrisTech@IrisTechss·
Funny bug: Infinite while loop – forgot increment counter. Added it and felt like a detective solving the case. These moments never stop being funny. What loop error still makes you cringe? #CodingJourney #PythonBeginner #CodeStruggles
English
0
0
0
4
IrisTech
IrisTech@IrisTechss·
Today's highlight: def recommend_top_hotels(hotels, limit=3): sorted_hotels = sorted(hotels, key=lambda x: x['rating'], reverse=True) return sorted_hotels[:limit] Used for loop display. Sorting by rating feels powerful! #PythonBeginner #PythonTips #CodingJourney
English
0
0
0
3