/dpt/ - Daily Programming Thread

What are you working on Sup Forums?

Which vertex from whence do you work?

Other urls found in this thread:

pastebin.com/tRqXn3tL
mollyrocket.com/casey/stream_0019.html
45.55.174.18:8080/
apocalisp.wordpress.com/2009/08/27/hostility-toward-subtyping/
worldbuilding.stackexchange.com/questions/51444/how-do-i-protect-my-shop-from-teleporters
youtube.com/watch?v=3I3LCyLY_m0
bibliotik.me/
twitter.com/NSFWRedditImage

>not linking the previous thread

Way to go, faggot.

>What are you working on?

Nothing, because all the good ideas I have require web front end competence which I neither have nor want.

So instead I sit here shitposting and writing snippets for people to keep my brain from shutting down.

I'm on the lambda tesseract

writing a C library, what naming convention should I use?
foo_doStuff() or fooDoStuff() or foo_do_stuff()? foo is the library name

Definitely foo_do_stuff().

>muh lambdas

>>muh types
>go back to your ivory tower faggot

>linking trash

No you aren't

STB uses foo_do_stuff so I'd recommend that. Make sure your library is all included in a single header file too.

Last Thread:

I need help with api design... Working on lua 2D api for my engine, its pretty early and i have some work to do like port over to OpenGl, here are functions in lua with some comments
Any input would be greately appreciated
pastebin.com/tRqXn3tL

Why are the only two kinds of people that post on /dpt/ elitist functional types that never do anything and dumb imperative/OO types that are perpetually perfecting their dumb engines.

This has the makings of some kind of sitcom.

>dumb imperative/OO types that are perpetually perfecting their dumb engines
What are you even talking about, slut?

I disagree that evangelizing a superior programming paradigm is 'elitist'.

Why are you looping together imperative and OO? I write imperative code but it's absolutely not OOP. OOP is fucking retarded and only slavering morons write that that bullshit.

There's nothing elitist about OP

...

>OOP is fucking retarded and only slavering morons write that that bullshit.
Holy shit, I can actually see a bit of your unemployed neckbeard at the edge of your post.

I have transcended types.

There is only lisp.

You doesn't seem to understand the context and meaning of the terms you use.

Please tell me what is wrong with OOP.

Thinking in terms of objects and messages

Fuck off mongrel. I bet you unironically code in Java.

objects are basically structs bundled with relevant functions, there is literally nothing wrong with OOP

There's a difference between thinking with records and thinking with objects and messages

that's not OOP at all

you just described simple interfaces

mollyrocket.com/casey/stream_0019.html

> We all know how to program in C++, don’t we? I mean, we’ve all read a selection of wonderful books by the gaggle of bearded fellows who defined the language in the first place, so we’ve all learned the best ways to write C++ code that solves real-world problems.

>First, you look at the real world problem — say, a payroll system — and you see that it has some plural nouns in it: “employees”, “managers”, etc. So the first thing you need to do is make classes for each of these nouns. There should be an employee class and a manager class, at least.

>But really, both of those are just people. So we probably need a base class called “person”, so that things in our program that don’t care whether you’re an employee or a manager can just treat you as a person. This is very humanizing, and makes the other classes feel less like cogs in a corporate machine!

>There’s a bit of a problem, though. Isn’t a manager also an employee? So manager should probably inherit from employee, and then employee can inherit from person. Now we’re really getting somewhere! We haven’t actually thought about how to write any code, sure, but we’re modeling the objects that are involved, and once we have those solid, the code is just going to write itself.

>Wait, shoot — you know what? I just realized, what if we have contractors? We definitely need a contractor class, because they are not employees. The contractor class could inherit from the person class, because all contractors are people (aren’t they?). That would be totally sweet.

>But then what does the manager class inherit from? If it inherits from the employee class, then we can’t have managers who work on contract. If it inherits from the contractor class, then we can’t have full-time managers. This is turning out to be a really hard programming problem, like the Simplex algorithm or something!

if you say so

and even then you don't really think in terms of records, you use them
you think for yourself

