[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y ] [Search | Free Show | Home]

/sqt/ - stupid questions thread

This is a blue board which means that it's for everybody (Safe For Work content only). If you see any adult content, please report it.

Thread replies: 330
Thread images: 39

File: jumping.jpg (82KB, 640x524px) Image search: [Google]
jumping.jpg
82KB, 640x524px
Post your simple/small/stupid questions
Take at least 10 seconds to google first

Old Thread: >>61541116
>>
File: 1490541342964.png (7KB, 112x112px) Image search: [Google]
1490541342964.png
7KB, 112x112px
How should I name my wifi? It's really hard for me to think of a name... :,(
Also is 1Gbps internet a meme? Just got mine, I can reduce it to 300Mbps if I want to pay less, but honestly 20€/month isn't much...
>>
>>61551153
name it: "I like my women like I like my coffee"
>>
>>61551122
She cute as fuck.
>>
>>61551122
I'd jump off my high horse for her
>>
Do you ever obsessively pluck your facial hair?
>>
>>61551122
>how high is too high
i'd really love to know because i've jumped off 2-3 storeys as a kid
>>
Can regular desktops and laptops have hot swappable hard drives?
>>
>>61551179
Yes, sometimes. Other hairs too

>>61551194
Depends on the motherboard. Nice ones can configure SATA ports as hot-swappable eSATA.
>>
>>61551122
Girl's name is Kaitlyn Homan. She should be 19 now.

Captcha: touchwood
>>
>>61551174
This might be fun.
I'll do that.
>>
>>61551215
be sure you have some answers when people ask
>>
>>61551174
and how do you like your coffee
>>
>>61551221
>weak with lots of milk
>>
Are ultrawide monitors a meme?
>>
>>61551226
Flat, with a sweet aftertaste
>>
>>61551189
You are a ghost.
>>
>>61551122
Those Hot Topic sleeves turn my eyelids on.
>>
Trying to write a dumb little bash script to grab a bunch of dotfiles and put them in one folder.

So far I've got:
# update [source] [copy] [destination]
function update
{
if [ ! -e $1 ]; then
echo -e "${LRED}$1${NC} doesn't exist!"
else
if ! cmp $1 $2 >/dev/null 2>&1; then
echo -e "Copying $BLUE$1${NC}..."
cp $1 $3
else
echo -e "${GREEN}$1 is up-to-date.${NC}"
fi
fi
}


I'd like to write another function which will recursively apply this to all the files in the folder passed to it, but I don't know enough about bash and google is failing me.
>>
File: sad.png (705KB, 1417x851px) Image search: [Google]
sad.png
705KB, 1417x851px
>>61551122
not cute anymore
>>
>>61551325
>man glob
for f in **;do update "$f"; done

Also defining functions as
update() { ... }
is posix compatible and I don't think using "function" gains you anything.
>>
>>61551325
I have no idea what you're trying to do, but why not a find-exec?
find . -iname ".butts" -exec cp -a {} there/{} \;
>>
>>61551425
Because that can't execute bash functions, only bash scripts!
>>
>>61551122
Okay i tried MBR Regenerator and Windows Loader but i still keep getting an genuine Windows 7 Ultimate, i have checked the readme an tried anything. It still says Status: Notification and the system says the Microsoft needs to be activated, i have tried 2 different keys and it does not work.
>>
What's a good ISP to subscribe to?
>>
>>61551518
BSNL
>>
File: iPhone_box_MKMetz_ebay_15098.jpg (99KB, 1042x529px) Image search: [Google]
iPhone_box_MKMetz_ebay_15098.jpg
99KB, 1042x529px
>>61551122
nyone have experience selling pc/ps4/xbox/gpu/cpu boxes on ebay? I see lots of people selling theres and I'm wondering if its worth it/if people actually buy?
>>
>>61551637
>Item Location: Jerusalem, Israel

Stupid people will buy anything
>>
What are the better alternatives to DuckDuckGo?
>>
>>61551681
startpage
>>
>>61551122
What should one look when buying an (external) hard drive? I need one that will last for years and that is between 2TB and 4TB big without spending tons of money.
I have seen HGST praised a lot on /g/, is it a meme? I think I had a good experience with WD black until now.
Does one need a hardware thing for RAID 1? Can one implement RAID 1 on GNU/Linux with external hard drives?
>>
I want to write a script that automatically accepts my dota 2 matches when one is found so i can go get food then send me a text when it does. The text part isnt hard and i know how to get python to actually accept the match but i don't know how to get the script to recognize when a match has been found. Any ideas?
>>
>>61551681
I've heard searx is good, but honestly I haven't heard any legitimate reasons to not use duckduckgo, and I would very much miss the bangs. I _always_ search youtube and wikipedia via !yt and !w respectively. Heck, it even has obscure shit, like !naruto searches the naruto wikia. I often just try bangs and they tend to work. There are ones for the archwiki and aur as well. I have a feeling there's some sort of smart bang system at plays that takes top sites from results and pushes you to them if you use an unknown bang.
>>
>>61551745
have it watch for a change in the pixels, or setup a camera zoomed in on the exact spot and do it with motion detection
>>
>>61551745
I should mention that switching languages isnt an issue if that changes anything.
>>
>>61551778
I couldnt find any libraries that would just read pixels. The closest thing i found was one that could read pixels in a bitmap, meaning i would have to prtscrn every time the script polls for the match ready, which sounds suboptimal imo.
>>
How to launch wine programs from terminal? I have a .exe in ~/Directory/folder\ name/file.exe etc, and I right click the .exe and open with wine windows program loader.
Can this be done from terminal?
>>
>>61551868
Yes. If you take a moment to think about it, I'm sure you can figure out the command to launch wine.
>>
>>61551868
wine <program>
>>
>>61551884
>>61551886
Cool. Now how can this be streamlined into a file I can double click?
>>
>>61551894
Bash script. Or, you know, you can just change the default program to open .exes with into wine.
>>
>>61551917
I just need the one. Bash script is something I can google. Thanks Anon.
>>
File: daffy_duck.jpg (62KB, 719x719px) Image search: [Google]
daffy_duck.jpg
62KB, 719x719px
On Windows 7 and wanting to customize my start bar a bit, make it like a flat white or something

Are those deviantart visual styles safe? Looks like you have to patch some .dll files
>>
If in a job inteview i get the question "what's your level in excel" what am i supposed to say? What kind of levels are there?
>>
is it feasibly possible to people to remote access a windows OS without being granted access?

I saw a video where game streamers were 'hacked' and someone would suddenly be controlling their actions and typing messages in notepad

