- Joined
- Jul 22, 2017
Not if you use their closed source blobs.Too bad I won't be able to harness the power of giga rays within the next decade because support for nvidia hardware on linux remains abysmal![]()
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Not if you use their closed source blobs.Too bad I won't be able to harness the power of giga rays within the next decade because support for nvidia hardware on linux remains abysmal![]()
Too bad I won't be able to harness the power of giga rays within the next decade because support for nvidia hardware on linux remains abysmal![]()
I imagine Vulkan is getting first class support going forward. All this stuff needs to be cross-platform. If they're putting these in render farms those are likely running Linux or BSD. NVidia and Valve have put and continue to put money in trying to make sure they can abandon ship to Linux as they see Microsoft as a liability that could seriously damage their businesses or take them hostage. Not to mention consoles like next-gen PlayStation, if it doesn't become a "console as a service" before then.Hopefully such features will make their way to vulkan eventually
m8 I've got a graphics card in the laptop I'm using right now that I can't use even with nvidia's closed source blobs. Unless I want to do a full system reboot and enable and disable various services every time I want to turn the card on or turn it off, of course.Not if you use their closed source blobs.
Weird. In my experience nvidia's closed source drivers are always top notch for Linux.m8 I've got a graphics card in the laptop I'm using right now that I can't use even with nvidia's closed source blobs. Unless I want to do a full system reboot and enable and disable various services every time I want to turn the card on or turn it off, of course.
The drivers for the card itself work fine, but nvidia doesn't provide linux support for the "optimus" system they use with their laptop GPUs. Optimus is designed to only activate the nvidia GPU when the system detects a need for it, but without it the card can either be on or off at boot time, and that's the only way to activate or deactivate it. Bumblebee+bbswitch is supposed to give optimus-like features, but it's only become a known issue recently that those don't work on my particular machine.Weird. In my experience nvidia's closed source drivers are always top notch for Linux.
But then again, I've also never tried them with quirky laptop gpus.
Yes. Javascript, despite its warts (and toy object system), is a very solid language. It will be around in some form for a long time. I'd say it will have greater longevity in popular use than Python.Is it worth learning javascript?
They do. Writing static websites with html and css is fine. Sometimes you might want to use style / layout frameworks, but that's basically prearranged CSS for you to use.Does anyone write websites by hand, or do I really need the latest, gayest frameworks?
Frontend is flashy and looks good in a portfolio. If you've got an eye for design, at least. (I don't think I do.)What should I learn to make the most money freelancing? I need experience to get even scrum codemonkey jobs, and I don't like people or bullshit.
With javascript, the friction will grate on you. It becomes a problem if you have to update the project more than twice.I meant writing plain ole javascript/css/html client stuff without using any Vhart frameworks or whatever. Like, knowing how to implement a simple web shopping cart on my own with the stuff above, some really scalable back end stuff, and a sql database.
That seems like how it should be done, but then again you cant paya pack of street shitters in boiled dog to do that.
A language with a specific style, handed down on from on high, is the worst fucking shit.>tfw you let the linter bully you into using the recommended variable naming style
What language are you using where the linter is that aggressive?>tfw you let the linter bully you into using the recommended variable naming style
Python's PEP8 style guide says to use snake_case style, which is incorporated into the Python linter I'm using (Jedi via YouCompleteMe for (neo)vim).What language are you using where the linter is that aggressive?
What do you think of magic methods and operator overloading? I'm unaware of any language that doesn't enforce a naming convention for those.A language with a specific style, handed down on from on high, is the worst fucking shit.
Just fuck off, let me do my own thing.
What do you think of magic methods and operator overloading? I'm unaware of any language that doesn't enforce a naming convention for those.
// E.g. you can do stuff like this
[DllImport("External.dll")] // <-- The attribute. You can even define your own
external void MyImportedFunction(int i);
// When you call MyImportedFunction External.dll will be automatically loaded, and a function exported as MyImportedFunction will be pinvoked, or an exception will be thrown
Meanwhile Golang you need to make the first character of a variable name uppercase in order for it to be defined as public, and most existing code in the community seems to be camelCase.
Basically: https://tour.golang.org/basics/3Are you saying the language itself uses case to determine member visibility? That'd be like using white space to delimit statements; pure degeneracy
Single words or the occasional symbol aren't a huge deal. Formatting, like spacing and whatnot, pervades the entire program.What do you think of magic methods and operator overloading? I'm unaware of any language that doesn't enforce a naming convention for those.
Just the first character. In general I agree with you, but this is pretty restricted.Are you saying the language itself uses case to determine member visibility? That'd be like using white space to delimit statements; pure degeneracy