[Boards: 3 / a / aco / adv / an / asp / b / biz / c / cgl / ck / cm / co / d / diy / e / fa / fit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mu / n / news / o / out / p / po / pol / qa / r / r9k / s / s4s / sci / soc / sp / t / tg / toy / trash / trv / tv / u / v / vg / vp / vr / w / wg / wsg / wsr / x / y ] [Home]
4chanarchives logo
/sqt/ Stupid Questions Thread
Images are sometimes not shown due to bandwidth/network limitations. Refreshing the page usually helps.

You are currently reading a thread in /g/ - Technology

Thread replies: 255
Thread images: 47
File: Mouse Sensitivity Too High.webm (311 KB, 240x426) Image search: [Google]
Mouse Sensitivity Too High.webm
311 KB, 240x426
Post your simple/small/stupid questions here, ONCE.
DO NOT BUMP THE THREAD, You are NOT entitled to an answer.

Read the sticky before posting.
Take at least 10 seconds to google it first.

Redirect or ignore anybody asking stupid questions outside this thread.
Use >>>/g/sqt as a link to find the sqt thread.
>>
I was browsing files using Nemo on Ubuntu as a superuser and I deleted a ~4GB folder. It deleted itself in an instant, with no wait time, which surprised me. The problem is, that after it got deleted, there is no more free space on my partition than there was before.
Any ideas what have happened and how can I fix it?
>>
File: Capture.png (9 KB, 682x121) Image search: [Google]
Capture.png
9 KB, 682x121
>pic related
>open file with windows media player
>just says "changing media" for a few minutes, then closes itself
what do?
>>
Why does my SDcard on my android phone show up as blank? I formatted it to FAT32 after backing up the files on it. It shows up on its own and with a micro SD adapter (using a reader) on my laptop.
I had received the phone as a hand me down from two years ago and I think the slot itself is messed up.
>>
>>54790775
How do I emojis from android? I'm using the Zenui keyboard because it just werks, but the stupid smiley face ruins it.

All I want is to put a simple :) in without the retarded face showing up.
>>
Why dont people fill up their water cooling system with car coolant? Does it corrode the hardware?
>>
>>54790775
What's wrong with that snake?
>>
>>54790775
Cornsnake! I used to breed them, had 4-5 different color phases.
>>54791033
nothing, they don't quite see as well as they smell. He would usually just drop it in the box
>>
File: Screenshot_20160528-152422.png (148 KB, 1440x2560) Image search: [Google]
Screenshot_20160528-152422.png
148 KB, 1440x2560
Sorry, posted in old thread first.
If Android system apps are installed on the System partition, then how come their app info pages state that they are using X amount of Internal storage?
>>
If i encrypt my laptop, would it slowdown?

Why?
>>
>>54790889
usually if you remove something by accident on a file explorer, ctrl+z should revert what you did.

Check on your trash bin.
>>
>>54790901
Install MPC-HC and use that instead.
>>
File: uptime.png (7 KB, 393x176) Image search: [Google]
uptime.png
7 KB, 393x176
Why is my CPU speed going over the max speed when I didn't overclock it? I'm using high performance mode with a AMD a10 7850k.
>>
>>54791234
Nothing in the trash and I restarted already, so there is no ctrl-z and there are no open files preventing OS to free up the space.
>>
What's the best mouse? I got a gaming mouse and all it does is hurt my hand and make me accidentally backspace the page.
>>
>>54791311
install the fucking driver and turn the gay back/forward buttons off.

>>54791033
nigga's blind

>>54791012
because it's the wrong kind of fucking coolant
>>
>>54790901
>DivX
Is this 2009?
>>
Asking again for sanity's sake

I'm trying to embed Lua into C++, so i put a copy of the include files from Lua 5.1 into the folder the main C++ code lies in, and used the code
extern "C" { 
#include <lua5.1\lua.h>
#include <lua5.1\lauxlib.h>
#include <lua5.1\lualib.h>
}

int main(int argc, char** argv)
{
lua_State* L = luaL_newstate();

luaL_dostring(L, "a = 10 + 5");
lua_getglobal(L, "a");
int i = lua_tointeger(L, -1);
printf("%d\n", i);

lua_close(L);

return 0;
}


But when i try to compile i get the error

main.cpp:2: lua5.1\lua.h: No such file or directory
main.cpp:3: lua5.1\luaxlib.h: No such file or directory
main.cpp:4: lua5.1\lualib.h: No such file or directory


What do?
>>
>>54791196
The performance (and battery) impact is negligible, especially on modern laptops.
You will only notice a difference if you run a thorough benchmark test, not in day-to-day use.
>>
File: ratemybuild.png (66 KB, 688x746) Image search: [Google]
ratemybuild.png
66 KB, 688x746
did i fuck up /sqt/
>>
Using ufw to setup a firewall.The outbound policy is allow,the inbound policy is deny.The outbound connections are not working,http https dns. How do i got about fixing this.
>>
>>54791495
>i7
Yes.
>ram
Yes.
>512gb SSD
Yes.
>Hitachi
>Yes
>Psu
Get a 900w
>>
>>54791421
What if its not a modern laptop?(Thinkpad x220).
>>
>>54791525
Why would you suggest a 900w psu for that build? If nvidia isn't lying, he should be able to run another 1080 in there without any problems.
>>
>>54791495
Looks good.
>>
>>54791525
>>54791558
I'm planning on running 1440p 144hz and a second 1080p monitor. and doing some gaming, some music production/video editing/photoshopping
>>
How well does H.264 decoding scale with multiple threads? Imagine I had a single-core 2GHz processor and a dual-core 1GHz processor (both with the same IPC), which would play H.264 faster? Or would they be equal?
>>
>>54791290
I guess your best move would be to search for a file or a directory that was in the 4GB you removed to see if it was moved somewhere else.
use something like this :

