u/dast - 4 Archived Voat Posts in v/programming
u/dast
  • home
  • search

u/dast

0 posts · 4 comments · 4 total

Active in: v/programming (4)

  • ‹‹‹
  • ‹‹
  • ‹
  • 1
  • ›
  • ››
  • ›››
Comment on: What are some programming jargon everyone should be aware of?

Common programming paradigms:

Procedural: Code is organized into procedure calls (methods/functions/etc). Code executes one line at a time, and when a procedure call is found, current state is saved to the stack and execution jumps to the code in the procedure. When the procedure is done, the stuff on the stack is popped off and execution jumps back to the line following the procedure call.

Object oriented: like procedural except that methods and state are organized into objects. Each object is responsible for some chunk of functionality and hides the implementation thereof.

Functional: a paradigm in which functions are first class objects, think lambdas, etc. Too complicated to explain here.

3 27 Jul 2015 00:44 u/dast in v/programming
Comment on: What are some programming jargon everyone should be aware of?

If I remember from so many years ago, to say some algorithm is O(f(n)) means that after some minimum input size c, the algorithm's execution time does not grow faster than than f(n).

0 27 Jul 2015 00:31 u/dast in v/programming
Comment on: Visual Studio 2015 and .NET 4.6 Available for Download

Agreed. As a Linux Guy who got pulled into Windows development, I do miss having VS. The debugger alone makes it worth using--way more productive than gdb.

1 21 Jul 2015 01:37 u/dast in v/programming
Comment on: Visual Studio 2015 and .NET 4.6 Available for Download

Free as in speech (open source): no.

Free as in beer: partially (for everything but enterprise development, IIRC)

https://en.m.wikipedia.org/wiki/Gratis_versus_libre

2 21 Jul 2015 01:32 u/dast in v/programming
  • ‹‹‹
  • ‹‹
  • ‹
  • 1
  • ›
  • ››
  • ›››

archive has 9,592 posts and 65,719 comments. source code.