-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·1182 lines (1128 loc) · 75.9 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" >
<head prefix="og: http://ogp.me/ns#">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Join the Countrys biggest Developers Conference at Digital World 2015. 13 awesome speakers and 13 beautiful sessions shall cover latest programming trends and technologies including Python, Java, C#, JavaScript, PHP and latest frameworks.">
<meta name="author" content="">
<meta name="title" content="Developers Conference at Digital World 2015">
<meta name="keywords" content="Developers, Conference, Digital, World, Dhaka, 2015, Python, Java, C#, JavaScript, PHP, Meteor">
<title>Developers Conference at Digital World 2015</title>
<meta property="og:title" content="Developers Conference at Digital World 2015" />
<meta property="og:image" content="http://devcon2015.certainly.rocks/img/devcon.png"/>
<meta property="og:description" content="Join the Countrys biggest Developers Conference at Digital World 2015. 13 awesome speakers and 13 beautiful sessions shall cover latest programming trends and technologies including Python, Java, C#, JavaScript, PHP and latest frameworks." />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://devcon2015.certainly.rocks/" />
<!-- Bootstrap Core CSS - Uses Bootswatch Flatly Theme: http://bootswatch.com/flatly/ -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/animate.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/freelancer.css?08022915" rel="stylesheet">
<!-- Custom Fonts -->
<link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic" rel="stylesheet" type="text/css">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<link rel="shortcut icon" href="img/fav-icon.png">
</head>
<body id="page-top" class="index">
<!-- Navigation -->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header page-scroll">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#page-top">Developers Conference</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li class="hidden">
<a href="#page-top"></a>
</li>
<li class="page-scroll">
<a href="#portfolio">SPEAKERS</a>
</li>
<li class="page-scroll">
<a href="#about">SESSIONS</a>
</li>
<li class="page-scroll">
<a href="#venue">Venue</a>
</li>
<li class="page-scroll">
<a href="#contact">Registration</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<!-- Header -->
<header>
<div class="container">
<div class="row">
<div class="col-lg-12">
<img class=" features2 img-responsive" src="img/profile.png" alt="">
<div class="intro-text features1">
<span class="name">13 Awesome SPEAKERS<br/>
13 Beautiful SESSIONS</span>
<hr class="star-light">
<span class="skills">
Thursday, 12th February, 9:00 AM - 1:00 PM, DIGITAL WORLD 2015, BICC, DHAKA
</span><br/><br/>
</div>
</div>
<div class="col-lg-12 share-btn-pos" >
<div class="btn-pos">
<a href="https://twitter.com/share" class="share-button twitter-share-button" data-layout="button_count" data-url="http://devcon2015.certainly.rocks" data-text="Developers Conference at Digital World" data-hashtags="DevCon,DW2015" data-related="mahtonu" ></a>
</div>
<div class="btn-pos">
<a class="fb-share-button" data-href="http://devcon2015.certainly.rocks" data-type="button" data-layout="button_count" > </a>
</div>
</div>
</div>
</div>
</header>
<!-- Portfolio Grid Section -->
<section id="portfolio">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2>Speakers</h2>
<hr class="star-primary">
</div>
</div>
<div class="row">
<div class="col-sm-4 portfolio-item">
<a href="#portfolioModal5" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/AbuAshrafMasnun.jpeg" class="img-responsive" alt="">
</a>
</div>
<div class="col-sm-4 portfolio-item">
<a href="#portfolioModal2" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/zia.jpg" class="img-responsive" alt="">
</a>
</div>
<div class="col-sm-4 portfolio-item">
<a href="#portfolioModal3" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/RifatNabi.jpg" class="img-responsive" alt="">
</a>
</div>
<div class="col-sm-4 portfolio-item">
<a href="#portfolioModal4" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/PatrickNommensen.jpeg" class="img-responsive" alt="">
</a>
</div>
<div class="col-sm-4 portfolio-item">
<a href="#portfolioModal1" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/MAHossainTonu.jpg" class="img-responsive" alt="">
</a>
</div>
<div class="col-sm-4 portfolio-item">
<a href="#portfolioModal6" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/MafinarRashidKhan.jpg" class="img-responsive" alt="">
</a>
</div>
<div class="col-sm-4 portfolio-item">
<a href="#portfolioModal7" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/mahbub.jpg" class="img-responsive" alt="">
</a>
</div>
<div class="col-sm-4 portfolio-item">
<a href="#portfolioModal8" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/LobanRahman.png" class="img-responsive" alt="">
</a>
</div>
<div class="col-sm-4 portfolio-item">
<a href="#portfolioModal9" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/MozammelHaque.jpg" class="img-responsive" alt="">
</a>
</div>
<div class="col-sm-4 portfolio-item">
<a href="#portfolioModal10" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/SwagataPrateek.jpg" class="img-responsive" alt="">
</a>
</div>
<div class="col-sm-4 portfolio-item">
<a href="#portfolioModal11" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/mizan.jpg" class="img-responsive" alt="">
</a>
</div>
<div class="col-sm-4 portfolio-item">
<a href="#portfolioModal12" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/emran.jpg" class="img-responsive" alt="">
</a>
</div>
<div class="col-sm-4 portfolio-item">
<a href="#portfolioModal13" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/aniruddha.jpg" class="img-responsive" alt="">
</a>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section class="success" id="about">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2>SESSIONS</h2>
<hr class="star-light">
</div>
</div>
<div class="row">
<div class="row pt-75 pb-25">
<div class="col-md-5">
<ul class="nav speakers tabs-left speakers-bg-color ">
<li class="active" >
<a href="#session-1" data-toggle="tab" aria-expanded="true">M A Hossain Tonu </a>
</li>
<li class="">
<a href="#session-2" data-toggle="tab" aria-expanded="false">Ziaul Haq Zia</a>
</li>
<li class="">
<a href="#session-3" data-toggle="tab" aria-expanded="false">Rifat Nabi</a>
</li>
<li>
<a href="#session-11" data-toggle="tab">Mozammel Haque</a>
</li>
<li class="">
<a href="#session-4" data-toggle="tab" aria-expanded="false">Aniruddha Adhikary</a>
</li>
<li class="">
<a href="#session-5" data-toggle="tab" aria-expanded="false">Patrick Nommensen</a>
</li>
<li class="">
<a href="#session-6" data-toggle="tab" aria-expanded="false">Abu Ashraf Masnun</a>
</li>
<li class="">
<a href="#session-7" data-toggle="tab" aria-expanded="false">Mafinar Khan</a>
</li>
<li class="">
<a href="#session-8" data-toggle="tab" aria-expanded="false">M. Mahbubur Rahman</a>
</li>
<li>
<a href="#session-9" data-toggle="tab">Mohammad Emran Hasan</a>
</li>
<li>
<a href="#session-10" data-toggle="tab">Loban Rahman</a>
</li>
<li>
<a href="#session-12" data-toggle="tab">Swagata Prateek</a>
</li>
<li>
<a href="#session-13" data-toggle="tab">Mizanur Rahman</a>
</li>
</ul>
</div>
<div class="col-md-7">
<div class="tab-content">
<div class="tab-pane active" id="session-1">
<article class="item">
<div class="details">
<h3 class="feature5" >Meteor
</h3>
<p class="session-des features action-call">
Meteor, or MeteorJS is an open-source real-time JavaScript
web application framework written on top of Node.js.
While production-ready and used by a number of high-profile startups,
Meteor allows for very rapid prototyping and produces cross-platform
(web, Android, iOS) code. It integrates tightly with MongoDB and uses the
Distributed Data Protocol and a publishsubscribe pattern to
automatically propagate data changes to clients in real-time without
requiring the developer to write any synchronization code. On the client,
Meteor depends on jQuery and can be used with any JavaScript UI widget
library.
<br/><br/>
Ref: <a target="_blank" class="ref-links" href="https://www.meteor.com">https://www.meteor.com</a>
<p class="slideLink"><a href="http://www.slideshare.net/mahtonu/understanding-meteor" target="_blank">View Presentation Slide</a> </p>
</p>
</div>
</article>
</div>
<div class="tab-pane" id="session-2">
<article class="item">
<div class="details">
<h3 class="feature5" >The MEAN Stack</h3>
<p class="session-des features action-call">
MEAN refers to first letters of the four components of a free and
open-source solution stack for building dynamic web sites. MEAN is a
full-stack JavaScript platform designed for web applications.
Valeri Karpov was a MongoDB developer at that time, who coined the
MEAN stack term, and tells about it in one of his blog posts.
The components of the MEAN stack are as follows:<br/>
<!-- <ul class="features action-call">-->
MongoDB, a NoSQL database<br/>
Express.js, a web applications framework<br/>
Angular.js, a JavaScript MVC framework for web apps<br/>
Node.js, a software platform for scalable server-side and networking applications.<br/><br/>
<!-- </ul>-->
Ref : <a target="_blank" class="ref-links" href="http://mean.io/#!/">http://mean.io/#!/</a> </p>
<p class="slideLink"><a href="http://www.slideshare.net/jquerygeek/the-mean-stack" target="_blank">View Presentation Slide</a> </p>
</div>
</article>
</div>
<div class="tab-pane" id="session-3">
<article class="item">
<div class="details ">
<h3 class="feature5" >Flux, REACT</h3>
<p class="session-des features action-call">REACT a javascript library for building user interfaces.
Flux is the application architecture that Facebook uses for building client-side web applications.
It complements React's composable view components by utilizing a unidirectional data flow.
It's more of a pattern rather than a formal framework, and you can start using Flux
immediately without a lot of new code.
<br/><br/>
Ref : <a target="_blank" class="ref-links" href="http://facebook.github.io/flux/docs/overview.html">http://facebook.github.io/flux/docs/overview.html</a><br/>
<a target="_blank" class="ref-links" href="http://facebook.github.io/react/index.html">http://facebook.github.io/react/index.html</a>
<p class="slideLink"><a href="http://torifat.github.io/react-flux/" target="_blank">View Presentation Slide</a> </p>
</p>
</div>
</article>
</div> <div class="tab-pane" id="session-4">
<article class="item">
<div class="details">
<h3 class="feature5">Booting into Gecko</h3>
<p>
Boot2Gecko or Firefox OS a smartphone operating system from Mozilla, making the Web a first class citizen on the Mobile App world. The Open Web App specification is soon to be a W3C recommendation, thus the future of mobile apps. This session will introduce the audience to the steps necessary for "app"yfing websites.
</p>
<p class="slideLink"><a href="http://slides.adhikary.net/dw2015/assets/player/KeynoteDHTMLPlayer.html#0" target="_blank">View Presentation Slide</a> </p>
</div>
</article>
</div> <div class="tab-pane" id="session-5">
<article class="item">
<div class="details">
<h3 class="feature5" >Nginx </h3>
<p class="session-des features action-call">
Nginx (pronounced engine-x) is a free, open-source, high-performance HTTP server and
reverse proxy, as well as an IMAP/POP3 proxy server. Nginx now hosts nearly
12.18% (22.2M) of active sites across all domains. Nginx is known for its high
performance, stability, rich feature set, simple configuration, and low resource
consumption.
Nginx powers several high-visibility sites, such as
Netflix, Hulu, Pinterest, CloudFlare, Airbnb, WordPress.
com, GitHub, SoundCloud, Zynga, Eventbrite, Zappos,
Media Temple, Heroku, RightScale, Engine Yard
and MaxCDN.
<br/><br/>
Ref: <a target="_blank " class="ref-links" href="http://nginx.org">http://nginx.org</a>
<!--<p class="slideLink"><a href="#" target="_blank">View Presentation Slide</a> </p>-->
</p>
</div>
</article>
</div> <div class="tab-pane" id="session-6">
<article class="item">
<div class="details ">
<h3 class="feature5" >Python</h3>
<p class="session-des features action-call">
Python is a widely used general-purpose, high-level
programming language. Its design philosophy
emphasizes code readability, and its syntax allows
programmers to express concepts in fewer lines of code
than would be possible in languages such as C++ or
Java. The language provides constructs intended to
enable clear programs on both a small and large
scale.Python supports multiple programming paradigms,
including object-oriented, imperative and functional
programming or procedural styles. It features a dynamic
type system and automatic memory management and has a
large and comprehensive standard library.
<br/><br/>
Ref: <a target="_blank" class="ref-links" href="https://www.python.org">https://www.python.org</a>
</p>
</div>
</article>
</div> <div class="tab-pane" id="session-7">
<article class="item">
<div class="details ">
<h3 class="feature5" >Django Unchained</h3>
<p class="session-des features action-call">
Django is a free and open source web application
framework, written in Python, which follows the
model view controller architectural pattern.It is
maintained by the Django Software Foundation (DSF),
an independent organization established as a 501(c)
non-profit. Django's primary goal is to ease the creation
of complex, database-driven websites. Django emphasizes
reusability and "pluggability" of components, rapid
development, and the principle of don't repeat yourself.
Python is used throughout, even for settings, files,
and data models. Django also provides an optional
administrative create, read, update and delete
interface that is generated dynamically through
introspection and configured via admin models.<br/><br/>
Ref: <a target="_blank" class="ref-links" href="https://www.djangoproject.com">https://www.djangoproject.com</a>
<p class="slideLink"><a href="http://slides.com/mafinarkhan/django-unchained#/" target="_blank">View Presentation Slide</a> </p>
</p>
</div>
</article>
</div> <div class="tab-pane" id="session-8">
<article class="item">
<div class="details">
<h3 class="feature5" >Laravel</h3>
<p class="session-des features action-call">
Laravel is a free, open source PHP web application framework,
designed for the development of modelviewcontroller (MVC)
web applications. Laravel is released under the MIT license,
with its source code hosted on GitHub.According to a December
2013 developers survey on PHP frameworks popularity, Laravel was
listed as the most popular PHP framework of 2013, followed by Phalcon,
Symfony2, CodeIgniter and others. As of August 2014, Laravel
is the most popular and watched PHP project on GitHub.<br/><br/>
Ref: <a target="_blank" class="ref-links" href="http://laravel.com">http://laravel.com</a>
<p class="slideLink"><a href="http://pappu687.github.io/dw-2015-mahbub" target="_blank">View Presentation Slide</a> </p>
</p>
</div>
</article>
</div> <div class="tab-pane" id="session-9">
<article class="item">
<div class="details">
<h3 class="feature5" >Symfony2 Tips & Tricks</h3>
<p class="session-des features action-call">
Symfony is a PHP web application framework for MVC
applications. Symfony is free software and released
under the MIT license. Symfony aims to speed up the
creation and maintenance of web applications and to
replace repetitive coding tasks. Symfony has a low
performance overhead used with a bytecode cache.Symfony
is aimed at building robust applications in an
enterprise context, and aims to give developers full
control over the configuration: from the directory
structure to the foreign libraries, almost everything
can be customized. To match enterprise development
guidelines, Symfony is bundled with additional tools
to help developers test, debug and document projects.
<br/><br/>
Ref: <a target="_blank" class="ref-links" href="http://symfony.com">http://symfony.com</a>
<p class="slideLink"><a href="http://phpfour.github.io/symfony2-tips" target="_blank">View Presentation Slide</a> </p>
</p>
</div>
</article>
</div> <div class="tab-pane" id="session-10">
<article class="item">
<div class="details">
<h3 class="feature5" >Apache Cordova™</h3>
<p class="session-des features action-call">
Apache Cordova is a platform
for building native mobile
applications using HTML, CSS
and JavaScript.
<br/><br/>
Apache Cordova is a set of device APIs that allow a mobile app developer to access native device function such as the camera or accelerometer from JavaScript. Combined with a UI framework such as jQuery Mobile or Dojo Mobile or Sencha Touch, this allows a smartphone app to be developed with just HTML, CSS, and JavaScript.
<br/><br/>
When using the Cordova APIs, an app can be built without any native code (Java, Objective-C, etc) from the app developer. Instead, web technologies are used, and they are hosted in the app itself locally (generally not on a remote http server).
<br/><br/>
Ref: <a target="_blank" class="ref-links" href="http://cordova.apache.org">http://cordova.apache.org</a>
</p>
</div>
</article>
</div> <div class="tab-pane" id="session-11">
<article class="item">
<div class="">
<h3 class="feature5" >15 minutes of Java</h3>
<p class="session-des features action-call">
Let's meet the new enterprise Java. What can we develop in
15 minutes? Many of us already know that web development
with Java has a bad name due to its massive configuration
issues and delayed development cycle. But things are
changing in Java world and in this session, I will
introduce you to several new features in web development
with Java which brings back rapid web development to Java
world while maintaining the industry proven consistency
and stability.
<br/><br/>
Ref:<a target="_blank" class="ref-links" href="https://www.youtube.com/watch?v=zjgB5fBFpc8"> 15 Minutes of Java</a>
<p class="slideLink"><a href="http://www.slideshare.net/mozammel8435/basis-java" target="_blank">View Presentation Slide</a> </p>
</p>
</div>
</article>
</div> <div class="tab-pane" id="session-12">
<article class="item">
<div class="details">
<h3 class="feature5" >What's new in C# 6.0</h3>
<p class="session-des features action-call">
C# (pronounced as see sharp) is a multi-paradigm
programming language encompassing strong typing,
imperative, declarative, functional, generic,
object-oriented (class-based), and component-oriented
programming disciplines. It was developed by Microsoft
within its .NET initiative and later approved as a
standard by Ecma (ECMA-334) and ISO (ISO/IEC 23270:2006)
. C# is one of the programming languages designed for
the Common Language Infrastructure.C# is intended to be
a simple, modern, general-purpose, object-oriented
programming language. Its development team is led by
Anders Hejlsberg. The most recent version is C# 6.0.
<br/><br/>Ref: <a target="_blank" class="ref-links" href="https://msdn.microsoft.com/en-us/magazine/dn802602.aspx">https://msdn.microsoft.com/en-us/magazine/dn802602.aspx</a>
<p class="slideLink"><a href="http://1drv.ms/17C8BS6" target="_blank">View Presentation Slide</a> </p>
</p>
</div>
</article>
</div> <div class="tab-pane" id="session-13">
<article class="item">
<div class="details">
<h3 class="feature5" >Agile for Developers</h3>
<p class="session-des features action-call">
Agile software development is a group of software
development methods in which requirements and solutions
evolve through collaboration between self-organizing,
cross-functional teams. It promotes adaptive planning,
evolutionary development, early delivery, continuous
improvement, and encourages rapid and flexible response
to change.The Manifesto for Agile Software Development,
also known as the Agile Manifesto, which first laid out
the underlying concepts of Agile development,
introduced the term in 2001.
<br/><br/> Ref: <a target="_blank" class="ref-links" href="http://www.agiledeveloper.com">http://www.agiledeveloper.com</a>
</p>
</div>
</article>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="venue" id="venue">
<div class="container ">
<div class="row">
<div class="col-lg-12 text-center">
<h2>Venue</h2>
<hr class="star-light">
</div>
</div>
<br/><br/>
<div class="row">
<div class="col-md-6">
<div id="googleMap"></div>
</div>
<div class="mob-pad"></div>
<div class="col-md-6">
<img class="venue-img" src="img/hall.jpg">
<h5>
Hall of Fame<br>
Digital World 2015<br>
Bangabandhu International Conference Center (BICC),<br>
Agargaon, Dhaka<br/><br/>
Date: Thursday, 12th February 2015<br/>
Time: 9:00 AM - 1:00 PM
</h5>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2>REGISTRATION</h2>
<hr class="star-primary">
</div>
</div><br/>
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div>
<ul class="register">
<li >
<div >
<a class=" register-font btn btn-large btn-primary " target="_blank" href="https://docs.google.com/forms/d/1r1xVAIHyDYmigUomUENkfgHhkhm-5XU6496HQqsm0JM/">Register</a>
</div>
</li>
</ul>
</div>
<br/><br/>
<div class="col-md-4">
<div >
<img src="img/ict.png">
</div>
</div>
<div class="col-md-4">
<div >
<img src="img/digital-world.png">
</div>
</div>
<div class="col-md-4">
<div>
<img src="img/basis.png">
</div>
</div>
<br/><br/>
<div class="col-md-12">
<div class="php-expert-logo" >
<img src="img/phpxperts_logo.png">
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="text-center">
<div class="footer-below">
<div class="container">
<div class="row">
<div class="col-lg-12">
Copyright © Developers Conferance 2015 | Made with <i class="fa fa-heart-o"></i> by <a href="http://bd.linkedin.com/pub/sandipon/" target="_blank" >Sandipon Saha<a/>
</div>
</div>
</div>
</div>
</footer>
<!-- Scroll to Top Button (Only visible on small and extra-small screen sizes) -->
<div class="scroll-top page-scroll visible-xs visble-sm">
<a class="btn btn-primary" href="#page-top">
<i class="fa fa-chevron-up"></i>
</a>
</div>
<!-- Portfolio Modals -->
<div class="portfolio-modal modal fade" id="portfolioModal2" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2 class="feature4">Ziaul Haq Zia
</h2><br/>
<p class="feature3">Sr. JavaScript Developer at oDesk Corporation</p>
<hr class="star-primary">
<img src="img/portfolio/zia.jpg" class="features2 img-responsive img-centered" alt="">
<p class="description session-des">
Md. Ziaul Haq, Software Engineer, working in oDesk core development team
as Sr. JavaScript Developer, before that he has worked with UNICEF
locally and internationally as Web consultant.
</p>
<a href="http://bd.linkedin.com/in/jquerygeek" target="_blank"><i class="fa fa-fw fa-linkedin"></i></a><br/>
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="portfolioModal1" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2 class="feature4">M A Hossian Tonu </h2><br/>
<p class="feature3">Team Leader at Vantage Labs Dhaka </p>
<hr class="star-primary">
<img src="img/portfolio/MAHossainTonu.jpg" class="features2 img-responsive img-centered" alt="">
<p class="description session-des">M A Hossain Tonu, the author of the book
PHP Application Development with NetBeans: Beginner's Guide graduated in Computer Science and Engineering
from the Dhaka University of Engineering and Technology (DUET) in Bangladesh. <br/><br/>
He is working at
<a href="http://www.vantage.com/"> Vantage, Dhaka </a>
where he is leading and maintaining
a highly available SAAS platform VantageCRM that <br/><br/>
is the single most intuitive and easy to use<a href="http://www.vantageip.com/products-services/vantage-crm/" target="_blank">
Customer Relationship Management system </a>on the market.
He has been a passionate developer since last eight years and has developed a series
of web applications, services & solutions for leading software companies in the country
like somewherein, improsys etc. <br/><br/>
You can reach Tonu at [email protected] and his tech blog at <a href="http://mahtonu.wordpress.com" target="_blank">mahtonu.wordpress.com</a>
<p>
<a target="_blank" href="http://bd.linkedin.com/in/mahtonu" target="_blank"><i class="fa fa-fw fa-linkedin"></i></a><br/>
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="portfolioModal3" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2 class="feature4"> Rifat Nabi
</h2><br/>
<p class="feature3"> Software Architect</p>
<hr class="star-primary">
<img src="img/portfolio/RifatNabi.jpg" class="features2 img-responsive img-centered" alt="">
<p class="description session-des">
Rifat is a software architect focused on front-end technologies. He has
dealt with understanding, designing, advocating and implementing
effective architectures for sophisticated software in JavaScript
and PHP.
</p>
<a href="http://bd.linkedin.com/in/rifat" target="_blank"><i class=" fa fa-fw fa-linkedin"></i></a><br/>
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="portfolioModal4" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2 class="feature4">Patrick Nommensen
</h2><br/>
<p class="feature3"> Product Marketing Engineer at Nginx, Inc.<br/></p>
<hr class="star-primary">
<img src="img/portfolio/PatrickNommensen.jpeg" class="features2 img-responsive img-centered" alt="">
<p class="description session-des">
He is passionate about web performance and open source software,
and works at the intersection of high-tech and business.
He is currently working as Product Marketing Engineer at Nginx, Inc,
a venture-backed startup that offers a complete application delivery
framework and powers 42% of the top 10,000 busiest websites and
applications.
Prior to joining Nginx, He was Owner of a WordPress and application
development and consulting firm, volunteered on several open source
projects, most notably jsDelivr, the largest open source CDN as repo
moderator. He is also Assistant Director for non-profit organization
Restavec Freedom Alliance, in Haiti working to rescue children who
serve as slaves.
</p>
<a href="http://linkedin.com/in/pnommensen" target="_blank"><i class="fa fa-fw fa-linkedin"></i></a><br/>
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="portfolioModal5" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2 class="feature4">Abu Ashraf Masnun
</h2><br/><p class="feature3"> Founder at Transcendio</p>
<hr class="star-primary">
<img src="img/portfolio/AbuAshrafMasnun.jpeg" class="features2 img-responsive img-centered" alt="">
<p class="description session-des">
In his day to day job, Masnun works for Polar Design, a web development
agency based in Boston. He's also working part time as a Code Reviewer
for oDesk. Recently he started his entrepreneurial journey with his own
small brand - "Transcendio". He completed his graduation in business
from Khulna University and co-manages Google Business Group, Khulna.
He loves music, playing Urban Terror and learning new technologies.
He loves to call himself a passionate software craftsman.
</p>
<a href="http://www.masnun.com/" target="_blank"><i class="fa fa-fw fa-link"></i></a><br/>
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="portfolioModal6" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2 class="feature4">Mafinar Khan
</h2><br/><p class="feature3">Product Manager at Panacea Systems Ltd</p>
<hr class="star-primary">
<img src="img/portfolio/MafinarRashidKhan.jpg" class="features2 img-responsive img-centered" alt="">
<p class="description session-des">
Mafinar Rashid Khan is working as Product Manager at Panacea Systems
Ltd. He operates almost exclusively within the Python ecosystem with
some JavaScript thrown in here and there. At present he is leading a
team of coders in the development of servers and APIs that power
several applications which are themed on online payment transactions.
In the past he worked on GIS and business automation, and he loves
advocating functional programming and Clojure through blogging,
mentoring, and other community engagements. Currently Mafinar is
working on a soon to be open-sourced sub framework built on top
of Django that enables rapid development of web applications and APIs.
</p>
<a href="http://bd.linkedin.com/pub/mafinar-khan/15/486/822" target="_blank"><i class="fa fa-fw fa-linkedin"></i></a><br/>
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="portfolioModal7" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2 class="feature4">M. Mahbubur Rahman
</h2><br/><p class="feature3">Chief Technology Officer at ivivelabs</p>
<hr class="star-primary">
<img src="img/portfolio/mahbub.jpg" class="features2 img-responsive img-centered" alt="">
<p class="description session-des">
Almost a decade with LAMP stack, Open source tools. Early adopters and
with a playful mind with evolving tools and technologies.
Loves JavaScript and client side tools. <br/><br/>
Currently Working for iViveLabs as CTO.
</p>
<a href="http://bd.linkedin.com/in/mahbub687" target="_blank"><i class="fa fa-fw fa-linkedin"></i></a><br/>
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="portfolioModal8" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2 class="feature4">Loban Rahman
</h2><br/>
<p class="feature3">Chief Software Architect at Codemate Ltd</p>
<hr class="star-primary">
<img src="img/portfolio/LobanRahman.png" class="features2 img-responsive img-centered" alt="">
<p class="description session-des">
Loban Amaan Rahman has been involved in the computer and information
technology industry for around 12 years. He originally starting out by
writing scientific applications in C/C++ and operating systems for
embedded devices in C/Assembly. This was when he was introduced to GNU,
the free-software movement, and open-source in general - and he has
never looked back, contributing code to numerous projects throughout
the years; including the Gnome, Linux kernel, GCC, Symfony, Drupal,
and many more. Going with the times, Loban shifted to working primarily
on web-based applications, immersing himself in numerous technologies
from frontend/backend frameworks to SaaS services and cloud APIs. Lately,
Loban has been involved in cross-platform "hybrid" mobile application
development.<br/><br/>
Loban Amaan Rahman is currently Chief Software Architect at Codemate Ltd,
an international software development company headquartered in Finland
with offices in Thailand and Bangladesh.
</p>
<a href="http://bd.linkedin.com/in/lobanrahman" target="_blank"><i class="fa fa-fw fa-linkedin"></i></a><br/>
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="portfolioModal9" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2 class="feature4">Mozammel Haque
</h2>
<br/><p class="feature3"> Development Manager, Asia at Vantage Labs</p>
<hr class="star-primary">
<img src="img/portfolio/MozammelHaque.jpg" class="features2 img-responsive img-centered" alt="">
<p class="description session-des">Mozammel Haque has worked on a wide variety of software systems,
from IP Telephony systems to social photo