commit
c859229023
14 changed files with 5129 additions and 0 deletions
@ -0,0 +1,2 @@
@@ -0,0 +1,2 @@
|
||||
- 👋 Hi, I’m @smilingSix |
||||
- 👀 I’m interested in security of cryptocurrencies and DAOs. |
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
@ -0,0 +1,69 @@
@@ -0,0 +1,69 @@
|
||||
/* Style Settings */ |
||||
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&display=swap'); |
||||
|
||||
body { |
||||
background: url('../images/bg.jpg'); |
||||
font-family: 'Open Sans', sans-serif; |
||||
font-weight: 600; |
||||
} |
||||
|
||||
#userPhoto { |
||||
width: 100px; |
||||
height: 100px; |
||||
display: block; |
||||
margin: 10px auto; |
||||
border-radius: 20%; |
||||
} |
||||
|
||||
#userName { |
||||
color: #fff; |
||||
display: block; |
||||
width: 100%; |
||||
text-align: center; |
||||
text-decoration: none; |
||||
} |
||||
|
||||
#userName h1 { |
||||
font-size: 2rem; |
||||
font-weight: 300; |
||||
letter-spacing: 0.2rem; |
||||
margin: 0 auto; |
||||
} |
||||
|
||||
#userName p { |
||||
font-weight: 300; |
||||
margin-top: 5px; |
||||
text-transform: none; |
||||
} |
||||
|
||||
i.fa { |
||||
margin-right: 0.3rem; |
||||
} |
||||
|
||||
#links { |
||||
max-width: 500px; |
||||
width: auto; |
||||
display: block; |
||||
margin: 20px auto; |
||||
} |
||||
|
||||
.link { |
||||
display: block; |
||||
background-color: rgba(66, 110, 255, 0.2); |
||||
color: #fff; |
||||
text-align: center; |
||||
margin-bottom: 20px; |
||||
padding: 17px; |
||||
text-decoration: none; |
||||
font-size: 1.2rem; |
||||
font-weight: 300; |
||||
transition: all .25s cubic-bezier(.08, .59, .29, .99); |
||||
border-radius: 10px; |
||||
|
||||
} |
||||
|
||||
.link:hover { |
||||
background-color: rgba(255, 255, 255, 0.3); |
||||
color: #000000; |
||||
border: none; |
||||
} |
Binary file not shown.
Binary file not shown.
After Width: | Height: | Size: 434 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
After Width: | Height: | Size: 276 KiB |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 89 KiB |
@ -0,0 +1,46 @@
@@ -0,0 +1,46 @@
|
||||
<!DOCTYPE html> |
||||
|
||||
<html> |
||||
|
||||
<head> |
||||
<meta name="viewport" content="width=device-width, initial-scale=1"> |
||||
<meta charset="UTF-8"> |
||||
<title>LinkFree | Six</title> |
||||
<link rel="stylesheet" href="assets/css/style.css"> |
||||
<link rel="stylesheet" href="assets/css/font-awesome.min.css"> |
||||
<link rel="icon" href="assets/imagens/favicon.png" type="image/x-icon" /> |
||||
</head> |
||||
|
||||
<body> |
||||
<div id="profile"> |
||||
<img id="userPhoto" src="assets/images/profile.png" alt="Profile picture of SmilingSix"> |
||||
<div id="userName"> |
||||
<h1>Six</h1> |
||||
<p>Blockchain security researcher and CCTF founder</p> |
||||
</div> |
||||
</div> |
||||
<div id="links"> |
||||
<a class="link" href="https://github.com/smilingSix" target="_blank"><i class="fa fa-github"></i> Github</a> |
||||
<!--<a class="link" href="https://www.linkedin.com/in/xxxxxx/" target="_blank"><i class="fa fa-linkedin" |
||||
aria-hidden="true"></i> LinkedIn</a> nop.--> |
||||
<a class="link" href="http://cryptoctf.org/" target="_blank"><i class="fa fa-globe" aria-hidden="true"></i> |
||||
CryptoCTF Website</a> |
||||
<a class="link" href="mailto:six@awalcon.org" target="_blank"><i class="fa fa-envelope" |
||||
aria-hidden="true"></i> |
||||
E-mail</a> |
||||
<a class="link" href="https://web.whatsapp.com/send?phone=36202564090" target="_blank"><i class="fa fa-telegram" aria-hidden="true"></i>Telegram</a> |
||||
<hr> |
||||
<br> |
||||
<div id="userName"><p>Presentations and references</p></div> |
||||
<a class="link" href="https://bitcoinist.com/ecox-partners-with-cctf-organizers-to-host-the-largest-blockchain-hacking-event-so-far/" target="_blank"><i class="fa fa-link" aria-hidden="true">2021 - Bitcoinist article about CCTF</i></a> |
||||
<a class="link" href="https://index.hu/mindekozben/poszt/2021/05/06/kripto-programozasi-verseny-az-vajon-mi-/" target="_blank"><i class="fa fa-link" aria-hidden="true">2021 - Index.hu article about CCTF</i></a> |
||||
<!--<a class="link" href="" target="_blank"><i class="fa fa-link" aria-hidden="true"></i></a>--> |
||||
<a class="link" href="https://japo001.medium.com/the-digital-jewels-of-awalcon-c7d1497fc5c3" target="_blank"><i class="fa fa-link" aria-hidden="true">2020 - Awalcon training</i></a> |
||||
<a class="link" href="https://www.youtube.com/watch?v=FMu_oZilUek" target="_blank"><i class="fa fa-link" aria-hidden="true">2019 - Hacking smart contracts (Hun)</i></a> |
||||
<a class="link" href="http://eplusifjusag.hu/hu/courses/experience_show/89" target="_blank"><i class="fa fa-link" aria-hidden="true">2019 - Makerspaces in digital youth work</i></a> |
||||
<a class="link" href="https://2017.bsidesbud.com/speaker/m4xk-six/" target="_blank"><i class="fa fa-link" aria-hidden="true">2017 - Legend of Windows (0day exploit)</i></a> |
||||
</div> |
||||
|
||||
</body> |
||||
|
||||
</html> |
Loading…
Reference in new issue