-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html.old
604 lines (536 loc) · 30.5 KB
/
index.html.old
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Boone Development</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<meta name="description" content="Boone Development" />
<meta name="keywords" content="boone, development, boone development, programming, consulting, web design, blockchain, python, ruby, react" />
<meta name="author" content="netuoso" />
<link rel="shortcut icon" href="favicon.ico">
<link rel="stylesheet" href="css/bootstrap.min.css" type="text/css">
<link rel="stylesheet" href="css/normalize.css" type="text/css">
<link rel="stylesheet" href="css/animate.css" type="text/css">
<link rel="stylesheet" href="css/transition-animations.css" type="text/css">
<link rel="stylesheet" href="css/owl.carousel.css" type="text/css">
<link rel="stylesheet" href="css/main.css" type="text/css">
<!-- <link rel="stylesheet" href="css/magnific-popup.css" type="text/css"> -->
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://boonedevelopment.com">
<meta property="og:type" content="website">
<meta property="og:title" content="Boone Development">
<meta property="og:description" content="Boone Development">
<meta property="og:image" content="https://boonedevelopment.com/images/BooneDevLogo-blue.png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta property="twitter:domain" content="boonedevelopment.com">
<meta property="twitter:url" content="https://boonedevelopment.com">
<meta name="twitter:title" content="Boone Development">
<meta name="twitter:description" content="Boone Development">
<meta name="twitter:image" content="https://boonedevelopment.com/images/BooneDevLogo-blue.png">
<script src="js/jquery-2.1.3.min.js"></script>
<script src="js/modernizr.custom.js"></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVT3G8VSRP"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-WVT3G8VSRP');
</script>
<!-- <script src='//www.google.com/recaptcha/api.js'></script> -->
</head>
<body class="material-template">
<!-- Loading animation -->
<div class="preloader">
<div class="preloader-animation">
<div class="preloader-spinner">
</div>
</div>
</div>
<!-- /Loading animation -->
<div id="page" class="page">
<!-- Header -->
<header id="site_header" class="header mobile-menu-hide">
<div class="header-content">
<div class="site-title-block mobile-hidden">
<div class="site-title">Boone <span>Development</span></div>
</div>
<!-- Navigation -->
<div class="site-nav">
<!-- Main menu -->
<ul id="nav" class="site-main-menu">
<li>
<a class="pt-trigger" href="#home" data-animation="62">Home</a><!-- href value = data-id without # of .pt-page. -->
</li>
<li>
<a class="pt-trigger" href="#resume" data-animation="62">Resume</a>
</li>
<li>
<a class="pt-trigger" href="#services" data-animation="62">Services</a>
</li>
<li>
<a class="pt-trigger" href="#contact" data-animation="62">Contact</a>
</li>
</ul>
<!-- /Main menu -->
</div>
<!-- Navigation -->
</div>
</header>
<!-- /Header -->
<!-- Mobile Header -->
<div class="mobile-header mobile-visible">
<div class="mobile-logo-container">
<div class="mobile-site-title">Boone Development</div>
</div>
<a class="menu-toggle mobile-visible">
<i class="fa fa-bars"></i>
</a>
</div>
<!-- /Mobile Header -->
<!-- Main Content -->
<div id="main" class="site-main">
<!-- Page changer wrapper -->
<div class="pt-wrapper">
<!-- Subpages -->
<div class="subpages">
<!-- Home Subpage -->
<section class="pt-page" data-id="home">
<div class="section-inner start-page-content">
<div class="page-header">
<div class="row">
<div class="col-sm-4 col-md-4 col-lg-4">
<div class="photo">
<img src="images/photo2.png" alt="Andrew Chaney">
</div>
</div>
<div class="col-sm-8 col-md-8 col-lg-8">
<div class="title-block">
<h1>Andrew Chaney</h1>
<div class="owl-carousel text-rotation">
<div class="item">
<div class="sp-subtitle">Website Developer</div>
</div>
<div class="item">
<div class="sp-subtitle">Systems Administrator</div>
</div>
<div class="item">
<div class="sp-subtitle">Full-Stack Developer</div>
</div>
<div class="item">
<div class="sp-subtitle">Blockchain Developer</div>
</div>
<div class="item">
<div class="sp-subtitle">DevOps Engineer</div>
</div>
<div class="item">
<div class="sp-subtitle">Technological Idealist</div>
</div>
</div>
</div>
<div class="social-links">
<a href="//github.com/netuoso" target="_blank" rel="noopener"><i class="fa fa-github"></i></a>
<a href="//twitter.com/netuoso" target="_blank" rel="noopener"><i class="fa fa-twitter"></i></a>
<a href="//www.linkedin.com/in/chaneyandrew/" target="_blank" rel="noopener"><i class="fa fa-linkedin"></i></a>
<a href="mailto:[email protected]"><i class="fa fa-envelope"></i></a>
</div>
</div>
</div>
</div>
<div class="page-content">
<div class="row">
<div class="col-sm-12">
<div class="about-me">
<div class="block-title">
<h3>About <span>Me</span></h3>
</div>
<p>
I am a full-stack developer that specializes in Ruby/Rails, NodeJs, C++ smart contract development, and AWS cloud management. I believe in remaining code agnostic and being able to adapt to whatever stack the project, or client, requires. By following the principals outlined in the Pragmatic Programmer, I am able to develop highly modular, orthagonal code that can stand the test of time and remain easy to deploy across multiple different evironments and architectures.
</p>
<p>
I have been programming professionally since 2010. Since then, I have done information security and threat management, embedded device development (hardware and software), database driven website development (MVC frameworks), mobile application development (Android/iOS), and blockchain development.
</p>
<p>
Very early into my career, I found cryptocurrency and quickly realized it was the path I wished to pursue. Since then I have come to master several different blockchain technologies and have found creative ways to apply them to businesses of all sizes. I have supported companies that wanted to simply start accepting cryptocurrency through a point-of-sale system to companies that wanted to build their company on top of the blockchain.
</p>
<p>
If you are looking to work with <strong>Boone Development</strong> please do not hesitate to reach out today. I pride myself on quickly and effectively delivering high quality services with attention to detail that will fully satisfy your particular needs. You can find more information about what services <strong>Boone Development</strong> offers on the Services section.
</p>
</div>
<!-- <div class="download-resume">
<a href="//mega.nz/#!8sEG2aZC!UEdFqtQIXEbdAuBcnaCztMcLwkNhiuuBgOc2QWMULBI" class="btn btn-secondary" target="_blank" rel="noopener">Download Resume</a>
</div> -->
</div>
</div>
</div>
</div>
</section>
<!-- End of Home Subpage -->
<!-- Resume Subpage -->
<section class="pt-page" data-id="resume">
<div class="section-inner custom-page-content">
<div class="page-header color-1">
<h2>Resume</h2>
</div>
<div class="page-content" style="text-align:center;">
<div class="row">
<div class="col-sm-12 col-md-6">
<div class="block">
<div class="block-title">
<h3><span>Experience<span></h3>
</div>
<div class="timeline">
<!-- Experience 1 -->
<div class="timeline-item">
<h4 class="item-title">CEO & Founder</h4>
<span class="item-period">2017 - Current</span>
<span class="item-small">Boone Development</span>
<br/>
<p class="item-description">
<strong>Boone Development</strong> is a boutique development firm that specializes in cutting edge blockchain technology. Some of the blockchain platforms that <strong>Boone Development</strong> currently supports are Bitcoin, EOS, Hive, Steem, and Ethereum.<br/><br/>
On top of software development services, <strong>Boone Development</strong> also provides high quality blockchain consulting for all types of businesses and clients.
</p>
</div>
<!-- / Experience 1 -->
<!-- Experience 2 -->
<div class="timeline-item">
<h4 class="item-title">Full-Stack Developer</h4>
<span class="item-period">2019 - 2022</span>
<span class="item-small">0rigin, LLC</span>
<br/>
<p class="item-description">
0rigin is a blockchain based company that specializes in maintaining DeFi applications on EOSIO based networks. 0rigin created and launched the UX Network blockchain with a focus on B2B and predictable network resource management.<br/><br/>
While working at 0rigin, I have helped build custom software to support the company's various blockchain related services and protocols. My tasks have included creating command line tools, Electron based applications, and EOSIO based smart contracts.
</p>
</div>
<!-- / Experience 2 -->
</div>
</div>
</div>
<div class="col-sm-12 col-md-6">
<div class="block">
<div class="block-title spaced">
</div>
<div class="timeline">
<!-- Experience 3 -->
<div class="timeline-item">
<h4 class="item-title">Senior Software Developer</h4>
<span class="item-period">2015 - 2017</span>
<span class="item-small">Autobrain, LLC</span>
<p class="item-description">
Autobrain directly monitors and communicates vital vehicle information through a wireless, easy to install, plug and play OBD-II device, website, and mobile app. With Autobrain, you can locate your car instantly with your phone, get an alert when your teenager is driving too fast, and get help quickly if you're in a crash; much like OnStar.
</p>
</div>
<!-- / Experience 3 -->
<!-- Experience 4 -->
<div class="timeline-item">
<h4 class="item-title">Network Support Analyst</h4>
<span class="item-period">2010 - 2015</span>
<span class="item-small">Techflavor, LLC</span>
<p class="item-description">
Techflavor is a Managed Service Provider that is responsible for managing the networks and technological infrastructure of many clients with various sized teams and operations. On top of providing high quality MSP IT services, Techflavor provides state of the art information and cyber security consulting.
</p>
</div>
<!-- / Experience 4-->
<!-- Experience 5 -->
<div class="timeline-item">
<h4 class="item-title">Offshore Surveyor</h4>
<span class="item-period">2006 - 2015</span>
<span class="item-small">Tesla Offshore, LLC</span>
<p class="item-description">
With offices in Baton Rouge, Louisiana and Houston, Texas, Tesla Offshore operates multiple survey vessels acquiring state of the art high resolution geophysical data of the seafloor and sub-seafloor.
</p>
</div>
<!-- / Experience 5 -->
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-6 col-md-6 col-lg-6">
<div class="block">
<div class="block-title">
<h3>Coding <span>Skills</span></h3>
</div>
<div class="skills-info">
<h4>Devops / Systems Administration</h4>
<div class="skill-container">
<div class="skill-percentage skill-1"></div>
</div>
<h4>Backend Development</h4>
<div class="skill-container">
<div class="skill-percentage skill-2"></div>
</div>
<h4>Frontend Development</h4>
<div class="skill-container">
<div class="skill-percentage skill-3"></div>
</div>
<h4>Blockchain Development</h4>
<div class="skill-container">
<div class="skill-percentage skill-4"></div>
</div>
<h4>Reverse Engineering</h4>
<div class="skill-container">
<div class="skill-percentage skill-5"></div>
</div>
<h4>Linux</h4>
<div class="skill-container">
<div class="skill-percentage skill-6"></div>
</div>
<h4>Mac OSx</h4>
<div class="skill-container">
<div class="skill-percentage skill-7"></div>
</div>
<h4>Windows</h4>
<div class="skill-container">
<div class="skill-percentage skill-8"></div>
</div>
</div>
</div>
</div>
<div class="col-sm-6 col-md-6 col-lg-6">
<div class="block">
<div class="block-title spaced">
</div>
<div class="skills-info">
<h4>Ruby</h4>
<div class="skill-container">
<div class="skill-percentage skill-9"></div>
</div>
<h4>C++</h4>
<div class="skill-container">
<div class="skill-percentage skill-10"></div>
</div>
<h4>Python</h4>
<div class="skill-container">
<div class="skill-percentage skill-11"></div>
</div>
<h4>NodeJS</h4>
<div class="skill-container">
<div class="skill-percentage skill-12"></div>
</div>
<h4>Ruby on Rails</h4>
<div class="skill-container">
<div class="skill-percentage skill-13"></div>
</div>
<h4>React</h4>
<div class="skill-container">
<div class="skill-percentage skill-14"></div>
</div>
<h4>Amazon AWS</h4>
<div class="skill-container">
<div class="skill-percentage skill-15"></div>
</div>
<h4>Django</h4>
<div class="skill-container">
<div class="skill-percentage skill-16"></div>
</div>
</div>
</div>
</div>
</div>
<!-- Download Resume Button -->
<!-- <div class="row">
<div class="col-sm-12 col-md-12 col-lg-12">
<div class="block">
<div class="center download-resume">
<a href="//mega.nz/#!8sEG2aZC!UEdFqtQIXEbdAuBcnaCztMcLwkNhiuuBgOc2QWMULBI" class="btn btn-secondary" target="_blank" rel="noopener">Download Resume</a>
</div>
</div>
</div>
</div> -->
<!-- End of Download Resume Button -->
</div>
</div>
</section>
<!-- End of Resume Subpage -->
<!-- Services Subpage -->
<section class="pt-page" data-id="services">
<div class="section-inner custom-page-content">
<div class="page-header color-1">
<h2>Services</h2>
</div>
<div class="page-content">
<!-- My Services -->
<div class="row">
<div class="col-sm-12">
<div class="block-title">
<h3><span>Services</span></h3>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="service-block">
<div class="service-info">
<!--<i class="service-icon fa fa-shopping-cart"></i>-->
<div class="service-image">
<img src="images/service/web_design_icon.png" alt="Website Development" class="mCS_img_loaded">
</div>
<h4>Website Development</h4>
<p>
If you need a website for marketing, ecommerce, displaying your portfolio, or pretty much anything else get in touch with <strong>Boone Development</strong> for very fast turn around, competetive rates, and high quality support.
</p>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="service-block">
<div class="service-info">
<div class="service-image">
<img src="images/service/code_icon.png" alt="Custom Development" class="mCS_img_loaded">
</div>
<h4>Custom Development</h4>
<p>Need a custom app, database, API, smart contract, or entire blockchain created specifically for your business? <strong>Boone Development</strong> will come up with a customized solution that will satisfy your exact needs.</p>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="service-block">
<div class="service-info">
<div class="service-image">
<img src="images/service/campaigns_icon.png" alt="Advertising Campaigns" class="mCS_img_loaded">
</div>
<h4>Advertising Campaigns</h4>
<p><strong>Boone Development</strong> can help you create new advertising campaigns or manage existing ones on platforms such as Facebook (Meta), Google Adwords, Hive Blockchain, and more.</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="service-block">
<div class="service-info">
<div class="service-image">
<img src="images/service/photography_icon.png" alt="Video Editing" class="mCS_img_loaded">
</div>
<h4>Video Editing</h4>
<p>Using cutting edge drone technology combined with creative video editing techniques, <strong>Boone Development</strong> can create engaging and eye-catching promotional video content for your every need.</p>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="service-block">
<div class="service-info">
<div class="service-image">
<img src="images/service/creativity_icon.png" alt="AWS Support / Management" class="mCS_img_loaded">
</div>
<h4>AWS Support / Management</h4>
<p>If you need help with your AWS cloud computing infrastructure, <strong>Boone Development</strong> can provide anything from minor troubleshooting, to consulting, to entire infrastructure migrations.</p>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="service-block">
<div class="service-info">
<div class="service-image">
<img src="images/service/blockchain_icon.png" alt="Software Troubleshooting" class="mCS_img_loaded">
</div>
<h4>Software Troubleshooting</h4>
<p>No matter what the software is, if its not working the way you need it to then reach out to <strong>Boone Development</strong> for custom troubleshooting and problem solving. We will tell you exactly what the problem is and, if possible, provide a step by step solution.</p>
</div>
</div>
</div>
</div>
</div>
<!-- End of My Services -->
</div>
</div>
</section>
<!-- End of Services Subpage -->
<!-- Contact Subpage -->
<section class="pt-page" data-id="contact">
<div class="section-inner custom-page-content">
<div class="page-header color-1">
<h2>Contact</h2>
</div>
<div class="page-content">
<div class="row">
<div class="col-sm-6">
<!-- Put this code anywhere in the body of your page where you want the badge to show up. -->
<div itemscope itemtype='http://schema.org/Person' class='fiverr-seller-widget' style='display: inline-block;'>
<a itemprop='url' href=https://www.fiverr.com/higrow rel="nofollow" target="_blank" style='display: inline-block;'>
<div class='fiverr-seller-content' id='fiverr-seller-widget-content-637dd0df-09f6-449a-b576-10a81e882044' itemprop='contentURL' style='display: none;'></div>
<div id='fiverr-widget-seller-data' style='display: none;'>
<div itemprop='name' >higrow</div>
<div itemscope itemtype='http://schema.org/Organization'><span itemprop='name'>Fiverr</span></div>
<div itemprop='jobtitle'>Seller</div>
<div itemprop='description'>Having been on computers since the dawn of the 2000s. technology comes to me as naturally as music to a gifted musician. Since then, I have grown from a young curious mind into a very well rounded programmer with the skills and experience to work with any framework necessary to get the job done. Programming is my passion and I apply it to every single aspect of my life in on way or another.</div>
</div>
</a>
</div>
<script id='fiverr-seller-widget-script-637dd0df-09f6-449a-b576-10a81e882044' src='https://widgets.fiverr.com/api/v1/seller/higrow?widget_id=637dd0df-09f6-449a-b576-10a81e882044' data-config='{"category_name":"Programming \u0026 Tech"}' async='true' defer='true'></script>
</div>
<div class="col-sm-6">
<div class="col-centered" style="width:100%;max-width:420px">
<div class="block-title text-center">
<h3>Get in <span>Touch</span></h3>
</div>
<div class="row">
<div class="contact-info-block col-sm-12">
<div class="form-group">
<label for="name">Name</label>
<input class="form-control" id="name" />
</div>
<div class="form-group">
<label for="email">Email</label>
<input class="form-control" id="email" />
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea class="form-control" id="message" rows="3"></textarea>
</div>
</div>
<div class="contact-info-block col-sm-12">
<div class="ci-icon">
<i class="fa fa-envelope"></i>
</div>
<div class="ci-text text-center">
<button style="width: 100%" onClick="send_email()">Send Message</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Contact Subpage -->
</div>
</div>
<!-- /Page changer wrapper -->
</div>
<!-- /Main Content -->
</div>
<footer>
<div class="copyrights">© Boone Development 2017 - 2022. All rights reserved.</div>
</footer>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/pages-switcher.js"></script>
<script type="text/javascript" src="js/imagesloaded.pkgd.min.js"></script>
<script type="text/javascript" src="js/validator.js"></script>
<script type="text/javascript" src="js/jquery.shuffle.min.js"></script>
<script type="text/javascript" src="js/masonry.pkgd.min.js"></script>
<script type="text/javascript" src="js/owl.carousel.min.js"></script>
<!-- <script type="text/javascript" src="js/jquery.magnific-popup.min.js"></script> -->
<script type="text/javascript" src="js/jquery.hoverdir.js"></script>
<!-- <script type="text/javascript" src="js/jquery.googlemap.js"></script> -->
<script type="text/javascript" src="js/main.js"></script>
<script>
function send_email() {
var name = $('#name').val();
var email = $('#email').val();
var message = $('#message').val();
if(!name || !email || !message) {
alert("Please make sure to complete the entire form before submitting.");
return;
}
document.location = `mailto:[email protected]?subject=Website Contact From: ${name} (${email})&body=${message}`;
}
</script>
</body>
</html>