is there a realistic scenario where that type of thing can happen or would it just have been fake?
>>
File: 1499904053054.jpg (100KB, 540x540px) Image search: [Google]
1499904053054.jpg
100KB, 540x540px
>>61551122
what antivirus software are you guys using, if any? just got a fresh build going and i dont want to fuck it up
>>
>>61551974
yes but it compromise some performance in low end machines
and some programs look weird.
>>
Letrs fuck side ways
>>
>>61552014
MSE + CS2017
and VM testing for ultra dodgy shit
>>
>>61552007
just keep in check your firewall rules
and also disable remote access and macros

is realistic if you are stupid.
>>
>>61552039
what is cs2017? i know mse is microsoft essentials and vm testing is virtual machine right?
>>
>>61552064
yeah to both of those

Common Sense 2017 edition
>>
>>61551637
>Item Location: Jerusalem, Israel

>>61551662
kikes will sell anything.
>>
>>61552071
ah i gotcha. thanks
>>
>>61552014
windows 10 has an integrated antivirus
no need for a second one.
is placebo at best and a waste of resources at worst.

just don't install cracks and all that shit.
Use open source software
>>
>>61552100
i booted my computer with windows 7.
>>
>>61551849
>which sounds suboptimal imo
Well if it works.
>>
>>61551894
http://lmgtfy.com/?q=wine+binfmt
>>
>>61551993
Say max level.

>>61552007
Remote acces tools delivered via malware are a thing.
>>
File: 1492119327104.png (277KB, 598x477px) Image search: [Google]
1492119327104.png
277KB, 598x477px
>>61551364
Why do all girls turn into generic roasties?
So many girls look the same now. I'm not sute if it's just me.
Like the matrix is saving memory and there are copies everywhere.
>>
File: 1464160278851.jpg (10KB, 242x200px) Image search: [Google]
1464160278851.jpg
10KB, 242x200px
Isn't no password the most secure option since you can't ssh into an unpassworded user?
>>
Best note sorting program for windows that doesn't require a log in? (evernote, simplenote). Don't want to use notepad++ for notes as I use it for web dev.rather keep things seperate and not clutter the workspace
>>
>>61552287
You only can't do that if PermitEmptyPasswords is set to no in sshd_config
Also, you are stupid. What if some exploit that get's into some process that had changed user for security but then it goes and calls `su yourusername`? What if you mom wants to see what you do on the computer all day and manages to log in by just pressing enter while you are in the shitter?
>>
How serious is this graphics card mining situation? I was looking to upgrade this year from a 5yr old GTX680 rig to a 1080ti 4k setup. Wait it out for a few months or it's it all fucked forever?
>>
Is hdmi just ass for dual monitors or am i missing some special setting? Whenever i have pretty much anything on the hdmi monitor performance goes to shit, but when connected with dvi it's fine.
>>
>>61552734
1080ti's aren't as inflated because they're not as cost effective to begin with
>>
>>61552734
You do realize there's practically no real difference between 1440p and 4k? Unless you've got a screen the size of rhode island you're basically just killing hundreds of dollars for epeen
>>
>>61552853
Sounds like you're fucking something up
>>
>>61552125
Bitdefender
>>
>>61552039
MSE has been shit for 5+ years.
>>
Can I go and buy Windows 7 now without getting instantly upgraded to Windows 10?
>>
>>61552902
Yes. That hasn't been a thing for several months now
>>
>>61552908
Thanks.
The only partition that'll be wiped is the one I'm installing it in, right? So if I had two partitions, my other partition won't be wiped as well?
>>
>>61552902
download windows 10 ltsb from microsoft.
3 months trial. they will nag you afterwards.
reinstall.
>>
>>61552927
Correct. If you want you can make the partition in advance with some other bootable medium, and just direct windows to install there. That way it wont create the unnecessary 100mb partition for boot files.
>>
>>61552883
whats good nowadays?
I havent been keeping up with anything for about 5+ years
>>
>>61552941
>Can I fuck someone at the club without getting aids?
>The best place to get aids is uptown, but they charge extra
>>
File: haha classic.png (20KB, 390x470px) Image search: [Google]
haha classic.png
20KB, 390x470px
>>61552994
>>
>>61551226
Turkish and bitter to be quite honest.
>>
>>61552941
But I don't want anything Windows 10 on my computer
>>61552952
Thanks a lot, man. Cheers
>>
>>61551153
The eternal "hack me if you can"
We'll find you another name when your Wi-Fi self rename into "challenge accepted"
>>
>>61551179
Just my monobrow,otherwise just general grooming standards.
>>
>>61552966
Malwarebytes or ADWcleaner for one-off scans (same company). Bitdefender has high detection rates, hella low system resources, and doesn't bug you with popups and shit. Just werks without a lot of options.
>>
>>61551712
hgst/hitachi and toshiba are your best bets, but external drives are not made for 24/7 usage. maybe get an internal hgst/hitachi ultrastar and put it in a case/bay? that way the hdd should last way longer.

or save up some money and get an external ssd for the most important stuff instead, they are more durable.
>>
>>61552358

>mom tires to sign into pc through ssh
>>
>>61551364
>butterface as fuck
Why do they grow up so fuck up
>>
>>61551179
no, pubes sometimes though
>>
Got some coil whine on my motherboard VRMs I think. It's not that loud and it never changes volume. Is it worrying? I think it's still under warranty.
>>
The girls in /cgl/ are bullying me. What should I do?
>>
>>61553287
most of them have dicks,treat them as such.
>>
>>61553287
use a bag of ice to turtle your penis and post an image of it and keep saying >it's not that small it's not that small
keep baiting them until one calls you a sissy boy and act extremely flustered so they all do it
>>
>>61553044
I think the point of that post is that considering ssh as the only attack vector that could use a password based login is very stupid. Like seriously braindead. like what if mom comes down to the basement while you are out. Hence the mention of the shitter.
Learn to read.
>>
>>61553310
what
>mom tries to sign into pc with ssh exploit
>mom tries to use ssh
>learn to read
>>
How to manage programs in android? IF I try to shut them, system manager shuts all. Also is it possible to manually leave program run in background? As it shuts down once I hit 0 on screen, to get to main screen.
>>
can we make arguments that are based around semantics illegal when the people actually agree on the same points otherwise?
>>
>>61551122

