#Codeblr
Explore tagged Tumblr posts
Note
hi! i'm shy as hell usually but trying to branch out cuz i saw u reblog that post abt asks. do u have any recs on where to start for a beginner coder (who has virtually no free time)? i feel like the landscape is so vast and overwhelming.
Hiii!! Thanks for the ask!
I think the best thing I've learned throughout my coding journey is that you must first pick a field that interests you. Computer Science is a VAST world, once you pick a field, you must really commit to it. For example, maybe data science interests you. You look up the requirements to be a date scientist. I don't have in-depth knowledge on it, but I do know that you need good knowledge about python and some of its modules like numpy, matplotlib etc. So you start learning the basics, and then move on to the modules. The key is to find what you love, then find what you need in order to pursue it.
For a kickstart I'd recommend w3schools — it's a really good site that has so many tutorials on various languages.
I was also a person that had no free time at all to focus on my learning. But then I realised that you must make time if you want to work on something with dedication. So now I devote Sunday afternoons to learning and working on my projects, and I try to stick to it as much as possible, except for when I have uni exams or any submissions lol
Hope this helped!!
15 notes
·
View notes
Text
OK so I can’t really tell you any more information about this because most of what my company does is incredibly specific and incredibly easy to Google (this was the only thing he said that would not have immediately doxxed me to post lol), but I will let you know that you’re basically right with some caveats that I can’t tell you because, again, they may or may not reveal my exact geographical location and place of work.
I need to be extremely clear, though, that if your 9-5 is Having Meetings And Within Them Deciding What To Put On The Agenda For Later Meetings, then you have been hoodwinked, your job does not really exist, and the means of production will be seized from you
Office jobs are so deeply unserious bc you’ll hear a finance guy go “yeah last year I was on a feedback committee for transparency services” and everyone will nod like those words ever meant anything to anyone
Like dev work can be a little abstract I know but if I tell you I’m a developer for the cybersecurity department on some level you know that I write code to make sure the cyber remains secure. you can’t just say that sentence up there like you’re not just vagueposting about Business Words to trick us into thinking there’s some amount of work that you do
35 notes
·
View notes
Text
Computers be like "omg bestie so true" and it's just the number 1
347 notes
·
View notes
Text
Me upon discovering an online game that helps you learn git: haha I've been using git for years now, I could skip ahead many levels, methinks hahaha no, no, I'll be humble and start on level 1
Me on level 5: You can do what??? There are commands for what???
#remember to be humble kids because sometimes you find out you're a fucking n00b#mogologue#codeblr#coding
12K notes
·
View notes
Text




2025-03-18
databases + doodles
#studyblr#studying#productivity#studyspo#stem#study aesthetic#study motivation#codeblr#obsidian md#obsidian.md#study#study blog#study inspiration
198 notes
·
View notes
Text
Last Cartridge of Insulin
This is an URGENT REQUEST as I cannot go a day without insulin. Currently I am unemployed through no fault of my own. I do not have insurance so I will have to use GoodRx. My insulin is called Afrezza. It costs around $450-$490 depending on the pharmacy I go to.
Goal: $450
CA: $HushEmu

Currently I cannot drive because my only pair of perscription glasses are broken. So I will also need help with ubers. Please.
I’d like to stress that not taking insulin daily is deadly. This is a medical emergency. Begging for this request to be filled.
Informative read:
https://www.healthcentral.com/condition/type-1-diabetes/how-long-can-a-diabetic-go-without-insulin
#taylor swift#ttpd#watermelon#witchblr#eurovision#diabetes#the arcana#anime#books#bridgerton#crypto#justin bieber#selena gomez#critical role#megan thee stallion#education#codeblr#furry#doctor who#lego monkie kid#Spotify
2K notes
·
View notes
Text
So python is apparently unable to handle if-statement with more than 2996 elif’s, which is fair, however, it’s really limiting my implentation of an is_even function
Any ideas on how I can work around this?
5K notes
·
View notes
Text
youtube
I had watched this video in my 4th semester while studying Data Structures and Algorithms, and for some reason I hadn't been able to really appreciate the power of binary representation for this problem.
Coming back to this again in my 6th semester as a part of my Competitive Programming course, I was blown away this time. It is elegant solutions like these that increase my conviction that I love this side of Computer Science: algorithms and mathematics. Do watch if you want to have 14 minutes of cool and simple mathematics.
6 notes
·
View notes
Text





