Re: minify css

2016-12-13 Thread Christopher Stone
On Dec 13, 2016, at 16:48, Venmore mailto:venm...@gmail.com>> wrote: > Thanks Chris … Just what I'm after Hey Carl, Great – I hope it works well for you. After a little more research I found the Apple recommended location for user-installed-java-libraries: ~/Library/Java/Extensions/ So: ~/L

Re: minify css

2016-12-13 Thread Venmore
Thanks Chris Just what I'm after I'll give it a go Cheers Carl On Monday, 12 December 2016 22:25:44 UTC, Christopher Stone wrote: > > On Nov 25, 2016, at 16:48, Venmore > wrote: > > What is the best way to do this within BBEdit please? > > Can it be done on save/export whilst keeping original for

Re: minify css

2016-12-13 Thread Rick Yentzer
Christopher, I'm envious of your AppleScript and shell knowledge. You always have a solution for those on this board. Kudos! Rick On Monday, December 12, 2016 at 5:25:44 PM UTC-5, Christopher Stone wrote: > > On Nov 25, 2016, at 16:48, Venmore wrote: > > What is the best way to do this within B

Re: minify css

2016-12-12 Thread Christopher Stone
On Nov 25, 2016, at 16:48, Venmore mailto:venm...@gmail.com>> wrote: > What is the best way to do this within BBEdit please? > Can it be done on save/export whilst keeping original format for easy editing? Hey Carl, It looks like the yuicompressor java module is one of the more highly regarded

Re: minify css

2016-12-12 Thread Rick Yentzer
This is bad advice. Javascript is also just text, but the developer should always look for ways to improve site loading speed and performance. Minification of CSS and JS and even HTML is standard within the web development industry. On Friday, December 2, 2016 at 1:47:16 AM UTC-5, Lewis Butl

Re: minify css

2016-12-12 Thread Greg Raven
With your CSS file open and active: Markup -> Utilities -> Optimize. On Sunday, December 11, 2016 at 3:46:26 PM UTC-8, Venmore wrote: > > Google back in 2010 and since then numerous online authorities > > https://webmasters.googleblog.com/2010/04/using-site-speed-in-web-search-ranking.html > > I

Re: minify css

2016-12-11 Thread Venmore
Google back in 2010 and since then numerous online authorities https://webmasters.googleblog.com/2010/04/using-site-speed-in-web-search-ranking.html I recently did this across a 200 page website. Within a month we saw it's ranking position increase and thus user numbers. All I am looking for wa

Re: minify css

2016-12-11 Thread @lbutlr
On Dec 11, 2016, at 12:43 PM, Venmore wrote: > Text is small but you will get lower rankings on Google if your site files > are not optimised. According to whom? -- This is the BBEdit Talk public discussion group. If you have a feature request or would like to report a problem, please email "

Re: minify css

2016-12-11 Thread Venmore
Hi Lewis Text is small but you will get lower rankings on Google if your site files are not optimised. Carl On Friday, 2 December 2016 06:47:16 UTC, Lewis Butler wrote: > > On 11/25/16 3:48 PM, Venmore wrote: > > > What is the best way to do this within BBEdit please? > > Coming back to this,

Re: minify css

2016-12-02 Thread Greg Raven
The number of HTTP requests is a major factor when using HTTP 1.1. I hear this will cease to be a factor with HTTP 2.0. On Thursday, December 1, 2016 at 11:26:44 PM UTC-8, Steve Piercy wrote: > > On 12/1/16 at 11:47 PM, (unknown sender) pronounced: > > >On 11/25/16 3:48 PM, Venmore wrote: > >

Re: minify css

2016-12-01 Thread Steve Piercy
On 12/1/16 at 11:47 PM, (unknown sender) pronounced: On 11/25/16 3:48 PM, Venmore wrote: What is the best way to do this within BBEdit please? Coming back to this, Why? CSS is taxt, and text is small. A single small graphic on a page is probably more data than all the CSS, so you're not s

Re: minify css

2016-12-01 Thread
On 11/25/16 3:48 PM, Venmore wrote: What is the best way to do this within BBEdit please? Coming back to this, Why? CSS is taxt, and text is small. A single small graphic on a page is probably more data than all the CSS, so you're not saving anything by squishing it down to remove a few EOL

Re: minify css

2016-11-30 Thread Vlad Ghitulescu
On 26 Nov 2016, at 5:41, Greg Raven wrote: For auto optimizing, try Codekit or HammerForMac. +1 for CodeKit (https://codekitapp.com) And: http://www.htmlcompressor.com/compressor/ does both HTML (what CodeKit doesn't yet) and CSS. -- This is the BBEdit Talk public discussion group. If you

Re: minify css

2016-11-29 Thread Christopher Stone
On Nov 25, 2016, at 16:48, Venmore mailto:venm...@gmail.com>> wrote: > What is the best way to do this within BBEdit please? > Can it be done on save/export whilst keeping original format for easy editing? Hey Carl, With AppleScript and/or Shell-Text-Filters the sky is the limit. I don't write

Re: minify css

2016-11-27 Thread Greg Raven
Theoretically, it looks as though it should be possible to use BBEdit's "Attaching Scripts to Events" capability (page 294 in the manual) -- specifically, the documentDidOpen and documentWillSave attachment points -- in AppleScript Attachment Scripts to do automatic pre- and post-processing of

Re: minify css

2016-11-26 Thread Luis Speciale
Le 25/11/2016 à 23:48, Venmore a écrit : Hi What is the best way to do this within BBEdit please? Can it be done on save/export whilst keeping original format for easy editing? Any pointers gratefully received. I use pleeease http://pleeease.io/ Hope it helps -- This is the BBEdit Talk publi

Re: minify css

2016-11-26 Thread Greg Raven
One benefit of using Markup -> Utilities -> Optimize is that it preserves the comments in your CSS file. This of course means your CSS file will not be as small as it could be, but after you apply Markup -> CSS -> Format, they will still be there. With CodeKit, you would rename your CSS file to

Re: minify css

2016-11-26 Thread Venmore
Thanks Greg Will try out Cheers Carl On Saturday, 26 November 2016 04:41:20 UTC, Greg Raven wrote: > > Try Optimize. It's not perfect, but it's darned good, and you can CSS -> > Format your CSS anytime you need to edit it, and then just Optimize it > again before uploading. For auto optimizing,