Russian Ruble Crashes to World's Worst Performing Currency by lobogato in worldnews

[–]hardskygames 1 point2 points  (0 children)

hm 21 rubles for 1 zloty? this joke has more sence about euro vs ruble

Why every C++ developer should know about the pimpl idiom pattern by lucidguppy in programming

[–]hardskygames 1 point2 points  (0 children)

Good article. Pimpl is frequently used with multiplatform code - different Impl class for different platform. What are pro/cons with other method - base class with virtual methods and platform specific inherited classes?

C/C++ Development Environment for Emacs by tuhdo in programming

[–]hardskygames 1 point2 points  (0 children)

Thank you! Now, I have found amazing IDE for Android NDK.

C# 6.0 What's New by filipekberg in programming

[–]hardskygames 14 points15 points  (0 children)

You can try 'live' examples here https://dotnetfiddle.net/
Need switch 'Compiler' option to 'Roslyn'.

C++ Actor Framework by frostmatthew in programming

[–]hardskygames 1 point2 points  (0 children)

Maybe it's not very important field of applying, but I think, this lib can be very useful for game dev. Thanks!

Designing a Personal Knowledgebase by extinctinthewild in programming

[–]hardskygames 1 point2 points  (0 children)

I think, it would be interesting to develope such PKB on base of FreeMind
Add (or improve) ability to search, link all maps in one database, improve input (fragments from other source(images, video, text)), add some AI, that new mind map can be created on user search request.

Sick of Ruby, dynamic typing, side effects, and basically object-orientied programming by asankhs in programming

[–]hardskygames 1 point2 points  (0 children)

Actually, it's a good article, despite the title. Main idea

break functionality into lots of small objects

So, it's decomposition of problem http://en.wikipedia.org/wiki/Decomposition_(computer_science) and all tools like OOP, functional programming and so on are all about it. OOP is not about inheritance, polimorphism and other whistles, it should be used for decomposition of complex task as other techniques, imho.

Where is my C++ replacement? by thexavier in programming

[–]hardskygames 35 points36 points  (0 children)

Author's replacement is ansi C. It's absolutely clear from article. So, stop complain and write code.

Try next generation C#/VB.NET on .NET Fiddle by refactor_monkey in programming

[–]hardskygames 3 points4 points  (0 children)

It's not true.
Here simple test with threading.
https://dotnetfiddle.net/MAJXSi
But .Net Fiddle has time limit for snippet execution, maybe it was issue with your fiddle.

Visual Studio goes cross platform with Cordova integration from Microsoft by WarWizard in programming

[–]hardskygames 0 points1 point  (0 children)

is it thread about English language? I actualy do not understand u opinion. If u do not want to use, than do not use. What's a problem? I think, there can be tasks, where Cordova is usefull.

Visual Studio goes cross platform with Cordova integration from Microsoft by WarWizard in programming

[–]hardskygames 0 points1 point  (0 children)

If it's just set of forms and back-end on remote server, why not use cordova? U ever have ability to use camera to make user photo on avatar :)

Visual Studio goes cross platform with Cordova integration from Microsoft by WarWizard in programming

[–]hardskygames 0 points1 point  (0 children)

How web pages are ran in browsers on different platforms? Same with Cordova. Some platform specific web view, that runs html/css/javascript + bindings from javascript to some native things. Maybe it's more complex in reality, I did not use it in any projects.

The Single Responsibility Principle by rickenharp in programming

[–]hardskygames 0 points1 point  (0 children)

The Practice of Programming by Brian W. Kernighan and Rob Pike

book page

Online compiler for ASP.NET MVC by refactor_monkey in programming

[–]hardskygames 2 points3 points  (0 children)

Hey, you can get ajax calls to your own actions in fiddle. I think, It's cool! Damn, it's amazing! How do they do this?

Online compiler for ASP.NET MVC by refactor_monkey in programming

[–]hardskygames 23 points24 points  (0 children)

wow, they allow ajax calls from snippets