There is nothing wrong with using encapsulation for some thigs, like data structures. But using it everywhere like some retarded pajeet or java is sick. Also you have problems with shared state and its ugly and gaah. You should write imperative code with focus on pure functions and only use encapsulation when dealing with strongly coupled data type like binary tree or linked list where it makes sense

the way i store the json tree data made it slightly difficult to get access to the children nodes through php, but managed to do it

75% done with this

i don't really disagree, just that i think it's ridiculous to black-and-white denounce all forms of OOP

You'd lose that bet.

forgot vid

it's not ridiculous
telling yourself to always think in terms of objects and messages is ridicuklous

Typeclasses

Well idea of pure OOP is flawed, what happens when you have huge graph of classes that have to share states? You either pass them instances in which case you might as well have written a function or make those ungodly ManagerClass, FactoryThis and that and you increase complexity.

nice strawman argument

You use composition

Why not just have an enum that is employeeType and then in relevant bits of the code you check if it's a manager or a contractor?

>strawman argument
you don't even know what OOP is

To me, that would be less readable.

You still have problem of shared state and cross references. Idea of encapsulating common methods in a class like Animal breaks down in large projects where you end up with some class Screen having reference to Player which has nothing to do with player.
Its like class Animal having reference to Jpop.

Anons, why are you trying to argue about something that doesn't have an agreed-upon definition?

Three different people could define OOP and how it relates to how they program in different ways, and then those 3 anons proceed to argue about OOP based on only their own interpretation of what they think it is.

What is the point?

Why are you attempting to argue a point that you, nor the other user will ever concede?

SHART IN THE MART

45.55.174.18:8080/

Node JS + Bootstrap.

OOP is objectively shit, end of story. If your first thought when trying to model a problem is to plan out classes instead of just writing the code that solves the problem, you're a meme programmer.

Yes you are right

OOP is so flawed that you have 100 patterns and new methodology how to write OOP programs every year.

you're pathetic

OOP isn't even necessary.

apocalisp.wordpress.com/2009/08/27/hostility-toward-subtyping/

Anons, I think OOP is shit, too.

Again, why are you trying to argue the point?

What do you hope to gain?

Do you want those other anons to say
>You know what? You're right! I think OOP is shit, and you've proven it to me with this conversation!

Do you think that will happen?

Does this make you feel better somehow? Mental validation?

>programming an app for the droid
>wasn't originally able to find the idea first time I looked
>work on it for a bit, get something going
>upload it to alpha testing on Google
>get email
>we could not upload your app because it did not pass our plagiarism test
>turns out I used the same name as an existing app
>app has been around for 4 years already, same idea

Well shit, wasted some time. I'm going to finish it anyways though and publish it. Should be enough to get a job afterwards.

Is cleaning up my program's resources actually important? Surely the OS handles that shit for me? Obviously I'll close my file handles but fuck it if I'm gonna free all my pointers when the user hits alt+f4.

We are on mission to illuminate.
YES IT IS IMPORTANT!
Even after execution OS cleans stuff after you it doesnt solve leaks while program is running. With leaks you'd have to have 100000000gb ram for AAA game.

The point is consensus-building as a community. We develop and cultivate the impression that /dpt/ hates OOP and then the young and impressionable programmers come in here and see that, and subconsciously start to hate OOP too to fit in.

>it's vague
No it isn't you backpedalling shit, objects and messages are fundamental to OOP and fundamentally not a universally good way of thinking

Even though i hate OOP i still use classes and encapsulation from time to time, nothing wrong with that. As long as it doesnt apprach pajeet level

>thinking /dpt/ has any significant amount of influence
stay delusional

I'm only talking about after you exit your program. Obviously you don't want to leak memory while you're running, but when I'm using a program and I hit "exit" and then the program spends 10 seconds doing god-knows-what before it fully quits, I get pissed off and manually terminate the process.

>We develop and cultivate the impression that /dpt/ hates OOP and then the young and impressionable programmers come in here and see that, and subconsciously start to hate OOP too to fit in.
It's a crying shame.