How do I reinstall wpa_supplicant on arch linux if I can't connect to the internet in the first place?
>>
>>61553599
It's often impossible to draw the line between semantics and an actual point
>>
>>61551122
Is there an extension from chrome to disable the network connections temporarily? like a toggle button for a certain tab? I tried looking for it but cannot find anything.
>>
>>61553640
Nevermind, seconds after posting this i found out the network tab in the dev tools has an "offline" checkbox, works as I want it to work.
>>
File: 1410107065747.png (1MB, 1280x720px) Image search: [Google]
1410107065747.png
1MB, 1280x720px
>I open the catalog
>I ctrl+F something
>chrome claims it found it, but it's somewhere deep in the content of the OP so it doesn't show it and I still don't know which thread it is
how to fix this
>>
>>61553677
install gentoo
>>
>>61553632
download the tar with another machine then install manually
>>
Is it viable to spray paint a computer case?

I have the BLACKED version of Fractal Design R4 and don't want to buy the white version. Can I just buy a primer and white spray can?
>>
>>61553719
Thanks, doing that now.

Follow up, how do I get a wifi configuration that just werks?
>>
>>61553739
I just use networkmanager for wifi. Idk if there are better solutions because you need a systray (and X of course) but its easily usable
>>
>>61553020
But no one can, because I live in tech illiterate country.
>>
File: 1497728360653.jpg (41KB, 748x675px) Image search: [Google]
1497728360653.jpg
41KB, 748x675px
Is KMSpico on MDL anymore? It seems to be gone.
If so, any other safe location to download it?
>>
How to make fonts look better in windose10? I tried mactype and GDIPP shitwares and they both don't work. Cleartype sucks.

wat do?

>inb4 install gentoo
>>
File: Untitled.png (48KB, 799x535px) Image search: [Google]
Untitled.png
48KB, 799x535px
Every time my PC boots up, this process starts. It makes my GPU work hard, fans spin like crazy and such. What's up with that?
>>
>>61553910
install MacOS
>>
I had a dual screen setup before, I needed to remove one screen today and now there's a problem, when I open some programs, the window goes offscreen completely and I cannot see it, I remember there is a way to reset a window's position from the taskbar but I forgot how to do it.
Anyone knows?
>>
>>61553987
press super+ arrow left / right several times to get the window back into view
>>
How high is too high?
>>
>>61554014
Getting high in the first place.
>>
>>61553719
>>61553739

> downloaded wpa_supplicant(blah blah).pkg.tar.gz from https://www.archlinux.org/packages/core/x86_64/wpa_supplicant/
> transfered to arch machine
> sudo pacman -U wpa_supplicant(blah blah).pkg.tar.gz
> error failed recieving file...

Pacman was trying to download openssl and wpa_supplicant (i guess openssl is a dependency) from the internet even though I used the local pkg. help.
>>
>>61553864
MStoolkit is better
http://pastebin.com/smjvLZN4
>>
Where can I find torrents and pdf downloads to programming books.

I want to get Programming: Principles and Practice Using C++ (2nd Edition) but I can't find it anywhere, searching on my torrent program doesn't come up with anything just 0/0.

pls help
>>
If one of the fans in my r9 380 has stopped working and it reportedly runs at 80 degrees (right side is quite hot) is it in danger of being damaged if I leave it on overnight for a few months mining at 80 degrees with only the left fan working?
>>
>>61554099
library genesis
>>
>>61551122
>body of an 18 year old
>face of a 12 year old
What are they putting in the water
>>
>>61554124
ty ty
>>
Is there any decent window manager for windows 7/8.1?