sudo find / -type f -iname "*filename*"

replace f by d if you're looking for a directory, and you can just put a part of the filename if you keep the stars (regular expression).
>>
is it possible (or wise) to change the filesystem of an external hard drive by creating a partition of the desired filesystem, moving everything into that partition and then deleting the original partition? obviously it could only be done if free space permits, i just don't have a second hard drive to do it with.
>>
>>54791775
Yes
>>
>>54791391
According your OS, and how you installed the library, the #include might not be the same everywhere. I used to program with the SDL library. On windows I had to do
#include <SDL2/SDL.h>
while on linux I could simply
#include <SDL.h>

that message just means you're looking for the library on the wrong directory.
Are you on linux or windows ?
>>
I don't know, if this is a stupid question, but stackoverflow doesn't have a good answer.

I got a program from a brazilian company. It is written in c. I have the sourcecode and at the same time the files are compiled to *.exe's.
I have installed windows to start them, but whenever i start the *.exe's they boot up the shell and close itself right after. I have no problem with running them from an IDE but it bugs me, that I can't start them from windows
>>
What's the best way to produce some simple mechanical parts (mainly cases for electronics)? Are there like 3D printing shops or some such?
>>
>>54791273
noone responded to my question -_-
>>
>>54791830
Check your BIOS, windows 8 is known for showing wrong stats
>>
>>54791853
It's windows 10, but ok.
>>
>>54791806
Sometimes the IDE have a release and debug mode. I don't remember if you can run the debug binary files outside the IDE.
>>
I'm buying some new hard-drives, and I realized I don't have enough sata power connectors, but, I do have a handful of molex connectors lying around. Would it be a bad idea to get some molex to sata cables? Or would a Sata Y-splitter work out better? I can easily use either, I'm just worried about which is more likely to start a fire or fuck with my system's power.
>>
>>54791830
Its caleld turbo
you can disable it in your bios
But there really is no reason to
>>
>>54791495
Don't buy a 1080 yet. We don't know enough to say if it will be a good GPU or not.
>>
Am3+ and am3b are the same right

RIGHT
>>
>>54791871
https://answers.microsoft.com/en-us/windows/forum/windows8_1-performance/task-manager-shows-cpu-speed-that-is-higher-than/4a3ad9a8-fba2-4dcb-8155-0502d475b78c
>>
>>54791875
>https://answers.microsoft.com/en-us/windows/forum/windows8_1-performance/task-manager-shows-cpu-speed-that-is-higher-than/4a3ad9a8-fba2-4dcb-8155-0502d475b78c
>>54791986
Thanks!
>>
How the fuck do I into webms /g/?
>>
>>54792044
ffmpeg
>>
>>54791874
get a sata y splitter but you cant split too many

>>54792044
webm4retards

>>54791926
maybe. where the fuck did you get am3b from?
>>
>>54791872
Thanks for the answer, may be the problem, but I guess not, because in their broken english they wrote, the shell can also be used to control the program.
But it was not that important anyway.
>>
File: 393336.jpg (70 KB, 750x950) Image search: [Google]
393336.jpg
70 KB, 750x950
Is it hard to convert HEVC to H.264?
I don't have that good of a computer though.
>>
>>54791763
Thanks! That helped!
It seems the trash feature is unsupported (at least on Nemo) on Ubuntu as a superuser, but Nemo not being a native file browser created a directory /root/.local/share/Trash/ anyway and moved my deleted directory there anyway.
Thanks again!
>>
What would be the easiest way to record live TV to a video file? My TV has a recording feature that supposedly records to whatever drive is connected to the USB port, but it doesn't work.
>>
File: 1455314723100.jpg (77 KB, 700x629) Image search: [Google]
1455314723100.jpg
77 KB, 700x629
When I go to Settings > Data Usage and click on applications in Android, settings crashes. I've already cleared my cache and reset.

6.0 stock G4.
>>
If the video signal suddenly stops after about five minutes from start up, but the monitor itself is fine, I need to replace my video card right?

