Comment on: What are you guys learning at the moment?
1 11 Feb 2017 02:05 u/BlueSpeed in v/programmingComment on: Trying to get a reddit clone running to see how it works. Install apparently worked but getting weird behavior for Create, etc.
Which voat clone are you talking about?
What that error is saying is the page POST_submit has not been programmed yet and is just a placeholder. It sounds like the software you are trying to use is not quite finished or polished. Perhaps look to see if there is a newer version of the software available with the missing functionality added.
Uncle Bob Martin talks on the future of programming
3 8 comments 30 Apr 2016 01:09 u/BlueSpeed (..) in v/programmingComment on: ES6 is beautiful
As a C# developer several of those new features are familiar. Lambda expressions array.where(s => s == 4) were introduced in c# 3 and I'm glad they are making their way into other languages. Such a simple and easy way to declare anonymous functions.
Comment on: Help with C# questions?
A class is a collection of related functions and data. It is used to encapsulate data into a single object. Classes are grouped together into a namespace. Any class within a namespace can reference another class within the same namespace. To reference outside a namespace you must use a #include.
Try starting out with the C# tutorials on msdn. You will become very familiar with msdn if you continue to learn C#. Its a very comprehensive reference for all standard .Net libraries.
Comment on: Looking for a text editor or IDE
Visual Studio. On top of that look into ReSharper by jetbrains. It adds many refactoring and code analysis tools.
Comment on: What are some must read programming books for a new programmer?
Clean Code by Robert C Martian. There are many good books for how to write code. This one is for how to write maintainable code.
Comment on: Whats New In Python 3.6 Python 3.6.0a0 documentation
C# released a similar feature recently instead of doing string.Format("foo{0}bar",object); we can do $"foo{object}bar"; It is very convenient.
Comment on: Reflections on difficulties using object-oriented design methodology
I found a strict one way or another approach rarely works out well. There are situations where functional methods are better then OOP but then the reverse is true. In addition we should Unit Test and be willing to change things when they get messy. Preventing messy code isn't just about choosing the right pattern but also maintaining the project over time.
Hampton Roads DevFest. A single day convention on a variety of topics in the Hampton Roads area.
1 0 comments 16 Oct 2015 03:00 u/BlueSpeed (..) in v/programmingComment on: Sometimes a bug is hit only after code was executed 100 000 000 000 000 (100 trillion) times -- Spotify's underflow bug
At least they didn't have to deal with a hardware bug like the developers of crash bandicoot.
Comment on: Here are the top 10 programming languages used on GitHub
0 22 Aug 2015 23:47 u/BlueSpeed in v/programmingComment on: [C#] Lovely idea for unused lambda parameters
ಠ.ಠ
Comment on: mov is Turing-complete
I wonder how many other x86 or AMD-64 instructions are turning complete on their own.
.Net core webApi. Having some trouble trying to target .Net Standard though. Hoping this becomes easier as it matures.