Skip to content

Instantly share code, notes, and snippets.

# dchud's 20 minute guide to installing DSpace 4.0 from the binary release
# on a clean ubuntu 12.04 server running on aws ec2 or where-have-you
#
# this guide assumes you are already comfortable with *nix system administration
#
# this guide leaves out anything to do with the many details of configuring
# DSpace itself; it just gets you to the "it's up and running" step
#
# to start: get your clean ubuntu-12.04 system up to date
$ sudo apt-get update && sudo apt-get upgrade
Hi
I hope this helps you all get started with phonegap and sqlite in your
application
Dean-O
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
@fabriziomachado
fabriziomachado / test-pdo
Created March 16, 2015 20:44
teste de conexão com PDO/Mysql
<?php
$dbh=new PDO("mysql:dbname=onlinemarket;host=172.17.0.32", "root", "root");
foreach($dbh->query('SELECT * from listings') as $row)
{
print_r($row);
}
@fabriziomachado
fabriziomachado / referencia-pt.feature
Last active September 18, 2015 23:04 — forked from newtonwagner/referencia-pt.feature
Referência Behat Mink em Português
# Observacao: Ainda estou traduzindo e validando as opcoes para a linguagem pt.
# Dado (Given)
Dado Eu estou na página de entrada
Dado Eu estou em "url"
# Quando (When)
<a id='like_12' href='#' onclick='function(this)'>curti!</a>
<a id='like' data-speaker-id='12' href='#'>curti!</a>
$('#like').live('click', function(event){
speaker_id = $(this).attr('data-speaker_id');
sendRequest('/like',{speaker:speaker_id},
'#vote_'+speaker_id);
return false;
});
@fabriziomachado
fabriziomachado / Layout.php
Created August 5, 2011 12:30
application/hook/Layout.php
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
class Layout
{
public $base_url;
public function initx(){
return 'ok!';
}
/**
* Metodo que executa as implementacoes.
@fabriziomachado
fabriziomachado / MY_Controller.php
Created August 5, 2011 12:32
application/core/MY_Controller.php
<?php
class MY_Controller extends CI_Controller
{
# public $layout = 'default';
public $title = 'Unesc - Universidade do Extremo Sul Catarinense';
public $css = array('application','libs/blueprint/screen');
public $js = array('application','libs/jquery-1.6.2.min','libs/modernizr-2.0.6');
public $data = array();
public $view = TRUE;
@fabriziomachado
fabriziomachado / default.html
Created August 5, 2011 12:34
application/views/layouts/default.php
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<title>{title_for_layout}</title>
{css_for_layout}
{js_for_layout}
<!--[if lt IE 8]><link rel="stylesheet" href="assets/css/blueprint/ie.css" type="text/css" media="screen, projection"><![endif]-->
</head>
<body>
@fabriziomachado
fabriziomachado / partials_helper.php
Created August 5, 2011 12:45
application/helpers/partials_helper.php
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
function render_partial($partial, $locals = null, $collection = null, $ajax = NULL) {
$partial = APPPATH .'views/'. $partial;
$contents = '';
foreach($locals AS $key => $value) {
${$key} = $value;
@fabriziomachado
fabriziomachado / peoples.php
Created August 5, 2011 17:25
application/controllers/peoples.php
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class People extends MY_Controller {
function __construct() {
parent::__construct();
}
function index()
{