[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: 41

File: 1497955939804.png (328KB, 567x748px) Image search: [Google]
1497955939804.png
328KB, 567x748px
Last thread (>>61088852) is about to die.

Do you have stupid questions? Ask them here.
>>
I have family photos saved in the mix format (Microsoft PhotoDraw) and would like to convert them to something I can view. Anyone know where I can find something for that?
>>
File: 1478727843718.jpg (8KB, 320x240px) Image search: [Google]
1478727843718.jpg
8KB, 320x240px
If I format a drive that was encrypted, can someone still recover and read the data from it?
>>
>>61101170
If they have the decryption key and you just quick format? Yes.
If not, then no.
>>
>>61101197
Cool. Thanks
>>
I can't connect to my friend in Melty Blood. We have our ports forwarded and junk but it stills does the UDP tunnel into a timed out error. I also can't play with this guy in other games like BlazBlue CF on PS4.
>>
What board has the desktop threads now? /wg/ sticky says they have a desktop thread but there isn't one and none in the archive
>>
What's better paid, database management or software development?

Which one has a better future?
>>
File: explorer_2017-06-27_01-53-45.png (52KB, 1125x634px) Image search: [Google]
explorer_2017-06-27_01-53-45.png
52KB, 1125x634px
>Plug harddrive in new pc
>webm previews are gone

If there's some kind of plugin I used, I can't remember, any ideas?
>>
>>61101381
DBM
More of a niche jobs and less unique situations occur. Still have to deal with retarded devs though.
>>
File: 1498486713639.png (24KB, 777x593px) Image search: [Google]
1498486713639.png
24KB, 777x593px
>>61101090
Bringing it from the last 2 threads, anyone knows how to disable these?
>>
>>61101394
icaros
>>
>>61101433

Yep, that was it, thanks anon.
>>
File: 1364186050366.gif (944KB, 264x320px) Image search: [Google]
1364186050366.gif
944KB, 264x320px
So I was out of the country for a month and missed everything that happened with nyaa.

Did /g/ ever make a new nyaa?
>>
Is there a decent free software replacement for Google Maps?
>>
Is it possible to program an arduino from the GPIO pins of a raspberry pi?

The usb connection doesn't work anymore on my arduino uno.
>>
>>61101564
OpenStreetMaps.

>>61101599
Yes. https://learn.adafruit.com/program-an-avr-or-arduino-using-raspberry-pi-gpio-pins/overview
>>
>>61101158
Why not get photodraw
>>
>>61101639

But you can't use OSM directly. You use an app that uses their data.
>>
>>61101694
They have a web viewer
https://www.openstreetmap.org/
>>
>>61101534
nyaa.pantsu.cat. I think there's still /nrg/ threads about it.

I saw a post where someone remarked on how normally when /g/ wants to make something it comes to nothing more than a logo. When they lost their weeb torrent site there was a working replacement online within days. really jogs the noggin
>>
What part(s) of a graphics card are used to make the RX series so good for ETH mining?
Like, what's physically on a RX480 that makes it so appealing to a miner?
>>
>>61101733
Usually wider memory bus compared to their comparable nvidia equivalents
>>
What should a beginner sysadmin be able to do? Also how does one find job in this field? There are literally no jobs in 3h+ area (Europe)
>>
I need a fast absolute value function for floating points in C without any additional libraries. Please tell me why this is stupid because I really can't tell.

inline float absF(float input){
if(!input>>31)
return input;
return (input >>1)<<1;}
{/code]
>>
I want to host 2 open source web applications. One of which uses Postgresql and the second one uses MongoDB.

Assuming they are gonna be heavily used, should I host them on two separate servers, or on one, more expensive? Is it a bad practice to use different kinds of DB on one server?


>>61101783
Do you have any certificates? Like Red Hat Certified System Administrator? They are expensive as fuck but may be well worth it.
>>
On Dribbble, when they post things like this: https://dribbble.com/search?q=daily+ui , are they coding it and screenshotting, or using PS+AI to make a mockup?

I want to do this challenge but I want to code it, yet I know i need to improve my terrible PS and AI skills.
>>
>>61101988
Also, what program is used to animate this?
https://dribbble.com/shots/2738907-PayPal-Email-Receipt
>>
>>61101925
Assuming type float gives you a single precision IEEE 754 type isn't necessarily going to work if you change platform/cpu arch.

Why would you shift to extract the top bit and then do the shift to get rid of it when you could just do input &= 0x7fffffff

Your bit twiddling is likely slower than just calling abs(), which for modern x86 would generate a single instruction FABS.
>>
What PC MMO games are great for making bots/trainers/scripts? Anything like grind-fest, free market economies, shitty UI, farming, mining... games that are addicting and compel me to code.
>>
>>61102016
Well, the idea is the function only gets IEE754 single precision numbers. This is a personal project for crunching a looooooooot of numbers. Otherwise this would be more janky than it looks.

Using input &= 0x7fffffff I like though, thanks!
>>
>>61102016
You actually are very likely to get those kind of floats these days. You can check for https://stackoverflow.com/questions/31181897/status-of-stdc-iec-559-with-modern-c-compilers too.
>>
What android emulator would you recommend me to play Fate Grand/Order on Windows?
>>
Is it safe to update the kernel in Debian 9 to the Version 4.11 if i use a ryzen CPU or is there any fucker that could happen?
>>
When will the Tempered Glass meme stop
>>
>>61101090
reported, have fun in the pokey you disgusting human
>>
Do Best Buy and Staples actually recycle your electronics, or do they throw it in the dumpster when no one's looking?
>>
>>61102365
Yeah, you should be able to use any kernel. Probably be easier if you use one already packaged from debian like from https://liquorix.net/ or something. Looks like 4.11 isn't in experimental yet.

Except old ones that systemd will choke on because they don't have namespaces etc.
>>
>>61102365
You have a few choices here.

>run testing
Testing is the rolling-release version of Debian. Except when a release is imminent, it's pretty current on most software. Do this if you're interested in running more up-to-date everything.

>grab a kernel from backports
I haven't checked if stretch-backports is up yet, but if it isn't, it will be pretty soon. Backports are more-recent versions of things that you can add to an otherwise stable install, and the current mainline kernel is one of the things that always gets backported. Do this if you're interested in running a current kernel, but don't much care about most other stuff.

>compile your own kernel
Debian, like every other distro, lets you roll your own kernel, with the version and options of your choosing.
>>
>>61102429
Except that 4.11 isn't in any suite yet.
>>
What could cause all of my internet browser to stop working on Windows 7. Other programs that connect to the internet crash too
>>
>>61102442
Then choose option 3, if you can't wait.

If you often find that you can't wait, Debian might not be your distro.
>>
I had no lubricant available so I greased my laptop fan with cooking oil

It's been two weeks and now it started to smell like kfc and the fan sounds like something is clogging it

What do
>>
manga app for iphone that isnt shit and has licensed manga?
>>
Any better audio file tagging program for Linux than EasyTag? It's buggy as fuck
>>
>>61102385
>t. dumpster diver
>>
>>61102429
I will look into that. Ryzen is supposed to work correctly in 4.11 AFAIK which is why I am asking.
>>
>>61102484
I wish, but my bacteria autism stops me from getting dirty like that. I do like recycling though, which is why I even bother taking my old tech to Best Buy and even recycle CFLs.
>>
>>61102467
Throw the fan out and buy a new one, you ruined it.

Vegetable oil used as bearing lubricant will eventually break down and gum up. Especially when it's warm, like in a laptop. That's the smell and noise you noticed. You need to use mineral oil for tasks like this. Go to a hardware store and ask for it, they'll sell you a little tiny bottle of clear mineral spirits for a few dollars.
>>
>>61102454
1) I'm not the guy who asked.
2) I have got multiple non-debian.org sources in /etc/apt/sources.list.d/. apt-add-repository explicitly supports ubuntu PPAs. Telling someone to ditch debian because something isn't yet in the default distro is a little short sighted.
>>
>>61102500
fuck man....
>>
>>61102486
Just look here, that has 4.11 packaged and as the current default if you follow the instructions on that site https://liquorix.net/
>>
>>61102480
puddletag? picard?
I just use a custom cli one desu.
>>
>>61102500
The more you know!
>>
File: 141311160318.jpg (40KB, 640x437px) Image search: [Google]
141311160318.jpg
40KB, 640x437px
>>61102519
https://wiki.debian.org/DontBreakDebian
>>
>>61102542
for one thing, that's more a thing to ask /b/
also, what point is there in posting such things there?
>>
>>61102542
reported. enjoy your ban /b/tard.
>>
>>61102519
>I have got multiple non-debian.org sources in /etc/apt/sources.list.d/. apt-add-repository explicitly supports ubuntu PPAs. Telling someone to ditch debian because something isn't yet in the default distro is a little short sighted.

