I hereby claim:
- I am CalebGrove on github.
- I am calebgrove (https://keybase.io/calebgrove) on keybase.
- I have a public key whose fingerprint is 46E5 5BF4 FD45 8CFF 7FB5 D0FB 6EB9 3481 7E5A 95B6
To claim this, I am signing this object:
[id^='button'] { | |
width: 250px !important; | |
height: 50px !important; | |
margin: 10px !important; | |
border-radius: 8px !important; | |
background-color: #3F3F3F !important; | |
} |
[id^='button'] { | |
width: 250px !important; | |
height: 50px !important; | |
margin: 10px !important; | |
border-radius: 8px !important; | |
background-color: #3F3F3F !important; | |
# BEGIN EXPIRATION | |
<IfModule mod_expires.c> | |
ExpiresActive On | |
ExpiresByType image/jpg "access 1 year" | |
ExpiresByType image/jpeg "access 1 year" | |
ExpiresByType image/gif "access 1 year" | |
ExpiresByType image/png "access 1 year" | |
ExpiresByType text/css "access 1 month" | |
ExpiresByType application/pdf "access 1 month" | |
ExpiresByType text/x-javascript "access 1 month" |
<!DOCTYPE html> | |
<head> | |
<title>HTML and CSS "Hello World"</title> | |
<style> | |
body { | |
background-color: #2D2D2D; | |
} | |
h1 { | |
color: #C26356; |
<p>This text should be 20px</p> | |
<div>This is unstyled text. If we set the body size to 62.5%, this would be 10px instead of 16px, which is fairly unusable.</div> |
ol { counter-reset: item; } | |
li { | |
display: block; | |
&:before { | |
// create the numbers & increment... | |
content: counter(item) "."; | |
counter-increment: item; | |
// correct positioning... | |
float: left; |
## Force ALL files in this directory to download | |
ForceType application/octet-stream |
// There's some better solutions in the comments, so scroll down and see how other folks have improved this! | |
// USAGE: | |
// abbrState('ny', 'name'); | |
// --> 'New York' | |
// abbrState('New York', 'abbr'); | |
// --> 'NY' | |
function abbrState(input, to){ | |
I hereby claim:
To claim this, I am signing this object:
<?php | |
ini_set( 'display_errors', 1 ); | |
error_reporting( E_ALL ); | |
$from = "[email protected]"; | |
$to = "[email protected]"; | |
$subject = "PHP Mail Test script"; | |
$message = "This is a test to check the PHP Mail functionality"; | |
$headers = "From:" . $from; | |
mail($to,$subject,$message, $headers); | |
echo "Test email sent"; |