diff options
| author | realtradam <[email protected]> | 2022-02-16 15:45:45 -0500 |
|---|---|---|
| committer | realtradam <[email protected]> | 2022-02-16 15:45:45 -0500 |
| commit | 562b3e8e2b30529df1c34d7d87f2d1f8190910e2 (patch) | |
| tree | 9f7bfae1a98005410145fc5ef69fa7874422a875 /index.html | |
| download | portfolio-site-562b3e8e2b30529df1c34d7d87f2d1f8190910e2.tar.gz portfolio-site-562b3e8e2b30529df1c34d7d87f2d1f8190910e2.zip | |
:)
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..aa6fcbc --- /dev/null +++ b/index.html @@ -0,0 +1,53 @@ +<html><head><meta charset="utf-8"/><title>Portfolio thing</title><link rel="stylesheet" href="./stylesheet/style.css"/><script src="https://cdn.tailwindcss.com"></script><script src="https://unpkg.com/vue@3"></script><script defer src='../assets/fontawesome-free-6.0.0-web/js/all.js'></script></head><div class="flex justify-center"><div class="flex flex-col flex-auto justify-between max-w-5xl"><header class="m-10"><h1 class="text-6xl text-slate-200 w-auto">Portfolio - Tradam.dev</h1></header><body class="bg-gradient-to-b from-thunder-200 to-thunder-300 text-slate-100 font-semiserif"><div id='app' class='flex justify-center pb-12 pr-3 pl-3'><div class="flex flex-auto flex-col justify-between flex-nowrap relative pl-12 pb-12 border-solid border-0 rounded-2xl bg-slate-800 space-y-8 shadow-outset"><div class="sticky top-3 right-0 overflow-visible h-0 float-right"><div class="relative flex justify-end mt-8"><footer><footer class="no-select table text-right p-0.5 text-none border-0 rounded-xl"><div class="rounded-xl m-0 p-0.5 flex flex-col"><a href="https://github.com/realtradam"><i class="fab fa-github-alt icon-img-foot p-1 text-4xl text-thunder-thunder hover:text-white transition-colors"></i></a><a href="https://github.com/realtradam"><i class="fab fa-linkedin icon-img-foot p-1 text-4xl text-thunder-thunder hover:text-white transition-colors"></i></a></div></footer></footer></div></div><h1 class="text-center text-4xl">Yup this is my portfolio</h1><p class="pl-24 pr-24">this is a little blurb about myself</p><article class="basis-1/3 bg-gradient-to-r from-slate-800 to-slate-900 rounded-xl mr-12 pl-8 pr-8 pt-5 pb-5 shadow-inset"><h1>Orc: Arena of Time</p> +<div class="subheader">— Raylib/MRuby Game</div></h1><h2>January 2022</h2> + +<p>Short game that won 1st place in the Raylib 5K gamejam.</p> + +<p><button @click="orcarena = !orcarena" class="text-center mt-0.5 pt-1 rounded text-thunder-thunder hover:text-white transition-colors underline"> +<div v-show="!orcarena"> +Play Game(Requires Keyboard and Mouse) +</div> +<div v-show="orcarena"> +Close Game +</div> +</button> +<Transition name="fade"> +<iframe frameborder="0" v-if="orcarena" class="shadow-outset mt-1 bg-black mr-3 rounded-lg" style="aspect-ratio:900/675;" src="https://itch.io/embed-upload/5265023?color=000000" allowfullscreen="" width="100%"><a href="https://tradam.itch.io/orc-arena-of-time">Play Orc: Arena of Time on itch.io</a></iframe> +</Transition></p> + +<ul> +<li>worked in team</li> +<li>was able to go from idea to complete working prototype in under 8 days</li> +<li>used custom tools like bindings + felECS</li> +<li>content</li> +</ul> +</article><article class="basis-1/3 bg-gradient-to-r from-slate-800 to-slate-900 rounded-xl mr-12 pl-8 pr-8 pt-5 pb-5 shadow-inset"><h1>FelECS</p> +<div class="subheader">— Engine Agnostic Pure Ruby ECS</div></h1><h2>May 2021 -</h2> + +<p>ECS implemented in Ruby with goals of being easy to incorporate/use in projects, reliable, and heavily documented.</p> + +<ul> +<li>To ensure reliability the test coverage goal is 100% coverage. This target is consistently maintained since the library's initial release in July 2021.</li> +<li>To ensure ease of use the documentation coverage goal is 100% coverage. Using Yard documentation coverage is automatically reported as well as automatic generation of documentation.</li> +<li>Is continuously being developed to this day to add new features as well as rework and optimize older ones.</li> +<li>Built various games using this framework in order to stress test its usability(Orc: Arena of Time, Steelwings, Ruboids)</li> +</ul> +</article><article class="basis-1/3 bg-gradient-to-r from-slate-800 to-slate-900 rounded-xl mr-12 pl-8 pr-8 pt-5 pb-5 shadow-inset"><h1><a href="https://github.com/realtradam/mruby-raylib">MRuby-Raylib</a></p> +<div class="subheader">— MRuby bindings for the Raylib Graphics Library</div></h1><h2>May 2021 -</h2> + +<p>MRuby bindings which allow easy use of the C library Raylib.</p> + +<ul> +<li>To ensure reliability the test coverage goal is 100% coverage. This target is consistently maintained since the library's initial release in July 2021.</li> +<li>To ensure ease of use the documentation coverage goal is 100% coverage. Using Yard documentation coverage is automatically reported as well as automatic generation of documentation.</li> +<li>Is continuously being developed to this day to add new features as well as rework and optimize older ones.</li> +<li>Built various games using this framework in order to stress test its usability(Orc: Arena of Time, Steelwings, Ruboids)</li> +</ul> +</article></div></div></body></div></div><script type="module">Vue.createApp({ + data() { + return { + orcarena: false + } + } +}).mount('#app') +</script></html>
\ No newline at end of file |
