[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

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


File: 1.png (46KB, 1474x848px) Image search: [Google] [Yandex] [Bing]
1.png
46KB, 1474x848px
>1.1 processors
>ABOVE 1 GRAND PRICE

Apple fags will defend this.
9 posts and 3 images submitted.
>>
File: 1456009051163.jpg (296KB, 1000x710px) Image search: [Google] [Yandex] [Bing]
1456009051163.jpg
296KB, 1000x710px
inb4 pic related
>>
Most Apple fags don't defend this laptop.

It's shit. And they could have made it better with this years refresh.

They didn't.
>>
File: wallhaven-333925.png (2MB, 1920x1080px) Image search: [Google] [Yandex] [Bing]
wallhaven-333925.png
2MB, 1920x1080px
How can this run photoshop? 1.1 ghz processor, is this the era of pentium once again?

Anyone here have a usb powered fridge? Does it work well?
8 posts and 2 images submitted.
>>
File: ɯnıpǝɯ.jpg (10KB, 64x64px) Image search: [Google] [Yandex] [Bing]
ɯnıpǝɯ.jpg
10KB, 64x64px
>>54826735
Of course it isn't going to work well. It isn't insulated, the plastic looks 2mm thinck, and you are trying to cool a liquid.
Try asking >>>/sci/ why they work like shit.
>>
I put my iphone in one because apple has shit thermals
>>
>>54826735
I bought one a couple years back because I thought it looked pretty cool and its been working ever since. It "Cools" your drink but that's about it. Its more of a form>function thing imo

Now that the dust has settled, was this any good?
8 posts and 2 images submitted.
>>
>>54826699
Yes.

But not for the price MS wants.
>>
>>54826699
My friend has one. The drivers still aren't perfect, for instance any program using the GPU in any capacity will block the top piece from disconnecting. - A good deal of background services can do this, esp. if you're a developer. My friend sometimes has to go into task manager to exit background tasks that use the gpu.

The design is high quality, but dust easily collects in the hinge, and my friend has problems with metal dust from his shop getting magnetically attracted into the case, although this may be less of a surface book specific problem.

I'm interested in getting one because I like the aesthetics, but I'll be waiting for more fixes/ a price drop OR the second that's coming out later this year.

In the mean time, a better alternative may be produced by another group, so keep an eye out.
>>
>>54826805

Thanks senpai.

// Written in C++

#include "stdafx.h"
#include <iostream>

int main()
{
using namespace std;

int t = 1;

while (t <= 100)
{
if (t%3==0)
{
cout << "Fizz";
}

if (t%5==0)
{
cout << "Buzz";
}

if (t%3 != 0 && t%5 != 0)
{
cout << t;
}

cout << "" << endl;
t++;
}

cout << "Press any key to continue." << endl;
t++;

system("pause>nul");

return 0;
}
15 posts and 4 images submitted.
>>
x-7=19+x
x=26+x
0x=26
>>
>>54826701
:>)
>>
0 =/= 26

File: 1455902880040.jpg (7KB, 174x250px) Image search: [Google] [Yandex] [Bing]
1455902880040.jpg
7KB, 174x250px
Don't be shy.

// Leibniz' pi formula

#include<stdio.h>

int main()
{
int limit=100000000;
double pi=1.0,k=3.0;
for(int i=0;i<=limit;i++){
if(i%2==0)
pi += -1.0/k;
else pi += 1.0/k;
k+=2.0;
}
pi *= 4.0;
printf("%.7f\n",pi);

return 0;
}
12 posts and 3 images submitted.
>>
How to light up a 7-segment display like a retard.
Part 1/2
int a = 1;
int b = 8;
int c = 9;
int d = 4;
int e = 5;
int f = 6;
int g = 7;
//boolean var_start = LOW;
//boolean var_contagem=LOW;
boolean var_start_stop=LOW;
int led = 13;

