AdminDev 2.0

Nah ,you gotta do WASM if you wanna be a real baller.

1 Like

Had to look this up.

I donā€™t jump on bandwagons.

Looks at Golang repo

Shut your filthy mouth.

1 Like

The primary reason for web assembly is probably going to wind up being breaking browser security.

Which I fully support.

2 Likes

There are some interesting side channel attacks in web assembly right now.

R&D is on point

I looked at 3 of the 4 pages. Easy to read, on point, no distractions. Looks good to me. Loaded quickly but I donā€™t really know much if anything about this kind of stuff. My pov is from a pleb.

1 Like

Appreciate the feedback, youā€™ve been more than helpful!

1 Like

the website looks great, I loved it!

how about adding a dark mode slider?

1 Like

Once the CSS gets beefed up I am thinking about adding that (and a Vaporware/Dark Synth theme lol). I want the logo/terminal prompt to gradient-ly fill in with color, too, like itā€™s being filled in one pixel at a time.

I suck at CSS so Iā€™m working through some practice projects right now before I implement it into my site :wink:

Appreciate the feedback, too! :smiley:

holy shit thatā€™ll be awesome :smiley:

Thatā€™ll be amazing.

I was already watching so Iā€™ll keep on going!

1 Like

The only thing, that my eyes caught on, is that on desktop, the main menu is not centered and everything else is.

Feels faster than before.

1 Like

Yeah, that was by design. Iā€™ve thought about toying around with it. On the mobile version it is centered. Iā€™ll get it sorted one way or the other.

I agree, it feels faster too. More ā€œsnappyā€.

Appreciate you sharing your thoughts!

1 Like

I just went thru the whole site. It definitely loads quicker than the other sites I frequent.

1 Like

Earlier today when I was clicking through it, I was wondering why there was a small change in the bg image between the resume tab and the others.

Iā€™m ashamed to admit how much time it took me to notice that there was a scroll bar and that is the thing that made the image ā€œmoveā€ a little, lol :sweat_smile:

1 Like

Just real quick: AWESOME website man, super impressive!

1 Like

Aww thanks man. Appreciate that!


All right, yā€™all, this is better than the CloudHealth Agent bs and the Adobe AEM trash script lol.

But, considering that, is this still cringe or nah? :wink:

#!/bin/bash

if pgrep -x main > /dev/null
then
        is_running=true
else
        is_running=false
fi

if [ $1 == "status" ]; then
        if [ $is_running = true ]; then
                echo "App is running"
        else
                echo "App is not running"
        fi
fi

if [ $1 == "start" ]; then
        if [ $is_running = true ]; then
                echo "Application is all ready running."
                exit 1
        else
                main &
        fi
fi

if [ $1 == "stop" ]; then
        if [ $is_running = true ]; then
                pkill main
        else
                echo "Application is not running."
                exit 1
        fi
fi

Regardless, NO FUX GIVEN LMAO CHECK ANOTHER BOX.

1 Like

Script 2.0

#!/bin/bash

if pgrep -x main > /dev/null
then
        is_running=true
else
        is_running=false
fi

status()
{
        if [ $is_running = true ]; then
                echo "Application is running."
        else
                echo "Application is not running."
        fi
}

start()
{
        if [ $is_running = true ]; then
                echo "Application is started."
                exit 1
        else
                main &
        fi
}

stop()
{
        if [ $is_running = true ]; then
                pkill main
        else
                echo "Application is not running."
                exit 1
        fi
}

build()
{
        go install main.go
}

update()
{
        git pull
}


case "$1" in
        "status")       status          ;;
        "start")        start           ;;
        "stop")         stop            ;;
        "build")        build           ;;
        "update")       update          ;;
        *)              echo "To run script: ./site start|stop|status|build|update"
                        exit 1          ;;
esac
4 Likes

oh not bad. Looks an awful lot like a rcscript.

1 Like

Not sure if I was told Iā€™m a Linux developer or shit programmer

Either way:

1 Like

This.

1 Like

Awww yeah

1 Like