Something I can use to at the very least snap windows to corners without having to rely on the taskbar context menu that is
>>
File: 1459544757281.gif (457KB, 500x281px) Image search: [Google]
1459544757281.gif
457KB, 500x281px
>>61554008
Works perfectly, arigato.
>>
>>61554335
try altdrag (https://stefansundin.github.io/altdrag/)
it's not a WM, just adds alt-drag/resize and window snapping functionality to windows
absolutely critical in windows if you've used linux before
>>
Can I wipe a hard drive on a machine with no OS? I just need a link to how. Google searched only pulled info on how to wipe hard drive with machine that has at least one OS.

If you want to hear about how I got into this mess, I can elaborate. Highly recommended for those who want to feel better about themselves...
>>
>>61554160
>that
>body of an 18 year old
Would be a very petite 18 year old, that's a 13-14 year old at most.
>>
File: 50024734.png (120KB, 773x505px) Image search: [Google]
50024734.png
120KB, 773x505px
I am retarded for buying a wireless keyboard as an backup keyboard since I don't want to swap around my bulky mechanical keyboard to different pcs
>>
>>61554399
DBAN
>>
>>61554399
create a bootable thumb drive with any distro
>shred /dev/sdX
To fill it with random shit and basically make it not recoverable or
>mkfs.ext4 /dev/sdX
or any other file system to just erase it
>>
>>61554437
not at all,you can use it with the tv or something when you need it.
>>
>>61554377
It works for what I want to do, you're a savior. Thanks.
>>
>>61554446
I currently can't install any OSes, because the drive is filled with a corrupt OS. When I try, I am met with all sorts of partitioning errors.

I figured it would be easier to just wipe the drive.
>>
>>61554441
Looking into this.

Thanks
>>
>>61554509
You just boot the thumbdrive. Don't have to install the distro onto the drive
>>
How much should I spend on 120mm computer fans?
I've got an old bitfenix shinobi case
>>
>>61554509
Any OS installer will allow you wipe the existing contents, although it sounds like you might have a dying drive.
>>
>>61554552
I have like 5 of those things,got a good deal on them from CoolerMaster.
got some of those 200mm too just in case its gets hot.
Get the cheapest ones from aliexpress they are all the same shit.
>>
Anyone know what wine fonts I need to get this to display properly?

HṚṢṬA


I already have installed with winetricks: gdiplus corefonts cjkfonts

This worked for the weeb fonts and this is the only one I have left to fix, it's displaying [] boxes at the moment.
>>
>>61554663
Is that Cyrillic?
>>
>>61554677
Googling each individual letter says it's used for the translation of Afro-Asiatic languages, lol

It displays fine under windows, and under linux, but not under a windows program running with wine
>>
>>61554686
no idea then,SOMEONE PLS HELP THIS MAN
>>
How do you push shit onto GitHub that hasn't been cloned from it in the first place?
Do I add the directory, then commit then push?
>>
>>61554716
No microsoft developers allowed here.
>>
File: a.png (3KB, 130x59px) Image search: [Google]
a.png
3KB, 130x59px
>>61554663
before i check anything, is this what they're meant to look like?
>>
File: 1fe.png (59KB, 658x662px) Image search: [Google]
1fe.png
59KB, 658x662px
I have an MSI GTX 1080 Armor OC. Without using afterburner the idle temp is about 50°C (max of 57°C). However with afterburner set with a custom fan curve I get 38°C. My question is for this card, and likewise other very powerful cards, do you absolutely need a custom fan graph for acceptable temps? Or is letting it idle at 50°C not THAT bad?

Also, if I ever want to move to Linux, is there anything available that lets you set a custom fan graph like MSI Afterburner?
>>
>>61555037
The only temps that matter are temps under load, which default fan profiles are probably optimised for. They keep the fans as low as possible (sometimes even off) when idle because high idle temps don't matter. 50c is absolutely fine for a GPU in any case.
>>
>>61554160
>body of an 18 year old
You've been on 4chan too long.
>>
my laptop battery suddenly stopped working, even tho my ac adapter seems to be good (diode is lit), but it won't power up with only charger plugged in
is there anything i can do by myself or do i have to give my laptop to someone? had enough time to hide porn folders so its ok
>>
>>61555037
You'll do more long-term damage to your GPU overworking the fans than letting it idle at a slightly warm temperature.
>>
how do i open ports? it seems my ISP blocking every port. i can't seed on KG! (im "not connectable"). HEWP!
>>
>>61552014
None. I use Sandboxie.
https://www.sandboxie.com/
>>
>>61554933
yes
>>
File: Untitled.png (36KB, 660x525px) Image search: [Google]
Untitled.png
36KB, 660x525px
Is there anyway for these two GPUs to work together or should I just remove the 5670?
>>
>>61555246
The only cool thing you can do with them is run Linux and a Windows VM with a GPU passthrough (for muh games).
>>
>>61553041
Why not WD?
>>
File: Q4-2016-Drive-Failure-Rates.jpg (629KB, 742x652px) Image search: [Google]
Q4-2016-Drive-Failure-Rates.jpg
629KB, 742x652px
>>61555348
>>61553041
>>
>>61555285
That's a thing?
>>
>>61555365
>backblaze data
>meaningful
Pick one
>>
at the moment i sit/lie on my mattress with my laptop to my side and I face my tv that i connect my laptop to thats mounted to the wall

at the moment i press a button on the tv remote to switch between tv programs and the laptop output

is there a way to control the tv from the laptop? (i use a vga connection right now, is it posible with that or just hdmi or something else or nothing?)

thanks
>>
>tfw you want to go on video chat with your gf, so she turns on her PC, but it has Windows 10 and takes 50 minutes to download and apply updates
Sometimes being a superior Linux user is suffering.
>>
File: file.png (73KB, 908x658px) Image search: [Google]
file.png
73KB, 908x658px
my disk usage starts randomly spiking which is causing my computer to stutter. it does this seemingly randomly and sometimes when doing simple things like watching youtube
is it time to get a new hard drive? this ones 4-5 years old. SMART info coming up next
>>
File: SMART.png (27KB, 432x457px) Image search: [Google]
SMART.png
27KB, 432x457px
>>61555534
>>
>>61551226
In a plastic cup.
>>
>>61555395
backblaze data are absolutely meaningful and give great insight in to quality of specific disk models
>>
>>61555534
Have you looked at the process list to see what's using the disk?
>>
if my phone was shipped with andriod nougat, can I update to andriod O or is the phoned 'married' to the version it came with?
>>
Repost:

So with Fi, you can use hangouts to manage your texts on your desktop. Is there an app for Android that allows you to manage your texts if you aren't on Fi? Looking into getting an unlimited data plan with Verizon.
>>
>>61555598
depends on manufacturer support
>>
>>61555591
yeah, but it usually shows that only around 40% of my disk is in use while the performance tab shows huge spikes like this
this image was from last night before i ran the smart test and it's not currently doing it, but i can try and recreate the conditions
>>
>>61555598
depends on the phone
if the company releases the update or not
with better brands its usually one android level jump

then later on you might need to go for some lineageOS, custom firmware if they make on for your phone
>>
>>61555627
>>61555615
well, I have a moto g5 from lenovo, I have the feeling it's not gonna happen.
>>
>>61555642
last gen got the update to android 7
so this gen likely gets update to android 8

and lineageOS has support for old moto g
so you will have no problem keeping up
https://download.lineageos.org/
>>
>>61554663
>HṚṢṬA
fileformat.info
paste char
see fonts that support this
>>
what can cause ssh lag? it's very slow to appear after I type
I bought a dedicated server in Germany (so it's close to here) , shouldn't be a problem?
and I pinged it, 24ms time
>>
>>61552255
>the matrix saving memory
lold
>>
File: file.png (53KB, 913x677px) Image search: [Google]
file.png
53KB, 913x677px
>>61555534
>>61555552
>>61555591
>>61555617
when i opened nvidia experience back up this happened even after it finished downloading, i usually have it open to use shadowplay. disk usage rapidly dropped when i force closed the application, could this be causing it?
>>
>>61555910
Probably, nvidia shit always chews up my disk too.
>>
>>61551849
autohotkey maybe? has good screen scraping stuff for silly macros
>>
File: pleasestop.png (79KB, 1826x663px) Image search: [Google]
pleasestop.png
79KB, 1826x663px
>>61555910
seems to still be doing it, the task manager screenshot was from the period in time where the red circle is
>>
File: 20170725_210212.jpg (2MB, 1920x1080px) Image search: [Google]
20170725_210212.jpg
2MB, 1920x1080px
So, this weird line appeared on my screen a few days ago. At first, it was like a couple inches long, but now it's grown to about half of the screen length. Any idea wtf it is?
>>
Do I need to shut down my pc every time I want to connect another screen to the GPU on the DP or HDMI ports? will the GPU blow up if I don't?
>>
>>61556527
no, you can connect it on the fly
>>
File: windowed.jpg (236KB, 2808x1080px) Image search: [Google]
windowed.jpg
236KB, 2808x1080px
Retarded question but whenever I play any game Borderless Fullscreen and take a screenshot there is always a gigantic white background which makes me think the game is actually at a lower resolution that what it says.

My desktop is the same as games at 1920x1080
>>
casual /g/ here.
wth is the deal with botnet on 4chan posts?
I know what a botnet is just what is all this conspiracy talk about.
>>
>>61556740
>2808x1080
>>
>>61556797

Just noticed that when I uploaded it. Something seems wrong here, Where to start?
>>
if I have a single linked list and there's random nodes that I want to move to another list, how do I do it in one scan? I can't seem to figure it out
like if I have two nodes that are right next to each other, or one node apart, that I want to move, I have to call the function twice to move them. also I'm using c++
>>
>>61556754
it's used to refer to anything that is or might be non-free/privacy-invasive in some way
it's so poorly used that's it's basically meaningless at this point
>>
>>61556882
let me guess, you're pasting it into paint?
>>
KDE has that session restore thing. How does it work? How do I make my program work with it? How would I go about making my session restore thing that works with KDE session restore thing? I wanted to look it up, but only simple questions come up (90% of them being a variation of "how do I save a KDE session").
>>
I need to download Microsoft Office to update my resume - I havent pirated shit in years.

It looks like KAT has been compromised. What is the most reliable place nowadays?
>>
>>61551122
If I use 2 six core CPU's will I double my preformace?
>>
>>61556968
rutracker
>>
Is there any to root my shitty phone if KingoRoot doesn't work?
>>
>>61556900

Yeah
>>
>>61556968
https://www.reddit.com/r/Piracy/comments/39qnll/guide_for_microsoft_windows_office_and_adobe/
>>
>>61557007
over what? for what task?
>>
whats the easiest option for hosting my own webpage just to host my resume?
>>
>>61557019
Depends on your shitty phone. Look up its page on XDA
>>
>>61557037
Over one CPU. I'm using old opterons.
just drawing things in pinta and browse the web.
>>
>>61557020
paint doesn't shrink the canvas to fit pasted image data, only expand
so either make a new document, with a small canvas, or resize the canvas so it's smaller than what you're pasting in before pasting it in (if you can see the whole canvas, then it's small enough for a screenshot, for obvious reasons)
>>
>>61557058
do you currently max out all cores? does your system load value go past 6?
more of the same cores only helps in certain cases, for example, run a single, single-threaded application will only use one core, so having 6 or 12 core won't matter in the slightest. but something like x264 video encoding will happily scale to all 12 cores, yielding a near linear increase in speed with more cores
>>
>>61557045
>easiest
pay a hosting/website company
like https://www.squarespace.com/
>>
>>61557045
if you have a static IP you could host it from home
or just pay for a small vps and host it on that
>>
>>61557100
>>61557058
if you're not sure, try this;
bring up something to view cpu load per cpu, like htop or task manager
then do something that causes your machine to slow down a bit, not a benchmarking or stress testing tool, but just simulate heavy usage of things you actually do use
and look at the cpu usage, if you see something like;
cpu0: 100%
cpu1: 98%
cpu2: 2%
cpu3: 33%
then you won't benefit from more cores/cpus
but if you see closer to;
cpu0: 100%
cpu1: 98%
cpu2: 89%
cpu3: 100%
then you might benefit from it
>>
Does 7zip use temp folder on system drive during compression process?
>>
>>61551122
s it possible to upgrade the kernel version of the distro I have on my USB stick before installation?
>>
>>61557296
if it's a proper install, easily
if it's a livecd, with root as a squashfs image, that'd be trickier, but not impossible
>>
How do page files affect performance? Does disabling them increase system speed?
>>
>>61555433
anyone know?
>>
>>61557391
look into hdmi-cec
>>
>>61554539
Ok. Thank you. I will try this.
>>
I've got a phone with a tiny internal storage, which was complemented by a not as tiny second internal storage.
Said second storage died recently for some reason however. It simply disappeared one day. It wasn't SD storage by the way, they were separate but both classified as internal, and as such it's not something I can swap out.
As it died, I tried using an SD to replace it, but it appears the system is still latching on to the dead storage as the only "external" storage it has. I can't install big apps on it, I can't move apps to it because it's trying to move them to the nonexistent dead storage instead of the SD. Trying to access the gallery or camera boots me out with a "No external storage available." error despite the SD being in.
It's running 4.2.2 so it doesn't have the format external storage as internal feature.

Can I do anything about this?
>>
>>61554554
I can post photos/more details when I get home, if you'd like. The issue isn't with the drive (as far as I can tell) as I still have all of the options to install and overwrite a new OS.

The problem is that when I try this I am met with something "no root drive selected." When I correct this and try to continue, I receive an error like "no swap area available." When I correct that, I receive an error like "can not create partition."

I may be way off on what happened here, but I am thinking that wiping the drive will get me to a place where I can start over
>>
I think I really fucked up.

I changed boot from UEFI to Legacy in BIOS. But when I try to restart and go back to BIOS, I get this really annoying beep and have to manually shut it down.

Is there any way to fix this and go back to UEFI?
>>
The water resistant mesh that some cases/phones use to cover the speakers, what do you call it?
>>
>>61557589
that should not happen, uefi and uefi with CSM enabled (acting like bios) is only relevant for disks and how to find partition

well not really graphic cards can be UEFI compatible or not, but you are going other way around from legacy to uefi..

disconnect disks from mobo and try boot
anyway, theres always way to reset defaults
either removing cmos battery from mobo, or reading manual which pins you suppose to short to reset uefi to default
>>
whats the reason for my pc case being so hot you could barely keep a hand on it? assuming my fans are clean and working

temperatures are going up to 90'C measured by programs
>>
File: tabl;e 22.png (41KB, 1068x828px) Image search: [Google]
tabl;e 22.png
41KB, 1068x828px
Any good student schedule creator software or even website .Excel wastes too much time and lacks some versatility.My table isn't as precise as i want
>>
whats that software that everyone here uses to show their rig specs and temperatures ?
>>
>>61557671
leave sidepanel open
if temps are better then your airflow is shit
dead fans, dust everywhere, case tucked in to some corner inside a desk,..
>>
>>61557719
speccy
but its not good for temps as it guesses if the temp sensor really bolongs to mobo or hdd or cpu
hwmonitor is better for temps alone
>>
I have a hacked ps vita and I'd like to be able to connect it to my computer with fedora through usb but I seem to need non-fuse exfat kernel driver support enabled for the computer to be able to recognize the device.
Browsing the web I found this is supposed to work https://www.reddit.com/r/vitahacks/comments/5nkgcu/theflow_finally_release_vitashell_update_with_usb/dccekoh/?st=iyd129nz&sh=76ebe7af

Doing this:
sudo apt-get install build-essential git linux-headers
git clone https://github.com/evan-a-a/exfat-nofuse
cd exfat-nofuse
make -j2
sudo make install
sudo modprobe exfat

But the package manager of fedora doesn't have the same names as the guy say and trying to continue without installing them I get errors.
So my question is, what would be the dnf equivalent of build-essentials and linux-headers?
>>
>>61557671
re-paste
>>
>>61557697
https://play.google.com/store/apps/details?id=com.gabrielittner.timetable&hl=en
>>
>>61557020
After you paste something into paint, press CTRL + SHIFT + X to crop the canvas to the image dimensions.
>>
I'm making a web app with python and flask, I want it on my server so I can access it, is it fine to use sqlite3 for the login? It'll be outside of the website directory obviously...or should I use mysql?
>>
>>61557490
Sounds like you might be having a hard time getting the install settings set up right. Just choose the default "wipe everything" type install. If that doesn't work for you I would consider the drive might be dying. That would be my second guess based on what you've said.
>>
some of the archives have removed their ads but I still want to block the google stuff in ublock origin
how do I do that?
>>
>>61557697
http://freecollegeschedulemaker.com
>>
My uncle gave me an MSI GTX 780 3GB, 2 8GB sticks of Corsair XMS3 999 DDR3 RAM, and a Core 2 Quad. What's the cheapest mobo, cooler, and PSU I could go with to get these up and running? Case isn't a concern.
>>
>>61558409
Model on the quad core?
>>
>>61557663
Holy shit I can go to BIOS just by tapping F2 once.

I changed back to UEFI, disabled secure boot, and I'm reinstalling Ubuntu now.
>>
>>61558479
Q6600slacr
>>
File: file.png (6KB, 382x58px) Image search: [Google]
file.png
6KB, 382x58px
where do people download games for jailbroken PS3s?
I wanna emulate Demon's Souls with RPCS3, but I can only find 1 torrent on TPB which for some reason doesn't work.
>>
>>61558517
Ditch the gpu
get this

>https://www.aliexpress.com/item/Free-Shipping-for-Intel-Xeon-E5450-CPU-3-0GHz-LGA771-L2-Cache-12MB-Quad-Core-FSB/2033498539.html

Get any LGA 775 board and mod it to LGA 771
Add SSD
enjoy mad fast rig
>>
File: 1470584117618.png (7KB, 120x120px) Image search: [Google]
1470584117618.png
7KB, 120x120px
>>61558542
Ditch the CPU*

sry im little lit
>>
>>61557192
When editing an image all CPU cores go up to nearly 90%. Going to get moar cores.
>>
>>61558542
Thanks
>>
>>61553677
resize chrome really tiny so you only see one thread at a time then ctrl + f
>>
>>61555521
"video chat"
>>
File: smelled-a-fart-that-wasnt-mine.png (247KB, 490x351px) Image search: [Google]
smelled-a-fart-that-wasnt-mine.png
247KB, 490x351px
Dear Christ. My new job requires me to use Facebook to occasionally post store status updates. Please for the love of fuck tell me that there is a greasemonkey script that makes this site halfway bearable to navigate, and doesn't let the tab use a million resources while its open in the background.
>>
>>61559021
KING ROOT

Install the app and root the fucking thing.
Its shady as fuck but it works
>>
File: 41vYUEIeJoL.jpg (26KB, 500x292px) Image search: [Google]
41vYUEIeJoL.jpg
26KB, 500x292px
Are there any keyboards other than the quickfire tk that have this layout?
>>
File: 1474645415988.jpg (45KB, 640x480px) Image search: [Google]
1474645415988.jpg
45KB, 640x480px
Guys I really need your help, my phone has around 400mb of space is it possible to root it? If so which site should I go? I have first gen android 5 Moto G, Appreciated
>>
>>61559069
go here my negro

>>61548893
>>
>>61559054
I tried it stops at 57%
>>
>>61559075
https://forum.xda-developers.com/moto-g
>>
How is windows 10 LTSB for gayming? will a gtx 1080 work on the 2016 version?
>>
>>61551122
Can I still use Kodi on the newest amazon fire stick without having to jump through hoops?

I haven't messed with Kodi, but I see that there were recent talks of addons no longer working. I'm asking more for my layman family members.

If anyone has an updated (non-shit) guide on hand it would be appreciated as well
>>
>>61559089
Where do I click for rooting?
>>
File: 2000px-Deluge-Logo.svg.png (574KB, 2000x2000px) Image search: [Google]
2000px-Deluge-Logo.svg.png
574KB, 2000x2000px
I've been trying to download some torrents and it hasn't been working. I've tried adding them both as magnet links and as torrent files but nothing happens once I hit Add.

For reference I use Deluge and have been trying to get some anime from HorribleSubs
>>
>>61559172
Look in Q&A for a sticky that matches your model, and it should point you in the right direction
>>
I have 16TB of storage, 4x4TB in a hard drive bay. I'd like to make this as secure as I can, its all media I'd just prefer not to have to redownload if something goes south.

Is RAID the best solution, or is something like Crashplan better? I generally am against using any """"cloud"""" services but seems like the best option without buying 4 more drives and just doing 1-1 backups.
>>
File: halp.jpg (29KB, 319x209px) Image search: [Google]
halp.jpg
29KB, 319x209px
With certain games the multiplayer just don't fucking work, this has been happening since I got my latest router, Huawei B315 and I'm trying to figure out what the fuck is going on. It only works when I tether from my phone, then those games will work, never when straight from the router. I tried wifi, ethernet cable same result. Tried messing with every single configuration on the router settings, nothing works. Any advice? I reset my windows network settings, same shit.. Is replacing the router the only option? Should I ask my ISP for a static IP? The problem are with games like Arma 3 and Blackwake. I can't join any servers in Arma 3, I get to a server list but servers wont work. I feel like there might be something wrong with my settings but I don't know.
>>
>>61559362
Raid is almost always the worst solution. I mean there's also just not giving a fuck, but at least that's free. Set up some networked backup solution in your home. It's not completely disaster proof, but it's better than fucking raid.
>>
What makes a programming language "better" than another similar programming language? I have seen a lot of people shit on python, and java, while praising C. I am a C noob myself, and I like the language a lot, but I would like to understand what makes a programming language "inferior" to another one. The more in depth the answer, the better. Thanks in advance.
>>
>>61559415
disable everything but TCP/IPV4
>>
>>61555569
Wow, reported
>>
>>61559453
>Raid is almost always the worst solution.
NICE MEME XDDDDDDDD
>>
Ok, it used to be the case that I could alt +left click on a filename on 4chan, and it would save that image. This is no longer the case. What do?

On the botnet/Chrome.
>>
>>61551516
What version of the loader?

Also it could be your source iso is compromised.
>>
Recommend me a secure mail that respects my freedoms.
>>
>>61559710
werks for me if I click on the thumbnail
>>
>>61559641
Dude, raid is not about backup. Raid is about uptime and/or speed. It's not designed to be your only means of backup. It does technically reduce your risk of hardware caused data loss, but does jack shit for the plethora of ways data can be destroyed software side. It's paying double or more for your disks only to have some bit flip wrong and leave you with multiple fucked copies of your data.
>>
How's working on distributed systems for a career, anyone here on that path?

From what I've seen it looks pretty interesting and there should be jobs in it in the future
>>
>>61559710
Still works here on Chrome.
>>
>>61559772
Anon didnt post anything about backup,he said security,meaning REDUNDANCY.
Im well aware of what raid is.

Raid is always the best solution, coupled with a second raid that houses backup.
>>
Can someone help me make a windows script that restarts the computer after a program shuts down?

Right now I'm using a VPN client that doesn't have an automatic reconnection function. The kill switch takes qbittorrent down when connection is lost to the VPN, and I manually have to put it back up. I'm hoping to achieve one of the below:

1) Automatically restart the nordvpn client after connection is lost

2) Automatically restart the computer after connection is lost (preferred, as autostart runs all the necessary applications up in the right order)

3) A script that detects when the VPN connection times out and restarts the system. I tried googling but google doesn't even come close to picking up my problem.
>>
Redpill me on ethernet-to-wifi adapters. (The cable is plugged into my router, goes a long way out, and then I want wifi at the end.)
Should I spend for an expensive one or just get a random $10 from amazon? What should I look out for?
>>
Hey guys, I need some help.

