##Pages
- Login
- Forgot Password
- Register
- Dashboard
- Information (default)
- View Information (default)
- Change Username/Email/Password
- Information (default)
- Delete Account
var Notifier = (function() { | |
var Notifier = function(config) { | |
this.config = { | |
defaultTimeOut: 5000, | |
position: ["top", "right"], | |
notificationStyles: { | |
padding: "12px 18px", | |
margin: "0 0 6px 0", | |
backgroundColor: "#000", | |
opacity: 0.8, |
##Pages
###Features
####Simple
####Secure
function merge(target, obj) { | |
var ret = {}; | |
for (var prop in obj) { | |
if (target.hasOwnProperty(prop) && obj.hasOwnProperty(prop)) { | |
if (typeof(target[prop]) === "object" && typeof(obj[prop]) === "object") { | |
ret[prop] = merge(target[prop], obj[prop]); | |
} else { | |
ret[prop] = obj[prop]; | |
} | |
} else if (obj.hasOwnProperty(prop)) { |
<?php | |
class Database extends PDO { | |
public function __construct() { | |
parent::__construct( DB_TYPE . ':host=' . DB_HOST . ';dbname=' . DB_NAME, DB_USER, DB_PASS ); | |
} | |
} | |
$dbh = new Database(); | |
if( !isset( $_GET['tablename'] ) ) { | |
die('<form method="get"><label>Table Name: <input type="text" name="tablename" /></label><input type="submit" value="Lookup Table" /></form>'); |
<?php | |
/* Gets individual core information */ | |
function GetCoreInformation() { | |
$data = file('/proc/stat'); | |
$cores = array(); | |
foreach( $data as $line ) { | |
if( preg_match('/^cpu[0-9]/', $line) ) | |
{ | |
$info = explode(' ', $line ); | |
$cores[] = array( |
// ==UserScript== | |
// @name SE Chat Emoticons | |
// @author Robert Lemon | |
// @namespace http://rlemon.com | |
// @description Replaces frequently used emoticons with images in the chat system. | |
// @include http://chat.stackexchange.com/rooms/* | |
// @include http://chat.stackoverflow.com/rooms/* | |
// ==/UserScript== | |
/* RIGHT NOW I LAGG REALLY BAD */ |
<?xml version="1.0" encoding="utf-8" ?> | |
<!-- SQL XML created by WWW SQL Designer, http://code.google.com/p/wwwsqldesigner/ --> | |
<!-- Active URL: http://ondras.zarovi.cz/sql/demo/ --> | |
<sql> | |
<datatypes db="mysql"> | |
<group label="Numeric" color="rgb(238,238,170)"> | |
<type label="Integer" length="0" sql="INTEGER" re="INT" quote=""/> | |
<type label="Decimal" length="1" sql="DECIMAL" re="DEC" quote=""/> | |
<type label="Single precision" length="0" sql="FLOAT" quote=""/> |
OK, so I need a simple way for people to add/contribute command key ideas... See Project Page HERE
Please follow this format:
<command-key-combination>