Skip to content

Commit

Permalink
add second row
Browse files Browse the repository at this point in the history
  • Loading branch information
Lamby777 committed Jul 27, 2024
1 parent fe22b52 commit 6a2d2ae
Show file tree
Hide file tree
Showing 4 changed files with 60 additions and 0 deletions.
Binary file added src/public/img/portfolio/crx-fetcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/public/img/portfolio/cypress.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/public/img/portfolio/timewasted.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
60 changes: 60 additions & 0 deletions views/portfolio.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
</div>
</div>
</div>

<div class="col-md-4">
<div class="card project-card">
<img src="/public/img/portfolio/tql.png" class="project-img" height="250" alt="tql">
Expand All @@ -53,6 +54,7 @@
</div>
</div>
</div>

<div class="col-md-4">
<div class="card project-card">
<img src="/public/img/portfolio/dialogical.png" class="project-img" height="250" alt="dialogical">
Expand All @@ -71,6 +73,64 @@
</div>
</div>
</div>

<div class="row mt-5">
<div class="col-md-4">
<div class="card project-card">
<img src="/public/img/portfolio/crx-fetcher.png" class="project-img" height="250" alt="CRX Fetcher">
<div class="card-body">
<h5 class="card-title">CRX-Fetcher</h5>
<p class="card-text">
A web version of a Python script I once wrote to help people
in class download extensions our teacher wanted us to get from
the Chrome Web Store, bypassing the school filters. It does this
by accessing some Chrome Web Store endpoint that I found off
Stack Overflow. You can copy a list of extension IDs and send
them to someone to paste in here, and it'll download all the
zipped packages for you to install.
</p>
<a href="https://htmlpreview.github.io/?https://github.com/Lamby777/CRX-Fetcher/blob/master/index.html"
class="btn btn-carbon">Try It!</a>
<a href="https://github.com/Lamby777/CRX-Fetcher" class="btn btn-carbon">Source</a>
</div>
</div>
</div>

<div class="col-md-4">
<div class="card project-card">
<img src="/public/img/portfolio/cypress.png" class="project-img" height="250" alt="cypress">
<div class="card-body">
<h5 class="card-title">cypress</h5>
<p class="card-text">
A toolkit I created for hardening VMs in CyberPatriot competitions.
Some examples of its functions include a script to print through
all the users on a system and tell you which ones are admin, a
script to run updates and do all the typical hardening steps, and
a built-in guidebook/checklist for tasks that may get you points.
</p>
<a href="https://github.com/Lamby777/cypress" class="btn btn-carbon">Source</a>
</div>
</div>
</div>

<div class="col-md-4">
<div class="card project-card">
<img src="/public/img/portfolio/timewasted.png" class="project-img" height="250"
alt="timewasted.nvim">
<div class="card-body">
<h5 class="card-title">timewasted.nvim</h5>
<p class="card-text">
A very simple Neovim plugin that tells you how much time you've
spent using the program. I created it because I was curious
how Neovim plugins worked and wanted to see if I could make
one. The plugin itself is a reference to the bottom right
corner of x64dbg, a debugger I sometimes use for reverse engineering.
</p>
<a href="https://github.com/Lamby777/timewasted.nvim" class="btn btn-carbon">Source</a>
</div>
</div>
</div>
</div>
</div>
</body>

Expand Down

0 comments on commit 6a2d2ae

Please sign in to comment.