Live data from Hacker News

Bootstrap 3.1 released

github.com

91–100 of 138 posts

Re: Bootstrap 3.1 released

#91
post #6

Earlier quoted context omitted.

Defining all 4 screen sizes gets tedious. That aside, The new landing page on http://getbootstrap.com/ looks great

Great? Looks bland. Anyone else have a weird box sitting under the download button? http://i.imgur.com/U5OyI7g.png

Try it without having add-ins that modify DOM...

Re: Bootstrap 3.1 released

#92
The release notes on the Bootstrap Blog are better: http://blog.getbootstrap.com/2014/01/30/bootstrap-3-1-0-rele.... That page gives an overview of the biggest changes, with screenshots, before listing every change individually. It also mentions a change missing from GitHub changelog: the release of an official Sass port (https://github.com/twbs/bootstrap-sass).

Re: Bootstrap 3.1 released

#93

I absolutely adore Bootstrap (and v3 was a big upgrade). As a primarily backend developer with mediocre at best front end knowledge (and terrible design sense) it is an absolute joy to work with. EDIT: Also reading the blog post they moved license to MIT, this makes me a happy bunny as well.

I've been using Bootstrap 3 for about three months, and to this kernel hacker new to PHP and web development (for internal apps), it's great. I can do UI that isn't a total train-wreck; what I come up with ain't perfect, but it gets the message across.

Re: Bootstrap 3.1 released

#94

Question: If you were developing a large, content-driven site, would you bother with Bootstrap? Bootstrap seemed a bit like overkill when I had to use it in my old job. The CSS and markup seemed excessive, and the strict JS was kind of a pain to deal with. I know I can get something that looks half-decent up and running quickly with it, but if I'm not planning to take any visual design from it, is there much of an ad…

If you want to avoid polluting the HTML too much, you could always use the mixins/classes from the LESS or SASS files (https://github.com/twbs/bootstrap-sass for SASS).

Even as a frontend developer who knows CSS pretty well, I like using Bootstrap. It lets me focus on more important things.

For my workplace, the UI team will use a bit from Bootstrap, more if we're under time pressure to finish a project. They rather do stuff from scratch most of the time, but they're coming around on the ability to use mixins & slim down the CSS using the LESS.

Re: Bootstrap 3.1 released

#95
post #21
post #14

In the documentation pages they have inexplicably moved the navigation links to the right side.

We'll see how it goes—if enough folks complain, we can revisit :). I wanted the content to be in the absolute forefront with this update. That meant not affixing the top navbar and downplaying the side nav. I think it's super helpful, but again, I'm open to reversing things again if it'd be better for more folks.

I prefer the fixed topnav. scrolling all the way up to go between pages sucks. (alternately, a scroll to top link)

Re: Bootstrap 3.1 released

#96
post #38

Earlier quoted context omitted.

In the examples here, under custom components: http://getbootstrap.com/getting-started/#examples

Am I missing something, or do they minify the example code? Why do they do that? Is there an easier to copy/edit version somewhere?

I think Bootsrap is minified, but the HTML and custom CSS for each example is available.

Re: Bootstrap 3.1 released

#98

Question: If you were developing a large, content-driven site, would you bother with Bootstrap? Bootstrap seemed a bit like overkill when I had to use it in my old job. The CSS and markup seemed excessive, and the strict JS was kind of a pain to deal with. I know I can get something that looks half-decent up and running quickly with it, but if I'm not planning to take any visual design from it, is there much of an ad…

Bootstrap 3 is much nicer to use than previous versions, if that's what you were using in the past. Each element is more of a barebones styling to it, which makes it easier to get what you want out of them (such as buttons). I spent a lot of time in previous versions of bootstrap just stripping out text-shadows, border-radius, gradients, and more just to get it back to a basic component. The grid in the Boostrap 3 is…

Great point. Instant familiarity for other developers is definitely a big plus when using a well-known framework such as Bootstrap. No matter how well you structure your site and name your classes, there is always an added learning curve when working with a completely custom codebase.

Re: Bootstrap 3.1 released

#99
post #4

Pushed to CDN too http://www.jsdelivr.com/#!bootstrap

Curious what people's thoughts on using a CDN for these sorts of things (Bootstrap, JQuery etc) versus deploying it on their own sites. It's an extra DNS query - but thoughts on overall impact on performance?

For public facing web site/blogs, everyone using the same CDN might make your page load faster because there's a good chance a visitor to your site already loaded it from a CDN. So initially I was all for using NetDNA's CDN (they maintain all versions, both css and js).

However, over time I revised my opinion. During development, it's usually nicer to have all your static files associated with the project in your project directory. There might also be a situation where you're developing offline (or crappy hotel wifi) and a failed GET just messes up your whole rhythm.

Additionally, a lot of my work is internal projects. If I'm throwing together a quick web application, or even just a static site, I use bootstrap's grid, table classes, and icon packs to make that project look nicer. But I felt that for a secure application that can only be reached while on our VPN, it didn't make sense to refer the browser to a piece of javascript running out on the internet. Even if no malicious tracking code is injected into the js, I don't need to give this third party server details like 'REFERRER=https://passwordvault.corp.example.com/?q=jsmith'.

Re: Bootstrap 3.1 released

#100
Bootstrap raised the lowest common denominator from a 2 to about 35. You can still put together a horrid UI with bad spacing and mismatched fonts, but you have to go out of your way to get UI quality below 20.

If you have the skills to write 90+ UIs from scratch, you probably get little out of bootstrap, unless you're rapidly prototyping and need a 65% UI in four hours.

It's a great tool that improved both the minimum level of the web and the efficiency with which good UIs can be built.

If you don't need it, that's great, you're a highly skilled specialist. But it is still an extremely valuable tool for large swaths of the web.

Post reply on HN