Related: where do I get parts like that and should I get an ATI or a Nvidia?
>>
File: FK2_001.png (254 KB, 1024x680) Image search: [Google]
FK2_001.png
254 KB, 1024x680
What can I do to remap the buttons on my FK2?
>>
Why isnt this filtering any non-plaintext characters?
/[^\x00-\x7F]+/i
/[^\u0000-\u007F]+/i
>>
>>54792353
Glad I could help you.
>>
File: images.jpg (7 KB, 225x225) Image search: [Google]
images.jpg
7 KB, 225x225
>>54791495
you most definitely did not
>>
If I reinstall Windows on a different hard drive in my computer (so same motherboard), will it be activated automatically?
>>
is a display port connection a digital or analog connection? will a simple DP to VGA adapter just werk?
>>
>>54792548
Yeah it will
>>
>1. Translate the EER diagram above into a >relational schema with more than one relation (i.e. table). Use the algorithm seen in the course.
>2. Translate the EER diagram above into a relational schema with only one relation (i.e.
table).
>Use the algorithm seen in the course.
>If you think that it is impossible, then explain why
DROP TABLE Life;
>>
Questions about plex

Is there a better alternative?
How do you seek on the video pressing the arrow keys just makes it go to the next video, do you need to be premium?
Do you always have to have your computer with the server installed running?
>>
I have a laptop with windows 7 on it. I no longer need to boot on windows and only use linux on it.
Is is possible to retrieve the license and install it on another computer ?
>>
>>54792638
The OEM key? No
>>
>>54792651
Dunno, I just want to know if it's possible to install it on another computer. I no longer use windows but know someone who needs it, so I wanted to "gift" him my windows version.
>>
>>54792624
>Maybe
>Why are you using it on your PC that is hosting the files
>Yes
>>
I'm a second year CS student and I haven't taken a single computer related class nor do I know the first thing about programming.

Should I be studying everything on my own or wait until I can take a programming class to learn?

I'm almost 30 is it too late for me?
>>
I want to build a pc but i dont have a grounded outlet in my room. Can i use that fir my pc or will that damage my components?
>>
>>54792710
>CS
>2nd year
>30
Either kill your self or go in to IT
>>
>>54792710

hey almost 30. I got my first job as a programmer at 29 after dropping out of uni at 28.

You're still young (just not compared to the babbies on here) and while it might seem like there are 1000's of super 18 year old programmers there really aren't.

Just learn everything you can about cutting code and you'll be fine.
>>
Whats that wide faced anime character called whos on like 3 mouse pads?
>>
>>54792866
all of them
>>
>>54792891
Its like this blond one with a really stretched face, from ages ago. Sometimes its the top page banner thing
>>
I can't stop shilling Intel and Nvidia on /g/ despite using AMD almost exclusively. My first girlfriend was Jewish and called me her little goyim and now I have a fetish for it and get off when /g/entoomen call me a good goy.
H-Help.
>>
File: Capture.png (122 KB, 646x382) Image search: [Google]
Capture.png
122 KB, 646x382
Does anyone have any idea if it'd be possible to transplant an IPS display from another laptop into this bad boy? Would Lenovo be using some arcane display connectors?
>>
File: 1293513424643.jpg (57 KB, 640x480) Image search: [Google]
1293513424643.jpg
57 KB, 640x480
>>54792932
Yuno?
>>
>>54792780
Ignore him. He's probably one of those sheltered kids that went straight into an uni after HS because his mommy said so.
>>
File: .jpg (28 KB, 300x100) Image search: [Google]
.jpg
28 KB, 300x100
>>54792932
I'm not a high enough level weeaboo to answer, but I do have this.
>>
>>54792442
Try ahk.
>>
>>54792976
>suddenly I want pancakes
>>
>>54792988
>an uni
Yeah, higher education is a meme anyways.
>>
So I have a big gap after college in my resume because NEET reasons. Would it be better to tell my future employee I was a NEET or lie that I was in prison?
>>
>>54792976
>>54792989
Bingo! Thanks. Wasnt there a how to draw her in 8 lines or something? Thats what im searching for
>>
>>54793049
Tell them you went on a pilgrimage to Jerusalem.
>>
what is the best web browser for android
>>
>>54793099
Lightning.
>>
>>54793077
what if they think I'm a Jew?
>>
does anybody know how to fix the seeking issue with ffmpeg when you copy a video stream?
>>
>>54793112
Christians, Muslims, and Jews all have reasons to got to Jerusalem. You literally can't lose unless your boss is a Hindu or something. With all the poo in loos it might happen though.
>>
>>54793102
what makes it the best
>>
Nvidia Shield (tablet): shit product?
>>
>>54793112
They might make you part owner.
>>
whats the best way to download all of the videos on a certain youtube video in mp3
>>
>>54793157
It's only $250 and frankly vastly overpriced.
>>
>>54793169
youtube-dl
>>
>>54793169
There's some non free (as in freedom, still free as in shekels) programs that let you download entire channels as .mp3. I assume that's what you meant to say anyways. Google it.
If you're a freetard then you have to do each one individually or write your own program.
>>
Getting a new phone in a few days, but the SIM card in my current phone wont fit. After a bit of googling I've find that I can cut it to size, has anyone on /g/ done so before? Did it fuck your card?
>>
>>54793130
I think I better tell them straight up after introductions I hate Jews and that I'm not a Jew at all.

