Live data from Hacker News

Review my weekend project: Webapp to add CSS to any website and share the result

csspivot.com

1–10 of 98 posts

Re: Review my weekend project: Webapp to add CSS to any website and share the result

#4

This 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

Re: Review my weekend project: Webapp to add CSS to any website and share the result

#5
I 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...?

Re: Review my weekend project: Webapp to add CSS to any website and share the result

#6

This 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

For sure! I'll try using it when I have the chance and let you know what I think.

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

#7
Well 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

Re: Review my weekend project: Webapp to add CSS to any website and share the result

#8
post #5

I 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...?

Might be a moot point for this app, since it only _appends_ arbitrary CSS and doesn't modify the existing.

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

#10

Well 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

Thanks for the feedback!

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)

Post reply on HN