Skip to content

Instantly share code, notes, and snippets.

View Rubel-hossain's full-sized avatar
🏠
Working from home

Rubel Hossain Rubel-hossain

🏠
Working from home
View GitHub Profile
@Rubel-hossain
Rubel-hossain / 1aboveheader.txt
Created June 5, 2018 16:51 — forked from audreyannlow/1aboveheader.txt
Blogger Template from Bootstrap HTML file
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html>
<html b:css='false' b:defaultwidgetversion='2' b:layoutsVersion='3' b:responsive='true' b:templateUrl='indie.xml' b:templateVersion='1.1.0' expr:dir='data:blog.languageDirection' xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr'>
@Rubel-hossain
Rubel-hossain / kmskeys10.txt
Created May 14, 2017 13:11 — forked from CHEF-KOCH/kmskeys10.txt
Windows 10 KMS Keys
Windows.10.and.Office.2016.gVLK
#####################################################################
# technet.microsoft.com/en-us/library/jj612867.aspx?lc=1033 #
#####################################################################
Windows 10 Professional W269N-WFGWX-YVC9B-4J6C9-T83GX
Windows 10 Professional N MH37W-N47XK-V7XM9-C7227-GCQG9
Windows 10 Education NW6C2-QMPVW-D7KKK-3GKT6-VCFB2
Windows 10 Education N 2WH4N-8QGBV-H22JP-CT43Q-MDWWJ
@Rubel-hossain
Rubel-hossain / index.html
Created March 14, 2016 19:06
starter page with bootstrap menu.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>YEBO Bicycle</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<script src="js/jquery.js"></script>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Student login</title>
</head>
<body>
{!! Form::open(array("url"=>"insert")) !!}
<label for="first-name">First Name</label>
<input type="text" name="first_name" placeholder="First Name" id="first-name"></br>
@Rubel-hossain
Rubel-hossain / php-class-3.php
Created April 7, 2015 00:00
softtech-it . sujon vais php tutorial. class 3
<?php
$first_name='Rubel';
$last_name='Hossain';
$age='23';
$acquire=array('success','failer','stupied');
$country='Bangladesh';
$aim=array('web designer','graphic designer','web programmer','php programmer');
$teacher=array('Rasal-vai','sujon-vai','atique-vai');
@Rubel-hossain
Rubel-hossain / shortcode query post.php
Last active August 29, 2015 14:15
Query Post by shortcode
<?php
function post_list_shortcode($atts,$content){
extract($atts=shortcode_atts(array(
'type' => 'post',
),$atts) );
$q = new WP_Query(
array('posts_per_page' => '5', 'post_type' => $type)
@Rubel-hossain
Rubel-hossain / shortcode.php
Created February 8, 2015 17:12
Ideal Shortcode example
<?php
function button_shortcode($atts,$content){
extract($atts=shortcode_atts(array(
'type'=>!empty($type) ? $type:'success',
'link'=>'http://www.m.facebook.com',
'icon'=> empty($icon) ? 'heart': $icon ,
'content'=> !empty($content) ? $content : 'empty content here'
),$atts,'btn'));
@Rubel-hossain
Rubel-hossain / simple and responsive head
Created November 8, 2014 03:50
Responsive small and standerat head section <head>
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" <?php language_attributes(); ?>> <!--<![endif]-->
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title><?php wp_title( '|', true, 'right' ); ?></title>
<link rel="profile" href="http://gmpg.org/xfn/11">