-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
890 lines (727 loc) · 51 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
<!DOCTYPE html>
<html lang="en-US">
<!-- Mirrored from codingjam.it/ by HTTrack Website Copier/3.x [XR&CO'2014], Sat, 05 Dec 2020 10:16:39 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=UTF-8" /><!-- /Added by HTTrack -->
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="xmlrpc.php">
<title>CodingJam – Code With Us!</title>
<link rel='dns-prefetch' href='http://fonts.googleapis.com/' />
<link rel='dns-prefetch' href='http://s.w.org/' />
<link rel="alternate" type="application/rss+xml" title="CodingJam » Feed" href="feed/index.html" />
<link rel="alternate" type="application/rss+xml" title="CodingJam » Comments Feed" href="comments/feed/index.html" />
<link rel='stylesheet' id='wp-block-library-css' href='wp-content/plugins/gutenberg/build/block-library/stylea4fb.css?ver=1591004795' type='text/css' media='all' />
<link rel='stylesheet' id='cookie-law-info-css' href='wp-content/plugins/cookie-law-info/public/css/cookie-law-info-public3cf4.css?ver=1.8.8' type='text/css' media='all' />
<link rel='stylesheet' id='cookie-law-info-gdpr-css' href='wp-content/plugins/cookie-law-info/public/css/cookie-law-info-gdpr3cf4.css?ver=1.8.8' type='text/css' media='all' />
<link crossorigin="anonymous" rel='stylesheet' id='melissa-google-fonts-css' href='https://fonts.googleapis.com/css?family=Lato%3A400%2C400i%2C700%2C700i%7CNoto+Serif%3A400%2C400i%2C700%2C700i&subset=latin&ver=1.1.6' type='text/css' media='all' />
<link rel='stylesheet' id='bootstrap-css' href='wp-content/themes/melissa/css/bootstrap.min7433.css?ver=3.3.7' type='text/css' media='all' />
<link rel='stylesheet' id='bootstrap-theme-css' href='wp-content/themes/melissa/css/bootstrap-theme.min7433.css?ver=3.3.7' type='text/css' media='all' />
<link rel='stylesheet' id='melissa-ie10-viewport-bug-workaround-css' href='wp-content/themes/melissa/css/ie10-viewport-bug-workaround8a54.css?ver=1.0.0' type='text/css' media='all' />
<link rel='stylesheet' id='font-awesome-css' href='wp-content/themes/melissa/css/font-awesome.min1849.css?ver=4.7.0' type='text/css' media='all' />
<link rel='stylesheet' id='owl-carousel-css' href='wp-content/themes/melissa/assets/owl-carousel/owl.carousel3ba1.css?ver=1.3.3' type='text/css' media='all' />
<link rel='stylesheet' id='owl-theme-css' href='wp-content/themes/melissa/assets/owl-carousel/owl.theme3ba1.css?ver=1.3.3' type='text/css' media='all' />
<link rel='stylesheet' id='magnific-popup-css' href='wp-content/themes/melissa/assets/magnific-popup/magnific-popupf488.css?ver=1.1.0' type='text/css' media='all' />
<link rel='stylesheet' id='melissa-style-css' href='wp-content/themes/melissa/style3ec8.css?ver=1.1.6' type='text/css' media='all' />
<style id='melissa-style-inline-css' type='text/css'>
.bwp-post-media img,
.bwp-post-carousel-item img,
.widget_bwp_posts_slider_item img {
width: 100%;
margin: 0;
}
.bwp-post-wrap:hover {
margin-top: 0;
-webkit-box-shadow: 0 4px 0 -2px rgba(46,51,64,0.1);
-moz-box-shadow: 0 4px 0 -2px rgba(46,51,64,0.1);
box-shadow: 0 4px 0 -2px rgba(46,51,64,0.1);
}
#bwp-masonry-container.no-masonry .bwp-post-wrap:hover {
top: 0;
}
.bwp-no-results-container:hover,
.bwp-single-article:hover,
.bwp-featured-media-container:hover,
.post-navigation .nav-links a:hover,
.bwp-about-author-container:hover,
.comment-respond:hover,
.comment-body:hover,
#comments .no-comments:hover,
.comment-navigation .nav-links a:hover,
.bwp-related-post-wrap:hover,
.bwp-page-404-container:hover,
.bwp-sidebar-wrap:hover {
top: 0;
-webkit-box-shadow: 0 4px 0 -2px rgba(46,51,64,0.1);
-moz-box-shadow: 0 4px 0 -2px rgba(46,51,64,0.1);
box-shadow: 0 4px 0 -2px rgba(46,51,64,0.1);
}
#bwp-header-wrap {
background-color: #2e3340;
}
.bwp-header-bg-overlay,
.bwp-header-rs-bg-overlay {
background-color: rgba(46, 51, 64, 0.9);
}
.bwp-content a,
.comment-content a,
.bwp-post-quote a {
color: #2052bf;
}
</style>
<link rel='stylesheet' id='enlighter-local-css' href='wp-content/plugins/enlighter/resources/EnlighterJS.min9086.css?ver=3.9.0' type='text/css' media='all' />
<script type='text/javascript' src='wp-includes/js/jquery/jquery4a5f.js?ver=1.12.4-wp'></script>
<script type='text/javascript' src='wp-includes/js/jquery/jquery-migrate.min330a.js?ver=1.4.1'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var Cli_Data = {"nn_cookie_ids":[],"cookielist":[]};
var log_object = {"ajax_url":"https:\/\/codingjam.it\/wp-admin\/admin-ajax.php"};
/* ]]> */
</script>
<script type='text/javascript' src='wp-content/plugins/cookie-law-info/public/js/cookie-law-info-public3cf4.js?ver=1.8.8'></script>
<!--[if lt IE 9]>
<script type='text/javascript' src='https://codingjam.it/wp-content/themes/melissa/js/html5shiv.min.js?ver=3.7.3'></script>
<![endif]-->
<!--[if lt IE 9]>
<script type='text/javascript' src='https://codingjam.it/wp-content/themes/melissa/js/respond.min.js?ver=1.4.2'></script>
<![endif]-->
<script type='text/javascript' src='wp-content/plugins/enlighter/resources/mootools-core-yc9086.js?ver=3.9.0'></script>
<script type='text/javascript' src='wp-content/plugins/enlighter/resources/EnlighterJS.min9086.js?ver=3.9.0'></script>
<link rel='https://api.w.org/' href='wp-json/index.html' />
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="xmlrpc0db0.php?rsd" />
<meta name="generator" content="WordPress 5.4.1" />
<!-- There is no amphtml version available for this URL. --><script type="text/javascript">/* <![CDATA[ */EnlighterJS_Config = {"selector":{"block":"pre.EnlighterJSRAW","inline":"code.EnlighterJSRAW"},"language":"generic","theme":"droide","indent":2,"hover":"hoverEnabled","showLinenumbers":true,"rawButton":true,"infoButton":false,"windowButton":false,"rawcodeDoubleclick":false,"grouping":true,"cryptex":{"enabled":false,"email":"[email protected]"}};!function(){var a=function(a){var b="Enlighter Error: ";console.error?console.error(b+a):console.log&&console.log(b+a)};return window.addEvent?"undefined"==typeof EnlighterJS?void a("Javascript Resources not loaded yet!"):"undefined"==typeof EnlighterJS_Config?void a("Configuration not loaded yet!"):void window.addEvent("domready",function(){EnlighterJS.Util.Init(EnlighterJS_Config.selector.block,EnlighterJS_Config.selector.inline,EnlighterJS_Config)}):void a("MooTools Framework not loaded yet!")}();;/* ]]> */</script><link rel="icon" href="wp-content/uploads/2018/09/cropped-codingjam-jar-transp-white-big-512-32x32.png" sizes="32x32" />
<link rel="icon" href="wp-content/uploads/2018/09/cropped-codingjam-jar-transp-white-big-512-192x192.png" sizes="192x192" />
<link rel="apple-touch-icon" href="wp-content/uploads/2018/09/cropped-codingjam-jar-transp-white-big-512-180x180.png" />
<meta name="msapplication-TileImage" content="https://codingjam.it/wp-content/uploads/2018/09/cropped-codingjam-jar-transp-white-big-512-270x270.png" />
</head>
<body class="home blog wp-custom-logo">
<!-- header -->
<header id="bwp-header-wrap" class="bwp-header-simple">
<!-- header bg -->
<div class="bwp-header-bg" style="background: url(wp-content/uploads/2017/07/cropped-P7101915_2.jpg) 50% 0 no-repeat">
<div class="bwp-header-bg-overlay"></div>
<!-- header content -->
<div class="container">
<div class="bwp-header-content-container">
<!-- row 1 - logo + navigation -->
<div class="bwp-main-navigation-container clearfix">
<!-- image logo -->
<div class="bwp-logo-container">
<a href="index.html" class="custom-logo-link" rel="home"><img width="207" height="70" src="wp-content/uploads/2018/09/cropped-logo-cnj-bianco.png" class="custom-logo" alt="CodingJam" srcset="https://codingjam.it/wp-content/uploads/2018/09/cropped-logo-cnj-bianco.png 207w, https://codingjam.it/wp-content/uploads/2018/09/cropped-logo-cnj-bianco-150x51.png 150w" sizes="(max-width: 207px) 100vw, 207px" /></a> </div>
<!-- end image logo -->
<!-- search -->
<div class="bwp-header-search-container hidden-sm hidden-xs">
<a href="#" id="bwp-header-search-icon">
<i class="fa fa-search"></i>
</a>
<div class="bwp-dropdown-search-container bwp-search-hidden">
<!-- search form -->
<form id="searchform" role="search" method="get" action="https://codingjam.it/">
<div class="input-group">
<input type="text" name="s" id="s" class="bwp-search-field form-control" placeholder="Enter your search query...">
<span class="input-group-btn">
<button type="submit" class="btn bwp-search-submit">
<i class="fa fa-search"></i>
</button>
</span>
</div>
</form>
<!-- end search form -->
</div>
</div>
<!-- end search -->
<!-- menu -->
<div class="bwp-menu-container hidden-sm hidden-xs">
<nav class="menu-menu-navigation-2-container"><ul id="menu-menu-navigation-2" class="sf-menu"><li id="menu-item-12007" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-12007"><a href="#">Programmazione</a>
<ul class="sub-menu">
<li id="menu-item-12022" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12022"><a href="category/java/index.html">Java</a></li>
<li id="menu-item-12009" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12009"><a href="category/java/java-8/index.html">Java 8</a></li>
<li id="menu-item-12020" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12020"><a href="category/rxjava/index.html">RxJava</a></li>
<li id="menu-item-12017" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12017"><a href="category/scala/index.html">Scala</a></li>
</ul>
</li>
<li id="menu-item-12006" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12006"><a href="category/agile/index.html">Agile</a></li>
<li id="menu-item-12005" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12005"><a href="category/android/index.html">Android</a></li>
<li id="menu-item-12008" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-12008"><a href="#">Web</a>
<ul class="sub-menu">
<li id="menu-item-12014" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12014"><a href="category/angularjs/index.html">AngularJS</a></li>
<li id="menu-item-12012" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12012"><a href="category/ejb/index.html">EJB</a></li>
<li id="menu-item-12010" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12010"><a href="category/javascript/index.html">Javascript</a></li>
<li id="menu-item-12021" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12021"><a href="category/application-server/jboss/index.html">JBoss</a></li>
<li id="menu-item-12016" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12016"><a href="category/jsf/index.html">JSF</a></li>
<li id="menu-item-12015" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12015"><a href="category/jquery-2/index.html">jQuery</a></li>
<li id="menu-item-12019" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12019"><a href="category/spring-2/index.html">Spring</a></li>
<li id="menu-item-12018" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12018"><a href="category/application-server/websphere/index.html">Websphere</a></li>
</ul>
</li>
</ul></nav> </div>
<!-- end menu -->
<!-- mobile menu -->
<div class="bwp-mobile-menu-container hidden-md hidden-lg">
<!-- mobile menu icon -->
<a href="#" id="bwp-mobile-menu-icon">
<i class="fa fa-bars"></i>
</a>
<!-- end mobile menu icon -->
<!-- dropdown mobile menu -->
<div class="bwp-dropdown-mobile-menu bwp-mobile-menu-hidden">
<nav class="menu-menu-navigation-2-container"><ul id="menu-menu-navigation-3" class="bwp-mobile-menu list-unstyled"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-12007"><a href="#">Programmazione</a>
<ul class="sub-menu">
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12022"><a href="category/java/index.html">Java</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12009"><a href="category/java/java-8/index.html">Java 8</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12020"><a href="category/rxjava/index.html">RxJava</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12017"><a href="category/scala/index.html">Scala</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12006"><a href="category/agile/index.html">Agile</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12005"><a href="category/android/index.html">Android</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-12008"><a href="#">Web</a>
<ul class="sub-menu">
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12014"><a href="category/angularjs/index.html">AngularJS</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12012"><a href="category/ejb/index.html">EJB</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12010"><a href="category/javascript/index.html">Javascript</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12021"><a href="category/application-server/jboss/index.html">JBoss</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12016"><a href="category/jsf/index.html">JSF</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12015"><a href="category/jquery-2/index.html">jQuery</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12019"><a href="category/spring-2/index.html">Spring</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12018"><a href="category/application-server/websphere/index.html">Websphere</a></li>
</ul>
</li>
</ul></nav> </div>
<!-- end dropdown mobile menu -->
</div>
<!-- end mobile menu -->
</div>
<!-- end row 1 - logo + navigation -->
<!-- row 2 - header custom text -->
<div class="bwp-header-custom-text-container">
<!-- custom text -->
<h1 class="bwp-header-custom-title">
CodingJam </h1>
<p class="bwp-header-custom-text">
è un blog che raccoglie le esperienze di sviluppo con diversi linguaggi di programmazione. Qui si discute della propria passione, scrivere codice. </p>
<div class="bwp-header-transparent-line clearfix">
<span class="bwp-header-t-line-1"></span>
<span class="bwp-header-t-line-2"></span>
</div>
<!-- end custom text -->
</div>
<!-- end row 2 - header custom text -->
</div>
</div>
<!-- end header content -->
</div>
<!-- end header bg -->
<!-- sticky navigation -->
<div class="bwp-sticky-navigation-wrap bwp-transition-4 clearfix">
<!-- sticky navigation icon -->
<a href="#" id="bwp-sticky-navigation-icon">
<i class="fa fa-bars"></i>
</a>
<!-- end sticky navigation icon -->
<!-- sticky navigation container -->
<div class="bwp-sticky-navigation-container bwp-sticky-navigation-hidden">
<nav class="menu-menu-navigation-2-container"><ul id="menu-menu-navigation-4" class="sf-menu"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-12007"><a href="#">Programmazione</a>
<ul class="sub-menu">
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12022"><a href="category/java/index.html">Java</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12009"><a href="category/java/java-8/index.html">Java 8</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12020"><a href="category/rxjava/index.html">RxJava</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12017"><a href="category/scala/index.html">Scala</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12006"><a href="category/agile/index.html">Agile</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12005"><a href="category/android/index.html">Android</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-12008"><a href="#">Web</a>
<ul class="sub-menu">
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12014"><a href="category/angularjs/index.html">AngularJS</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12012"><a href="category/ejb/index.html">EJB</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12010"><a href="category/javascript/index.html">Javascript</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12021"><a href="category/application-server/jboss/index.html">JBoss</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12016"><a href="category/jsf/index.html">JSF</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12015"><a href="category/jquery-2/index.html">jQuery</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12019"><a href="category/spring-2/index.html">Spring</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12018"><a href="category/application-server/websphere/index.html">Websphere</a></li>
</ul>
</li>
</ul></nav> </div>
<!-- end sticky navigation container -->
</div>
<!-- end sticky navigation -->
</header>
<!-- end header -->
<!-- masonry blog -->
<section id="bwp-blog-posts-wrap">
<div class="container">
<h2 class="bwp-hidden-section-heading">Blog posts</h2>
<div class="row"><div class="col-md-8 bwp-posts-col bwp-sidebar-right"><div class="bwp-posts-col-wrap">
<!-- masonry container -->
<div class="bwp-masonry-o-hidden">
<div id="bwp-masonry-container" class="no-masonry" role="main">
<!-- post - standard format -->
<article id="post-18085" class="bwp-masonry-item bwp-blog-col-1 post-18085 post type-post status-publish format-standard hentry category-tutorial-2">
<div class="bwp-post-wrap bwp-transition-3">
<!-- content -->
<div class="bwp-post-content">
<!-- title -->
<h3 class="bwp-post-title entry-title">
<a href="come-creare-un-blog-jamstack-multilingua-con-nuxt-js-e-strapi-cms/index.html">Come creare un blog Jamstack multilingua con Nuxt.js e Strapi CMS</a>
</h3>
<!-- end title -->
<!-- excerpt -->
<div class="bwp-post-excerpt entry-content">
<p>Jamstack (Javascript, API e Markup Stack) è una terminologia che ruota attorno a un nuovo modo di fare progetti web dove non c’è bisogno di un backend che builda la pagina ad ogni richiesta ma renderizza tutte le pagine in maniera statica al momento della build e fa il deploy su una Content Delivery Network (CDN). Questo approccio porta ad una maggior sicurezza, ad una grande scalabilità, una riduzione dei costi di hosting e un grande boost delle performance. In questo […]</p>
</div>
<!-- end excerpt -->
<!-- details -->
<div class="bwp-post-details-wrap clearfix">
<!-- author (hidden) -->
<span class="screen-reader-text">
<span class="vcard author"><span class="fn"><a href="author/andrea-stagi/index.html" title="Posts by Andrea Stagi" rel="author">Andrea Stagi</a></span></span>
</span>
<!-- end author (hidden) -->
<!-- date -->
<span class="bwp-post-date"><span class="date updated"><a href="author/andrea-stagi/index.html" title="Posts by Andrea Stagi" rel="author">Andrea Stagi</a></span></span>
<a href="come-creare-un-blog-jamstack-multilingua-con-nuxt-js-e-strapi-cms/index.html" class="bwp-post-date">
<span class="date updated">03/06/2020</span>
</a>
<!-- end date -->
</div>
<!-- end details -->
</div>
<!-- end content -->
</div>
</article>
<!-- end post -->
<!-- post - standard format -->
<article id="post-18029" class="bwp-masonry-item bwp-blog-col-1 post-18029 post type-post status-publish format-standard hentry category-tutorial-2 tag-frameworkless tag-javascript-2 tag-rendering">
<div class="bwp-post-wrap bwp-transition-3">
<!-- content -->
<div class="bwp-post-content">
<!-- title -->
<h3 class="bwp-post-title entry-title">
<a href="come-creare-un-motore-di-rendering-custom-in-javascript/index.html">Come creare un motore di rendering in JavaScript</a>
</h3>
<!-- end title -->
<!-- excerpt -->
<div class="bwp-post-excerpt entry-content">
<p>Uno degli aspetti più importanti dello sviluppo front-end è quello di mostrare agli utenti dei dati utili a svolgere l’attività per la quale la nostra web application è stata creata. Se volessimo portare questa definizione su un piano più tecnico potremmo dire che il nostro scopo è trasformare i dati in una serie di elementi del DOM: in altre parole fare quello che si chiama rendering. La parte di codice che, a basso livello, si occupa di creare, manipolare ed […]</p>
</div>
<!-- end excerpt -->
<!-- details -->
<div class="bwp-post-details-wrap clearfix">
<!-- author (hidden) -->
<span class="screen-reader-text">
<span class="vcard author"><span class="fn"><a href="author/francesco-strazzullo/index.html" title="Posts by Francesco Strazzullo" rel="author">Francesco Strazzullo</a></span></span>
</span>
<!-- end author (hidden) -->
<!-- date -->
<span class="bwp-post-date"><span class="date updated"><a href="author/francesco-strazzullo/index.html" title="Posts by Francesco Strazzullo" rel="author">Francesco Strazzullo</a></span></span>
<a href="come-creare-un-motore-di-rendering-custom-in-javascript/index.html" class="bwp-post-date">
<span class="date updated">27/08/2019</span>
</a>
<!-- end date -->
</div>
<!-- end details -->
</div>
<!-- end content -->
</div>
</article>
<!-- end post -->
<!-- post - standard format -->
<article id="post-17949" class="bwp-masonry-item bwp-blog-col-1 post-17949 post type-post status-publish format-standard hentry category-devops category-docker category-tutorial-2 tag-docker tag-docker-compose tag-docker-swarm tag-kubernetes">
<div class="bwp-post-wrap bwp-transition-3">
<!-- content -->
<div class="bwp-post-content">
<!-- title -->
<h3 class="bwp-post-title entry-title">
<a href="da-docker-compose-a-docker-swarm-viaggio-di-sola-andata/index.html">Da Docker Compose a Docker Swarm: viaggio di sola andata?</a>
</h3>
<!-- end title -->
<!-- excerpt -->
<div class="bwp-post-excerpt entry-content">
<p>Sin dalle prime ore di uso di Docker, si sente subito la necessità di salvare in qualche formato, che non sia uno script bash, i mille parametri che si possono passare al comando docker run. Ben presto si fa la conoscenza di Docker Compose: avere un file YAML che descrive i parametri di lancio, ma non solo, di uno o più container ci fa sentire al sicuro perché possiamo metterlo sotto controllo di versione. Appena però abbiamo bisogno di far […]</p>
</div>
<!-- end excerpt -->
<!-- details -->
<div class="bwp-post-details-wrap clearfix">
<!-- author (hidden) -->
<span class="screen-reader-text">
<span class="vcard author"><span class="fn"><a href="author/andrea-como/index.html" title="Posts by Andrea Como" rel="author">Andrea Como</a></span></span>
</span>
<!-- end author (hidden) -->
<!-- date -->
<span class="bwp-post-date"><span class="date updated"><a href="author/andrea-como/index.html" title="Posts by Andrea Como" rel="author">Andrea Como</a></span></span>
<a href="da-docker-compose-a-docker-swarm-viaggio-di-sola-andata/index.html" class="bwp-post-date">
<span class="date updated">06/05/2019</span>
</a>
<!-- end date -->
</div>
<!-- end details -->
</div>
<!-- end content -->
</div>
</article>
<!-- end post -->
<!-- post - standard format -->
<article id="post-17844" class="bwp-masonry-item bwp-blog-col-1 post-17844 post type-post status-publish format-standard has-post-thumbnail hentry category-tutorial-2 tag-alexa tag-javascript-2">
<div class="bwp-post-wrap bwp-transition-3">
<!-- media - featured image -->
<figure class="bwp-post-media">
<a href="sviluppo-di-skill-per-amazon-alexa/index.html" class="bwp-post-media-link">
<img width="1200" height="513" src="wp-content/uploads/2019/01/Amazon_Alexa_Stacked_RGB_Dark-Color-1200x513.png" class="attachment-melissa-img-1200-auto size-melissa-img-1200-auto wp-post-image" alt="" srcset="https://codingjam.it/wp-content/uploads/2019/01/Amazon_Alexa_Stacked_RGB_Dark-Color-1200x513.png 1200w, https://codingjam.it/wp-content/uploads/2019/01/Amazon_Alexa_Stacked_RGB_Dark-Color-300x128.png 300w, https://codingjam.it/wp-content/uploads/2019/01/Amazon_Alexa_Stacked_RGB_Dark-Color-768x328.png 768w, https://codingjam.it/wp-content/uploads/2019/01/Amazon_Alexa_Stacked_RGB_Dark-Color-1024x437.png 1024w, https://codingjam.it/wp-content/uploads/2019/01/Amazon_Alexa_Stacked_RGB_Dark-Color-150x64.png 150w, https://codingjam.it/wp-content/uploads/2019/01/Amazon_Alexa_Stacked_RGB_Dark-Color-706x302.png 706w, https://codingjam.it/wp-content/uploads/2019/01/Amazon_Alexa_Stacked_RGB_Dark-Color.png 1400w" sizes="(max-width: 1200px) 100vw, 1200px" /> <div class="bwp-post-bg-overlay bwp-transition-4"></div>
<div class="bwp-post-hover-icon-wrap">
<div class="bwp-post-hover-icon-alignment">
<div class="bwp-post-hover-icon-center">
<span class="bwp-transition-4"><i class="fa fa-share"></i></span>
</div>
</div>
</div>
</a>
</figure>
<!-- end media -->
<!-- content -->
<div class="bwp-post-content">
<!-- title -->
<h3 class="bwp-post-title entry-title">
<a href="sviluppo-di-skill-per-amazon-alexa/index.html">Sviluppo di Skill per Amazon Alexa</a>
</h3>
<!-- end title -->
<!-- excerpt -->
<div class="bwp-post-excerpt entry-content">
<p>Dallo scorso 30 ottobre anche in Italia è disponibile la gamma di Smart Speaker Echo di Amazon. Gli Echo (ma anche altri dispositivi compatibili) sono alimentati da Alexa , l’assistente vocale di Amazon. Oltre alle possibilità offerte dal sistema principale come impostare timer, fare ricerche su internet e cose di questo genere, è possibile aumentare le possibilità offerte da questa piattaforma tramite applicazioni di terze parti. Queste applicazioni nell’ecosistema Alexa sono chiamate Skills. Noi di Coding Jam abbiamo creato la […]</p>
</div>
<!-- end excerpt -->
<!-- details -->
<div class="bwp-post-details-wrap clearfix">
<!-- author (hidden) -->
<span class="screen-reader-text">
<span class="vcard author"><span class="fn"><a href="author/francesco-strazzullo/index.html" title="Posts by Francesco Strazzullo" rel="author">Francesco Strazzullo</a></span></span>
</span>
<!-- end author (hidden) -->
<!-- date -->
<span class="bwp-post-date"><span class="date updated"><a href="author/francesco-strazzullo/index.html" title="Posts by Francesco Strazzullo" rel="author">Francesco Strazzullo</a></span></span>
<a href="sviluppo-di-skill-per-amazon-alexa/index.html" class="bwp-post-date">
<span class="date updated">22/01/2019</span>
</a>
<!-- end date -->
</div>
<!-- end details -->
</div>
<!-- end content -->
</div>
</article>
<!-- end post -->
<!-- post - standard format -->
<article id="post-17829" class="bwp-masonry-item bwp-blog-col-1 post-17829 post type-post status-publish format-standard has-post-thumbnail hentry category-docker category-java category-java-8 category-tutorial-2 tag-container tag-distroless tag-docker tag-docker-registry tag-java8 tag-jib tag-vagrant">
<div class="bwp-post-wrap bwp-transition-3">
<!-- media - featured image -->
<figure class="bwp-post-media">
<a href="docker-e-microservizi-java-con-jib/index.html" class="bwp-post-media-link">
<img width="689" height="312" src="wp-content/uploads/2018/12/jib.png" class="attachment-melissa-img-1200-auto size-melissa-img-1200-auto wp-post-image" alt="" srcset="https://codingjam.it/wp-content/uploads/2018/12/jib.png 689w, https://codingjam.it/wp-content/uploads/2018/12/jib-300x136.png 300w, https://codingjam.it/wp-content/uploads/2018/12/jib-150x68.png 150w" sizes="(max-width: 689px) 100vw, 689px" /> <div class="bwp-post-bg-overlay bwp-transition-4"></div>
<div class="bwp-post-hover-icon-wrap">
<div class="bwp-post-hover-icon-alignment">
<div class="bwp-post-hover-icon-center">
<span class="bwp-transition-4"><i class="fa fa-share"></i></span>
</div>
</div>
</div>
</a>
</figure>
<!-- end media -->
<!-- content -->
<div class="bwp-post-content">
<!-- title -->
<h3 class="bwp-post-title entry-title">
<a href="docker-e-microservizi-java-con-jib/index.html">Docker e microservizi Java con Jib</a>
</h3>
<!-- end title -->
<!-- excerpt -->
<div class="bwp-post-excerpt entry-content">
<p>Jib è un tool proposto da Google per semplificare e rendere efficiente la creazioni di immagini Docker per microservizi scritti in Java. In questo post vediamo come usarlo e quali sono le caratteristiche principali.</p>
</div>
<!-- end excerpt -->
<!-- details -->
<div class="bwp-post-details-wrap clearfix">
<!-- author (hidden) -->
<span class="screen-reader-text">
<span class="vcard author"><span class="fn"><a href="author/giampaolo-trapasso/index.html" title="Posts by Giampaolo Trapasso" rel="author">Giampaolo Trapasso</a></span></span>
</span>
<!-- end author (hidden) -->
<!-- date -->
<span class="bwp-post-date"><span class="date updated"><a href="author/giampaolo-trapasso/index.html" title="Posts by Giampaolo Trapasso" rel="author">Giampaolo Trapasso</a></span></span>
<a href="docker-e-microservizi-java-con-jib/index.html" class="bwp-post-date">
<span class="date updated">17/12/2018</span>
</a>
<!-- end date -->
</div>
<!-- end details -->
</div>
<!-- end content -->
</div>
</article>
<!-- end post -->
<!-- post - standard format -->
<article id="post-17801" class="bwp-masonry-item bwp-blog-col-1 post-17801 post type-post status-publish format-standard has-post-thumbnail hentry category-scala category-tutorial-2 tag-case-class tag-compilatore tag-impliciti-scala tag-linguaggio-scala tag-scala tag-tutorial">
<div class="bwp-post-wrap bwp-transition-3">
<!-- media - featured image -->
<figure class="bwp-post-media">
<a href="scala-gli-impliciti/index.html" class="bwp-post-media-link">
<img width="1200" height="675" src="wp-content/uploads/2018/12/scala-1200x675.jpg" class="attachment-melissa-img-1200-auto size-melissa-img-1200-auto wp-post-image" alt="linguaggio scala" srcset="https://codingjam.it/wp-content/uploads/2018/12/scala-1200x675.jpg 1200w, https://codingjam.it/wp-content/uploads/2018/12/scala-300x169.jpg 300w, https://codingjam.it/wp-content/uploads/2018/12/scala-768x432.jpg 768w, https://codingjam.it/wp-content/uploads/2018/12/scala-1024x576.jpg 1024w, https://codingjam.it/wp-content/uploads/2018/12/scala-150x84.jpg 150w, https://codingjam.it/wp-content/uploads/2018/12/scala-706x397.jpg 706w, https://codingjam.it/wp-content/uploads/2018/12/scala.jpg 1920w" sizes="(max-width: 1200px) 100vw, 1200px" /> <div class="bwp-post-bg-overlay bwp-transition-4"></div>
<div class="bwp-post-hover-icon-wrap">
<div class="bwp-post-hover-icon-alignment">
<div class="bwp-post-hover-icon-center">
<span class="bwp-transition-4"><i class="fa fa-share"></i></span>
</div>
</div>
</div>
</a>
</figure>
<!-- end media -->
<!-- content -->
<div class="bwp-post-content">
<!-- title -->
<h3 class="bwp-post-title entry-title">
<a href="scala-gli-impliciti/index.html">Scala: gli impliciti</a>
</h3>
<!-- end title -->
<!-- excerpt -->
<div class="bwp-post-excerpt entry-content">
<p>Una guida introduttiva sull’utilizzo degli impliciti in Scala.</p>
</div>
<!-- end excerpt -->
<!-- details -->
<div class="bwp-post-details-wrap clearfix">
<!-- author (hidden) -->
<span class="screen-reader-text">
<span class="vcard author"><span class="fn"><a href="author/ubaldo/index.html" title="Posts by Ubaldo Pescatore" rel="author">Ubaldo Pescatore</a></span></span>
</span>
<!-- end author (hidden) -->
<!-- date -->
<span class="bwp-post-date"><span class="date updated"><a href="author/ubaldo/index.html" title="Posts by Ubaldo Pescatore" rel="author">Ubaldo Pescatore</a></span></span>
<a href="scala-gli-impliciti/index.html" class="bwp-post-date">
<span class="date updated">10/12/2018</span>
</a>
<!-- end date -->
</div>
<!-- end details -->
</div>
<!-- end content -->
</div>
</article>
<!-- end post -->
<!-- post - standard format -->
<article id="post-17785" class="bwp-masonry-item bwp-blog-col-1 post-17785 post type-post status-publish format-standard has-post-thumbnail hentry category-cdi category-database category-java category-nosql category-nosql-3 tag-eclipse-2 tag-jakartaee tag-java tag-javaee tag-jnosql tag-nosql-2">
<div class="bwp-post-wrap bwp-transition-3">
<!-- media - featured image -->
<figure class="bwp-post-media">
<a href="eclipse-jnosql/index.html" class="bwp-post-media-link">
<img width="714" height="449" src="wp-content/uploads/2018/11/23image1-1530560522062.png" class="attachment-melissa-img-1200-auto size-melissa-img-1200-auto wp-post-image" alt="JNoSQL Logo" srcset="https://codingjam.it/wp-content/uploads/2018/11/23image1-1530560522062.png 714w, https://codingjam.it/wp-content/uploads/2018/11/23image1-1530560522062-300x189.png 300w, https://codingjam.it/wp-content/uploads/2018/11/23image1-1530560522062-150x94.png 150w, https://codingjam.it/wp-content/uploads/2018/11/23image1-1530560522062-706x444.png 706w" sizes="(max-width: 714px) 100vw, 714px" /> <div class="bwp-post-bg-overlay bwp-transition-4"></div>
<div class="bwp-post-hover-icon-wrap">
<div class="bwp-post-hover-icon-alignment">
<div class="bwp-post-hover-icon-center">
<span class="bwp-transition-4"><i class="fa fa-share"></i></span>
</div>
</div>
</div>
</a>
</figure>
<!-- end media -->
<!-- content -->
<div class="bwp-post-content">
<!-- title -->
<h3 class="bwp-post-title entry-title">
<a href="eclipse-jnosql/index.html">Eclipse JNoSQL: un’API per i database NoSQL</a>
</h3>
<!-- end title -->
<!-- excerpt -->
<div class="bwp-post-excerpt entry-content">
<p>Eclipse JNoSQL è un framework Java che semplifica l’integrazione delle applicazioni con i database NoSQL. Definisce un insieme di API e fornisce un’implementazione standard per la maggior parte dei database con l’obiettivo di ottenere un accoppiamento molto basso con le tecnologie NoSQL utilizzate nelle applicazioni. Il progetto ha due livelli: Comunicazione: un insieme di API che definisce la comunicazione con i database NoSQL. Rispetto al tradizionale mondo RDBMS, sono equivalenti a JDBC. Contiene quattro moduli, uno per ogni tipo di […]</p>
</div>
<!-- end excerpt -->
<!-- details -->
<div class="bwp-post-details-wrap clearfix">
<!-- author (hidden) -->
<span class="screen-reader-text">
<span class="vcard author"><span class="fn"><a href="author/otavio/index.html" title="Posts by Otavio Goncalves de Santana" rel="author">Otavio Goncalves de Santana</a></span></span>
</span>
<!-- end author (hidden) -->
<!-- date -->
<span class="bwp-post-date"><span class="date updated"><a href="author/otavio/index.html" title="Posts by Otavio Goncalves de Santana" rel="author">Otavio Goncalves de Santana</a></span></span>
<a href="eclipse-jnosql/index.html" class="bwp-post-date">
<span class="date updated">26/11/2018</span>
</a>
<!-- end date -->
</div>
<!-- end details -->
</div>
<!-- end content -->
</div>
</article>
<!-- end post -->
<!-- post - standard format -->
<article id="post-17728" class="bwp-masonry-item bwp-blog-col-1 post-17728 post type-post status-publish format-standard has-post-thumbnail hentry category-docker category-java-8 category-tutorial-2 tag-constraints tag-cores tag-cpu tag-docker tag-heap tag-java8 tag-jvm tag-memory">
<div class="bwp-post-wrap bwp-transition-3">
<!-- media - featured image -->
<figure class="bwp-post-media">
<a href="java-8-e-docker-conosciamone-i-limiti/index.html" class="bwp-post-media-link">
<img width="800" height="470" src="wp-content/uploads/2018/11/javadocker.png" class="attachment-melissa-img-1200-auto size-melissa-img-1200-auto wp-post-image" alt="" srcset="https://codingjam.it/wp-content/uploads/2018/11/javadocker.png 800w, https://codingjam.it/wp-content/uploads/2018/11/javadocker-300x176.png 300w, https://codingjam.it/wp-content/uploads/2018/11/javadocker-768x451.png 768w, https://codingjam.it/wp-content/uploads/2018/11/javadocker-150x88.png 150w, https://codingjam.it/wp-content/uploads/2018/11/javadocker-706x415.png 706w" sizes="(max-width: 800px) 100vw, 800px" /> <div class="bwp-post-bg-overlay bwp-transition-4"></div>
<div class="bwp-post-hover-icon-wrap">
<div class="bwp-post-hover-icon-alignment">
<div class="bwp-post-hover-icon-center">
<span class="bwp-transition-4"><i class="fa fa-share"></i></span>
</div>
</div>
</div>
</a>
</figure>
<!-- end media -->
<!-- content -->
<div class="bwp-post-content">
<!-- title -->
<h3 class="bwp-post-title entry-title">
<a href="java-8-e-docker-conosciamone-i-limiti/index.html">Java 8 e Docker: conosciamone i limiti</a>
</h3>
<!-- end title -->
<!-- excerpt -->
<div class="bwp-post-excerpt entry-content">
<p>Lo sviluppo lato backend negli ultimi anni è cambiato radicalmente per chi si è lasciato affascinare e coinvolgere da Docker e tutto quello che gli ruota intorno. Per molti, me in primis, ha semplificato notevolmente non solo la modalità di accesso e interazione con i sistemi attorno all’applicazione che stiamo sviluppando, come il database o il broker di code, ma soprattutto ha permesso di rendere più semplici e finalmente alla portata la scrittura e il mantenimento di test di integrazione (come avevamo <a href="integration-test-con-maven-e-docker/index.html" target="_blank" rel="noopener noreferrer">già avuto modo di vedere</a>).</p>
</div>
<!-- end excerpt -->
<!-- details -->
<div class="bwp-post-details-wrap clearfix">
<!-- author (hidden) -->
<span class="screen-reader-text">
<span class="vcard author"><span class="fn"><a href="author/andrea-como/index.html" title="Posts by Andrea Como" rel="author">Andrea Como</a></span></span>
</span>
<!-- end author (hidden) -->
<!-- date -->
<span class="bwp-post-date"><span class="date updated"><a href="author/andrea-como/index.html" title="Posts by Andrea Como" rel="author">Andrea Como</a></span></span>
<a href="java-8-e-docker-conosciamone-i-limiti/index.html" class="bwp-post-date">
<span class="date updated">05/11/2018</span>
</a>
<!-- end date -->
</div>
<!-- end details -->
</div>
<!-- end content -->
</div>
</article>
<!-- end post -->
</div>
</div>
<!-- end masonry container -->
<nav class="navigation posts-navigation" role="navigation" aria-label="Posts">
<h2 class="screen-reader-text">Posts navigation</h2>
<div class="nav-links"><div class="nav-previous"><a href="page/2/index.html" ><span>Older posts</span><i class="fa fa-angle-right"></i></a></div></div>
</nav>
</div><!-- /bwp-posts-col-wrap --></div><!-- /col-md-8 --><div class="col-md-4 bwp-sidebar-col bwp-sidebar-right">
<!-- sidebar -->
<div class="bwp-sidebar-wrap bwp-transition-3" role="complementary">
<aside id="pages-6" class="bwp-widget widget_pages clearfix"><h3 class="bwp-widget-title">CodingJam</h3> <ul>
<li class="page_item page-item-12423"><a href="scrivere-su-cosenonjaviste/index.html">Scrivere su CodingJam</a></li>
</ul>
<div class="bwp-widget-line"></div></aside><aside id="melissa_social_widget-3" class="bwp-widget widget_bwp_social clearfix"><h3 class="bwp-widget-title">Social links</h3>
<ul class="list-unstyled clearfix">
<li>
<a href="https://twitter.com/codingjam" target="_blank" class="w_bwp_social_i w_bwp_social_twitter">
<i class="fa fa-twitter"></i>
</a>
</li>
<li>
<a href="https://www.facebook.com/codingjamit/" target="_blank" class="w_bwp_social_i w_bwp_social_facebook">
<i class="fa fa-facebook"></i>
</a>
</li>
<li>
<a href="https://github.com/coding-jam" target="_blank" class="w_bwp_social_i w_bwp_social_github">
<i class="fa fa-github"></i>
</a>
</li>
</ul>
<div class="bwp-widget-line"></div></aside><aside id="custom_html-9" class="widget_text bwp-widget widget_custom_html clearfix"><div class="textwidget custom-html-widget"><a class="twitter-timeline" href="https://twitter.com/codingjam" data-widget-id="466677854625746944">Tweets by @codingjam</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script></div><div class="bwp-widget-line"></div></aside> </div>
<!-- end sidebar -->
</div><!-- /col --></div><!-- /row -->
</div>
</section>
<!-- end masonry blog -->
<!-- footer -->
<footer id="bwp-footer-wrap">
<div class="container">
<div class="bwp-footer-container clearfix">
<!-- footer text -->
<div class="bwp-footer-text">
CodingJam </div>
<!-- end footer text -->
<!-- social links -->
<ul class="bwp-footer-social-links list-unstyled clearfix">
<li><a href="https://twitter.com/codingjam" target="_blank" class="bwp-f-twitter-link"><i class="fa fa-twitter"></i></a></li><li><a href="https://www.facebook.com/codingjamit/" target="_blank" class="bwp-f-facebook-link"><i class="fa fa-facebook"></i></a></li><li><a href="https://github.com/coding-jam" target="_blank" class="bwp-f-github-link"><i class="fa fa-github"></i></a></li> </ul>
<!-- end social links -->
</div>
</div>
</footer>
<!-- end footer -->
<!--googleoff: all--><div id="cookie-law-info-bar"><span>Questo sito Web utilizza i cookie per migliorare la tua esperienza. Daremo per scontato che per te sia ok, ma puoi disattivarlo se lo desideri..<a role='button' tabindex='0' data-cli_action="accept" id="cookie_action_close_header" class="large cli-plugin-button cli-plugin-main-button cookie_action_close_header cli_action_button" style="display:inline-block; ">Accetto</a> <a role='button' tabindex='0' id="cookie_action_close_header_reject" class="large cli-plugin-button cli-plugin-main-button cookie_action_close_header_reject cli_action_button" data-cli_action="reject">Annulla</a> <a href='cookie.html' id="CONSTANT_OPEN_URL" target="_blank" class="cli-plugin-main-link" style="display:inline-block;" >Read More</a></span></div><div id="cookie-law-info-again" style="display:none;"><span id="cookie_hdr_showagain">Privacy & Cookies</span></div><div class="cli-modal" id="cliSettingsPopup" tabindex="-1" role="dialog" aria-labelledby="cliSettingsPopup" aria-hidden="true">
<div class="cli-modal-dialog" role="document">
<div class="cli-modal-content cli-bar-popup">
<button type="button" class="cli-modal-close" id="cliModalClose">
<svg class="" viewBox="0 0 24 24"><path d="M19 6.41l-1.41-1.41-5.59 5.59-5.59-5.59-1.41 1.41 5.59 5.59-5.59 5.59 1.41 1.41 5.59-5.59 5.59 5.59 1.41-1.41-5.59-5.59z"></path><path d="M0 0h24v24h-24z" fill="none"></path></svg>
<span class="wt-cli-sr-only">Close</span>
</button>
<div class="cli-modal-body">
<div class="cli-container-fluid cli-tab-container">
<div class="cli-row">
<div class="cli-col-12 cli-align-items-stretch cli-px-0">
<div class="cli-privacy-overview">
<div class="cli-privacy-content">
<div class="cli-privacy-content-text"></div>
</div>
<a class="cli-privacy-readmore" data-readmore-text="Show more" data-readless-text="Show less"></a> </div>
</div>
<div class="cli-col-12 cli-align-items-stretch cli-px-0 cli-tab-section-container">
<div class="cli-tab-section">
<div class="cli-tab-header">
<a role="button" tabindex="0" class="cli-nav-link cli-settings-mobile" data-target="necessary" data-toggle="cli-toggle-tab" >
Necessary
</a>
<span class="cli-necessary-caption">Always Enabled</span> </div>
<div class="cli-tab-content">
<div class="cli-tab-pane cli-fade" data-id="necessary">
<p></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="cli-modal-backdrop cli-fade cli-settings-overlay"></div>
<div class="cli-modal-backdrop cli-fade cli-popupbar-overlay"></div>
<script type="text/javascript">
/* <![CDATA[ */
cli_cookiebar_settings='{"animate_speed_hide":"500","animate_speed_show":"500","background":"#fff","border":"#444","border_on":false,"button_1_button_colour":"#000","button_1_button_hover":"#000000","button_1_link_colour":"#fff","button_1_as_button":true,"button_1_new_win":false,"button_2_button_colour":"#333","button_2_button_hover":"#292929","button_2_link_colour":"#444","button_2_as_button":false,"button_2_hidebar":false,"button_3_button_colour":"#000","button_3_button_hover":"#000000","button_3_link_colour":"#fff","button_3_as_button":true,"button_3_new_win":false,"button_4_button_colour":"#000","button_4_button_hover":"#000000","button_4_link_colour":"#fff","button_4_as_button":true,"font_family":"inherit","header_fix":false,"notify_animate_hide":true,"notify_animate_show":false,"notify_div_id":"#cookie-law-info-bar","notify_position_horizontal":"right","notify_position_vertical":"bottom","scroll_close":false,"scroll_close_reload":false,"accept_close_reload":false,"reject_close_reload":false,"showagain_tab":true,"showagain_background":"#fff","showagain_border":"#000","showagain_div_id":"#cookie-law-info-again","showagain_x_position":"100px","text":"#000","show_once_yn":false,"show_once":"10000","logging_on":false,"as_popup":false,"popup_overlay":true,"bar_heading_text":"","cookie_bar_as":"banner","popup_showagain_position":"bottom-right","widget_position":"left"}';
/* ]]> */
</script>
<!--googleon: all--><script type='text/javascript' src='wp-content/themes/melissa/js/bootstrap.min7433.js?ver=3.3.7'></script>
<script type='text/javascript' src='wp-content/themes/melissa/js/jquery.parallaxc358.js?ver=1.1.3'></script>
<script type='text/javascript' src='wp-content/themes/melissa/js/superfish.min97e9.js?ver=1.7.9'></script>
<script type='text/javascript' src='wp-includes/js/imagesloaded.min55a0.js?ver=3.2.0'></script>
<script type='text/javascript' src='wp-content/themes/melissa/assets/owl-carousel/owl.carousel.min3ba1.js?ver=1.3.3'></script>
<script type='text/javascript' src='wp-content/themes/melissa/assets/magnific-popup/jquery.magnific-popup.minf488.js?ver=1.1.0'></script>
<script type='text/javascript' src='wp-content/themes/melissa/js/ie10-viewport-bug-workaround8a54.js?ver=1.0.0'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var melissaData = {"ajaxURL":"https:\/\/codingjam.it\/wp-admin\/admin-ajax.php","ajaxNonce":"1520cabb4b","templateDirectoryUri":"https:\/\/codingjam.it\/wp-content\/themes\/melissa","isMobile":"false","isSingular":"false","adminBar":"false","headerType":"simple-header","stickyNavigation":"true","isMasonry":"false","masonryColumnWidth":"","infiniteScroll":"false","iScrollLoadMoreBtn":"false","linksTarget":"_self","retinaDataAttr":"false","toTopButton":"true","iScrollLoadingMsg":"Loading new posts...","iScrollFinishedMsg":"No more posts to load","loadMoreBtnText":"Load More"};
/* ]]> */
</script>
<script type='text/javascript' src='wp-content/themes/melissa/js/themef488.js?ver=1.1.0'></script>
<script type='text/javascript' src='wp-content/themes/melissa/js/retina.min6f3e.js?ver=1.3.0'></script>
</body>
<!-- Mirrored from codingjam.it/ by HTTrack Website Copier/3.x [XR&CO'2014], Sat, 05 Dec 2020 10:17:47 GMT -->
</html>