I'm using Windows 10 Enterprise v1703. I had a second hard drive installed that was used for storage, but is now marked as a system partition. I did not have this drive plugged in during OS installation (this makes the second time reinstalling in two weeks). Previously, I was getting an error during boot, and i'm sure that this second "system " drive is the cause. I just want to format it and be done. I have eveything on it backed up anyway.

However, diskpart refuses to clean it. is there a way I can force diskpart to do the job, or should I just boot an Ubuntu disk and do it in gparted?
>>
File: DFNI6zWVYAACU4v.jpg (184KB, 1080x1080px) Image search: [Google]
DFNI6zWVYAACU4v.jpg
184KB, 1080x1080px
>>61559280
Ok, quick update. I can add torrents through magnets like always but They're not coming with the accompanying files? Basically the torrent is added to my client but it has no files to download.

I'm so confused. help me pls /g/
>>
>>61559837
It's ultimately gonna come down to build quality. Cheap chinese shit will more than likely not broadcast as far as they advertise, or support as much bandwidth.

Your best bet is to look for a powerline adapter that also emits wifi and the destination.
>>
Why the fricking HECK can't I get access to my router settings no matter what I do?
I've tried going to every single IP that ipconfig gives me. Every one of them just times out, doesn't even give me the option to login.
>>
>>61559832
A dead man's switch type thing over the network?