>>54793164
the part I won't be owning anymore would be my foreskin though
>>
>>54793193
don't listen to this faggot
>>
>>54793205
My brother did that once and he claims it worked, but I can't confirm it myself.
>>
File: propertiesinfo.png (67 KB, 835x1010) Image search: [Google]
propertiesinfo.png
67 KB, 835x1010
>>54790775
I have a .mov file of which that was recorded on an iPhone 4. Videos in the past have been shot without any problems but these four latest files that I have just wont play any sound whatsoever. When replayed on the phone there is no sound and the same when I moved it over to my PC as well. What do you think could be the problem here? What can I do? It is extremely important that the sound on these videos get working again as they are precious memories.
Thanks to anyone that can help.
Pic related. Not sure if it helps but I thought I'd post it anyway.

>Video: MPEG4 Video (H264) 1280x720 29.97fps 10355kbps [V: Core Media Data Handler (h264 baseline L3.1, yuv420p, 1280x720, 10355 kb/s)]
>Audio: AAC 44100Hz mono 63kbps [A: Core Media Data Handler (aac lc, 44100 Hz, mono, 63 kb/s)]
>>
>>54793205
also, try it on some cheap prepaid card or something like this
>>
>>54792993
Can I use it on Linux?
>>
>>54793049
Tell them you were having to deal with emergency family issues and health issues.
>>
>>54790775
Hey /sqt/. I have two laptops, both HP, and I was wondering if I created a system image of the old one and put it in the new one, will it work properly?
>>
I want to make a small webserver that serves static html pages.

Where can I learn the minimum basics a server must have? shit like the packet headers and so on?
>>
>>54793205
Yeah you can cut it, its only plastic.

>>54793230
Can confirm
>>
File: 43.jpg (14 KB, 400x400) Image search: [Google]
43.jpg
14 KB, 400x400
>>54793237
Just tried with Quicktime and It didn't work there either. My default player is MPC-HC.
>>
>>54793099
firefox ublock oregon
>>
>>54793277
idk, try here maybe?
http://www.jmarshall.com/easy/http/
>>
>>54793237
try reencoding?
>>
>>54793345
I have not tried that yet actually, could you recommend me a good software that would do the trick?
>>
When putting in a new soundcard, are these the steps I have to do or is there more?

1. Uninstall Realtek drivers
2. Restart
3. Shut down and plug in new Soundcard
4. Boot up
5. Install soundcard drivers
6. Restart
>>
>>54793400
Or since Realtek is built-in my MB, can I skip uninstalling those drivers?
>>
>>54793385
handbrake
>>
Does the fact that my error codes are changing (from 53 to 55) rule out my cpu is dead?

The board runs on no ram, but will shut off and on continously with ram. Asking because I got a second mobo and I'm not sure if it's DOA
>>
File: 1447017835343.jpg (26 KB, 400x400) Image search: [Google]
1447017835343.jpg
26 KB, 400x400
Need help installing Xbox One Controller in Windows 7

I got rid of those telemetry shit things from Windows 7 but Xbox One controller drivers don't work anymore.

I tried manually downloading them but get a 37 error.
>>
>>54793424
Doesn't seem to work, thank you though.
>>
>>54790901
This is a scam, I had the same message and opening the file with windows media player displayed a dialog that asked to follow a shady link to download the 'missing codecs'

The video was actually h264 encoded like shit with lots of artifacts to make it seem like any other video player couldn't play it.
>>
>>54793454
>trying to have freedom on windows
>trying to have freedom with geimus
A waste of energy. You feel for the memes.
>>
I have the option to swap my 560ti for a 570.

Should I?
>>
>>54793498
For free?
Yes.
Pay?
No.
>>
>>54793205
u need to make sure the metal contacts are in the right place
>>
>>54793501
Yeah it'll be free.
Warrantied for 2 years too.
>>
>>54793498
>>54793513
Pissmark says it gets more fps. But your electric bill and fan noise may go up slightly since 570's TDP is a bit more.
>>
Got a new laptop. Whats the best torrent dowloader? Been thinking about bittorrent and qbittorrent. Also what do you nigs like to use for a text editor focused on Web Development? I fucking hate eclipse so I will never use that again. Thinking about CkEditor and Scratch. Anything that I can torrent. I havent been able to find any Dreamweaver cracks so far.
>>
>>54793550
would the extra 200mb of vram make any difference?
As is, my 560 handles 1080 @medium okay but drops hard in 1440
>>
>>54793277
lighttp or nginx
>>
What is the cheapest Enterprise level switch that I can learn business-level stuff on?
>>
>>54793285
>quicktime
>90's
>>
>>54793385
ffmpeg
>>
>>54793605
>torrent
deluge for daemon, qbittorrent for daily use
>coding
Notepad++
>>
>>54793608
>using 6 year old tech to power the latest gratest tech
Do you even have to ask?
>>
Alt for better battery stats without root?
>>
>>54793667
I'm on a very tight budget and need to consider everything
>>
Thinking of buying the Chuwi hi12. Any reasons why I shouldn't?
>>
>>54793675
Upgrading one revision wont matter in the scope of 1440. If anything bump up to a 750ti($100-150)
Honestly though, if you cannot afford anything now, just fucking wait.
>>
>>54793667
Maybe they're on limited or no income or living in a country with crazy high relative prices. Or use their PC primarily for doing stuff other than playing with children's toys. If a AAA video game is ever the most challenging thing you do in a day, you're a failure of a human bean.
>>
>>54793695
This.