11.26.24 —> 11.27.24
Oh hey Tumblr,
A little bit of a photo dump for the blog today. I went to office hours to pick my professors brain about some homework that I am turning in late. The love of I have for professors that are chill people is absolutely boundless.
Yesterday I went to a cafe that resembles a train car and I got a miso caramel latte? I thought it tasted good.. but then the more I drank it the more decisions I regretted.. kept me caffeinated though.
Happy Thanksgiving to those who celebrate <3
#studyblr#student motivation#studyspo#student#study inspiration#studying#college#collegeblr#unpremeditatedstudies#codeblr#study inspo#study buddy#study space#study blog#study motivation#study notes#cafe aesthetic#cafe#uniblr#university
345 notes
·
View notes
Text
Ok. I am going to let you in on a secret about how to make programming projects.
You know how people write really good code? Easy to read, easy to work with, easy to understand and very efficient?
By refactoring.
The idea that you write glorious nice code straight is an insane myth that comes from thinking tutorials is how people actually code.
That is because programming is just writing. Nothing more. Same as all other writing.
The hobbit is ~95000 words.
Do you think Tolkien created the Hobbit by writing 95 thousand words?
Of course not! He wrote many many times that. Storylines that ended up scrapped or integrated in other ways, sections that got rewritten, dialog written again and again as the rest of the story happened. Background details filled in after the story had settled down
Writing. Is. Rewriting.
Coding. Is. Refactoring.
Step 1 in programming is proof of concept. Start with the most dangerous part of your project ( danger = how little experience you have with it * how critical it is for your project to work )
Get it to do... anything.
Make proof of concept code for all the most dangerous parts of the project. Ideally there is only 1 of these. If there is more than 3 then your project is too big. ( yes, this means your projects needs to be TINY )
Then write and refactor code to get a minimum viable pruduct. It should do JUUUUUST the most important critical things.
Now you have a proper codebase. Now everytime you need to expand or fix things, also refactor the code you touch in order to do this. Make it a little bit nicer and better. Write unit tests for it. The works.
After a while, the code that works perfectly and never needs to be touched is hard to read. Which does not matter because you will never read it
And the code that you need to change often is the nicest code in the codebase.
TRYING TO GUESS AHEAD OF TIME WHAT PARTS OF THE CODE WILL BE CHANGED OFTEN IS A FOOLS ERRAND.
( also, use git. Dear god use git and commit no more than 10 lines at once and write telling descriptions for each. GIT shows WHAT you did. YOU write WHY you did it )
Is this how to make your hobby project?
Yes. And also how all good software everywhere is made.
#codeblr#software#developer#software development#software developer#programmer#programming#coding#softeware
288 notes
·
View notes
Text
coding is just an endless cycle of "i know nothing. i give up" and "i know everything. i am god"
274 notes
·
View notes
Text
Essentials You Need to Become a Web Developer
HTML, CSS, and JavaScript Mastery
Text Editor/Integrated Development Environment (IDE): Popular choices include Visual Studio Code, Sublime Text.
Version Control/Git: Platforms like GitHub, GitLab, and Bitbucket allow you to track changes, collaborate with others, and contribute to open-source projects.
Responsive Web Design Skills: Learn CSS frameworks like Bootstrap or Flexbox and master media queries
Understanding of Web Browsers: Familiarize yourself with browser developer tools for debugging and testing your code.
Front-End Frameworks: for example : React, Angular, or Vue.js are powerful tools for building dynamic and interactive web applications.
Back-End Development Skills: Understanding server-side programming languages (e.g., Node.js, Python, Ruby , php) and databases (e.g., MySQL, MongoDB)
Web Hosting and Deployment Knowledge: Platforms like Heroku, Vercel , Netlify, or AWS can help simplify this process.
Basic DevOps and CI/CD Understanding
Soft Skills and Problem-Solving: Effective communication, teamwork, and problem-solving skills
Confidence in Yourself: Confidence is a powerful asset. Believe in your abilities, and don't be afraid to take on challenging projects. The more you trust yourself, the more you'll be able to tackle complex coding tasks and overcome obstacles with determination.
#code#codeblr#css#html#javascript#java development company#python#studyblr#progblr#programming#comp sci#web design#web developers#web development#website design#webdev#website#tech#html css#learn to code
2K notes
·
View notes
Text


