Just backing it up

This commit is contained in:
Brian Buller 2016-03-09 15:19:45 -06:00
commit 3f93b6c48a
21 changed files with 9195 additions and 0 deletions

19
.htaccess Normal file
View File

@ -0,0 +1,19 @@
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.html [L]
</IfModule>
DirectoryIndex index.html

1058
assets/css/bootstrap-responsive.css vendored Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

5774
assets/css/bootstrap.css vendored Normal file

File diff suppressed because it is too large Load Diff

9
assets/css/bootstrap.min.css vendored Normal file

File diff suppressed because one or more lines are too long

182
assets/css/style.css Normal file
View File

@ -0,0 +1,182 @@
body {
margin: 0;
padding: 0;
text-align: center;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
background-color: #FFF;
}
ol, ul {
list-style: none;
}
#sitetitle {
cursor: default;
padding: 14px 20px 6px;
}
#intrasite_link {
padding: 16px 15px 6px;
}
#intrasite_link > a {
padding: 0px;
}
.name {
margin: 15px 0 0 0;
}
.navbar-inner {
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
.profile-head {
color:#FFF;
}
.profile-container {
margin: auto;
width: 1024px;
height: 768px;
background-color: #F2F2F2;
border: 1px solid #D4D4D4;
position: relative;
background-image: url('/assets/img/profile_pic.png');
background-size: 100% 100%;
border-radius: 0 0 5px 5px;
-moz-border-radius: 0 0 5px 5px;
-webkit-border-radius: 0 0 5px 5px;
}
.profile-content {
color: #BBBBAF;
text-align: left;
padding: 5px;
}
.profile-content a {
color: #FFFFFF;
text-decoration: none;
}
#profile_box {
position: absolute;
background-color: rgba(0, 0, 0, 0.701961);
display: block;
height: 450px;
width: 400px;
right: 20px;
top: 60px;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
}
.services {
color: white;
}
div.services {
height: 50px;
width: 100%;
padding: 0;
background: transparent;
border-radius: 3px;
-mox-border-radius: 3px;
-webkit-border-radius: 3px;
position:absolute;
bottom: 0px;
}
ul.services {
margin-top:5px;
}
ul.services li.service-icon {
margin: 0 8px 8px 0;
height; 32px;
width: 32px;
float: left;
list-style-type: none;
}
ul.services li.service-icon > .icon {
padding-left: 0;
font-style: normal;
font-weight: 400;
height: 32px;
width: 32px;
display: block;
background-repeat: no-repeat;
background-position: 50% 50%;
position: relative;
}
div.services ul li .icon.twitter {
background-image: url(/assets/img/twitter_button.png);
}
div.services ul li .icon.favs {
background-image: url(/assets/img/favs_button.png);
}
div.services ul li .icon.linkedin {
background-image: url(/assets/img/linkedin_button.png);
}
div.services ul li .icon.googleplus {
background-image: url(/assets/img/gplus_button.png);
}
div.services ul li .icon.googleplay {
background-image: url(/assets/img/gplay_button.png);
background-size: 32px 32px;
}
.profile-bezel {
height: 0px;
background-color: transparent;
border-top-width: 1px;
border-top-style: solid;
border-top-color: rgb(0, 0, 0);
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: rgb(255, 255, 255); opacity: 0.14;
background-position: initial initial;
background-repeat: initial initial;
}
#credits {
color: #BBBBAF;
}
.clearfix {
zoom: 1;
}
/* Font Styles */
@font-face {
font-family: RexBold;
src: url('/assets/fonts/Rex_Bold.otf') format("opentype");
}
@font-face {
font-family: RexBoldInline;
src: url('/assets/fonts/Rex_Bold_Inline.otf') format("opentype");
}
@font-face {
font-family: RexLight;
src: url('/assets/fonts/Rex_Light.otf') format("opentype");
}
.rex-bold {
font-family: "RexBold", "Helvetica Neue", "Lucida Grande", "Arial";
}
.rex-bold-inline {
font-family: "RexBoldInline", "Helvetica Neue", "Lucida Grande", "Arial";
}
.rex-light {
font-family: "RexLight", "Helvetica Neue", "Lucida Grande", "Arial";
}

BIN
assets/fonts/Rex_Bold.otf Normal file

Binary file not shown.

Binary file not shown.

BIN
assets/fonts/Rex_Light.otf Normal file

Binary file not shown.

BIN
assets/img/MrB.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

BIN
assets/img/favs_button.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

BIN
assets/img/gplay_button.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.9 KiB

BIN
assets/img/gplus_button.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

BIN
assets/img/linkedin_button.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

BIN
assets/img/profile_pic.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 881 KiB

BIN
assets/img/twitter_button.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

