Divshot
101–110 of 113 posts
Re: Divshot
#102Interesting that the tagline is Interface Builder for web sites. One of the big powers of IB is that it ties back into your code so directly. This seems somewhat separated from whatever underlying code I'm creating. I think the killer app is really an IB-for-the-web that plugs into Rails/Django/Symphony/etc so you can start building a web app visually, without sacrificing code quality.
Re: Divshot
#103Re: Divshot
#104Re: Divshot
#105Interesting that the tagline is Interface Builder for web sites. One of the big powers of IB is that it ties back into your code so directly. This seems somewhat separated from whatever underlying code I'm creating. I think the killer app is really an IB-for-the-web that plugs into Rails/Django/Symphony/etc so you can start building a web app visually, without sacrificing code quality.
Re: Divshot
#106Re: Divshot
#107Re: Divshot
#108Why is there such a strong focus on "responsive" CSS? It has never made much sense to me, because my desktop will never turn into a tablet, and my tablet will never turn into a smartphone. It seems as though creating a better server-side abstraction that lets me produce different markup that shares much, but not all, of the CSS would be more effective from a development time perspective. If you use responsive CSS, wh…
One issue with server side solutions in general is caching becomes really hard or ineffective. With the client side solutions, like responsive CSS, you're serving one cached, distributed, minified set of data to every client.
Also only sending the needed CSS for mobile browsers makes it that much faster.
Re: Divshot
#109Re: Divshot
#110Earlier quoted context omitted.
Bootstrap creator here. * .navbar is for positioning/sizing. * .navbar-inner is required for the gradient because `overflow: visible;` is not respected by IE when `filter` is present. * .container is for centering the content within the navbar No idea what .navbar-content is—that's not part of the Bootstrap navbar component. We also use a `ul.nav`, not `div.nav`. So, close to the core, but not 100%.
Hey Mark, you're right on every count. The div.nav is a mistake that I thought I had fixed already, as for the rest let's just say it'll be fixed post-haste. Obviously we're HUGE fans of Bootstrap over at Divshot :)
I should have also said I think Divshot is pretty cool, even if I didn't like how many nested divs I saw.