This repository was archived by the owner on Apr 2, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathteam-0.php
More file actions
executable file
·1131 lines (1072 loc) · 79.5 KB
/
team-0.php
File metadata and controls
executable file
·1131 lines (1072 loc) · 79.5 KB
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
<?php
include("./inc_header.php");
header1(
$body_class = "home-page",
$wrapper = false,
$tooltip = true,
$nav_show = true,
$nav_item = "team",
$title = "SuperNET Team members "
);
?>
<div class="headline-bg contact-headline-bg">
</div><!--//headline-bg-->
<!-- ******Video Section****** -->
<section class="story-section section section-on-bg">
<h2 class="title container text-center">Meet the team</h2>
<div class="story-container container text-center">
<div class="story-container-inner" >
<div class="team row">
<!--
<h3 class="title">Meet the team</h3>
-->
<div class="member col-md-4 col-sm-6 col-xs-12" id="apex944">
<div class="member-inner">
<figure class="profile">
<img class="img-responsive avatar" src="assets/images/team/avatar.png" alt="SuperNET team member">
<figcaption class="info"><span class="name">apex944</span><br><span class="job-title">SuperNET investor</span></figcaption>
</figure><!--//profile-->
<div class="social">
<ul class="social-list list-inline">
<li><a class="swal swal-info" rel="apex944" href="#apex944-info"><i class="fa fa-info"></i></a></li>
</ul><!--//social-list-->
</div><!--//social-->
<div style="display:none;">
<div class="member-info">
<p>
Long time holder of NXT, BTCD & now SuperNET investor.
Regularly trading asset via the NXT AE.
Recovering web developer, now manager of multiple Data Centers.
Watching the next big thing unfold daily before my eyes.
</p>
</div>
</div>
</div><!--//member-inner-->
</div><!--//member-->
<div class="member col-md-4 col-sm-6 col-xs-12" id="badass">
<div class="member-inner">
<figure class="profile">
<img class="img-responsive avatar" src="assets/images/team/avatar.png" alt="SuperNET team member">
<figcaption class="info"><span class="name">Badass.sx</span><br><span class="job-title">SuperNET Backer</span></figcaption>
</figure><!--//profile-->
<div class="social">
<ul class="social-list list-inline">
<li><a class="swal swal-info" rel="badass" href="#badass-info"><i class="fa fa-info" ></i></a></li>
<li><a href="https://www.badass.sx/"><i class="fa fa-globe"></i></a></li>
</ul><!--//social-list-->
</div><!--//social-->
<div style="display:none;">
<div class="member-info">
<p>I am BadAss. Full backer of SuperNET and trying to create stuff which is needed for the SuperNET.<br />
Building SuperNET nodes and trying to think about the privacy of others..</p>
</div>
</div>
</div><!--//member-inner-->
</div><!--//member-->
<div class="member col-md-4 col-sm-6 col-xs-12" id="beor">
<div class="member-inner">
<figure class="profile">
<img class="img-responsive avatar" src="assets/images/team/avatar.png" alt="SuperNET team member">
<figcaption class="info"><span class="name">beor</span><br><span class="job-title">SuperNet Investor</span></figcaption>
</figure><!--//profile-->
<div class="social">
<ul class="social-list list-inline">
<li><a class="swal swal-info" rel="beor" href="#beor-info"><i class="fa fa-info"></i></a></li>
</ul><!--//social-list-->
</div><!--//social-->
<div style="display:none;">
<div class="member-info">
<p>
SuperNet Investor and Red Hat Certified Architect
</p>
</div>
</div>
</div><!--//member-inner-->
</div><!--//member-->
<div class="member col-md-4 col-sm-6 col-xs-12" id="blackyblack">
<div class="member-inner">
<figure class="profile">
<img class="img-responsive avatar" src="assets/images/team/avatar.png" alt="SuperNET team member">
<figcaption class="info"><span class="name">blackyblack</span><br><span class="job-title">Freemarket Developer</span></figcaption>
</figure><!--//profile-->
<div class="social">
<ul class="social-list list-inline">
<li><a class="swal swal-info" rel="blackyblack" href="#blackyblack-info"><i class="fa fa-info"></i></a></li>
<li><a href="https://freemarketlite.cc/"><i class="fa fa-globe"></i></a></li>
</ul><!--//social-list-->
</div><!--//social-->
<div style="display:none;">
<div class="member-info">
<p>
Freemarket Developer <br />
Genius
</p>
</div>
</div>
</div><!--//member-inner-->
</div><!--//member-->
<div class="member col-md-4 col-sm-6 col-xs-12" id="btcddev">
<div class="member-inner">
<figure class="profile">
<img class="img-responsive avatar" src="assets/images/team/avatar.png" alt="SuperNET team member">
<figcaption class="info"><span class="name">BTCDdev</span><br><span class="job-title">C/C++/Java/Web Developer</span></figcaption>
</figure><!--//profile-->
<div class="social">
<ul class="social-list list-inline">
<li><a class="swal swal-info" rel="btcddev" href="#btcddev-info"><i class="fa fa-info"></i></a></li>
<li><a href="https://freemarketlite.cc/"><i class="fa fa-globe"></i></a></li>
</ul><!--//social-list-->
</div><!--//social-->
<div style="display:none;">
<div class="member-info">
<p>
Creator of BitcoinDark. C/C++/Java/Web.
Contributor to SuperNET core, integrated SuperNET into BitcoinDark core.
Member of Jay Framework dev team. Created and maintain FreeMarketLite.cc.
</p>
</div>
</div>
</div><!--//member-inner-->
</div><!--//member-->
<div class="member col-md-4 col-sm-6 col-xs-12" id="breasal">
<div class="member-inner">
<figure class="profile">
<img class="img-responsive avatar" src="assets/images/team/avatar.png" alt="SuperNET team member">
<figcaption class="info"><span class="name">breasal</span><br><span class="job-title">Virologist</span></figcaption>
</figure><!--//profile-->
<div class="social">
<ul class="social-list list-inline">
<li><a class="swal swal-info" rel="breasal" href="#breasal-info"><i class="fa fa-info"></i></a></li>
</ul><!--//social-list-->
</div><!--//social-->
<div style="display:none;">
<div class="member-info">
<p>
Virologist by day with a passion for the superNET at night
</p>
</div>
</div>
</div><!--//member-inner-->
</div><!--//member-->
<div class="member col-md-4 col-sm-6 col-xs-12" id="cassius">
<div class="member-inner">
<figure class="profile">
<img class="img-responsive avatar" src="assets/images/team/avatar.png" alt="SuperNET team member">
<figcaption class="info"><span class="name">Cassius</span><br><span class="job-title">Copywriter</span></figcaption>
</figure><!--//profile-->
<div class="social">
<ul class="social-list list-inline">
<li><a class="swal swal-info" rel="cassius" href="#cassius-info"><i class="fa fa-info"></i></a></li>
</ul><!--//social-list-->
</div><!--//social-->
<div style="display:none;">
<div class="member-info long-info">
<p>
I’m a copywriter and communicator by trade. I aim to take complex ideas (plenty of those around here) and communicate them in a simple and accessible way.
I first came to crypto at the beginning of 2014 when I dipped my toe in the water with Bitcoin and was hooked by the tech and the possibilities it offered; NXT and BTCD followed and, inevitably, SuperNET.
I’ve written articles, press releases, white papers, reports and film scripts. I’m constantly intrigued by the new ideas and technologies in crypto,
and love working in an environment where your reputation and what you can deliver is more important than your CV or education, there’s no bureaucracy,
and a handful of people can make amazing things happen faster than any traditional business could imagine.
</p>
</div>
</div>
</div><!--//member-inner-->
</div><!--//member-->
<div class="member col-md-4 col-sm-6 col-xs-12" id="coinimal">
<div class="member-inner">
<figure class="profile">
<img class="img-responsive avatar" src="assets/images/team/avatar.png" alt="SuperNET team member">
<figcaption class="info"><span class="name">Coinimal</span><br><span class="job-title">Exchange Service</span></figcaption>
</figure><!--//profile-->
<div class="social">
<ul class="social-list list-inline">
<li><a class="swal swal-info" rel="coinimal" href="#coinimal-info"><i class="fa fa-info"></i></a></li>
<li><a href="https://www.coinimal.com/"><i class="fa fa-globe"></i></a></li>
</ul><!--//social-list-->
</div><!--//social-->
<div style="display:none;">
<div class="member-info">
<p>
Service to Buy/Sell Bitcoins, NXT & Co instantly using the EUR on your Bank Account!
Available directly from the SuperNET Plugin.
</p>
</div>
</div>
</div><!--//member-inner-->
</div><!--//member-->
<div class="member col-md-4 col-sm-6 col-xs-12" id="crackers">
<div class="member-inner">
<figure class="profile">
<img class="img-responsive avatar" src="assets/images/team/avatar.png" alt="SuperNET team member">
<figcaption class="info"><span class="name">crackers</span><br><span class="job-title">Multipool Operator</span></figcaption>
</figure><!--//profile-->
<div class="social">
<ul class="social-list list-inline">
<li><a class="swal swal-info" rel="crackers" href="#crackers-info"><i class="fa fa-info"></i></a></li>
<li><a href="http://www.bitcoindark.ca/"><i class="fa fa-globe"></i></a></li>
</ul><!--//social-list-->
</div><!--//social-->
<div style="display:none;">
<div class="member-info">
<p>
I'm the operator of the BitcoinDark multipool (www.bitcoindark.ca) where miners can user their hardware to mine on 3 different algorithms and get paid in BTCD.
<br />
As well I've been managing a small VPS farm and testing the BTCD/SuperNET builds as James commits fixes and code to the github repo providing James with a test network necessary to effectively find bugs, address stability issues and test network discovery and utilization under larger load.
</p>
</div>
</div>
</div><!--//member-inner-->
</div><!--//member-->
<div class="member col-md-4 col-sm-6 col-xs-12" id="cryptaxe">
<div class="member-inner">
<figure class="profile">
<img class="img-responsive avatar" src="assets/images/team/avatar.png" alt="SuperNET team member">
<figcaption class="info"><span class="name">Cryptaxe</span><br><span class="job-title">C++ Developer</span></figcaption>
</figure><!--//profile-->
<div class="social">
<ul class="social-list list-inline">
<li><a class="swal swal-info" rel="cryptaxe" href="#cryptaxe-info"><i class="fa fa-info"></i></a></li>
<li><a href="http://atomicdac.org/"><i class="fa fa-globe"></i></a></li>
<li><a href="https://twitter.com/CryptAxe"><i class="fa fa-twitter"></i></a></li>
</ul><!--//social-list-->
</div><!--//social-->
<div style="display:none;">
<div class="member-info">
<p>Hey guys, I'm CryptAxe.<br /> I'm working on the ATOMIC DAC which is the cross chain ledger that we are going to be using for the superNET!</p>
</div>
</div>
</div><!--//member-inner-->
</div><!--//member-->
<div class="member col-md-4 col-sm-6 col-xs-12" id="cryptoguu">
<div class="member-inner">
<figure class="profile">
<img class="img-responsive avatar" src="assets/images/team/avatar.png" alt="SuperNET team member">
<figcaption class="info"><span class="name">cryptoguu</span><br><span class="job-title">Price Speculator</span></figcaption>
</figure><!--//profile-->
<div class="social">
<ul class="social-list list-inline">
<li><a class="swal swal-info" rel="cryptoguu" href="#cryptoguu-info"><i class="fa fa-info"></i></a></li>
</ul><!--//social-list-->
</div><!--//social-->
<div style="display:none;">
<div class="member-info">
<p>
Price Speculator and Professional Poker Player
</p>
</div>
</div>
</div><!--//member-inner-->
</div><!--//member-->
<div class="member col-md-4 col-sm-6 col-xs-12" id="damon">
<div class="member-inner">
<figure class="profile">
<img class="img-responsive avatar" src="assets/images/team/avatar.png" alt="SuperNET team member">
<figcaption class="info"><span class="name">damon</span><br><span class="job-title">Industrial Automation</span></figcaption>
</figure><!--//profile-->
<div class="social">
<ul class="social-list list-inline">
<li><a class="swal swal-info" rel="damon" href="#damon-info"><i class="fa fa-info"></i></a></li>
</ul><!--//social-list-->
</div><!--//social-->
<div style="display:none;">
<div class="member-info">
<p>
I am a life long programmer, but mostly Industrial Automation - not good at all at this api, web page, peer 2 peer stuff..
<br /><br />
I have started to make it my job to turn around nxtforum threads that get out of control, the kind that might turn people off to NxT..
<br /><br />
I also blog a bit - mostly pointing out the massive changes in our society, the growing awareness, the grand awakening,
the unstoppable power of the DeCentralized world and inherent detriments to a monopolized few controlling nearly everything..
</p>
</div>
</div>
</div><!--//member-inner-->
</div><!--//member-->
<div class="member col-md-4 col-sm-6 col-xs-12" id="djprints">
<div class="member-inner">
<figure class="profile">
<img class="img-responsive avatar" src="assets/images/team/avatar.png" alt="SuperNET team member">
<figcaption class="info"><span class="name">dj.prints</span><br><span class="job-title">Vocalist, Multi-instrumentalist</span></figcaption>
</figure><!--//profile-->
<div class="social">
<ul class="social-list list-inline">
<li><a class="swal swal-info" rel="djprints" href="#djprints-info"><i class="fa fa-info"></i></a></li>
<li><a href="https://soundcloud.com/imprints"><i class="fa fa-soundcloud"></i></a></li>
<li><a href="http://supernetradio.com/"><i class="fa fa-globe"></i></a></li>
</ul><!--//social-list-->
</div><!--//social-->
<div style="display:none;">
<div class="member-info">
<p>
Jon Prints is a vocalist, multi-instrumentalist and crypto enthusiast living in Los Angeles, CA.
He started running CryptoRadio, a community wide internet radio station sponsored by Opal in 2014
and has since teamed up with LootZ and Kevondo on SuperNET Radio.
</p>
</div>
</div>
</div><!--//member-inner-->
</div><!--//member-->
<div class="member col-md-4 col-sm-6 col-xs-12" id="effectstocause">
<div class="member-inner">
<figure class="profile">
<img class="img-responsive avatar" src="assets/images/team/avatar.png" alt="SuperNET team member">
<figcaption class="info"><span class="name">effectsTo Cause</span><br><span class="job-title">Scientist, Programmer</span></figcaption>
</figure><!--//profile-->
<div class="social">
<ul class="social-list list-inline">
<li><a class="swal swal-info" rel="effectstocause" href="#effectstocause-info"><i class="fa fa-info"></i></a></li>
<li><a href="http://www.vericoin.info/"><i class="fa fa-globe"></i></a></li>
</ul><!--//social-list-->
</div><!--//social-->
<div style="display:none;">
<div class="member-info">
<p>
Scientist, Programmer, VeriCoin Co-Creator
</p>
<p>
The past is a memory, the future your imagination, focus on the only thing you ever actually have, the present.
</p>
</div>
</div>
</div><!--//member-inner-->
</div><!--//member-->
<div class="member col-md-4 col-sm-6 col-xs-12" id="eestudio">
<div class="member-inner">
<figure class="profile">
<img class="img-responsive avatar" src="assets/images/team/avatar.png" alt="SuperNET team member">
<figcaption class="info"><span class="name">eestudio</span><br><span class="job-title">C# Programmer</span></figcaption>
</figure><!--//profile-->
<div class="social">
<ul class="social-list list-inline">
<li><a class="swal swal-info" rel="eestudio" href="#eestudio-info"><i class="fa fa-info"></i></a></li>
<li><a class="swal swal-info2" rel="eestudio" href="#eestudio-info"><i class="fa fa-info"></i></a></li>
<li><a href="http://ee-studio.com/"><i class="fa fa-globe"></i></a></li>
</ul><!--//social-list-->
</div><!--//social-->
<div style="display:none;">
<div class="member-info long-info">
<p>
Decentralization and I: Decentralization will change the world. If I can change the world, then I will go to change the world. If you can change the world, but I have the ability to help you, I'll help you change the world together. If I can not, I'll watch you change the world. It's me, my name is Eureka (abbr is e), from China, a country with a long history and culture,but decentralization as love, without borders.
</p>
<p>
My skills: I am a skilled C# programmer, a systems analyst. I have developed a lot of Windows software and Windows Phone App (see my web site: http://eesoftware.com ). I am the only author of the CoinTrade Platform (see screenshot in my website http://cointrade.pw) with Metro style and using WPF, Prism, MEF and so on.
</p>
<p>
I am a skilled website developer. I have many websites (see my personal site http://ee-studio.com ), I like Chinese traditional culture, such as Iching, and develop a platform for it using PHP (see http://eeeeee.org). I have developed many B/S applications for my employer using Asp.Net MVC.I am a experienced poker player too.
But now I believe decentralization and blockchain technology will give the world revolutionary impact.
</p>
<p>
<a href="http://ee-studio.com/">ee-studio.com</a>
<a href="http://eesoftware.com/">eesoftware.com</a>
<a href="http://eeeeee.org/">eeeeee.org</a>
</p>
</div>
<div class="member-info2 long-info">
<p>
去中心化和我: 去中心化将改变这个世界。 如果我能改变这个世界,那我就去改变这个世界。 如果你能改变这个世界,而我又有能力帮你,那我就帮你一起改变这个世界。 如果我无能为力,那我就看着你改变这个世界。 这就是我,我叫Eureka(也有人叫我e), 我来自中国,一个有着悠久历史文化的国度,但去中心化就象爱一样,是没有国界的。
</p>
<p>
我的技能: 我是个熟练的C#程序员,有国家系统分析师资格证书 。 我编了很多的Windows软件以及Windows Phone 应用(参见“易易软件”网站:http://eesoftware.com )。我是数字币平台CoinTrade的独立开发者(参见我的中英文网站 http://cointrade.pw 内有截图)该软件使用了Metro风格,并使用了WPF,Prism, MEF等相关技术。我有多年的网站开发经验。 我做了大量的网站(参见我的“易易工作室”网站 http://ee-studio.com 访问后请刷新看网站变化),我喜欢中国传统文化,例如《易经》,我根据数术原理用PHP编了一些排盘预测软件(参见 http://eeeeee.org) ,我也使用Asp.Net MVC为我的工作单位设计了很多的B/S应用。此外,我还是位很有经验的扑克玩家。 我现在关注由比特币所带来的去中心化和区块链技术,我相信去中心化能给我们的世界带来革命性的影响。
</p>
<p>
<a href="http://ee-studio.com/">ee-studio.com</a>
<a href="http://eesoftware.com/">eesoftware.com</a>
<a href="http://eeeeee.org/">eeeeee.org</a>
</p>
</div>
</div>
</div><!--//member-inner-->
</div><!--//member-->
<div class="member col-md-4 col-sm-6 col-xs-12" id="figroll">
<div class="member-inner">
<figure class="profile">
<img class="img-responsive avatar" src="assets/images/team/avatar.png" alt="SuperNET team member">
<figcaption class="info"><span class="name">figroll</span><br><span class="job-title">Web & Graphics</span></figcaption>
</figure><!--//profile-->
<div class="social">
<ul class="social-list list-inline">
<li><a class="swal swal-info" rel="figroll" href="#figroll-info"><i class="fa fa-info"></i></a></li>
<li><a href="https://coinboard.org/"><i class="fa fa-globe"></i></a></li>
<li><a href="http://bitcoindark.pw/"><i class="fa fa-globe"></i></a></li>
</ul><!--//social-list-->
</div><!--//social-->
<div style="display:none;">
<div class="member-info">
<p>
Creator of bitcoindark.pw,<br /> website developer & graphics designer
</p>
<p>
<a href="https://coinboard.org/">coinboard.org</a>
<a href="http://bitcoindark.pw/">bitcoindark.pw</a>
<a href="http://stash.xyz/">stash.xyz</a>
</p>
</div>
</div>
</div><!--//member-inner-->
</div><!--//member-->
<div class="member col-md-4 col-sm-6 col-xs-12" id="freebie">
<div class="member-inner">
<figure class="profile">
<img class="img-responsive avatar" src="assets/images/team/avatar.png" alt="SuperNET team member">
<figcaption class="info"><span class="name">freebie</span><br><span class="job-title">Freebie Servers</span></figcaption>
</figure><!--//profile-->
<div class="social">
<ul class="social-list list-inline">
<li><a class="swal swal-info" rel="freebie" href="#freebie-info"><i class="fa fa-info"></i></a></li>
<li><a href="http://freebieservers.com/"><i class="fa fa-globe"></i></a></li>
</ul><!--//social-list-->
</div><!--//social-->
<div style="display:none;">
<div class="member-info">
<p>
Get the best Source engine games at no cost.
Completely customizable while branded with our advertisements.
We bring you high quality servers and support without the price tag.
</p>
</div>
</div>
</div><!--//member-inner-->
</div><!--//member-->
<div class="member col-md-4 col-sm-6 col-xs-12" id="hash">
<div class="member-inner">
<figure class="profile">
<img class="img-responsive avatar" src="assets/images/team/avatar.png" alt="SuperNET team member">
<figcaption class="info"><span class="name">hash</span><br><span class="job-title">neodice.com</span></figcaption>
</figure><!--//profile-->
<div class="social">
<ul class="social-list list-inline">
<li><a class="swal swal-info" rel="hash" href="#hash-info"><i class="fa fa-info"></i></a></li>
<li><a href="http://neodice.com/"><i class="fa fa-globe"></i></a></li>
</ul><!--//social-list-->
</div><!--//social-->
<div style="display:none;">
<div class="member-info">
<p>
NeoDICE is being actively coded by several developers represented by hash.
jl777 and C-f-B are the project consultants.
Currently the neoDICE project successfully completed the proof of concept stage.
<br /><br />
</p>
<p>
The upcoming milestones and tentative timeline:
</p>
<ul style="text-align: left;">
<li>Mid. October - Beta testing starts</li>
<li>Beginning of November - Release of the game on the mainnet, playable via NXT client and SuperNET GUI</li>
<li>Mid. November - Release of neoDICE plugin for NXT client and SuperNET GUI</li>
<li>Mid. December - Release of the neoDICE website, allowing gameplay without NXT client</li>
<ul>
</div>
</div>
</div><!--//member-inner-->
</div><!--//member-->
<div class="member col-md-4 col-sm-6 col-xs-12" id="hobofife">
<div class="member-inner">
<figure class="profile">
<img class="img-responsive avatar" src="assets/images/team/avatar.png" alt="SuperNET team member">
<figcaption class="info"><span class="name">HoboFife</span><br><span class="job-title">Python Programmer</span></figcaption>
</figure><!--//profile-->
<div class="social">
<ul class="social-list list-inline">
<li><a class="swal swal-info" rel="hobofife" href="#hobofife-info"><i class="fa fa-info"></i></a></li>
<li><a href="http://www.pangeapoker.net/"><i class="fa fa-globe"></i></a></li>
<li><a href="https://www.youtube.com/watch?v=uwc9kQUoSNA"><i class="fa fa-youtube-play"></i></a></li>
</ul><!--//social-list-->
</div><!--//social-->
<div style="display:none;">
<div class="member-info">
<p>
Tom H Fife - Building the Pangea Poker frontend<br />
Programs in Python, JavaScript and anything else that gets the job done.<br />
Experienced writer and editor.<br />
Check out
<a href="https://www.youtube.com/watch?v=uwc9kQUoSNA">Pangea Poker</a>
<a href="https://www.youtube.com/watch?v=c1fl39lUiAs">Frontend video</a>
</p>
</div>
</div>
</div><!--//member-inner-->
</div><!--//member-->
<div class="member col-md-4 col-sm-6 col-xs-12" id="hollowman9000">
<div class="member-inner">
<figure class="profile">
<img class="img-responsive avatar" src="assets/images/team/avatar.png" alt="SuperNET team member">
<figcaption class="info"><span class="name">Hollowman 9000</span><br><span class="job-title">Investor</span></figcaption>
</figure><!--//profile-->
<div class="social">
<ul class="social-list list-inline">
<li><a class="swal swal-info" rel="hollowman9000" href="#hollowman9000-info"><i class="fa fa-info"></i></a></li>
</ul><!--//social-list-->
</div><!--//social-->
<div style="display:none;">
<div class="member-info">
<p>
Hollowman9000, Investor, Agitator, Commentator, Belligerent in the war on Shitcoins
</p>
</div>
</div>
</div><!--//member-inner-->
</div><!--//member-->
<div class="member col-md-4 col-sm-6 col-xs-12" id="jones">
<div class="member-inner">
<figure class="profile">
<img class="img-responsive avatar" src="assets/images/team/avatar.png" alt="SuperNET team member">
<figcaption class="info">
<span class="name">Jones</span>
<br>
<span class="job-title">Bridge Master</span>
</figcaption>
</figure><!--//profile-->
<div class="social">
<ul class="social-list list-inline">
<li><a class="swal swal-info" rel="jones" href="#jones-info"><i class="fa fa-info"></i></a></li>
<li><a href="https://github.com/jonesnxt"><i class="fa fa-github-alt"></i></a></li>
</ul><!--//social-list-->
</div><!--//social-->
<div style="display:none;">
<div class="member-info">
<p>Programmer for nxt and superNET wherever needed. Owner of jnxt.org and creator all the projects underneath the site.<br />
These include an nxt public key announcer, a marketplace viewer along with many other small features to come.<br />
Part time UI dev for the nxt project helping to develop the UI for the voting system of nxt.<br />
Also the lead in the Jay Framework, an nxt and superNET lightwallet that allows for these networks to be used through plugins safely through any web browser.
</p>
</div>
</div>
</div><!--//member-inner-->
</div><!--//member-->
<div class="member col-md-4 col-sm-6 col-xs-12" id="jl777">
<div class="member-inner">
<figure class="profile">
<img class="img-responsive avatar" src="assets/images/team/avatar.png" alt="SuperNET team member">
<figcaption class="info">
<span class="name">JL777</span>
<br>
<span class="job-title">SuperNET Founder</span>
</figcaption>
</figure><!--//profile-->
<div class="social">
<ul class="social-list list-inline">
<li><a class="swal swal-info" rel="jl777" href="#jl777-info"><i class="fa fa-info"></i></a></li>
<li><a href="https://github.com/jl777"><i class="fa fa-github-alt"></i></a></li>
</ul><!--//social-list-->
<div style="display:none;">
<div class="member-info">
<p>In Crypto, the competition is not each other, it is fiat.<br /> If any Crypto does well, we all benefit.</p>
</div>
</div>
</div><!--//social-->
</div><!--//member-inner-->
</div><!--//member-->
<div class="member col-md-4 col-sm-6 col-xs-12" id="jsgalt">
<div class="member-inner">
<figure class="profile">
<img class="img-responsive avatar" src="assets/images/team/avatar.png" alt="SuperNET team member">
<figcaption class="info"><span class="name">js.galt</span><br><span class="job-title">Web Developer</span></figcaption>
</figure><!--//profile-->
<div class="social">
<ul class="social-list list-inline">
<li><a class="swal swal-info" rel="jsgalt" href="#jsgalt-info"><i class="fa fa-info"></i></a></li>
<li><a href="https://twitter.com/juansgalt"><i class="fa fa-twitter"></i></a></li>
</ul><!--//social-list-->
</div><!--//social-->
<div style="display:none;">
<div class="member-info">
<p>
I've been aware of and promoting Bitcoin since 2011. I'm a writer and communicator specializing on 2.0 privacy centric p2p fintech.
Or in other words, money that you have full control over, with no unchosen inflation, nor third parties to skim off the top or snoop
and auction your personal information.
</p>
<p>
I'm mostly self taugh with a strong background on Philosophy, Psychology and Economics.
I'm a communicator and love explaining complex ideas in simpler ways to the curious.
I'm building a series of articles on Bitcoin Magazine about the Supernet,
and from than we will see where this wild roller coaster takes us.
</p>
<p>
Follow my on twitter <a href="https://twitter.com/juansgalt">@juansgalt</a> for more updates!
</p>
</div>
</div>
</div><!--//member-inner-->
</div><!--//member-->
<div class="member col-md-4 col-sm-6 col-xs-12" id="jurginho">
<div class="member-inner">
<figure class="profile">
<img class="img-responsive avatar" src="assets/images/team/avatar.png" alt="SuperNET team member">
<figcaption class="info"><span class="name">jurginho</span><br><span class="job-title">Java Coder</span></figcaption>
</figure><!--//profile-->
<div class="social">
<ul class="social-list list-inline">
<li><a class="swal swal-info" rel="jurginho" href="#jurginho-info"><i class="fa fa-info"></i></a></li>
</ul><!--//social-list-->
</div><!--//social-->
<div style="display:none;">
<div class="member-info">
<p>
Java Coder, Investor, Visionary
</p>
</div>
</div>
</div><!--//member-inner-->
</div><!--//member-->
<div class="member col-md-4 col-sm-6 col-xs-12" id="kimhansen">
<div class="member-inner">
<figure class="profile">
<img class="img-responsive avatar" src="assets/images/team/avatar.png" alt="SuperNET team member">
<figcaption class="info"><span class="name">Kim Hansen</span><br><span class="job-title">CTO of Kwamecorp</span></figcaption>
</figure><!--//profile-->
<div class="social">
<ul class="social-list list-inline">
<li><a class="swal swal-info" rel="kimhansen" href="#kimhansen-info"><i class="fa fa-info"></i></a></li>
<li><a href="http://www.kwamecorp.com/"><i class="fa fa-globe"></i></a></li>
</ul><!--//social-list-->
</div><!--//social-->
<div style="display:none;">
<div class="member-info">
<p>
CTO and partner of Kwamecorp <a href="http://www.kwamecorp.com/">www.kwamecorp.com</a>
<br /><br />
</p>
<p>
I also build tools and applications on top of the NXT platform.
For example: NXTInvest <a href="http://nxtinvest.meteor.com/">nxtinvest.meteor.com</a>
and Scrips <a href="http://www.scrips.com/">www.scrips.com</a>.
</p>
</div>
</div>
</div><!--//member-inner-->
</div><!--//member-->
<div class="member col-md-4 col-sm-6 col-xs-12" id="kripto">
<div class="member-inner">
<figure class="profile">
<img class="img-responsive avatar" src="assets/images/team/avatar.png" alt="SuperNET team member">
<figcaption class="info"><span class="name">kripto</span><br><span class="job-title">Server Maintainer</span></figcaption>
</figure><!--//profile-->
<div class="social">
<ul class="social-list list-inline">
<li><a class="swal swal-info" rel="kripto" href="#kripto-info"><i class="fa fa-info"></i></a></li>
</ul><!--//social-list-->
</div><!--//social-->
<div style="display:none;">
<div class="member-info">
<p>I'm just kripto and my main effort so far has been maintaining a seed server from late September onwards. I try to keep up with James' git-push frequency.<br />
My background is in computer science but with my current spare time availability I do what I can keep my part of the SuperNET up and running 24/7.
</p>
</div>
</div>
</div><!--//member-inner-->
</div><!--//member-->
<div class="member col-md-4 col-sm-6 col-xs-12" id="katlas">
<div class="member-inner">
<figure class="profile">
<img class="img-responsive avatar" src="assets/images/team/avatar.png" alt="SuperNET team member">
<figcaption class="info"><span class="name">Kristov Atlas</span><br><span class="job-title">Privacy Auditor</span></figcaption>
</figure><!--//profile-->
<div class="social">
<ul class="social-list list-inline">
<li><a class="swal swal-info" rel="katlas" href="#katlas-info"><i class="fa fa-info"></i></a></li>
<li><a href="http://anonymousbitcoinbook.com/pages/about-the-author"><i class="fa fa-globe"></i></a></li>
<li><a href="https://twitter.com/anonymouscoin"><i class="fa fa-twitter"></i></a></li>
</ul><!--//social-list-->
</div><!--//social-->
<div style="display:none;">
<div class="member-info">
<p>
Privacy Auditor<br />
Leading expert in Bitcoin anonymity, privacy, and security.
</p>
</div>
</div>
</div><!--//member-inner-->
</div><!--//member-->
<div class="member col-md-4 col-sm-6 col-xs-12" id="l8orre">
<div class="member-inner">
<figure class="profile">
<img class="img-responsive avatar" src="assets/images/team/avatar.png" alt="SuperNET team member">
<figcaption class="info"><span class="name">l8orre</span><br><span class="job-title">Python Developer</span></figcaption>
</figure><!--//profile-->
<div class="social">
<ul class="social-list list-inline">
<li><a class="swal swal-info" rel="l8orre" href="#l8orre-info"><i class="fa fa-info" ></i></a></li>
<li><a href="https://github.com/l8orre"><i class="fa fa-github-alt"></i></a></li>
</ul><!--//social-list-->
</div><!--//social-->
<div style="display:none;">
<div class="member-info">
<p>Biophysicist turned data jockey.<br /> Doing API controllers and data analysis with Python.</p>
</div>
</div>
</div><!--//member-inner-->
</div><!--//member-->
<div class="member col-md-4 col-sm-6 col-xs-12" id="lemonhead">
<div class="member-inner">
<figure class="profile">
<img class="img-responsive avatar" src="assets/images/team/avatar.png" alt="SuperNET team member">
<figcaption class="info"><span class="name">lemonhead</span><br><span class="job-title">JS Developer</span></figcaption>
</figure><!--//profile-->
<div class="social">
<ul class="social-list list-inline">
<li><a class="swal swal-info" rel="lemonhead" href="#lemonhead-info"><i class="fa fa-info"></i></a></li>
</ul><!--//social-list-->
</div><!--//social-->
<div style="display:none;">
<div class="member-info">
<p>
I hold a bachelors degree in computer science
and am currently working with the NXT API and meteorjs for tracking assets.
</p>
</div>
</div>
</div><!--//member-inner-->
</div><!--//member-->
<div class="member col-md-4 col-sm-6 col-xs-12" id="longzai1988">
<div class="member-inner">
<figure class="profile">
<img class="img-responsive avatar" src="assets/images/team/avatar.png" alt="SuperNET team member">
<figcaption class="info"><span class="name">longzai1988</span><br><span class="job-title">GUI Development</span></figcaption>
</figure><!--//profile-->
<div class="social">
<ul class="social-list list-inline">
<li><a class="swal swal-info" rel="longzai1988" href="#longzai1988-info"><i class="fa fa-info"></i></a></li>
</ul><!--//social-list-->
</div><!--//social-->
<div style="display:none;">
<div class="member-info">
<p>
GUI Development
</p>
</div>
</div>
</div><!--//member-inner-->
</div><!--//member-->
<div class="member col-md-4 col-sm-6 col-xs-12" id="mrknuckle">
<div class="member-inner">
<figure class="profile">
<img class="img-responsive avatar" src="assets/images/team/avatar.png" alt="SuperNET team member">
<figcaption class="info"><span class="name">Mr Knuckle</span><br><span class="job-title">Web Developer</span></figcaption>
</figure><!--//profile-->
<div class="social">
<ul class="social-list list-inline">
<li><a class="swal swal-info" rel="mrknuckle" href="#mrknuckle-info"><i class="fa fa-info"></i></a></li>
</ul><!--//social-list-->
</div><!--//social-->
<div style="display:none;">
<div class="member-info">
<p>
SQL, PHP, HTML, JavaScript, E-Commerce
</p>
</div>
</div>
</div><!--//member-inner-->
</div><!--//member-->
<div class="member col-md-4 col-sm-6 col-xs-12" id="mynxt">
<div class="member-inner">
<figure class="profile">
<img class="img-responsive avatar" src="assets/images/team/avatar.png" alt="SuperNET team member">
<figcaption class="info"><span class="name">MyNXT.info</span><br><span class="job-title">Online Wallet</span></figcaption>
</figure><!--//profile-->
<div class="social">
<ul class="social-list list-inline">
<li><a class="swal swal-info" rel="mynxt" href="#mynxt-info"><i class="fa fa-info"></i></a></li>
<li><a href="http://mynxt.info/"><i class="fa fa-globe"></i></a></li>
</ul><!--//social-list-->
</div><!--//social-->
<div style="display:none;">
<div class="member-info">
<p>MyNXT.info is the leading online wallet for NXT. <br />
They host one of the MGW servers and are working to integrate the online wallet and mobile apps to superNET.
</p>
</div>
</div>
</div><!--//member-inner-->
</div><!--//member-->
<div class="member col-md-4 col-sm-6 col-xs-12" id="n3lz0n">
<div class="member-inner">
<figure class="profile">
<img class="img-responsive avatar" src="assets/images/team/avatar.png" alt="SuperNET team member">
<figcaption class="info"><span class="name">n3lz0n</span><br><span class="job-title"> </span></figcaption>
</figure><!--//profile-->
<div class="social">
<ul class="social-list list-inline">
<li><a class="swal swal-info" rel="n3lz0n" href="#n3lz0n-info"><i class="fa fa-info"></i></a></li>
</ul><!--//social-list-->
</div><!--//social-->
<div style="display:none;">
<div class="member-info">
<p>
Hi I'm n3lz0n, I'm one of JL777 funding approval guys!
</p>
</div>
</div>
</div><!--//member-inner-->
</div><!--//member-->
<div class="member col-md-4 col-sm-6 col-xs-12" id="nxtchina">
<div class="member-inner">
<figure class="profile">
<img class="img-responsive avatar" src="assets/images/team/avatar.png" alt="SuperNET team member">
<figcaption class="info"><span class="name">NXTchina</span><br><span class="job-title">Nxtchina.org</span></figcaption>
</figure><!--//profile-->
<div class="social">
<ul class="social-list list-inline">
<li><a class="swal swal-info" rel="nxtchina" href="#nxtchina-info"><i class="fa fa-info"></i></a></li>
<li><a href="http://nxtchina.org/"><i class="fa fa-globe"></i></a></li>
<li><a href="http://nxt123.org/"><i class="fa fa-globe"></i></a></li>
</ul><!--//social-list-->
</div><!--//social-->
<div style="display:none;">
<div class="member-info">
<p>
I am allwelder, the owner of <br />
<a href="http://nxtchina.org/">NXTchina.org</a>
<a href="http://nxt123.org/">NXT123.org</a>
<a href="http://nxtgateway.org/">NXTgateway.org</a>
</p>
</div>
</div>
</div><!--//member-inner-->
</div><!--//member-->
<div class="member col-md-4 col-sm-6 col-xs-12" id="pvisser">
<div class="member-inner">
<figure class="profile">
<img class="img-responsive avatar" src="assets/images/team/avatar.png" alt="SuperNET team member">
<figcaption class="info"><span class="name">Peter Visser</span><br><span class="job-title">HyperCube Studios</span></figcaption>
</figure><!--//profile-->
<div class="social">
<ul class="social-list list-inline">
<li><a class="swal swal-info" rel="pvisser" href="#pvisser-info"><i class="fa fa-info"></i></a></li>
<li><a href="https://vimeo.com/user32480327"><i class="fa fa-vimeo-square"></i></a></li>
</ul><!--//social-list-->
</div><!--//social-->
<div style="display:none;">
<div class="member-info">
<p>
My Name is Peter Visser, I'm the creative director at HyperCube Studios based in Alkmaar, The Netherlands. ( website coming soon )
I make motion graphics for crypto and technology startups in general.
Here's my <a href="https://vimeo.com/user32480327">Vimeo page</a> which I love creating jaw-dropping motion graphics.
Always aiming to make my current video the best one I ever made.
Learning new skills and tricks gives me a great kick and nothing makes me happier then a client who loves the video I made for them.
</p>
<p>
Video creation services I offer include :
</p>
<ul>
<li>Explainer videos</li>
<li>Promotion videos</li>
<li>Trailers</li>
</ul>
<p>
Please contact me at <a href="mailto:altcoinagent@gmail.com">altcoinagent@gmail.com</a>
if you'd like me to produce a great video for you.
</p>
</div>
</div>
</div><!--//member-inner-->
</div><!--//member-->
<div class="member col-md-4 col-sm-6 col-xs-12" id="poppp">
<div class="member-inner">
<figure class="profile">
<img class="img-responsive avatar" src="assets/images/team/avatar.png" alt="SuperNET team member">
<figcaption class="info"><span class="name">poppp</span><br><span class="job-title">Plugin Builder</span></figcaption>
</figure><!--//profile-->
<div class="social">
<ul class="social-list list-inline">
<li><a class="swal swal-info" rel="poppp" href="#poppp-info"><i class="fa fa-info"></i></a></li>
<li><a href="http://nxt-starter.com/"><i class="fa fa-globe"></i></a></li>
</ul><!--//social-list-->
</div><!--//social-->
<div style="display:none;">
<div class="member-info">
<p>
Im building a nxt-starter.com plugin and other Website plugin for supernet
</p>
</div>
</div>
</div><!--//member-inner-->
</div><!--//member-->
<div class="member col-md-4 col-sm-6 col-xs-12" id="poofknuckle">
<div class="member-inner">
<figure class="profile">
<img class="img-responsive avatar" src="assets/images/team/avatar.png" alt="SuperNET team member">
<figcaption class="info"><span class="name">poof knuckle</span><br><span class="job-title">Freemarket Developer</span></figcaption>
</figure><!--//profile-->
<div class="social">
<ul class="social-list list-inline">
<li><a class="swal swal-info" rel="poofknuckle" href="#poofknuckle-info"><i class="fa fa-info"></i></a></li>
<li><a href="https://freemarketlite.cc/"><i class="fa fa-globe"></i></a></li>
</ul><!--//social-list-->
</div><!--//social-->
<div style="display:none;">
<div class="member-info">
<p>
Freemarket Developer, NXT FreeMarket is a decentralized marketplace, similar to eBay but without the high fees and censorship.
Our goal is to make trading inexpensive, easy, and most of all private for users across the globe. Searching is fast and powerful.
Item listings can include images as well as shipping options, and to make things easier, payments are taken directly from your NXT account.
</p>
</div>
</div>
</div><!--//member-inner-->
</div><!--//member-->
<div class="member col-md-4 col-sm-6 col-xs-12" id="sepehr">
<div class="member-inner">
<figure class="profile">
<img class="img-responsive avatar" src="assets/images/team/avatar.png" alt="SuperNET team member">
<figcaption class="info"><span class="name">sepehr</span><br><span class="job-title">C Programmer</span></figcaption>
</figure><!--//profile-->
<div class="social">
<ul class="social-list list-inline">
<li><a class="swal swal-info" rel="sepehr" href="#sepehr-info"><i class="fa fa-info"></i></a></li>
<li><a href="http://cryptozin.com/"><i class="fa fa-globe"></i></a></li>
</ul><!--//social-list-->
</div><!--//social-->
<div style="display:none;">
<div class="member-info">
<p>
Old School C Programmer, CryptoZin Manager.<br />
Integrating CryptoZin with SuperNET to send crypto to any mobile number in the world,
direct from SuperNET UI
</p>
</div>
</div>
</div><!--//member-inner-->
</div><!--//member-->
<div class="member col-md-4 col-sm-6 col-xs-12" id="sixsense">
<div class="member-inner">
<figure class="profile">
<img class="img-responsive avatar" src="assets/images/team/avatar.png" alt="SuperNET team member">
<figcaption class="info"><span class="name">six sense</span><br><span class="job-title">Intuition</span></figcaption>
</figure><!--//profile-->
<div class="social">
<ul class="social-list list-inline">
<li><a class="swal swal-info" rel="sixsense" href="#sixsense-info"><i class="fa fa-info"></i></a></li>
</ul><!--//social-list-->
</div><!--//social-->
<div style="display:none;">
<div class="member-info">
<p>
Call it a hunch, an instinct or an intuition. I have the ability to know something that cannot be learned by using the five senses
</p>
</div>
</div>
</div><!--//member-inner-->
</div><!--//member-->