[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 - 3417. 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: firefox_2017-04-02_15-29-47.png (55KB, 764x954px) Image search: [Google]
firefox_2017-04-02_15-29-47.png
55KB, 764x954px
FINALLY

A tech reviewer, unlike the so-called ones, that actually does their fucking job and tests shit out.

Ryzen tested with the RX480 vs the 6900k (on 720 so it's less bottlenecked) instead of relying on Nvidia ""drivers""" to work properly.
And other tests

>https://thetechaltar.com/amd-ryzen-1800x-performance/2/
269 posts and 44 images submitted.
>>
File: firefox_2017-04-02_15-43-15.png (49KB, 754x939px) Image search: [Google]
firefox_2017-04-02_15-43-15.png
49KB, 754x939px
>>59706650
Much of the same games, but 1080p with a GTX 1080, and the 6900k wins instead.

They tested with "threaded optimization" on/off, but didn't try MSI on.
>>
>>59706650
>Ryzen + Vega

This will be sweet if Nvidia's drivers being shit is true
>>
>>59706770
inb4 everyone tests Vega with a 7700k or some Haslel

File: firefox-photon-mockup.jpg (94KB, 990x536px) Image search: [Google]
firefox-photon-mockup.jpg
94KB, 990x536px
A P O L O G I Z E
18 posts and 3 images submitted.
>>
Ugly
>>
Except from that sick dark blue it looks terrible
australis 2.0
>>
Time to disable the ad spam shit.
Fuck you OP

File: flawless.png (910KB, 1228x480px) Image search: [Google]
flawless.png
910KB, 1228x480px
Find a flaw.
79 posts and 25 images submitted.
>>
>>59706318
There are none. Only hideous permavirgin poorfag losers will claim otherwise. Ignore them and let them commit suicide with their pissbottles and children's cartoons.
>>
>>59706341
This. Inb4 the anti-Apple virgin shills.
>>
>>59706318
My nigga. Love my new 15.4". It's objectively the best laptop ever made. Poorfags are always super jealous lmao

File: android-7.0.jpg (43KB, 1280x720px) Image search: [Google]
android-7.0.jpg
43KB, 1280x720px
What is so great about 7.0 Nougat?

>be me
>upgrade to Nougat yesterday
>nothing is different

what am I missing?
72 posts and 7 images submitted.
>>
>>59706205
The version number is different. Otherwise, general security patches and hey, Nougat is better than Marshmallow. Ever had a Charleston Chew?
>>
>>59706276
>The version number is different. Otherwise, general security patches and hey, Nougat is better than Marshmallow. Ever had a Charleston Chew?

man they sure have made a big deal out of which phones are getting it and which are not if there is no big difference or benefits to it I don't see what all the noise is about
>>
>>59706205
Biggest change you'll notice is dual window and a more aggressive doze. And some ui changes. That's about all.

Android O will be pretty much the same. A once again note aggressive doze, which is good IMO.

File: 1484332469273.jpg (32KB, 412x430px) Image search: [Google]
1484332469273.jpg
32KB, 412x430px
QUICK

WRITE A PROGRAM THAT CALCULATES THE GREATEST COMMON DIVISOR OF A LIST OF NUMBERS OR THIS BIRD IS GONNA STAB YOU
15 posts and 5 images submitted.
>>
#include <stdio.h>
#include <stdlib.h>

#define CAWCAWMOTHERFUCKERS
#define SIZE(x) ((sizeof x) / (sizeof *x))

int gcd(int a,int b) {
int x;

while(b > 0) {
x = b;
b = a % b;
a = x;
}

return a;
}

int main(void) {
int numbers[] = {6,12,9,27};
int result = numbers[0];
int n;

for(n = 1; n < SIZE(numbers); n++) {
result = gcd(result,numbers[n]);
}

printf("%d\n",result);

return EXIT_SUCCESS;
}
>>
File: 1490530848674.gif (8KB, 69x61px) Image search: [Google]
1490530848674.gif
8KB, 69x61px
what all numbers? what is greatest divisor?
>>
>>59706177
I bet there's a function in PHP for that

File: NASA_operations_control_center.jpg (455KB, 4256x2832px) Image search: [Google]
NASA_operations_control_center.jpg
455KB, 4256x2832px
Are there really no good actual headsets? Do you always need dedicated headphones and a mic?

Like what do these Nasa people use? Or on TV they have these tiny ass mics that have insanely good sound? Or sports commentators? etc. the list goes on

why are "gaming" headsets universally trash then?
13 posts and 5 images submitted.
>>
Air traffic controller specific headphones and boom mic costs at a starting point, 300 dollars for Sennheiser HMD 46.

Gaming headsets are trash because they cater to little Timmy's sense of aesthetics priced with in Mommy's budget.

And then the average audio quality isn't much better.

https://youtu.be/Be7tzLWQBC8
>>
>>59706084
I know AKG, Shure, Beyerdynamic and Sennheiser have all made professional broadcast class headsets with stuff like condenser mics.

Those sound really damn good compared to any regular headset.
>>
>>59706084
Plantronics makes some decent headsets - I just wish you could get the Apollo era ones with either an RJ45 plug, or a 3.5mm jack

File: stabby bird.jpg (6KB, 239x250px) Image search: [Google]
stabby bird.jpg
6KB, 239x250px
Sum all the primes under 2 million or this bird will stab you
21 posts and 4 images submitted.
>>
You posted this last week. Try 2 billion this time.
#define LIMIT 2000000000
#define BITS (sizeof(char) * CHAR_BIT)
/* Sieve of Eratosthenes with optimizations
* - bitpacked lookup table (2 billion in 250MB)
* - todo: double memory storage by omitting evens
* - do not check divisiblity for numbers > sqrt of n
* - do not check even numbers other than 2
*/
int main(void)
{
char *a = calloc(LIMIT / BITS, sizeof(char));
size_t i, j, sum = 0, sq = sqrt(LIMIT);
for (i = 3; i < sq; i += 2) /* skip all even numbers */
if (!(a[i / BITS] & (1 << (i % BITS))))
for (j = i * 2; j < LIMIT; j += i)
a[j / BITS] |= (1 << (j % BITS));
for (i = 2; i < LIMIT; i += (i > 2) ? 2 : 1)
if (!(a[i / BITS] & (1 << (i % BITS))))
sum += i;
printf("%zu\n", sum);
free(a);
return 0;
}
>>
>>59705939
#include <stdio.h>

#define LIMIT 2000000

char sieve[LIMIT] = { 0 };
unsigned long long primes[200000];
int count = 0;

void get_primes()
{
unsigned long i, j;

for(i = 2; i < LIMIT; ++i)
{
if(!sieve[i])
{
primes[count++] = i;

for(j = i*i; j < LIMIT; j += i)
{
sieve[j] = 1;
}
}
}
}

int main(){
unsigned long long sum = 0;
unsigned long i;

get_primes();
for(i = 0; i < count; ++i)
{
sum += primes[i];
}

printf("sum: %lld\n", sum);
}

sum: 142913828922

real 0m0.030s
user 0m0.028s
sys 0m0.000s


it even does good on a raspberry pi zero:
pi@raspberrypi:~ $ time ./a.out 
sum: 142891895587

real 0m0.198s
user 0m0.180s
sys 0m0.010s
>>
print('142913828922')

File: Screenshot_20170402-144931.png (966KB, 1080x1920px) Image search: [Google]
Screenshot_20170402-144931.png
966KB, 1080x1920px
homescreen thread?
42 posts and 25 images submitted.
>>
File: Screenshot_20170401-193941.png (944KB, 1080x1920px) Image search: [Google]
Screenshot_20170401-193941.png
944KB, 1080x1920px
Kawaii
>>
File: Screenshot_20170402-145101.png (1MB, 1440x2560px) Image search: [Google]
Screenshot_20170402-145101.png
1MB, 1440x2560px
>>59705841
>>
>>59705841
Where can I get that background or others like it

File: jerry1.jpg (38KB, 600x336px) Image search: [Google]
jerry1.jpg
38KB, 600x336px
Old Thread: >>59695484

Post your simple/small/stupid questions
Take at least 10 seconds to google first
358 posts and 44 images submitted.
>>
>>59705771

What's the easiest way to take a webm file on my computer, and get it to embed and play in a discord chat without uploading to YouTube. I've tried numerous webm sharing sites like webmshare.com, but they always just embed it with an external link, and not a play button.
>>
>>59705798
they only support embedding from popular sites like youtube, it will not embedded a direct link to a webm.
>>
I'm making a simple web crawler in Python.
I'm trying to print the subject in full as when I'm using find_all. When I use "find", only part of the subject is used. Using find_all, both the cut off subject and full typed subject are printed, when I only want the later.

import requests
from bs4 import BeautifulSoup

def web_spider(max_pages):
page = 2
while page <=max_pages:
url ='http://boards.4chan.org/news/' + str(page)
source_code=requests.get(url)
plain_text=source_code.text
soup = BeautifulSoup(plain_text,"html.parser")
for link in soup.findAll('a',{'class':'replylink'}):
href ="http://boards.4chan.org/news/"+link.get('href')

get_single_news_data(href)
print(href)


def get_single_news_data(item_url):
source_code = requests.get(item_url)
plain_text = source_code.text
soup = BeautifulSoup(plain_text,"html.parser")
for news_name in soup.find_all('span',{'class':'subject'}):
print(news_name.string)
web_spider(2)


Anything I'm doing wrong?

File: gpd_win-0.jpg (57KB, 780x550px) Image search: [Google]
gpd_win-0.jpg
57KB, 780x550px
Does anyone have one of these?
I'm curious, but these kind of devices usually are never as good as you'd like.
Wouldn't mind it for playing some less resource intensive PC games on the go and for emulation.
131 posts and 18 images submitted.
>>
File: 1480201055066.jpg (2MB, 3840x2160px) Image search: [Google]
1480201055066.jpg
2MB, 3840x2160px
>>59705683
it's great for hackintosh
>>
File: chrome_2017-04-02_12-45-21.png (644KB, 877x656px) Image search: [Google]
chrome_2017-04-02_12-45-21.png
644KB, 877x656px
>>59705719
nice shoop dodongo
>>
>>59705744
idk what your talking about

File: 1491122944002.jpg (777KB, 3000x2000px) Image search: [Google]
1491122944002.jpg
777KB, 3000x2000px
4 days ago, SpaceX launched a Falcon 9 booster for the second time. It took them 1 year to refurbish it for re-launch, but their goal is to achieve a turnaround time of 24 hours.

This means they will be able to launch a rocket, re-fuel it and launch it again within 24 hours. The Falcon 9 rocket is designed to re-launch basically indefinitely. At least 100 times.

Of course it will take them a few years to get that far, but its fair to say this is a quantum leap for spaceflight technology. We now have re-usable rockets!


Also, are russians aware that their space program is basically screwed, just like ESA?
204 posts and 30 images submitted.
>>
I'm pretty hyped about this stuff OP. SpaceX is doing some cool ass shit.
>>
>tfw currently in interview process with spacex
>new phd grad in EE from top-15 school
>apply online
>takes 4 months of working 2nd-degree linkedin connections to even get noticed
>pass first round phone interview with recruiter
>pass second round phone interview with engineer
>pass third round phone interview with engineering manager
>just turned in my 4th-round week-long take-home assignment
>if i pass, the next round is the final round; an on-site interview

pray for me, /g/
>>
inb4 marine lovers start crying about ocean noise pollution with these ear breaking loud rockets

File: bst 4.jpg (2MB, 4128x2322px) Image search: [Google]
bst 4.jpg
2MB, 4128x2322px
bst!
32 posts and 14 images submitted.
>>
File: DSC00786.jpg (742KB, 2183x1453px) Image search: [Google]
DSC00786.jpg
742KB, 2183x1453px
>>59705543
hi folks, gonna move out in 2 months from muh basement
>>
File: BaturuStayshun.jpg (172KB, 1920x1080px) Image search: [Google]
BaturuStayshun.jpg
172KB, 1920x1080px
>>59705543
Reposting
>>
>>59705543
>>59696015
(OP forgot to put /bst/ in the title, but it's still there)

File: 1490807028413.png (45KB, 602x500px) Image search: [Google]
1490807028413.png
45KB, 602x500px
Post your distros with said picture format.
21 posts and 11 images submitted.
>>
File: 1490803494659.png (26KB, 602x500px) Image search: [Google]
1490803494659.png
26KB, 602x500px
>>59705400
OP is a faggot that has to tell everyone he uses Arch
>>
File: 16b.gif (2MB, 425x481px) Image search: [Google]
16b.gif
2MB, 425x481px
>>59705400
guess mine
>>
File: 1491157106772.png (33KB, 503x500px) Image search: [Google]
1491157106772.png
33KB, 503x500px
>>59705400

You have exactly 5 seconds to explain why you're using Firefox in $currentyear

>Insecure
>Bloated
>Awful UI design
>SJW company
>All plugins to be broken soon
>Adware


inb4 muh botnet
42 posts and 5 images submitted.
>>
>>59705377
I'm a furry
>>
>$currentyear
>not
$"{currentYear}"
>>
File: 1335126138907.png (3KB, 429x410px) Image search: [Google]
1335126138907.png
3KB, 429x410px
>>59705386
I'll allow it.

File: 3866827311_86ca83047f_b 2.jpg (289KB, 1024x683px) Image search: [Google]
3866827311_86ca83047f_b 2.jpg
289KB, 1024x683px
Why do you hate Apple again?

>cheaper than equally specced ThinkPads
>better build quality
>UNIX OS by default
>excellent virtual machine support
>unrivaled media tools
>ultra HD IPS
173 posts and 21 images submitted.
>>
>>59705360
I don't hate Apple, their products just don't interest me anymore. Their laptops don't have docks, the AIOs are 16:9, and the trashcan is a trashcan. I guess the Mac Mini is the only modern Apple computer I'd even consider.
>>
>>59705409

you don't need docks with usbc
>>
>>59705441
Yes I do.

Pages: [First page] [Previous page] [3407] [3408] [3409] [3410] [3411] [3412] [3413] [3414] [3415] [3416] [3417] [3418] [3419] [3420] [3421] [3422] [3423] [3424] [3425] [3426] [3427] [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.