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

Archived threads in /g/ - Technology - 6480. page

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.

File: geforce1808-399x300.jpg (18KB, 399x300px) Image search: [Google]
geforce1808-399x300.jpg
18KB, 399x300px
I need a new GPU. I want to be able to play Dishonored 2, Far Cry Primal, Battlefield One, Quake Champions at a high settings with a good FPS.

My budget is $200 max, I don't care if it's Nvidia or Intel, I just care about performance and reliability.

Here are my specs
>i5-6600 3.30GHz CPU
>8GB DDR4 RAM
>EVGA GTX 570 GPU (plan to toss it as it's always overheating...)
>Corsair CX650M CX 80 PLUS BRONZE PSU
>ASUS Z170-K ATX Mobo


Any recommendations? I don't need anything overkill, just enough to play the above games at high settings with solid FPS.
49 posts and 11 images submitted.
>>
>>57106561
Nvidia or AMD*
>>
R9 280X.
>>
1060 or 480

File: 1470557147849 (1).gif (31KB, 500x492px) Image search: [Google]
1470557147849 (1).gif
31KB, 500x492px
https://twitter.com/wikileaks

Jullian Assange just deadman switched 3 encryption keys
135 posts and 16 images submitted.
>>
File: hillarypepe2.jpg (271KB, 1194x763px) Image search: [Google]
hillarypepe2.jpg
271KB, 1194x763px
>>57106294

>Trusting communist hackers from Russia

Thank you, comrade. MAGA! #Trump2016 #NeverHillarry
>>
>>57106380
>communist hackers from Russia
KYS nerd virgin
>>
Has anyone looked through the shit yet?

File: 1476657469881[1].jpg (39KB, 640x350px) Image search: [Google]
1476657469881[1].jpg
39KB, 640x350px
>http://www.slate.com/articles/technology/bitwise/2014/07/roko_s_basilisk_the_most_terrifying_thought_experiment_of_all_time.html

So how are you helping to create the basilisk? Dont tell me you want your rotting corpse to be resurrected and buttfucked by a pineapple for all eternity..
28 posts and 8 images submitted.
>>
>>57106281
>buttfucked by a pineapple for all eternity
well this is /g/...
>>
Tfw yourr genuinely frightened by the basilisk but you can't do shit to save yourself
>>
o man i red this and wa sso spooped
computer r scary guise

File: images (1).jpg (134KB, 666x999px) Image search: [Google]
images (1).jpg
134KB, 666x999px
is there a reason why a smart phone cannot send texts to someone with a non smartphone?
36 posts and 3 images submitted.
>>
GENTOO
>>
No. they can.
>>
>>57106271
but they never receive my messages
I seen it in action. and they can receive others. what can I check?

File: screenFetch-2016-10-16_17-26-46.png (196KB, 1600x900px) Image search: [Google]
screenFetch-2016-10-16_17-26-46.png
196KB, 1600x900px
sup /g/, Just installed elementaryOS
What's some good stuff i'll need to get started at ricing
55 posts and 14 images submitted.
>>
>>57106141
Because
>muh apple
nah. i'll stick with this and/or mint
>>
Gentoo
>>
OP here, on phone to reply while im cooking

File: B7YSJGJCAAAKn49.jpg (33KB, 600x300px) Image search: [Google]
B7YSJGJCAAAKn49.jpg
33KB, 600x300px
It is fun to install and play with Linux. But you will be very glad to go back to Windows. Don't waste your time. There will be at least one thing that doesn't work right. You will think you are different or even cool at first because you have something that is not like what your friends computers have. You will put many hours trying to get things to work the way they are supposed too. Why waste all this time when Windows is UNIVERSAL which means everything is designed to work with it? Forget about rebelling against M$. They don't care. Privacy concerns? Do you have a Facebook page? Bill Gates can just go there to see who you are without having to spy on your Windows OS. Just keep Windows and enjoy life with it.
50 posts and 6 images submitted.
>>
>facebook page
only retarded normies use social media shit
>>
>>57106075
>think OP is a cool guy
>reinstall windows
>CC stolen by microshit, SS stolen
>Bill gates uses my identity to take out a loan and buy water for starving africans
>can't compile shit without IDEs or Visual Shity-O
>kill self
>reinstall gentoo
>everything is fixed :')
>>
Nobody cares what OS you use. If you feel special for using windows, go ahead.
But don't spread lies about A as an argument to use B.
You seem like an idiot.

File: fudge_phantom.jpg (38KB, 405x405px) Image search: [Google]
fudge_phantom.jpg
38KB, 405x405px
Quick! Make a program that converts a decimal number to roman numerals!


#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#define BUFSIZE 16

const int number [7] = { 1, 5, 10, 50, 100, 500, 1000};
const char *numeral[7] = {"I", "V", "X", "L", "C", "D", "M" };

void conv(char *output, int input)
{
int i, j, _temp;
for(i = 6; i >= 0; i -= 2)
{
_temp = input / number[i];
if(_temp == 4 || _temp == 9)
{
strcat(output, numeral[i ]);
strcat(output, numeral[i + 2]);
}
else if(_temp >= 5)
{
strcat(output, numeral[i + 1]);
_temp -= 5;

goto loop;
}
else
{
loop:
for(j = 0; j < _temp; ++j)
{
strcat(output, numeral[i]);
}
}
input %= number[i];
}
}

int main(int argc, char *argv[])
{
char *output = calloc(BUFSIZE, sizeof(char));
int input = atoi(argv[1]);
conv(output, input);

printf("%s\n", output);

return(0);
}

10 posts and 2 images submitted.
>>
>>57106003
Git gud, mate.
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

const static struct { int n; char *str; } numerals[] = {
{ 1000, "M" },
{ 900, "CM" },
{ 500, "D" },
{ 400, "CD" },
{ 100, "C" },
{ 90, "XC" },
{ 50, "L" },
{ 40, "XL" },
{ 10, "X" },
{ 9, "IX" },
{ 5, "V" },
{ 4, "IV" },
{ 1, "I" },
};

void to_roman_numerals(int n, size_t outlen, char out[static outlen])
{
for (int i = 0; n; ++i) {
size_t len = strlen(numerals[i].str);

for (; n >= numerals[i].n; n -= numerals[i].n) {
if (outlen < len + 1)
return;

strcpy(out, numerals[i].str);

out += len;
outlen -= len;
}
}
}

int main(int argc, char *argv[])
{
if (argc != 2)
return 1;

char out[50];

to_roman_numerals(atoi(argv[1]), sizeof out, out);

puts(out);
}
>>
>>57106478
Elegant.
>>
>>57106003
What motivation do I have if a bird isn't going to stab me??

File: Screenshot_2016-10-17-00-10-56.png (2MB, 1440x2560px) Image search: [Google]
Screenshot_2016-10-17-00-10-56.png
2MB, 1440x2560px
Homescreen general
Rate and hate
66 posts and 40 images submitted.
>>
>>57106101
What Launcher do you use?
>>
File: Screenshot_20161017-003627.png (1MB, 1080x1920px) Image search: [Google]
Screenshot_20161017-003627.png
1MB, 1080x1920px
>>57105986
>>
>>57106264
I love it 8/10

File: 2000776747.jpg (540KB, 1450x1465px) Image search: [Google]
2000776747.jpg
540KB, 1450x1465px
I need your advice /g/. I've been using my moto G 2015 for about a year now, but I got the 1GB model (my bad) and it's quite laggy usually.

I need that vanilla android experience but the new pixels are waaay too expensive for what they offer (imo).

What should I get? Just go Nexus 5x? Maybe a cyanogen phone? Budget is max 500USD/EUR
10 posts and 1 images submitted.
>>
The OS is not an issue since most phones have CyanogenMod or some variant of stock Android. Just check before you buy. I recommend the Redmi note 3 pro. It's ~$200 depending where you are
>>
Redmi note 3 pro.

Make sure it's the snapdragon 650 with 3gb ram version.
>>
>>57105914

You can still pick up a new iPhone 4S for about €500.

Anyone looking to get this? 4 day battery life versus Apple's 18 hour watch.
19 posts and 3 images submitted.
>>
>>57105737

>he's fallen for the smart watch meme
>>
>>57105737
>Samsung

Get ready to lose your wrist.
>>
>>57105737
Smart watches are a solution looking for a problem.

File: unnamed.png (31KB, 300x300px) Image search: [Google]
unnamed.png
31KB, 300x300px
What is the best place to purchase Bitcoins?

I was trying to use Indacoin but it keeps giving me this message
''Unfortunately your payment has been declined. Please, check with your bank that your card does support 3D-Secure (Verified by Visa or Mastercard Securecode), meaning that you always enter a secret code/password tied to the card, when pay over the internet. Sometimes the code could be sent to your mobile phone number.''

I have already talked to my bank and was told it's an issue on there end.

And sites like Coinbase require an ID.
31 posts and 1 images submitted.
>>
Localbitcoins if you're trying to skip using an ID. I assume if you don't want to use an ID you're trying to avoid a paper trail in general, but using your bank account is gonna make one anyway

With lbc you either meet someone or do a direct cash deposit at a bank location. It's kinda scary but I've done it a dozen times and never lost money
>>
>>57105721
I need an online service that I can get my shit quickly.

I don't care much about the paper trial. The reason why I want to skip the ID is because it's a pain, and Coinbase doesn't give me an option to upload from gallery or anything!
>>
>>57105804
then your next best bet is find a bitcoin atm. There are tons of them littered around the country. It's instant, you just need an id and your credit card. Expect 4.5% fees. You can try mycelium on your phone or craigslist/localbitcoins but it's usually slow and dealing with people is obnoxious.

File: 1463518031429-fit.png (490KB, 449x401px) Image search: [Google]
1463518031429-fit.png
490KB, 449x401px
>cover your Webcam, someone could be watching

People actually do this.
23 posts and 3 images submitted.
>>
>he doesn't do this
>>
>>57105656
>2001+15
>not covering your webcam
>not using a minimum of 4 proxies
>not using peer blocker
>not encrypting everything on your hd
You probably use Norton huh faggot
>>
>>57105656
the head of the fbi does it

File: supesvsevans.gif (3MB, 800x352px) Image search: [Google]
supesvsevans.gif
3MB, 800x352px
What's the best way to get free WIndows 10?

Can I just install it and enter the product key later (never)?
18 posts and 4 images submitted.
>>
Go to any university that is part of Microsoft student partners. Get a free dreamspark account that is worth more than 14000$.
>>
>>57105910
Good idea I just got Windows 10 Education

how long do these licenseses last for?
>>
>>57106344
Windows is permenant, but Office will last until you quit college (Or more realistically, when they actually close your college email account)

File: 1441318876097.jpg (60KB, 1024x448px) Image search: [Google]
1441318876097.jpg
60KB, 1024x448px
By making a program that lists all finite sequences of integers such that each sequence occurs exactly once.
58 posts and 2 images submitted.
>>
>>57105348
>do my homework for me

go to dpt, they have a raging hardon for that sort of stuff.
>>
And they tell me that CS isn't a meme.

I'm glad I dropped out.
I made some projects and now I'm earning 70k my first year, debt free.
>>
>>57105348
translation:

pajeet, please do my homework

File: Cgg9cgaUIAARiCY.jpg (165KB, 850x850px) Image search: [Google]
Cgg9cgaUIAARiCY.jpg
165KB, 850x850px
Is this ram compatible with this mobo??
I'm having a hard time because I'm RETARDED.

http://www.newegg.com/Product/Product.aspx?Item=N82E16820232090

http://www.newegg.com/Product/Product.aspx?Item=N82E16813157543
7 posts and 1 images submitted.
>>
>>57105220
You know on the page with the mobo where it says "Specifications"? Click that and read where it tells you what type of ram is acceptable.
>>
More than likely, but who knows.

Is skylake extreme going on 2011-v3?
>>
>>57105220

It isn't compatible, which is odd because that RAM fits on almost anything.

Pages: [First page] [Previous page] [6470] [6471] [6472] [6473] [6474] [6475] [6476] [6477] [6478] [6479] [6480] [6481] [6482] [6483] [6484] [6485] [6486] [6487] [6488] [6489] [6490] [Next page] [Last page]

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