

Every question has been answered, pack it up boys.


Every question has been answered, pack it up boys.


Do it. I know which OS will run fine on 8G of RAM and which one won’t.


Literally malware tactics from the year 2000.


Well said.


The updater for the open-source editor Notepad++ has installed malware on WINDOWS PCs. The Linux ecosystem doesn’t allow for this kind of network attack because of signing.


That is such a tenuous connection to make. America’s retarded war on terror was started by America, and some countries that are also in NATO chose to join. All that had nothing to do with NATO, those other countries were not obliged to join, and as you mentioned other NATO members did not.


What offensive war has NATO started?


Please don’t do this to me. I 100% this game and it makes my trigger finger stiff. I have no choice but to check out this new character!
Edit: How the fuck do you unlock the new character?! Also I couldn’t figure out how to get this new version, it’s just the normal official version. Switch off of betas in Steam if you’re on them.
Edit Edit: You unlock the new character by visiting the crib by using the screwdriver on the special car.


He broke his Linux system by failing to read the warning on the screen and then blamed Linux.
Last time I tried on Debian stable it didn’t, but maybe I’m on an old ass version without the support.
Yep, staying on xorg for autokey, antimicrox, pyautogui, and TeamViewer.
That’s true for any OS install I do for myself though :)
Newer software is nice, it’s not too much trouble.


Removed by mod


Post boot time too.


Imagine being so much of a turbovirgin that you have to ddos arch virgins.
(I use Arch btw)


There used to be a thing in KDE where you could execute actions and macros based on window titles, but it’s since been removed. I’ve had to recreate this behavior with a shell script, here’s a modified version you can use if you use Xorg:
#!/bin/bash xprop -spy -root _NET_ACTIVE_WINDOW | grep --line-buffered -o '0[xX][a-zA-Z0-9]\{7\}' | while read -r id; do class="`xprop -id $id WM_CLASS 2> /dev/null | grep Viber`" if [ -n "$class" ]; then if xprop -id "$id" | grep -q 'WM_NAME(STRING) = "Viber Window Name"'; then echo "key alt+f4" | xdotool - # wait for the window to be closed xprop -spy -id $id > /dev/null 2>&1 fi fi doneThe first Viber is is looking for the Viber in the application name, replace “Viber Window Name” with the actual window title you want to be closed. If you don’t use Xorg, you’ll have to find a replacement for both xprop and xdotool.