Email or username:

Password:

Forgot your password?
223 posts total
Show previous comments
Vint Prox

@nixCraft Sounds like a challenge to stop him, huh, girls? :0340:

"Wait, don't leave me!"

uexo

@nixCraft A while loop, that is intended to terminate, must move the state in a direction such that the exit condition is eventually satisfied. Not sure this is happening here.

nixCraft 🐧

Alright, network wizards and packet-pushing sysadmins! Feeling brave this November? I dare you, double-dog dare you, to take the No NAT November challenge! Can you handle the raw, unadulterated terror of the public internet without your trusty NAT to hide behind? Will your Linux and Unix/Windows servers survive the exposure? Will your routers spontaneously combust? Only one way to find out! Ditch the NAT, embrace the chaos, and let's see if you make it to December in one piece! 😈

Show previous comments
Lenny

@nixCraft Mh, I mean Dual Stack already has the v6 part not behind a NAT, sooo... this is already the status quo. πŸ€·β€β™€οΈ

nixCraft 🐧

What's the first rule of Vim fan club?

You don't talk about... nano or vscode.

David Segonds

@nixCraft so, it is ok to talk about emacs then?

nixCraft 🐧

What's the first rule of Vim fan club?

You must know at least 5 different ways to exit Vim. But you'll still somehow manage to get stuck. πŸ˜‚

nixCraft 🐧

Google is preparing to let you run Linux apps on Android, just like Chrome OS - Google is developing the framework to let you run Debian in a virtual machine on your Android device

androidauthority.com/android-l

#linux #opensource #debian

nixCraft 🐧

Phone Upgrade 101

* Get a phone.
* Use it 'til it dies.
* Get a new one.

Ignore the hype by Apple/Google/Samsung and co.

Show previous comments
Jim P.

@nixCraft Unfortunately "until it stops getting security updates" is effectively the same as "until it dies" for many, though some ignore it longer than they should. LineageOS can help some there.

Hopefully my P8P makes it through all 7 years of its updates+support.

Diabolic Preacher
@nixCraft so they die sooner now. and rebirth with a custom rom is not that straightforward and some vendors don't allow unlocking bootloader. :( also companies like purism, system76, tuxedo probably don't know of existence of third world countries. general irl public don't even know what those brands are.
dotoscat

@nixcraft I bought my current phone for Mario Kart Tour, Im using It until It dies.

nixCraft 🐧

Every time a zoologically-named package updates on my #Linux or #FreeBSD box, I brace myself for the delightful chaos of the software jungle. Will it be a majestic new feature or a bug that bites?

Show previous comments
DELETED

@nixCraft I see at least three zoologically named packages, you definitely have a fun night ahead

char

@nixCraft
Is not a feature, neither a bug; just small non functional or not lethal mutation.

Cogito ergo mecagoendios

@nixCraft speaking of animal names, I can't seem to find package python3-numba on Noble Numbat and this combination of strings is being frustratingly difficult to Google for

nixCraft 🐧

Why? Mozilla exits the fediverse and will shutter its Mastodon server in December πŸ€”

Show previous comments
Xavier Jacques CΓ΄tΓ©

@nixCraft cutting down costs in prevision of the revenue loss from Google paying Mozilla to make Google it’s default browser, caused by the defeat from Google on court on a antitrust case, brought by the Departement of Justice of the United States of America.

Sadly, Mozilla didn’t cut on AI crap.

Glen Turner (VK5TU)

@nixCraft If I had to guess, they wanted a stake in the ground in case there were monetisation opportunities. There were none.

꓀ɔᴉʇɐʇS

@nixCraft I installed arch once just to see if I could and I could without much trouble.

well... on my SECOND go, on the first one I forgot to install the network drivers so I had no internet access at all and couldn't do anything anymore haha

Robert

@nixCraft

OMG. I did i with a tutorial πŸ˜‚

yay -S network-manager-applet
yay -S networkmanager
sudo systemctl enable NetworkManager
sudo systemctl disable system-resolved
sudo systemctl disable systemd-networkd
sudo systemctl start NetworkManager

and added "exec-once = nm-applet --indicator" to my hyprland .conf

nixCraft 🐧

Nothing unites Linux users like a heated debate (or as I call it 'holy war') about systemd or the merits of their favorite distro. It's a love-hate relationship that keeps the community passionate and the flame wars burning bright every day. πŸ˜‚ #linux #opensource

funbaker #AssangeIsNotGuilty

@nixCraft systemd is good, main developers attitude is shit.

#wontfix this post

nixCraft 🐧

