-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
994 lines (881 loc) · 65.3 KB
/
index.html
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
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
<!DOCTYPE html>
<!--[if !IE]><!--> <html lang="en-US"> <!--<![endif]-->
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>Joseph Crawford</title>
<link rel="profile" href="http://gmpg.org/xfn/11" />
<meta property="og:type" content="blog" />
<meta property="og:title" content="Joseph Crawford" />
<meta property="og:url" content="http://www.josephcrawford.com" />
<meta property="og:site_name" content="Joseph Crawford" />
<!--[if IE 6]> <meta http-equiv="refresh" content="1;url=/home/codeb2/public_html/jcrawford/wp-content/themes/radiostation/assets/styles/_ie/kill_ie6/ie6.html"><![endif]-->
<!--[if IE 7]> <link rel="stylesheet" type="text/css" href="http://www.josephcrawford.com/wp-content/themes/radiostation/assets/styles/_ie/ie7.css"> <![endif]-->
<!--[if IE 8]> <link rel="stylesheet" type="text/css" href="http://www.josephcrawford.com/wp-content/themes/radiostation/assets/styles/_ie/ie8.css"> <![endif]-->
<!--[if IE 9]> <link rel="stylesheet" type="text/css" href="http://www.josephcrawford.com/wp-content/themes/radiostation/assets/styles/_ie/ie9.css"> <![endif]-->
<!--[if lt IE 10]> <link rel="stylesheet" type="text/css" href="http://www.josephcrawford.com/wp-content/themes/radiostation/assets/styles/_ie/ie.css"> <![endif]-->
<style type="text/css">
.floatleft {
float: left;
margin: 0px 10px 10px 0px;
border: 1px solid #000000;
padding: 2px;
display: inline;
}
.floatcenter {
text-align: center;
margin: 0px 10px 10px 0px;
border: 1px solid #000000;
padding: 2px;
}
.floatright {
float: right;
margin: 0px 0px 10px 10px;
border: 1px solid #000000;
padding: 2px;
display: inline;
}
</style>
<script type="text/javascript">
/* <![CDATA[ */
var imageResize = "wordpress",
resizeDisabled = "",
assetsUri = "/images/production",
imageNonce = "7072fe5b36";
document.write('<style type="text/css">.noscript{visibility: hidden;}</style>');
/* ]]> */
</script>
<link rel='stylesheet' id='pygments-css' href='/css/pygments.css' type='text/css' media='screen' />
<link rel='stylesheet' id='miss_prettyphoto-css' href='/css/prettyPhoto.css' type='text/css' media='screen' />
<link rel='stylesheet' id='missfont1-css' href='http://fonts.googleapis.com/css?family=Open+Sans%3A300italic%2C400italic%2C600italic%2C700italic%2C800italic%2C400%2C800%2C700%2C600%2C300&ver=1.0.8' type='text/css' media='screen' />
<link rel='stylesheet' id='missfont2-css' href='http://fonts.googleapis.com/css?family=Droid+Sans%3A400%2C700&ver=1.0.8' type='text/css' media='screen' />
<link rel='stylesheet' id='missfont3-css' href='http://fonts.googleapis.com/css?family=Lato%3A300%2C400%2C700%2C300italic%2C400italic%2C700italic%2C900%2C900italic&ver=1.0.8' type='text/css' media='screen' />
<link rel='stylesheet' id='missfont4-css' href='http://fonts.googleapis.com/css?family=Monda' type='text/css' media='screen' />
<link rel='stylesheet' id='missshortcodes-css' href='/css/shortcodes.css' type='text/css' media='screen' />
<link rel='stylesheet' id='misswidgets-css' href='/css/widgets.css' type='text/css' media='screen' />
<link rel='stylesheet' id='missgeneral-css' href='/css/style.css' type='text/css' media='screen' />
<link rel='stylesheet' id='missresponsive-css' href='/css/responsive.css' type='text/css' media='screen' />
<link rel='stylesheet' id='missscore-css' href='/css/score.css' type='text/css' media='screen' />
<link rel='stylesheet' id='dropkick-css' href='/css/jquery.selectbox.css' type='text/css' media='screen' />
<link rel='stylesheet' id='light_lightblue-css' href='/css/themes/light_lightblue.css' type='text/css' media='screen' title="light_lightblue" />
<link rel='alternate stylesheet' id='gravity-css' href='/css/themes/gravity.css' type='text/css' media='screen' title="gravity" />
<link rel='alternate stylesheet' id='dark_blue-css' href='/css/themes/dark_blue.css' type='text/css' media='screen' title="dark_blue" />
<link rel='alternate stylesheet' id='dark_coral-css' href='/css/themes/dark_coral.css' type='text/css' media='screen' title="dark_coral" />
<link rel='alternate stylesheet' id='dark_glance-css' href='/css/themes/dark_glance.css' type='text/css' media='screen' title="dark_glance" />
<link rel='alternate stylesheet' id='dark_crimson-css' href='/css/themes/dark_crimson.css' type='text/css' media='screen' title="dark_crimson" />
<link rel='alternate stylesheet' id='dark_glance-css' href='/css/themes/dark_glance.css' type='text/css' media='screen' title="dark_glance" />
<link rel='alternate stylesheet' id='dark_green-css' href='/css/themes/dark_green.css' type='text/css' media='screen' title="dark_green" />
<link rel='alternate stylesheet' id='dark_hotpink-css' href='/css/themes/dark_hotpink.css' type='text/css' media='screen' title="dark_hotpink" />
<link rel='stylesheet' id='override-css' href='/css/override.css' type='text/css' media='screen' />
<style type="text/css">.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style>
<script type='text/javascript' src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script type='text/javascript' src="/js/style-switcher.js"></script>
<script type='text/javascript' src="/js/jquery.selectbox-0.2.min.js"></script>
<script type='text/javascript' src='/js/jquery.prettyPhoto.js'></script>
<script type='text/javascript' src='/js/tabs.min.js'></script>
<script type='text/javascript' src='/js/jquery.flexslider-min.js'></script>
<script type='text/javascript' src='/js/custom.js'></script>
<script type='text/javascript' src='/js/stemmer.js'></script>
<script type='text/javascript' src='/js/site-search.js'></script>
<meta name="generator" content="Jekyll 0.11.2" />
<link rel='shortlink' href='http://wp.me/sEFF' />
<!-- Jetpack Open Graph Tags -->
<script type="text/javascript">
$(document).ready(function() {
var cookie = readCookie("style");
var title = cookie ? cookie : getPreferredStyleSheet();
setActiveStyleSheet(title);
$("#switcher").selectbox({
onChange: function (val, inst) {
setActiveStyleSheet(val);
},
});
$('#main a, #footer a').each(function() {
var a = new RegExp('/' + window.location.host + '/');
if(!a.test(this.href)) {
$(this).click(function(event) {
event.preventDefault();
event.stopPropagation();
window.open(this.href, '_blank');
});
}
});
var top = $('#sidebarWrapper').offset().top - parseFloat($('#sidebarWrapper').css('marginTop').replace(/auto/, 0));
$(window).scroll(function (event) {
// what the y position of the scroll is
var y = $(this).scrollTop();
// whether that's below the form
if (y >= (top-10)) {
// if so, ad the fixed class
$('#sidebarWrapper').addClass('fixed');
$('#sidebarWrapper').css('width', $('#sidebarWrapper').parent().width());
} else {
// otherwise remove it
$('#sidebarWrapper').removeClass('fixed');
}
});
$(window).resize(function() {
$('#sidebarWrapper').css('width', $('#sidebarWrapper').parent().width());
});
});
// var _gaq = _gaq || [];
// _gaq.push(['_setAccount', 'UA-18267810-1']);
// _gaq.push(['_trackPageview']);
(function() {
// var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
// ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
// var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body class="has_slider slider_nav_ flexslider has_header_social has_header_text is_home right_sidebar">
<div class="background">
<div class="background_inner"></div>
</div>
<div id="page_inner">
<div class="top-pattern"></div>
<div class="container">
<div class="sixteen columns">
<div id="header_extras">
<div class="header_social">
<div class="social_icon default">
<a href="http://twitter.com/josephcrawford"><img src="http://www.josephcrawford.com/wp-content/themes/radiostation/assets/images/sociables/default/twitter.png" alt="" /></a>
</div>
<div class="social_icon default">
<a href="https://www.facebook.com/joseph.crawford.16">
<img src="http://www.josephcrawford.com/wp-content/themes/radiostation/assets/images/sociables/default/facebook.png" alt="" />
</a>
</div>
</div>
<div class="header_text">I also waste time on the following social networks:</div>
<div class="clearboth"></div>
</div><!-- #header_extras -->
</div>
<div id="header">
<div class="sixteen columns">
<div class="logo">
<a rel="home" href="http://www.josephcrawford.com/" class="site_title">
<span>Joseph</span><span>Crawford</span>
</a>
</div><!-- .logo -->
<div id="header_ad">
<script type="text/javascript">
<!--
// google_ad_client = "ca-pub-4815878521361271";
/* header right */
// google_ad_slot = "4528456168";
// google_ad_width = 234;
// google_ad_height = 60;
//-->
</script>
<!-- <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script> -->
</div>
</div>
</div><!-- #header -->
<div id="main_menu" class="sixteen columns row">
<div class="main_navigation">
<ul id="menu-menu" class="">
<li id="menu-item-1135" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home">
<a href="/"><span>Home</span></a>
</li>
<li id="menu-item-1135" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home">
<a href="/reviews/"><span>Reviews</span></a>
</li>
<li id="menu-item-2069" class="menu-item menu-item-type-custom menu-item-object-custom menu_arrow">
<a href="#"><span>Articles</span></a>
<ul class="sub-menu">
</li><li class="menu-item menu-item-type-custom menu-item-object-custom menu_arrow"><a href="/articles/jekyll/">Jekyll</a><ul class="sub-menu"><li class="menu-item menu-item-type-custom menu-item-object-custom"><a href="/articles/jekyll/starting-with-jekyll/">[S] Moving to Jekyll</a></li></ul></li><li class="menu-item menu-item-type-custom menu-item-object-custom menu_arrow"><a href="/articles/php/">PHP</a><ul class="sub-menu"><li class="menu-item menu-item-type-custom menu-item-object-custom"><a href="/articles/php/going-deep-inside-php-sessions/">Going Deep Inside PHP Sessions</a></li><li class="menu-item menu-item-type-custom menu-item-object-custom"><a href="/articles/php/an-offensive-word-filter/">An Offensive Word Filter</a></li></ul></li>
</ul>
</li>
<li id="menu-item-2021" class="menu-item menu-item-type-custom menu-item-object-custom menu_arrow">
<a href="#"><span>Resume</span></a>
<ul class="sub-menu">
<li id="menu-item-2022" class="menu-item menu-item-type-custom menu-item-object-custom">
<a href="/resume/resume.pdf">PDF</a>
</li>
<li id="menu-item-2023" class="menu-item menu-item-type-custom menu-item-object-custom">
<a href="/resume/resume.doc">Word</a>
</li>
</ul>
</li>
<li id="menu-item-1134" class="menu-item menu-item-type-post_type menu-item-object-page">
<a href="/about/"><span>About</span></a>
</li>
<li id="menu-item-2014" class="menu-item menu-item-type-post_type menu-item-object-page">
<a href="/contact/"><span>Contact Me</span></a>
</li>
</ul>
</div>
<div class="clearboth"></div>
</div><!-- #main_menu -->
<div id="content">
<div id="content_inner">
<div id="main" class="ten columns clearfix">
<div id="main_inner">
<script type="text/javascript">
/* <![CDATA[ */
jQuery(document).ready(function(){
// YouTube video present
if( $('.youtube_video').length>0 ) {
$('.youtube_video').each(function(index, youtube_video){
onYouTubePlayerAPIReady(youtube_video.id);
});
}
// Vimeo video present
if( $('.vimeo_video').length>0 ) {
$('.vimeo_video').each(function(index, vimeo_video){
Froogaloop.init([vimeo_video]);
vimeo_video.addEvent('onLoad', VimeoEmbed.vimeo_player_loaded);
});
}
$('#miss_flexslider').flexslider({
animation:'',
slideDirection:'',
slideshow: true,
slideshowSpeed: 6000,
animationDuration: 400,
directionNav: true,
controlNav: true,
keyboardNav: true,
mousewheel: false,
prevText: '',
nextText: '',
pausePlay: false,
pauseText: '',
playText: '',
randomize: false,
slideToStart: 0,
height: 'auto',
animationLoop: true,
pauseOnAction: false,
pauseOnHover: false,
after: function() {
$('#slider_module .miss_preloader_large').remove();
$('#miss_flexslider').removeClass('noscript');
}
});
});
/* ]]> */
</script>
<div id="slider_module">
<div id="slider_module_inner">
<div class="miss_preloader_large" style="text-align:center;">
<img src="/images/production/transparent.gif" style="background-image: url(h/images/production/preloader.png);">
</div>
<div id="miss_flexslider">
<ul class="slides">
<li>
<a href="/review/2012/10/timing" class="flex-imageLink">
<img src="/images/posts/featured/timing-featured.png" title="" alt="Timing" width="720" height="auto" />
<div class="flex-caption">
<h2 class="slider_title">Timing</h2>
<div class="slider_desc">A few weeks ago I started a new position with Acronym Media. It has been a while since I have worked remotely so I wanted to make sure that I remain on task during work hours and get distracted as little as possible. </div>
</div>
</a>
</li>
<li>
<a href="/review/2012/10/markdown-pro" class="flex-imageLink">
<img src="/images/posts/featured/markdown-pro-featured.png" title="" alt="Markdown Pro" width="720" height="auto" />
<div class="flex-caption">
<h2 class="slider_title">Markdown Pro</h2>
<div class="slider_desc">When I was working at Dailybreak I was asked to write some documentation so that the company would have this information after my departure. They were using Github for their scm so they asked that I place all of my documentation in the wiki. </div>
</div>
</a>
</li>
<li>
<a href="/review/2011/09/waze" class="flex-imageLink">
<img src="/images/posts/featured/waze.png" title="" alt="Waze" width="720" height="auto" />
<div class="flex-caption">
<h2 class="slider_title">Waze</h2>
<div class="slider_desc">A few weeks ago I bought myself a Bluetooth headset for my motorcycle helmet. I figured now that I have speakers in my helmet it was time to check out the navigation options for my Android phone. </div>
</div>
</a>
</li>
<li>
<a href="/review/2010/05/the-nokia-n900" class="flex-imageLink">
<img src="/images/posts/featured/n900.png" title="" alt="The Nokia N900" width="720" height="auto" />
<div class="flex-caption">
<h2 class="slider_title">The Nokia N900</h2>
<div class="slider_desc">I am writing this post from my new N900 which was provided to me by my employer. I have been using the phone for the last few days. At first i was a it concerned that i was not going to like the device, i will explain why next. </div>
</div>
</a>
</li>
<li>
<a href="/review/2010/03/the-palm-pre" class="flex-imageLink">
<img src="/images/posts/featured/WebOS.png" title="" alt="The Palm Pre" width="720" height="auto" />
<div class="flex-caption">
<h2 class="slider_title">The Palm Pre</h2>
<div class="slider_desc">If you have ready anything on my site regarding the Palm Pre you will find that every review is good in nature. However I feel those reviews have more to do with the functionality of the phone and not the actual hardware. </div>
</div>
</a>
</li>
<li>
<a href="/review/2009/08/review-plantronics-voyager-855" class="flex-imageLink">
<img src="/images/posts/featured/" title="" alt="Review: Plantronics Voyager 855" width="720" height="auto" />
<div class="flex-caption">
<h2 class="slider_title">Review: Plantronics Voyager 855</h2>
<div class="slider_desc"> </div>
</div>
</a>
</li>
<li>
<a href="/review/2009/08/review-webos-resources" class="flex-imageLink">
<img src="/images/posts/featured/" title="" alt="Review: WebOS Resources" width="720" height="auto" />
<div class="flex-caption">
<h2 class="slider_title">Review: WebOS Resources</h2>
<div class="slider_desc"> </div>
</div>
</a>
</li>
<li>
<a href="/review/2009/08/review-mojo-and-webos" class="flex-imageLink">
<img src="/images/posts/featured/WebOS.png" title="" alt="Review: Mojo and WebOS" width="720" height="auto" />
<div class="flex-caption">
<h2 class="slider_title">Review: Mojo and WebOS</h2>
<div class="slider_desc"> </div>
</div>
</a>
</li>
<li>
<a href="/review/2009/07/review-the-palm-pre" class="flex-imageLink">
<img src="/images/posts/featured/" title="" alt="Review: The Palm Pre" width="720" height="auto" />
<div class="flex-caption">
<h2 class="slider_title">Review: The Palm Pre</h2>
<div class="slider_desc"> </div>
</div>
</a>
</li>
<li>
<a href="/review/2009/03/review-inspectorkit-10-released" class="flex-imageLink">
<img src="/images/posts/featured/" title="" alt="Review: InspectorKit 1.0 Released" width="720" height="auto" />
<div class="flex-caption">
<h2 class="slider_title">Review: InspectorKit 1.0 Released</h2>
<div class="slider_desc"> </div>
</div>
</a>
</li>
</ul>
</div><!-- #miss_flexslider -->
<div class="clearboth"></div>
</div>
</div>
<ul class="post_list blog_layout2">
<li class="post type-post status-publish format-standard hentry post_list_module">
<div class="post_list_content">
<h2 class="post_title">
<a href="/2012/12/dear-recruiters" title="Dear Recruiters" rel="bookmark">Dear Recruiters</a>
</h2>
<p class="post_meta">
<span class="meta_date">Posted <a href="/2012/12/" title="December 20, 2012">December 20, 2012</a></span>
<span class="meta_category">in <a class='category' href='/category/news/'>News</a></span>
<span class="meta_comments"> with <a href="/index.html/#respond" title="Comment on Dear Recruiters">0 Comments</a></span>
</p>
<div class="post_excerpt">
<p>
I was recently in contact with a recruiter who thought that I was unprofessional and/or that I did not appreciate all the hard work they put in for me during a previous job search, they also implied that I was not acting in a professional manner because their clients expect them to represent the most professional developers
<small>…</small>
</p>
<p class="read_more_link">
<a class="post_more_link" href="/2012/12/dear-recruiters">Read More</a>
</p>
</div>
</div><!-- .content_class -->
</li><!-- #post-## --><li class="post type-post status-publish format-standard hentry post_list_module">
<div class="post_list_content">
<h2 class="post_title">
<a href="/2012/12/php-master-series" title="PHP Master Series" rel="bookmark">PHP Master Series</a>
</h2>
<p class="post_meta">
<span class="meta_date">Posted <a href="/2012/12/" title="December 18, 2012">December 18, 2012</a></span>
<span class="meta_category">in <a class='category' href='/category/development/'>Development</a>, <a class='category' href='/category/entertainment/'>Entertainment</a>, <a class='category' href='/category/internet/'>Internet</a>, <a class='category' href='/category/raves/'>Raves</a>, <a class='category' href='/category/useful/'>Useful</a></span>
<span class="meta_comments"> with <a href="/index.html/#respond" title="Comment on PHP Master Series">0 Comments</a></span>
</p>
<div class="post_excerpt">
<p>
What are your plans December 21st? Other than the world coming to an end <a href="http://blog.calevans.com/" title="Cal Evans" target="_blank">Cal Evans</a> has organized an amazing online PHP conference. If you are a PHP Developer there will be no better way to spend that day than to attend the <a href="http://phpmasterseriesv1.eventbrite.com/" title="PHP Master Series" target="_blank">PHP Master Series</a> online developer conference. Seriously if you are a PHP developer <strong>YOU NEED TO ATTEND</strong> this online conference.
<small>…</small>
</p>
<p class="read_more_link">
<a class="post_more_link" href="/2012/12/php-master-series">Read More</a>
</p>
</div>
</div><!-- .content_class -->
</li><!-- #post-## --><li class="post type-post status-publish format-standard hentry post_list_module">
<div class="post_list_content">
<h2 class="post_title">
<a href="/2012/11/a-new-look" title="A New Look" rel="bookmark">A New Look</a>
</h2>
<p class="post_meta">
<span class="meta_date">Posted <a href="/2012/11/" title="November 03, 2012">November 03, 2012</a></span>
<span class="meta_category">in <a class='category' href='/category/entertainment/'>Entertainment</a>, <a class='category' href='/category/internet/'>Internet</a>, <a class='category' href='/category/news/'>News</a>, <a class='category' href='/category/websites/'>Websites</a></span>
<span class="meta_comments"> with <a href="/index.html/#respond" title="Comment on A New Look">0 Comments</a></span>
</p>
<div class="post_excerpt">
<p>
You might noticed that there has been some downtime for my site today, I apologize however I was working on changing the look of the site. I wanted to be able to keep up with Wordpress and the features they offer for themes however I was unable to find the time to custom write my theme again.
<small>…</small>
</p>
<p class="read_more_link">
<a class="post_more_link" href="/2012/11/a-new-look">Read More</a>
</p>
</div>
</div><!-- .content_class -->
</li><!-- #post-## --><li class="post type-post status-publish format-standard hentry post_list_module">
<div class="post_list_content">
<h2 class="post_title">
<a href="/2012/10/sub-domain-pointing-to-my-home-computer" title="Sub-Domain Pointing to my Home Computer" rel="bookmark">Sub-Domain Pointing to my Home Computer</a>
</h2>
<p class="post_meta">
<span class="meta_date">Posted <a href="/2012/10/" title="October 21, 2012">October 21, 2012</a></span>
<span class="meta_category">in <a class='category' href='/category/development/'>Development</a>, <a class='category' href='/category/entertainment/'>Entertainment</a>, <a class='category' href='/category/internet/'>Internet</a>, <a class='category' href='/category/news/'>News</a>, <a class='category' href='/category/raves/'>Raves</a>, <a class='category' href='/category/tutorials/'>Tutorials</a>, <a class='category' href='/category/useful/'>Useful</a>, <a class='category' href='/category/websites/'>Websites</a>, <a class='category' href='/category/work/'>Work</a></span>
<span class="meta_comments"> with <a href="/index.html/#respond" title="Comment on Sub-Domain Pointing to my Home Computer">0 Comments</a></span>
</p>
<div class="post_excerpt">
<p>
For many years I have always wondered just how difficult it would be to make a sub-domain point to my home computer. I never really took the time to look into it because my web host Lunarpages does not offer this ability through CPanel. However recently I changed domain registrars from GoDaddy to <a href="http://www.namecheap.com/" title="NameCheap" target="_blank">NameCheap</a> due to the SOPA controversy started by <a href="http://www.josephcrawford.com/2012/01/02/godaddy-sopa-domains-transferre/" title="Godaddy SOPA: Domains Transferred">GoDaddy publicly supporting SOPA</a>. Since I switched to <a href="http://www.namecheap.com/" title="NameCheap" target="_blank">NameCheap</a> I noticed that they offer free dns services. I started to look into this today and found that it works exactly as I thought and will allow you to customize your DNS to your liking.
<small>…</small>
</p>
<p class="read_more_link">
<a class="post_more_link" href="/2012/10/sub-domain-pointing-to-my-home-computer">Read More</a>
</p>
</div>
</div><!-- .content_class -->
</li><!-- #post-## --><li class="post type-post status-publish format-standard hentry post_list_module">
<div class="post_list_content">
<h2 class="post_title">
<a href="/2012/10/time-between-posts" title="Time Between Posts" rel="bookmark">Time Between Posts</a>
</h2>
<p class="post_meta">
<span class="meta_date">Posted <a href="/2012/10/" title="October 10, 2012">October 10, 2012</a></span>
<span class="meta_category">in <a class='category' href='/category/development/'>Development</a>, <a class='category' href='/category/entertainment/'>Entertainment</a>, <a class='category' href='/category/internet/'>Internet</a>, <a class='category' href='/category/local/'>Local</a>, <a class='category' href='/category/news/'>News</a>, <a class='category' href='/category/raves/'>Raves</a>, <a class='category' href='/category/useful/'>Useful</a>, <a class='category' href='/category/websites/'>Websites</a>, <a class='category' href='/category/work/'>Work</a></span>
<span class="meta_comments"> with <a href="/index.html/#respond" title="Comment on Time Between Posts">0 Comments</a></span>
</p>
<div class="post_excerpt">
<p>
I want to start out by apologizing that I have not been posting that frequently and not really posting any content with meat. Things will be changing soon and I will be updating this site more and more frequently. I plan to continue writing about PHP but I also might start looking at Python and writing about that too.
<small>…</small>
</p>
<p class="read_more_link">
<a class="post_more_link" href="/2012/10/time-between-posts">Read More</a>
</p>
</div>
</div><!-- .content_class -->
</li><!-- #post-## --><li class="post type-post status-publish format-standard hentry post_list_module">
<div class="post_list_content">
<h2 class="post_title">
<a href="/2012/09/xperttech-update" title="XpertTech Update" rel="bookmark">XpertTech Update</a>
</h2>
<p class="post_meta">
<span class="meta_date">Posted <a href="/2012/09/" title="September 11, 2012">September 11, 2012</a></span>
<span class="meta_category">in <a class='category' href='/category/entertainment/'>Entertainment</a>, <a class='category' href='/category/internet/'>Internet</a>, <a class='category' href='/category/local/'>Local</a>, <a class='category' href='/category/news/'>News</a>, <a class='category' href='/category/rants/'>Rants</a>, <a class='category' href='/category/useful/'>Useful</a>, <a class='category' href='/category/websites/'>Websites</a></span>
<span class="meta_comments"> with <a href="/index.html/#respond" title="Comment on XpertTech Update">0 Comments</a></span>
</p>
<div class="post_excerpt">
<p>
Over the past few weeks recruiters from this company started to reach out to me again. I started emailing them back telling them to leave me alone and it did not help. Today I tried another tactic. I told them that if they did not leave me alone I would focus all of my energy on pissing them off. I blasted them with a few faxes from a free online service showing the link to my <a href="http://www.josephcrawford.com/2012/04/13/annoying-recruiters-xperttech/" title="Annoying Recruiters (XpertTech)">last post about xpertech</a> and I think I might have finally gotten through to them.
<small>…</small>
</p>
<p class="read_more_link">
<a class="post_more_link" href="/2012/09/xperttech-update">Read More</a>
</p>
</div>
</div><!-- .content_class -->
</li><!-- #post-## --><li class="post type-post status-publish format-standard hentry post_list_module">
<div class="post_list_content">
<h2 class="post_title">
<a href="/2012/08/northeast-php-conference-2012" title="Northeast PHP Conference 2012" rel="bookmark">Northeast PHP Conference 2012</a>
</h2>
<p class="post_meta">
<span class="meta_date">Posted <a href="/2012/08/" title="August 13, 2012">August 13, 2012</a></span>
<span class="meta_category">in <a class='category' href='/category/entertainment/'>Entertainment</a>, <a class='category' href='/category/internet/'>Internet</a>, <a class='category' href='/category/local/'>Local</a>, <a class='category' href='/category/news/'>News</a>, <a class='category' href='/category/raves/'>Raves</a>, <a class='category' href='/category/reviews/'>Reviews</a>, <a class='category' href='/category/websites/'>Websites</a></span>
<span class="meta_comments"> with <a href="/index.html/#respond" title="Comment on Northeast PHP Conference 2012">0 Comments</a></span>
</p>
<div class="post_excerpt">
<p>
<img src="http://www.josephcrawford.com/wp-content/uploads/2012/08/logo.png" alt="" title="logo" width="300" height="169" class="floatleft" />This weekend had to be one of the most enjoyable weekends that did not include close friends or family. I was finally able to attend my first PHP Conference after working with PHP since 1997 which was the <a href="http://www.northeastphp.org/" title="Northeast PHP Conference" target="_blank">Northeast PHP Conference</a>. You might be asking why this was the first conference I have attended? Well if you are familiar with conferences then you know that the tickets are generally over a thousand dollars. It has not an easy task to get any of my past employers to pay for your conference ticket never-mind your airline and hotel. I personally could not afford to do things like that myself as it would cost as much as a small vacation.
<small>…</small>
</p>
<p class="read_more_link">
<a class="post_more_link" href="/2012/08/northeast-php-conference-2012">Read More</a>
</p>
</div>
</div><!-- .content_class -->
</li><!-- #post-## --><li class="post type-post status-publish format-standard hentry post_list_module">
<div class="post_list_content">
<h2 class="post_title">
<a href="/2012/07/ouya-android-based-gaming-console" title="OUYA: Android Based Gaming Console" rel="bookmark">OUYA: Android Based Gaming Console</a>
</h2>
<p class="post_meta">
<span class="meta_date">Posted <a href="/2012/07/" title="July 10, 2012">July 10, 2012</a></span>
<span class="meta_category">in <a class='category' href='/category/entertainment/'>Entertainment</a>, <a class='category' href='/category/internet/'>Internet</a>, <a class='category' href='/category/news/'>News</a>, <a class='category' href='/category/raves/'>Raves</a>, <a class='category' href='/category/software/'>Software</a>, <a class='category' href='/category/useful/'>Useful</a>, <a class='category' href='/category/websites/'>Websites</a></span>
<span class="meta_comments"> with <a href="/index.html/#respond" title="Comment on OUYA: Android Based Gaming Console">0 Comments</a></span>
</p>
<div class="post_excerpt">
<p>
Early this morning at 1am OUYA kicked off the <a href="http://www.kickstarter.com/projects/ouya/ouya-a-new-kind-of-video-game-console" title="OUYA on Kickstarter">Kickstarter project</a> to get funding for a new Android 4 based gaming console that would be an open system.
<small>…</small>
</p>
<p class="read_more_link">
<a class="post_more_link" href="/2012/07/ouya-android-based-gaming-console">Read More</a>
</p>
</div>
</div><!-- .content_class -->
</li><!-- #post-## --><li class="post type-post status-publish format-standard hentry post_list_module">
<div class="post_list_content">
<h2 class="post_title">
<a href="/2012/06/freewordpress-development-environment" title="Free WordPress Development Environment" rel="bookmark">Free WordPress Development Environment</a>
</h2>
<p class="post_meta">
<span class="meta_date">Posted <a href="/2012/06/" title="June 29, 2012">June 29, 2012</a></span>
<span class="meta_category">in <a class='category' href='/category/development/'>Development</a>, <a class='category' href='/category/internet/'>Internet</a>, <a class='category' href='/category/raves/'>Raves</a>, <a class='category' href='/category/tutorials/'>Tutorials</a>, <a class='category' href='/category/websites/'>Websites</a></span>
<span class="meta_comments"> with <a href="/index.html/#respond" title="Comment on Free WordPress Development Environment">0 Comments</a></span>
</p>
<div class="post_excerpt">
<p>
Over the years I have been running this site and never even really had to think about WordPress or a development environment. Lately I have been looking at plugin development and nothing I have been reading has even once mentioned a sandbox or development environment.
<small>…</small>
</p>
<p class="read_more_link">
<a class="post_more_link" href="/2012/06/freewordpress-development-environment">Read More</a>
</p>
</div>
</div><!-- .content_class -->
</li><!-- #post-## --><li class="post type-post status-publish format-standard hentry post_list_module">
<div class="post_list_content">
<h2 class="post_title">
<a href="/2012/04/campuslive-hack-a-thon" title="CampusLIVE Hack-A-Thon" rel="bookmark">CampusLIVE Hack-A-Thon</a>
</h2>
<p class="post_meta">
<span class="meta_date">Posted <a href="/2012/04/" title="April 27, 2012">April 27, 2012</a></span>
<span class="meta_category">in <a class='category' href='/category/news/'>News</a>, <a class='category' href='/category/raves/'>Raves</a>, <a class='category' href='/category/tutorials/'>Tutorials</a>, <a class='category' href='/category/useful/'>Useful</a>, <a class='category' href='/category/websites/'>Websites</a>, <a class='category' href='/category/work/'>Work</a></span>
<span class="meta_comments"> with <a href="/index.html/#respond" title="Comment on CampusLIVE Hack-A-Thon">0 Comments</a></span>
</p>
<div class="post_excerpt">
<p>
Over the last few weeks there has been quite a bit of new development being done on the <a href="http://www.campuslive.com/"><del datetime="2012-12-20T22:48:35+00:00">CampusLIVE!</del></a> site and Jared thought it would be a good idea to give developers a break from the every-day coding. He decided that today we would take a 3 hour block of time from 9am - 12pm and see what we could brainstorm with a new technology he found. We plan to do this about every 2 weeks so things will be getting very interesting at <a href="http://www.campuslive.com/"><del datetime="2012-12-20T22:48:35+00:00">CampusLIVE!</del></a>
<small>…</small>
</p>
<p class="read_more_link">
<a class="post_more_link" href="/2012/04/campuslive-hack-a-thon">Read More</a>
</p>
</div>
</div><!-- .content_class -->
</li><!-- #post-## -->
</ul>
<div class="wp-pagenavi">
<span class="pagenavi-pages">Page 1 of 33</span>
<!-- pager_start: , pager_end: 5 -->
<span class="current">1</span>
<a href="/page/2/" class="pagenavi-page" title="2">2</a>
<a href="/page/3/" class="pagenavi-page" title="3">3</a>
<a href="/page/4/" class="pagenavi-page" title="4">4</a>
<a href="/page/5/" class="pagenavi-page" title="5">5</a>
<a href="/page/2/" >→</a>
<a href="/page/33/" class="last" title="Last »">Last »</a>
</div>
<div class="clearboth"></div>
</div><!-- #main_inner -->
</div><!-- #main -->
<div id="sidebar" class="six columns">
<div id="sidebar_inner">
<div id="search-3" class="widget widget_search">
<form id="searchform">
<input type="text" name="s" id="s" value="Enter Your Search Term" onfocus="if(this.value=='Enter Your Search Term')this.value='';" onblur="if(this.value=='')this.value='Enter Your Search Term';">
</form>
</div>
<div class="clearboth"></div>
<div id="themes">
<div id="style-switcher">
<h4 class="widgettitle">Select Theme: </h4>
<select name="switcher" id="switcher" style="pretty dk">
<option value='light_lightblue'>Default</option>
<option value='gravity'>Gravity</option>
<option value='dark_blue'>Dark Blue</option>
<option value='dark_coral'>Dark Coral</option>
<option value='dark_crimson'>Dark Crimson</option>
<option value='dark_glance'>Dark Glance</option>
<option value='dark_green'>Dark Green</option>
<option value='dark_hotpink'>Dark Hotpink</option>
</select>
</div>
</div>
<div class="clearboth"></div>
<div id="categories-3" class="widget widget_categories">
<h4 class="widgettitle"><span>Categories</span></h4>
<ul>
<li class="cat-item cat-item-4">
<a href="/category/development/" title="Development">Development</a>
</li>
<li class="cat-item cat-item-4">
<a href="/category/reviews/" title="Reviews">Reviews</a>
</li>
<li class="cat-item cat-item-4">
<a href="/category/raves/" title="Raves">Raves</a>
</li>
<li class="cat-item cat-item-4">
<a href="/category/reviews/" title="Reviews">Reviews</a>
</li>
<li class="cat-item cat-item-4">
<a href="/category/development/" title="Development">Development</a>
</li>
<li class="cat-item cat-item-4">
<a href="/category/rants/" title="Rants">Rants</a>
</li>
<li class="cat-item cat-item-4">
<a href="/category/work/" title="Work">Work</a>
</li>
<li class="cat-item cat-item-4">
<a href="/category/entertainment/" title="Entertainment">Entertainment</a>
</li>
<li class="cat-item cat-item-4">
<a href="/category/internet/" title="Internet">Internet</a>
</li>
<li class="cat-item cat-item-4">
<a href="/category/news/" title="News">News</a>
</li>
<li class="cat-item cat-item-4">
<a href="/category/mac/" title="Mac">Mac</a>
</li>
<li class="cat-item cat-item-4">
<a href="/category/software/" title="Software">Software</a>
</li>
<li class="cat-item cat-item-4">
<a href="/category/tutorials/" title="Tutorials">Tutorials</a>
</li>
<li class="cat-item cat-item-4">
<a href="/category/ppp/" title="Ppp">Ppp</a>
</li>
<li class="cat-item cat-item-4">
<a href="/category/websites/" title="Websites">Websites</a>
</li>
<li class="cat-item cat-item-4">
<a href="/category/local/" title="Local">Local</a>
</li>
<li class="cat-item cat-item-4">
<a href="/category/useful/" title="Useful">Useful</a>
</li>
<li class="cat-item cat-item-4">
<a href="/category/javascript/" title="Javascript">Javascript</a>
</li>
</ul>
</div>
<div class="clearboth"></div>
<div id="top-posts-2" class="widget widget_top-posts"><h4 class="widgettitle"><span>Top Posts & Pages</span></h4><ul class='widgets-list-layout no-grav'>
<li>
<img src="http://1.gravatar.com/avatar/bf6bc93ab3eeef8996970fa8ac9895a3?s=40&d=http%3A%2F%2Fs1.wp.com%2Fi%2Flogo%2Fwhite-gray-80.png%3Fs%3D40&r=PG" class='widgets-list-layout-blavatar' />
<div class="widgets-list-layout-links"><a href="http://www.josephcrawford.com/php-articles/going-deep-inside-php-sessions/" class="bump-view" data-bump-view="tp">Going deep inside PHP sessions</a></div>
</li>
<li>
<img src="http://1.gravatar.com/avatar/bf6bc93ab3eeef8996970fa8ac9895a3?s=40&d=http%3A%2F%2Fs1.wp.com%2Fi%2Flogo%2Fwhite-gray-80.png%3Fs%3D40&r=PG" class='widgets-list-layout-blavatar' />
<div class="widgets-list-layout-links"><a href="http://www.josephcrawford.com/2012/12/php-master-series/" class="bump-view" data-bump-view="tp">PHP Master Series</a></div>
</li>
<li>
<img src="http://i0.wp.com/www.josephcrawford.com/wp-content/uploads/2008/04/tagchimp.png?resize=40%2C40" class='widgets-list-layout-blavatar' />
<div class="widgets-list-layout-links"><a href="http://www.josephcrawford.com/2008/05/metax-and-tagchimp/" class="bump-view" data-bump-view="tp">MetaX and tagChimp</a></div>
</li>
<li>
<img src="http://i1.wp.com/www.josephcrawford.com/wp-content/uploads/2009/05/ffusa-featured.png?resize=40%2C40" class='widgets-list-layout-blavatar' />
<div class="widgets-list-layout-links"><a href="http://www.josephcrawford.com/2009/05/first-financial-usa-ffusa/" class="bump-view" data-bump-view="tp">First Financial USA (FFUSA)</a></div>
</li>
<li>
<img src="http://i0.wp.com/www.josephcrawford.com/wp-content/uploads/2009/08/WebOS.png?resize=40%2C40" class='widgets-list-layout-blavatar' />
<div class="widgets-list-layout-links"><a href="http://www.josephcrawford.com/2009/08/a-basic-webos-application-and-the-depot/" class="bump-view" data-bump-view="tp">A Basic WebOS Application and the Depot</a></div>
</li>
<li>
<img src="http://i0.wp.com/www.josephcrawford.com/wp-content/uploads/2006/11/photo_isight.jpeg?resize=40%2C40" class='widgets-list-layout-blavatar' />
<div class="widgets-list-layout-links"><a href="http://www.josephcrawford.com/2006/11/scary-isight-trick/" class="bump-view" data-bump-view="tp">Scary iSight Trick</a></div>
</li>
<li>
<img src="http://1.gravatar.com/avatar/bf6bc93ab3eeef8996970fa8ac9895a3?s=40&d=http%3A%2F%2Fs1.wp.com%2Fi%2Flogo%2Fwhite-gray-80.png%3Fs%3D40&r=PG" class='widgets-list-layout-blavatar' />
<div class="widgets-list-layout-links"><a href="http://www.josephcrawford.com/2010/09/bose-companion-5-and-ubuntu/" class="bump-view" data-bump-view="tp">Bose Companion 5 and Ubuntu (SOLVED)</a></div>
</li>
<li>
<img src="http://1.gravatar.com/avatar/bf6bc93ab3eeef8996970fa8ac9895a3?s=40&d=http%3A%2F%2Fs1.wp.com%2Fi%2Flogo%2Fwhite-gray-80.png%3Fs%3D40&r=PG" class='widgets-list-layout-blavatar' />
<div class="widgets-list-layout-links"><a href="http://www.josephcrawford.com/about/" class="bump-view" data-bump-view="tp">About</a></div>
</li>
<li>
<img src="http://1.gravatar.com/avatar/bf6bc93ab3eeef8996970fa8ac9895a3?s=40&d=http%3A%2F%2Fs1.wp.com%2Fi%2Flogo%2Fwhite-gray-80.png%3Fs%3D40&r=PG" class='widgets-list-layout-blavatar' />
<div class="widgets-list-layout-links"><a href="http://www.josephcrawford.com/macdev-articles/using-foundations-nslog-function/" class="bump-view" data-bump-view="tp">Using Foundation's NSLog Function</a></div>
</li>
</ul>
</div>
<div id="popularwidget-2" class="widget miss_popular_widget">
<h4 class="widgettitle">
<span>Popular Posts</span>
</h4>
<ul class="post_list small_post_list">
<li class="post_list_module">
<div class="post_list_image">
<a href="http://www.josephcrawford.com/2007/11/phpwomen-a-site-for-women-programming-php/" title="PHPWomen: A site for women programming PHP">
<img class="hover_fade_js" src="http://www.josephcrawford.com/wp-content/themes/radiostation/cache/php_women_2010_large_calendar-p158038689179469171b7aic_400-119x72.jpeg" title="PHPWomen: A site for women programming PHP" alt="Php Women 2010 Large Calendar P158038689179469171b7aic 400" width="119" height="72" />
</a>
</div>
<div class="post_list_content">
<p class="post_title">
<a rel="bookmark" href="http://www.josephcrawford.com/2007/11/phpwomen-a-site-for-women-programming-php/" title="PHPWomen: A site for women programming PHP">PHPWomen: A site for women programming PHP</a>
</p>
</div>
</li>
<li class="post_list_module">
<div class="post_list_image">
<a href="http://www.josephcrawford.com/2009/03/the-new-itunes-hdcp-content/" title="The New iTunes HDCP Content">
<img class="hover_fade_js" src="http://www.josephcrawford.com/wp-content/themes/radiostation/cache/hdcp-featured-119x72.png" title="The New iTunes HDCP Content" alt="Hdcp Featured" width="119" height="72" />
</a>
</div>
<div class="post_list_content">
<p class="post_title">
<a rel="bookmark" href="http://www.josephcrawford.com/2009/03/the-new-itunes-hdcp-content/" title="The New iTunes HDCP Content">The New iTunes HDCP Content</a>
</p>
</div>
</li>
<li class="post_list_module">
<div class="post_list_image">
<a href="http://www.josephcrawford.com/2007/10/customizing-the-leopard-dock/" title="Customizing the Leopard Dock">
<img class="hover_fade_js" src="http://www.josephcrawford.com/wp-content/themes/radiostation/cache/dock-featured-119x72.png" title="Customizing the Leopard Dock" alt="Dock Featured" width="119" height="72" />
</a>
</div>
<div class="post_list_content">
<p class="post_title">
<a rel="bookmark" href="http://www.josephcrawford.com/2007/10/customizing-the-leopard-dock/" title="Customizing the Leopard Dock">Customizing the Leopard Dock</a>
</p>
</div>
</li>
</ul>
</div>
<div id="popularwidget-2" class="widget">
<h4 class="widgettitle">
<span>Tag Cloud</span>
</h4>
<a style='font-size: 147%' href='/tags/Jokes'>Jokes</a>
<a style='font-size: 92%' href='/tags/Uncategorized'>Uncategorized</a>
<a style='font-size: 280%' href='/tags/Entertainment'>Entertainment</a>
<a style='font-size: 157%' href='/tags/Frameworks'>Frameworks</a>
<a style='font-size: 237%' href='/tags/Rants'>Rants</a>
<a style='font-size: 143%' href='/tags/JavaScript'>JavaScript</a>
<a style='font-size: 75%' href='/tags/Scams'>Scams</a>
<a style='font-size: 92%' href='/tags/Phones'>Phones</a>
<a style='font-size: 224%' href='/tags/Local'>Local</a>
<a style='font-size: 75%' href='/tags/server-side'>server-side</a>
<a style='font-size: 92%' href='/tags/TV'>TV</a>
<a style='font-size: 250%' href='/tags/Reviews'>Reviews</a>
<a style='font-size: 217%' href='/tags/Software'>Software</a>
<a style='font-size: 241%' href='/tags/Websites'>Websites</a>
<a style='font-size: 75%' href='/tags/best-practices'>best-practices</a>
<a style='font-size: 75%' href='/tags/Hardware'>Hardware</a>
<a style='font-size: 75%' href='/tags/php'>php</a>
<a style='font-size: 235%' href='/tags/Mac'>Mac</a>
<a style='font-size: 165%' href='/tags/PHP'>PHP</a>
<a style='font-size: 181%' href='/tags/Work'>Work</a>
<a style='font-size: 207%' href='/tags/Tutorials'>Tutorials</a>
<a style='font-size: 143%' href='/tags/Family'>Family</a>
<a style='font-size: 279%' href='/tags/Internet'>Internet</a>
<a style='font-size: 271%' href='/tags/Raves'>Raves</a>
<a style='font-size: 212%' href='/tags/Useful'>Useful</a>
<a style='font-size: 181%' href='/tags/PPP'>PPP</a>
<a style='font-size: 147%' href='/tags/Palm'>Palm</a>
<a style='font-size: 230%' href='/tags/Development'>Development</a>
<a style='font-size: 266%' href='/tags/News'>News</a>
<!-- tagcloud goes here -->
</div>
</div><!-- #sidebar_inner -->
</div><!-- #sidebar -->
<div class="clearboth"></div>
</div><!-- #content_inner -->
</div><!-- #content -->
</div> <!-- .container -->
<div id="footer">
<div class="background">
<div class="background"></div>
</div>
<div class="container">
<div class="sixteen columns">
<div class="one_fourth"><div id="cr_plmanager_widget-2" class="widget widget_cr_plmanager_widget"><h4 class="widgettitle"><span>Sponsors</span></h4><div class="textwidget"><a href='http://www.shimonsandler.com/'>SEO Consulting</a></div></div></div><div class="three_fourth last"></div><div class="clearboth"></div> </div>
</div>
</div><!-- #footer -->
<div id="sub_footer"><div class="container"><div class="sixteen columns"><div class="copyright_text">Copyright © "Joseph Crawford" 2012. All rights reserved. </div></div><!-- columns --></div><!-- container --></div><!-- #sub_footer --></div><!-- #page_inner -->
<img src="http://www.josephcrawford.com/wp-content/plugins/welamazonadds/images/empty.png?n=0187a1f2eb&priceIndicator=&backgroundColor=%23F4F4F4&borderColor=%23000000&textColor=%23000000&linkColor=%230000FF&target=_blank&imageSize=IS2" src="" width="0" height="0" id="WAA_interim" /> <div style="display:none">
<div class="grofile-hash-map-bf6bc93ab3eeef8996970fa8ac9895a3">
</div>
</div>
<script type='text/javascript' src='http://www.josephcrawford.com/wp-content/themes/radiostation/framework/scripts/prettyphoto/js/jquery.prettyPhoto.js?ver=1.0.8'></script>
<script type='text/javascript' src='http://s0.wp.com/wp-content/js/devicepx-jetpack.js?ver=201251'></script>
<script type='text/javascript' src='http://s.gravatar.com/js/gprofiles.js?ver=2012Decaa'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var WPGroHo = {"my_hash":""};
/* ]]> */
</script>
<script type='text/javascript' src='http://www.josephcrawford.com/wp-content/plugins/jetpack/modules/wpgroho.js?ver=3.5'></script>
<style type='text/css'>img#wpstats{display:none}</style>
<script type="text/javascript">
/* <![CDATA[ */
jQuery('.blog_layout1').preloader({
imgSelector: '.blog_index_image_load span img',
imgAppend: '.blog_index_image_load'
});
jQuery('.blog_layout2').preloader({
imgSelector: '.blog_index_image_load span img',
imgAppend: '.blog_index_image_load'
});
jQuery('.blog_layout3').preloader({
imgSelector: '.blog_index_image_load span img',
imgAppend: '.blog_index_image_load'
});
jQuery('.single_post_module').preloader({
imgSelector: '.blog_index_image_load span img',
imgAppend: '.blog_index_image_load'
});
jQuery('.one_column_portfolio').preloader({
imgSelector: '.portfolio_img_load span img',
imgAppend: '.portfolio_img_load'
});
jQuery('.two_column_portfolio').preloader({
imgSelector: '.portfolio_img_load span img',
imgAppend: '.portfolio_img_load'
});
jQuery('.three_column_portfolio').preloader({
imgSelector: '.portfolio_img_load span img',
imgAppend: '.portfolio_img_load'
});
jQuery('.four_column_portfolio').preloader({
imgSelector: '.portfolio_img_load span img',
imgAppend: '.portfolio_img_load'
});
jQuery('.portfolio_gallery.large_post_list').preloader({
imgSelector: '.portfolio_img_load span img',
imgAppend: '.portfolio_img_load'
});
jQuery('.portfolio_gallery.medium_post_list').preloader({
imgSelector: '.portfolio_img_load span img',
imgAppend: '.portfolio_img_load'
});
jQuery('.portfolio_gallery.small_post_list').preloader({
imgSelector: '.portfolio_img_load span img',
imgAppend: '.portfolio_img_load'
});
jQuery('#main_inner').preloader({
imgSelector: '.portfolio_full_image span img',
imgAppend: '.portfolio_full_image'
});
jQuery('#main_inner').preloader({
imgSelector: '.blog_sc_image_load span img',
imgAppend: '.blog_sc_image_load'
});
jQuery('#main_inner').preloader({
imgSelector: '.styled_image_load span img',
imgAppend: '.styled_image_load'
});
jQuery('#intro_inner').preloader({
imgSelector: '.styled_image_load span img',
imgAppend: '.styled_image_load'
}); /* ]]> */
<!--[if lt IE 10]>
<script type="text/javascript">
jQuery(".flex - imageLink img ").animate({
height ":"
386px
},500);
</script>
<![endif]-->
</body>
</html>