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


File: peeps bird.jpg (92KB, 500x222px) Image search: [Google] [Yandex] [Bing]
peeps bird.jpg
92KB, 500x222px
I'm looking for a basic entry level netbook or laptop. It doesn't need to be super fancy, it just should be able to run Windows 7. I'm aware of the distro wars, this lap top will be used for work stuff as the boss says it has to be windows.

Any suggestions? Stuff to look for? Stuff to avoid (besides obvious crap like "nothing broken")? Bonus points if you can snag a used one off ebay for under a hundred bucks.
7 posts and 5 images submitted.
>>
File: image.jpg (2MB, 4032x3024px) Image search: [Google] [Yandex] [Bing]
image.jpg
2MB, 4032x3024px
Thinkpad
>>
File: 4kot.jpg (183KB, 1260x1024px) Image search: [Google] [Yandex] [Bing]
4kot.jpg
183KB, 1260x1024px
macbook pro retina
>>
File: image.jpg (117KB, 972x768px) Image search: [Google] [Yandex] [Bing]
image.jpg
117KB, 972x768px
>>55097217
>>55097125
>tfw I killed my budgie with fireworks when I was 13

File: an_appicon_192.png (5KB, 192x192px) Image search: [Google] [Yandex] [Bing]
an_appicon_192.png
5KB, 192x192px
Does anybody know where I can get adobe animate or flash for free?
16 posts and 1 images submitted.
>>
>>55097100

yes
>>
>>55097100
Yea, I know
>>
have you tried adobe.com

File: Cool.Room.jpg (1MB, 1280x1024px) Image search: [Google] [Yandex] [Bing]
Cool.Room.jpg
1MB, 1280x1024px
Any recommended mice guides /g/?

My Logitech G400s is finally giving in.
6 posts and 1 images submitted.
>>
Please keep me from buying a Razer DeathAdder /g/.
>>
>>55097024
g502 / deathadder / mionix
>>
>s
Should've just got the G400

I recently wrote a linked list in C for fun.

I implemented a delete and insert function. I chose to do it in a way, that multiple occurrences will lead to multiple deletions/insertions. Now I wanted to implement a move function too, but it is not clear multiple occurrences now.

Do you have any suggestions?
11 posts and 1 images submitted.
>>
>>55097021
>Linked List
please don't ever do this again.
>>
>>55097021

Here is my code:

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

typedef struct llist llist;

struct llist {
int value;
llist* next;
};

llist* head = NULL;
llist* curr = NULL;

llist* append(int value) {
llist* ptr = (llist*) malloc(sizeof(llist));
ptr->value = value;
ptr->next = NULL;

if (!head) {
head = curr = ptr;
}
else {
curr->next = ptr;
curr = ptr;
}
return ptr;
}

void delete(int target) {
llist* ptr = head;
while (ptr) {
llist* nxt = ptr->next;
while (nxt && nxt->value == target) {
ptr->next = nxt->next;
nxt = nxt->next;
}
ptr = ptr->next;
}
}

void insert(int target, int value) {
llist* ptr = head;
while (ptr) {
if (ptr->value == target) {
llist* new = (llist*) malloc(sizeof(llist));
new->value = value;
new->next = ptr->next;
ptr->next = new;
}
ptr = ptr->next;
}
}


>>
>>55097039
Linked lists are needed for certain applications faggot. Take a data structures class And an OS class. Processes are best stored in a linked list for OS because of the O(1) addition/removal of them. Other aspects too

File: nokia.jpg (244KB, 810x1309px) Image search: [Google] [Yandex] [Bing]
nokia.jpg
244KB, 810x1309px
Why do billionaires still use dumb phones?
25 posts and 1 images submitted.
>>
non botnet
>>
>>55097016
You dont become a billionaire by spending all your money.
>>
>>55097016
Why do you even need an smartphone?

File: big-phablet.jpg (18KB, 500x300px) Image search: [Google] [Yandex] [Bing]
big-phablet.jpg
18KB, 500x300px
Are there any good phones for under 300 dollars that aren't big as shit?

Phones shouldn't have screens bigger than 5 inches.
6 posts and 1 images submitted.
>>
Yes

>>>/g/spg/
>>
>>55096990
>>55096990
Cool thread but I hate generals.
>>
>>55097040
You'll just have to deal with it, some generals are for the best. No need to have a ton of threads spamming the board when you can just have one big thread.

File: image.jpg (2MB, 3264x2448px) Image search: [Google] [Yandex] [Bing]
image.jpg
2MB, 3264x2448px
>decide to try linux
>wipe my whole hdd actidentally
ahaha you just cant make this shit up
ahaha
fuck me
61 posts and 4 images submitted.
>>
thanks for letting me know, keep us updated.
>>
>>55096937
You know you can remove all your partitions installing Windows too, right?
>>
>>55096937
>Accidentally

But it clearly says what you're doing, it's no accident.

No worries though, just fresh install and carry over your files from your backup external hard drive. Y-you do make bi-weekly backups, correct?

File: xBgSksM.jpg (19KB, 340x260px) Image search: [Google] [Yandex] [Bing]
xBgSksM.jpg
19KB, 340x260px
>People on /g/ shill this company for free

Why is /g/ so eager to support a company that is supported by terrorists and jews?

>but muh open sores Linux drivers
Has proprietary blobs

>but muh dx12, muh async
Make up your mind, Is w10 good or bad?

Your precious rx480 will only work on windows 10. AMD no longer supports previous versions of windows to force users to use dx12.

Rx480 isn't even more efficient than Pascal, it barely uses less power but performs much worse.
32 posts and 6 images submitted.
>>
He's going all out...
>>
fuck off retard
>>
>/g/ is one person

