axzxc1236

joined 1 year ago
[–] [email protected] 3 points 2 months ago

I think that means the access point can only run at up to 80Mhz bandwidth, so not full bandwidth.

[–] [email protected] 36 points 2 months ago* (last edited 2 months ago) (12 children)

I am born too late to understand what Y2K problem was, this (the result) might be what people thought could happen.

[–] [email protected] 3 points 2 months ago (1 children)

I9 14900k…bad news for you, 13th and 14th gen I9 is unstable, crashes.

Suggestion: Wait for 15th gen or AMD 9000 series CPU to come out.

[–] [email protected] 2 points 2 months ago

Downfall is the best.

[–] [email protected] 2 points 2 months ago (2 children)

Slay the Spire, with mods

[–] [email protected] 17 points 2 months ago
  1. Dead torrent
  2. Your Internet blocks torrent/DHT traffic.
[–] [email protected] 4 points 2 months ago

If I can suddenly in coma for a year, wake up and pay my bills, it's enough.

[–] [email protected] 6 points 2 months ago* (last edited 2 months ago) (1 children)

Humans are doomed, destroy themselves one way or another.

[–] [email protected] 6 points 2 months ago

I remember trying Retroshare..... no offline message is the biggest obstacle.

[–] [email protected] 16 points 2 months ago (1 children)

If the firewall just means no incoming connections, your computer can still reach out to the other side (if they open their port)

[–] [email protected] 1 points 3 months ago (1 children)

try ncdu?

sudo ncdu --one-file-system /

[–] [email protected] 11 points 3 months ago

I would 100% exploit this (insurance for family).

 

I can't give you the code because this is work related, and I couldn't make a minimal code that mimics the behavior.

My of my programs at work is a log parser, it reads syslog and use compiled regex pattern to match syslog, the whole program looks like this

If match := pattern.match(line):
  Do this
elif match := pattern2.match(line):
  Do that
…

During almost two years of me developing the programs, there are more patterns and more things to do and it gets slower.

But I recently figure out that if I commented out Do that and replace it with pass, my program speeds up, even if pattern2 never matches in my test case.

More strange thing is that in my attempts to use cProfile to profile things, my program runs 2.5x to 3x faster by just doing

from cProfile import Profile
with Profile() as profile:
  main()

I don't even call anything with profile variable and it speeds up my program, why is that?

 

Background story: I recently bought a computer with AMD 7000 series CPU and GPU.

amdgpu_top reports 15 ~ 20 watts in normal desktop usage, but as soon as I have video playing in VLC, it goes to 45 watts constantly which is undesirable behavior especially in summer. (I hope that is just reporting issue... but my computer is hot)

When I do DRI_PRIME=1 vlc and then play videos, amdgpu_top doesn't report the power surge. (I have iGPU enabled)

Is there anything more convenient then modifying individual .desktop files? KDE malfunctions when I put export DRI_PRIME=1 in .xprofile so that's a no go.


Solved: removing mesa related hardware acceleration package makes VLC fall back to libplacebo which doesn't do these weird things.

 

I currently have a server running in cloud that can send custom notification through self-hosted gotify server.

The down side is battery drain, it eats more than 15% of battery per day and it's unsustainable, I have to turn on battery optimization.

I know google offers GCM and FCM which instant messaging APPs uses, but I couldn't find a software that is as easily configurable and have a ready to use Android client (that preferably connects to GCM and FCM so no battery drain problem), any recommendation?

view more: next ›