February 27, 2025 • Thursday
--- 30 days of productivity • COLLAB CHALLENGE WITH @studaxy • Day 20/30 ---
💛 Axy's study time: 0h
💙 Iris's study time: 4h
[Axy's sleep time was like 17h lol but in their defense they were sick and terribly sleep deprived]
Made some IT notes. I'm not drastically lagging behind on that subject anymore :)
🎧 On the Run — Glass Animals

#dailyfoxposts#collab challenge pt.3#studyblr#codeblr#studyspo#study#note taking#compblr#study motivation#30dop
210 notes
·
View notes
Text
You, hey you. You right there. Amateur developer. Your stuff sucks right now doesn't it? Can't get a single project off the ground because you are still learning and you make a lot of dumb mistakes? And since you naturally want to be a good programmer, you want to start over and do it again but better?
Don't do that.
Whatever you have to do, I am BEGGING you. Finish that first project.
I want you to make it SUCK. I want the code to be a disaster. I want it to have bugs. I want it to have scrapped features that you just couldn't figure out. If you make it simple enough, a project held together with chewed gum and prayers, while not being a good or even competent it will be a finished one.
Why?
Because if you keep improving, but keep starting over. The logical end point is that you will be a good programmer with no finished projects. It's going to take YEARS. And eventually you will struggle to find motivation, burn out hard, take a SEVERAL month long break. Revaluate your whole life. And come to the stunning, crushing, horrifying realization that all those youtubers and influences you have watched that have told you to "start really really small". Were right.
Unfortunately, you are a good enough programmer that starting small isn't fun anymore. And actually FINISHING your first project is going to feel like pulling out your own teeth. And it's going to suck. And you are going to hate it.
And then you are going to attempt to warn others to skip all the hardship, tell them to start small. Start bad. Don't make the same mistake.
And hopefully, HOPEFULLY they will listen and go down the better path.
227 notes
·
View notes
Text
hyperfixated on this game so hard i tried to recreate ac syndicate's animus database using html css and js👍
i will make this responsive though, i've only started doing the frontend but i'll also start doing the backend as soon as i finish this
basically this is gonna be a website that will allow you to create a database of your assassin's creed OCs (btw this was inspired by @gwen-the-assassin's idea <33) and help you with worldbuilding and making AUs (i know the ac fanon wiki already exists for that but i wanted to make the experience of keeping a database more immersive u know....)
this might take a while to be completed, but I'll try to post updates on it as much as possible! if there are any programmers/web developers in the ac fandom that want to contribute to this project plsplspls DM me!!
actual pic of the database for comparison:
ik it's not entirely accurate but this is the simplest database in the game that i could recreate lmao
also code snippets just cuz (+ me crashing out)
#u know what#i might just pass this for my database systems class#assassin's creed#assassin's creed syndicate#ac syndicate#animus#video games#gaming#programming#coding#codeblr#web development#ui ux design#html css#javascript
156 notes
·
View notes