File: 220-G2-0650-Y1_XL_4.jpg (216KB, 1200x1200px) Image search: [Google] [Yandex] [Bing]
220-G2-0650-Y1_XL_4.jpg
216KB, 1200x1200px
So I got myself the tier one meme 750 g2. Tested it and detected no coil whine or other disturbing issues.

However, I'm wondering whether the rm750i is significantly quieter? I can still return the 750 g2 and take the corsair, though it's about 20$ more expensive; I got the g2 at a good price.

Is it worth it, or should I just stay with the g2?
24 posts and 6 images submitted.
>>
>>55096682
Install gentoo
>>
>>55096715

It's already installed.
>>
>>55096682
bought it in febuary, burnt out my msi gaming 3.
$337 to replace with msi gaming 5. a down grade.
so far this pws cost me $500.

Hey /g/, about to buy a 512gb Samsung 950 pro m.2 for my os and important programs, but when I put all the parts together in pcpp, there was an incompatibility between my motherboard (Asus x99 deluxe II) and the drive. That doesn't make sense to me because it os compatible with the last x99 deluxe mobo so is there any truth to this, or was that just a glitch in the website?
10 posts and 1 images submitted.
>>
Not all M.2 SSD's are notched the same.
>>
one or more of your sata ports will not work, that should be the only incompatibility.
>>
>>55096656
Yup, it'll disable 1 or 2 sata ports, but that's it

File: cat.jpg (24KB, 700x466px) Image search: [Google] [Yandex] [Bing]
cat.jpg
24KB, 700x466px
>when you finally abandon the 'free software' ideology and just start running whatever the fuck software you want

Feels like I just escaped from a religious cult.
50 posts and 7 images submitted.
>>
>>55096463
>whatever the fuck software you want


You mean the few stuff you can afford and really need.
>>
>joining a cult to begin with
>>
>>55096463
Welcome to freedom.

Freedom of choice™

File: ayymda.jpg (473KB, 1920x1080px) Image search: [Google] [Yandex] [Bing]
ayymda.jpg
473KB, 1920x1080px
>affordable Premium VR ROFLMAO
>low-cost meme
>$199
>Every rx 480 is FE just like nvidias while nvidias price will stabilize after few weeks
>3 years old gpu for same price as you could buy it 2 years ago
>3rd rebrand in row

Amd Tards on suicide watch like never before
7 posts and 2 images submitted.
>>
eat da poo poo
>>
GET BENT!

We’ve just received a word from Hardware.Info that NVIDIA is issuing a price cuts for its high-end GeForce GTX 900 series.
NVIDIA GeForce GTX 980 Ti, 980, 970 are now cheaper

In the last 24 hours the prices of many GTX 900 cards has dropped by almost 20%. According to the information provided by HWI, GeForce GTX 900 series receive the following price cuts:

GeForce GTX 980 Ti: 125 USD
GeForce GTX 980: 75 USD
GeForce GTX 970: 25 USD

http://videocardz.com/61116/nvidia-geforce-gtx-980-ti-gtx-980-and-gtx-970-receive-a-price-cut
>>
>rebrand
Proof?

File: Untitled-1.png (3MB, 1280x1440px) Image search: [Google] [Yandex] [Bing]
Untitled-1.png
3MB, 1280x1440px
Ok /g/. I have two copies of the same song from different sources online. 1 is 320 MP3 and appears to have full bandwidth (just over 21K). The other is FLAC but is cut off at 20k. It was my understanding that FLAC was supposed to be lossless. So why does the MP3 version have information that the FLAC version is missing?

NOTE: I am not here to start a flame war over music quality, this is purely a technical question.
18 posts and 7 images submitted.
>>
The FLAC one is a bogus file converted from lossy.
>>
>>55096397
the flac is shitty. How hard is this to grasp
>>
File: flac.png (3MB, 2498x1364px) Image search: [Google] [Yandex] [Bing]
flac.png
3MB, 2498x1364px
>>55096397
It's likely that the FLAC was transcoded from a lossy format and it's also possible that they are of different master. However the cut in FLAC version in comparison to the band energy of the mp3 and shelving really make it seem like the this is someone being smart and just re-encoding mp3s into FLAC. Bandwidth is not a good indication alone as it's perfectly possible to have a lossless recording cut way below 20 KHz. Pic related is an actual lossless track.

I have gotten some large amazon gift cards. I want to turn them into cash.

What would be the best thing to buy on amazon and then resell with the smallest loss?
14 posts and 1 images submitted.
>>
>>55096367
iPhone 6s Plus 128gb
>>
>>55096367
weed
>>
Sell it on Ebay OP

File: Deepin.png (308KB, 669x710px) Image search: [Google] [Yandex] [Bing]
Deepin.png
308KB, 669x710px
Anyone here use Deepin GNU/Linux? Much more modern than any Windows or Mac out there and free to download, such a modern and beautiful Operating System
14 posts and 2 images submitted.
>>
>>55096358
I tried it out, but I don't see how it is more modern than macOS nor Windows 10.
What do you mean with modern?
It seemed it was lacking in a lot of functionality and features you'd come to expect from an OS nowadays.
I have to admit, it has a pretty comfy look, even though it was a bit non-consistent, at least the version I tried.
>>
>>55096358
>made by Chinese people
No thank you.
>>
>>55096442
tell that to normies, iPhones are made by chinks

Pages: [First page] [Previous page] [707] [708] [709] [710] [711] [712] [713] [714] [715] [716] [717] [718] [719] [720] [721] [722] [723] [724] [725] [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