-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
first pass of "make the change: all in one place"
- Loading branch information
Showing
7 changed files
with
49 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,16 @@ | ||
# PERSONAL WEBSITE | ||
Welcome to the repository of my website! | ||
\ | ||
 | ||
|
||
# Useful Links | ||
[Home](https://gdjkhp.github.io) | ||
|
||
# Games | ||
[Tic Tac Toe](https://gdjkhp.github.io/games/tic-tac-toe) | ||
\ | ||
[car driving game](https://gdjkhp.github.io/games/car-driving-game) | ||
|
||
# Social Links | ||
[Facebook](https://facebook.com/johnkennedy.pena.9) | ||
\ | ||
[Newgrounds](http://jkhp.newgrounds.com/) | ||
\ | ||
[YouTube](https://youtube.com/channel/UCDGRP1W4QbkDlweqoykRgmw/) | ||
\ | ||
[Soundcloud](https://soundcloud.com/john-kennedy-pena) | ||
\ | ||
[GitHub](https://github.com/GDjkhp/) | ||
\ | ||
[Reddit](https://reddit.com/user/gdjkhp) | ||
 | ||
|
||
# TODO | ||
|
||
[Anime](https://myanimelist.net/animelist/GDjkhp) | ||
\ | ||
[Games](https://gdjkhp.github.io/games) | ||
\ | ||
GoldSrc Collection | ||
\ | ||
Cubeshots | ||
\ | ||
Beginning Words | ||
\ | ||
Punchface | ||
\ | ||
Music Downloads, maybe? | ||
* [Anime](https://myanimelist.net/animelist/GDjkhp): [full anime list](https://myanimelist.net/forum/?topicid=1973077) | ||
* GoldSrc Collection | ||
* [Cubeshots](gdjkhp.github.io/cubeshots-html) and [Cubeshots](https://gdjkhp.github.io/cubeshots) | ||
* Beginning Words | ||
* Punchface | ||
* Music Downloads, maybe? spotify when | ||
* [Thesis](https://gdjkhp.github.io/ama-facial-recognition) | ||
* [Games](https://gdjkhp.github.io/games) | ||
* [Tic Tac Toe](https://gdjkhp.github.io/games/tic-tac-toe) | ||
* [car driving game](https://gdjkhp.github.io/games/car-driving-game) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
var style = document.createElement("style"); | ||
style.innerHTML = ` | ||
#particles-js { | ||
width: 100%; | ||
height: 100%; | ||
position: fixed; | ||
} | ||
.markdown-body { | ||
position: absolute; | ||
left: 0; | ||
right: 0; | ||
z-index: 1; | ||
} | ||
body { | ||
background-color: black; | ||
color: white; | ||
} | ||
tr, th, td { | ||
background-color: black; | ||
} | ||
`; | ||
document.head.appendChild(style); | ||
|
||
var particlesDiv = document.createElement("div"); | ||
particlesDiv.setAttribute("id", "particles-js"); | ||
document.body.appendChild(particlesDiv); | ||
|
||
var particlesScript = document.createElement("script"); | ||
particlesScript.setAttribute("src", "https://cdn.jsdelivr.net/npm/particles.js@2.0.0/particles.min.js"); | ||
document.body.appendChild(particlesScript); | ||
|
||
var configScript = document.createElement("script"); | ||
configScript.setAttribute("src", "https://gdjkhp.github.io/meeseeks-leaderboard-api/particlesjs-config.js"); | ||
document.body.appendChild(configScript); |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
body *, :not(*) { | ||
cursor: url(https://i.imgur.com/nCXdGsA.png), auto; | ||
} |