Earlier quoted context omitted.
Yes and at the same time all devs should learn assembly so they have a better idea what's going on with their program.
My advice is to always understand the layer below what you're working with. Learning assembly is worthwhile if you're programming in C. Learning CSS is worthwhile if you're designing websites using Bootstrap. Perhaps even more importantly though, CSS, JavaScript, and HTML have a longevity that's tremendously longer than any given framework. My understanding of these technologies from 15 years ago remains relevant tod…
Ask HN: Should I learn Bootstrap 3 or 4 at this moment?
91–100 of 112 posts
Re: Ask HN: Should I learn Bootstrap 3 or 4 at this moment?
#92Earlier quoted context omitted.
Is it just me? I don't recite the built-in functions (intentionally) before I code. I will look into doc when I want to find a shortcut. It's very efficiently. Take Bootstrap as an example, I open the following doc: http://v4-alpha.getbootstrap.com/components/alerts/ If I want a Modal, I will check Modal doc (accurately, I jump to CODE PATTERN and copy it, not starting to read doc explanation.) and use it. After few…
I don't know if it's just you, but if I had to do that I would take about 10 times a long as I take right now to build something. It's much easier to memorize them in my opinion.
As a backend dev moving from python to ruby, I've been thinking of explicitly sitting down and learning-by-rote a lot of the standard library just so that I could move faster and feel less scattered. Do you make flashcards?
Re: Ask HN: Should I learn Bootstrap 3 or 4 at this moment?
#93Learning Bootstrap 3 or 4 should take you very little time, I would suggest you don't learn either of them, but instead take the time to learn CSS (I am of course assuming you are not already a CSS wiz). You can look at the source of Bootstrap to see how they accomplished certain things if you'd like, but if you're doing anything more than prototyping (and even then), I feel there is very little benefit to using Boot…
> A: Learn CSS
This is not helpful and does not answer the question.
Re: Ask HN: Should I learn Bootstrap 3 or 4 at this moment?
#94Re: Ask HN: Should I learn Bootstrap 3 or 4 at this moment?
#95Earlier quoted context omitted.
Yes and at the same time all devs should learn assembly so they have a better idea what's going on with their program.
My advice is to always understand the layer below what you're working with. Learning assembly is worthwhile if you're programming in C. Learning CSS is worthwhile if you're designing websites using Bootstrap. Perhaps even more importantly though, CSS, JavaScript, and HTML have a longevity that's tremendously longer than any given framework. My understanding of these technologies from 15 years ago remains relevant tod…
Re: Ask HN: Should I learn Bootstrap 3 or 4 at this moment?
#96Bootstrap 4 with Flexbox! Because thats the future :) I'm using it on a production site; https://www.maplenest.com and its fairly stable.
Re: Ask HN: Should I learn Bootstrap 3 or 4 at this moment?
#97Re: Ask HN: Should I learn Bootstrap 3 or 4 at this moment?
#98This is doubly true if you don't know CSS in the first place.
Re: Ask HN: Should I learn Bootstrap 3 or 4 at this moment?
#99Learning Bootstrap 3 or 4 should take you very little time, I would suggest you don't learn either of them, but instead take the time to learn CSS (I am of course assuming you are not already a CSS wiz). You can look at the source of Bootstrap to see how they accomplished certain things if you'd like, but if you're doing anything more than prototyping (and even then), I feel there is very little benefit to using Boot…
Yes, you should learn CSS. Whether or not you should roll your own bespoke CSS/JS for interface components depends on the project. You will learn a lot more about CSS if you do it yourself. However, I encourage most folks to just use Bootstrap (or Foundation). They're not hard to learn, handle a lot of browser issues for you, are easily customizable, and are very well documented. If someone ever tells you that Bootst…
Re: Ask HN: Should I learn Bootstrap 3 or 4 at this moment?
#100Learning Bootstrap 3 or 4 should take you very little time, I would suggest you don't learn either of them, but instead take the time to learn CSS (I am of course assuming you are not already a CSS wiz). You can look at the source of Bootstrap to see how they accomplished certain things if you'd like, but if you're doing anything more than prototyping (and even then), I feel there is very little benefit to using Boot…
As a backend dev, I wish somebody had told me this exact advice earlier on in my career. CSS does have a fair amount of silly legacy shit, but it's really not all that bad once you dive in. Another good project's source code to learn from is Skeleton. (more simple than bootstrap) CSS version: https://github.com/dhg/Skeleton Sass version: https://github.com/WhatsNewSaes/Skeleton-Sass Edit: For more of a tutorial appro…