Skip to content

Instantly share code, notes, and snippets.

@naiquevin
naiquevin / mysql.py
Created February 5, 2012 15:10
Examples of Mysql programming in Python
#!/usr/bin/env python
## Mysql-Python basic examples.
## All code is taken from [here](http://zetcode.com/databases/mysqlpythontutorial/)
## Gist created only for quick reference purpose
import sys
import _mysql
import MySQLdb as mdb
@naiquevin
naiquevin / acl_ex1.php
Created November 14, 2011 11:39
Code Examples for Acl in Kodelearn http://github.com/kodeplay/kodelearn
<?php
// defining resource-levels as arrays
return array(
'exam' => array(
'levels' => array(
'view',
'create',
'edit',
'delete'