2027
assets/js/bootstrap.js vendored Normal file

File diff suppressed because it is too large Load Diff

6
assets/js/bootstrap.min.js vendored Normal file

File diff suppressed because one or more lines are too long

2
assets/js/jquery-1.8.2.min.js vendored Normal file

File diff suppressed because one or more lines are too long

31
assets/sitemap.xml Executable file
View File

@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">
<url>
<loc>http://mrbuller.com/index.html</loc>
<image:image>
<image:loc>http://mrbuller.com/assets/img/profile_pic.png</image:loc>
<image:caption>Mr Buller Staring awesomely into the distance.</image:caption>
</image:image>
<image:image>
<image:loc>http://mrbuller.com/assets/img/gplay_button.png</image:loc>
<image:caption>Buller Codeworks on Google Play</image:caption>
</image:image>
<image:image>
<image:loc>http://mrbuller.com/assets/img/gplus_button.png</image:loc>
<image:caption>Mr. Buller on Google Plus</image:caption>
</image:image>
<image:image>
<image:loc>http://mrbuller.com/assets/img/linkedin_button.png</image:loc>
<image:caption>Mr. Buller on Google Plus</image:caption>
</image:image>
<image:image>
<image:loc>http://mrbuller.com/assets/img/twitter_button.png</image:loc>
<image:caption>Mr. Buller on Twitter</image:caption>
</image:image>
<image:image>
<image:loc>http://mrbuller.com/assets/img/MrB.png</image:loc>
<image:caption>Favicon</image:caption>
</image:image>
</url>
</urlset>

78
index.html Normal file
View File

@ -0,0 +1,78 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>MrBuller</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="keywords" content="Programmer,Resume,Android Development,Java,Web Development,HTML,JavaScript,CSS,C/C++">
<meta name="description" content="MrBuller, Programmer">
<link rel="apple-touch-icon" href="/assets/img/MrB.png" type="image/png">
<link rel="shortcut icon" href="/assets/img/MrB.png" type="image/png">
<link href="/assets/css/bootstrap.css" rel="stylesheet" type="text/css">
<link href="/assets/css/bootstrap-responsive.min.css" rel="stylesheet" type="text/css">
<link href="/assets/css/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="profile-container">
<div class="navbar">
<div class="navbar-inner">
<a id="sitetitle" class="brand rex-bold" href="#">MRBULLER</a>
<ul class="nav nav-pills pull-right">
<li id="intrasite_link" class="rex-bold"><a href="http://br0xen.com/">br0xen.com</a></li>
<li id="intrasite_link" class="rex-bold"><a href="http://bullercodeworks.com/">bullercodeworks.com</a></li>
</ul>
</div>
</div>
<div class="profile" id="profile_box">
<div class="profile-head">
<h1 class="name rex-bold">BRIAN BULLER</h1>
</div>
<div class="profile-content">
<p>Brian has been writing code for over 20 years. His experience includes extensive web technology (HTML5 techniques, heavy Javascript usage, including multiple popular libraries, PHP, and Python) as well as programming in Go <span class="hide">(Golang to web searches)</span> and Java.</p><p>In March of 2013 he incorporated <a href="http://bullercodeworks.com">Buller Codeworks, LLC.</a> and began working full time as a contract developer.</p><p>He has released several Android apps to the <a href="https://play.google.com/store/apps/developer?id=Buller+Codeworks,+LLC">Google Play</a> store.</p>
</div>
<div class="services">
<div class="profile-bezel"></div>
<ul class="services">
<li class="service-icon btn-twitter">
<a href="http://twitter.com/br0xen" target="_blank" class="icon twitter">
<span class="service-icon-overlay"></span>
</a>
</li>
<li class="service-icon btn-googleplus">
<a href="https://plus.google.com/111991944977215788560/posts" target="_blank" class="icon googleplus">
<span class="service-icon-overlay"></span>
</a>
</li>
<li class="service-icon btn-linkedin">
<a href="http://www.linkedin.com/in/brbuller" target="_blank" class="icon linkedin">
<span class="service-icon-overlay"></span>
</a>
</li>
<li class="service-icon btn-googleplay">
<a href="https://play.google.com/store/apps/developer?id=Buller+Codeworks,+LLC" target="_blank" class="icon googleplay">
<span class="service-icon-overlay"></span>
</a>
</li>
</ul>
</div>
<ul class="links clearfix"></ul>
</div>
</div>
<span id="credits">
<p>
&copy; Brian Buller<br />
REX Font provided by <a href="http://www.fontfabric.com">FontFabric</a>
</p>
</span>
<script type="text/javascript" src="/assets/js/jquery-1.8.2.min.js"></script>
<script type="text/javascript" src="/assets/js/bootstrap.min.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-3736599-7', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>