This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var p1 = { | |
| x: 20, | |
| y: 20 | |
| }; | |
| var p2 = { | |
| x: 40, | |
| y: 40 | |
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| full_width = 80 | |
| columns = 12 | |
| gutter = 1 | |
| .container | |
| width unit(full_width, '%') | |
| margin auto | |
| overflow hidden | |
| div[class^="grid_"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Set cache dir | |
| proxy_cache_path /var/cache/nginx levels=1:2 | |
| keys_zone=microcache:5m max_size=1000m; | |
| # Virtualhost/server configuration | |
| server { | |
| listen 80; | |
| server_name yourhost.domain.com; | |
| # Define cached location (may not be whole site) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 | |
| # $Id: Portfile 71588 2010-09-17 05:21:24Z ryandesign@macports.org $ | |
| PortSystem 1.0 | |
| name php5 | |
| conflicts php5-devel php52 | |
| # Update revision of php5-eaccelerator when updating version of php5 | |
| epoch 1 | |
| version 5.3.8 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'mechanize' | |
| @username = 'user@domain.com' | |
| @password = 'hi2u' | |
| @download_path = File.expand_path 'downloads' | |
| @wget_cookie = File.expand_path(File.dirname(__FILE__)) + '/wget-cookies.txt' | |
| unless File.directory? @download_path | |
| puts "@{download_path} doesn't exist!" | |
| exit |
NewerOlder