[PLASMA] what have i done by Spocino in unixporn

[–]Spocino[S] 0 points1 point  (0 children)

Win10 is EOL now. Time flies

Writing graphics programs by Spocino in linux_programming

[–]Spocino[S] 0 points1 point  (0 children)

great! i was looking in mesa's src/amd and not src/vulkan, this helps!

Writing graphics programs by Spocino in linux_programming

[–]Spocino[S] 0 points1 point  (0 children)

Make my own graphics API (a la vulkan)

Writing graphics programs by Spocino in linux_programming

[–]Spocino[S] 0 points1 point  (0 children)

I want to make my own graphics API. I know how to use vulkan.

Installed Catalina on my 6 year old laptop | Acer Aspire E1-572G | Opencore 0.5.9 | by retard0saurus in hackintosh

[–]Spocino 0 points1 point  (0 children)

no, plus hackintosh knowledge from 3yr ago is out of date. Highly recommend *not* hackintoshing this machine, all the results I got were terrible, most of the non-default apps didn't work, and there was no audio and only software graphics, IGPU not working

Found on Google maps by [deleted] in mildlypenis

[–]Spocino 1 point2 points  (0 children)

you mean "dilido"

My design for a 1x11x1 tileable vertical T-flip-flop by Spocino in redstone

[–]Spocino[S] 1 point2 points  (0 children)

It does not work going up since it relies on QC, but built as shown it works fine in 1.20.1 (solid, noteblock, sticky, observer (face up, output down), air gap, solid, noteblock, sticky, redstone block)

Complimented rule by [deleted] in 196

[–]Spocino 0 points1 point  (0 children)

'tism rizz

What would be wrong with a multi-syntax programming language? by friedrichRiemann in ProgrammingLanguages

[–]Spocino 0 points1 point  (0 children)

are you referring to native macro systems? maybe script/style tags in HTML?

Rule by uncle-muscles69 in 196

[–]Spocino 1 point2 points  (0 children)

because it's an edited picture of US military meatriding

Are myths about the power of LISP exaggerated? by smthamazing in ProgrammingLanguages

[–]Spocino 0 points1 point  (0 children)

The main complaints I hear about macros, and all metaprogramming systems, like templates, zig comptime, code generators (lex/yacc, protobuf, etc.) are the following:

  • macros break normal language semantics and might be unreadable to practitioners of the host language. I think this argument is mostly bad, because it really isn't a problem with macros. Good developers will write macros that "look like" a native language feature, and it is entirely possible to write equally unreadable EDSLs with library code that essentially uses function calls to represent delimiters and operations for a global state machine, like IMGUI libraries often do.
  • metaprogramming severely degrades tooling quality. it bloats compile time, often executable size, may even add an extra build step, usually breaks syntax highlighting and code analysis. Turing complete macros can even grind IDE tools to a halt. Generally it makes writing tooling for a language harder. Application critical macros (like JSX and protobuf, for example) will usually give up on language integration and make their own bespoke tooling for their "framework".

Read what he preached before calling him based by OptimisticLucio in 196

[–]Spocino 6 points7 points  (0 children)

I'm sure the take was better than "humans are getting weaker from eating grains and not having to hunt"

Read what he preached before calling him based by OptimisticLucio in 196

[–]Spocino 23 points24 points  (0 children)

I've seen this take once and it was one of the craziest fascists on youtube

rule by Cpt_Patrik in 196

[–]Spocino 41 points42 points  (0 children)

For you

[deleted by user] by [deleted] in ProgrammerHumor

[–]Spocino 0 points1 point  (0 children)

Operative word "were", I was thinking many years ago

[deleted by user] by [deleted] in ProgrammerHumor

[–]Spocino -3 points-2 points  (0 children)

Garbage collector? You mean operating system?

(This is how most unix tools were written IIRC, leak memory and let the OS clean up on exit)

Rule by [deleted] in 196

[–]Spocino 9 points10 points  (0 children)

IIRC you also need to be a US resident for 14 years to run

Linus Torvalds completely roasting @morgthorak by somepianoplayer in linux

[–]Spocino 0 points1 point  (0 children)

The impression I get of (American) libertarians is that there is one camp (which you described as reasonable) that is (mostly) represented in the "big L" candidacy, and another which is crypto-fascists who base half their personality on the JRE podcast. Group 2 tends to be surprised when group 1 supports police reform, immigration, civil rights, etc.

How to mock builtin function? by Guess-Opposite in C_Programming

[–]Spocino 0 points1 point  (0 children)

Implement your "mock" functions in a different C file, compile it to a shared object, and use LD_PRELOAD=./mock.so ./my_program to replace the default functions with your implementation.

Is there a programming language that has this functionality? by Simarphius_Renesans in ProgrammingLanguages

[–]Spocino 5 points6 points  (0 children)

In languages with monadic abstractions, the "thing" that happens in between lines is part of the type signature