Merge branch 'master' of gitlab.com:shockrahwow/shockrah-city
34
build.sh
@ -1,5 +1,11 @@
|
||||
# Because sometimes you just have to rebuild everything
|
||||
rootDir='./_site/'
|
||||
|
||||
index() {
|
||||
pandoc ./markdown/index.md --css style.css -s -o $rootDir/index.html
|
||||
sed -i '7r ./templates/navbar.html' $rootDir/index.html
|
||||
}
|
||||
|
||||
post() {
|
||||
for file in ./markdown/post/*
|
||||
do
|
||||
@ -15,6 +21,9 @@ page() {
|
||||
done
|
||||
}
|
||||
|
||||
img() {
|
||||
cp -r img/ "$rootDir/img/"
|
||||
}
|
||||
style() {
|
||||
# Updating index style
|
||||
cp style.css $rootDir/style.css
|
||||
@ -37,4 +46,29 @@ yeet() {
|
||||
neocities push _site/
|
||||
}
|
||||
|
||||
|
||||
# Setups site directory from scratch
|
||||
init() {
|
||||
mkdir -p "$rootDir/page/" "$rootDir/post/" "$rootDir/fonts/" "$rootDir/img/"
|
||||
|
||||
cp -r img/ "$rootDir"
|
||||
cp ./fonts/* "$rootDir/fonts/"
|
||||
|
||||
post
|
||||
page
|
||||
index
|
||||
style
|
||||
}
|
||||
|
||||
"$@"
|
||||
|
||||
if [ -z $1 ]
|
||||
then
|
||||
echo './build.sh init - create website from scratch'
|
||||
echo './build.sh post - builds posts'
|
||||
echo './build.sh page - builds pages'
|
||||
echo './build.sh style - builds style'
|
||||
echo './build.sh yeet - upload to neocties'
|
||||
echo './build.sh img - currently super busted so don't bother
|
||||
fi
|
||||
|
||||
|
BIN
img/atx/before.jpg
Executable file
After Width: | Height: | Size: 138 KiB |
BIN
img/atx/finished.jpg
Executable file
After Width: | Height: | Size: 147 KiB |
BIN
img/atx/fio.jpg
Executable file
After Width: | Height: | Size: 136 KiB |
BIN
img/atx/hdd.jpg
Executable file
After Width: | Height: | Size: 120 KiB |
BIN
img/atx/hddfinal.jpg
Normal file
After Width: | Height: | Size: 107 KiB |
BIN
img/atx/mbtest.jpg
Executable file
After Width: | Height: | Size: 134 KiB |
BIN
img/atx/psutest.jpg
Executable file
After Width: | Height: | Size: 110 KiB |
BIN
img/atx/rack.jpg
Executable file
After Width: | Height: | Size: 93 KiB |
BIN
img/backt.png
Before Width: | Height: | Size: 15 KiB |
BIN
img/banner.png
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 1.0 MiB |
BIN
img/goyo.png
Before Width: | Height: | Size: 1.2 MiB |
4
make.sh
@ -12,7 +12,7 @@ post() {
|
||||
fi
|
||||
}
|
||||
|
||||
updatestyle() {
|
||||
style() {
|
||||
# Updating index style
|
||||
cp style.css $rootDir/style.css
|
||||
|
||||
@ -49,7 +49,7 @@ index() {
|
||||
if [ -z $1 ]
|
||||
then
|
||||
echo './make.sh post file.md - make new post'
|
||||
echo './make.sh updatestyle - update & sync style sheets'
|
||||
echo './make.sh style - update & sync style sheets'
|
||||
echo './make.sh page file.md - make new page'
|
||||
echo './make.sh index - update index'
|
||||
fi
|
||||
|
@ -1,4 +1,8 @@
|
||||
# This is definitely not a blog
|
||||
# [This is definitely not a blog](./index.html)
|
||||
|
||||
### **[Fitting ATX boards in MATX Cases](./post/atx.html)**
|
||||
> _January 10, 2018_ \
|
||||
> pls no boolie cable management
|
||||
|
||||
### **[Wot in tarnation happend to the style](./post/style.html)**
|
||||
> _September 21, 2018_ \
|
||||
|
63
markdown/post/atx.md
Normal file
@ -0,0 +1,63 @@
|
||||
# [Carry On PC - How I crammed a full ATX board into a mATX Case](../index.html)
|
||||
|
||||
I use my PC for... well pretty much everything.
|
||||
Which means if I go somewhere for a few weeks at a time, my PC is coming with me.
|
||||
For a while I used a _Corsair 300r_, which has served me well until now.
|
||||
After looking around for a travel friendly ATX case I realized that there really aren't any.
|
||||
For that reason I would have to find a case that my parts physically fit into, and cram them in somehow.
|
||||
|
||||
## Prepping the case
|
||||
|
||||
To start the case I bought was a [Cooler MasterN200](http://us.coolermaster.com/product/Detail/case/n-series/n200.html).
|
||||
The main parts I had to worry about were as folow in the table:
|
||||
|
||||
|
||||
| Part | Length/Size | Name |
|
||||
|---|---|---|
|
||||
| MotherBoard | ATX | Gigabyte Z97X-UD4H |
|
||||
| CPU Cooler | 6.5in tall | Hyper 212 Evo |
|
||||
| Graphics Card | 10 in long | EVGA 960 2Gb SC Edition |
|
||||
|
||||
After opening the case I saw a few things that had to go.
|
||||
|
||||
![](../img/atx/before.jpg)
|
||||
|
||||
1. Hard Drive bays
|
||||
|
||||
![](../img/atx/hdd.jpg)
|
||||
|
||||
I also took off the front IO panel since I have some plans to make this more flush later on, thus saving space to fit into a carry on bag.
|
||||
|
||||
2. PSU rack holding thingy
|
||||
|
||||
I have no idea what this thing is but it had to go since it wouldn't let my motherboard fit into the case.
|
||||
Luckily there was only a few rivets holding it in to a quick chiseling and they were gone with the rack too.
|
||||
|
||||
![](../img/atx/rack.jpg)
|
||||
|
||||
## Test fitting some things
|
||||
|
||||
First I checked how the motherboard would fit into the case on its own; I was afraid of possibly adjusted the rear I/O sheild hole.
|
||||
|
||||
![](../img/atx/mbtest.jpg)
|
||||
|
||||
Next I fiddled with the psu since fitting it into the case was going to be _really_ akward.
|
||||
It ended up being as weird as I though but ultimately it works and seems to be stable so what you see in the picture is the setup I went with.
|
||||
|
||||
![](../img/atx/psutest.jpg)
|
||||
|
||||
I completely forgot about the hard drives until the end, but it worked out in a _totally not ghetto way_.
|
||||
The 3.5 inc drive is the only one that I _really_ need to worry about for mounting honestly because of two reaons:
|
||||
|
||||
* 1 of the remaining drives is an _SSD_
|
||||
* The other drive is a laptop drive \
|
||||
Which I know still doesn't excuse the mounting but hey it coulnd't really move even if it wanted to.
|
||||
|
||||
![](../img/atx/hddfinal.jpg)
|
||||
|
||||
Hard drives have a little shroud which I made out of some heavy duty duck tape and cardboard.
|
||||
Kinda sketchy but not really since it holds things in a clean position and doesnt rattle at all.
|
||||
|
||||
There's one more ssd that you don't see but its tucked way up in the cd drive bay up top as I dont actually use that bay at all.
|
||||
|
||||
All in all I like how everything turned out as this pc is now ready to be taken anywhere in the US as _carry-on_ luggage!
|
1
templates/banner.md
Normal file
@ -0,0 +1 @@
|
||||
[![HomePage](../img/banner.png)](../index.html)
|