dude backports lmao

If you are a cool dude, you can also make backports yourself and submit it to debian backports so everyone else can benefit.
>>
>>61102542
Go back to 2008.
>>
>>61102613
Oh sure, let me just go and backport wine-staging which already offers perfectly good releases packaged for debian.

lmao
>>
>>61102542
this is 18+ site
>>
>>61101988
>>61101996
Bamp
>>
File: 1491983099146.gif (3MB, 460x306px) Image search: [Google]
1491983099146.gif
3MB, 460x306px
Best way of handling versions?

MAJOR.MINOR.PATCH:BUILD_NUM

Should MAJOR, MINOR and PATCH be handled manually and then get a program to +1 the BUILD_NUM every time it's built? Or is there some smart way of tying MAJOR, MINOR and PATCH to git branch merges or something?
>>
File: specs.png (40KB, 1067x436px) Image search: [Google]
specs.png
40KB, 1067x436px
Would buying a soundcard resolve my audio issues?

Is there any other parts i have that bottleneck my system?
>>
File: soundcards.png (12KB, 470x260px) Image search: [Google]
soundcards.png
12KB, 470x260px
or perhaps it's the fact that there's 4 soundcards registered?
>>
File: dumbass.jpg (79KB, 541x473px) Image search: [Google]
dumbass.jpg
79KB, 541x473px
i asked about a patch cable i made maxing out at 50mbps in the last sqt


whelp...
>>
>>61102755
From what I can think of realistically, the main upgrades would be RAM, SSD, and maybe another monitor for multi-tasking/productivity purposes.
Other than that, you got a pretty good looking system if it serves your use.
>>
>>61102784
Do you have any clue about the sound issue? It chops up like crazy when i'm downloading something and trying to watch a movie at the same time.

The system almost freezes.
>>
>>61102797
I've got no clue about audio sorry. Am pretty shit with computers in general, mostly like talking about the hardware in them more than anything.
>>
is there a windows programm that lets me switch audio output from speakers to headphones and vice versa?
both speakers and the headphones are plugged into there respective audio jacks.
Right now i have to go into volume control and set what device i want to hear as the default device
>>
File: upgrade.png (43KB, 1178x329px) Image search: [Google]
upgrade.png
43KB, 1178x329px
>>61102805

Are these Hyperx chips a meme? I saw Kingtston had some value chips that were half the price for same gb and mhz.
>>
File: Ohboii.png (193KB, 1153x467px) Image search: [Google]
Ohboii.png
193KB, 1153x467px
>>61102814
Maybe just pick up two of these bad boys, that'll amount to roughly the same but with more mhz.
>>
>>61101090


is there a way I can activate ActiveDesktop on my windows8.1 machine again, without using third-party software?
>>
>>61101205
turn your firewalls off

>>61101987
If you're gonna use 2 different DB programs, then better use 2 different servers too.

>>61102027
Tibia and Runescape

>>61102344
BlueStacks

>>61102448
add-ons, cookies, settings, software version, drivers, could be anything really
>>
Well, this one may be really stupid - but is there any pmp (hi-fi, hi-res or even simple mp3) that can be managed via bluetooth from an android app?

I get that biggest pro of having a dedicated device for media playing is a hard mechanical controls, but when i using a bus or subway ride, i most of time already have my phone in hands for reading, and want some simple control over music from it - pause, resume and next song is all that i really need. Any extra (volume control, previous song) is welcomed.
>>
File: 1478445249730.jpg (939KB, 4592x2584px) Image search: [Google]
1478445249730.jpg
939KB, 4592x2584px
>>61101090
I bulk changed the /usr/bin permissions with find (sudo find /usr/bin -type f -exec chmod 755 '{}' \;) and now I can't use sudo: it must be owned by uid 0 and have the setuid bit set.

How do I fix this?
>>
What's are the main differences between LLVM Clang and GCC and in what situations is it smart to use one over another?
>>
>>61102974
Can you just log in as root directly? If not I'd boot a live distro, mount your drive, and change the permissions.
>>
>>61102973
If you have you phone in your hands and you want to control music playback on it why don't you just use it for music playback!

>>61102974
What >>61102985 said, get a root shell from grub via the Using GRUB option on this page https://wiki.archlinux.org/index.php/reset_root_password
>>
Hey fellas! I'm still on Windows 7 and my FX 6300 must be getting old or something because I can't get a stable OC at more than 4.1 Ghz. I ran it at 4.3 for the longest time until my system became unstable.

