Spyke

Replies

Comment on

So Far, AI Is a Money Pit That Isn't Paying Off

What I don't like about the article is that the phrasing 'paying off' can apply to making investors money OR having worthwhile use cases. AI has created plenty of use cases from language learning to code correction to companionship to brainstorming, etc.

It seems ironic that a consumer-facing website is framing things from a skeptical "But is it making rich people richer?" perspective

privacy

Comment on

Ecosia.org updates its Privacy Policy

Reply in thread

I am not blaming them as much as I am reevaluating the level of privacy I'm sacrificing given the additional context in their updated statement

  1. 'Their' privacy policy now roughly equates to "We don't really do anything but you should read the privacy policy of Microsoft (and optionally Google)." It feels less like an alternative search engine and more like a middle-man that still passes the data along. Speaking of which:
  2. Someone can correct me if I'm wrong, but they are touting 'non-personalized results and ads' as if that's the privacy end goal, when it's really just the side-effect of companies not having data on you. Based on their updated policy, they are giving the illusion of privacy via 'non-personalized results' while capturing/sharing searches, behaviors & IP address that I'm guessing can easily be deanonymized @ Microsoft.

Maybe I'm misreading something? It reads like the same experience of using Bing without the marginal benefit of a personalized experience.

I think it's a catch-22 because I'd imagine a sizeable cohort of their pro-environment demographic is likely pro-privacy/anti-'corporations knowing everything about you', and so while the increase in usefulness in data can increase their charitable donations, it will rub lots of users the wrong way.

Comment on

The fediverse isn't going to work if top pages consist of the same link 10x reposted.

Upvoted for the convo, but disagree on the sentiment.

If I followed 10 different subreddits on technology, I'd imagine I'd be getting a lot of the same content. I know that reddit as a whole was a shitshow when things went pear-shaped for Twitter and the early days of Elon Musk for example.

I think that eventually, we will reach a level of content creation where people either don't feel the need to cross post, or that you don't need to subscribe to 10 closely-related magazines.

linux

Comment on

SHARE WITH THE CLASS: What aliases are you using?

(Bash-Specific)

App-Specific

alias battery='upower -i $(upower -e | grep 'BAT') | grep -E "state|to\ full|percentage"' # Get the battery level of my laptop server when I ssh into it

alias audio="yt-dlp -f 'ba' -x --audio-format mp3" # Download the audio version of a youtube video

alias wttr="curl wttr.in/Chicago" # Get the weather of my city in the terminal

Terminal Navigation

alias ba2sy="cp ~/.bash_aliases ~/Sync/" # copy my current iteration of my aliases to my shared syncthing folder so that it's accessible across devices

alias sy2ba="cp ~/Sync/.bash_aliases ~/" # replace the current iteration of my aliases w/ the synced version from my syncthing folder

alias mba='micro .bash_aliases' # open my aliases file in the modernized version of 'nano'

alias reload="source ~/.bashrc" # Quickly refresh my system so that the latest alias file is loaded

alias l='exa --group-directories-first -hlras modified --no-user --icons' # exa is a prettier version of ls. Options toggled: Human-readable, long format, reverse output, show hidden files/folders, sort by modified, hide the 'user' column since I'm the only one that uses the computer, and show the icons to make it look fancy```

Replaced Commands

alias cat='batcat --theme=ansi ' # Replace generic output of cat w/ a formatted version. This is bat (batcat in Debian)

alias rm='trash ' # Instead of auto-deleting files, put them in the 'trash' bin for 30 days, then delete.

Server & Docker-related

alias lazy='/home/macallik/.local/bin/lazydocker' # Run Docker

alias pad='ssh MyPad20334' # shorthand to ssh into my server

Comment on

Microsoft to kill off VBScript in Windows to block malware delivery

Reply in thread

At my old job, we had a VBA script that would:

  1. Pull client data from SQL
  2. Load data into an Excel file
  3. Update charts and KPIs
  4. Copy/Paste chart and KPIs into PowerPoint
  5. Switch to the next client
  6. Repeat steps 1-5 for +100 clients

Thirty page custom reports per client within 2 minutes (when nothing broke). It allows you to interact and automate across the Microsoft Suite. That is one of the reasons why it is indispensable to many companies

linux

Comment on

A video by The Linux Cast on the debian website and how it needs to be more user friendly.

As someone who recently created pivoted to Debian (for 12.0) from Windows , the website is quite the headache. I consider myself tech-literate, and have been around the internet long enough where RTFM was a rite of passage, but they really are asking a lot given how many different directions the manual went. I put about 20 minutes into it along with 10-15 minutes reading up on things that were not well explained and then just YOLO'd it.

Also if 98% of people are installing via a flash drive and 2% are doing CD Rom installs, then cater towards the 98% in your instructions. Not only is the CD ROM examples more prominent, but they also end up leading to downloading the same .iso IIRC. Not saying to do away w/ the catering to obsolete technology, but maybe shift the conversation towards terminology and wording that end users can instantly identify with.

It really is an example of someone updating an existing process repeatedly instead of taking a step back and seeing how things have changed over time. I suppose that's the active theme for the entire website. The website is frustrating in that aspect. Speaking from experience, I'd venture that the majority of the traffic that is received from newbies following a YT tutorial where someone spells out where to go and what to click. Looking at the referenced video, it appears that have started to slowly make changes but there's still work to be done.

Reading this thread though, I can see how the web dev team came to their conclusion. A solid portion of this thread are people lauding a crap website like alumni who are extolling the virtues of hazing... "it was hard for me, it should be hard for everyone" or "There should be a bit of effort required to keep out the riff raff" etc.