...
/sqt/ - Stupid Questions Thread
Other urls found in this thread:
forbes.com
eguides.sprint.com
cpu.userbenchmark.com
youtube.com
github.com
get.docker.com
askubuntu.com
pastebin.com
amazon.com
researchgate.net
inputmapper.com
twitter.com
shoutout to helpful and knowledgeable anons across the globe.
that includes you, prashant!
>56458715
Any help greatly appreciated please and thank you
God damn it, I meant
I need a GPU that drains 40w max and it's on the same level or more powerful than a GT 730/R7 240, any thoughts?
Okay just got new phone. This is creeping me out. How do i turn it off?
>tfw google feels even more invasive than apple (coming off iphone)
My pictures are auto tagged by category. How do i rid my of this spyware shit? Or are the native applications on verizon androids not good?
Ill go to if this isnt dumb enough
Any IGPU.
GT 740.
Radeon HD 6450. If you want, I can sell it for $20 in BTC on OpenBazaar (assuming you live in murica)
You've got 9 TVs? Holy shit annon. Pretty sure at least 3 of them are spying on you on their own.
I dont want it discovering anything unless i tell it to. I see it in my notifications when walking around not on wifi
Not an option now.
That cart is like 4x worse than the ones I mentioned but thanks anyway.
>GT 740
>TDP: 64W
Doesn't exist
What exactly do you think google is? You want any semblance of privacy it's CM or bust
There is one: the R7 240
I meant like how do i rid myself of bad applications or is android worse at privacy than apple. Fuck me. I love the phone but hate the data sharing
Why do you have 9 TVs? Are you on Wallmart or something?
You're right, the R7 240 and GT 730 are on the same level or more powerful than themselves.
What phone?
>Rust, C#.
Thanks, but I want to stay with C++ for now because I both need to learn it and need its speed.
What would be my best choice specifically for it?
It's hard to rate something as "worse". Google is Mr. big data, but apple's a special kind of crazy. Like I said, you want privacy, use an alternative rom like cyanogen, something that runs mostly open source and lets you trim down things you don't like. And minimize your use of google services.
I know, right?
Note 7
>inb4 unexpected jihad in my pocket
Theyre not mine. I see them when i am walking around my city. Just pls tell me how to turn off device discovery. Its probably killing my battery
>unexpected jihad
You lost me
Are Gsync and Freesync actually useful or are they just memes?
I got an android phone after holding onto a 3g iphone for many years( i mostly just listen to podcasts, but needed new one for work).
Problem is my group chat is weird. Sends everyone an individual message.
I googled it, but the answer didn't seem to help.
I have a Galaxy Express phone.
where can I download iso 27001:2013 for free, bonus points in spanish.
>unrelated pic
I'm sure the problem will resolve itself soon anyway
forbes.com
They eliminate screen tearing, if screen tearing annoys you then yes it will be useful.
Can you legally let your self-driving car self-drive you home if you are plastered?
Thabks a ton. Mate all fixed
No
Current self-driving cars still require the driver to maintain control of the vehicle and usually you're supposed to keep your hands on the wheel etc, so drinking would be a no-no. Our DUI laws haven't exactly been amended to account for them either. Give it another 5-10 years and they'll probably make some kind of exception as long as you lock it to autonomous mode, maybe even set a "drunk button" so you can't drift off and swerve the wheel or something.
Current law in many places doesn't even allow you to sleep in your car when drunk, don't expect things to change that quickly.
Yeah, I guess that's true, but then again self-driving car manufacturers could push it through as a marketing thing, like "look how many lives we can save from drunk drivers"
What are the recomended rail voltajes of 12v 3.3v and 5v. Because my psu hace 3.4 on the 3.3v rail.
How do I rebind mouse buttons on win10?
I keep getting different replies. So.
If I get a constant 144+ fps in L4D2, and I enable vsync to stop it from going to 300. Will this cause input lag?
If not, is it only because of the frames never fluctuate below 144?
Whats the best music player for android? Foobar? Ive asked this before but never got a response.
foobar is the only semi-decent one I've ever found. The rest absolutely suck.
Have you tried black player?
So, about a month ago i bought a cpu and motherboard off craigslist and used them to build a pc the cpu was an i7 2600k and the motherboard was an asus p8/p67 pro for $180 and my pc crashes maybe twice a day and when i gaym certain games like counterstrike crash all the time could the cpu/motherboard be bad and causing this or could it be that my hard drive is dying (its a good 5 years old) thoughts on this? a clean reinstall of windows did nothing.
Poweramp hands down. Blackplayer is ok too.
I'm building a computer and I want to stream vidya (cancer I know sorry). Anyway I am getting 1070 and I'm thinking which CPU I should get. Currently its between 6600k and 6700k. While obviouy 6700k is better my question is. How much better? Is it going to make a significant impact on performance when streaming from the same PC or will it be about the same?
i got an rx 480 and now my arch linux install won't start X. i'm planning to install the necessary drive for it, however i configured my networks settings to be wired only and im now wireless. is there a generic wifi manager that comes with arch or am i going to have to plug in a cat cable?
Is there a way to shuffle by folder/album in AIMP? It's driving me nuts coming from foobar where it worked out of the box. Prefer listening to full albums, but I don't want them to always play in the same order.
Bump from previous thread
OK, so I’ve got a Pokémon SQLite database, data structured as so:
Table: Pokemon
id | name
------------------
1 | Bulbasaur
2 | Ivysaur
3 | Venusaur
4 | Charmander
...
Table: PokemonType
id | PkmnID | TypeID | Slot
----------------------------
1 | 1 | 5 | 1
2 | 1 | 8 | 2
3 | 2 | 5 | 1
4 | 2 | 8 | 2
5 | 3 | 5 | 1
6 | 3 | 8 | 2
7 | 4 | 2 | 1
...
and finally, Type
id | name
------------------
1 | Normal
2 | Fire
...
5 | Grass
...
8 | Poison
...
How do I join these tables to get this:
PkmnID | PkmnName | Type1 | Type2
----------------------------------------
1 | Bulbasaur | Grass | Poison
2 | Ivysaur | Grass | Poison
3 | Venusaur | Grass | Poison
4 | Charmander | Fire | -
The closest I’ve got is
select PkmnID, PkmnName, typename as Type1
from pokemon
join pokemontype on pokemon.id = pokemontype.pkmnid
join type on pokemontype.typeid = type.id
where pokemontype.slot = 1
which gives me
| PkmnID | PkmnName | Type1 |
|--------|------------|-------|
| 1 | Bulbasaur | Grass |
| 2 | Ivysaur | Grass |
| 3 | Venusaur | Grass |
| 4 | Charmander | Fire |
I have an image file that is 130mb, but opening it in windows photo viewer eats up 8gb ram and slows my pc to a crawl. the image also crashes paint and gimp.
I just want to look at it easily, not edit it. whats the better image viewing program option for me?
Should I buy 500gb ssd or 250gb ssd and 1tb hardrive? Its about the same price.
Real quick....
my professor didnt really explain it, but if I wanted to require a range of an ID when I am creating a column in a table in SQL, what is the syntax for the constraint?
Would it just be
CONSTRAINT TABLENAME_TBLID_cc CHECK ((TBLID>100) AND (TBLID
is pic related (TP-Link AC1900/Archer C9) a good router?
if not, recommend me a better one
>dual band
>gigabit ports/wifi
>external antennas
>informative status lights (why the fuck is this so rare on routers)
What do I do now that ITT Tech is closed?
Whenever I try to connect to a VPN while connected to my schools wifi it immediately disconnects. Why does it do this and how can I bypass this? (iPhone 6s, Opera VPN and TunnelBear)
That looks good ONLY if you can install DD-WRT on it. If you can't, then find a router that can.
DD-WRT can overclock your router and increase the transmitting power beyond FCC regulations. It also has better support, better QoS, more features, and better performance than most firmwares.
Are thermal pads the best way to connect a heatsink and a device that are a couple of mm away? Is there anything better that I can whip up at home that does the same thing?
>DD-WRT
I've seen this a lot on here concerning routers. I don't consider myself a poweruser at all, is this retard-proof?
Remove the Pokémon thing and then the neckberds may help you
Installing it can take some knowledge (just general not-fucking-up skills, that's all). After that, you wouldn't need any more knowledge than what you need to set it up without DD-WRT.
FYI: Don't set the transmitting power to 251mW (the max the software will go), that's how literal house fires start.
how come some things on amazon are way more money than the price at the store?
No, but it's not impossible either. If you look up the basics and never touch anything you don't need you should be fine. As far as installing it goes, half the battle is finding the right router and guide.
Because the sellers realize they can charge more and still make enough sales to be worth it.
Sadly, none of the AC series of TP-Link routers are supported (yet). I don't even know if DD-WRT has support for AC (yet).
Any vpn that doesn't run over Openvpn is pretty easy to block.
I just installed GNU/Linux and i am currently using a shit laptop to run it. During the installation I installed GRUB to the MBR now i cant run Windows 10. GRUB did not detect Windows 10. Booting to "Lenovo recovery center" and selecting Windows boot manager brought me to a diagnostic screen. In the diagnostic screen i selected "boot to windows 10" and it just rebooted back to GRUB. can someone help me add Windows 10 to GRUB? I am a little tired and don't feel like using Google.
Thanks in advance.
Trying to install Discord (on Windows 7) and the computer locks up completely, no errors, no blue screen, no nothing. The mouse just stops moving and I am forced to hard reboot. Manually extracted the program from their shitty installer and ran the program's exe directly. Same thing happened. It flashes the little loading windows with the witty text "Installing more pylons" and then as soon as the main program window (or what I assume to be the main program window) loads, the computer immediately locks up, before it can even render anything in the window. Any ideas? Aside from reformatting.
What is OpenVPN and is there something you can link me to to help me set it up and understand it
Whenever I try to do a command with docker, the only output is "Cannot connect to the Docker daemon. Is the docker daemon running on this host?"
I'm running Docker 1.12.1 on Raspbian Jessie following these (github.com
>deb/rpm install: curl -fsSL get.docker.com
This is a freshly installed Raspbian Jessie image.
Thanks!
I've been looking for a way to text from my comp since im to much of a lazy fuck to keep picking up my phone. skype wants money and hangouts wont let me for some reason, email is crawling slow, and i dont trust any of those free sites.
Give your money to a real school that won't rip you off and ruin your life.
Yes
Openvpn is a VPN protocol. Its the actual software system that connects and protects two linked networks or computers. PPTP and L2TP are the more common alternatives, and they're much more easily blocked. Some companies use only one type of VPN, others give you a choice. Openvpn is generally best. Never use PPTP.
Use MightyText to send sms from a browser.
I want no images in my browser to load by default. I want to be able to right click where the unloaded image is and click load image, and I want that single image to load.
Can Firefox do this?
permissions.default.image set to 2 does not allow this.
All the image blocking/whatever addons seem to only toggle permissions.default.image from 1 to 2 and do nothing else.
What are you using your PC for? I would get the sdd+hdd combo since I need some space. If you already have a hdd go for the ssd.
I bought a laptop that "was fucked" for $40. Its not bad machine by any means, i3, 8gb ram etc.
Long story short, it has just a bad hard drive. Replaced it with a backup I had, installed Windows 7 (legally even), and now I can't get this damn thing to install any other updates. Whether using Windows update or from the site itself.
I understand Windows 7 update hangs are a common problem on fresh installs, but I can't seem to find a fix that works for me.
Amazon is having a sale on phone with some kind of pre-installed Amazon botnet.
Could I just root the phone and remove all the bloatware after purchase? Does anyone have any experience with these phones?
preorder the one without ads for the same price
Thanks, I tried it but it only works with Android. Yes I'm a gay retard with an iPhone so I'm pretty sure apple is so into itself I probably wont be able to use anything unless I buy a Mac
I have two dualshock 4 controllers. I have inputmapper installed on a brand new Skyake that is using a Windows 10 OS.
>I'm dual booting linux, using windows 10 for direct x only. pls don't derail.
If I try to pair either of my controllers when inputmapper is running, only one controller will pair. The other controller will not pair. It doesn't matter which controller I use, this is true for both controllers if I switch the order I pair them. No matter which controller I pair first, the other controller will not pair. If I close Inputmapper, I can pair both controllers, but then when I open inputmapper, neither controller will connect. They remain in a paired state.
What do?
>askubuntu.com
thanks but im not using ubuntu
>Standard Version - Without Offers & Ads
Can't you click the button?
why dont you try it out and let us know
Why can't they just put physical buttons on these phones? Look at the wasted space
not sure if this belongs in /flt/
I currently have a dual boot setup with win10 and arch and I would like to add a win7 partition.
I'm not really familiar with installing windows so how would i go about triple booting 10, arch, and 7 without destroying my current partitions
Yeah, that's a tough combo, the iphone with a PC. I'd double down on hangouts, figure out why it's not working for you. If you're using chrome it should be pretty much automatic. Otherwise it's just a matter of digging through apps and hoping apple allowed something that will do the job for you.
Windows 10 anniversary update broke exclusive mode.
How do interpolation periods and sample periods work? Trying to implement this algorithm:
researchgate.net
I can`t figure out what Ts is supposed to be!! PLZ HALP!!
I thought as much, alright well thanks, I'll see why hangouts is acting up
How do i reduce my POST time Sup Forums?
Install gentoo
Vsync is shit on this game, it's shit on Source based games in general. You can try using the fps_max command or limiting it on nvidia control panel.
The "standard version" is $50 more. The botnet version is $99 for Prime members.
Well it's not that different than setting up a dual boot. You'll need to make space, if you don't have it already you'll need to shrink one of your existing partitions. You can make the partition in advance just to be on the safe side, then just install the new windows to it. When you're done use Grub2Win to restore grub as your bootloader. It also helps to use clonezilla or macrium to make a complete system image before you begin so you have a fallback if something goes wrong.
What are you using?
So? You're editing grub...