Skip to content

Instantly share code, notes, and snippets.

View beratdogan's full-sized avatar

Berat Doğan beratdogan

View GitHub Profile
@oodavid
oodavid / README.md
Last active March 11, 2025 21:41 — forked from aronwoost/README.md
Deploy your site with git

Deploy your site with git

This gist assumes:

  • you have a local git repo
  • with an online remote repository (github / bitbucket etc)
  • and a cloud server (Rackspace cloud / Amazon EC2 etc)
    • your (PHP) scripts are served from /var/www/html/
    • your webpages are executed by apache
  • apache's home directory is /var/www/
@gabrielgrant
gabrielgrant / testapp.py
Created February 9, 2012 01:43
Simple wsgi streaming response
pip install gunicorn
gunicorn testapp:app
@tsabat
tsabat / zsh.md
Last active October 16, 2024 14:43
Getting oh-my-zsh to work in Ubuntu
@jaytaph
jaytaph / example001.php
Created December 4, 2011 17:16
Examples for the iteratorAggregate blog
<?php
/*
* Example 1: Using iteratorAggregate
*/
// Simple class that represents our chapter
class Chapter {
protected $_title;
protected $_content;