void setup() {
pinMode(a, OUTPUT);
pinMode(b, OUTPUT);
pinMode(c, OUTPUT);
pinMode(d, OUTPUT);
pinMode(e, OUTPUT);
pinMode(f, OUTPUT);
pinMode(g, OUTPUT);

pinMode(2 , INPUT_PULLUP);
pinMode(3 , INPUT_PULLUP);
pinMode(13, OUTPUT);
attachInterrupt(digitalPinToInterrupt(2), f_start_stop, FALLING);
// attachInterrupt(digitalPinToInterrupt(3), f_stop, CHANGE);
}
void loop()
{
if (var_start_stop==HIGH){
digitalWrite(a, LOW);
digitalWrite(b, LOW);
digitalWrite(c, LOW);
digitalWrite(d, LOW);
digitalWrite(e, LOW);
digitalWrite(f, LOW);
digitalWrite(g, HIGH);
delay(1000);
}

if (var_start_stop==HIGH){

digitalWrite(a, HIGH);
digitalWrite(b, LOW);
digitalWrite(c, LOW);
digitalWrite(d, HIGH);
digitalWrite(e, HIGH);
digitalWrite(f, HIGH);
digitalWrite(g, HIGH);
delay(1000);

}

if (var_start_stop==HIGH){
digitalWrite(a, LOW);
digitalWrite(b, LOW);
digitalWrite(c, HIGH);
digitalWrite(d, LOW);
digitalWrite(e, LOW);
digitalWrite(f, HIGH);
digitalWrite(g, LOW);
delay(1000);

}
if (var_start_stop==HIGH){
digitalWrite(a, LOW);
digitalWrite(b, LOW);
digitalWrite(c, LOW);
digitalWrite(d, LOW);
digitalWrite(e, HIGH);
digitalWrite(f, HIGH);
digitalWrite(g, LOW);
delay(1000);

}
if (var_start_stop==HIGH){
digitalWrite(a, HIGH);
digitalWrite(b, LOW);
digitalWrite(c, LOW);
digitalWrite(d, HIGH);
digitalWrite(e, HIGH);
digitalWrite(f, LOW);
digitalWrite(g, LOW);
delay(1000);

}
if (var_start_stop==HIGH){
digitalWrite(a, LOW);
digitalWrite(b, HIGH);
digitalWrite(c, LOW);
digitalWrite(d, LOW);
digitalWrite(e, HIGH);
digitalWrite(f, LOW);
digitalWrite(g, LOW);
delay(1000);

>>
>>54826603
Part 2/2

}
if (var_start_stop==HIGH){
digitalWrite(a, HIGH);
digitalWrite(b, HIGH);
digitalWrite(c, LOW);
digitalWrite(d, LOW);
digitalWrite(e, LOW);
digitalWrite(f, LOW);
digitalWrite(g, LOW);
delay(1000);

}
if (var_start_stop==HIGH){
digitalWrite(a, LOW);
digitalWrite(b, LOW);
digitalWrite(c, LOW);
digitalWrite(d, HIGH);
digitalWrite(e, HIGH);
digitalWrite(f, HIGH);
digitalWrite(g, HIGH);
delay(1000);

}
if (var_start_stop==HIGH){
digitalWrite(a, LOW);
digitalWrite(b, LOW);
digitalWrite(c, LOW);
digitalWrite(d, LOW);
digitalWrite(e, LOW);
digitalWrite(f, LOW);
digitalWrite(g, LOW);
delay(1000);

}
if (var_start_stop==HIGH){
digitalWrite(a, LOW);
digitalWrite(b, LOW);
digitalWrite(c, LOW);
digitalWrite(d, HIGH);
digitalWrite(e, HIGH);
digitalWrite(f, LOW);
digitalWrite(g, LOW);
delay(1000);
}

}
void f_start_stop() {

var_start_stop=!var_start_stop;
digitalWrite(13, var_start_stop);
}


/*void f_start() {
digitalWrite(led, LOW);
var_contagem=LOW;
}*/

/*void f_stop() {
digitalWrite(led, LOW);
var_contagem=LOW;
}*/


>>
>>54826554
Week one ASCII art assignment.

http://pastebin.com/n4N2JpYE

File: CeTiRs1VAAEOQCG.jpg (93KB, 555x720px) Image search: [Google] [Yandex] [Bing]
CeTiRs1VAAEOQCG.jpg
93KB, 555x720px
HEY G WHO IS THE FUCKER IN THE STICKY IMAGE???
10 posts and 2 images submitted.
>>
gabe newell
>>
"Dr" Richard Matthew Israel Stallman
>>
Linus Torvalds

File: 1.png (21KB, 946x543px) Image search: [Google] [Yandex] [Bing]
1.png
21KB, 946x543px
>thinkpad they said
>go to lenovo and buy one
>fast shipping
>promise 5 days
>3 weeks to get my shit

REEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
7 posts and 1 images submitted.
>>
>>54826468
you bought the wrong model from the wrong place
>>
>>54826517
Not really since this bad boy came with a 600 dorra discount.
>>
>>54826549
>yoga
>p
>buying new
are you legit retarded

File: average linux users.png (766KB, 1273x395px) Image search: [Google] [Yandex] [Bing]
average linux users.png
766KB, 1273x395px
Why do all tech loons use Linux?
8 posts and 2 images submitted.
>>
>>54826304
>Terry
>linux user
great joke
>>
>>54826304
>Spatry
>Tech

Nigger's just a power user.
>>
File: windows_user.jpg (48KB, 480x480px) Image search: [Google] [Yandex] [Bing]
windows_user.jpg
48KB, 480x480px
>>54826304
>funny_minions_mic_drop.jpg

