-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·984 lines (958 loc) · 46.1 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
<!DOCTYPE HTML>
<html>
<head>
<title>Laisson Silveira</title>
<meta charset="utf-8" />
<link rel="icon" href="images/favicon.png">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<meta name="description"
content="Hi, I am Laisson R. Silveira, and I am Software Engineer, Tech Lead, System Analyst and Scrum Master, with specific knowledge in Javascript and also in Java." />
<meta itemprop="name" content="Laisson R. Silveira - Software Engineer | Systems analyst">
<meta itemprop="image" content="https://laissonsilveira.github.io/images/me.jpg">
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@laisson_rangel" />
<meta name="twitter:title" content="Laisson R. Silveira - Software Engineer" />
<meta name="twitter:url" content="http://laissonsilveira.github.io/" />
<meta name="twitter:image" content="https://laissonsilveira.github.io/images/me.jpg" />
<meta name="twitter:description"
content="Hi, I am Laisson R. Silveira, and I am Software Engineer, Tech Lead, System Analyst and Scrum Master, with specific knowledge in Javascript and also in Java." />
<link rel="stylesheet" href="assets/css/main.css" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-X16SD6MWQ6"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-X16SD6MWQ6');
</script>
<script src="https://www.paypalobjects.com/donate/sdk/donate-sdk.js" charset="UTF-8"></script>
</head>
<body class="is-preload">
<!-- Header -->
<header id="header">
<div class="inner">
<a href="#" class="image avatar"><img src="images/avatar.jpg" alt="" /></a>
<h1>
Hi, I am <strong>Laisson Rangel Silveira</strong>, and I am Software Engineer, Tech Lead, System Analyst
and Scrum Master, with specific knowledge in Javascript (2012-now), NodeJS (2016-now) and also in Java
(2012-now).
</h1>
</div>
</header>
<!-- Main -->
<div id="main">
<!-- Description -->
<section class="description-text">
<header class="major">
<h2>I am a self-taught, organized and collaborative person, with ease to work in a team, always seeking
to achieve my goals and improve my knowledge.</h2>
<ul class="actions">
<li>
<a href="#my-works" class="button icon solid fa-code">See some of my works</a>
</li>
<li>
<a id="buy-coffee" href="http://buymeacoffee.com/laissonrs" target="_blank"
class="button icon solid fa-mug-hot">Buy me a
coffee</a>
</li>
<li>
<a id="support-paypal" href="https://www.paypal.com/donate/?hosted_button_id=K2CB3G9USSJXL"
target="_blank" class="button icon brands fa-paypal">Support by PayPal</a>
</li>
</ul>
</header>
<p>
Father, husband and full-time programmer, passionate about the beach, travel and music, creator and
maintainer of <a href="https://www.passbrow.com" target="_blank">PassBrow</a> and of <a
href="https://laissonsilveira.github.io/inject-fingerprint/" target="_blank">inject-fingerprint</a>.
</p>
<p>
My professional summary: I graduated in Information Systems in 2012 from UNISUL - University of the
South of Santa Catarina, and since then I have worked with software development and improved with
courses (can be seen on my LinkedIn) and events, so I graduated and started working with development
at a pharmacy software company (Trier Sistemas), after nearly 2 years with the company, adding
internship
and hiring, I decided to accept a bigger challenge and started working at Dígitro Tecnologia, the
company where I meeting today 100% remotely. I started as a Jr, and in these almost 9 years with the
company I have been growing personally and professionally, reaching the level of Sr developer and
now
acting as a Pl Systems Analyst,, and in the agile Scrum methodology, I also work as team leader at
Dígitro, Scrum Master for 7 years, still playing the role of fullstack developer, in JavaScript and
Java
languages. I also work as DevOps, managing containers (Docker) and CI such as Gitlab Runners. I also
maintain modules where I have to work with Shell Script and Python.
</p>
<p>
In the back-end developer NodeJS for 6 years, I work daily with the language, as well as with Java
for
10 years.
</p>
<p>
On the front-end I work daily with VueJS and for many years I worked with AngularJS.
</p>
<p>
In particular projects, in addition to working with Android, Watch OS, NodeJS, HTML and JavaScript
in
extensions for the most common browsers, I also have a little experience with React.
</p>
<p>
With database I have experience with
Redis, PostgreSQL, Oracle and MongoDB (I have certifications for use with NodeJS [M101JS] and Java
[M101J]).
</p>
<p>
I've had a startup for 4 years (2016 - 2020), as I created and maintained along with another
colleague a
software, fully developed in JavaScript, from the front (AngularJS) to the backend (NodeJS-MongoDB)
hosted on AWS using EC2. In the development field, my language preference today is JavaScript
(NodeJS
and VueJS), but I really enjoy this diversity, of working with several languages, and not only
working
with development, but playing a management and DevOps role.
</p>
<p>
I also speak intermediate English and I am always practicing and constantly learning.
</p>
</section>
<!-- my-works -->
<section id="my-works">
<h2>My works</h2>
<div class="row">
<article class="col-6 col-12-xsmall work-item">
<a href="images/passbrow/passbrow-02.gif" class="image fit thumb">
<img src="images/passbrow/passbrow-01.png" alt="" />
</a>
<h3>
<a href="https://www.passbrow.com" target="_blank">
PassBrow - Password for your browser
</a>
</h3>
<em>2012-now</em>
<p>A extension designed to maintain user privacy through a default password to lock the browser. And
with the ability to block any site you want.</p>
</p>
<p>
<pre>
<code>const skills = [
'HTML',
'CSS',
'JavaScript',
'jQuery',
'Chrome Web Store API'
]</code>
</pre>
</p>
</article>
<article class="col-6 col-12-xsmall work-item">
<a href="images/passbrow/server-02.png" class="image fit thumb">
<img src="images/passbrow/server-01.png" alt="" />
</a>
<h3>
<a href="https://passbrow-recovery.herokuapp.com" target="_blank">
PassBrow Server
</a>
</h3>
<em>2021-now</em>
<p>
PassBrow extension server developed for password recovery of the extension through a code
generated and sent to e-mail, license control of paying users, manager of payments made, decoder
of logs created by me, management of feedbeaks.
</p>
<p>
<pre>
<code>const skills = [
"JavaScript",
"NodeJS",
"MongoDB"
"Redis"
"React",
"HTML",
"CSS",
"Material UI"
];</code>
</pre>
</p>
</article>
<article class="col-6 col-12-xsmall work-item">
<a href="images/passbrow/watch-02.jpg" class="image fit thumb">
<img src="images/passbrow/watch-01.png" alt="" />
</a>
<h3>
<a href="#" target="_blank">
PassBrow-Authenticator-Watch
</a>
</h3>
<em>2021-now</em>
<p>
PassBrow-Authenticator-Watch is a password-generating application to Smartwatchs and works in
conjunction with the
PassBrow extension (https://www.passbrow.com). After your browser is blocked by the extension,
use the generated codes by
PassBrow-Authenticator-Watch to unlock your browser.
</p>
<p>
<pre>
<code>private String[] skills = {
"Android,
"Java",
"Wear OS"
};</code>
</pre>
</p>
</article>
<article class="col-6 col-12-xsmall work-item">
<a href="images/passbrow/authenticator-02.png" class="image fit thumb">
<img src="images/passbrow/authenticator-01.jpeg" alt="" />
</a>
<h3>
<a href="https://play.google.com/store/apps/developer?id=Laisson+R.+Silveira" target="_blank">
PassBrow-Authenticator
</a>
</h3>
<em>2014-now</em>
<p>
PassBrow-Authenticator is a password-generating application that works in conjunction with the
PassBrow extension (https://www.passbrow.com). After your browser is blocked by the extension,
use the generated codes by
PassBrow-Authenticator to unlock your browser.
</p>
<p>
<pre>
<code>private String[] skills = {
"Android",
"Java"
};</code>
</pre>
</p>
</article>
<article class="col-6 col-12-xsmall work-item">
<a href="images/passbrow/recover-02.png" class="image fit thumb">
<img src="images/passbrow/recover-01.png" alt="" />
</a>
<h3>
<a href="https://sourceforge.net/projects/passbrow-recover/" target="_blank">
PassBrow-Recover (<i>deprecated</i>)
</a>
</h3>
<em>2016</em>
<p>
PassBrow-Recover is a password recover application that worked in conjunction with the
PassBrow extension (https://www.passbrow.com). When the user losed password of extension, they
could load the <i>.passbrow</i> file extension
generated and enter your personal information registered in PassBrow extension to generate a
code that will give you immediate access to the browser, or you can send your password
registered for the e-mail that you saved in extension.
</p>
<p>
<pre>
<code>private String[] skills = {
"CSS"
"Java",
"JavaFX"
};</code>
</pre>
</p>
</article>
<article class="col-6 col-12-xsmall work-item">
<a href="images/clockin/clockin-02.png" class="image fit thumb">
<img src="images/clockin/clockin-01.png" alt="" />
</a>
<h3>
<a href="http://clock-in-lrs.herokuapp.com/" target="_blank">
Clock-in
</a>
</h3>
<em>2018-now</em>
<p>
Responsive web application for recording of points hits in the company to calculate the balance
available at the bank or overtime.
</p>
<p>
<pre>
<code>const skills = [
"JavaScript",
"NodeJS",
"MongoDB"
"AngularJS",
"HTML",
"CSS",
"Bootstrap 4"
];</code>
</pre>
</p>
</article>
<article class="col-6 col-12-xsmall work-item">
<img src="images/injectfingerprint/inject-fingerprint.png" alt="" />
<h3>
<a href="https://laissonsilveira.github.io/inject-fingerprint/" target="_blank">
inject-fingerprint
</a>
</h3>
<em>2021-now</em>
<p>
<strong>Inject fingerprint with proxy.</strong>
Fingerprint (device fingerprint) is a set of techniques that allow a website to uniquely
identify your computer.
Calculating a devices fingerprint begins when a user visits a website. The device fingerprint
tracker collects all relevant information (version / browser type, OS, etc.). The interaction
triggers the collection of a range of data (like the one listed above) that forms a special
“hash” assigned to that specific device.
This page tells you how identifiable your browser is as a robot: https://bot.sannysoft.com/ and
this module makes the tests on this page succeed on your chrome headless. See test
</p>
<p>
<pre>
<code>const skills = [
"NodeJS",
"Selenium Driver",
"Mocha",
"Chai",
"Web Crawler"
];</code>
</pre>
</p>
</article>
<article class="col-6 col-12-xsmall work-item">
<a href="images/simplify/simplify-02.png" class="image fit thumb">
<img src="images/simplify/simplify-01.png" alt="" />
</a>
<h3>
<a href="https://www.simplifyzone.com.br/" target="_blank">
Simplify Startup
</a>
</h3>
<em>2016-2021</em>
<p>
Simplify is a solution to mediate Wi-Fi access for commercial establishments.
<br>
While most establishments only release the password for their customers or link access to
checking on social networks, with little or no return, with Simplify you can link Wi-Fi access
to satisfaction survey responses, to visualization of advertisements, dissemination of social
networks, data collection such as telephone and e-mail, presentation of promotional codes, among
other possibilities.
</p>
<p>
<pre>
<code>const skills = [
"JavaScript",
"NodeJS",
"MongoDB"
"AngularJS",
"HTML",
"CSS",
"Bootstrap 3",
"Gulp",
"Chai",
"SSH",
"Linux",
"AWS EC2",
"CEO",
"CTO"
];</code>
</pre>
</p>
</article>
<article class="col-6 col-12-xsmall work-item">
<a href="images/stock/stock-02.png" class="image fit thumb">
<img src="images/stock/stock-01.png" alt="" />
</a>
<h3>
<a href="https://github.com/laissonsilveira/stock-toolbar" target="_blank">
Stocks and Cryptos - Real Time
</a>
</h3>
<em>2020</em>
<p>
Real-time monitoring of the stock and cryptos market.
</p>
<p>
<pre>
<code>const skills = [
"JavaScript",
"HTML",
"CSS",
"Chrome Web Store API",
"VueJS",
"Bootstrap 4"
];</code>
</pre>
</p>
</article>
<article class="col-6 col-12-xsmall work-item">
<a href="images/c-sync/csync-02.png" class="image fit thumb">
<img src="images/c-sync/csync-01.png" alt="" />
</a>
<h3>
<a href="#" target="_blank">
C-Sync
</a>
</h3>
<em>2018</em>
<p>
NodeJS service to client and server to auto update softwares or another services.
</p>
<p>
<pre>
<code>const skills = [
"NodeJS",
"JavaScript",
"HTML",
"CSS",
"AngularJS",
"Bootstrap 3 e 4",
"MongoDB",
"Axios",
"HTTPS"
"Shell Script"
"JWT"
"Chai",
"Mocha",
"Gulp"
];</code>
</pre>
</p>
</article>
<article class="col-6 col-12-xsmall work-item">
<a href="images/metadatavalidate/metadata-validate.png" class="image fit thumb"><img
src="images/metadatavalidate/metadata-validate.png" height="208" alt="" /></a>
<h3>
<a href="https://bitbucket.org/laisson_silveira/metadatavalidate/" target="_blank">
MetadataValidade
</a>
</h3>
<em>2016-2017</em>
<p>
Project made entirely in Javascript, and created with the intention of learning and improving
Javascript knowledge acquired based on courses, events and the like.
<br>
This web system is an improved version of the desktop version made by me in 2014, using Swing
(Java), to help the metadata validations of some of the company's modules. This task was
requested by the PO at the time, where a spreadsheet containing this default data was passed on
and used as a basis for validations.
</p>
<p>
<pre>
<code>const skills = [
"JavaScript",
"NodeJS",
"AngularJS",
"HTML",
"CSS",
"Bootstrap 3",
"Gulp",
"Chai",
"Bower"
"PM2",
"MongoDB"
"Oracle",
"PostgreSQL"
];</code>
</pre>
</p>
</article>
<article class="col-6 col-12-xsmall work-item">
<a href="images/sourceforge/sourceforge-02.jpeg" class="image fit thumb"><img
src="images/sourceforge/sourceforge-01.png" alt="" /></a>
<h3>
<a href="https://chrome.google.com/webstore/detail/sourceforge-stats/jhpamgjmjbflcfcfdhopphnfldjmpfej"
target="_blank">
SourceForge Stats
</a>
</h3>
<em>2015</em>
<p>
This extension is for you too lazy to go to the SouceForge's website to see how is the
statistics of your application. It's simple! Click on the extent icon and pop that will open,
enter the name of your project and choose a date filter, if all goes well, then will be
presented you the download statistics of your project, and the next time you do not need to
re-enter the project name, only if you want to check another.
</p>
<p>
<pre>
<code>const skills = [
"JavaScript",
"HTML",
"CSS",
"Chrome Web Store API",
"Bootstrap 3"
"AngularJS",
"C3/D3",
"jQuery"
];</code>
</pre>
</p>
</article>
<article class="col-6 col-12-xsmall work-item">
<a href="images/twitter/twitter-02.png" class="image fit thumb"><img
src="images/twitter/twitter-01.png" alt="" /></a>
<h3>
<a href="https://github.com/laissonsilveira/twitter-notification" target="_blank">
Notification Twitter
</a>
</h3>
<em>2015</em>
<p>
This extension is intended to issue a notification on the user's desktop informing the tweets of
twitter accounts that the user owns and which allowed the extension has access to notify.
</p>
<p>
<pre>
<code>const skills = [
"JavaScript",
"HTML",
"CSS",
"Chrome Web Store API",
"Bootstrap 2"
];</code>
</pre>
</p>
</article>
<article class="col-6 col-12-xsmall work-item">
<a href="images/avfinal/avfinal-02.png" class="image fit thumb"><img
src="images/avfinal/avfinal-01.png" alt="" /></a>
<h3>
<a href="https://github.com/laissonsilveira/avfinal" target="_blank">
AVFinal
</a>
</h3>
<em>2012-2014</em>
<p>
Digital class diary with frequency, exames and etc.
</p>
<p>
<pre>
<code>private String[] skills = {
"Java",
"JavaFX",
"Spring"
"Hibernate"
"JPA"
"HSQLDB",
"Jasper"
"fxml",
"jrxml"
};</code>
</pre>
</p>
</article>
<article class="col-6 col-12-xsmall work-item">
<a href="images/emilk/emilk-02.jpeg" class="image fit thumb">
<img src="images/emilk/emilk-01.jpeg" alt="" /></a>
<h3>
<a href="https://lyonzimba.wixsite.com/emilk" target="_blank">
ΣMilk - Formulação de rações para gado leiteiro
</a>
</h3>
<em>2011-2012</em>
<p>
Um sistema de informação para automatizar o processo de ordenha e também formular rações para o
gado leiteiro.
</p>
<p>
<pre>
<code>private String[] skills = {
"RichFaces",
"Java",
"JBoss",
"PostgreSQL"
};</code>
</pre>
</p>
</article>
<article class="col-6 col-12-xsmall work-item">
<a href="images/under-construction.jpeg" class="image fit thumb"><img
src="images/under-construction.jpeg" alt="" /></a>
<h3>Under construction...</h3>
</article>
<!-- <article class="col-6 col-12-xsmall work-item">
<script async
src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-0862390442495708"
crossorigin="anonymous"></script>
<ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-0862390442495708"
data-ad-slot="3346891130" data-ad-format="auto" data-full-width-responsive="true"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</article> -->
</div>
<!-- <ul class="actions">
<li><a href="#" class="button">Full Portfolio</a></li>
</ul> -->
</section>
<!-- <section id="four">
<h2>Elements</h2>
<section>
<h4>Text</h4>
<p>This is <b>bold</b> and this is <strong>strong</strong>. This is <i>italic</i> and this is
<em>emphasized</em>.
This is <sup>superscript</sup> text and this is <sub>subscript</sub> text.
This is <u>underlined</u> and this is code: <code>for (;;) { ... }</code>. Finally, <a href="#">this
is a link</a>.
</p>
<hr />
<header>
<h4>Heading with a Subtitle</h4>
<p>Lorem ipsum dolor sit amet nullam id egestas urna aliquam</p>
</header>
<p>Nunc lacinia ante nunc ac lobortis. Interdum adipiscing gravida odio porttitor sem non mi integer non
faucibus ornare mi ut ante amet placerat aliquet. Volutpat eu sed ante lacinia sapien lorem accumsan
varius montes viverra nibh in adipiscing blandit tempus accumsan.</p>
<header>
<h5>Heading with a Subtitle</h5>
<p>Lorem ipsum dolor sit amet nullam id egestas urna aliquam</p>
</header>
<p>Nunc lacinia ante nunc ac lobortis. Interdum adipiscing gravida odio porttitor sem non mi integer non
faucibus ornare mi ut ante amet placerat aliquet. Volutpat eu sed ante lacinia sapien lorem accumsan
varius montes viverra nibh in adipiscing blandit tempus accumsan.</p>
<hr />
<h2>Heading Level 2</h2>
<h3>Heading Level 3</h3>
<h4>Heading Level 4</h4>
<h5>Heading Level 5</h5>
<h6>Heading Level 6</h6>
<hr />
<h5>Blockquote</h5>
<blockquote>Fringilla nisl. Donec accumsan interdum nisi, quis tincidunt felis sagittis eget tempus
euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis
volutpat ac adipiscing accumsan faucibus. Vestibulum ante ipsum primis in faucibus lorem ipsum dolor
sit amet nullam adipiscing eu felis.</blockquote>
<h5>Preformatted</h5>
<pre><code>i = 0;
while (!deck.isInOrder()) {
print 'Iteration ' + i;
deck.shuffle();
i++;
}
print 'It took ' + i + ' iterations to sort the deck.';</code></pre>
</section>
<section>
<h4>Lists</h4>
<div class="row">
<div class="col-6 col-12-xsmall">
<h5>Unordered</h5>
<ul>
<li>Dolor pulvinar etiam magna etiam.</li>
<li>Sagittis adipiscing lorem eleifend.</li>
<li>Felis enim feugiat dolore viverra.</li>
</ul>
<h5>Alternate</h5>
<ul class="alt">
<li>Dolor pulvinar etiam magna etiam.</li>
<li>Sagittis adipiscing lorem eleifend.</li>
<li>Felis enim feugiat dolore viverra.</li>
</ul>
</div>
<div class="col-6 col-12-xsmall">
<h5>Ordered</h5>
<ol>
<li>Dolor pulvinar etiam magna etiam.</li>
<li>Etiam vel felis at lorem sed viverra.</li>
<li>Felis enim feugiat dolore viverra.</li>
<li>Dolor pulvinar etiam magna etiam.</li>
<li>Etiam vel felis at lorem sed viverra.</li>
<li>Felis enim feugiat dolore viverra.</li>
</ol>
<h5>Icons</h5>
<ul class="icons">
<li><a href="#" class="icon brands fa-twitter"><span class="label">Twitter</span></a></li>
<li><a href="#" class="icon brands fa-facebook-f"><span class="label">Facebook</span></a>
</li>
<li><a href="#" class="icon brands fa-instagram"><span class="label">Instagram</span></a>
</li>
<li><a href="#" class="icon brands fa-github"><span class="label">Github</span></a></li>
<li><a href="#" class="icon brands fa-dribbble"><span class="label">Dribbble</span></a></li>
<li><a href="#" class="icon brands fa-tumblr"><span class="label">Tumblr</span></a></li>
</ul>
</div>
</div>
<h5>Actions</h5>
<ul class="actions">
<li><a href="#" class="button primary">Default</a></li>
<li><a href="#" class="button">Default</a></li>
</ul>
<ul class="actions small">
<li><a href="#" class="button primary small">Small</a></li>
<li><a href="#" class="button small">Small</a></li>
</ul>
<div class="row">
<div class="col-6 col-12-small">
<ul class="actions stacked">
<li><a href="#" class="button primary">Default</a></li>
<li><a href="#" class="button">Default</a></li>
</ul>
</div>
<div class="col-6 col-12-small">
<ul class="actions stacked">
<li><a href="#" class="button primary small">Small</a></li>
<li><a href="#" class="button small">Small</a></li>
</ul>
</div>
<div class="col-6 col-12-small">
<ul class="actions stacked">
<li><a href="#" class="button primary fit">Default</a></li>
<li><a href="#" class="button fit">Default</a></li>
</ul>
</div>
<div class="col-6 col-12-small">
<ul class="actions stacked">
<li><a href="#" class="button primary small fit">Small</a></li>
<li><a href="#" class="button small fit">Small</a></li>
</ul>
</div>
</div>
</section>
<section>
<h4>Table</h4>
<h5>Default</h5>
<div class="table-wrapper">
<table>
<thead>
<tr>
<th>Name</th>
<th>Description</th>
<th>Price</th>
</tr>
</thead>
<tbody>
<tr>
<td>Item One</td>
<td>Ante turpis integer aliquet porttitor.</td>
<td>29.99</td>
</tr>
<tr>
<td>Item Two</td>
<td>Vis ac commodo adipiscing arcu aliquet.</td>
<td>19.99</td>
</tr>
<tr>
<td>Item Three</td>
<td> Morbi faucibus arcu accumsan lorem.</td>
<td>29.99</td>
</tr>
<tr>
<td>Item Four</td>
<td>Vitae integer tempus condimentum.</td>
<td>19.99</td>
</tr>
<tr>
<td>Item Five</td>
<td>Ante turpis integer aliquet porttitor.</td>
<td>29.99</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="2"></td>
<td>100.00</td>
</tr>
</tfoot>
</table>
</div>
<h5>Alternate</h5>
<div class="table-wrapper">
<table class="alt">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
<th>Price</th>
</tr>
</thead>
<tbody>
<tr>
<td>Item One</td>
<td>Ante turpis integer aliquet porttitor.</td>
<td>29.99</td>
</tr>
<tr>
<td>Item Two</td>
<td>Vis ac commodo adipiscing arcu aliquet.</td>
<td>19.99</td>
</tr>
<tr>
<td>Item Three</td>
<td> Morbi faucibus arcu accumsan lorem.</td>
<td>29.99</td>
</tr>
<tr>
<td>Item Four</td>
<td>Vitae integer tempus condimentum.</td>
<td>19.99</td>
</tr>
<tr>
<td>Item Five</td>
<td>Ante turpis integer aliquet porttitor.</td>
<td>29.99</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="2"></td>
<td>100.00</td>
</tr>
</tfoot>
</table>
</div>
</section>
<section>
<h4>Buttons</h4>
<ul class="actions">
<li><a href="#" class="button primary">Primary</a></li>
<li><a href="#" class="button">Default</a></li>
</ul>
<ul class="actions">
<li><a href="#" class="button large">Large</a></li>
<li><a href="#" class="button">Default</a></li>
<li><a href="#" class="button small">Small</a></li>
</ul>
<ul class="actions fit">
<li><a href="#" class="button primary fit">Fit</a></li>
<li><a href="#" class="button fit">Fit</a></li>
</ul>
<ul class="actions fit small">
<li><a href="#" class="button primary fit small">Fit + Small</a></li>
<li><a href="#" class="button fit small">Fit + Small</a></li>
</ul>
<ul class="actions">
<li><a href="#" class="button primary icon solid fa-download">Icon</a></li>
<li><a href="#" class="button icon solid fa-download">Icon</a></li>
</ul>
<ul class="actions">
<li><span class="button primary disabled">Primary</span></li>
<li><span class="button disabled">Default</span></li>
</ul>
</section>
<section>
<h4>Form</h4>
<form method="post" action="#">
<div class="row gtr-uniform gtr-50">
<div class="col-6 col-12-xsmall">
<input type="text" name="demo-name" id="demo-name" value="" placeholder="Name" />
</div>
<div class="col-6 col-12-xsmall">
<input type="email" name="demo-email" id="demo-email" value="" placeholder="Email" />
</div>
<div class="col-12">
<select name="demo-category" id="demo-category">
<option value="">- Category -</option>
<option value="1">Manufacturing</option>
<option value="1">Shipping</option>
<option value="1">Administration</option>
<option value="1">Human Resources</option>
</select>
</div>
<div class="col-4 col-12-small">
<input type="radio" id="demo-priority-low" name="demo-priority" checked>
<label for="demo-priority-low">Low Priority</label>
</div>
<div class="col-4 col-12-small">
<input type="radio" id="demo-priority-normal" name="demo-priority">
<label for="demo-priority-normal">Normal Priority</label>
</div>
<div class="col-4 col-12-small">
<input type="radio" id="demo-priority-high" name="demo-priority">
<label for="demo-priority-high">High Priority</label>
</div>
<div class="col-6 col-12-small">
<input type="checkbox" id="demo-copy" name="demo-copy">
<label for="demo-copy">Email me a copy of this message</label>
</div>
<div class="col-6 col-12-small">
<input type="checkbox" id="demo-human" name="demo-human" checked>
<label for="demo-human">I am a human and not a robot</label>
</div>
<div class="col-12">
<textarea name="demo-message" id="demo-message" placeholder="Enter your message"
rows="6"></textarea>
</div>
<div class="col-12">
<ul class="actions">
<li><input type="submit" value="Send Message" class="primary" /></li>
<li><input type="reset" value="Reset" /></li>
</ul>
</div>
</div>
</form>
</section>
<section>
<h4>Image</h4>
<h5>Fit</h5>
<div class="box alt">
<div class="row gtr-50 gtr-uniform">
<div class="col-12"><span class="image fit"><img src="images/fulls/05.jpg" alt="" /></span>
</div>
<div class="col-4"><span class="image fit"><img src="images/thumbs/01.jpg" alt="" /></span>
</div>
<div class="col-4"><span class="image fit"><img src="images/thumbs/02.jpg" alt="" /></span>
</div>
<div class="col-4"><span class="image fit"><img src="images/thumbs/03.jpg" alt="" /></span>
</div>
<div class="col-4"><span class="image fit"><img src="images/thumbs/04.jpg" alt="" /></span>
</div>
<div class="col-4"><span class="image fit"><img src="images/thumbs/05.jpg" alt="" /></span>
</div>
<div class="col-4"><span class="image fit"><img src="images/thumbs/06.jpg" alt="" /></span>
</div>
<div class="col-4"><span class="image fit"><img src="images/thumbs/03.jpg" alt="" /></span>
</div>
<div class="col-4"><span class="image fit"><img src="images/thumbs/02.jpg" alt="" /></span>
</div>
<div class="col-4"><span class="image fit"><img src="images/thumbs/01.jpg" alt="" /></span>
</div>
</div>
</div>
<h5>Left & Right</h5>
<p><span class="image left"><img src="images/avatar.jpg" alt="" /></span>Fringilla nisl. Donec accumsan
interdum nisi, quis tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in
faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu
faucibus. Integer ac pellentesque praesent tincidunt felis sagittis eget. tempus euismod. Vestibulum
ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing
accumsan eu faucibus. Integer ac pellentesque praesent. Donec accumsan interdum nisi, quis tincidunt
felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit
adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque
praesent tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus
vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer
ac pellentesque praesent.</p>
<p><span class="image right"><img src="images/avatar.jpg" alt="" /></span>Fringilla nisl. Donec accumsan
interdum nisi, quis tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in
faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu
faucibus. Integer ac pellentesque praesent tincidunt felis sagittis eget. tempus euismod. Vestibulum
ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing
accumsan eu faucibus. Integer ac pellentesque praesent. Donec accumsan interdum nisi, quis tincidunt
felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit
adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque
praesent tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus
vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer
ac pellentesque praesent.</p>
</section>
</section> -->
</div>
<!-- Footer -->
<footer id="footer">
<div class="inner">
<ul class="icons">
<li><a href="https://www.linkedin.com/in/laissonsilveira/" class="icon brands fa-linkedin"
target="_blank"><span class="label">LinkedIn</span></a></li>
<li><a href="https://twitter.com/laisson_rangel" class="icon brands fa-twitter" target="_blank"><span
class="label">Twitter</span></a></li>
<li><a href="https://github.com/laissonsilveira" class="icon brands fa-github" target="_blank"><span
class="label">Github</span></a></li>
<li><a href="[email protected]" class="icon solid fa-envelope" target="_blank"><span
class="label">Email</span></a></li>
<li><a href="https://www.instagram.com/laissonsilveira" class="icon brands fa-instagram"
target="_blank"><span class="label">Instagram</span></a></li>
</ul>
<ul class="copyright">
<li>© Laisson R. Silveira</li>
</ul>
</div>
</footer>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.poptrox.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>