This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* IDEAS FOR QUICK SORT --- SYNTAX only written */ | |
#include<stdio.h> | |
#include<conio.h> | |
void main() | |
{ | |
int i, j, temp; | |
. | |
. | |
. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<body> | |
<?php | |
//for creating instance blah blah// | |
public $function $instance() | |
{ | |
return $i; | |
} | |
?> | |
</body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Vertically & horizontally centered images | |
*/ | |
body { | |
background: #f06; | |
background: linear-gradient(45deg, #f06, yellow); | |
min-height: 100; | |
} | |
.group { | |
display: table; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* CSS5 | |
*/ | |
#nav | |
{ | |
background-color: red; | |
min-height: 100; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<link rel='stylesheet' type="text/css" href="/style.css"> | |
</head> | |
<body> | |
<div class="description"> | |
Visualization of orders according to these rules: | |
<ul> | |
<li>There should be no visually overlapping processing times. | |
<li>An order whose processing time overlaps with other order(s) should have the same width as those order(s). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<title>White Plum Kitchen Sink - Bootstrap 3 Theme</title> | |
<meta name="viewport" content="width=device-width"> | |
<link rel="stylesheet" href="../dist/css/bootstrap.css"> | |
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script> | |
<script type="text/javascript" src="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Dabblet avatar | |
*/ | |
@font-face { | |
font-family: 'Dabblet'; | |
src: url(/img/dabblet.ttf); | |
} | |
html { background: white } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Dabblet avatar | |
*/ | |
@font-face { | |
font-family: 'Dabblet'; | |
src: url(/img/dabblet.ttf); | |
} | |
background-color: white; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Gradient cheatsheet */ | |
background: linear-gradient(45deg, white, black); | |
background: linear-gradient(right, white, red, black); | |
background: linear-gradient(bottom right, white 50px, black); | |
background: radial-gradient(top-right, white, black); | |
background: radial-gradient(top-right, lime, black 0); | |
background: radial-gradient(center, red, black); | |
background: radial-gradient(yellow, black); | |
background: radial-gradient(yellow, red); |