Skip to content

Instantly share code, notes, and snippets.

View noctrnal's full-sized avatar

Jimmy Pearson noctrnal

  • nixle
  • San Francisco, CA
View GitHub Profile
@noctrnal
noctrnal / gist:69bf1ee313663734594c
Created November 18, 2015 20:22
scp - file uploads over ssh
scp /home/rob/pictures/donuts/half-eaten.jpg rob@server3:/home/mywebsite.com/public_html/images/
@noctrnal
noctrnal / gist:e0d1a6834c5f967743fe
Created November 11, 2015 17:49
ZF2 tableGateway order
use Zend\Db\Sql\Select;
$resultSet = $this->tableGateway->select(function (Select $select) {
$select->order('name ASC');
});
return $resultSet;
@noctrnal
noctrnal / gist:cec944573a067493d5b1
Created April 22, 2015 11:32
simple "down for maintenance" html
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Site Maintenance</title>
<style>
body { text-align: center; padding: 150px; }
h1 { font-size: 50px; }
body { font: 20px Helvetica, sans-serif; color: #333; }
article { display: block; text-align: left; width: 650px; margin: 0 auto; }