Wait for X is a shit meme, unless X is for you to stop being poor.
>>
>>54793720
>"wait for x"'
>x comes
>"no, wait for y"
>repeat ad infinitum
>>
>>54793695
I was only asking because I could get it for free.

If it's a better card, no matter how minutely, makes sense to grab it while I can, I think.
>>
>>54793696
>no income
They have internet
>no income
They have a modern computer
>no income
They are using electricity to power their computer
>no income
1440 isnt common place in the least,and there is no reason to upgrade to this shit yet.
Same thing with 1080p.Early adopters were laughed at and mocked
>>
>>54793660
>qbittorrent
Thankyou, thats what I suspecting. And also im a pleb when it comes to torrenting, what is daemon? Im assuming I wont even need to use it just because I have no idea what it is but im just curious
>NotePad++
Forsure man, thanks. But isnt Notepad++ just a text editor for normal everyday programming? I ned something that generates all the possible functions and fields I can use when typing in a field (pls no bully). Also something that can pop up a web browser (or even better have a viewing window like Dreamweaver) at the press of a button when I want to see how something looks. Eclipse has that but it is absolute shit because something can look perfect in the Eclipse Viewing Window but look like absolute shit once you open it in Chrome. Notepad is based when using Java or C or anything like that but Im looking for something specifically for webdev. And also thankyou for the suggestion I do appreciate it.
>>
>>54793761
I mean they could be in high school and literally have no income.
>>
>>54793761
>Early adopters were laughed at and mocked
Laughed at and mocked by jealous poorfags.
>>
>>54793766
Daemon is a process taht runs in the background,independent of any other process.
Deluge you can run single mode or daemon mode.I prefer qbittorrent over delude's gui client. But if you need external connections or have other people wanting to add torrents,this is would the better choice.

>handholding code
Last i checked np++ did this, or maybe im thinking of blufish
>external programs
I think np++ has this too i belive
>>
I feel like I'm crazy, and probably this is really easy to find and I'm just dumb/searching for the wrong keywords. I'm on Ubuntu 16.04, and I want to set up a keyboard shortcut that inserts a fixed string wherever the cursor is. The closest thing I can find is a bash script from 20 fucking 11 that lets you set the clipboard to a particular string and then ctl+v as normal. I'll DO that if I have to, but that's a sequence of hotkeys and it really seems like I should be able to do it in one. (Plus the disadvantage of erasing what was in the clipboard, although if I was clever I could make that work using one of those clipboard apps with histories.) Don't greasy neckbeards love Linux AND copypasta?
>>
>>54793777
>high school
They have better things to do then watch videos and games on slow<>medium settings
>literaly no income
Yet they are here.

>>54793786
LETS SPEND 12K ON A 1080P 15 INCH TV
>6 months later
Casual granma getting a 32inch 1080p for 2k
>>
File: 1464488673322-376295868.jpg (2 MB, 3984x2988) Image search: [Google]
1464488673322-376295868.jpg
2 MB, 3984x2988
>get REALLY loaded
>Crank up micca mb42x with Sony 2 channel receiver
> So cackle-y

Can I get a recommendation on receiver + speaker combo? I just want to turn up whenever I get this drunk.
>>
>>54793797
Forsure man, Ill check it out.
>>
Im trying to root a shitty vulcan cruiser ii tablet, its not getting detected at all, their crappy website provides no drivers and all whats shown in device manager is unknown device, tried installing the intel drivers because its an intel tablet with no luck. Also tried booting up ubuntu from a usb but nothing happens either. Tried multiple cables and ports too. All it does is charge from the usb port.

How can I know if its the hardware whats fucked or if it needs an obscure driver? the advanced properties in device manager shows some info but I have no idea how to use it. help
>>
>>54792684
>Why are you using it on your PC that is hosting the files
I am not I was on my laptop.
>>
>>54793818
LSR 305's or 308's with any halfway decent audio interface. The meme is real, fucking love these things and they're great for drunken comfy.
>>
I want to "someday" (in the next year or two... or three) upgrade to a 1070 for gaming.

Should I go for value and upgrade later with a FX-8350? Or invest in an i5-6600k for hopeful future proofing, or enough to not bottleneck the 1070.

This is going to be for 1080p gaming at 60fps, 4k is quite a ways down the road for me I think, but I'd like to upgrade enough to be playing something like Witcher 3 or GTAV normal/high at 1080p60

I'm currently running with an r9 270, which is fine even with an fx-6300, but my Phenom II x4 crapped out so now I'm stuck with a phenom II x2 until I put down the money to upgrade both my motherboard and my CPU...
>>
So what's the deal with different graphics card models? Like, I wanna get a 1070 when it comes out. I know I shouldn't get the founder's version Nvidia is selling, but besides price what changes between that one and the ones other companies sell?
>>
Is there a good free source wireframe 'maker' that beats pen and paper style?

