[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 - 2243. 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: nixos-hires.png (45KB, 1279x392px) Image search: [Google]
nixos-hires.png
45KB, 1279x392px
Why aren't you using the best linux distro in the world /g/?
17 posts and 4 images submitted.
>>
Only supports x86(_64)
>>
>>60892873
If your architecture isn't compatible with the binary cache, then packages are downloaded from source. People have it running on RPi and other ARM systems.
>>
>>60892894
What about MIPS?

File: 1468453553434.jpg (186KB, 665x1000px) Image search: [Google]
1468453553434.jpg
186KB, 665x1000px
Why haven't you compiled your own linux kernel, /g/?
Do you enjoy knowing that your generic distro-provided kernel loads hundreds of MB's of unnecessary shit on startup and during idle?

Imagine having baked-in support for tens of thousands of devices that you don't ever use, that's what your Linux kernel is doing.
Why do you need both intel AND amd support in your kernel? You only have 1 CPU.
22 posts and 4 images submitted.
>>
because i use macOS where i dont have to deal with that kind of dumb stuff
>>
>>60892732
There's already a kernel specifically for my hardware
>>
>>60892732
It still only loads drivers for what it detects

File: 1497381832151.png (30KB, 747x491px) Image search: [Google]
1497381832151.png
30KB, 747x491px
Just made me think real hard.
55 posts and 8 images submitted.
>>
theres some very very smart people who browse this board I'll just say that (I'm not one of em, but I've had the pleasure of meeting some of them)
>>
Around 1980, when the news media took notice of hackers, they fixated on one narrow aspect of real hacking: the security breaking which some hackers occasionally did. They ignored all the rest of hacking, and took the term to mean breaking security, no more and no less. The media have since spread that definition, disregarding our attempts to correct them. As a result, most people have a mistaken idea of what we hackers actually do and what we think.
>>
>>60892707
what do you define as "actual hacker"? I've heard plenty of people here who have a career in SQL Injection and Penetration testing.

File: STOCK Python.jpg (68KB, 800x450px) Image search: [Google]
STOCK Python.jpg
68KB, 800x450px
I've been programming for a few years and I'm finally teaching myself Python. So I have to ask, what are some cool things I can do with Python, /g/?
11 posts and 2 images submitted.
>>
Machine learning. Best in the business
>>
>>60892639
This. Learn R too.
>>
>>60892582
Use it to write an app that teaches people how to write apps in Python

File: images (2).jpg (9KB, 288x175px) Image search: [Google]
images (2).jpg
9KB, 288x175px
Why is almost every 3d game engine written in C++ and not Java?

Sure there are Java game libraries which port C++, but that's not the same thing.
183 posts and 18 images submitted.
>>
Game devs are fucking retards, they're not skilled enough to write their own engines, and their naivete leads them to write hundreds of layers of garbage abstractions, but hey, at least they end up with a game at the end, the skilled programmer who enjoys programming never finishes a game.
>>
>>60892602
I've actually tried reading up on how to even begin writing my own game engine and there is next to zero information that is visible online
>>
Yeah I really wonder why they're using an unmanaged language instead of a managed language that runs significantly slower

File: unnamed.png (24KB, 300x300px) Image search: [Google]
unnamed.png
24KB, 300x300px
Hey guys I want to make my own web browser, how hard is it? I have 4 years of web development experience.
11 posts and 1 images submitted.
>>
>>60892459
If you actually had 4 years of """webdev""" """experience""" you would realize what an undertaking it is to write a serviceable HTML5/CSS/JS stack.

Protip: If the first question you have when attacking a problem is "how hard is it", the problem is too hard for you.
>>
>>60892459
Depends, I've coded my own private browser that runs great on arch, it took me about 2 years of on and off coding.

If you're a brainlet though it may take you a lot longer.
>>
>>60893061
Care to share the source? I'm hungry for quality browsers.

File: image.png (4KB, 225x225px) Image search: [Google]
image.png
4KB, 225x225px
Looking to get my A+ certification. I've built a couple computers in the past, but I'm not sure if I shouly take boot camp or the long way. Anyone with experience in either option have any advice?
32 posts and 1 images submitted.
>>
Don't waste your time
>>
>>60892371
Why?
Not OP, but I was thinking of doing the same thing
It'd be nice to have a cert for a tech job
>>
>>60892365
You didn't read through books?

Building a computer isn't all there is to A+. That is only I think around 1/4.

File: kAk3Uyhg5UI.jpg (43KB, 650x366px) Image search: [Google]
kAk3Uyhg5UI.jpg
43KB, 650x366px
queen of /g/

inb4 anything other than "yes m'lday"
20 posts and 7 images submitted.
>>
>>60892248
interesting gremlin
>>
These guys talk about politics at an infantile level than they do technology
>>
File: IMG_2284.jpg (45KB, 639x802px) Image search: [Google]
IMG_2284.jpg
45KB, 639x802px
I can't unsee this, thanks op

File: images (1).jpg (5KB, 225x225px) Image search: [Google]
images (1).jpg
5KB, 225x225px
Who the fuck is Richard Torvalds you nerds always talk about?
16 posts and 5 images submitted.
>>
I L T I F A M
>>
>>60892058
He discovered emojis senpai
>>
>>60892058
shitdick mcgillicudy

File: Python.png (34KB, 502x270px) Image search: [Google]
Python.png
34KB, 502x270px
class human:
def __init__(self,name,birthdate):
self.name = name
self.birthdate = birthdate
def app(self):
return 4

class person(human):
def __init__(self,name,birthdate,age):
super().__init__(name,birthdate)
self.age = age
def app(self):
return super().app()




a = person("bob",1888,22)

print(a.app())




I need help understanding this code. why do i need to put a return before super().app()?

when i call the app method on the a instance shouldn't the app method of the supperclass be run?

when you remove return in the person class and print a.app() it returns None
12 posts and 2 images submitted.
>>
Install Gentoo

Do You Own Homework
>>
Never mind, i figured it out.

I was starting to think i wasn't a fucking genius.
>>
>>60892032
Human is inheriting human, so it is a subclass of the super class "human". When person calls its app function, it calls its super class' app method that it inherited, and returns the value that it gets from this method (4 in this case).

File: 1479699850428.jpg (21KB, 480x480px) Image search: [Google]
1479699850428.jpg
21KB, 480x480px
so did google really pay for you americans to have fiber optic right to your house?
12 posts and 2 images submitted.
>>
>>60891948
In like one city. My internet is advertised as 50mb. Speed test says 12
>>
In a few cities, but it was subsidized in part.
>>
>>60891996
They started out in Kansas and are working on branching out, pretty sure there's a few cities now

File: 1471135949260.jpg (593KB, 640x640px) Image search: [Google]
1471135949260.jpg
593KB, 640x640px
Sumo chipmunk's 31st birthday edition.

Previous thread >>60876082

Not sure what private trackers are all about?
>The mission of /ptg/ is to promote the highest possible standards of tracker service by providing members with opportunities for shitposting, by recognizing top keks through news headlines and by advancing the interests of its members.

Have a question?
>FAQ https://pastebin.com/SLdgTiuc
>WIKI https://wiki.installgentoo.com/index.php/Private_trackers
>IRC #opentrackers.org irc.opentrackers.org

Use >>>/g/ptg as a link to find the /ptg/ thread.

Remember the following:
>Staff occasionally read these generals and have posted here before.
>Staff may pretend to be normal users asking for invites and when you invite them, they ban you for inviting strangers.
>This is a thread for educational purposes only. Don't offer or ask for invites.
340 posts and 32 images submitted.
>>
File: 1484639071762.jpg (54KB, 409x614px) Image search: [Google]
1484639071762.jpg
54KB, 409x614px
first for powerful danny michel
>>
File: 1494482423084.gif (2MB, 245x320px) Image search: [Google]
1494482423084.gif
2MB, 245x320px
>>60891926
>>
that is obviously not him, retards

CURRENTLY SHITBOSTING FROM MY COMFY Q6600 THAT WAS ONLY $3

ITS SUMMER TIME BOYS, EXTRA HOT IN MY ROOM THX TO MY COMFY ASS FUCKING SAUNA INDUCING Q6600

WHATS THAT??? 1080p PLAYBACK ISSUES?
>h.264ify
>dedicated gpu
>you have no excuse


DID SOMEONE SAY XEON MOD???
WHO THE FUCK NEEDS AN i5/i7/i9 ANYHOW

GET THE FUCK AT ME 4CHIN
20 posts and 7 images submitted.
>>
I may have 4 chins but i have more money
>>
>>60891724
>CURRENTLY SHITBOSTING FROM MY COMFY Q6600 THAT WAS ONLY $3
from where

I want to build a second machine for cheaps.
>>
>>60891724
i used to run an e8400 and about a year or two ago i found out about the 771 mod from someone here (totally by accident).

running an x5470 now. mobo is pretty weak though and i dont think it will take an OC.

File: 1494183333848.png (5KB, 291x67px) Image search: [Google]
1494183333848.png
5KB, 291x67px
This is the ideal brace style. You may not like it, but this is what peak performance looks like.
17 posts and 2 images submitted.
>>
>>60891672
>Performance
It doesn't matter if you do that, a single line or a more apropiate format, in the end the compiler will thrown that away and the machine code will be the same, regardless of your shitty text position.
>>
>>60891717
I think he means the programmer's performance
>>
>>60891717
Poorly meme'd.

I feel like ChromeOS is just a better version of Macs for normies.

>It's faster
>It's just as safe, if not safer
>Easier to use
>Can support any app a normie would want
>Better battery life
>Ultracheap to ultra premium options

I would much rather deal with Google's botnet than Windows, because it at least gives me some functionality.
32 posts and 7 images submitted.
>>
OSX is

S
H
I
T

m8

chromeOS < chromium

put a condom on your laptop bud
>>
small drawback is price of chromebook you posted
>>
Normies want social acceptance. Only Macs can give them that.

Pages: [First page] [Previous page] [2233] [2234] [2235] [2236] [2237] [2238] [2239] [2240] [2241] [2242] [2243] [2244] [2245] [2246] [2247] [2248] [2249] [2250] [2251] [2252] [2253] [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.