[Bryan Lunduke] The World Wide Web Sucks
1 0 comments 15 Jun 2017 12:02 u/Vladar (..) in v/programmingComment on: Nigerian "software engineer" handed written test at New York airport to prove he really is one
2 02 Mar 2017 20:01 u/Vladar in v/programmingComment on: Nigerian "software engineer" handed written test at New York airport to prove he really is one
Did he fail or what is the problem?
~
After he handed back his answers, he was told by the officer that they were wrong. He said he presumed he was required to provide "the Wikipedia definition" for the questions.
However, he was even more surprised a little later when the officer told him he was "free to go".
"Look, I am going to let you go, but you don't look convincing to me," said the officer, according to Mr Omin.
[Bryan Lunduke][Presentation] The Internet of Things is Going to Destroy Us All
2 0 comments 28 Feb 2017 08:40 u/Vladar (..) in v/programmingComment on: Fred Heath - The Nim programming language - Bristech 2016
You don't get the point. You shouldn't even look at an intermediate C-code, for it is not for human eyes, only for the C-compiler.
Comment on: Fred Heath - The Nim programming language - Bristech 2016
I don't think YACC means what you think it means.
As for the project scaling, I'm using Nim for a pretty long time and for the most time it's quite enjoyable and productive experience.
If you want to know more, check out the official site, or this blog post.
Fred Heath - The Nim programming language - Bristech 2016
1 1 comment 25 Feb 2017 14:32 u/Vladar (..) in v/programming[Computerphile] Code Checking Automation
1 0 comments 18 Jan 2017 15:26 u/Vladar (..) in v/programmingNim Programming Language - Version 0.16.0 released
1 0 comments 09 Jan 2017 06:11 u/Vladar (..) in v/programming[Computerphile] Sega Game Coding in Assembly
7 1 comment 02 Dec 2016 13:25 u/Vladar (..) in v/programmingComment on: How to connect the programming to the artist work
Might want to look at Game Programming Patterns and Lazy Foo's SDL tutorials.
[Humor] How to save the princess using 8 programming languages
48 17 comments 06 Oct 2016 08:56 u/Vladar (..) in v/programmingVersion 0.15.0 released - Nim Programming Language
1 0 comments 02 Oct 2016 15:55 u/Vladar (..) in v/programmingComment on: [Poll] Tabs or Spaces?
Depends on what is written in the language style guide. I have no problem setting my vim configs for each file type if needed.
Comment on: Top the Most Popular Programming Languages Of 2016
Legacy software
Introduction to Metaprogramming in Nim
3 0 comments 06 Jun 2016 06:38 u/Vladar (..) in v/programmingComment on: We need more programming challenges. We should start off small: First non-repeating character of a string. Any language you like.
Nim using strutils
import strutils
while true:
var input = readLine stdin
if input.len < 1: break
for ch in input:
if input.count(ch) == 1:
echo ch
break
Comment on: We need more programming challenges. We should start off small: First non-repeating character of a string. Any language you like.
while true:
var input = readLine stdin
if input.len < 1: break
var once: seq[char] = @[]
for ch in input:
if once.contains ch: once.delete once.find ch
else: once.add ch
echo once[0]
Comment on: Alternatives to notepad++
I'm using vim with couple of plugins. It's good if you have time to figure it out.
Comment on: What is the fast track to developing for Linux?
First chapters of 21st Century C describe workflow in POSIX environment quite well.
Comment on: What is the fast track to developing for Linux?
So, what language you want to use? What tools or IDE you are used to?
P.S.: Cinnamon is GTK+ based, so you could start from there.
Nim for scientific computing - RNDuja Blog
7 0 comments 22 Oct 2015 18:17 u/Vladar (..) in v/programmingFirst official Nim conference will be in Kyiv
6 0 comments 17 Oct 2015 08:33 u/Vladar (..) in v/programming[Free e-books] Python Week 2015 (PACKT Books)
3 0 comments 12 Oct 2015 22:41 u/Vladar (..) in v/programmingComment on: Help! I can never finish a project
Recently I posted related article to /v/gamedev. May be it will be somewhat helpful to you.
Comment on: [TIL] What is the synonym of "I don't care" in programming?
discard statement in Nim.
Comment on: New Github Desktop client for Mac and Windows teased, signup for invitation available
1 07 Jul 2015 17:53 u/Vladar in v/programmingComment on: How would you go about writing an application like Foobar2000?
Well, C++ is not exactly mandatory. Any language which have needed libraries will do.
Now, libraries — is what important. You surely will need some GUI library, and some media codecs too.
Comment on: Hi everyone!
Python's indentation is wonderful, and I wish C and Java had it.
And that's why I fell in love with Nim right away.
Comment on: Executing python. I'm confused.
It'll be helpful if you could post some terminal output log of what is happening.
Comment on: Resources to learn C?
Though this book is targeted at somewhat experienced coders, I highly recommend 21st Century C, 2nd Edition.
Comment on: Language of choice?
It's Nim for me.
Elegancy of python, merged with speed and portability of C, plus meta programming features. What else can I ask for?
Comment on: What can help me transition from intermediate web OOP to game OOP
You totally must watch Handmade Hero.
It's video stream of making game completely from scratch (c-style c++) targeted at beginners.
The problem is that they are not qualified to test his skills and this "test" served no practical purpose.