Review my weekend project: Webapp to add CSS to any website and share the result
1–10 of 98 posts
Re: Review my weekend project: Webapp to add CSS to any website and share the result
#2Re: Review my weekend project: Webapp to add CSS to any website and share the result
#3Here's the obligatory HN link: http://www.csspivot.com/CH7HJ (just a green background)
Re: Review my weekend project: Webapp to add CSS to any website and share the result
#4This is awesome! This will save me a lot of time in communicating small CSS changes across a team. Thanks a ton for building this!
Re: Review my weekend project: Webapp to add CSS to any website and share the result
#5Re: Review my weekend project: Webapp to add CSS to any website and share the result
#6This is awesome! This will save me a lot of time in communicating small CSS changes across a team. Thanks a ton for building this!
I'm happy it will be useful to you -- I was wondering if it would! Drop me a line if you have any feedback and ideas: chris (at) metachris.org
Lightning Edit: and a friend IMs me with questions about CSS. I'm going in.
Re: Review my weekend project: Webapp to add CSS to any website and share the result
#7Super minor nits:
Missing characters https://skitch.com/rocktronica/rs5nx/csspivot1
External scripts/CSS brought in with "//" falsely prepended with URL https://skitch.com/rocktronica/rs5nk/csspivot2
Re: Review my weekend project: Webapp to add CSS to any website and share the result
#8I have totally hypothetical (but related) question, though: to what extent does a site's CSS need to be changed, for that CSS to be one's own? I'm just not sure to what legal limits people can use your site to save CSS code from other websites that aren't their own? Again, I have no expertise in this particular question, but maybe you want to include a small disclaimer...?
That's a good question, though. I bet the WordPress GPL decision might have some relevance to it.
Re: Review my weekend project: Webapp to add CSS to any website and share the result
#9It will make my part-time hobby of sending people completely unsolicited design suggestions even easier :)
Re: Review my weekend project: Webapp to add CSS to any website and share the result
#10Well done! I'd be ears to a writeup on how you did it: tech considerations, Ajax, etc. Super minor nits: Missing characters https://skitch.com/rocktronica/rs5nx/csspivot1 External scripts/CSS brought in with "//" falsely prepended with URL https://skitch.com/rocktronica/rs5nk/csspivot2
The missing characters are because the of unicode decoding in Python. If the content-encoding if not found in the html headers it will replace all unknown characters. I'm working on improving that.
The // is something I can fix right now.
[edit] the // link bug is fixed, and it also allows https:// links (which i noticed that it didn't work because i pasted in your urls)