Skip to content

Instantly share code, notes, and snippets.

View hardfire's full-sized avatar
🥑
avoca-do-ing

अभिनाश (Avinash) hardfire

🥑
avoca-do-ing
View GitHub Profile
@hardfire
hardfire / dabblet.css
Created August 19, 2013 05:26 — forked from anonymous/dabblet.css
Untitled
body{
background:#ddd;
margin:0;
font-family:arial;
font-size:44px;
font-weight:bold;
text-shadow:1px 1px 1px #aaa;
}
#bg1{
margin:200px 0px;
@hardfire
hardfire / dabblet.css
Created August 15, 2013 17:03
ACM Logo in CSS, challange accepted
/**
* ACM Logo in CSS, challange accepted
*/
#acm-logo{
width:200px;
height:200px;
position:relative;
}
#diamond{
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
/**
* Bonfire
*
* An open source project to allow developers get a jumpstart their development of CodeIgniter applications
*
* @package Bonfire
* @author Bonfire Dev Team
* @copyright Copyright (c) 2011 - 2012, Bonfire Dev Team
* @license http://guides.cibonfire.com/license.html
@hardfire
hardfire / module.sh
Created September 1, 2012 16:59
create base files for a bonfire module
#! /bin/bash
# create base files for a bonfire module
u=$(tr '[a-z]' '[A-Z]' <<< ${1:0:1})
className="${u}${1:1}"
mkdir $1
mkdir "$1/assets"
mkdir "$1/config"
@hardfire
hardfire / MY_Parser.php
Created August 30, 2012 06:56
Parser for Bonfire
<?php defined('BASEPATH') OR exit('No direct script access allowed');
/**
* MY Parser
*
* @package Bonfire
* @subpackage Libraries
* @category Parser
* @author Avinash Kundaliya
* @link http://cibonfire.com