Skip to content

Instantly share code, notes, and snippets.

View ashumeow's full-sized avatar
🎯
Moving Forward

Aswini S ashumeow

🎯
Moving Forward
View GitHub Profile
div{
position:relative; height:500px;
background:hsl(200, 100%, 97%);
}
div {
@ashumeow
ashumeow / header.php
Last active December 27, 2015 14:29 — forked from funteractive/header.php
<?php
echo(wp_title( '|',true,'right') );
bloginfo('name');
?>
@ashumeow
ashumeow / Modernizer
Last active December 27, 2015 14:29 — forked from anneallen/Modernizer
//Add Modernizer
function eva_modernizer_doctype() {
<!DOCTYPE html>
<html>
<div class="no-js">
<?php language_attributes( 'html' ); ?>>
<head>
<meta charset="UTF-8"> </head>
<?php
}
@ashumeow
ashumeow / .gitconfig
Last active December 27, 2015 14:39 — forked from berlotto/.gitconfig
# user and email config
$ git config user.name "My Name"
$ git config user.email [email protected]
# push
$ git push
#alias
$ git log --oneline
@ashumeow
ashumeow / index.html
Last active December 27, 2015 15:09 — forked from hano/index.html
<!DOCTYPE html>
<html>
<head>
<title>Fernsehturm</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="tower-container">
<div class="antennas">
<html>
<body>
<table>
<tr>
<th></th>
<th></th>
<th></th>
<th></th>
</tr>
<tr>
@ashumeow
ashumeow / index.html
Last active December 28, 2015 03:49 — forked from mbannert/index.html
<!doctype HTML>
<meta charset ="UTF-8">
<html>
<head>
<link rel='stylesheet' type="text/css" href="http://nvd3.org/src/nv.d3.css">
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js' type='text/javascript'></script>
<script src='http://d3js.org/d3.v2.min.js' type='text/javascript'></script>
<script src='http://nvd3.org/nv.d3.js' type='text/javascript'></script>
<script src='http://nvd3.org/lib/fisheye.js' type='text/javascript'></script>
@ashumeow
ashumeow / PrimeCheck
Last active January 4, 2016 15:09 — forked from freemo/PrimeCheck.hs
function (isPrime(number))
{
if ((number == 2) || (number == 3))
return true;
if ((number % 2 === 0) || (number % 3 === 0))
return false;
var maxDivisor = Math.sqrt(number);
var dividendIndex = 1;
var dividend = 5;
@ashumeow
ashumeow / dabblet.html
Last active August 29, 2015 13:56 — forked from rlog/dabblet.html
<html>
<h1>this is test</h1>
<body>
<img src="http://img3.douban.com/lpic/s10307175.jpg" />
</body>
</html>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <WinBase.h>
// ZIP files are gross.
#ifndef