Or even simpler, ping something you know will be up like an amazon or google server (e.g. google dns: 8.8.8.8) and if you don't have connection, reboot. That would be like a 3-line batch file
>>
>>61559883
Which router?
>>
>>61559870
You have to become part of the mesh network before it starts or even converts from its metadata name to its proper name.Depends on how many DHT nodes you are connected to and how you route through the network
>>
>>61559883
might be a custom domain. check the manual for the specific router
>>
>>61559768
the image or the file name above it?
>>
Found an old samsung galaxy y, but it's not being recognized in odin.

Can someone just point me in the right direction, I don't really know much about old androids.
>>
>>61559879
>powerline
So just use one to input the ethernet and have it output the wifi, and ignore the signal it's sending over the power line? That sounds rather roundabout. What makes it my best bet?
>>
>>61559909
the image
>>
What is the relationship between C and C++? How can they both use the same compiler?
>>
How big of a meme is lenovo's yoga line?
>>
>>61559597
Nope sadly same problems.
>>
>>61559885

Can you help me write it? I can only do bash scripts and not very well.
>>
>>61559892
Netopia 3347 ADSL2/2+
is what is says on the back.
>>
>>61559943

Like the name says C++ is just C with more bloat.
>>
>>61559932
You're not using 4chanX or something are you?
>>
File: 1497566872715.png (96KB, 226x219px) Image search: [Google]
1497566872715.png
96KB, 226x219px
>>61559902
uhh okay? I don't frequent /g/ and only understand torrenting in the most basic terms. Thanks for helping though