Also whats the best way to do wireframming? "show" things through a users pov with notes on details? Point out what is absolutely essential, etc?
>>
>>54794018
I'll add an addendum to this and say there's a bit of hiss on my 308's but fuck they still sound fantastic. Couldn't throw in my recommendation without that warning though.
>>
File: leovape.0.0[1].jpg (81 KB, 1280x854) Image search: [Google]
leovape.0.0[1].jpg
81 KB, 1280x854
>>54790775
Did ecig threads get banned from /g/? What happened? Why? Did they get moved somewhere?
>>
File: 1462234455696.jpg (33 KB, 337x334) Image search: [Google]
1462234455696.jpg
33 KB, 337x334
>Checking to see if my current rig would cause bottlenecking
>says my processor is too weak (i5 3570k) to work with something like a gtx 1080, and pretty much wants a newer version of that chip which is barely any different in terms of performance

Should I worry about this, or do you think I'll be fine?
>>
>>54790775
Holy fuck that filename is so hilariously true.

Plus that pun. Funniest thing I've ever seen on 4chan.
>>
>>54793938
pls /g/
>>
File: 1439696648466[1].jpg (87 KB, 900x900) Image search: [Google]
1439696648466[1].jpg
87 KB, 900x900
>>54794163
>>
File: Untitled.png (27 KB, 583x684) Image search: [Google]
Untitled.png
27 KB, 583x684
From what I can gather, the file size a video takes up is dependent on the bitrate of the video.

From this information, how would I determine the bitrate this DVR would record at?
>>
>>54794167
>barely any different
Are you sure?
>>
>>54794354
From the looks of it, yeah

http://cpuboss.com/cpus/Intel-Core-i5-4590-vs-Intel-Core-i5-3570K
>>
I need a buyers price quote on the following.

gtx 980 4 gig

gtx 980 6 gig

titan x 12 gig

What's the absolute most I should buy any of these right now used?
>>
>>54794405
>cpuboss
I'm done
>>54794408
If you can't throw money at nvidia, get amd. Poorfags not welcome.
>>
is 80 celcius under load normal?
>>
>>54794036
>year or two
NIgga thats a long ass time for new tech to come out, enoug that its pointless to look in parts now
>>
>>54794492
Yes. Don't worry about it.
>>
File: computerbuildv1.jpg (766 KB, 1797x3400) Image search: [Google]
computerbuildv1.jpg
766 KB, 1797x3400
>>54790775
Would you guys mind looking at this build for me?

I want to play Total War Warhammer on decent settings, and use it for moderately intensive college work. Should I spend more on a better GPU? I feel sketch about having such a cheap mobo but I don't plan on overclocking and don't see the point in spending more for mobo features I don't plan on using.

Any thoughts?
>>
I'm thinking of buying a 950. What price could be considered a 'good deal'?
Also, pairing it with a i3 6100, will I have the so claimed bottleneck?
I'd play at 1080 max for 2-3 years.
>>
>>54794326
That dosent list the bit rate it encodes as
Just take a 10s video and check the info with ffmpeg
>>
>>54794452
>If you can't throw money at nvidia, get amd. Poorfags not welcome.
if you can't give a quote dont post m8
>>
>>54794548
I can but I won't m8
>:^)
>>
>>54794561
>shit posts and gets called out on it
>tries to shit post his way out of it
good try retard.
>>
>>54794508
>kingston
No.Get a Samsung 850 256GB EVO for 10-20ish more.Its worth it.
>ddr4
You dont need ddr4 unless you're doing virtulization or heavy rendering/editing huge image files,.
>1tb
Im pretty sure a 2tb would be better GB/price right now.
>>
>>54794658
DDR4 boosts frame rate
>>
>>54794698
[citation needed]
Nope.
>>
>>54794561
>using the smiley with a carat nose
>>
>>54794658
I thought 2TB drives were more prone to fail?
>>
File: zUwqrhMh.jpg (66 KB, 1024x576) Image search: [Google]
zUwqrhMh.jpg
66 KB, 1024x576
>>54794710
[citation needed]
>>
>>54794799
>https://en.wikipedia.org/wiki/Philosophic_burden_of_proof
>>
windows defender
yay or nay?
im on 8.1 if it's relevant
>>
If I wanted to buy a used ~$1000 Macbook to be my primary computer, which should I be looking at?
>>
>>54790901
Is there a streamlined way of installing codex on MPC?

I used it a long long time ago, back when it came with lots of garbage installations you had to go along, way too user unfriendly.

I'd be willing to use it if the setup process is easy enough.
>>
>>54794824
The barrel of a gun
>>
>>54794824
If you have a student/military discount you can get a new 13" Macbook Pro for $1100
>>
>>54794843
top kek m8 epic banter 10/10
>>
>>54794824
You're willing to spend $800 more than a refurbished stinkpad but not $300 more for a new MacBook? Everyone will think less of you if you don't have one of the new colors.
>>
https://www.youtube.com/watch?v=RO5qhBsCdt0

