How do I plan out my software development projects (talks about agile development)

  Рет қаралды 94,418

Web Dev Cody

Web Dev Cody

Күн бұрын

Пікірлер
@laszloekovacs
@laszloekovacs Жыл бұрын
I've on-off programmed as a hobby in the last 22 years and maybe managed to finish 2-3 projects. I wish there were more material on how to plan out projects.
@Tyrone-Ward
@Tyrone-Ward Жыл бұрын
I think the "just code it" method is good if you know what you're doing, but if you're just learning, the flowchart method seems to work best.
@cruz.aljon1990
@cruz.aljon1990 11 ай бұрын
I agree with this. And usually, you'll get used to it and you might be able to switch to just coding it.
@BarisPalabiyik
@BarisPalabiyik Жыл бұрын
Totally agree, I use user stories and ship the necessary steps as soon as possible. Move fast, break fast mindset is how many got ahead at the time.
@BarisPalabiyik
@BarisPalabiyik Жыл бұрын
Also when you use Prisma, the schema is pretty much a diagram on its own.
@DzintarsDev
@DzintarsDev Жыл бұрын
In most cases, you can just sit down and implement a feature. If you are working on a cat pic app. But... as soon as you go into realm of enterprise apps, like WMS, ERPs, etc... you just CAN'T sit down and implement. You really need to draw those ULMs to see all the entity interactions so that you don't create wrong behaving features. It all just depends on the context in which you are working. Imagine nuclear power plant which is operated by "just sit down and implement a feature" software... :) But it's also true that you need to get UI tested quickly on a real users. It might not change the underlying structure or logic,... so it is important to get UI ergonomic and you can test it just by shipping quickly. End users don't care much about the implementation. They care if the feature is easy to use. And... if you draw UMLs... get the right primitives, entities and what not... then later it's quite easy to just shift things around. But if you have no clear picture... and you "just implement" any feature with its business logic... I can guarantee... things will get messy. And imagine... your service is used by B2B customers... They will get mad at you! If those are just regular users and you messed up their cat pic gallery... who cares. You might loose some users, but... meh. But business customers are SUPER sensitive to any kind of mess up. Context matters!
@goodnewsjohn2482
@goodnewsjohn2482 11 ай бұрын
Yeah i guess... especially with languages like JAVA where you can't stress the need to actually have a visual of how high level components should interact. I guess the goal is not to avoid early pitfalls and clear ways for adaptability to change. I think uncle Ben in his books tried to make us understand. Well said. I am learning 😁
@rns10
@rns10 2 ай бұрын
Summary - agile mindset - do bear minimum - you dont know what you are building that would be useful for customer - early complex design will result in unexpected assumptions you made - excalidraw - flow diagram (may be do it) - fix mind on single feature and build it - sometimes you have to think about bigger picture - But dont go into deep "what if" swirl - you add unnecessary things on assumptions that you may or may not need - good readable code with unit, integration, end to end tests and consts on share location - documented, commented code - ship feature to get early customer feedback - and skip the huge effort on a feature(assuming customer will like it) that customers may not like
@armandoleon9901
@armandoleon9901 Жыл бұрын
Something I’ve recently learned is that a design you come up with is not the final one. Things change, requirements change, etc. for example, I learned about db migrations. I thought I had to have everything thought out for the db design, but thanks to db migrations, I can have the bare minimum or essentials in my design and use tooling to evolve its design as I build more features on the front and backend.
@yousafwazir3167
@yousafwazir3167 Жыл бұрын
I agree but the diagram way is taught heavily in degrees. In mine they don’t even care about the code and care more about the diagrams
@WebDevCody
@WebDevCody Жыл бұрын
diagrams are useful, but they easily go out of date after a month of real coding. They are good to help people align on solutions
@devmed
@devmed Жыл бұрын
For real , i started to hate doing diagrams 😂
@Ziko2687s8
@Ziko2687s8 8 ай бұрын
​@WebDevCody this is so true. Working on my own startup, having to update and maintain userflows and info architecture diagrams can be very time consuming. It definitely has its advantages in mapping out essential functionality though
@user-pe9qg3hg3k
@user-pe9qg3hg3k 5 ай бұрын
i find a diagram is definitely useful, because you can get something out there with it easier without succumbing to scope creep. I do agree also that they can become outdated, because the integration of the system may be easier if you include or don't include some things in the diagram
@igor9919
@igor9919 Жыл бұрын
Hey man, just seen a few videos of yours and just wanted to thank you for them, just loads of value and insights I haven't seen elsewhere, great work :)
@adeyojuibukunoluwa9717
@adeyojuibukunoluwa9717 Күн бұрын
As a Junior Dev trying to grow, I think it was really helpful .
@saliexplore3094
@saliexplore3094 Жыл бұрын
I think just code and iterate makes sense when adding features to a an existing software system. Doing "some" planning is important if it's a new system you're building.
@roddyib
@roddyib 8 ай бұрын
TBH, I think is base on your mindstructure, for me is really easy to creat big workflows and diagrams in a day. It's a good starting point to show what we will need. The mistake is more a mindset, to stick with the diagram, which is only a general guideline of what is needed. Building in isolated block based on what the user needs it's also a challenge and could be a deadend alley if the big picture is not clear. You can start building great walls and a beautiful door, buy you always need an idea of the project.
@DaveTheDeveloper
@DaveTheDeveloper Жыл бұрын
I totally aggree with your points. I recently caught myself overengineering in my project and now I always have to tell myself that if sth. is needed in the future, I'll implement it and don't need to care about it rn. Doesn't mean the features shouldn't be thought through! And a rough plan always helps - but that's it.
@chamsseddin4449
@chamsseddin4449 Жыл бұрын
Actionly, i love so much this type of content, Thanks bro
@--Arthur
@--Arthur Жыл бұрын
Being agile alone is worthwhile. I like the flow of 50% of work is producing it the other 50% goes to cleaning, documenting, testing. However if you work with others, you have to be able to communicating strategies, ideas, flows. And truth be told, if you only stick to an "agile" mindset, you won't practice the communicational part of a job. The good approach depends on your goals. For very small projects. Just smack some code. For medium or large projects - consider maintainability as a priority. Coding in the long run is 80% reading and 20% writing. (A scaffolding/prototype project is a small project on its own where testing the idea should come as quickly as you can reasonably manage)
@patricechaula3430
@patricechaula3430 8 ай бұрын
This works when you are adding small features. For adding bigger features I would rather go through the whole design first and prevent big changes in the future. You project is likely more to be accepted by the end users if it was planned well.
@markivkovic7235
@markivkovic7235 Жыл бұрын
Love this. I'm always second guessing my build layout / structures etc. Especially if it's full stack.
@bndissanayaka
@bndissanayaka 7 ай бұрын
As much as I appreciate the effort you ppl put into create these videos it is good if you can add a description something like TLDR; or separate the video into sections on timestamps so we can easily grab the overall idea of the content. Thank you 🙂
@anasouardini
@anasouardini Жыл бұрын
You get too small, there is no point of planning; you get too big and planning becomes like a small project. What you've explained is the middle ground, which is cool IMO.
@sul-dev
@sul-dev Жыл бұрын
This video is so good. Has so much good info.
@maxifeatures
@maxifeatures Жыл бұрын
AMAZING, MAN! You're fantastic
@brucewayne2480
@brucewayne2480 Жыл бұрын
For me it's event storming (it gives you all the queries and mutations) the wireframe it gives you a whole idea about the app and the design + the bpmn process
@cristhianjhlcom
@cristhianjhlcom 3 ай бұрын
What about make a small diagram for a small feature and keep adding more feature, so you can use the diagram as a type of documentations, i think diagrams are good as start point.
@noahwinslow3252
@noahwinslow3252 Жыл бұрын
I find the mocks annoying because I'm never the one making them, in my job I've had management make the mocks but management doesn't know how to code so it's like, do we build to your mock that you wasted three hours on or do we do mvp and iterate as needed?
@WebDevCody
@WebDevCody Жыл бұрын
when non technical people make mocks they often overlook UX, accessibility, and technical limitations. It's ok to have mocks but they should just be ways to describe ideas and not contracts for how exactly the UI should work. No one knows the best solution until you start implementing it.
@SeibertSwirl
@SeibertSwirl Жыл бұрын
Good job babe!!!!❤
@WebDevCody
@WebDevCody Жыл бұрын
thank you my beautiful wife!
@shivthedev
@shivthedev 3 ай бұрын
Recently I am stuck on a cross path on what to do in software engineering. I am not able to decide what kind of product or software needs to be build to make things better... So I am confused what to do here... Any suggestions / help?
@Sebastian-zs8cp
@Sebastian-zs8cp 4 ай бұрын
hi, what do you think about design thinking? Design thinking test really fast on user in one week or how long do you take time for research user needs.
@WebDevCody
@WebDevCody 4 ай бұрын
I’ve never heard of design thinking, but getting real user feedback all the time is key to a successful project
@leojohn6702
@leojohn6702 Жыл бұрын
Is it possible to create a video about this process in more detail please? I am actually this type which create a very large diagram every single time I create a project. For me, the problem of getting slowly futures to the specific project, is that sometime I forget which primary key will be in what table. It’s just an example.
@klapaucius515
@klapaucius515 Жыл бұрын
Thanks, great concept!
@mojojojo6525
@mojojojo6525 6 ай бұрын
Thats sounds so good
@judejeevanmahendran
@judejeevanmahendran Жыл бұрын
wow! I have been searching these kind of videos for long, Thank you for making this video! please make a video on "the process of developing a software" I mean, I want to see how the SDLC is executed and what problems might a developer face and everything. I wanted to see the whole process of making a software. from UI/UX design and everything, I don't know how to explain, I am just an amateur.
@WebDevCody
@WebDevCody Жыл бұрын
you could try watching my "what does my work week look like", I talk about the process a bit there
@nothing-tj9eh
@nothing-tj9eh 11 ай бұрын
ur absolutely right here in morocco teachers care more about those diagrams than the actual thing ur shipping , for me i hate making those diagrams cuz most of the time they turned out useless , like i just build my app according to those diagrams and most of the time i just find features that they are useless or i need to change something so i just need to draw new ones or just throw them out
@nothing-tj9eh
@nothing-tj9eh 11 ай бұрын
tho i think in large scale app you need those cuz there's lot of things to think about
@brokecoder
@brokecoder 8 ай бұрын
Thats why they become teachers not developers
@AlexanderHristov333
@AlexanderHristov333 Жыл бұрын
What do you recommend/think the best way to get good/learn css is?
@WebDevCody
@WebDevCody Жыл бұрын
Try to build things I’d say
@cas818028
@cas818028 Жыл бұрын
System design is not waterfall, please don't mislead your audience. In fact it's very common when interview for Sr/lead/architect roles. If more forethought was put into systems especially cloud systems we wouldn't have so much of the sh$t software we have today
@WebDevCody
@WebDevCody Жыл бұрын
Sure, I maybe didn’t explain my thoughts the best. The idea was to design the things needed for the individual user story. If your first user story is a user shall be able to register, you’d just need to design out the register page and the endpoints needed to achieve that user story. If you start designing out every single entity in your system and all the endpoints, you’re getting ahead of yourself. Design password reset when that user story is adopted into your sprint, etc. Sometimes you’ll get a story that involves designing a feature that needs parallel processing with an event queue and workers; design that system when that user story is in the sprint, not before.
@erickthamara5154
@erickthamara5154 7 ай бұрын
Thanks,i think this is good info
@Moneyblueprint1
@Moneyblueprint1 10 ай бұрын
Hey I don’t understand how am I meant to do this as a beginner
@Moneyblueprint1
@Moneyblueprint1 10 ай бұрын
I’m not sure what im doing
@pnuema1.618
@pnuema1.618 Жыл бұрын
So you're saying you don't use any structure?
@WebDevCody
@WebDevCody Жыл бұрын
I’m saying what I said in the video
@AsmrProj
@AsmrProj Жыл бұрын
Very helpful Thanks alot
@mzfitness5533
@mzfitness5533 Жыл бұрын
Love your content! Question, how do the code refactoring projects get picked? I recently finished a mern stack app with redux and I’m curious how to make it better and cleaner. Is there somewhere I can send it for consideration?
@WebDevCody
@WebDevCody Жыл бұрын
you could send on my discord but I have not done one of those in a while
@mzfitness5533
@mzfitness5533 Жыл бұрын
@@WebDevCody okay I’ll send! If you have time, would really appreciate. Learn a lot from your code refactoring vids
@devinetradable9669
@devinetradable9669 9 ай бұрын
This mindset of working on something small and then getting feedback from users is great and all, but what of a situation where you do not even have users yet and you are building something new?
@WebDevCody
@WebDevCody 9 ай бұрын
You should always find at least one user, a friend, yourself, etc. it really helps you understand if what you’re building is even useful
@abdulazeezshakrullah9630
@abdulazeezshakrullah9630 8 ай бұрын
hello, thank you for this video. it's really helpful being a junior developer. do you have a step by step video on how to build the build order manager from scratch
@thirstypooch
@thirstypooch 7 ай бұрын
thanks for this
@BradleyMubenga-w5y
@BradleyMubenga-w5y Жыл бұрын
Thank you so much for this. I saw charts online and when developing my app I just felt pressure to do an EML diagram but to be quite honest it is tiring on my brain so I would rather code the features get feadback and then improve.
@mukulnamagiri8160
@mukulnamagiri8160 7 ай бұрын
Well it works very well if it's just 2 or 3 people but if you have multiple people building things i think it would be hard I guess good plan goes a long way
@nikako1889
@nikako1889 Жыл бұрын
hey, do you ever use any other editor? like webstorm
@WebDevCody
@WebDevCody Жыл бұрын
Nope
@sul-dev
@sul-dev Жыл бұрын
In summary: iterate, get user feedback, iterate (repeat)
@palharez
@palharez Жыл бұрын
I just like to sit and describe some project features after that I just start to code and another features always arrive
@xXFlameSwordsmanXx
@xXFlameSwordsmanXx Жыл бұрын
Doing my university dissertation at the moment and seriously struggling through the diagram section. I know they're not going to help me! I just want to build, and learn from that.
@Harish-rz4gv
@Harish-rz4gv Жыл бұрын
Please upload beginner project tutorials
@MrMarkusbotha
@MrMarkusbotha 2 ай бұрын
two drones then hatchery... always
@WebDevCody
@WebDevCody 2 ай бұрын
let's go
@kamertonaudiophileplayer847
@kamertonaudiophileplayer847 Жыл бұрын
I never used UML, honestly, it's wasting of time.
@Mfbzai
@Mfbzai 10 ай бұрын
So, how do you start the code?
@kamertonaudiophileplayer847
@kamertonaudiophileplayer847 10 ай бұрын
@@Mfbzai Open a notepad.
@Mfbzai
@Mfbzai 10 ай бұрын
@@kamertonaudiophileplayer847 I mean, what the design tools you are using other than UML to start the code.
@tkdevlop
@tkdevlop Жыл бұрын
Agreed diagrams are for beta.
@SoloTheStaticHater2810
@SoloTheStaticHater2810 2 ай бұрын
Well-done on saying fucking nothing
@WebDevCody
@WebDevCody 2 ай бұрын
It’s a talent
@SoloTheStaticHater2810
@SoloTheStaticHater2810 2 ай бұрын
@@WebDevCody i can tell
@penguinxed
@penguinxed Жыл бұрын
thanks for sharing mate!
@1234Tubie
@1234Tubie 2 ай бұрын
Dude half way through and I still had no clue of what exactly you were rambling about 😂
@WebDevCody
@WebDevCody 2 ай бұрын
me neither
@khanra17
@khanra17 4 ай бұрын
Should have been a 2 min video !
@WebDevCody
@WebDevCody 4 ай бұрын
Should have been a yt short
What does larger scale software development look like?
24:15
Web Dev Cody
Рет қаралды 1,4 МЛН
Software Planning and Technical Documentation
10:49
AltexSoft
Рет қаралды 165 М.
Сестра обхитрила!
00:17
Victoria Portfolio
Рет қаралды 958 М.
Мен атып көрмегенмін ! | Qalam | 5 серия
25:41
Леон киллер и Оля Полякова 😹
00:42
Канал Смеха
Рет қаралды 4,7 МЛН
Real 10x Programmers Are SLOW To Write Code
14:51
Thriving Technologist
Рет қаралды 68 М.
It’s time to move on from Agile Software Development (It's not working)
11:07
95. How Do I Plan Out A Project? Waterfall? Agile?
14:41
IAmTimCorey
Рет қаралды 12 М.
What is the "best way" to develop software applications?
18:37
Web Dev Cody
Рет қаралды 290 М.
How Senior Programmers ACTUALLY Write Code
13:37
Thriving Technologist
Рет қаралды 1,6 МЛН
What does my typical work week as a web dev like
26:43
Web Dev Cody
Рет қаралды 176 М.
How I Plan My Coding Projects
7:39
Jacob Sucks At Code
Рет қаралды 28 М.
Scrum in 20 mins... (with examples)
19:36
Codex Community
Рет қаралды 379 М.
Refactoring a React component - Design Patterns
15:19
Cosden Solutions
Рет қаралды 100 М.
No-Nonsense Backend Engineering Roadmap
10:16
Codebagel
Рет қаралды 252 М.