Skip to content

Instantly share code, notes, and snippets.

View himstar's full-sized avatar
:octocat:
Millions of open mind can't be wrong - Open Source

Himanshu Dhiraj Mishra himstar

:octocat:
Millions of open mind can't be wrong - Open Source
View GitHub Profile
<Doctype html!>
<html>
<head>
<title> TricksWay.com | Makes You Smarter</title>
</head>
<body>
<h2>I Love GitHub. </h2>
<p>Perfect Tutorials On TricksWay</p>
</body>
</html>
@himstar
himstar / Demo App
Created May 27, 2015 05:38
Demo Testing App
<!DOCTYPE html>
<html>
<head>
<title> Testing App Demo</title>
</head>
<body>
<h2> Testing App</h2>
<p> Demo Dummy Only</p>
</body>
@himstar
himstar / tricksway-blog-app-welcome
Last active August 29, 2015 14:21
TricksWay App Public
<!DOCTYPE HTML>
<html lang="EN">
<head>
<meta charset="UTF-8"/>
<title> TricksWay | App </title>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300' rel='stylesheet' type='text/css'>
<style>
* {
margin: 0;
padding: 0;
@himstar
himstar / config
Created May 27, 2015 21:14
Config XML For PhoneGap
<?xml version="1.0" encoding="UTF-8" ?>
<widget xmlns = "http://www.w3.org/ns/widgets"
xmlns:gap = "http://phonegap.com/ns/1.0"
id = "com.phonegap.example"
versionCode = "10"
version = "1.0.0" >
<!-- versionCode is optional and Android only -->
<name>TricksWay</name>
@himstar
himstar / config
Created May 27, 2015 21:17
Config XML For PhoneGap
<?xml version="1.0" encoding="UTF-8" ?>
<widget xmlns = "http://www.w3.org/ns/widgets"
xmlns:gap = "http://phonegap.com/ns/1.0"
id = "com.phonegap.example"
versionCode = "10"
version = "1.0.0" >
<!-- versionCode is optional and Android only -->
<name>TricksWay</name>
@himstar
himstar / WordPress-Plugin-Development-5
Created June 30, 2015 21:04
WordPress-Plugin-Development-Tutorial-5
add_shortcode( 'tricksway_contact_form', 'cf_shortcode' );
@himstar
himstar / Open Source Spoofer App
Created July 2, 2015 23:51
Open Source Spoofer App
<!DOCTYPE HTML>
<html>
<head>
<title>Spoofer | Email With App</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css" />
<link rel="stylesheet" href="//ajax.googleapis.com/ajax/libs/jquerymobile/1.4.5/jquery.mobile.min.css" />
<link rel="stylesheet" href="vendor/waves/waves.min.css" />
<link rel="stylesheet" href="vendor/wow/animate.css" />
@himstar
himstar / ajax-contact-form.html
Last active August 29, 2015 14:24
Ajax email contact form without refreshing page
<html>
<head>
<title>Simple Ajax Contact Form - TricksWay</title>
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$( "#submitBtn" ).click(function( event ) {
//values
@himstar
himstar / SharingIsSexy-WordPress-Blogger.html
Last active August 29, 2015 14:25
SharingIsSexy-Social-Icon-WordPress-Blogger
<style type="text/css">
.fix-container{
padding: 0px;
margin: 0px;
position: fixed;
right: -119px;
top:130px;
width: 200px;
}
.fix li{
@himstar
himstar / Ajax-Tutorial-Demo.php
Created July 26, 2015 20:58
Learning Ajax in 5 Min Quick Clear Concepts
<script src="js/jquery-1.10.1.js"></script>
<script>
function test(fruit)
{
$.post('process.php',{name:fruit},function(data)
{
$('#a').html(data);
});
}
</script>