Anyway to fix this shit? Pisses me off.
>>
>>54794869
That's what you get for having so many icons like a macpleb. KYS.
>>
>>54794869
I know how to fix that, but I'm not telling you because you added a completely irrelevant soundtrack.
>>
File: painting.jpg (166 KB, 1422x800) Image search: [Google]
painting.jpg
166 KB, 1422x800
best newbie friendly programs for video editing and basic animations(pictures)?
>>
>>54794808
You might as well have the Common Sense™ LTE, it will work faster.
>>
>>54795049
LTS*
>>
What dinner should I prepare for a smallfat before he goes away for six weeks?
>>
>>54795042
openshot
>>
>>54795049
im going to turn it off but if i get a virus i am screencapping this comment for reimbursement purposes
>>
File: Untitled.png (98 KB, 1024x768) Image search: [Google]
Untitled.png
98 KB, 1024x768
>Win10 PC is working fine
>use GF Experience to upgrade driver version
>go through installer
>screen turns black for 3-4 minutes
>get BSOD
>reboot
>display driver has reverted to standard VGA driver
>run installer manually
>get this

Any ideas on how to fix this? I'm not sure whether to blame Windows 10 or Nvidia.
>>
>>54795114
use DDU and reinstall
>>
>>54795108
>dl shit from tpb
>ask g for advice
>get ransomed
>>
Why is there such a hostile Intel vs AMD vs Nvidia mindset on /g/? I understand why there's sone brand loyalty among consumers but I'd like to think /g/ would know better and just get whatever serves their needs better at their price point, and would understand others doing the same.
>>
I think i've tried everything there is to try with this.
No matter the method it seems like windows will not fucking boot.
I've made a usb disk image several times and every time it either does not boot or it says some dumb shit like "drivers missing" what the fuck drivers could I have when it's supposed to be a fresh install?
Is there an easy way that will actually work 1st time other than buying this shit? I must be doing something wrong because for it to be this difficult, microsoft either knows what they're doing or they're retarded and so am I. I've tried all the disk writers and even the media creation kit.
Please, I just want to play my video games.
How the fuck do I install windows 10 to a usb and make it work?
Kill yourself microsoft.
>>
>>54795144
The average age around here is lower than you probably think

It's the same as when I was a kid and people argued about SNES vs Genesis at the cafeteria table
>>
File: 1351483570169.jpg (56 KB, 524x468) Image search: [Google]
1351483570169.jpg
56 KB, 524x468
How hard would an i5 3570K bottleneck a 1080?
>>
>>54795144
>subtle shilling
>implying amd was ever relevant
>>
>>54794896
>>54794900

Not my video but one of the only videos I see of the issue.
>>
>>54795085
>openshot
thanks anon ,if i could pirate is there something better?
>>
>>54795169
just install superior operating system gentoo
>>
if computers cant solve captcha how do they know i entered the correct one
>>
>>54795049
so I turned it off and now the taskbar won't autohide
fuck me, help me fix this or reimburse me nigga :(

>>54795142
what are you talking about
>>
>>54795166
See, I am not even 100% sure this is satire, and that's why I weep for this board.
>>
File: QXG56kG.png (169 KB, 506x556) Image search: [Google]
QXG56kG.png
169 KB, 506x556
>>54795204
>See, I am not even 100% sure this is satire
>>
File: 1461718462494.gif (294 KB, 328x263) Image search: [Google]
1461718462494.gif
294 KB, 328x263
Question about privacy and tracking: when opening a private tab in either ff or chrome nothing´s supposed to remain on your browser, but are your cookies, cache and other data still visible to the websites you visit?

If so, whats a good way to prevent this, creating an specific profile for this? are portable browsers a good option?
>>
>>54795247
also I noticed if you´re logged in to some website in either normal mode or private mode, the other mode will sometimes mark you as logged in. Makes me wonder how well "separated" they are and what method other than IP they use.
>>
>>54795199
>Ask stupid question
>Get stupid answer
???
>>
>>54795281
oh fuck are you saying i wasn't suppose to turn it off
fuckk
>>
>>54795311
Why are you using virus protection anyway?
Just don't get a virus, it's pretty easy.
>>
incognito mode in chrome just halts browsing history recording and cookie collection.
if you want to browse privately for the most part use the tor network.
>>
>>54792989
i need this oh my god
>>
>>54795388
>privately for the most part
God bless the American government.
>>
Someone explain a sync technology, from my understanding it makes magic to avoid screen tearing when your monitor doesn't react fast enough to your pc delaying a frame and causing the display to "tear". Does that mean if I buy a 144Hz monitor I won't face this issue? Assuming my pc can't go higher than 144fps.

Also, for an i5 6600k/16gb ram/1070 build, would you rather have a 1440p 60Hz monitor or a 1080p 144Hz monitor? Without G-sync or freesync.
>>
>>54795247
>>54795388
meant to link to you
>>
File: DosWQXX.png (14 KB, 220x300) Image search: [Google]
DosWQXX.png
14 KB, 220x300
Sure is summer in here lads
>>
>>54795407
144Hz 1080p. If you want high res don't get a 1070, get something with higher memory bandwidth.
>>
>>54793605
Atom
>>
>>54795439
I was leaning more on tha 1080p 144Hz too because
1. "Future proofing" - sounds dumb, but future games will obviously more demanding, so if the 1070 just scrapes by on 1440p I doubt in the next couple of years I'll be playing on 1440p without sacrificing some settings in game.
2. I work with a 144Hz monitor in my office and fuck damn if I don't notice the difference with my 60Hz monitor at home.
Thanks, what about a sync tech though?
>>
What's a good:
-cheap IPS monitor?
-1440p 27” IPS monitor?
I don't care too much about >60Hz refresh rate.
>>
>>54795489
Look on logicalincrements
>>
>>54795489
anything korean
>>
>>54795385
ok well i turned defender back on and that didnt fix things so then i rebooted and now everything seems ok
i am legit scared to turn it off now so ill leave it on
im not sure why im telling you this
i guess you got me into this mess so i might as well have kept you updated
>>
>>54795571
I'm not that guy.
Also if you feel safer that way that's fine but virus protection really doesn't do anything.
You still get viruses, it just tells you when you have them. That's why most people use common sense.
>>
>>54795571
Every second there is a Chinese or Russian hacker trying to get into your ports. Your system was infected the moment you turned the firewall off. It's time to junk that PC.
>>
>>54790775
Can I sell modems that people abandoned? A tech just told me that a missing modem is going for $600.

Where can I sell them and what do I need to know?
>>
Why do I have to unroot my phone to encrypt it?
I've tried to encrypt my phone with root but it simply doesn't try, why?
>>
>>54795604
well after my taskbar just locked the fuck up right as i turned off defender that shit did spook me yes
probly not a virus but enough to spook my not so tech savvy mind i suppose
and getting a notif if i have a virus doesn't sound so bad
better than no notif
also its called insurance mate. being tech literate / not being a dumbass and still getting a virus isn't impossible, its just unlikely

>>54795610
firewall was on, defender was on
im safe there matey :)
>>
>>54795610
>>54795665
defender was off*
>>
File: a73FFAF.png (318 KB, 500x475) Image search: [Google]
a73FFAF.png
318 KB, 500x475
>>54795614
Please stop posting this.

