Skip to content

Instantly share code, notes, and snippets.

View digicase's full-sized avatar

Arthur Case digicase

  • Studio Automatique
View GitHub Profile
@digicase
digicase / gist:1862423
Created February 19, 2012 07:17 — forked from srobbin/gist:1713018
Use noscript, jQuery and server side scripting to generate various image sizes for responsive sites.
<noscript><img src="Koala.jpg" alt="A koala" /></noscript>
<script>
$('noscript').each(function(){
var $self = $(this)
, $img = $( $self.text() )
, src = $img.attr("src") + ( screen.width < 500 ? "?width=420" : "" );
$self.replaceWith( $img.attr("src", src) );
});
-----BEGIN WEBFACTION INSTALL SCRIPT-----
#!/bin/env python2.4
"""
Nginx 1.2.3 Installer New
"autostart": not applicable
"extra info": Enter domain name for the nginx app
"""
======================================================
Setting up Django using Apache/mod_wsgi on Ubuntu 8.10
======================================================
This article will cover setting up Django using Apache/mod_wsgi on Ubuntu
8.10. The article is targeted at a production environment, but keep in mind
this is a more generalized environment. You may have different requirements,
but this article should at least provide the stepping stones.
The article will use distribution packages where nesscary. As of 8.10 the