Skip to content

Instantly share code, notes, and snippets.

@zircote
zircote / memcached_cache_config_example.xml
Created October 24, 2010 18:14
How to enable Memcached caching with eve-lib
<?xml version="1.0" encoding="UTF-8"?>
<config>
<Api>
<userID>000000</userID>
<apiKey>7E87B3A4DC214E08A35B8722C844AC40CD872423692A4E85982D45F640EC5A3F</apiKey>
<characterID>000000000</characterID>
</Api>
<Scope>corp</Scope>
<Cache>
<backend>
string cUrl = "https://{CVAccountName}.cloudvox.com/api/v1/applications/{CVAppID}/sms";
HttpWebRequest webClient = (HttpWebRequest) WebRequest.Create(cUrl);
// *** Send any POST data
string postData = "to={to}&from={CVPhoneNumber}&message={message}";
webClient.Method="POST";
byte [] postBuffer = System.Text.Encoding.GetEncoding(1252).GetBytes(postData);
webClient.ContentLength = postBuffer.Length;
<?xml version='1.0' encoding='UTF-8'?>
<eveapi version="2">
<currentTime>2011-01-22 13:24:07</currentTime>
<result>
<rowset name="notifications" key="notificationID" columns="notificationID">
<row notificationID="331337318"><![CDATA[applicationText: ''
charID: 334795251
corpID: 503239300
]]></row>
</rowset>
@zircote
zircote / phpcs.xml
Created May 10, 2011 18:24
a PHP_CodeSniffer ruleset for Zend Code Standards
<?xml version="1.0"?>
<ruleset name="Zend Standard">
<description>A custom coding standard</description>
<exclude-pattern>*/tests/*</exclude-pattern>
<exclude-pattern>*/data/*</exclude-pattern>
<exclude-pattern>*/.svn/*</exclude-pattern>
<exclude-pattern>*.js</exclude-pattern>
<exclude-pattern>*.css</exclude-pattern>
<rule ref="Zend" />
</ruleset>
@zircote
zircote / phpcs-install.sh
Created May 10, 2011 18:31
install PHP_CodeSniffer
sudo pear upgrade pear
sudo pear –all-deps install PHP_CodeSniffer
@zircote
zircote / reports.txt
Created May 10, 2011 18:39
phpcs report types
phpcs --standard=tests/build/phpcs.xml --report=summary .
PHP CODE SNIFFER REPORT SUMMARY
--------------------------------------------------------------------------------
FILE ERRORS WARNINGS
--------------------------------------------------------------------------------
/usr/local/zend/apache2/htdocs/project/application/Bootstrap.php 1 4
...2/htdocs/Project/application/controllers/ActivityController.php 3 1
...
@zircote
zircote / redis-status.php
Created May 12, 2011 21:21
Redis status
#!/usr/bin/env php
<?php
/**
*
* Result string for parsing
* @var string
*/
$string = null;
/**
*
@zircote
zircote / meteor-status.php
Created May 12, 2011 21:23
Meteor Status
#!/usr/bin/env php
<?php
/**
*
* Result string for parsing
* @var string
*/
$string = null;
/**
*
@zircote
zircote / build-dirs.sh
Created May 13, 2011 14:01
A project is born...
# If you use Zend Studio or Eclipse PDT create a new
# `PHP Project` named ZfBugs in your workspace
# workspace could easily be in /usr/local/zend/apache2/htdocs
# if you utilize Zend Server the location is up to you
cd ~/${Workspace}
zf create project ZendDb
# create the build structure, build.xml and build container
touch ZendDb/build.xml
# edit the build.xml
mkdir ZendDb/build
@zircote
zircote / Bootstrap.php
Created May 15, 2011 05:44
Creating a Zend Framework Project [2/2]
<?php
/**
*
* The Application Bootstrap
* @author zircote
* @package ZendDb
*
*/
class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
{