What kind of modem? A cable modem costs $20-$100 new. You can get a few bucks for them on ebay or craigslist if they're at least DOCSIS 3.0. Check that your "abandoned" modem isn't property of the cable company. Most are, because most people don't take the initiative to buy one instead of renting. And that's why people are fat.
>>
>>54795665
That's true but most of the time a virus is easy to get rid of as long as it's not some crazy shit.
And if it's the crazy shit you won't be able to get rid of it.
>>
>ITT: infosex experts
>>
How does Spain have so little crime with so much unemployment?
>>
>>54795833
Because they were raised not to be little shitheads, unlike in America.
>>
>>54795843
Is that why the panhandlers are way less bothersome than the restaurateurs and the dogs don't bark?
>>
File: 20160529_152546.jpg (236 KB, 1239x697) Image search: [Google]
20160529_152546.jpg
236 KB, 1239x697
Okay, what plugs do I plug into this?
Do they both go into the PS?
I heard of something about plugging the wrong stuff into the Graphics and frying it all
>>
>>54795889
Yes they both plug into the PSU
>>
>>54795889
a 6 pin PCI-E connector and a 6+2 pin PCI-E connector

don't plug the CPU connector in it, that's the only other one that's similar
the pins don't fit the shape anyway
>>
File: pcie-power.jpg (75 KB, 686x578) Image search: [Google]
pcie-power.jpg
75 KB, 686x578
>>54795889
They look like this (pic)

one end goes into your power supply, the other in your graphics card. Modern ones come in 6 pins, 6 pins + 2 detachable pins (see pic) or 8 pins. It's okay to leave the 2 detachable pins unconnected and only use the 6.
>>
>>54795918
>>54795919
Got 2 sets of PCI-E right here
So I plug the side that says PCI-E into the Graphics, one using 6 pins and the other in the 8 Pins with the additional 2 on the right side of it?
>>
>>54795947
6+2 and 6 goes to the GPU
>>
>>54795947
Correct
>>
File: PCI E.jpg (136 KB, 1059x591) Image search: [Google]
PCI E.jpg
136 KB, 1059x591
>>54795964
>>54795977
And whats the deal with this here?
Is it meant to be plugged into the Power with just one set of cables? Or is this just an extension?
>>
>>54795997
It's the same, it's just powered in series.

All the strain is on it's own rail, so if your PSU came with that cable, it should be fine.
>>
>>54796017
So I can use the one cable for both slots in the GPU?
These did come with the PSU
>>
>>54796033
yes
>>
File: dis.jpg (164 KB, 1059x591) Image search: [Google]
dis.jpg
164 KB, 1059x591
>>54796033
>>
the student accommodation i live at has free wifi but they give you a code so you can only use one device at a time. you can pay to add a second device but it's like $20 and fuck that. any ideas to get around their bullshit? I just want my dang phone and laptop on it at the same time; i tried mobile tethering but i dont think it worked. i just want to browse dank memes on multiple devices please send help
Thread replies: 255
Thread images: 47

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

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.
If a post contains personal/copyrighted/illegal content you can contact me at [email protected] with that post and thread number and it will be removed as soon as possible.
DMCA Content Takedown via dmca.com
All images are hosted on imgur.com, send takedown notices to them.
This is a 4chan archive - all of the content originated from them. If you need IP information for a Poster - you need to contact them. This website shows only archived content.