Search found 3839 matches

by dandymcgee
Wed Apr 20, 2016 5:41 pm
Forum: Programming Discussion
Topic: D and Rust vs C++
Replies: 8
Views: 9429

Re: D and Rust vs C++

Will GC become totally useless when I learn assembly or it's still going to handle some things for me? Well, you can compile inline assembly in C, but I would not recommend you learn that way. It hides a lot of details and may just confuse you more than if you start with Ketman to learn the fundame...
by dandymcgee
Tue Apr 19, 2016 6:18 pm
Forum: Programming Discussion
Topic: D and Rust vs C++
Replies: 8
Views: 9429

Re: D and Rust vs C++

I want to ask something about assembly. How different are x86 and x64 Assembly? Should I bother myself learning x86? I remember two years ago, in a forum one guy said "imo you should learn x86 assembly first, because it can help you with the next step(x64), besides you have to know your roots&...
by dandymcgee
Sun Apr 17, 2016 2:22 pm
Forum: Programming Discussion
Topic: D and Rust vs C++
Replies: 8
Views: 9429

Re: D and Rust vs C++

Recently I've been doing a research on how D and Rust are going to surpass and replace C++, but since I'm not that much into programming, I had to ask people more experienced than me. And from my research I've gathered this : D and Rust are just like C++, just faster and a lot more simple. That see...
by dandymcgee
Mon Apr 11, 2016 6:32 pm
Forum: Programming Discussion
Topic: Other languages. Any good books?
Replies: 15
Views: 22882

Re: Other languages. Any good books?

AronE. wrote: Edit: I wonder, if I'm not mistaken Falco says in one of the first AiGD videos that the year they start the project was 2004, correct? If that's true, how old was he back at the time, when these first videos were made?
Falco would have been around 14-15 at that time.
by dandymcgee
Fri Apr 08, 2016 7:19 pm
Forum: Programming Discussion
Topic: Other languages. Any good books?
Replies: 15
Views: 22882

Re: Other languages. Any good books?

The thing is, you don't understand... I'm still a beginner in programming overall, let alone in python.. :D I'm not Falco, you know. And that actually kinda frustrates me, I wanna be as smart, I want to have his logic and knowledge.... If I ever program with you, you will probably lose faith in hum...
by dandymcgee
Fri Apr 08, 2016 1:14 pm
Forum: Programming Discussion
Topic: Found this in some code I wrote 5 years ago
Replies: 10
Views: 16851

Re: Found this in some code I wrote 5 years ago

Yo, Marius. I want to try to get a Discord channel going to replace the dead IRC and shitty Skype interface. I'm a member of some other Discord communities so I'm pretty much always online when I'm home.

https://discord.gg/0lYtQl5oK46yLcXD
by dandymcgee
Fri Apr 08, 2016 1:00 pm
Forum: Programming Discussion
Topic: Other languages. Any good books?
Replies: 15
Views: 22882

Re: Other languages. Any good books?

Right now I'm learning Python network programming and I'm reading a book "Foundations of Python Network Programming", 2nd edition. I kind of like it. I always thought it would be fun to write some sort of server/client application where a bunch of people write their own client in any lang...
by dandymcgee
Wed Apr 06, 2016 1:42 pm
Forum: Art, Music, and Design
Topic: Drum & Bass
Replies: 7
Views: 26460

Re: Drum & Bass

I like it..

P.S. There's a [ youtube ] tag, just put the "NGuAUT3yrcA" bit between the tags and the video will embed.
by dandymcgee
Wed Apr 06, 2016 1:40 pm
Forum: Programming Discussion
Topic: Found this in some code I wrote 5 years ago
Replies: 10
Views: 16851

Found this in some code I wrote 5 years ago

//Query last log read int rows = ds.Tables["tblLastLogRead"].Rows.Count; if (rows == 0) { return DateTime.Parse("January 1, 1900"); } else if (rows == 1) { return (DateTime)ds.Tables["tblLastLogRead"].Rows[0]["LastReadDate"]; } //Something bad happened return...
by dandymcgee
Wed Apr 06, 2016 1:35 pm
Forum: Programming Discussion
Topic: Other languages. Any good books?
Replies: 15
Views: 22882

Re: Other languages. Any good books?

Thanks for the responses, you guys are actually answering my questions and even giving me info about other things. Usually, in my country if you ask a question in a forum, everyone calls you an idiot, no matter what question you ask, even when their knowledge is not far away from mine... That' just...
by dandymcgee
Thu Mar 31, 2016 2:57 pm
Forum: Programming Discussion
Topic: Other languages. Any good books?
Replies: 15
Views: 22882

Re: Other languages. Any good books?

I would stray away from PHP for any new development. It's a severely convoluted programming language, which I would rank among the top 10 worst programming languages of all time. Yes, you can make stuff work with it. Yes, it's extremely popular. However, the documentation is shit, the language contr...
by dandymcgee
Thu Mar 31, 2016 2:43 pm
Forum: General Gaming
Topic: Crowfall, "Game of Thrones meets Eve Online"
Replies: 2
Views: 5430

Re: Crowfall, "Game of Thrones meets Eve Online"

This sounds really interesting, I'll have to check it out!
by dandymcgee
Mon Mar 14, 2016 6:22 pm
Forum: Programming Discussion
Topic: I really don't miss VB6
Replies: 5
Views: 9637

Re: I really don't miss VB6

Lmao, never heard of that. That's a *gaping* security hole. It's so easy to proxy that request to MITM... Hopefully it wasn't used for anything important. Just spent half an hour heavily searching my brain/the internet, here it is . I recommend reading the entire article. When they say "a come...
by dandymcgee
Sat Mar 12, 2016 12:17 pm
Forum: Programming Discussion
Topic: I really don't miss VB6
Replies: 5
Views: 9637

Re: I really don't miss VB6

This reminds me of that software (can't remember which one) that, instead of generating a random number locally, made a http request to some website. And it was worse, because they didn't check for errors, so one day the website went down (or changed the api, or something) and now all clients had t...
by dandymcgee
Mon Mar 07, 2016 2:01 pm
Forum: Programming Discussion
Topic: I really don't miss VB6
Replies: 5
Views: 9637

I really don't miss VB6

Was browsing StackOverflow to see if the CLR has a decent generic sorted list implementation, and got a good chuckle from this heavily downvoted (yet inarguably creative) proposal:

http://stackoverflow.com/a/196615/770230

Like I said: I really don't miss VB6.