-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnews.html
1050 lines (1022 loc) · 70.8 KB
/
news.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
995
996
997
998
999
1000
<!DOCTYPE html>
<!-- saved from url=(0025)http://makerbar.com/blog/ -->
<html xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:website="http://ogp.me/ns/website" lang="en-US" itemscope="" itemtype="http://schema.org/WebPage" class="yui3-js-enabled js flexbox canvas canvastext webgl no-touch hashchange history draganddrop rgba hsla multiplebgs backgroundsize borderimage borderradius boxshadow textshadow opacity cssanimations csscolumns cssgradients cssreflections csstransforms no-csstransforms3d csstransitions video audio svg inlinesvg svgclippaths gr__makerbar_com"
style="" id="yui_3_17_2_1_1515561462478_108">
<div id="yui3-css-stamp" style="position: absolute !important; visibility: hidden !important"></div>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link charset="utf-8" rel="stylesheet" id="yui_3_17_2_1_1515561462478_210" href="./news_files/simple-liking-09fa291ec2800c97714f0d157fd0a6ca-min.css">
<script charset="utf-8" id="yui_3_17_2_1_1515561462478_209" src="./news_files/simple-liking-16d4d36d432d20895ea1-min.en-US.js"></script>
<link charset="utf-8" rel="stylesheet" id="yui_3_17_2_1_1515561462478_213" href="./news_files/social-buttons-7a696232d1cd101fd62b5f174f9ae6ff-min.css">
<script charset="utf-8" id="yui_3_17_2_1_1515561462478_212" src="./news_files/social-buttons-96c3e707c75ef21ac1b2-min.en-US.js"></script>
<!--<base href="">-->
<base href=".">
<title>NEWS — MakerBar</title>
<link rel="shortcut icon" type="image/x-icon" href="http://makerbar.com/favicon.ico">
<link rel="canonical" href="http://makerbar.com/blog/">
<meta property="og:site_name" content="MakerBar">
<meta property="og:title" content="NEWS">
<meta property="og:url" content="http://makerbar.com/blog/">
<meta property="og:type" content="website">
<meta property="og:image" content="http://makerbar.com/logo.jpg">
<meta property="og:image:width" content="600">
<meta property="og:image:height" content="600">
<meta itemprop="name" content="NEWS">
<meta itemprop="url" content="http://makerbar.com/blog/">
<meta itemprop="thumbnailUrl" content="http://makerbar.com/logo.jpg">
<link rel="image_src" href="http://makerbar.com/logo.jpg">
<meta itemprop="image" content="http://makerbar.com/logo.jpg">
<meta name="twitter:title" content="NEWS">
<meta name="twitter:image" content="http://makerbar.com/logo.jpg">
<meta name="twitter:url" content="http://makerbar.com/blog/">
<meta name="twitter:card" content="summary">
<meta name="description" content="">
<script type="text/javascript" src="http://use.typekit.net/ik/QAxn-U_XheHGWfq8yKuQodWED3sNYumFWGUutjASn29feGC2fFHN4UJLFRbh52jhWD9h5QmKFeJXZQMDwRiRZQ4cZ2JhZQjawg7SMPG0-cBl-A9lZ1m0Ze80ZhmkOWFTSYG0SaBujW48Sagyjh90jhNlOeTydA88OAZudcsTdci8SKuD-WgEO1FUiABkZWF3jAF8OcFzdPUCdhFydeyzSabCdABnZW4KjWJ0jhNlOYiaiko7jAuTZPuciAoq-Ao1ZWJlSh83pKoDSWmyScmDSeBRZPoRdhXCiaiaOcuy-hmkjcBkOcFzdPJwSY4zpe8ljPu0daZyH6qJ73IbMg6gJMJ7fbKCMsMMeMC6MKG4f5J7IMMjMkMfH6qJtkGbMg6FJMJ7fbKzMsMMeMb6MKG4fOMgIMMj2KMfH6GJCwbgIMMjgPMfH6GJCSbgIMMj2kMfH6qJnbIbMg6eJMJ7fbK0MsMMegM6MKG4fJCgIMMjgkMfH6qJRMIbMg6sJMJ7fbKTMsMMeM66MKG4fHGgIMMjIKMfH6qJKbIbMg64JMJ7fbKHMsMMegw6MTMgn4ATUM9.js"></script>
<script type="text/javascript">
try {
Typekit.load();
} catch (e) {}
</script>
<link rel="stylesheet" type="text/css" href="./news_files/css">
<script type="text/javascript">
SQUARESPACE_ROLLUPS = {};
</script>
<script>
(function(rollups, name) {
if (!rollups[name]) {
rollups[name] = {};
}
rollups[name].js = ["//static.squarespace.com/universal/scripts-compressed/common-0e650198e87e8356758b-min.en-US.js"];
})(SQUARESPACE_ROLLUPS, 'squarespace-common');
</script>
<script crossorigin="anonymous" src="./news_files/common-0e650198e87e8356758b-min.en-US.js"></script>
<script>
(function(rollups, name) {
if (!rollups[name]) {
rollups[name] = {};
}
rollups[name].js = ["//static.squarespace.com/universal/scripts-compressed/commerce-55bd0360a5dc7e193c6c-min.en-US.js"];
})(SQUARESPACE_ROLLUPS, 'squarespace-commerce');
</script>
<script crossorigin="anonymous" src="./news_files/commerce-55bd0360a5dc7e193c6c-min.en-US.js"></script>
<script>
(function(rollups, name) {
if (!rollups[name]) {
rollups[name] = {};
}
rollups[name].css = ["//static.squarespace.com/universal/styles-compressed/commerce-f1345259625a9a69338c45af2d94a29a-min.css"];
})(SQUARESPACE_ROLLUPS, 'squarespace-commerce');
</script>
<link rel="stylesheet" type="text/css" href="./news_files/commerce-f1345259625a9a69338c45af2d94a29a-min.css">
<script data-name="static-context">
Static = window.Static || {};
Static.SQUARESPACE_CONTEXT = {
"facebookAppId": "314192535267336",
"rollups": {
"squarespace-announcement-bar": {
"css": "//static.squarespace.com/universal/styles-compressed/announcement-bar-d41d8cd98f00b204e9800998ecf8427e-min.css",
"js": "//static.squarespace.com/universal/scripts-compressed/announcement-bar-f0aee57f421f86265a8f-min.en-US.js"
},
"squarespace-audio-player": {
"css": "//static.squarespace.com/universal/styles-compressed/audio-player-e1b486594965430889af24c93ffeb509-min.css",
"js": "//static.squarespace.com/universal/scripts-compressed/audio-player-aabd2dee0a6d18518bd6-min.en-US.js"
},
"squarespace-blog-collection-list": {
"css": "//static.squarespace.com/universal/styles-compressed/blog-collection-list-d41d8cd98f00b204e9800998ecf8427e-min.css",
"js": "//static.squarespace.com/universal/scripts-compressed/blog-collection-list-39bee07b2f99bc6f13c1-min.en-US.js"
},
"squarespace-calendar-block-renderer": {
"css": "//static.squarespace.com/universal/styles-compressed/calendar-block-renderer-bba726056d2134131ce9d3077c28adbe-min.css",
"js": "//static.squarespace.com/universal/scripts-compressed/calendar-block-renderer-15c5bee2137a9f96dab0-min.en-US.js"
},
"squarespace-chartjs-helpers": {
"css": "//static.squarespace.com/universal/styles-compressed/chartjs-helpers-9935a41d63cf08ca108505d288c1712e-min.css",
"js": "//static.squarespace.com/universal/scripts-compressed/chartjs-helpers-2a2a739bbbb41e2a3b1e-min.en-US.js"
},
"squarespace-comments": {
"css": "//static.squarespace.com/universal/styles-compressed/comments-fd2f389570c2a57065011600abb62cf3-min.css",
"js": "//static.squarespace.com/universal/scripts-compressed/comments-7061b971d106b0ae545a-min.en-US.js"
},
"squarespace-dialog": {
"css": "//static.squarespace.com/universal/styles-compressed/dialog-9489ad8eb7daab1644e1eb45a671ba44-min.css",
"js": "//static.squarespace.com/universal/scripts-compressed/dialog-3d45c63d250d2b3fae1f-min.en-US.js"
},
"squarespace-events-collection": {
"css": "//static.squarespace.com/universal/styles-compressed/events-collection-bba726056d2134131ce9d3077c28adbe-min.css",
"js": "//static.squarespace.com/universal/scripts-compressed/events-collection-044fdcf69111cdda24bc-min.en-US.js"
},
"squarespace-form-rendering-utils": {
"js": "//static.squarespace.com/universal/scripts-compressed/form-rendering-utils-bf3c009dfcc306ff6166-min.en-US.js"
},
"squarespace-gallery-collection-list": {
"css": "//static.squarespace.com/universal/styles-compressed/gallery-collection-list-d41d8cd98f00b204e9800998ecf8427e-min.css",
"js": "//static.squarespace.com/universal/scripts-compressed/gallery-collection-list-ab84bc0c556f1a6f4eb5-min.en-US.js"
},
"squarespace-image-zoom": {
"css": "//static.squarespace.com/universal/styles-compressed/image-zoom-ae974921915aeccaff8ad60c60e19c31-min.css",
"js": "//static.squarespace.com/universal/scripts-compressed/image-zoom-6bd7b682481882e67ef3-min.en-US.js"
},
"squarespace-pinterest": {
"css": "//static.squarespace.com/universal/styles-compressed/pinterest-d41d8cd98f00b204e9800998ecf8427e-min.css",
"js": "//static.squarespace.com/universal/scripts-compressed/pinterest-e42ae555434060557175-min.en-US.js"
},
"squarespace-popup-overlay": {
"css": "//static.squarespace.com/universal/styles-compressed/popup-overlay-fdcf92196a4aebc72317a5c5f60f0289-min.css",
"js": "//static.squarespace.com/universal/scripts-compressed/popup-overlay-05bbfd4a20bbded6be8a-min.en-US.js"
},
"squarespace-product-quick-view": {
"css": "//static.squarespace.com/universal/styles-compressed/product-quick-view-9abaaa4dfff182aa8d4ccf3b6ffdbe8d-min.css",
"js": "//static.squarespace.com/universal/scripts-compressed/product-quick-view-1b24fd50f160f9bb0e45-min.en-US.js"
},
"squarespace-products-collection-item-v2": {
"css": "//static.squarespace.com/universal/styles-compressed/products-collection-item-v2-ae974921915aeccaff8ad60c60e19c31-min.css",
"js": "//static.squarespace.com/universal/scripts-compressed/products-collection-item-v2-f5adf0ae4868537707a0-min.en-US.js"
},
"squarespace-products-collection-list-v2": {
"css": "//static.squarespace.com/universal/styles-compressed/products-collection-list-v2-ae974921915aeccaff8ad60c60e19c31-min.css",
"js": "//static.squarespace.com/universal/scripts-compressed/products-collection-list-v2-dff3f42185a1eb951b52-min.en-US.js"
},
"squarespace-search-page": {
"css": "//static.squarespace.com/universal/styles-compressed/search-page-9c747eeaabe96dacfea4932a63336f54-min.css",
"js": "//static.squarespace.com/universal/scripts-compressed/search-page-7813b6fd64203c38364f-min.en-US.js"
},
"squarespace-search-preview": {
"js": "//static.squarespace.com/universal/scripts-compressed/search-preview-3b0f3787d716195e0734-min.en-US.js"
},
"squarespace-share-buttons": {
"js": "//static.squarespace.com/universal/scripts-compressed/share-buttons-8a770cc9a6005c990426-min.en-US.js"
},
"squarespace-simple-liking": {
"css": "//static.squarespace.com/universal/styles-compressed/simple-liking-09fa291ec2800c97714f0d157fd0a6ca-min.css",
"js": "//static.squarespace.com/universal/scripts-compressed/simple-liking-16d4d36d432d20895ea1-min.en-US.js"
},
"squarespace-social-buttons": {
"css": "//static.squarespace.com/universal/styles-compressed/social-buttons-7a696232d1cd101fd62b5f174f9ae6ff-min.css",
"js": "//static.squarespace.com/universal/scripts-compressed/social-buttons-96c3e707c75ef21ac1b2-min.en-US.js"
},
"squarespace-tourdates": {
"css": "//static.squarespace.com/universal/styles-compressed/tourdates-d41d8cd98f00b204e9800998ecf8427e-min.css",
"js": "//static.squarespace.com/universal/scripts-compressed/tourdates-392081048c6b80291087-min.en-US.js"
},
"squarespace-website-overlays-manager": {
"css": "//static.squarespace.com/universal/styles-compressed/website-overlays-manager-d1b0ace5f5af772d643f5a6ce0056946-min.css",
"js": "//static.squarespace.com/universal/scripts-compressed/website-overlays-manager-8c0bb818ce325fac51ad-min.en-US.js"
}
},
"pageType": 1,
"website": {
"id": "5695b4b4e0327ce2fd26e670",
"identifier": "jamie-fundinger-sipz",
"websiteType": 1,
"contentModifiedOn": 1503666141595,
"cloneable": false,
"siteStatus": {},
"language": "en-US",
"timeZone": "America/New_York",
"machineTimeZoneOffset": -18000000,
"timeZoneOffset": -18000000,
"timeZoneAbbr": "EST",
"siteTitle": "MakerBar",
"siteDescription": "",
"logoImageId": "588bc996f5e2319ad35bbcad",
"socialLogoImageId": "589e40fff5e231f56048fc23",
"shareButtonOptions": {
"6": true,
"1": true,
"3": true,
"2": true,
"5": true,
"8": true,
"7": true,
"4": true
},
"logoImageUrl": "//static1.squarespace.com/static/5695b4b4e0327ce2fd26e670/t/588bc996f5e2319ad35bbcad/1503666141595/",
"socialLogoImageUrl": "//static1.squarespace.com/static/5695b4b4e0327ce2fd26e670/t/589e40fff5e231f56048fc23/1503666141595/",
"authenticUrl": "http://makerbar.com",
"internalUrl": "http://jamie-fundinger-sipz.squarespace.com",
"baseUrl": "http://makerbar.com",
"primaryDomain": "makerbar.com",
"sslSetting": 1,
"socialAccounts": [{
"serviceId": 33,
"screenname": "MakerBar Meetup",
"addedOn": 1452656915956,
"profileUrl": "http://www.meetup.com/MakerBar/",
"iconEnabled": true,
"serviceName": "meetup"
}, {
"serviceId": 2,
"userId": "1076497786",
"screenname": "The MakerBar",
"addedOn": 1452656958401,
"profileUrl": "https://www.facebook.com/themakerbar/",
"iconUrl": "http://graph.facebook.com/1076497786/picture?type=square",
"metaData": {
"service": "facebook"
},
"iconEnabled": true,
"serviceName": "facebook"
}, {
"serviceId": 11,
"userId": "UCORktBNi-LwTN6mqU7jxhtw",
"screenname": "Jamie Fundinger",
"addedOn": 1452657055584,
"profileUrl": "https://www.youtube.com/channel/UCAA9bDUf_rNPqW4HoBpyl6Q",
"iconUrl": "https://yt3.ggpht.com/-Z2UDQfconX0/AAAAAAAAAAI/AAAAAAAAAAA/zX420Wodjlc/s88-c-k-no/photo.jpg",
"iconEnabled": true,
"serviceName": "youtube"
}],
"typekitId": "",
"statsMigrated": false,
"imageMetadataProcessingEnabled": false,
"screenshotId": "9a29f2bd"
},
"websiteSettings": {
"id": "5695b4b4e0327ce2fd26e673",
"websiteId": "5695b4b4e0327ce2fd26e670",
"type": "Non-Profit",
"subjects": [],
"country": "US",
"state": "NJ",
"simpleLikingEnabled": true,
"mobileInfoBarSettings": {
"isContactEmailEnabled": false,
"isContactPhoneNumberEnabled": false,
"isLocationEnabled": false,
"isBusinessHoursEnabled": false
},
"commentLikesAllowed": true,
"commentAnonAllowed": true,
"commentThreaded": true,
"commentApprovalRequired": false,
"commentAvatarsOn": true,
"commentSortType": 2,
"commentFlagThreshold": 0,
"commentFlagsAllowed": true,
"commentEnableByDefault": true,
"commentDisableAfterDaysDefault": 0,
"disqusShortname": "",
"commentsEnabled": false,
"contactPhoneNumber": "",
"storeSettings": {
"returnPolicy": "",
"termsOfService": "",
"privacyPolicy": "",
"paymentSettings": {
"stripeLivePublicApiKey": "pk_live_IQLF2yTJV4pz3KrijtYr1bWD",
"stripeTestPublicApiKey": "pk_test_HHyACgCvVvwkZUhinJs7iet6",
"stripeUserId": "acct_2NwJaa7YanbkJxZx9st6",
"stripeAccountCountry": "US"
},
"expressCheckout": false,
"useLightCart": false,
"showNoteField": false,
"shippingCountryDefaultValue": "US",
"billToShippingDefaultValue": false,
"showShippingPhoneNumber": true,
"isShippingPhoneRequired": false,
"showBillingPhoneNumber": false,
"isBillingPhoneRequired": false,
"multipleQuantityAllowedForServices": true,
"currenciesSupported": ["USD", "AUD", "CAD", "CHF", "DKK", "EUR", "GBP", "NOK", "SEK"],
"defaultCurrency": "USD",
"selectedCurrency": "USD",
"measurementStandard": 1,
"showCustomCheckoutForm": false,
"enableMailingListOptInByDefault": true,
"sameAsRetailLocation": false,
"isLive": true
},
"useEscapeKeyToLogin": true,
"ssBadgeType": 1,
"ssBadgePosition": 4,
"ssBadgeVisibility": 1,
"ssBadgeDevices": 1,
"pinterestOverlayOptions": {
"mode": "disabled"
},
"ampEnabled": false
},
"cookieSettings": {
"isRestrictiveCookiePolicyEnabled": false
},
"websiteCloneable": false,
"collection": {
"title": "NEWS",
"id": "5695c14f7086d7e8c28b22ae",
"fullUrl": "/blog/",
"type": 1
},
"subscribed": false,
"appDomain": "squarespace.com",
"templateTweakable": true,
"tweakJSON": {
"aspect-ratio": "Auto",
"gallery-arrow-style": "Round Corners",
"gallery-aspect-ratio": "3:2 Standard",
"gallery-auto-crop": "true",
"gallery-autoplay": "false",
"gallery-design": "Slideshow",
"gallery-info-overlay": "Always Show",
"gallery-loop": "false",
"gallery-navigation": "Thumbnails",
"gallery-show-arrows": "true",
"gallery-transitions": "Fade",
"galleryArrowBackground": "rgba(34,34,34,1)",
"galleryArrowColor": "rgba(255,255,255,1)",
"galleryAutoplaySpeed": "3",
"galleryCircleColor": "rgba(255,255,255,1)",
"galleryInfoBackground": "rgba(0, 0, 0, .7)",
"galleryThumbnailSize": "100px",
"gridSize": "350px",
"gridSpacing": "20px",
"hdr-bg-image": "{background-image:none;background-position:top left;background-size:cover;background-attachment:fixed;background-repeat:no-repeat}",
"product-gallery-auto-crop": "true",
"product-image-auto-crop": "true"
},
"templateId": "503ba86de4b04953d0f49846",
"pageFeatures": [1, 2, 4],
"impersonatedSession": false,
"demoCollections": [{
"collectionId": "517ea573e4b077614f1786ec",
"deleted": true
}, {
"collectionId": "517eb5d5e4b00cbd5d97d5c7",
"deleted": true
}, {
"collectionId": "517ea55ee4b0d5eb59e27d6c",
"deleted": true
}, {
"collectionId": "517ea56de4b0d7e92bf789e0",
"deleted": true
}, {
"collectionId": "517eaaaae4b0770fc4169f38",
"deleted": true
}, {
"collectionId": "517eb92ce4b0bec12a288468",
"deleted": true
}, {
"collectionId": "50649e01e4b000b6a5f3008e",
"deleted": true
}, {
"collectionId": "506612b284ae9eec10724582",
"deleted": true
}, {
"collectionId": "517eb24fe4b0809658b0b86e",
"deleted": true
}, {
"collectionId": "520bd9b6e4b059321a307fe8",
"deleted": true
}, {
"collectionId": "561cf73de4b07ebce5f140be",
"deleted": true
}],
"isFacebookTab": false,
"tzData": {
"zones": [
[-300, "US", "E%sT", null]
],
"rules": {
"US": [
[1967, 2006, null, "Oct", "lastSun", "2:00", "0", "S"],
[1987, 2006, null, "Apr", "Sun>=1", "2:00", "1:00", "D"],
[2007, "max", null, "Mar", "Sun>=8", "2:00", "1:00", "D"],
[2007, "max", null, "Nov", "Sun>=1", "2:00", "0", "S"]
]
}
},
"useNewImageLoader": true
};
</script>
<script type="text/javascript">
SquarespaceFonts.loadViaContext();
Squarespace.load(window);
</script>
<link rel="alternate" type="application/rss+xml" title="RSS Feed" href="http://makerbar.com/blog?format=RSS">
<script type="application/ld+json">{"@context":"http://schema.org","@type":"WebSite","url":"http://makerbar.com","name":"MakerBar","description":"","image":"//static1.squarespace.com/static/5695b4b4e0327ce2fd26e670/t/588bc996f5e2319ad35bbcad/1503666141595/"}</script>
<!--[if gte IE 9]> <link rel="stylesheet" type="text/css" href="//static1.squarespace.com/static/sitecss/5695b4b4e0327ce2fd26e670/24/503ba86de4b04953d0f49846/5695b4b4e0327ce2fd26e677/1650-05142015/1488228060856/site.css?&filterFeatures=false&part=1"/><link rel="stylesheet" type="text/css" href="//static1.squarespace.com/static/sitecss/5695b4b4e0327ce2fd26e670/24/503ba86de4b04953d0f49846/5695b4b4e0327ce2fd26e677/1650-05142015/1488228060856/site.css?&filterFeatures=false&part=2"/><link rel="stylesheet" type="text/css" href="//static1.squarespace.com/static/sitecss/5695b4b4e0327ce2fd26e670/24/503ba86de4b04953d0f49846/5695b4b4e0327ce2fd26e677/1650-05142015/1488228060856/site.css?&filterFeatures=false&part=3"/><link rel="stylesheet" type="text/css" href="//static1.squarespace.com/static/sitecss/5695b4b4e0327ce2fd26e670/24/503ba86de4b04953d0f49846/5695b4b4e0327ce2fd26e677/1650-05142015/1488228060856/site.css?&filterFeatures=false&part=4"/><![endif]-->
<!--[if lt IE 9]><link rel="stylesheet" type="text/css" href="//static1.squarespace.com/static/sitecss/5695b4b4e0327ce2fd26e670/24/503ba86de4b04953d0f49846/5695b4b4e0327ce2fd26e677/1650-05142015/1488228060856/site.css?&filterFeatures=false&noMedia=true&part=1"/><link rel="stylesheet" type="text/css" href="//static1.squarespace.com/static/sitecss/5695b4b4e0327ce2fd26e670/24/503ba86de4b04953d0f49846/5695b4b4e0327ce2fd26e677/1650-05142015/1488228060856/site.css?&filterFeatures=false&noMedia=true&part=2"/><link rel="stylesheet" type="text/css" href="//static1.squarespace.com/static/sitecss/5695b4b4e0327ce2fd26e670/24/503ba86de4b04953d0f49846/5695b4b4e0327ce2fd26e677/1650-05142015/1488228060856/site.css?&filterFeatures=false&noMedia=true&part=3"/><link rel="stylesheet" type="text/css" href="//static1.squarespace.com/static/sitecss/5695b4b4e0327ce2fd26e670/24/503ba86de4b04953d0f49846/5695b4b4e0327ce2fd26e677/1650-05142015/1488228060856/site.css?&filterFeatures=false&noMedia=true&part=4"/><![endif]-->
<!--[if !IE]> -->
<link rel="stylesheet" type="text/css" href="./news_files/site.css">
<!-- <![endif]-->
<script src="./news_files/site-bundle.js" type="text/javascript"></script>
<link rel="stylesheet" href="data:text/css;charset=utf-8;base64,Y2xvdWRmbGFyZS1hcHBbYXBwLWlkPSJhLWJldHRlci1icm93c2VyIl0gewogIGRpc3BsYXk6IGJsb2NrOwogIGJhY2tncm91bmQ6ICM0NTQ4NGQ7CiAgY29sb3I6ICNmZmY7CiAgbGluZS1oZWlnaHQ6IDEuNDU7CiAgcG9zaXRpb246IGZpeGVkOwogIHotaW5kZXg6IDkwMDAwMDAwOwogIHRvcDogMDsKICBsZWZ0OiAwOwogIHJpZ2h0OiAwOwogIHBhZGRpbmc6IC41ZW0gMWVtOwogIHRleHQtYWxpZ246IGNlbnRlcjsKICAtd2Via2l0LXVzZXItc2VsZWN0OiBub25lOwogICAgIC1tb3otdXNlci1zZWxlY3Q6IG5vbmU7CiAgICAgIC1tcy11c2VyLXNlbGVjdDogbm9uZTsKICAgICAgICAgIHVzZXItc2VsZWN0OiBub25lOwp9CgpjbG91ZGZsYXJlLWFwcFthcHAtaWQ9ImEtYmV0dGVyLWJyb3dzZXIiXVtkYXRhLXZpc2liaWxpdHk9ImhpZGRlbiJdIHsKICBkaXNwbGF5OiBub25lOwp9CgpjbG91ZGZsYXJlLWFwcFthcHAtaWQ9ImEtYmV0dGVyLWJyb3dzZXIiXSBjbG91ZGZsYXJlLWFwcC1tZXNzYWdlIHsKICBkaXNwbGF5OiBibG9jazsKfQoKY2xvdWRmbGFyZS1hcHBbYXBwLWlkPSJhLWJldHRlci1icm93c2VyIl0gYSB7CiAgdGV4dC1kZWNvcmF0aW9uOiB1bmRlcmxpbmU7CiAgY29sb3I6ICNlYmViZjQ7Cn0KCmNsb3VkZmxhcmUtYXBwW2FwcC1pZD0iYS1iZXR0ZXItYnJvd3NlciJdIGE6aG92ZXIsCmNsb3VkZmxhcmUtYXBwW2FwcC1pZD0iYS1iZXR0ZXItYnJvd3NlciJdIGE6YWN0aXZlIHsKICBjb2xvcjogI2RiZGJlYjsKfQoKY2xvdWRmbGFyZS1hcHBbYXBwLWlkPSJhLWJldHRlci1icm93c2VyIl0gY2xvdWRmbGFyZS1hcHAtY2xvc2UgewogIGRpc3BsYXk6IGJsb2NrOwogIGN1cnNvcjogcG9pbnRlcjsKICBmb250LXNpemU6IDEuNWVtOwogIHBvc2l0aW9uOiBhYnNvbHV0ZTsKICByaWdodDogLjRlbTsKICB0b3A6IC4zNWVtOwogIGhlaWdodDogMWVtOwogIHdpZHRoOiAxZW07CiAgbGluZS1oZWlnaHQ6IDE7Cn0KCmNsb3VkZmxhcmUtYXBwW2FwcC1pZD0iYS1iZXR0ZXItYnJvd3NlciJdIGNsb3VkZmxhcmUtYXBwLWNsb3NlOmFjdGl2ZSB7CiAgLXdlYmtpdC10cmFuc2Zvcm06IHRyYW5zbGF0ZVkoMXB4KTsKICAgICAgICAgIHRyYW5zZm9ybTogdHJhbnNsYXRlWSgxcHgpOwp9CgpjbG91ZGZsYXJlLWFwcFthcHAtaWQ9ImEtYmV0dGVyLWJyb3dzZXIiXSBjbG91ZGZsYXJlLWFwcC1jbG9zZTpob3ZlciB7CiAgb3BhY2l0eTogLjllbTsKICBjb2xvcjogI2ZmZjsKfQo=">
</head>
<body class="canvas-setting-full-width hide-delimiter banner-content-empty banner-alignment-center top-navigation-position-above-banner top-navigation-alignment-left disable-navigation-border sidebar-position-right underline-sidebar-h3 footer-alignment-center social-icon-style-square social-icon-placement-bottom-only blog-list-display-full blog-byline-bottom blog-dateline-top disable-pagination-border show-products-category-navigation hide-album-share-link event-show-past-events event-thumbnails event-thumbnail-size-32-standard event-date-label event-list-show-cats event-list-date event-list-time event-list-address event-icalgcal-links event-excerpts gallery-design-slideshow aspect-ratio-auto lightbox-style-dark gallery-navigation-thumbnails gallery-info-overlay-always-show gallery-aspect-ratio-32-standard gallery-arrow-style-round-corners gallery-transitions-fade gallery-show-arrows gallery-auto-crop product-list-titles-under product-list-alignment-center product-item-size-43-four-thirds product-image-auto-crop product-gallery-size-32-standard product-gallery-auto-crop show-product-price show-product-item-nav product-social-sharing newsletter-style-dark hide-opentable-icons opentable-style-dark small-button-style-solid small-button-shape-square medium-button-style-solid medium-button-shape-square large-button-style-solid large-button-shape-square image-block-poster-text-alignment-center image-block-card-dynamic-font-sizing image-block-card-content-position-center image-block-card-text-alignment-center image-block-overlap-dynamic-font-sizing image-block-overlap-content-position-center image-block-overlap-text-alignment-center image-block-collage-dynamic-font-sizing image-block-collage-content-position-top image-block-collage-text-alignment-left image-block-stack-dynamic-font-sizing image-block-stack-text-alignment-center button-style-solid button-corner-style-square tweak-product-quick-view-button-style-floating tweak-product-quick-view-button-position-bottom tweak-product-quick-view-lightbox-excerpt-display-truncate tweak-product-quick-view-lightbox-show-arrows tweak-product-quick-view-lightbox-show-close-button tweak-product-quick-view-lightbox-controls-weight-light native-currency-code-usd collection-type-blog collection-layout-full-width collection-5695c14f7086d7e8c28b22ae view-list mobile-style-available has-logo-image has-page-thumbnail"
id="collection-5695c14f7086d7e8c28b22ae" ontouchstart="" data-gr-c-s-loaded="true" style="">
<nav id="mobile-navigation">
<span id="mobile-navigation-title"><a href="http://makerbar.com/">MakerBar</a></span>
<span id="mobile-navigation-label"></span>
<ul>
<li class=" active-link">
<a href="index.html">Home</a>
</li>
<li class="">
<input type="checkbox" name="folder-toggle-589e3c59f5e231f56048b9d9" id="folder-toggle-589e3c59f5e231f56048b9d9" class="folder-toggle-box hidden">
<label for="folder-toggle-589e3c59f5e231f56048b9d9" class="folder-toggle-label">ABOUT</label>
<a href="about-us.html" class="">MAKERBAR</a>
<a href="our-lab.html" class="">OUR LAB</a>
</li>
<li class="">
<a href="events-classes.html">Events & Classes</a>
</li>
<li class="">
<a href="projects.html">Projects</a>
</li>
<li class="">
<a href="news.html">NEWS</a>
</li>
<li class="">
<a href="membership.html">Membership</a>
</li>
<li class="">
<a href="give.html">Give</a>
</li>
<li class="">
<a href="contact.html">Contact</a>
</li>
</ul>
</nav>
<div id="canvas-wrapper">
<div id="canvas">
<div id="page-header-wrapper">
<div id="page-header">
<div id="navigation-top">
<div class="horizontal-navigation-bar clear with-logo">
<div id="banner-wrapper" data-content-field="site-title">
<a href="index.html"><img id="banner" src="./home_files/saved_resource" alt="MakerBar"></a>
</div>
<nav id="main-navigation" class="main-nav" data-content-field="navigation">
<ul>
<li class="page-collection active-link"><a href="index.html">Home</a><span class="delimiter">/</span></li>
<li aria-haspopup="true" class="folder-collection folder"><a href="index.html" onclick="return false;">ABOUT</a><span class="delimiter">/</span>
<div class="subnav">
<ul>
<li class="page-collection"><a href="about-us.html">MAKERBAR</a></li>
<li class="page-collection"><a href="our-lab.html">OUR LAB</a></li>
</ul>
</div>
</li>
<li class="page-collection"><a href="events-classes.html">Events & Classes</a><span class="delimiter">/</span></li>
<li class="page-collection"><a href="projects.html">Projects</a><span class="delimiter">/</span></li>
<li class="blog-collection"><a href="news.html">NEWS</a><span class="delimiter">/</span></li>
<li class="page-collection"><a href="membership.html">Membership</a><span class="delimiter">/</span></li>
<li class="page-collection"><a href="give.html">Give</a><span class="delimiter">/</span></li>
<li class="page-collection"><a href="contact.html">Contact</a><span class="delimiter">/</span></li>
</ul>
</nav>
<div id="sqs-social" class="social-links sqs-svg-icon--list" data-content-field="connected-accounts">
<a href="http://www.meetup.com/MakerBar/" target="_blank" class="sqs-svg-icon--wrapper meetup">
<div>
<svg class="sqs-svg-icon--social" viewBox="0 0 64 64">
<use class="sqs-use--icon" xlink:href="#meetup-icon"></use>
<use class="sqs-use--mask" xlink:href="#meetup-mask"></use>
</svg>
</div>
</a>
<a href="https://www.facebook.com/themakerbar/" target="_blank" class="sqs-svg-icon--wrapper facebook">
<div>
<svg class="sqs-svg-icon--social" viewBox="0 0 64 64">
<use class="sqs-use--icon" xlink:href="#facebook-icon"></use>
<use class="sqs-use--mask" xlink:href="#facebook-mask"></use>
</svg>
</div>
</a>
<a href="https://www.youtube.com/channel/UCAA9bDUf_rNPqW4HoBpyl6Q" target="_blank" class="sqs-svg-icon--wrapper youtube">
<div>
<svg class="sqs-svg-icon--social" viewBox="0 0 64 64">
<use class="sqs-use--icon" xlink:href="#youtube-icon"></use>
<use class="sqs-use--mask" xlink:href="#youtube-mask"></use>
</svg>
</div>
</a>
</div>
</div>
</div>
<div id="banner-area-wrapper">
<div id="banner-area">
<div id="page-thumb" class="content-fill" style="overflow: hidden;">
<img data-src="https://static1.squarespace.com/static/5695b4b4e0327ce2fd26e670/t/5695c1717086d7e8c28b23b1/1452654966060/20.jpg" data-image="https://static1.squarespace.com/static/5695b4b4e0327ce2fd26e670/t/5695c1717086d7e8c28b23b1/1452654966060/20.jpg"
data-image-dimensions="1500x1000" data-image-focal-point="0.5,0.5" data-position-mode="standard" data-parent-ratio="1.5" style="font-size: 0px; left: 0px; top: 0px; width: 1500px; height: 1000px; position: relative;" alt="20.jpg" class=""
src="./news_files/20.jpg" data-image-resolution="1500w">
</div>
<div class="banner-overlay"></div>
<div id="banner-wrapper" data-content-field="site-title">
<a href="http://makerbar.com/" rel="bookmark">
<img id="banner" src="./news_files/saved_resource" alt="MakerBar">
</a>
</div>
<div id="page-title-wrapper" class="js-text-shrink" data-collection-id="5695c14f7086d7e8c28b22ae" data-edit-main-image="Page Banner">
<h1 id="page-title" class="page-title" data-shrink-original-size="62" style="letter-spacing: 0.016129em;">NEWS</h1>
</div>
</div>
</div>
<div id="navigation-bottom">
<div class="horizontal-navigation-bar clear with-logo">
<div id="banner-wrapper" data-content-field="site-title">
<a href="http://makerbar.com/"><img id="banner" src="./news_files/saved_resource" alt="MakerBar"></a>
</div>
<nav id="main-navigation" class="main-nav" data-content-field="navigation">
<ul>
<li class="page-collection"><a href="http://makerbar.com/">Home</a><span class="delimiter">/</span></li>
<li aria-haspopup="true" class="folder-collection folder"><a href="http://makerbar.com/blog/#" onclick="return false;">ABOUT</a><span class="delimiter">/</span>
<div class="subnav">
<ul>
<li class="page-collection"><a href="http://makerbar.com/about-us/">MAKERBAR</a></li>
<li class="page-collection"><a href="http://makerbar.com/our-lab/">OUR LAB</a></li>
</ul>
</div>
</li>
<li class="page-collection"><a href="http://makerbar.com/classes/">Events & Classes</a><span class="delimiter">/</span></li>
<li class="page-collection"><a href="http://makerbar.com/projects/">Projects</a><span class="delimiter">/</span></li>
<li class="blog-collection active-link"><a href="http://makerbar.com/blog/">NEWS</a><span class="delimiter">/</span></li>
<li class="page-collection"><a href="http://makerbar.com/membership/">Membership</a><span class="delimiter">/</span></li>
<li class="page-collection"><a href="http://makerbar.com/donate/">Give</a><span class="delimiter">/</span></li>
<li class="page-collection"><a href="http://makerbar.com/contact/">Contact</a><span class="delimiter">/</span></li>
</ul>
</nav>
<div id="sqs-social" class="social-links sqs-svg-icon--list" data-content-field="connected-accounts">
<a href="http://www.meetup.com/MakerBar/" target="_blank" class="sqs-svg-icon--wrapper meetup">
<div>
<svg class="sqs-svg-icon--social" viewBox="0 0 64 64">
<use class="sqs-use--icon" xlink:href="#meetup-icon"></use>
<use class="sqs-use--mask" xlink:href="#meetup-mask"></use>
</svg>
</div>
</a>
<a href="https://www.facebook.com/themakerbar/" target="_blank" class="sqs-svg-icon--wrapper facebook">
<div>
<svg class="sqs-svg-icon--social" viewBox="0 0 64 64">
<use class="sqs-use--icon" xlink:href="#facebook-icon"></use>
<use class="sqs-use--mask" xlink:href="#facebook-mask"></use>
</svg>
</div>
</a>
<a href="https://www.youtube.com/channel/UCAA9bDUf_rNPqW4HoBpyl6Q" target="_blank" class="sqs-svg-icon--wrapper youtube">
<div>
<svg class="sqs-svg-icon--social" viewBox="0 0 64 64">
<use class="sqs-use--icon" xlink:href="#youtube-icon"></use>
<use class="sqs-use--mask" xlink:href="#youtube-mask"></use>
</svg>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
<div id="page-body-wrapper" class="full-width">
<div id="page-body">
<div id="content-wrapper">
<div id="content">
<div id="page-body-header" class="extra-wrapper">
<div class="sqs-layout sqs-grid-12 columns-12 empty" data-layout-label="NEWS Header Content" data-type="block-field" id="page-header-5695c14f7086d7e8c28b22ae">
<div class="row sqs-row">
<div class="col sqs-col-12 span-12"></div>
</div>
</div>
</div>
<div class="main-content" data-content-field="main-content" data-collection-id="5695c14f7086d7e8c28b22ae" data-edit-main-image="Page Banner" id="yui_3_17_2_1_1515561462478_107">
<article class="hentry author-bert-hartmann post-type-text article-index-1" id="article-58cec18a6b8f5b67ee5d7bfe" data-item-id="58cec18a6b8f5b67ee5d7bfe">
<div class="content-wrapper" id="yui_3_17_2_1_1515561462478_106">
<div class="post" id="yui_3_17_2_1_1515561462478_105">
<header>
<span class="article-dateline-above-title">
<span class="date"><a href="http://makerbar.com/blog/2017/3/19/defcon-meet-a-success"><time class="published" datetime="2017-03-19">March 19, 2017</time></a></span>
</span>
<h1 class="entry-title" data-content-field="title"><a href="http://makerbar.com/blog/2017/3/19/defcon-meet-a-success">DEFCON 201 Event a Success!</a></h1>
<span class="article-dateline">
<span class="date"><a href="http://makerbar.com/blog/2017/3/19/defcon-meet-a-success"><time class="published" datetime="2017-03-19">March 19, 2017</time></a><span class="delimiter">/</span></span>
</span>
<span class="article-byline">
<span class="location"></span>
<span class="author"><a href="http://makerbar.com/blog/?author=56ed68e445bf217f6956c6d3" rel="author">Bert Hartmann</a></span>
</span>
</header>
<div class="body entry-content" id="yui_3_17_2_1_1515561462478_104">
<div class="sqs-layout sqs-grid-12 columns-12" data-layout-label="Post Body" data-type="item" data-updated-on="1489945109427" id="item-58cec18a6b8f5b67ee5d7bfe">
<div class="row sqs-row" id="yui_3_17_2_1_1515561462478_103">
<div class="col sqs-col-12 span-12" id="yui_3_17_2_1_1515561462478_102">
<div class="sqs-block html-block sqs-block-html" data-block-type="2" id="block-3f80824ba6f2533c3f57">
<div class="sqs-block-content">
<p>MakerBar member Travis rallied to host a DEFCON EVENT at MakerBar March 17th, and it was packed full of Hackers from all over the area. It was a great turnout, and we look forward to more hacker based events at MakerBar!</p>
</div>
</div>
<div class="sqs-block image-block sqs-block-image sqs-text-ready" data-block-type="5" id="block-yui_3_17_2_1_1489944948985_16434">
<div class="sqs-block-content" id="yui_3_17_2_1_1515561462478_101">
<div class="image-block-outer-wrapper layout-caption-below design-layout-inline" id="yui_3_17_2_1_1515561462478_100">
<div class="intrinsic" style="max-width:2500.0px;" id="yui_3_17_2_1_1515561462478_99">
<div style="padding-bottom: 56.24%; overflow: hidden;" class="image-block-wrapper has-aspect-ratio" data-description="" id="yui_3_17_2_1_1515561462478_98">
<noscript><img src="https://static1.squarespace.com/static/5695b4b4e0327ce2fd26e670/t/58cec20746c3c40813aea3ca/1489945104737/" /></noscript><img class="thumb-image loaded" data-src="https://static1.squarespace.com/static/5695b4b4e0327ce2fd26e670/t/58cec20746c3c40813aea3ca/1489945104737/"
data-image="https://static1.squarespace.com/static/5695b4b4e0327ce2fd26e670/t/58cec20746c3c40813aea3ca/1489945104737/" data-image-dimensions="2500x1406" data-image-focal-point="0.5,0.5" data-load="false" data-image-id="58cec20746c3c40813aea3ca"
data-type="image" data-position-mode="standard" style="left: 0%; top: -0.0234888%; width: 100%; height: 100.047%; position: absolute;" src="./news_files/saved_resource(1)" data-image-resolution="1500w">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<footer class="article-meta">
<div>
<span class="article-dateline">
<span class="date"><a href="http://makerbar.com/blog/2017/3/19/defcon-meet-a-success"><i class="icon-calendar"></i><time class="published" datetime="2017-03-19">March 19, 2017</time></a><span class="delimiter">/</span></span>
</span>
<span class="article-byline">
<span class="location"></span>
<span class="author"><a href="http://makerbar.com/blog/?author=56ed68e445bf217f6956c6d3" rel="author"><i class="icon-user"></i>Bert Hartmann</a><span class="delimiter">/</span></span>
</span>
<div class="shareLoveButtons">
<span class="sqs-simple-like" data-item-id="58cec18a6b8f5b67ee5d7bfe" data-like-count="0" id="yui_3_17_2_1_1515561462478_453">
<span class="like-icon"></span>
<span class="like-count">0 Likes</span>
</span>
<span class="squarespace-social-buttons inline-style" data-system-data-id="" data-asset-url="https://static1.squarespace.com/static/5695b4b4e0327ce2fd26e670/5695c14f7086d7e8c28b22ae/58cec18a6b8f5b67ee5d7bfe/1489945150815/" data-record-type="1" data-full-url="/blog/2017/3/19/defcon-meet-a-success"
data-title="DEFCON 201 Event a Success!"><div id="social-yui_3_17_2_1_1515561462478_298" class="yui3-widget yui3-socialbutton"><div id="yui_3_17_2_1_1515561462478_309" class="yui3-socialbutton-content"><div class="ss-social-button-wrapper"><div class="ss-social-button"><span class="ss-social-button-icon"></span>Share</div>
</div>
<div class="ss-social-list-wrapper">
<div class="ss-social-button-list"></div>
</div>
</div>
</div>
</span>
</div>
<div class="author-block" style="">
<div class="author-avatar" style="background-image: url(https://static1.squarespace.com/static/images/null/100w);"></div>
<h3 class="author-name"><a href="http://makerbar.com/blog/?author=56ed68e445bf217f6956c6d3">Bert Hartmann</a></h3>
<div class="author-bio">
<p></p>
</div>
</div>
<div class="post-entry-injection"></div>
</div>
</footer>
</div>
</div>
</article>
<article class="hentry author-bert-hartmann post-type-text article-index-2" id="article-58a9d887a5790a1849ed7336" data-item-id="58a9d887a5790a1849ed7336">
<div class="content-wrapper" id="yui_3_17_2_1_1515561462478_130">
<div class="post" id="yui_3_17_2_1_1515561462478_129">
<header>
<span class="article-dateline-above-title">
<span class="date"><a href="http://makerbar.com/blog/2017/2/19/open-house-a-fun-success"><time class="published" datetime="2017-02-19">February 19, 2017</time></a></span>
</span>
<h1 class="entry-title" data-content-field="title"><a href="http://makerbar.com/blog/2017/2/19/open-house-a-fun-success">Open House a Fun Success</a></h1>
<span class="article-dateline">
<span class="date"><a href="http://makerbar.com/blog/2017/2/19/open-house-a-fun-success"><time class="published" datetime="2017-02-19">February 19, 2017</time></a><span class="delimiter">/</span></span>
</span>
<span class="article-byline">
<span class="location"></span>
<span class="author"><a href="http://makerbar.com/blog/?author=56ed68e445bf217f6956c6d3" rel="author">Bert Hartmann</a></span>
</span>
</header>
<div class="body entry-content" id="yui_3_17_2_1_1515561462478_128">
<div class="sqs-layout sqs-grid-12 columns-12" data-layout-label="Post Body" data-type="item" data-updated-on="1487526135306" id="item-58a9d887a5790a1849ed7336">
<div class="row sqs-row" id="yui_3_17_2_1_1515561462478_127">
<div class="col sqs-col-12 span-12" id="yui_3_17_2_1_1515561462478_126">
<div class="sqs-block html-block sqs-block-html" data-block-type="2" id="block-1e27dd90c7a32cef2fd3">
<div class="sqs-block-content">
<p>Makerbar celebrates its 5th anniversary with an open house.</p>
<p>Makerbar opened its doors to the public this Friday, Feb. 17th, for a special open house, marking our 5th year of making. A good time was had by all as we got to celebrate with both old friends and new. Our guests got to
learn about everything we’ve accomplished in the past 5 years as well as what we plan for the future. We were especially happy to welcome our friends from FUBAR labs in New Brunswick as we made plans for more interaction between
NJ makerspaces leading the way for more fun times in the future!</p>
</div>
</div>
<div class="sqs-block image-block sqs-block-image sqs-text-ready" data-block-type="5" id="block-yui_3_17_2_1_1487526000774_16025">
<div class="sqs-block-content" id="yui_3_17_2_1_1515561462478_125">
<div class="image-block-outer-wrapper layout-caption-below design-layout-inline" id="yui_3_17_2_1_1515561462478_124">
<div class="intrinsic" style="max-width:980.0px;" id="yui_3_17_2_1_1515561462478_123">
<div style="padding-bottom: 55.102%; overflow: hidden;" class="image-block-wrapper has-aspect-ratio" data-description="" id="yui_3_17_2_1_1515561462478_122">
<noscript><img src="https://static1.squarespace.com/static/5695b4b4e0327ce2fd26e670/t/58a9d8eebe6594a084256932/1487526132586/" /></noscript><img class="thumb-image loaded" data-src="https://static1.squarespace.com/static/5695b4b4e0327ce2fd26e670/t/58a9d8eebe6594a084256932/1487526132586/"
data-image="https://static1.squarespace.com/static/5695b4b4e0327ce2fd26e670/t/58a9d8eebe6594a084256932/1487526132586/" data-image-dimensions="980x540" data-image-focal-point="0.5,0.5" data-load="false" data-image-id="58a9d8eebe6594a084256932"
data-type="image" data-position-mode="standard" style="left: 0%; top: 0%; width: 100%; height: 100%; position: absolute;" src="./news_files/saved_resource(2)" data-image-resolution="1000w">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<footer class="article-meta">
<div>
<span class="article-dateline">
<span class="date"><a href="http://makerbar.com/blog/2017/2/19/open-house-a-fun-success"><i class="icon-calendar"></i><time class="published" datetime="2017-02-19">February 19, 2017</time></a><span class="delimiter">/</span></span>
</span>
<span class="article-byline">
<span class="location"></span>
<span class="author"><a href="http://makerbar.com/blog/?author=56ed68e445bf217f6956c6d3" rel="author"><i class="icon-user"></i>Bert Hartmann</a><span class="delimiter">/</span></span>
</span>
<div class="shareLoveButtons">
<span class="sqs-simple-like" data-item-id="58a9d887a5790a1849ed7336" data-like-count="0" id="yui_3_17_2_1_1515561462478_455">
<span class="like-icon"></span>
<span class="like-count">0 Likes</span>
</span>
<span class="squarespace-social-buttons inline-style" data-system-data-id="" data-asset-url="https://static1.squarespace.com/static/5695b4b4e0327ce2fd26e670/5695c14f7086d7e8c28b22ae/58a9d887a5790a1849ed7336/1487612093137/" data-record-type="1" data-full-url="/blog/2017/2/19/open-house-a-fun-success"
data-title="Open House a Fun Success"><div id="social-yui_3_17_2_1_1515561462478_300" class="yui3-widget yui3-socialbutton"><div id="yui_3_17_2_1_1515561462478_323" class="yui3-socialbutton-content"><div class="ss-social-button-wrapper"><div class="ss-social-button"><span class="ss-social-button-icon"></span>Share</div>
</div>
<div class="ss-social-list-wrapper">
<div class="ss-social-button-list"></div>
</div>
</div>
</div>
</span>
</div>
<div class="author-block" style="">
<div class="author-avatar" style="background-image: url(https://static1.squarespace.com/static/images/null/100w);"></div>
<h3 class="author-name"><a href="http://makerbar.com/blog/?author=56ed68e445bf217f6956c6d3">Bert Hartmann</a></h3>
<div class="author-bio">
<p></p>
</div>
</div>
<div class="post-entry-injection"></div>
</div>
</footer>
</div>
</div>
</article>
<article class="hentry author-bert-hartmann post-type-text article-index-3" id="article-589e0cbe20099ef960ca249d" data-item-id="589e0cbe20099ef960ca249d">
<div class="content-wrapper" id="yui_3_17_2_1_1515561462478_152">
<div class="post" id="yui_3_17_2_1_1515561462478_151">
<header>
<span class="article-dateline-above-title">
<span class="date"><a href="http://makerbar.com/blog/2017/2/10/ongoing-renovations"><time class="published" datetime="2017-02-10">February 10, 2017</time></a></span>
</span>
<h1 class="entry-title" data-content-field="title"><a href="http://makerbar.com/blog/2017/2/10/ongoing-renovations">Ongoing Renovations</a></h1>
<span class="article-dateline">
<span class="date"><a href="http://makerbar.com/blog/2017/2/10/ongoing-renovations"><time class="published" datetime="2017-02-10">February 10, 2017</time></a><span class="delimiter">/</span></span>
</span>
<span class="article-byline">
<span class="location"></span>
<span class="author"><a href="http://makerbar.com/blog/?author=56ed68e445bf217f6956c6d3" rel="author">Bert Hartmann</a></span>
</span>
</header>
<div class="body entry-content" id="yui_3_17_2_1_1515561462478_150">
<div class="sqs-layout sqs-grid-12 columns-12" data-layout-label="Post Body" data-type="item" data-updated-on="1486753304855" id="item-589e0cbe20099ef960ca249d">
<div class="row sqs-row" id="yui_3_17_2_1_1515561462478_149">
<div class="col sqs-col-12 span-12" id="yui_3_17_2_1_1515561462478_148">
<div class="sqs-block html-block sqs-block-html" data-block-type="2" id="block-262a3c3d3753ec8f2cf7">
<div class="sqs-block-content">
<p>It's been an exciting month of January at the Hoboken MakerBar! Our President, Tom Beattie, has undertaken trying to make the space nicer and cleaner for it's participants and members. A wall was removed, and all the internal drywall
and plywood was taken out and replaced with new drywall and paint. </p>
<p>The front door was reversed, and the key fob was moved to the left side and lower, so now you can just rub your pocket (which hopefully have your keys and fob) onto the swiper. A new swiper is in the works that tracks each member's
entrance! </p>
<p>Two desk areas were built, and the CAD station was moved from the back by the window, to the front where the new desks are, and paint was applied to the floor in the clean areas. Some minor electrical was done also with the help of
the Building Maintenance Manager, and our kitchen has moved also.</p>
<p>Little by little our space is getting nicer all the time! We are working on painting the hallway floor down the road, and finishing interior floor painting as well. We even allotted a space for the powerwheels for now.</p>
<p>Lastly we updated our Website and MeetUp pages to be reflective of our logo and offerings.</p>
<p>It's going to be a great year for all of us at MakerBar, and we hope you will join us!</p>
</div>
</div>
<div class="sqs-block image-block sqs-block-image sqs-text-ready" data-block-type="5" id="block-yui_3_17_2_3_1486754627301_4533">
<div class="sqs-block-content" id="yui_3_17_2_1_1515561462478_147">
<div class="image-block-outer-wrapper layout-caption-below design-layout-inline" id="yui_3_17_2_1_1515561462478_146">
<div class="intrinsic" style="max-width:900.0px;" id="yui_3_17_2_1_1515561462478_145">
<div style="padding-bottom: 74.2222%; overflow: hidden;" class="image-block-wrapper has-aspect-ratio" data-description="" id="yui_3_17_2_1_1515561462478_144">
<noscript><img src="https://static1.squarespace.com/static/5695b4b4e0327ce2fd26e670/t/589e155a5016e1c35a176434/1486755168781/" /></noscript><img class="thumb-image loaded" data-src="https://static1.squarespace.com/static/5695b4b4e0327ce2fd26e670/t/589e155a5016e1c35a176434/1486755168781/"
data-image="https://static1.squarespace.com/static/5695b4b4e0327ce2fd26e670/t/589e155a5016e1c35a176434/1486755168781/" data-image-dimensions="900x668" data-image-focal-point="0.5,0.5" data-load="false" data-image-id="589e155a5016e1c35a176434"
data-type="image" data-position-mode="standard" style="left: 0%; top: 0%; width: 100%; height: 100%; position: absolute;" src="./news_files/saved_resource(3)" data-image-resolution="1000w">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<footer class="article-meta">
<div>
<span class="article-dateline">
<span class="date"><a href="http://makerbar.com/blog/2017/2/10/ongoing-renovations"><i class="icon-calendar"></i><time class="published" datetime="2017-02-10">February 10, 2017</time></a><span class="delimiter">/</span></span>
</span>
<span class="article-byline">
<span class="location"></span>
<span class="author"><a href="http://makerbar.com/blog/?author=56ed68e445bf217f6956c6d3" rel="author"><i class="icon-user"></i>Bert Hartmann</a><span class="delimiter">/</span></span>
</span>
<div class="shareLoveButtons">
<span class="sqs-simple-like" data-item-id="589e0cbe20099ef960ca249d" data-like-count="0" id="yui_3_17_2_1_1515561462478_457">
<span class="like-icon"></span>
<span class="like-count">0 Likes</span>
</span>
<span class="squarespace-social-buttons inline-style" data-system-data-id="" data-asset-url="https://static1.squarespace.com/static/5695b4b4e0327ce2fd26e670/5695c14f7086d7e8c28b22ae/589e0cbe20099ef960ca249d/1486755186763/" data-record-type="1" data-full-url="/blog/2017/2/10/ongoing-renovations"
data-title="Ongoing Renovations"><div id="social-yui_3_17_2_1_1515561462478_302" class="yui3-widget yui3-socialbutton"><div id="yui_3_17_2_1_1515561462478_337" class="yui3-socialbutton-content"><div class="ss-social-button-wrapper"><div class="ss-social-button"><span class="ss-social-button-icon"></span>Share</div>
</div>
<div class="ss-social-list-wrapper">
<div class="ss-social-button-list"></div>
</div>
</div>
</div>
</span>
</div>
<div class="author-block" style="">
<div class="author-avatar" style="background-image: url(https://static1.squarespace.com/static/images/null/100w);"></div>
<h3 class="author-name"><a href="http://makerbar.com/blog/?author=56ed68e445bf217f6956c6d3">Bert Hartmann</a></h3>
<div class="author-bio">
<p></p>
</div>
</div>
<div class="post-entry-injection"></div>
</div>
</footer>
</div>
</div>
</article>
<article class="hentry category-robotics tag-makerbar tag-robotics tag-machine-learning tag-nerf-sentry tag-robots tag-metalworking tag-woodworking tag-electronics tag-programming tag-computer-vision tag-arduino tag-motors tag-hackathon author-jamie-fundinger post-type-text article-index-4"
id="article-5753facdd210b8ffb18aa592" data-item-id="5753facdd210b8ffb18aa592">
<div class="content-wrapper" id="yui_3_17_2_1_1515561462478_174">
<div class="post" id="yui_3_17_2_1_1515561462478_173">
<header>
<span class="article-dateline-above-title">
<span class="date"><a href="http://makerbar.com/blog/2016/6/5/special-thanks-to-our-makerbar-robotics-crew"><time class="published" datetime="2016-06-05">June 05, 2016</time></a></span>
</span>
<h1 class="entry-title" data-content-field="title"><a href="http://makerbar.com/blog/2016/6/5/special-thanks-to-our-makerbar-robotics-crew">Special Thanks to our MakerBar Robotics Crew </a></h1>
<span class="article-dateline">
<span class="date"><a href="http://makerbar.com/blog/2016/6/5/special-thanks-to-our-makerbar-robotics-crew"><time class="published" datetime="2016-06-05">June 05, 2016</time></a><span class="delimiter">/</span></span>
</span>
<span class="article-byline">
<span class="location"></span>
<span class="author"><a href="http://makerbar.com/blog/?author=545293d4e4b01e6be21508e9" rel="author">Jamie Fundinger</a></span>
</span>
</header>
<div class="body entry-content" id="yui_3_17_2_1_1515561462478_172">
<div class="sqs-layout sqs-grid-12 columns-12" data-layout-label="Post Body" data-type="item" data-updated-on="1465121821347" id="item-5753facdd210b8ffb18aa592">
<div class="row sqs-row" id="yui_3_17_2_1_1515561462478_171">
<div class="col sqs-col-12 span-12" id="yui_3_17_2_1_1515561462478_170">
<div class="sqs-block image-block sqs-block-image sqs-text-ready" data-block-type="5" id="block-yui_3_17_2_1_1465121402928_32121">
<div class="sqs-block-content" id="yui_3_17_2_1_1515561462478_169">
<div class="image-block-outer-wrapper layout-caption-below design-layout-inline" id="yui_3_17_2_1_1515561462478_168">
<div class="intrinsic" style="max-width:960.0px;" id="yui_3_17_2_1_1515561462478_167">
<div style="padding-bottom: 100%; overflow: hidden;" class="image-block-wrapper lightbox has-aspect-ratio" data-description="" data-lightbox-theme="dark" id="yui_3_17_2_1_1515561462478_166">
<noscript><img src="https://static1.squarespace.com/static/5695b4b4e0327ce2fd26e670/t/5753fde020c647bf50e30cb2/1465122316983/NerfSentryRoboticsHackathon" alt="NerfSentryRoboticsHackathon" /></noscript><img class="thumb-image loaded"
data-src="https://static1.squarespace.com/static/5695b4b4e0327ce2fd26e670/t/5753fde020c647bf50e30cb2/1465122316983/NerfSentryRoboticsHackathon" data-image="https://static1.squarespace.com/static/5695b4b4e0327ce2fd26e670/t/5753fde020c647bf50e30cb2/1465122316983/NerfSentryRoboticsHackathon"
data-image-dimensions="960x960" data-image-focal-point="0.5,0.5" data-load="false" data-image-id="5753fde020c647bf50e30cb2" data-type="image" data-position-mode="standard" style="left: 0%; top: 0%; width: 100%; height: 100%; position: absolute;"
alt="NerfSentryRoboticsHackathon" src="./news_files/NerfSentryRoboticsHackathon" data-image-resolution="1000w">
</div>
</div>
</div>
</div>
</div>
<div class="sqs-block html-block sqs-block-html" data-block-type="2" id="block-4c0870b9b84ec443b11f">
<div class="sqs-block-content">
<p> </p>
<p>We'd like to give a special thank you to all our community members who came out to help with our <a target="_blank" href="http://www.meetup.com/MakerBar/events/230414519/">Nerf Sentry Robot building Hackathon</a>. Stay tuned
for future updates, or link up with us on our <a target="_blank" href="http://www.meetup.com/MakerBar/">Meetup.com/MakerBar </a>for future dates on the next meetup for the MakerBar Robotics Crew! Hack On!</p>
<p><a href="https://www.facebook.com/hashtag/makerbarbians">#MakerBarbians</a><span style="font-size:14px"> </span></p>
</div>
</div>
</div>
</div>
</div>
</div>
<footer class="article-meta">
<div>
<span class="article-dateline">
<span class="date"><a href="http://makerbar.com/blog/2016/6/5/special-thanks-to-our-makerbar-robotics-crew"><i class="icon-calendar"></i><time class="published" datetime="2016-06-05">June 05, 2016</time></a><span class="delimiter">/</span></span>
</span>
<span class="article-byline">
<span class="location"></span>
<span class="author"><a href="http://makerbar.com/blog/?author=545293d4e4b01e6be21508e9" rel="author"><i class="icon-user"></i>Jamie Fundinger</a><span class="delimiter">/</span></span>
</span>
<div class="categories"><i class="icon-bookmark"></i><a href="http://makerbar.com/blog/?category=Robotics" rel="tag">Robotics</a></div>
<div class="tags"><i class="icon-tag"></i><a href="http://makerbar.com/blog/?tag=MakerBar" rel="tag">MakerBar</a>, <a href="http://makerbar.com/blog/?tag=Robotics" rel="tag">Robotics</a>, <a href="http://makerbar.com/blog/?tag=Machine+Learning" rel="tag">Machine Learning</a>,
<a href="http://makerbar.com/blog/?tag=Nerf+Sentry" rel="tag">Nerf Sentry</a>, <a href="http://makerbar.com/blog/?tag=Robots" rel="tag">Robots</a>, <a href="http://makerbar.com/blog/?tag=Metalworking" rel="tag">Metalworking</a>, <a href="http://makerbar.com/blog/?tag=Woodworking"
rel="tag">Woodworking</a>, <a href="http://makerbar.com/blog/?tag=Electronics" rel="tag">Electronics</a>, <a href="http://makerbar.com/blog/?tag=Programming" rel="tag">Programming</a>, <a href="http://makerbar.com/blog/?tag=Computer+Vision"
rel="tag">Computer Vision</a>, <a href="http://makerbar.com/blog/?tag=Arduino" rel="tag">Arduino</a>, <a href="http://makerbar.com/blog/?tag=Motors" rel="tag">Motors</a>, <a href="http://makerbar.com/blog/?tag=Hackathon" rel="tag">Hackathon</a></div>
<div class="shareLoveButtons">
<span class="sqs-simple-like" data-item-id="5753facdd210b8ffb18aa592" data-like-count="1" id="yui_3_17_2_1_1515561462478_459">
<span class="like-icon"></span>
<span class="like-count">1 Likes</span>
</span>
<span class="squarespace-social-buttons inline-style" data-system-data-id="" data-asset-url="https://static1.squarespace.com/static/5695b4b4e0327ce2fd26e670/5695c14f7086d7e8c28b22ae/5753facdd210b8ffb18aa592/1465122830014/" data-record-type="1" data-full-url="/blog/2016/6/5/special-thanks-to-our-makerbar-robotics-crew"
data-title="Special Thanks to our MakerBar Robotics Crew "><div id="social-yui_3_17_2_1_1515561462478_304" class="yui3-widget yui3-socialbutton"><div id="yui_3_17_2_1_1515561462478_351" class="yui3-socialbutton-content"><div class="ss-social-button-wrapper"><div class="ss-social-button"><span class="ss-social-button-icon"></span>Share</div>
</div>
<div class="ss-social-list-wrapper">
<div class="ss-social-button-list"></div>
</div>
</div>
</div>
</span>
</div>
<div class="author-block" style="">
<div class="author-avatar" style="background-image: url(https://static1.squarespace.com/static/images/5757f49dba67a84e48988b26/100w);"></div>
<h3 class="author-name"><a href="http://makerbar.com/blog/?author=545293d4e4b01e6be21508e9">Jamie Fundinger</a></h3>
<div class="author-bio">
<p></p>
</div>
</div>
<div class="post-entry-injection"></div>
</div>
</footer>
</div>
</div>
</article>
</div>
<div id="page-body-footer" class="extra-wrapper">
<div class="sqs-layout sqs-grid-12 columns-12 empty" data-layout-label="NEWS Footer Content" data-type="block-field" id="page-footer-5695c14f7086d7e8c28b22ae">
<div class="row sqs-row">
<div class="col sqs-col-12 span-12"></div>
</div>
</div>
</div>
</div>
</div>
<div class="clearer" id="body-clearer"></div>
</div>
</div>
<div id="page-footer-wrapper">
<div id="page-footer">
<div id="sqs-social" class="social-links sqs-svg-icon--list" data-content-field="connected-accounts">
<a href="http://www.meetup.com/MakerBar/" target="_blank" class="sqs-svg-icon--wrapper meetup">
<div>
<svg class="sqs-svg-icon--social" viewBox="0 0 64 64">
<use class="sqs-use--icon" xlink:href="#meetup-icon"></use>
<use class="sqs-use--mask" xlink:href="#meetup-mask"></use>
</svg>
</div>
</a>
<a href="https://www.facebook.com/themakerbar/" target="_blank" class="sqs-svg-icon--wrapper facebook">
<div>
<svg class="sqs-svg-icon--social" viewBox="0 0 64 64">
<use class="sqs-use--icon" xlink:href="#facebook-icon"></use>
<use class="sqs-use--mask" xlink:href="#facebook-mask"></use>
</svg>
</div>
</a>
<a href="https://www.youtube.com/channel/UCAA9bDUf_rNPqW4HoBpyl6Q" target="_blank" class="sqs-svg-icon--wrapper youtube">
<div>
<svg class="sqs-svg-icon--social" viewBox="0 0 64 64">
<use class="sqs-use--icon" xlink:href="#youtube-icon"></use>
<use class="sqs-use--mask" xlink:href="#youtube-mask"></use>
</svg>
</div>
</a>
</div>
<div class="sqs-layout sqs-grid-12 columns-12" data-layout-label="Footer Content" data-type="block-field" data-updated-on="1485673590667" id="footer-blocks">
<div class="row sqs-row">
<div class="col sqs-col-12 span-12">
<div class="sqs-block html-block sqs-block-html" data-block-type="2" id="block-e740e5c6fd99e8867241">
<div class="sqs-block-content">
<p class="text-align-left"><em>©2017 MakerBar.</em></p>
</div>
</div>
<div class="sqs-block spacer-block sqs-block-spacer sized vsize-1" data-block-type="21" id="block-yui_3_17_2_1_1412174290717_8323">
<div class="sqs-block-content"> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>