Now here's the question. I heard the FX CPUs are better on windows 10. Would it be worth it to switch to W10 or was that just bullshit marketing? Is the supposed performance boost worth it? Is there an ultimate guide out for debloating W10 and getting rid of all the shitty telemetry?
I
>>
>>61103015
>If you have you phone in your hands and you want to control music playback on it why don't you just use it for music playback!
'Coz when i walk on feet, i don't have a phone in hands! And moving across urbanized terrain requires a mix of both transportation methods.
>>
>>61102973
Why not use headphones with inline controls?
>>
>>61102448
You are fucked. I followed all kinds of poorly written instructions to restore connectivity on my W7 system but only got it kind-of working enough to install Windows 10. It is related to a bad update IIRC and the only way to truly undo the damage is reinstall Windows or switch to loonix.
>>
File: Yahoo.png (30KB, 368x130px) Image search: [Google]
Yahoo.png
30KB, 368x130px
How the fuck do i disable these Yahoo popups?
They've been appearing nonstop for the last like, 5 days, and i cant find out how to remove them
[spoiler] inb4 uninstall windows [/spoiler]
>>
>>61103290
Remove notification.
>>
>>61102797
It sounds like more than one application might be trying to gain exclusive access. Try updating your drivers first. Sometimes there's a bug in them (especially from Realtek).
>>
How long to run Memtest86 on my new build?
>>
>>61103299
Please clarify
Remove what exactly?
>>
How to give an external GPU precedence over the discrete GPU while it is plugged in? Games are wanting to use the 1050 instead. Is there some extra software to make this happen?

Using Dell XPS 15 (9560) with Akitio Node and GTX 1080. Windows 10. Latest GeForce drivers.
>>
I have 2 laptops, I want to run a LXC instance (Ubuntu or Debian) on one, and to be able to access it from the other laptop over a LAN, is this possible, and easy to do?
>>
>>61103322

Have you checked the nvidia control panel for those settings?

also check nvidia experience options.
>>
>>61103311
I usually do six hours. If errors haven't turned up by then they're unlikely to.

That's for testing the settings I intend to use for a long term overclock, if you're just trying to see roughly where the limits of your RAM, mobo, and CPU lie then just do ten minutes at a time and then change settings.
>>
>>61103344
I have. The only option I have is to select either the integrated GPU or "High performance Nvidia GPU"
>>
>>61103318
I assume you're using chrome?
It looks like you allowed notifications from *.yahoo.com.
Go to settings > content settings > notifications, and check the list under "Allow"
>>
>>61103096
I highly doubt that Windows 10 supports a specific CPU better than the others, I call bull.

If you really want to give it a try, theres a debloat guide for Windows 10 on plebbit, just google it
>>
>>61103096
>Hey fellas! I'm still on Windows 7 and my FX 6300 must be getting old or something because I can't get a stable OC at more than 4.1 Ghz. I ran it at 4.3 for the longest time until my system became unstable.
Do you leave it on a lot? It could be that you have failing fans. And when is the last time you cleaned the dust out?

>Now here's the question. I heard the FX CPUs are better on windows 10. Would it be worth it to switch to W10 or was that just bullshit marketing? Is the supposed performance boost worth it? Is there an ultimate guide out for debloating W10 and getting rid of all the shitty telemetry?
My impression from /g/ is that no matter what you do you will still be part of the botnet anyway, so don't screw around with their recommendations and just find a cheap way to buy it. I don't know about FX CPUs on W10 but it is likely to be better just because of advances in software (if your other hardware is capable of taking advantage of those features.)
>>
File: NCP.png (59KB, 960x711px) Image search: [Google]
NCP.png
59KB, 960x711px
>>61103344
I've tried reinstalling Nvidia drivers to no avail.
>>
>>61103358
>>61103447

this may not entirely help but worth a try anyway, check the physx-page in the nvidia-control tab.

maybe by checking your preferred GPU there, their drivers will actually use it for everything and not just physX

I tried googleing your problem and you are not the only one with that problem.
>>
>>61103339
Via the terminal? Just ssh in. If you have a network service you will need to make sure the container can access the hosts network or some ports are forwarded.
>>
>>61103447
then the last thing you could do, even though it's stupid, is to uninstall the driver for the 1050, therefore rendering it unavailable to the system.

maybe there is also an entry for that in the registry.
>>
>>61101090
Who put Akarin in that box? Because she is a treat and in no way an idiot.
>>
>>61103383
>Do you leave it on a lot? It could be that you have failing fans. And when is the last time you cleaned the dust out?

The 212 evo meme is still going strong and my temps are fine. Could be my VRMs overheating.
>>
>>61103463
The PhysX processor selection finally "stuck" this time and didn't just change back to GPU or the 1080. Maybe that will do the trick.

>>61103482
Yeah. Not gonna go that route.
>>
>>61103479
Yeah probably just gonna use ssh, if it's all on the same LAN it should all be accessible to each other right?
>>
>>61103524

you could also check your bios-settings
>>
I got a hp small form factor computer, what is the deal with the power supply?

Is there any way to make a normal psu work with this or replace it with something that is more than 250watts
>>
>>61103562
Just buy a small form factor replacement psu if you want to still use the case it came with
>>
File: u110.jpg (23KB, 500x500px) Image search: [Google]
u110.jpg
23KB, 500x500px
>>61103234
Compatibility issues, plus i love my headphones and don't want to switch 'em. Tried an adapter with mic before, something like this - and didn't like it at all: only half of functions worked, sound quality degraded drastically and i got more wiring on me.
>>
Let's say there's a vidya that I get 200 fps in. If i vsyncd or frame locked it to 60, it should technically strain the hardware less, therefore hardware should run cooler, right?

scorching heat and no AC problems.
>>
Am on Android 6.0, not rooted. Formatted my SD card so that the phone uses it as extra memory. When certain apps which I have on my SD card get updated, they are moved back to the internal storage.

Any solution to this?
>>
anyone know how to watch and/or download password protected videos on vimeo without a password?
>>
>>61103562
Welcome to the wonderful world of pre-built computers. The only reason they do that is to force you to buy replacement parts from them at a big markup.

Dell used to do a thing (idk if they still do) where the PSU looked like a standard ATX PSU, and had the same mounting holes, but the pinout of the ATX connector was different. Plug a standard PSU into a Dell mobo or vice versa and you'll blow things up. Again, only done to stop you from buying cheap commodity replacement parts.
>>
File: 1490380377468.jpg (36KB, 655x527px) Image search: [Google]
1490380377468.jpg
36KB, 655x527px
I reinstalled Firefox and now, only a few webm on 4chan have sound. What should I do?
>>
Which program language should I learn to use Ubuntu as my operating systems.
C,C++, Java, Python, or Hascell?
>>
does anyone know the most aesthetic linux desktop environment?
>>
File: pls help.png (89KB, 1279x201px) Image search: [Google]
pls help.png
89KB, 1279x201px
Why is this bar so thick even after i removed the links on it? What do?
>>
>webm clearly works
>video appears corrupt

