[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 - 507. 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: deleting_anime.jpg (42KB, 750x450px) Image search: [Google]
deleting_anime.jpg
42KB, 750x450px
WD40EZRZ @ 105€
ST4000DM005 @ 113€
MG03ACA400 @ 122€

Which one should I get? Do you have anything better to suggest in that price range for 3.5" 4TB?
4 posts and 4 images submitted.
>>
File: HDD - WD.png (207KB, 726x520px) Image search: [Google]
HDD - WD.png
207KB, 726x520px
Wondering which one can store music and films in the most patrician way
>>
File: HDD - ST.png (1MB, 2294x1500px) Image search: [Google]
HDD - ST.png
1MB, 2294x1500px
maybe I don't need this much high-res
>>
File: HD - Toshiba.png (2MB, 2602x1500px) Image search: [Google]
HD - Toshiba.png
2MB, 2602x1500px
this one is cool

File: 1504081619195.png (881KB, 955x1255px) Image search: [Google]
1504081619195.png
881KB, 955x1255px
I'm starting college next week for CCNA and the first week's lecture is going to be 2-3 hours long but I don't have time for this shit so I figured doing it at home would be better. It says "module 1" and nothing else, anyone who studied and goy CCNA could tell me what module 1 is about?
8 posts and 1 images submitted.
>>
Then don't pay to go to college you fucking retard.
>>
Go to the lessons

There's quite a lot to ccna
>>
there is nothing in the CCNA that would be referred to as "module 1", unless they're talking about a very specific piece of modular equipment being placed into a cisco device, which would not be a 2-3 lecture

that is something unique to the curriculum your school is using, and non-standard

File: 1.jpg (910KB, 2560x1787px) Image search: [Google]
1.jpg
910KB, 2560x1787px
Ryzen 7 with up to 3.7Ghz turbo
RX 580 4gb

Will it be good for work?
How to best hide the gaymen logos?
7 posts and 1 images submitted.
>>
>>62161994
build it yourself in a cheap, small, minimalistic case you faggot
>>
Print off a picture of your own eye and slap it on top.

Do it.
>>
Depends on your work and what >>62162002 said

File: IMG_5370.png (13KB, 544x184px) Image search: [Google]
IMG_5370.png
13KB, 544x184px
Since Google is becoming a leftist paradise, is there any other search browser that's actually better and easier to use?
13 posts and 2 images submitted.
>>
qwant.com
>>
>>62161956
Startpage
>>
More to the point is there any off line search engine which can filter results?

File: 1504019910886.jpg (125KB, 1280x960px) Image search: [Google]
1504019910886.jpg
125KB, 1280x960px
What are some things that improve your programming experience and results?
7 posts and 1 images submitted.
>>
Masturbating and cumming into my mouth once in a while. Helps me think.
>>
>>62161952
cocaine
>>
Pramiracetam and silence.

File: Nextcloud_Logo.svg.png (52KB, 1200x851px) Image search: [Google]
Nextcloud_Logo.svg.png
52KB, 1200x851px
Can someone redpill me on NextCloud? I'm trying to de-google myself and my main concern right now is having a way to sync my contacts and calendars. It's basically my last hurdle.

What do I need for it, and what's everyone's experiences like with it?
10 posts and 1 images submitted.
>>
Works great. For calendar/contact sync use davdroid on your de-googled android.
>>
>>62161915
A server with ~ 1gb of ram, a valid domain and letsencrypt (if you want the desktop client to work)
On your phone, you need davdroid (is on f-droid) to connect contacts and calendar, everything is pretty straight forward.

As for experiences with it:
It works great for small files, but if you change them a lot, pause the sync and then turn it on when you are done working or you will use a ton of data and all your other devices freak out.
Say you are editing a 10gb video file, you might find that you need to reupload that several times when you make changes.
>>
>>62161948
The client works perfectly fine without a domain and self signed certificates.

Sure, google...
8 posts and 4 images submitted.
>>
File: 1503762754784.gif (471KB, 288x216px) Image search: [Google]
1503762754784.gif
471KB, 288x216px
>>62161892
>Google
>Privacy
Kek
>>
>uses a phone
>is concerned about his privacy
>>
File: 12312442.png (229KB, 491x538px) Image search: [Google]
12312442.png
229KB, 491x538px
>>62161892
>Press cancel
Congrats you've beaten google

File: firecode2.png (3KB, 209x184px) Image search: [Google]
firecode2.png
3KB, 209x184px
I'm doing some firecode questions to prepare for coding interviews, and I'm struggling to figure out what's wrong with this code. The goal is to find the minimum sum path from root to leaf. The example tree in attached pic should return 10, but it's returning 14. Can someone help me understand why? I'm not great at recursion.

public int findHeight(TreeNode root) {
if(root == null)
return 0;
int l = findHeight(root.left);
int r = findHeight(root.right);
if(l == 0 && r != 0) return root.data+r;
if(l != 0 && r == 0) return root.data+l;
return root.data+Math.min(l, r);
}
4 posts and 1 images submitted.
>>
works for me, maybe you have the tree wrong
>>
>>62161826
Works for me (sorry for shitty code I never use C and wanted to see if I could do it)

#include <stdio.h>

int min(int l, int r) {
return l<r ? l : r;
}

struct TreeNode {
int data;
struct TreeNode* left;
struct TreeNode* right;
};

int findHeight(struct TreeNode* root) {
if(root == NULL)
return 0;
printf("%d\n", root->data);
int l = findHeight(root->left);
int r = findHeight(root->right);
if(l == 0 && r != 0) return root->data+r;
if(l != 0 && r == 0) return root->data+l;
return root->data+min(l, r);
}

int main() {
struct TreeNode root = {6};
struct TreeNode four = {4};
struct TreeNode seven = {7};
struct TreeNode eight = {8};
eight.left = &seven;
root.left = &four;
root.right = &eight;
printf("%d\n", findHeight(&root));
}


Returns 10
>>
Thanks guys, I'm just going to assume it's an issue with the way their tested builds the tree then because my code logically makes sense. Plus, you guys have pretty much verified it.

File: 1496851633607.png (114KB, 1843x1129px) Image search: [Google]
1496851633607.png
114KB, 1843x1129px
I heard you guys like Code of Conducts
19 posts and 4 images submitted.
>>
File: 1500783242171.png (39KB, 775x336px) Image search: [Google]
1500783242171.png
39KB, 775x336px
>>
>>62161547
thats why you dont want SJW, faggots, transfestites and women in programming
>>
>>62161547
My code of conduct is: don't be an asshole.

Trouble is, almost everyone in FOSS fails that test spectacularly. Most people on /g/, too. Y'all some salty motherfuckers. Contributing to open source attracts all the assholes around it. Last time I do you people any favors.

File: HackerNews.jpg (43KB, 999x550px) Image search: [Google]
HackerNews.jpg
43KB, 999x550px
I've always wanted to learn how to program and so far all I've done was make a shitty program in Ruby, and a small unfinished Game.

I want to be able to do more so I was wondering what the best way to learn is.

I was thinking of installing Arch Linux on my old Netbook and pretty much forcing myself to figure out how to use it with only the Wiki online but now that I type it out, it sounds kinda dumb.

I would continue to make programs with Ruby but I just don't know what to make outside of stuff that is too hard for me.

I'm pretty much going to end up forcing myself to learn how to Program, I keep hearing that the future of the job industry requires knowing programming, and I want a job so if me not knowing how to Program is why I don't get a job, it would be embarrassing.
11 posts and 2 images submitted.
>>
File: 1481836940757.png (2MB, 3840x2160px) Image search: [Google]
1481836940757.png
2MB, 3840x2160px
>>62161378
>>
>>62162083
what distro should a complete noob to cli start with. ready to learn and tinker
>>
>>62163390
Just use Debian

File: 2015-09-03_85lap.jpg (42KB, 800x400px) Image search: [Google]
2015-09-03_85lap.jpg
42KB, 800x400px
Why code at a desk that's stupid for your spine. Who else codes in bed?
39 posts and 5 images submitted.
>>
>>62161328
I don't code, I program.
>>
>>62161328
i used to a bit
>>
>>62161328
>Implying half-laying-down is better for your spine

File: unnamed.png (44KB, 300x300px) Image search: [Google]
unnamed.png
44KB, 300x300px
Is this real or just a placebo?
6 posts and 1 images submitted.
>>
everything in computers is placebo because its not real, its virtual
>>
>>62162716
But it's phone app, not desktop program.
>>
>>62164003
Phone is a computer.

File: 1485139140954.png (163KB, 848x1024px) Image search: [Google]
1485139140954.png
163KB, 848x1024px
https://www.theregister.co.uk/2017/08/29/mazda_toyota_linux_entune_car_infotainment/
sudo systemctl start engine
18 posts and 5 images submitted.
>>
>muh sysvinit
>muh minimalism
>>
linux finally gets drivers
>>
File: 1495417528193.jpg (29KB, 480x480px) Image search: [Google]
1495417528193.jpg
29KB, 480x480px
>>62161628

File: ss2.jpg (116KB, 640x480px) Image search: [Google]
ss2.jpg
116KB, 640x480px
How long until OEM no longer produce prebuilts and component manufacturers focus solely on mobile?

Desktop computing is the most comfiest experience but how long does the traditional desktop PC have left?
17 posts and 2 images submitted.
>>
File: maxresdefault (5).jpg (146KB, 1920x1080px) Image search: [Google]
maxresdefault (5).jpg
146KB, 1920x1080px
Until non-shit mini-itx builds like pic related are possible

Raven ridge from amd will hopefully make this possible. Anything bigger than pic related is considered clunky and ancient to most.
>>
>>62161323
unfortunately this

normies ruin everything
>>
>>62161310
A long, long time, considering how many units companies like Dell move.

Just got a tablet that I'm running Ubuntu on.

What's the best manga viewer for Linux?

Also general program recommendations. And Neofetch.
6 posts and 2 images submitted.
>>
>>62161133
https://itsfoss.com/best-comic-book-reader-linux/
>>
which tablet anon?
>>
>>62161211
owo

Pages: [First page] [Previous page] [497] [498] [499] [500] [501] [502] [503] [504] [505] [506] [507] [508] [509] [510] [511] [512] [513] [514] [515] [516] [517] [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.