Barnacules Nerdgasm

XoD

File: NO_FILE_GIVEN (93KB, 486x500px)
NO_FILE_GIVEN
93KB, 486x500px
I know you guys hate iPhones and Macs, but what about iPads? Are Android tablets still shit? Are there any leaks about if an iPad air 3 is coming out soon?
35 posts and 7 images submitted.
>>
File: 1452436948111.jpg (154KB, 1000x615px) Image search: [Google] [Yandex] [Bing]
1452436948111.jpg
154KB, 1000x615px
>>54826243
>iPad
>>
>>54827025
>defending Microsoft instead of just hating on Apple
Pajeet...
>>
>>54826243
Surface 3, or a chink Windows/Android tablet.

Who else feel that 150% is too fuckhuge and 125% is too small?

Why doesn't windows let you set say, 137.5% magnification?
28 posts and 4 images submitted.
>>
No one else #legallyblind here?
>>
>>54826138
there is a custom option iirc, but probably not that granular
>>
>>54826138
Use 100% like a man

File: twitter_bird.png (1KB, 32x26px) Image search: [Google] [Yandex] [Bing]
twitter_bird.png
1KB, 32x26px
i am summerfag how to pronounce gentoo?

jentoo?
7 posts and 2 images submitted.
>>
>>54826117
jentoo same as gif (jif)
>>
>>54826140
How do I pronounce GNU? Jnuu?
>>
>>54826117
Gen Two.

>optical media is dead you said
>subscribe to netflix, hulu
>movies are all cropped / pan-scanned even when not originally shot that way
>lost 30-40% of original content
>black bars on the top and bottom are better "gone" these companies said
Now that the dust has settled, is optical media still dead?
7 posts and 3 images submitted.
>>
>>54826104
I mean I saw hateful 8 in 70mm in theaters. Nolan and Tarantino and JewJewAbrams always shoot in film, sometimes present in film.

Yeah home media is digital because it's too damn convenient otherwise, but analog film exists in theaters at least a bit. Not too bright of a future though
>>
>>54826104
No.

It's still necessary for firmware deployments to devices which have long become obsolete and no longer have their firmware readily available online.

Oh that and people who can't use the internet but develop code for enterprises but can't be half arsed to learn how to use an internal versioning system program database.
>>
>>54826143
I'm not talking about the Hateful 8, I'm talking about literally any widescreen movie.

File: 1398479243739.jpg (41KB, 415x367px) Image search: [Google] [Yandex] [Bing]
1398479243739.jpg
41KB, 415x367px
>exam in intro to databases in 20 hours
>still shitposting on 4chan
14 posts and 2 images submitted.
>>
>>54825927
>MFW had that exam 2 days ago
>Did not even have to study
>Shit was basic.
>Every single student in my class flunked
>I got 16/20

And this is what a Network and Systems Superior Tecnician course looks likes in university.
No one knows jack shit and then they blame me on their problems.
>>
File: 1462768355364.jpg (47KB, 493x342px) Image search: [Google] [Yandex] [Bing]
1462768355364.jpg
47KB, 493x342px
>>54825927
>100 word paper due tomorrow
>still looking for dank memes
>>
>>54825963
Oh and this included MariaDB SQL questions so yeah it was fun as fug.

File: toughbook.png (257KB, 700x350px) Image search: [Google] [Yandex] [Bing]
toughbook.png
257KB, 700x350px
>2016
>Not buying a toughbook
why not /g/
38 posts and 6 images submitted.
>>
Are you implying that /g/entoomen ever leave their homes?
>>
>>54826125
for the ones that live in their RVs and such
>>
>>54825840
It's very expensive and I don't like Windows.

File: Picture1.png (26KB, 707x294px) Image search: [Google] [Yandex] [Bing]
Picture1.png
26KB, 707x294px
a tenant living downstairs has moved away, and he left his laptop behind. he works as an IT guy. is it possible to extract the information from his HDD?
or is bitlocker 100% SECURE as people says?
19 posts and 3 images submitted.
>>
>>54825714
ring up the nsa for some help
>>
>>54825714
Give it back matt
>>
>>54825714
>left his laptop behind.
no give it back tyrone

Pages: [First page] [Previous page] [1019] [1020] [1021] [1022] [1023] [1024] [1025] [1026] [1027] [1028] [1029] [1030] [1031] [1032] [1033] [1034] [1035] [1036] [1037] [Next page] [Last page]
[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.
If a post contains illegal content, please click on its [Report] button and follow the instructions.
This is a 4chan archive - all of the content originated from them. If you need information for a Poster - you need to contact them.
This website shows only archived content and is not affiliated with 4chan in any way.
If you like this website please support us by donating with Bitcoin at 1XVgDnu36zCj97gLdeSwHMdiJaBkqhtMK