Penguincoder

joined 2 years ago
MODERATOR OF
[–] Penguincoder@beehaw.org 7 points 1 week ago

Some good, some more bad. But slowly regaining myself and my free time. Been too damn hectic.

[–] Penguincoder@beehaw.org 1 points 1 month ago

OK. ^Thank^ ^you^

[–] Penguincoder@beehaw.org 1 points 1 month ago (1 children)

The goal (and the hold up thus far) is to migrate to Sublinks, with no downtime or noticeable issues for end users. Unfortunately there are a few blockers on the 'Lemmy parity' feature set in Sublinks. So we Beehaw admins assuredly want to migrate ASAP. Doing so right now would inconceive Beeple, or worse, remove functionality. We're in a holding pattern. Right now Beehaw is operational, and beyond everything else, that is the goal. Apps likely WON'T work with our current Beehaw Lemmy stack. They should work after the migration to Sublinks, with a Lemmy compatible API.

[–] Penguincoder@beehaw.org 7 points 1 month ago (1 children)

I find a lot of good content on Reddit, but its different now as opposed to the early days. The good content used to be on Reddit. Now its not, its on one of 6 other sites, and Reddit is just the ad service they're posting on. I am sick of the in joke comments and inane comments like "this". I want discussion.

Reddit no longer has that.

[–] Penguincoder@beehaw.org 10 points 1 month ago

He has no idea what that word means. The word he is looking for rhymes with needy.

[–] Penguincoder@beehaw.org 8 points 2 months ago

I recommend Aegis as well. Does what it needs without shadiness going on.

[–] Penguincoder@beehaw.org 8 points 2 months ago

Of course they did. There was money to be made. Who cares if its pennies, they got their pennies.

[–] Penguincoder@beehaw.org 9 points 2 months ago
[–] Penguincoder@beehaw.org 8 points 2 months ago

Never ending everything. Just go go go this week already. It's been a long couple of weeks since last Friday... Always thinking it'll take me "no time at all" to do something, and three days later.. Wtf, why am I still working on the same thing?!

Need more time this week.

[–] Penguincoder@beehaw.org 12 points 2 months ago

Good analysis, I agree and understand.

 

Great sound.

 

Too good NOT to share.

My brothers and sisters in Christ I want you to know that I care about your souls enough to share these truths with you:

  • You don’t need JavaScript to make a web page.
  • You don’t need JavaScript to write styles.
  • You don’t need JavaScript to make an animation.
  • You don’t need JavaScript just to show content.
 

Great sound and mixing. Powerful rendition.

1
submitted 3 months ago* (last edited 3 months ago) by Penguincoder@beehaw.org to c/music@beehaw.org
 

Mood.

 

The reporting methodology employed should yield valuable insights, spanning both technical details and high-level strategic considerations.

 

Dude(ettes),

This community has dropped off fast in the now trending list on the sidebar. That is awesome. When I first started supporting Beehaw, it was a matter of minutes before the site crashed due to processing and load. Gone are the days of 3,4 or 10 posts in Beehaw Support about content issues, server instability and server errors. Here are the days of no support requested. We have improved the uptime and responsiveness of Beehaw for all users, in a short time. Extenstive work and efforts have been placed into not only keeping Beehaw running; but improving Beehaw.

Those efforts and support have paid off I think. I say this as a primary systems admin of Beeehaw:


Thank you


To all monetary supports and lurkers, your contributions are immensely appreciated. We hope you continue to find value in our presence on the internet and in the Fediverse.

 

For example, things you do often but not often enough to make a muscle memory? On Linux systems with Bash, I just use bash aliases. If I do it more than once, It gets an alias or a script; cause I won't remember next time. Example of my current desktop aliases :

alias fuck='sudo $(history -p \!\!)'
alias hstat='curl -o /dev/null --silent --head --write-out '\''%{http_code}\n'\'''
alias ls='ls -la --color=auto'
alias pwgen='< /dev/urandom tr -dc "_A-Z-a-z-0-9\#\+=\$" | head -c${1:-15};echo;'
alias rsync='rsync -ah --info=progress2'

And in my bashrc I have the following settings and functions which come in handy when heads down in the terminal:

# append to the history file, don't overwrite it
shopt -s histappend

# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
HISTSIZE=1000
HISTFILESIZE=2000
HISTTIMEFORMAT="%Y-%m-%d %T "

####
function stopwatch() {
    local BEGIN=$(date +%s)
    echo Starting Stopwatch...

    while true; do
        local NOW=$(date +%s)
        local DIFF=$(($NOW - $BEGIN))
        local MINS=$(($DIFF / 60))
        local SECS=$(($DIFF % 60))
        local HOURS=$(($DIFF / 3600))
        local DAYS=$(($DIFF / 86400))

        printf "\r%3d Days, %02d:%02d:%02d" $DAYS $HOURS $MINS $SECS
        sleep 0.5
    done
}

function md() {
  pandoc "$1" | lynx -stdin;
}

function weather() {
  ( IFS=+; curl wttr.in/$(curl -s http://ipwho.is/ | jq .postal););
}

So what do you do to remember or recall your most used commands?

 

Deploy Golang applications to a Raspberry PI

view more: next ›