/dpt/ must have already ruined multiple budding careers with recommendations of SICP and things like C and Lisp.

>implying I don't just want a better future /dpt/

Welp, you convinced me!

I will never use an object or any design even remotely related to something resembling an object!

They are memes yes, but can you really tell me sicp doesnt teach you anything and that C and understanding low level isnt important?

Funny, I got my previous job because I could do functional programming.

>better
lol fuck off /dpt/ is a shitshow of plenty of worse things than OOP and java, like fucking haskell and python like literally kill yourselves morons

SICP is a waste of time.

C is not necessary, and can even be harmful to a successful career involving programming.

Currently porting an game I was making from Java to C++ as a way of learning C++. Probably won't ever finish the game since it's a strategy game and would require some really competent AI but I feel like I'm making some progress on understanding C++

see It's good this way

good, java and C++ are literally the best languages and also the best languages to start with

Sicp is intro CS 101 class, ofc it doesnt teach much
Learning to program != learnign specific language. If i learn to program in C there is no problem picking other languages, all you have t learn is syntax and libraries

Do sneks make good programming buddies?

>If i learn to program in C there is no problem picking other languages, all you have t learn is syntax and libraries
If it is that simple, then why not recommend a more user-friendly programming language to start with?

C can be frustrating and uncomfortable to program in compared to modern languages with more convenient syntax sugar keywords. Even those the syntax sugar "hides" the underlying functionality, the new programmer can still learn to think programmatically, while having a much better experience.

Yes, but they also make shit programming languages

I started with c++ and ended fine. But yeah maybe you are right from pedagogic point of view.

My university (a huge one) teaches C to first year CS students in their first two classes, intro to programming and CS1.

I agree to some extent, I started with Python and moved to C/C++ in a little over six months. However, letting the comfort of a high level language go was painful at the beginning and at my school, I know plenty of people who've programmed before as a hobby but are stuck with C# or Java because they're afraid of C/C++, be it because of pointers, memory management or any of that. And really, especially those two languages (C# and Java) have unfortunately deranged many of them to be able to only think of everything in the sense of "objects" without paying any attention to the underlying stuff like where in memory is data actually stored, what does instantiating an object actually mean, etc.

shhhhh we don't talk about that

The memes are so that we have less competition and our careers stay valuable.

How can sneks program if they have no arms or legs?

with duck typing of course

kek

>What are you working on Sup Forums?
Reverse engineering "Internet of Things" devices and I'm wondering why I'm even dealing with this junk. Nobody needs a WiFi enabled fridges or washing machines. It's incredibly stupid.

Snek knows Macs are best.

This is your reminder /dpt/ that tabs are completely superior to spaces. Spaces are for smelly plebs, tabs are patrician.

not true
tabs + negative spaces are GOAT

C++ question.
Is this expected behaviour?
class c_class{
Object o;
c_class(){ //ctor
o = Object(10.0f, true); // Object's destructor is called. For a temp Object?
}
};

what does the answer have to do with the question? wtf????????????????????


worldbuilding.stackexchange.com/questions/51444/how-do-i-protect-my-shop-from-teleporters

ok i now i get it, it's something like this

youtube.com/watch?v=3I3LCyLY_m0

but still wtf do birds have to do with it

36
This question becomes hilarious when read with the knowledge that a macaw is a (often colorful) parrot. – Frostfyre Aug 12 at 15:39

where do you guys download/view books on this? i want to learn this.

+1

bibliotik.me/

Yes if the c_class instance is destroyed.

What do i do with this.

stack exchange can be as bad as Sup Forums... what even is that entire category...

How would I make pic related work in java? By not using any 3rd party libraries.

Is it possible to do a cmd command run in the background and fill the textarea with the output?

Why is lisp so based?

I'm adding a Uint32 to a double, but the double never increases. Can I not do that, or something? Should I change the Uint32 to a double?

Post code

>when your shader fucks up for seemingly no reason

>"paradigm" is bad
>"language" is bad