Skip to content

Instantly share code, notes, and snippets.

View techjewel's full-sized avatar
🎯
Focusing

Shahjahan Jewel techjewel

🎯
Focusing
View GitHub Profile

Contract Killer

The popular open-source contract for web designers and developers by Stuff & Nonsense

  • Originally published: 23/12/2008
  • Revised date: 15/12/2013
  • Original post

<?php
$names = $_POST['name'];
$emails = $_POST['email'];
$user_array = array();
foreach($names as $key => $name)
{
$user_array[$key]['name'] = $name;
@techjewel
techjewel / simple_email_template.html
Created March 14, 2015 09:19
Very Simple email Template
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css">
body {
margin: 0;
mso-line-height-rule: exactly;
padding: 0;
min-width: 100%;
}
@techjewel
techjewel / tmpl.js
Last active August 29, 2015 14:21
Simple JS Templating
// Simple JavaScript Templating
// John Resig - http://ejohn.org/ - MIT Licensed
// source http://ejohn.org/blog/javascript-micro-templating/
(function(){
var cache = {};
this.tmpl = function tmpl(str, data){
// Figure out if we're getting a template, or if we need to
// load the template - and be sure to cache the result.
var fn = !/\W/.test(str) ?
@techjewel
techjewel / custom_posts.php
Created November 4, 2015 08:59
Creating Custom Post Type with Custom Taxanomy
<?php
// Register Custom Post Type named FAQ
function wagon_faqs_post_type() {
$labels = array(
'name' => _x( 'CPAP FAQs', 'Post Type General Name', 'cpap' ),
'singular_name' => _x( 'CPAP FAQ', 'Post Type Singular Name', 'cpap' ),
'menu_name' => __( 'CPAP FAQs', 'cpap' ),
@techjewel
techjewel / ionicons_php_array.php
Last active November 20, 2015 13:26
PHP Array of ionicons icon pack
<?php
$ionicons_icons = array(
'ion-alert',
'ion-alert-circled',
'ion-android-add',
'ion-android-add-circle',
'ion-android-alarm-clock',
'ion-android-alert',
'ion-android-apps',
@techjewel
techjewel / wp-login-logo-change
Created April 20, 2013 18:28
wordpress custom login logo change function
<?php
/* ------------------------------------------------
Custom login image logo
------------------------------------------------ */
function my_custom_login_logo() {
echo '<style type="text/css">
h1 a { background-image:url('.get_bloginfo('template_url').'/images/loginlogo.png) !important; }
</style>';
}
add_action('login_head', 'my_custom_login_logo');
@techjewel
techjewel / Get Featured image
Created September 8, 2013 11:20
WordPress Featured image
@techjewel
techjewel / g-chart-vertical-text.js
Created October 3, 2013 18:08
Google chart api for show lebel in vertical axix
var options = {
title: "Test",
hAxis: {
direction:-1,
slantedText:true,
slantedTextAngle:90 // here you can even use 180
}
};
@techjewel
techjewel / smoothScrolling.js
Created October 25, 2013 06:29
Smooth Scrolling with jQuery
<script type="text/javascript">
$('a').click(function(){
$('html, body').animate({
scrollTop: $( $.attr(this, 'href') ).offset().top
}, 800);
return false;
});
</script>