I tested out some more torrents and was able to download a doujin form nhentai but not a ps2 game from a /t/ thread. And the anime from HorribleSubs isn't even being added to my client unlike the former two.
>>
>>61559561
>What makes a programming language "better" than another similar programming language?
In no particular order:
Preference(this is obviously subjective)
Platform support(for instance, java is "better" than C# because the latter is not nearly as universally supported)
Syntax(PHP for instance is nearly universally reviled among everyone who knows languages other than PHP because the syntax is very inconsistent, among other reasons)
Speed and memory footprint(well-written C for instance is generally faster than just about anything else, while Java is notorious for using lots of memory)

As for C, Java and Python, they're not really similar languages. C is close to the metal language - well-written C is very fast and uses little memory, but writing C well is hard precisely because of that - it doesn't do things for you, so you need to manage memory yourself, for instance. Java on the other hand is very OOP language - everything is inside a class and everything interacts with everything else via interfaces. Corporations tend to like this and it does make large projects somewhat more manageable - every programmer can do their own thing without having to worry too much about what the finished project in its entirety will look like - this also reduces the damage incompetent programmers can do as long as they follow the rules, so to speak. Python is very "easy" language - it has simple syntax and it's fast to write. If you make Hello World in java, it'll be around 5 lines of code or even more - you have to create main class, include System.out.* to print anything, etc. In Python that would be just print("Hello world"). The simplicity means that programs written in Python are comparatively slow, but Python is still good if you only need to write a simple program or are making a prototype. It's also good for learning the basics of programming assuming you're content to treat the CPU as a black box.
>>
>>61559985
I am, but it still works in incognito mode without any extensions
>>
>>61559992
>not being added
Have you checked the left category panel?
>>
This is a brand new build. When I press the power button, nothing happens. No fans, nothing. I've double and triple checked all my connections, and nothing's working. When I turn my PSU on, the green LED on my GPU turns on, but that's it. What do I do?
>>
>>61559809
>Raid is always the best solution
That is patently wrong. If someone only has the budget for a limited number of drives, they will get far more protection from independent backups. You can set that shit to backup incrementally as often as you need. The primary purpose of a raid 1 type setup is uptime. If you need to keep your shit running straight through a drive dying and rebuilding the array with a new one, it's the way to go. But it sounds like annon will get considerably more real redundancy from setting up a networked backup to one or two independent locations on his network.
>>
I'm looking for either a laptop with very high HDD capacity, or one that's highly expandable.
The ones with over 4 TB storage start at around $3k, but I'm looking for something more in the $1k range with at least 4TB. I don't mind if it's the base prize of an expandable machine and I have to buy extra hard drives.I'd just need it to be able to play 1080p videos at 30FPS tops, the storage is more important. I don't actually need the rest of the $3k hardware.
Do you guys know of laptops that can be upgraded with a lot of HDDs and they're all inside the case and not external? I travel a lot but I also need storage and external hard drives are too inconvenient.
Weight, size, noise, performance several power cables required are not a problem, I want storage above everything. I just don't even know how to search for this. I gave up after the 14th search phrase and no results.
>>
>>61560058

See if the header is connected correctly. Seems like your power button isn't installed in the correct pins.

You can also open your motherboard's manual, see the pin layout and short the starting cable pins. By doing so the computer starts up, it's easy to test if your shit works that way.
>>
>>61560055
Yeah, nothing is added to downloading
>>
>>61560001
Thank you for your answer, anon. Screenshotting it for future reference.
>>
>>61560087
Already tried both, neither worked. I'm starting to think the MOBO is DOA.
>>
File: be patient.png (207KB, 403x433px) Image search: [Google]
be patient.png
207KB, 403x433px
>>61559741
Anyone? All the encrypted ones I can find require javascipt.
>>
>>61559837
You basically mean an access point. The most solid way of doing this is to get a second router and set it up at the other end of the line.

>>61559924
Powerline is often more reliable than wifi, but it depends on your house's wiring. Running good ol ethernet is by far your best option. Powerline is more for people who aren't able to do that.
>>
>>61560090
Try using qbitorrent
>>
>>61560120
Check the cmos battery,make sure it dosent have a piece of plastic preventing it from connecting
>>
>>61560132
None.
funny enough,gmail has an html mode.
Use gpg for all your mail
>>
>>61560165
Sadly no, any other ideas?
>>
>>61560082
Just use a NAS.
>>
>>61560190
24,8, and 4 pin ATX power connectors connected to the psu?
>>
>>61560212
24 and 8 yes, should there be a 4 also?
>>
>>61559965
I would if I wasn't literally the same as you

It's probably going to be something along the lines of
ping -t 8.8.8.8; reboot
>>
>>61560037
I guess I'll just trump this up to botnet magic
>>
>>61560132
>encrypted email
That shit is meaningless. Email isn't a standard you can just throw encryption on, except in the form of you personally PGP'ing everything you send, and that get's fucked the first time someone sends you something plaintext.
>>
>>61560218
Depends on your mobo and your power requirements.

Did you check the power button its self and make sure the pins are connected properly?
>>
New thread when you're ready

>>61560232
>>61560232
>>61560232
>>
>>61560241
So if I want a safe email that works with Tor what do I do?
>>
>>61560145
>second router
Can you tl;dr me on how that would work, I'm a networking brainlet
Will that basically make a sub-network on my main network? Would it be annoying to set up properly or will it just werk(tm)?

>powerline vs. ethernet
I already have an ethernet cable there. Was thinking of getting a switch and an access point but if you say router is better then it will obviously replace both of those.

Will having a second router like that impact latency in any non-negligible way?
>>
>>61560243
I don't think my MOBO takes a third cable (GA-AB350-Gaming 3) and I've redone the power button connecters a few times as well as using a screwdriver. The MOBO manual doesn't say where the power button on the board itself it, either.
>>
>>61560201
I travel a lot in areas where I don't even have service for the most part and even where I do, it's slow and expensive. I want offline storage. If being near a decent internet was an option, I wouldn't even bother and just use external HDDs.
>>
File: DCc2fkHVYAEqupa.jpg (24KB, 336x440px) Image search: [Google]
DCc2fkHVYAEqupa.jpg
24KB, 336x440px
>>61560147
qbitorrent worked but I'd rather Deluge work better or get an update soon. Either way problem solved, thanks anon!
>>
>>61560294
Then get any laptop and get a 2.5" 4TB hardrive (they go for about 150$).
Or better yet, get one with an optical drive, remove the drive, slap in the 4TB HDD, have an SSD as the primary for fast booting.
>>
>>61560345
I figured that much, but what's the search term for laptops that have as many slots as possible then? I want to go for as much as possible.
And how do I tell the ones that are costumisable from the ones that are all welded together and can't be expanded?
>>
>>61560281
If you don't care about extending your wireless network at all then a switch would be the simplest solution. Otherwise ethernet plus router is solid. The second router basically gets put in AP mode, which makes it just an extension of the main network, and eliminates latency/nat problems. You use the same wireless settings on both routers, but put the first one on channel 1 and the second one on channel 11. Disable Dhcp/firewall on the second one, and give it an IP ending in 2. Then have the first router's DHCP range start at 3.
>>
>>61560432
Just go with Thinkpad W/T series or HP ElitteBook series.
>>
>>61560461
Thanks, I'll give them a look.
>>
>>61560277
Google emails that are down with tor. What do you even mean by "safe"?
>>
>>61560448
Alright sounds good, thanks for the advice mate
>>
Hey guys I have a question.

Is it worth switching from windows to linux only for the sole reason of locking away myself from vidya?
>>
>>61560659
There are ways to get some vidyas working on Linux as well. Not a guarantee.
Getting a nagging bitchy wife is better.
>>
>>61560659
Doesn't work anymore. Steam has a pretty decent steam library these days.
>>
>>61560659
My GOG library works perfectly on linux.
Thread posts: 330
Thread images: 39


[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y] [Search | Top | Home]

I'm aware that Imgur.com will stop allowing adult images since 15th of May. I'm taking actions to backup as much data as possible.
Read more on this topic here - https://archived.moe/talk/thread/1694/


If you need a post removed click on it's [Report] button and follow the instruction.
DMCA Content Takedown via dmca.com
All images are hosted on imgur.com.
If you like this website please support us by donating with Bitcoins at 16mKtbZiwW52BLkibtCr8jUg2KVUMTxVQ5
All trademarks and copyrights on this page are owned by their respective parties.
Images uploaded are the responsibility of the Poster. Comments are owned by the Poster.
This is a 4chan archive - all of the content originated from that site.
This means that RandomArchive shows their content, archived.
If you need information for a Poster - contact them.