WHAT THE FUCK IS GOING ON
>>
>>61103881
THICC
>>
How do I connect a second router to my main one using an Ethernet cable to use the second one as a wifi extender? Second one is on factory settings, I connected them through free non-uplink ports but nothing happens, I feel like I need to fiddle around the settings but not sure what. I tried changing the IP and disabling DHCP on the second one but still nothing happens.
>>
>>61103948
just plug it in ya dingus
>>
>>61103893
:(
>>
File: 1498564702725.jpg (59KB, 600x733px) Image search: [Google]
1498564702725.jpg
59KB, 600x733px
>>61104004
It's plugged in.
>>
Google captcha.
"Select all images with X" or "Select all boxes with Y".
When I try doing it in firefox (with NoScript, uBlock, uMatrix and whatnot installed and running), I can never get these stupid captchas to work.
When I try it with Internet Explorer it works either in one or two tries.

Why?
>>
>>61104086
Captcha v2
>>
Why the hell is uMatrix preventing me from downloading images in firefox?
>>
>>61104137
What do you mean with that?
Also, in 4chan I just use legacy captcha so it doesn't bother me here, I'm bothered with other sites that I can't just choose which captcha to fucking use.
>>
File: t.webm (257KB, 190x240px) Image search: [Google]
t.webm
257KB, 190x240px
>>61103881
>>
>>61104189
Thank you <3
>>
>>61103653
in theory yes
>>
>>61103948
Okay SO I think I managed to connect them and have them both broadcast the same SSID since the signal is stronger than before where the second router is located, but for some reason I'm getting worse speeds than when they were connected through a wireless bridge. Anyone know what the fuck could be causing that?
>>
>>61104152
Nevermind fixed it, apparently it was a behind the scene 'other' request from i.4cdn

Still it's kinda strange, it happened all of a sudden
>>
>>61104327
Some routers are just shit like that. Mine has short range and when it gets hot in summer, the speed often drops to ~50kB/s
>>
>>61104410
But the same two routers, connected wirelessly, the extended one gets up to 40Mbps, but when I connect them with an Ethernet cable, the extended one can only get up to 10Mbps. Really bizarre.
>>
Friends,

I want to learn some compsci on my own, what do you suggest?
Currently learning python with "automate the boring..." but I dunno what I'd do after that.
Should I jump to CLRS?

EE freshman, if that's useful.
>>
File: 8562.atx-power-bypass.jpg (23KB, 341x496px) Image search: [Google]
8562.atx-power-bypass.jpg
23KB, 341x496px
>>61103562
>>61103810

follow up stupid question. Since this pc can't use a normal psu and is also too small for my 970 would it be ok to use a second psu hooked up just to the graphics card and a pci extension cable

newegg.com/Product/Product.aspx?Item=9SIA9F93GK7347
>>
Generally speaking, you should always update your programs/apps so you don't have any security vulnerabilities, right?
On my phone though, I don't want to do that. Because the updates make the app worse sometimes!
There's an app that comes pre-installed on my phone, called Smart Connect. It basically handles connections with external devices such as headphones or my computer. It worked perfectly fine. Ever since i updated, it introduced a bug where the program won't stop even if i pull out the device (headphones,etc).
Another example? File Commander came pre-installed on my phone. It's basically just a file navigator. It does its job, it works perfectly fine. Then i update it, it becomes a piece of shit. It has a new interface and keeps urging me to buy premium services, and it suddenly spikes up my battery consumption. Wtf? how much can you even fuck up a damn file navigator.

I'd rather have a security vulnerability?
>>
>>61104858
pretty sure there are other better apps who do the same thing than those stock apps
>>
>>61104589
Yes. You can get a little PCB with an ATX receptacle and a relay to automatically turn on the second PSU. Make sure that both PSUs share the same ground - the easy way to do this is to plug them into the same power strip.
>>
Is it worth custom building a desk at all? I'm building a new computer soon, and wanted to spice up my setup a bit with a new desk, but since I'm a poor fag, I can't just fork over much money for a nice aesthetic desk.
>>
File: 1496162737998.jpg (199KB, 1500x1619px) Image search: [Google]
1496162737998.jpg
199KB, 1500x1619px
>>61101090
Which hash function should I use to encrypt my data?
>>
Hey /g/, I've been gaming on a friend's laptop for the weekend and playing Gears of War 4, the game crashed once (normal crash, had to restart), but then it had an odd second crash that the HDMI monitor it was hooked up to stopped displaying the game.

The game itself crashed, but you could still use windows normally. Resetting the HDMI also made the laptop send video signal to the monitor once again. Last piece of info is that, at that time the laptop had a big spike in temperature (over 90s for all cores, 95 and 96 for 2 of them). No signs of drivers crashing or anything, after replugging the HDMI and ending the game the PC was working normally.

So given all that info, what do you think? Could it have been the game that had a hard crash and caused the video signal to be interrupted? Or could it be that something fucked up? GPU temps were stable at around 70s (max being 79). What's your opinion on this?
>>
>>61104946
Are you already proficient at woodworking? Go ahead
Otherwise it will end up costing a lot more to build your own.
>>
File: Screenshot_2017-06-27-09-31-52.png (733KB, 1440x2560px) Image search: [Google]
Screenshot_2017-06-27-09-31-52.png
733KB, 1440x2560px
What's the difference between security camera kits like pic related and say, a bunch of IP cameras of my own I wire up to a switch with static IP addresses?

Say I want a single server that will given 4 cameras plus other server duties like storage and backups. Do I need a lot of course power?
>>
>>61103884

Please respond
>>
>>61105029
Well, I'd like to think I'm not completely inept when it comes to woodworking, but I can tell it won't be something stunning visually due to the fact that I haven't done any woodwork in ages. I know a place with cheap material, which is what gave me the idea to just custom build the desk.
So probably best to not have high hopes for an attempt? I could go do some carpentry/woodworking course for free soon.
>>
What is the meaning of PEBCAK. People keep telling me the problem is PEBCAK but no one will explain it to me! Willai ever find out if I got the job at Microsoft???
>>
File: 6hj85yjc73uy.jpg (21KB, 403x433px) Image search: [Google]
6hj85yjc73uy.jpg
21KB, 403x433px
So, this is a rather esoteric question, which I can't even figure out how to ask google. I am trying to sort my music, and somewhere along the line I made the mistake of extracting some compressed files into folders, which created themselves inside of folders of the same name. Consequently, the names of the file paths are too long in some cases. I was trying to select them all and then F2, to change all of their names, so the folder within the folder would go inside of one folder, then I could just copy paste them all into one folder without the extra sub folders. The problem is, when I try to do this renaming with F2 and selecting all of the files, when they actually rename, they come out like a(2) a(3) a(4) a(5) a(6) etc. up to 119 files. It's absurd, and it doesn't really help me. If anyone has a way that I can rename all the folders to "a" without having them create those stupid numbers at the end, and so that all the sub folders combine into one folder, I would appreciate it.
>>
>>61104946
Just steal some wood from a construction site at night.
>>
>>61105372
>the names of the file paths are too long
What are you running DOS?
>>
>>61105416
Well, I had a place nearby that does cheap material, and cheap cuts for material.
Thanks for the option though.
>>
>try to post webm
>video appears corrupt

Huh?
>>
>>61105424
Some bits of Windows can't handle paths of more than about 255 characters, even though the NTFS limit is higher.

>>61105372
Using F2 is essentially trying to rename all selected things to the same name - which will never work, hence the a(1), a(2)... You could try a bulk file-renamer that lets you rename by regex. Or just rename things manually to shorten the path and copy them out to some other location, which is what I've always done when I had this problem. Then again when I've had this problem it was only a dozen files or so that needed renaming, if you have ten thousand, you need a proper bulk renamer.

I have no recommendations for a windows bulk renamer, though.
>>
>>61105360
If people say "PEBCAK" they're essentially saying you're an idiot. It stands for "Problem Exists Between Chair And Keyboard", where the user is the link between the two.
>>
>>61105478
I've been getting that. If I download the webm and play it in VLC its fine though. Also 4chanx thinks every single image I try to upload is corrupted, even though they upload and display fine. Gook Moot probably broke something.
>>
>>61105520

Yeah they work fine if I drag it into the browser or play it in MPC, so they work. This is goddamn annoying.
>>
old macbook pro boots to white screen, cmd-r doesnt do shit
what do?
>>
If I put a sync passphrase in Chrome, is only Smart Lock disabled or passwords altogether?
>>
I have a dual monitor setup and sometimes when i move the mouse to the left fast while playing, i lose focus from the game and minimize it accidentally since i guess the mouse technically moves to the left screen
how can i stop this from happening?
>>
I can't into vim
Its just too much configuring
what's a good nonemacs alternative?
>>
File: Capture.png (5KB, 577x46px) Image search: [Google]
Capture.png
5KB, 577x46px
>>61101090
is it normal that bios files for flashing have awkward endings like this? Thats from asrock
>>
I have a server which I use for ftp.
Currently it's only me who uses it but I want to make it available to others. Though I don't want to give out my IP address to people I have never seen before. Is there a way to proxy a ftp connection? So that I can give them the IP of the proxy, they put it in filezilla (or something like that) and the proxy just forwards the traffic. Other security issues aside, how feasible is this?
Bonus points for ssh with the same method
>>
How to stop european cia niggers from tracking my smartphone?
>>
>>61105769
nvm, I didnt realize that the uefi will only show compatible updates
>>
My external harddrive makes a beeping noise occasionally. are my files ok? should I get a new hard drive?
>>
Are there any good windows 98/95 themes for windows 10? I downloaded the official 98 theme and it barely changed anything.
>>
Hey /g/
I'm about to buy a ryzen build
What is the best b350 board that's able to achieve 3200mhz frequencies?
I saw a thread say the Asus prime b350 plus is a good option but I can't find anything about how much frequency on their ram they're getting
>>
>>61105585
Problem fixed itself.
>>
File: error.png (53KB, 915x274px) Image search: [Google]
error.png
53KB, 915x274px
I have purchased a 64 GB SanDisk microSD card today with a SD adaptor. When I stick it in my HP 650 laptop running Ubuntu (inb4 REEEEEEEEE), I get this error. It works fine in my Android phone and tablet, in which I have put the card prior to the laptop. What should I do?
>>
What's a good Android browser that isn't garbage?
>>
>>61106580
Do you have the necessary fs tools installed?
OS isn't finding exfat, try this:
sudo apt-get install exfat-utils exfat-fuse

This is also easily googled.
>>
>>61106634
"Android browser"
For what?
Files? Music? Comic books? Web? Literal Androids?
>>
>>61106452
I have the asrock b350 pro4 (although i only have ram at 2400mhz)
>>
File: thirty two hundo.png (337KB, 1151x525px) Image search: [Google]
thirty two hundo.png
337KB, 1151x525px
>>61106452
Asus' website would've been a good place to check desu
>>
>>61106654
>Literal Androids?
what about a sex bot browser? know of any? or would even robot grills be disgusted by me? :(
>>
>>61106671
With the right compile flags they'll love everything.
>>
>>61106654

Web browser, I fucking KNEW some autist would get caught up on that but I still said to myself "just give /g/ a chance anon", well now I've certainly learned my lesson
>>
File: 20170627_183534.jpg (2MB, 3264x2448px) Image search: [Google]
20170627_183534.jpg
2MB, 3264x2448px
>>61106580
Here's the card packaging
>>
>>61106696
>can't create a clear message
>blames fellow autist

Also, I use lightning, works fine for me
>>
>>61106635
>Invalid operation install-utils
>>
>>61106753
google "ubuntu exfat"
Can't help more, I dont use Ubuntu
>>
>>61106791
Nevermind, /wsr/ solved the problem
>>
Is using an unlocked phone as simple as buying it and putting the sim card from my old phone into it?
>>
how do I select words in firefox url like in chrome?

Like i want to highlight /someword/ when I double click like in chrome
>>
>>61106971

so long as your old sim provider isn't doing something retarded then yes

>>61107032

do what? do you mean if you double click on "thread" in
>>61101090
you want /thread/ to be highlighted? or just thread?

if the latter set "browser.urlbar.doubleClickSelectsAll" to false in about:config (should be set to false by default)
>>
>>61107067
It's one of those at&t gophones. Like super cheap shit android phones.
>>
>>61106696
>Web browser, I fucking KNEW some autist bla bla bla

and what the fuck is wrong with

>What's a good browser for Android [...]

exactly?

>submits ambiguous post
>gets mad when people interpret ambiguous post wrong
>>
Trying to install arch on laptop, everything installs correctly but Xorg just shows a black screen when I run startx. When I run sudo startx, I get an interface but can't use mouse or keyboard. I have both integrated graphics on the 6700HQ and dedicated on the 970m. Nothing in the wiki has worked and nothing on forums has helped either. /g/ is my last hope.

>inb4 install gentoo
>>
I've always used appchan but I'm wanting to try oneechan. I installed x and onee but onee doesn't seem to be working at all, it's all just x
>>
>>61107067
If you double click on the url input bar in chrome a word get selected but if I do the same in firefox the whole ulr gets selected
>>
I'm curious about crypto mining. I'm not looking to make a lot of money, but I've got a decently powerful rig.

What are some good guides to getting started?
>>
>>61101090
Just found 2 DVD-RW discs lying around in my drawer and thought this is the best chance for me to install loonix.

Loonix ISO goes into 1 disc
Win10 recovery goes to 2nd

What are the chances I fuck up installing or fuck up boot manager? Would win10 recovery fix that?
>>
>>61107177

set "browser.urlbar.doubleClickSelectsAll" to false in about config

the behaviour you're describing in chrome is exactly how my firefox address bar behaves

(sorry I did post a full 4chan link but it got cropped to a post link)
>>
>>61106161

help
>>
>>61107093

the phone should accept the new sim fine, that's the point of unlocked phones

ignore what I said about the sim provider doing something retarded I was mistaken
>>
>>61103768
anyone?
>>
>>61101432
Well primero presiona la tecla alt and from there try to find the option
>>
>>61107211
yep now is working
thanks
>>
What is it about Ryzen that makes it so you typically can't run over 3200MHz? A lot of the motherboards I'm seeing have a cap of 3200MHz
>>
How do I circumvent that stupid fucking "file too long for system" error when I'm trying to transfer files? I have a version of linux on a flash drive somewhere. If I boot from that and try to transfer files from harddrive to harddrive or harddrive to external, will it do so without problems?
>>
>>61103768
ask someone who knows the password for the password

if vimeo isn't retarded there shouldn't be any workarounds
>>
>>61107758
>will it do so without problems?

yes
>>
how do i download videos from websites. I'v been visiting this porn websites that offers free full porn videos and usually i use chrome to view the porn videos and have video downloader extension but today i try to use my extension but it didn't pick up anything and so i downloaded a different a video downloader extension and this time it did pick up the video but when i try to download it it didn't let me for some reason. Is there anyway to download those video i can't think of any other ways i would really appreciate it if someone told me how to fix this problem
>>
Trying to read Black Hat Python, and it seems like they assume I have some knowledge of networking from beforehand. I know fuck all about TCP, UDP etc. Got a good book that will touch upon these things so I know what I'm doing?
>>
>>61108006
Set the video to fullscreen and use a screen recorder :^)
>>
>>61108006
>free full porn
>still resorting to downloader extensions
>free

I've been using GetThemAll extension and had no problems. As a last choice, Inspect Element of the video to find the source link and Save As to your desktop.
>>
How do I create a bootable debian usb stick? I downloaded the complete image of debian 9, used the program from ubuntu to create a bootable usb but when I try to boot it in the boot menu it just goes straight ot my windows install. I don't understand why.
>>
Hello,

I have been racking my brain all afternoon at this.

I cannot use dead keys in my debian stretch. I want to print keys like ď and ť and è (language stuff), but it always prints as `e.

What do, guise? I am Czech, btw.
>>
>>61108248
locale
keyboad language
>>
File: yui.jpg (70KB, 700x394px) Image search: [Google]
yui.jpg
70KB, 700x394px
>>61101090
Best 400 Europoors Laptop that can run Paladins, CS:GO, Chrome, Office, Photoshop and Adobe Experience Design? Is the "ASUS VivoBook E403NA" - good enough?
>>
for $265 USD, is a water cooler GTX 780 worth it?
>>
My GPU is idling at ~60C. I only have Firefox and Discord open.

Is there any way to check if I have a bitcoin miner or something running on my machine?
>>
>>61108253
I did that, but even with everything set to cs_CZ-UTF.8 it either fucks up my AltGr key or it doesn't do dead keys.
>>
>>61108325
Load temps? this is more likely to just be your video drivers saying "Eh, turn off the fan and make it quieter, theres no load on the GPU"
>>
>>61108345
Did you regenerate your locale after setting it?
>>
I have a GTX 1060 in my new laptop but I don't like video games
What can I really do with it?
>>
>>61107792
that's because you're using DOS partitions, which you can only have four of, unless one is an extended partition
since you have four primary partitions already, you've reached the limit
to make more, you either need to turn one into an extended partition, making space for 3 more, or convert the whole disk over to GPT, which allows for 128 partitions
>>
>>61108359
I just checked PrecisionX, the fans weren't running. It's idling at 40 with the fans at ~2k rpm.

I'm gonna try running the latest Unigine benchmark and see if the temps get bad.
>>
>>61108362
I set it up and ran "locale" afterwards. Showed up with new values. Should I do more?
>>
>>61108171
ok apparently this is not possible on ubuntu. At least I wasn't able to boot into the usb stick on my laptop either even after recreating the usb stick.
>>
>>61108397
Crypto mining, albeit small amounts of it
Video rendering
3D modeling
Simulations
>>
Can I use take the sim card from my iPhone 5 and use it in my parent's iPhone 6+? Will it work and I can use that?
It's a little fucked up, and the screen is falling off a bit on the edge. If she were to use the warranty and get a new one, could I still use that new one?
>>
>>61108171
>>61108446
Which program did you use?
>>
>>61101090
I made for my dad an animal movement tracker that automatically starts filming when something moves.
I made this on an rpi, but how would I go for powering it?

It's supposed to be a simple box with a replaceable/rechargeable battery, so I opted for a powerbank.
But if the powerbank goes empty, the rpi should shutdown to prevent data corruption if it's filming.

How do I do this?
>>
>>61108026
Check the gentooman's library
>>
>>61101090
My them keep changin back from Tomorrow to Yotsuba B and my pass keeps signing out on 4chanX
Anyone else have this problem?
>>
File: rat.jpg (9KB, 350x250px) Image search: [Google]
rat.jpg
9KB, 350x250px
>>61101090
Why the fuck can't I find a cheap gaming mouse that doesn't look retarded or is covered in LEDs?!
>>
>>61109138
razer naga 2012
>>
>>61103854
Am I the only one?
>>
>>61109147
>cheap
>>
Does Wangdows Server 2016 contain the telemetry bullshit the consumer OS does?

Need to migrate this computer off macOS server ASAP and I can't use Linux (boss rules).

I have a license for 2008, 2012, and 2016. Not sure which to choose, and I'd like to use 2016 because of the new Hyper-V features.
>>
>>61109341
if 70 bucks isnt cheap then you have no reason to be picky at all.Just get an intelleimouse for 10 bucks at best buy
>>
>>61108754
You need to measure the voltage that the battery has, as it depletes, it loses voltage.
>>
Can't post stupid question right now.
Too busy making circles.
>>
>>61109507
unpossible
>>
>>61108624
the one that comes by default with ubuntu. Startup disk creator
>>
>>61101090
Do any anti-virus programs block the decrypting of files in the chance that it's a virus?
>>
>>61109398
http://www.logicalincrements.com/mouse
70 is not cheap.
>>
Can a dns server be down(i use simpleDNScrypt? firefox stopped working so i tried changing the dns server and it worked again, what the hell?
>>
>>61109636
It is cheap
>>
I've got the following in my .xinitrc, as well as my application startup.
xinput set-prop "HID 04b3:310b" "Device Accel Constant Deceleration" 0.3
xinput set-prop "HID 04b3:310b" "Device Accel Profile" -1

It's been working fine up until today where it suddenly stopped, so my mouse is sluggish as fuck. I haven't changed anything on my system from yesterday to today.
If I punch in the commands in term, it works, but as soon as I suspend and resume, it stops.
I'm running Devuan Jessie and XFCE4 4.10, what gives?

Possibly related, but guake also fails to launch properly like 5 out of 6 times.
>>
>>61109628
No. Most antivirus can scan through it
>>
Career question!

I'm a web dev but I hate the culture. It's too social for me; I hate open offices, fucking "pizza fridays" and going out for beers, all that fucking bullshit. I want to be left alone. I want to go to work, do my work, and then leave work at work.

What field should I move into that tends to be more in line with this? I'm great at UI/UX and don't like back end development so it's annoying that I have to change.
>>
File: a.png (119KB, 1163x913px) Image search: [Google]
a.png
119KB, 1163x913px
>>61109623
Does the stock ubuntu have the "disks" software? If it does, try pic related. "Restore" the debian image to the usb stick.
>>
>>61109675
So there is zero possibility of that happening? No software might block a scheduled/automatic decryption of a file?
>>
What's the difference between a header file and a namespace?
For instance:
#include <iostream>
using namespace std;


int main()
{
cout << "Hello";

won't compile unless both iostream and std are declared. Why?
>>
File: Auswahl_880.png (32KB, 624x343px) Image search: [Google]
Auswahl_880.png
32KB, 624x343px
>>61109739
ill give it a try. But for some reason my usb drive looks hella different than yours too. I noticed that too since ubuntu live usbsticks look like yours.
>>
>>61103722
Bump, I didn't find anything helpful yet. I think it might be up to Android and the huge size of the apps, there might be no help.
>>
>>61109799
#include <iostream>

puts the declaration of std:cout, among other things, into your file.
using namespace std;

lets you omit the "std::" in front of every thing declared as part of the "std" namespace.
Two different tasks, two different statements.
>>
>>61109679
Nothing is preventing you from doing just that.
>>
>>61109739
>>61109824
I actually found out why it isn't working. I should download debian something - 1 if I want to install this not the 3 which basically only contains extra packages. Oh man.
>>
So today i was downloading some hentai right their only like 100mb to 200mb and i have a hard drive which has at least 100gb free. I was downloading them on chrome but for someone reason it didn't finish downloading like it only stops at 50mb or sometimes even less. I checked my hard drive it has enough space i try to restart my browser and try it again but it failed it only downloaded up to 70mb didn't even finish. So i tried a different browser i tried using Firefox but the same problem occurred like wtf can anyone help me i have enough space in my computer but for some reason it just wont complete my download and i have tried every different browser.
>>
>>61109998
it's hard to when all companies in existence are the "small team that enjoys going out for beers and meetups!" type
>>
>>61109679
Enterprise/government jobs, or anywhere that will let you work remotely
>>
>>61110023
I did webdev when i got out of school for a few years.I just didnt go to the things or do dress ups or go out.Just dont do the things you dont want to do.If its a problem with the higher ups tell them to fuck off,that you do your work and do it exceptionally.
>>
File: 1496162917698.jpg (49KB, 450x600px) Image search: [Google]
1496162917698.jpg
49KB, 450x600px
In the country I have two buildings, the main building which has internet and the other building which does not. The other building is a metal workshop type of building so signal reception to it is poor - a wifi signal from the main building (which is like 50 yards away give or take) just barely reaches it but certainly doesn't penetrate.

Would it work well enough to get a range extender installed in the main building, then an access point just on the inside of the second building? Or is daisychaining the signal around this much going to cause some problems?needs internet.
>>
File: asdsad.jpg (49KB, 331x331px) Image search: [Google]
asdsad.jpg
49KB, 331x331px
How do I sleep?
>>
>>61108299
I would be inclined to say no
>>
File: sips3s.png (820KB, 901x900px) Image search: [Google]
sips3s.png
820KB, 901x900px
Is there a list of ips I can add to my default gateway so I can post of 4chan but still leave my VPN on
>>
>>61110271
no
>>
Is a laptop case recommended or do they cause overheating?
>>
What are my best options for formatting and encrypting a 64GB USB drive so that it's secure and works with masOS, Linux, and Win10?
>>
>>61110309
none
>>
>>61110343
What about if I want it to be secure and just work with Win10?
I would at the very least need that.
>>
Would my computer get affected if a virus was spreaded to a device connected to same network as me? If yes, how do I prevent it?
>>
>>61110375
veracrypt
>>
>>61110309
>>61110375
I use veracrypt and ntfs for sharing shit on loonix and wangblows. It should work on macos too, though I don't know what filesystems are supported on mac.
>>
should I do crypto / proof theory / machine learning / Database / quantum computing?
>>
>>61110467
maybe
>>
I often notice that, if I'm transferring data with several programs at once, certain programs seem to take precedence over others.
If I download a file through Chrome, and download a game through Steam, the Steam download will remain fast whereas the Chrome download will slow down.
What controls this? Can I manipulate this? I'm on Windows 7 if it matters
>>
>>61110115
Get off the computer
Seriously. Staring at a screen keeps you wired.
Occasionally I'll read a physical book for 20 minutes before bed to calm down
>>
I haven't programed outside of school classes and practice websites. What program should I use. In class I used notepad++ for HTML and JCreator for Java. Learned basic C and Python.
>>
>>61110952
Netbeans is unironically the best for Java / HTML / PHP.
>>
>>61110398
Depends entirely on how the virus propagates and how secure your device is. Basically the gist is
>turn off sharing - all of it
>turn off public folder sharing
>turn off network discovery
>turn on windows firewall
>update fucking findows
>then turn off fucking windows update
Changing your network type from home or work to public does the first 3 steps automatically.
>>
>>61111066
Yeah, I was afraid of home network possibly cause some problems from other devices for my computer, done all except Windows Update. Windows Update fucks my computer for some reason so I just installed the standalone security update that Microsoft published. Thanks.
>>
How important are function/method prototypes?
I've read that it's advised that the prototype of a function shouldn't include its definition. Why not?
>>
File: Botnet.png (8KB, 604x129px) Image search: [Google]
Botnet.png
8KB, 604x129px
After some extensive googling, I could not find anything on these files.
I found this in appdata, and discovered it schedules a helper~1.exe\check program to run at 1AM.
Yesterday I investigated the task manager to see if runs the program and found it does not run anything. Kinda afraid to straight up delete it, as it may be something necessary.
Also, the task scheduler tells me it always fails when trying to run, since it's not a valid file.
>>
Now that stylish is botnet,what do i replace it with?
>>
will any set of parts work with any case or should i do research into compatibility of my specific case/parts combo
>>
Right now I keep all my media files on an external drive. I'm running out of space, so I thought I would figure out a more proper setup. I wanted to make a raid setup so it would have some redundancy.

Should I get some kind of raid enclosure, or get some old parts together and make some kind of server?
>>
>>61111837
You should probably check
>>
>>61111909
Building your own gives a lot more flexibility
>>
>>61101090

The default gamma on my monitor is much too high, so I adjusted for that with Windows Display Color Calibration. However, there are many full-screen applications that override my color profile and reset the gamma to default. Is there any way to prevent this from happening?
>>
>>61112337
There are some that try but none that I've found to be particularly reliable or convenient.
>>
File: Capture.png (15KB, 405x278px) Image search: [Google]
Capture.png
15KB, 405x278px
I can't take this shit anymore, my PC is restarting because of high heat temperature. What can I do to cool it off? These temps are at midnight after one restart. Fuck my life into pieces.
>>
>>61112387
Do a through cleaning
Reapply thermal paste.
Recheck airflow
>>
I traded my rMBP for an Asus with a 1080p ips touch panel and movies look better (running ubuntu) why is this?
>>
>>61112444
Maybe you just prefer how its calibrated
>>
How do I dual-boot Win7 and 10?

I already have 10 installed. I created a separate partition and can install 7.

But how do I ensure that both are options at bootup instead of 7 just monopolizing it?
>>
Is there a way to block streamed ads on Twitch?
>>
>>61112387
Open side of case.
If that fixes it, you need moar case fans. (Or you can just run it with the side off like everybody else)
>>
>>61101090
are there any plugins for VLC (or another media player) that can make it handle my library better? Something like remembering what episode of a show I'm on, or where I left off in the middle of an episode
>>
>>61112720
plex
kodi
>>
A friend of mine wants me to buy his GTX 970, and he's offering it to me. The problem that I have with buying ti is that his PSU packed it in, and his computer kept shutting off when he put it under load. I helped him build a new computer recently to replace it. Would the PSU just turning off hurt the component itself?

I'd like to avoid it if it's going to die when I buy it
>>
>>61112718
yes
>>
File: memória.jpg (12KB, 251x158px) Image search: [Google]
memória.jpg
12KB, 251x158px
I have two of these old memory. Can i overclock my videocard?
I have heard that these memory isn't good for overclocking.
>>
>>61112773
Overclocking your graphics card is different from overclocking your RAM.
>>
>>61103854
>uninstall memefox
>install waterfox
>>
From all the microsoft office free alternatives, which one is the best?
>>
>>61112782
Wait, i can overclock my RAM? I didn't know about that.
So, can i overclock my card without problem? That's good to know. I thought the high temperature in computer could danificate my memory.
>>
>>61112845
free as in freedom, or free as in free beer?
>>
Hey /g/ I have three fried PSU's off warranty and please don't ask why. Is it alright if just dump them in the trash or am I supposed to turn them in somewhere?
>>
>>61112988
Free as in free beer
>>
>>61113004
Just toss them
>>
>>61113041
Thanks brother. HH
>>
>>61113024
WPS Office
>>
>>61113057
Thanks!
>>
>>61105014
Probably a driver issue. Update your drivers.
>>
>>61101394
I use VLC player.
>>
What will happen when I put 3000mhz ram into my Ryzen system?
>>
>>61113117
You'll create a singularity and destroy the solar system
>>
>>61102372
never
people always want to spend money on something "better" looking
>>
>>61113117
By default it'll run at 2400 or 2133MHz. If your mobo has a recently updated BIOS odds are overclocking to 2933MHz will work fine too. 3000 flat isn't recommended as that requires base clock overclocking.
>>
>>61102755
Audio latency is usually caused by conflicting driver issues.
I say usually because certain hardware that can slow down your system can also be the problem.
>>
>>61105372
Can you just extract them again, and this time check your settings? If you use 7-zip you can choose how to extract files in the context menu.
>>
>>61105585
>go to apple store
>buy new one
>apple quarity
>>
>>61103653
in most games running Vsync will put less strain on your hardware, especially if you're getting above 200fps,
On my old AMD build running GTA5 at vsync would run that RX280 at 57C instead of the usual 75C, and use only half of the resources.
>>
How do you block Twitch streamed ads?
>>
>>61101681
Threads up; but it's been discontinued for almost fifteen years.
>>
>>61107200
>What are the chances I fuck up installing or fuck up boot manager?
Minimal if you don't mess with shit and accept defaults
>Would win10 recovery fix that?
Yes but you will have to find instructions. It isn't as straightforward as you might think (at least when it happened to me.)
>>
Why are AMD graphics cards in such high demand for mining again? I thought that ASIC miners outperformed GPUs
>>
>>61113501
Cryptocurrencies after bitcoin were specifically designed to make it difficult to build ASICs for mining them, specifically to make CPU and GPU mining the only viable path, since the ASICs led to lots of centralization of the network.

They do this be having larger memory (capacity or bandwidth) requirements than the SHA256 that Bitcoin is based on. Large amounts of onboard memory quickly makes an ASIC expensive enough to be not worth it compared to general-purpose computing hardware that's already available.
>>
New thread >>61113567
>>
>>61108496
IIRC the SIM cards are a different size. Unless they have like sizes, you would need a new one (free if your carrier isn't run by jews).
>>
Best minimalistic active antivirus? Seems like a common problem with a lot of them to make you system hang with high disk usage.

Comodo is featured in the wiki. Is it really any better than normal?
>>
>>61110056
This. They can't force you.
>>
>>61110071
Get something like this
>https://www.amazon.com/dp/B007ZDC64I/ref=psdc_1194486_t1_B006M1PKWY
>>
>>61113004
Do you not have a local electronics store you can take them to? Or a public recycling event? Or a local recycler? Look this shit up first.
>being a dick to the environment
>>
File: 1497753649430.png (446KB, 634x776px) Image search: [Google]
1497753649430.png
446KB, 634x776px
>>61108266
As long as you got 8gb of ram anything is fine nigga
>>
How come I can use 3 monitors on Linux, but on windows it only allows me to use two. If i try to use 3 it says "unable to save display settings"

Why would one work on linux but not on windows?

Linux is awesome? but why?
>>
How do I get a VPN on Windows 7. I think I was able to set one up using the internet access but it asked for a host IP which I couldn't fill out
Thread posts: 330
Thread images: 41


[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.