I’m really really glad that I get root on my work computer.
- 0 Posts
- 231 Comments
“…I really don’t want to have to wipe the thing because it’s running a headless OS”
I feel like logging in as root on a headless system and hoping you type the command(s) to restore functionality is a rite of passage.
After reading a few of these I feel like I was either a very boring grad student, or my professors were all very chill. (Or maybe just subject to male privilege.)
A few run-ins with IT, but I don’t think I ever got nasty letters from professors…
High frequency is generally bad for transmission line losses, so getting power from A to B is better at lower frequency — DC is a great option here.
If we switched to DC, many things would still flicker though as they would presumably use switching power supplies, but those could be relatively high frequency like you said.
Interestingly, airplanes use 400Hz, as transmission over distance doesn’t matter, and transformers can be made much smaller/lighter.
Never tried it, but hot peppers can be added to birdseed to prevent this — birds aren’t sensitive to capsaicin, so it only affects the mammals.
Gnarly PDEs aren’t exactly the same beast as differentiating single variable polynomials.
Sounds like this was basically the plot of the first Nolan Batman.
Obviously you should use an exponential search, assuming you don’t know the age of the oldest human.
qjkxbmwvz@startrek.websiteto
Programmer Humor@programming.dev•Guys, what's the best Linux distro to install on my PC?
8·7 months agoTorvalds uses it too I believe, so you’re in good company (Debian for me, though my heart belongs to Slackware).
qjkxbmwvz@startrek.websiteto
Linux@lemmy.ml•Remote desktop, not sharing desktop, how ?! [solved]
2·7 months agoVNC? You have your choice of servers, and clients are ubiquitous.
A big gotcha is that you need to be careful with encryption/security, as in classic UNIX style VNC does one thing (remote desktops). It’s easy to forward over ssh though.
You can also use VNC to share, which is not what you want; this depends on the type of server/settings. But you can definitely create a new virtual X11 session and access it remotely.
Not a historian, but folks on The Internet have characterized the Soviet program as a series of milestones, with the US program a series of stepping stones in support of a single goal.
This makes sense with the cartoon, where the Soviets were first in basically everything except walking on the moon.
Not sure how much merit it has, but it’s kinda interesting.
deleted by creator
qjkxbmwvz@startrek.websiteto
Programmer Humor@programming.dev•You can pry pattern matching from my cold dead hands
81·8 months agoPer the Linux kernel coding style:
Tabs are 8 characters, and thus indentations are also 8 characters. There are heretic movements that try to make indentations 4 (or even 2!) characters deep, and that is akin to trying to define the value of PI to be 3.
qjkxbmwvz@startrek.websiteto
Linux@lemmy.ml•Linux is awesome at home, but aren't y'all forced to use Windows at work?
3·8 months agoMac at work. Yabai+sketchybar is no i3wm replacement, but it works ok.
My
.zshrcis basically the same as I use on my personal computers, and aside from a few coreutils differences it…kinda just works. I haveaptaliased tobrewso I can feel more at home.Stock terminal works fine—I use
xtermon Linux, so I’m used to relying ontmuxfor nice features anyway.Basically, I miss the window manager, but practically speaking that’s a about it. (I obviously have
xscreensaverinstalled!)
qjkxbmwvz@startrek.websiteto
Linux@lemmy.ml•What are some of your most useful or favorite terminal commands?
9·8 months agoncis useful. For example: if you have a disk image downloaded on computer A but want to write it to an SD card on computer B, you can run something likeuser@B: nc -l 1234 | pv > /dev/$sdcardAnd
user@A: nc B.local 1234 < /path/to/image.img(I may have syntax messed up–also don’t transfer sensitive information this way!)
Similarly, no need to store a compressed file if you’re going to uncompress it as soon as you download it—just pipe
wgetorcurltotarorxzor whatever.I once burnt a CD of a Linux ISO by
wgeting directly tocdrecord. It was actually kinda useful because it was on a laptop that was running out of HD space. Luckily the University Internet was fast and the CD was successfully burnt :)
qjkxbmwvz@startrek.websiteto
Linux@lemmy.ml•What folders do you make in addition to the default ones ?
5·8 months agoI’m a
~/tmpman myself.
qjkxbmwvz@startrek.websiteto
Privacy@lemmy.ml•Which private (no cloud requirement) wireless home security cameras save footage locally without monthly subscription?
9·8 months agoI would recommend PoE security cameras. You probably want support for RTSP / ONVIF.
I have some Amcrest cameras talking to Frigate. It is completely local—cameras on a separate VLAN that can’t talk to the Internet, footage is recorded on a server running Frigate. Works very well for me. No vendor lock-in is also nice!
qjkxbmwvz@startrek.websiteto
Linux@lemmy.ml•780k Windows Users Downloaded Linux Distro Zorin OS in the Last 5 Weeks
13·9 months ago640k780k ought to be enough for anybody…

You can/could also find Coffee HOWTO in your distro’s HOWTO package. (I found a reference back to v0.5 of the document in 1998.)
Has simple schematics to get you started for the hardware, using the parallel port to toggle relays.
It’s a very neat little document, and inspired me to write a simple kernel module so I could
echo 1 | sudo tee /sys/whatever/coffee0to turn pin 0 high on the parallel port. (This is silly, and it’s much easier to just do things in user space!)