Hacker News new | past | comments | ask | show | jobs | submit login
Csscss: a CSS redundancy analyzer that analyzes redundancy (zmoazeni.github.io)
299 points by zmoazeni on April 10, 2013 | hide | past | favorite | 43 comments



This could be an interesting companion to Helium. Helium-css can be used on live sites to find unused CSS. Combine with this project to remove duplicates too. https://github.com/geuis/helium-css


This may be the single most helpful comment I've found on Hacker News. I've been looking for a tool like Helium for a while. Thank you!


I'll echo the sibling commenter. We're in the process of rolling out a new site layout at $work and I suspect there is a LOT of leftover CSS rules which I can get rid of. Thanks very much for the link!


Personally I used Chrome dev tools - and it has a feature called 'CSS Selector Profiles' under the 'profile' tab.

You can 'record' yourself using a website - and Chrome records how many 'hits' each css rule gets.

This is better than Dust-me, and all the other CSS rule detectors - because it allows you to use your site in a 'dynamic' way - and test for all the edge CSS cases (like resizing your browser to small, or enabling an error message etc).

After using my SaaS for an hour - I found hundreds of rules that just never got used.

Also - it tells you how many times a rule got used. So I found a few number of rules that literally only got used once, and I could often re-write them into 1-2 bigger rules - further reducing my CSS overhead.


That sounded really cool. So I opened up chrome, navigated to YouTube, opened the dev-tools, turned on CSS Selector Profiles, and chrome immediately crashed.

:( awwwww.


From the makers of the phenomenal Chosen jquery plugin.

http://harvesthq.github.io/chosen/

Hopefully this is indicative of the quality of this library! I'll definitely try it out this morning.


I prefer Select2 over Chosen

http://ivaynberg.github.io/select2/


The problem with Select2 is that users are now _required_ to have js on to just use a silly dropdown. Chosen actually degrades gracefully.


Yeah, and they lie in their first example. The "example code" is nothing like their real demo code. If it was, you'd be able to use their select boxes if you had JS disabled...


which you need in a lot of cases for search engine crawlability.


I'm using Select2 on my site http://gitignore.io/ and it's been awesome so far.


Just a side note, it took me a few tries to hit "OSX." My first two tries were "OS X" and "Mac OS X", before I noticed something was coming up and disappearing when I typed the "OS X"


That's neat, but howcome something like Django doesn't "inherit" from the Python preset?


Why? I haven't used either yet so it'd be interesting to hear your reasoning.


IE7 support, better AJAX support and a ton more options.


Also, Chosen only works with the <option> tags, which can be quite annoying. And to me, the Select2 community seems a lot more active and able to participate in the project.


It's rare that I feel any particular emotion towards project names, but the name and description behind this one is inspired.


Except that by using redundancy in the name and description, they give the impression that their redundancy-removal skills are lacking.

Maybe the project should be named "cs"? :)


The author also haves one of the best bios in twitter:

> I connect stuff and copy bits. Sometimes it doesn't work


If you're a ruby developer I strongly encourage you to check out the source code and parsing in general. This is heavily using parslet [1] to build a css parser [2]. I'm sure there are edge cases I have missed, but still the LOC for this codebase is relatively small and fairly readable.

Stay away from the RedundancyAnalyzer though. There be dragons.

[1] http://kschiess.github.io/parslet/

[2] https://github.com/zmoazeni/csscss/tree/ae2f22f4416bca35f903...


CSSO [1] is a tool that removes duplicate declarations during minification instead of just warning about them. It also performs more advanced structural optimizations.

[1] http://bem.info/tools/csso/


I think the purpose of this package is more about making existing source code easier to maintain (applying DRY principals to CSS) than about browser-oriented optimization (thus purpose of CSSO.)


You could keep the csscss'ed source in version control (easy to maintain), and use csso as an automated step before deploying.


css-ratiocinator [1] is also another tool someone mentioned to me after I launched cssscss.

[1] https://github.com/begriffs/css-ratiocinator and http://www.csstrashman.com/


And rework [1] allows you to change url()'s, inline images, change vendor prefixes and more...

[1] https://github.com/visionmedia/rework


Is there something that can do all of this and remove the unused css after clicking through the site with a browser?


I love the name and tag line.


Here is something I came across at PyCon. This technique uses genetic algorithm to minimize the CSS. The author claims 10% improvement over the standard CSS minimizer.

Links:

- https://us.pycon.org/2013/schedule/presentation/178/

- https://github.com/ryansb/genetic-css


This. This makes me smile. For the name, tagline and the application.


I bookmarked this for sure! I'm the WORST at having tons of duplicate declarations!


It seems like when run on SCSS mode, it expands mixins before running the redundancy check. For instance, two of my selectors both include three of the same mixins, which end up expanding into 23 rules, and CSSCSS reports 25 shared rules between them. (Further inspection confirms that exactly 2 normal rules are shared.)

I would think that using mixins should also count as having eliminated redundancy. A simple solution would be to ignore them, or more ideally the redundancy check could treat mixins just as a normal rule, so that it could detect using the same set of mixins in multiple places as redundancy.


This has come up a couple times. I wouldn't mind this topic moving it to github so the conversation doesn't get lost. And others can contribute to it long after this gets buried on HN.

My initial opinion is that even though your SCSS code is consolidated, the resulting CSS code is still duplicated all over the place. To me, that is a code smell. Particularly when I need to debug from the web developer tools.



Great!

But, one issue. It appears to not support @import of Compass extensions: "File to import not found or unreadable."


I'm upvoting this is for the cleverly redundant title that repeats itself and causes me to vote it up.


We really need this, our css has grown in to a monster over the years.

This may also be of interest:

Dust-Me Selectors is a firefox extension that scans HTML pages to find unused CSS selectors. http://www.brothercake.com/dustmeselectors/


Brilliant, I was just searching for a tool for this.


Noob question: how do I know the selectors and inheritance rules are applied in the same way as the target platform?


Should have run an analyser against the sub heading for that article.


Your post was successfully analyzed as redundant.


#mcbain.mcbain:after { content: ' That's the joke.' }


Any support for scss/sass planned?


Not only planned, but implemented and noted in the readme!




Join us for AI Startup School this June 16-17 in San Francisco!

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: