Skip to content

Instantly share code, notes, and snippets.

View felixmc's full-sized avatar

Felix Milea-Ciobanu felixmc

  • Facebook
  • Bay Area
View GitHub Profile
@felixmc
felixmc / terminalrc
Created March 27, 2013 17:18
terminalrc file for my xfce desktop
[Configuration]
AccelShowToolbars=FALSE
MiscMenubarDefault=FALSE
MiscToolbarsDefault=FALSE
AccelShowMenubar=<Control>grave
MiscBordersDefault=TRUE
MiscAlwaysShowTabs=FALSE
MiscConfirmClose=TRUE
body {
background: #272822;
font: 1.1em/1.4em "Consolas", mono-space;
color: #fff;
}
#main-content {
width: 750px;
margin: 50px auto 0;
}
body {
background: #272822;
font: 1.1em/1.4em "Consolas", mono-space;
color: #fff;
}
#main-content {
width: 750px;
margin: 50px auto 0;
}
body {
background: #272822;
font: 1.1em/1.4em "Consolas", mono-space;
color: #fff;
margin: 0;
}
.wrapper {
width: 750px;
margin: 0 auto;
body {
background
}
@felixmc
felixmc / nginx.conf
Last active December 18, 2015 00:59
location /wamp/ {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_pass http://127.0.0.1:3000/;
proxy_redirect off;
}
<?php
$host = $_SERVER["HTTP_HOST"];
$uri = ($host === $_SERVER["SERVER_NAME"] || $_SERVER["SERVER_NAME"] !== "localhost" ? "/wamp" : "") . "/wordpress";
$base_url = "http://" . $host . $uri;
define('WP_HOME', $base_url);
define('WP_SITEURL', $base_url);
?>
@felixmc
felixmc / dabblet.css
Created June 24, 2013 00:49
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
background: #f06;
background: linear-gradient(45deg, #f06, yellow);
min-height: 100%;
@felixmc
felixmc / static_page_model.php
Last active December 29, 2015 16:29
simple code igniter model for a
<?php
class Static_Page_Model extends CI_Model {
function __construct() {
// Call the Model constructor
parent::__construct();
}
public function createPage ($data) {
$data['date_created'] = date('Y-m-d H:i:s');
<?php
class StaticPage extends CI_Controller {
public function __construct() {
parent::__construct();
$this->load->model('static_page_model');
}
public function index () {
$slug = $this->uri->segment(1);