MD5: 59bab8f71f8c096cd3f72cd73851515d
Rename it to: Sublime Text
Make it executable with: chmod u+x Sublime\ Text
| server { | |
| server_name sub.domain; | |
| access_log /usr/share/nginx/html/sub.domain/access.log; | |
| error_log /usr/share/nginx/html/sub.domain/error.log; | |
| root /usr/share/nginx/html/sub.domain; | |
| location / { | |
| root /usr/share/nginx/html/sub.domain; | |
| index index.php index.htm index.html; | |
| } |
| @@ -590,7 +590,7 @@ class SpritesTest < Test::Unit::TestCase | |
| it "should generate a sprite from nested folders" do | |
| css = render <<-SCSS | |
| - @import "nested/*.png"; | |
| + @import "nested/**/*.png"; | |
| @include all-nested-sprites; | |
| SCSS | |
| assert_correct css, <<-CSS |
| ├── _includes | |
| │ ├── after_footer.html | |
| │ ├── archive_post.html | |
| │ ├── article.html | |
| │ ├── asides | |
| │ │ ├── delicious.html | |
| │ │ ├── github.html | |
| │ │ ├── googleplus.html | |
| │ │ ├── pinboard.html | |
| │ │ ├── recent_posts.html |
| apt-get install python-software-properties | |
| apt-add-repository ppa:chris-lea/node.js | |
| apt-get update | |
| apt-get install nodejs | |
| apt-get install npm |
| {% capture description %}{% if page.description %}{{ page.description }}{% else %}{{ content | raw_content }}{% endif %}{% endcapture %} | |
| <meta name="description" content="{{ description | strip_html | condense_spaces | truncate:150 }}"> | |
| {% if page.keywords %}<meta name="keywords" content="{{ page.keywords }}">{% endif %} |
| {% capture description %}{% if page.description %}{{ page.description }}{% elsif site.description %}{{ site.description }}{% else %}{{ content | raw_content }}{% endif %}{% endcapture %} | |
| <meta name="description" content="{{ description | strip_html | condense_spaces | truncate:150 }}" /> | |
| {% capture keywords %}{% if page.keywords %}{{ page.keywords }}{% elsif site.keywords %}{{ site.keywords }}{% endif %}{% endcapture %} | |
| <meta name="keywords" content="{{ keywords | strip_html | condense_spaces }}" /> |
| {% capture description %}{% if page.description %}{{ page.description }}{% elsif site.description %}{{ site.description }}{%else%}{{ content | raw_content }}{% endif %}{% endcapture %} | |
| <meta name="description" content="{{ description | strip_html | condense_spaces | truncate:150 }}"> | |
| {% if page.keywords %}<meta name="keywords" content="{{ page.keywords }}">{%else%}<meta name="keywords" content="{{ site.keywords }}">{% endif %} |
| # You may add here your | |
| # server { | |
| # ... | |
| # } | |
| # statements for each of your virtual hosts to this file | |
| ## | |
| # You should look at the following URL's in order to grasp a solid understanding | |
| # of Nginx configuration files in order to fully unleash the power of Nginx. | |
| # http://wiki.nginx.org/Pitfalls |
| #!/bin/bash | |
| # centminmod.com cli installer | |
| ####################################################### | |
| DOWNLOAD='centmin-v1.2.3-eva2000.07.zip' | |
| INSTALLDIR='/usr/local/src' | |
| # SCRIPT_DIR=$(readlink -f $(dirname ${BASH_SOURCE[0]})) | |
| ####################################################### | |
| # |