Skip to content

Commit

Permalink
Done for today-- will work on migration tomorrow.
Browse files Browse the repository at this point in the history
Very good.  Planning on moving my reverse proxy tomorrow.
  • Loading branch information
AlphaGameDeveloper committed Dec 3, 2023
1 parent c8e1da5 commit 15c9be5
Show file tree
Hide file tree
Showing 7 changed files with 68 additions and 42 deletions.
10 changes: 10 additions & 0 deletions 404.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
layout: default
permalink: /404.html
---
# 404 not found
It seems like the page that you are attempting to access is either nonexistant, or the URL is mistyped. Please verify that the URL in the search bar is correct. If you found this page via a link, and you think that this is an error, please drop me an email at [damien@alphagame.dev](mailto:damien@alphagame.dev). It is also possible that I removed that page.

Sorry for the inconvenience,

Damien
8 changes: 7 additions & 1 deletion _config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
title: AlphaGameDeveloper
url: ""
baseurl: "/"
baseurl: ""

permalink: /blog/:year/:month/:title
excerpt_separator: <!--more-->
markdown: kramdown
#ins_logo: "./bits-logo.png"

Expand All @@ -20,3 +22,7 @@ nav:
link: "/"
- name: "About"
link: "/about"
- name: "Blog"
link: /blog
- name: GitHub
link: https://github.com/AlphaGameDeveloper
24 changes: 24 additions & 0 deletions _posts/2023-6-10-i-messed-up-even-more.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
layout: default
title: Okay. I messed up (EVEN MORE!)
---
Hey all-

I messed up, AGAIN. I ACTUALLY think that this is the last time that this is going to happen. Recently, the site was on a weird /wp-admin/install.php page, where the WordPress software was installed, and the MySQL database was all going well, but the installer was trying to get the software (that is already installed) installed AGAIN.

<!--more-->

I don’t have the exact logs, but I have (accidentally) remembered some.

```
Error during WordPress installation:
CREATE TABLE wordpress -- already exists.
(repeat this a lot)
```
But yeah– I have set up a proper automatic backup system to Google Drive. Hopefully I won’t screw it up AGAIN.

Thanks-

Damien B.

**Note: This post is no longer relavant to this site, as I am no longer using WordPress.**
10 changes: 9 additions & 1 deletion _sass/_style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ body {
font-family: "Inconsolata";
height: 100%;
}
a {
a,a:visited {
text-decoration: none;
color: $accent;
}
Expand Down Expand Up @@ -129,3 +129,11 @@ hr {

@import "typography";
@import "tables";

/* custom here */

li.excerpt {
list-style-image: none;
}

.blk {color: black;}
Binary file added assets/1000059909pfp.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
43 changes: 3 additions & 40 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,45 +2,8 @@
layout: default
---

## About Me
<img class="profile-picture" src="/assets/1000059909pfp.jpg">

<img class="profile-picture" src="/assets/1000059909.jpg">
# About Me

# some custom txt
Hi! I am a junior year student of B.E. Computer Science at Birla Institute of Technology and Science, Pilani.

This is a jekyll based resume template. You can find the full source code on [GitHub](https://github.com/bk2dcradle/researcher)

## Research Interest

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam finibus ipsum ac erat aliquam dapibus. Vestibulum vehicula placerat ex, a consectetur odio pharetra quis. Mauris id urna ante. Fusce pharetra diam ac nisi aliquet, vel egestas ex iaculis. Pellentesque laoreet cursus tellus sed pellentesque. Praesent a rhoncus elit. Nunc ipsum nisl, consequat sit amet pretium quis, gravida id ipsum.

## Publications

1. F.Bar, J.Doe: Effects of having a placeholder of a name
2. S.Holmes, J.Watson: Consequences of living with a sociopath in London

## Typography

This is a [link](http://google.com). Something *italics* and something **bold**.

Here is a table

Year | Award | Category
-----|-------|--------
2014 | Emmy | Won Outstanding Lead Actor in a miniseries or a movie
2015 | BAFTA | Nominated for Best Leading Actor for Sherlock
2014 | Satellite | Won Best Actor miniseries or television film

Here is a horizontal rule

---

Here is a blockquote

> To a great mind, nothing is little
## References

* Foo Bar: Head of Department, Placeholder Names, Lorem
* John Doe: Associate Professor, Department of Computer Science, Ipsum
My name is Damien Boisvert, and I am 14 years old. I have been running this website since 2021, shortly after the COVID-19 craziness ended. I am a freshman, and have a passion for computers, programming, and almost everything IT. I am completely self-taught, via YouTube, books that my dad has, and HackTheBox. I am currently working on my Cisco CCNA at school, and I am a recommended-black belt in Taekwondo.
15 changes: 15 additions & 0 deletions posts_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
layout: default
permalink: /blog
---
# Blog posts
Here, you can find my blog posts that I write in my spare time.
[link](example.com)
<ul>
{% for post in site.posts %}
<li><a class="blk" href="{{ post.url }}">{{ post.title }}</a></li>
<ul>
<li class="excerpt">{{ post.excerpt }}</li>
</ul>
{% endfor %}
</ul>

0 comments on commit 15c9be5

Please sign in to comment.