Microsoft has confirmed that Windows 11 users will not be able to uninstall the controversial β€œRecall” feature, despite earlier reports suggesting otherwise. Recall, part of the Copilot+ suite announced in May, automatically captures screenshots of user activity on the operating system including sensitive information such as passwords or financial data digitalmarketreports.com/news/ Do yourself a favor and get rid of Windows from your lifeβ€”enough of these greedy companies. #privacy #security

Microsoft has confirmed that Windows 11 users will not be able to uninstall the controversial β€œRecall” feature, despite earlier reports suggesting otherwise. Recall, part of the Copilot+ suite announced in May, automatically captures screenshots of user activity on the operating system including sensitive information such as passwords or financial data digitalmarketreports.com/news/ Do yourself a favor and get rid of Windows...

Show previous comments
Zephod Beeblebrox

@nixCraft Windows just keeps getting ever worse because nobody screams - "Stop. This is bad". I dumped Windows back when XP was still around. There has been no version of Windows that hasn't been bad in some way or another. I went from XP to OSX to Linux. I've used Linux exclusively for most of the past 10 years.

:blobcatlaptop: gravitos :blobcatcomfsip:​

@nixCraft and that, my friends, is the event that starts the year of the Linux desktop.

nixCraft 🐧

01. #Linux users open your terminal (you must have ffmpeg package installed).

02. Type the following bash command

for i in {100..1000..100}; do ffplay -f lavfi -i "sine=frequency=${i}:duration=0.1" -autoexit -nodisp -loglevel quiet; done

03. Enjoy!

Show previous comments
MeaTLoTioN

@nixCraft I see your tune and raise you a hearing test;

#!/bin/bash
m=10; M=12000; s=100
p() { ffplay -nodisp -autoexit -loglevel quiet -f lavfi -i "sine=frequency=$1:duration=1" > /dev/null 2>&1; }
a() { read -p "Can you hear $1 Hz? (y/n): " r; [[ $r == [Yy]* ]]; }

while p $M && ! a $M; do ((M-=s)); [[ $M -le $m ]] && break; done
while p $m && ! a $m; do ((m+=$((s/10)))); [[ $m -ge $M ]] && break; done

echo "Your hearing range is approximately between $m Hz and $M Hz."

@nixCraft I see your tune and raise you a hearing test;

#!/bin/bash
m=10; M=12000; s=100
p() { ffplay -nodisp -autoexit -loglevel quiet -f lavfi -i "sine=frequency=$1:duration=1" > /dev/null 2>&1; }
a() { read -p "Can you hear $1 Hz? (y/n): " r; [[ $r == [Yy]* ]]; }

while p $M && ! a $M; do ((M-=s)); [[ $M -le $m ]] && break; done
while p $m && ! a $m; do ((m+=$((s/10)))); [[ $m -ge $M ]] && break; done

lemgandi

@nixCraft Dang it. A long time ago I gave a talk on the wonders of sox(1). I had a shell script that would use it to play happy birthday, but I can't find it now.

Show previous comments
markymarrow

@nixCraft 1980 for me was a lot closer to 1Mhz/1Kb where did they get all that ram from? Even Bill Gates didn’t need more than 640K

Tyrion πŸ§πŸ΄β€β˜ οΈ

@nixCraft

For me it greatly depends on how much I care about what I'm doing.

If I don't care too much, I prefer GUI.

If I care, I prefer CLI.

Martin Uecker

@nixCraft It is because the command line is stable and does not change all the time. GUIs also generally lack consistency and modularity. It could be different in theory. i don't know why GUIs arre so bad and need to be change all time.

nixCraft 🐧

Friend: what languages do you know?

Me: perl, Python, bash, c, asm, cobol and java

Friend:

Me:

Friend:

me: you meant like speaking???!

Show previous comments
Splinux :mastodon:

@nixCraft No, I think he meant natural languages. I can speak C anytime.

Aravind I M (AIM)

@nixCraft I've always felt that the number of programming languages doesn't count, it's the depth of knowledge in them that counts. The person who knows one language perfectly well is more powerful than the one who knows the surface level knowledge of them all. The jack of all trades should be atleast master of one. Took me several language hops to realise it.

enoch_exe_inc

@nixCraft I can also speak in formal languages; that is, predicate, first-order, and second-order logic-and by speak, I mean read like how an archaeologist would read Egyptian hieroglyphics or Old Chinese.

nixCraft 🐧

I hate programming
I hate programming
…
Wait, it works
I love programming
….

nixCraft 🐧

Senior developer from elite uni vs self taught developer (pink shirt)

Show previous comments
Sibshops

@nixCraft Other way around? The youngins have their fancy IDE's and I'm just plugging away with emacs in a text editor.

jhayes

@nixCraft I wonder if he has a dominant eye, sighting with both open is wild to me, a person with terrible eyesight

Charlie

I know if I’m shooting offhand , cross your free arm on your chest, more stable.

Go Up