This file contains 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
.container { | |
margin-top: 100px; | |
text-align: center; | |
font-size: 0; | |
} | |
.box { | |
background-color: green; | |
border-radius: 10px 10px 10px 10px; | |
font-size: 30px; | |
height: 40px; |
This file contains 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 lang="en-GB"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Dock</title> | |
<link rel="stylesheet" href="style.css" /> | |
</head> | |
<body> | |
<ul> | |
<li> |
This file contains 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 lang="en-GB"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>myBoard</title> | |
<link rel="stylesheet" href="style.css" /> | |
<script type="text/javascript" src="https://raw.github.com/LeaVerou/prefixfree/master/prefixfree.min.js"></script> | |
<link href='http://fonts.googleapis.com/css?family=Dosis' rel='stylesheet' type='text/css'> | |
</head> | |
<body> |
This file contains 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 lang="en-GB"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;"/> | |
<title></title> | |
</head> | |
<body> | |
</body> |
This file contains 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
<?php | |
$host="HOSTNAME"; | |
$username="USERNAME"; | |
$password="PASSWORD"; | |
$database="DATABASE"; | |
if (!($db=mysql_connect($host,$username,$password))) | |
die("unable to connect:".mysql_error()); | |
if (!mysql_select_db($database,$db)) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
#!/usr/bash | |
INTF=en0 | |
MAXPOINTS=30 | |
echo $1; | |
if [ "$1" == "RESET" ]; then | |
defaults write netspark in "" | |
defaults write netspark out "" | |
defaults write netspark lastIn 0 | |
defaults write netspark lastOut 0 |
This file contains 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
#!/bin/bash | |
then=$(sysctl kern.boottime | awk '{print $5}' | sed "s/,//") | |
now=$(date +%s) | |
diff=$(($now-$then)) | |
days=$(($diff/86400)); | |
diff=$(($diff-($days*86400))) | |
hours=$(($diff/3600)) | |
diff=$(($diff-($hours*3600))) | |
minutes=$(($diff/60)) |
This file contains 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
(function($){ | |
$.plugin = $.plugin || {version: "1.0.0"}; | |
$.plugin.defaultConf = { | |
conf : { | |
} | |
}; | |
function Plugin(elem, conf) { | |
var |
This file contains 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
@mixin knob($size,$color) { | |
$darkColor: darken($color, 15%); | |
$shadowColor: darken($darkColor,10%); | |
$lightColor: lighten($color, 15%); | |
$knobSize: $size * 0.8; | |
$dotSize: $size/8; | |
width:$size; | |
height:$size; | |
background-color: rgba(255,0,0,0.1); |
OlderNewer