What Are You Doing Right Now
-
-
Watching movies with Liesl
-
Helping the wife with some web design work.
-
-
Just announced out boat tour for this year at SpiceWorld. Hope that we see lots of y'all there in Austin!
-
@scale said in What Are You Doing Right Now:
Just announced out boat tour for this year at SpiceWorld. Hope that we see lots of y'all there in Austin!
Awesome
-
Getting the kids into bed and starting bedtime reading time.
-
Doing some last minute "before bedtime" Fedora upgrades.
-
Working out how to "disable" the internal WiFi adaptor on the laptop with Kali then get a realtek rtl8812au to work
-
Just wrapped up our reading.
-
@scottalanmiller said in What Are You Doing Right Now:
Turns out we have $17K of repairs that are needed.
DEAR LORD! Holy crap that's a lot! Ugh that sucks.
-
@kyle said in What Are You Doing Right Now:
@scottalanmiller said in What Are You Doing Right Now:
Turns out we have $17K of repairs that are needed.
Are they remodeling the kitchen for that cost?
Seriously valid question.
-
@hobbit666 said in What Are You Doing Right Now:
Working out how to "disable" the internal WiFi adaptor on the laptop with Kali then get a realtek rtl8812au to work
Not practical I know,.. but..
Wirecutters?
-
@strongbad said in What Are You Doing Right Now:
@quixoticjeremy said in What Are You Doing Right Now:
Just put my notice in at one of my jobs.
One of the best feelings in the world.
Definitely a good feeling, step in the right direction.
-
@quixoticjeremy said in What Are You Doing Right Now:
@strongbad said in What Are You Doing Right Now:
@quixoticjeremy said in What Are You Doing Right Now:
Just put my notice in at one of my jobs.
One of the best feelings in the world.
Definitely a good feeling, step in the right direction.
I some how missed that - Congrats - Hope the new endeavor goes well.
-
@gjacobse said in What Are You Doing Right Now:
@quixoticjeremy said in What Are You Doing Right Now:
@strongbad said in What Are You Doing Right Now:
@quixoticjeremy said in What Are You Doing Right Now:
Just put my notice in at one of my jobs.
One of the best feelings in the world.
Definitely a good feeling, step in the right direction.
I some how missed that - Congrats - Hope the new endeavor goes well.
Appreciate it! It was a needed change.
-
Wrote a extremely simple (ETA:) Windows script last night to update and shutdown my laptop.... I may see about adding a few other things to it but for now - here it is; as is....
@Echo off REM 26 Sept 2017 REM Created this batch file to update via Choco, and then REM Shutdown this device. Color 6 Echo This must be run as Administrator Echo If it is not run as Administrator, it will error Echo And likely perform the Shutdown only. Echo: Echo: Echo Press the -SPACEBAR- to begin update and shutdown pause mode con:cols=80 lines=25 choco upgrade all -y Cls mode con:cols=80 lines=20 Color 2 Echo Update completed Echo Ready to shutdown Echo Shutdown timer set to ZERO timeout 5 >nul shutdown /s -t 0
It was mainly done for fun and also function....
-
@gjacobse not bad, but why so verbose, and why have the pause until you hit the space bar? If you wanted to schedule it. This would pause indefinitely without your interaction.
-
@dustinb3403 said in What Are You Doing Right Now:
@gjacobse not bad, but why so verbose, and why have the pause until you hit the space bar? If you wanted to schedule it. This would pause indefinitely without your interaction.
It is a WIP -Work In progress. It's there just in case one were to change their mind really... I am debating on combining a script by brother wrote for the computer shutdown into this - I just have to find it again (it's on at least one of the eight drives here and the NAS).
As for why is it so verbose? Meh - Many I suppose for myself... but should someone else want it, they had the directions and what it did.
-
@gjacobse said in What Are You Doing Right Now:
@dustinb3403 said in What Are You Doing Right Now:
@gjacobse not bad, but why so verbose, and why have the pause until you hit the space bar? If you wanted to schedule it. This would pause indefinitely without your interaction.
It is a WIP -Work In progress. It's there just in case one were to change their mind really... I am debating on combining a script by brother wrote for the computer shutdown into this - I just have to find it again (it's on at least one of the eight drives here and the NAS).
As for why is it so verbose? Meh - Many I suppose for myself... but should someone else want it, they had the directions and what it did.
Being verbose isn't a bad thing. One of the most annoying things for me is coming into a new dev environment where there is 0 commenting. Yes reading the code speaks for itself but I'm going to read a quick sentence about whats going on more quickly then reading through random code that could have been written by someone who has no idea what they're doing.