u/Vladar - 41 Archived Voat Posts in v/programming
u/Vladar
  • home
  • search

u/Vladar

19 posts · 22 comments · 41 total

Active in: v/programming (41)

  • ‹‹‹
  • ‹‹
  • ‹
  • 1
  • ›
  • ››
  • ›››
[Bryan Lunduke] The World Wide Web Sucks
1 0 comments 15 Jun 2017 12:02 u/Vladar (..) in v/programming
Comment on: Nigerian "software engineer" handed written test at New York airport to prove he really is one

The problem is that they are not qualified to test his skills and this "test" served no practical purpose.

2 02 Mar 2017 20:01 u/Vladar in v/programming
Comment 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.

2 01 Mar 2017 22:18 u/Vladar in v/programming
[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/programming
Comment 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.

1 25 Feb 2017 18:32 u/Vladar in v/programming
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.

1 25 Feb 2017 15:13 u/Vladar in v/programming
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/programming
[Computerphile] Interrupts
1 0 comments 13 Jan 2017 15:39 u/Vladar (..) in v/programming
Nim Programming Language - Version 0.16.0 released
1 0 comments 09 Jan 2017 06:11 u/Vladar (..) in v/programming
[Computerphile] Dijkstra's Algorithm
1 0 comments 04 Jan 2017 19:23 u/Vladar (..) in v/programming
[Computerphile] Sega Game Coding in Assembly
7 1 comment 02 Dec 2016 13:25 u/Vladar (..) in v/programming
Comment on: How to connect the programming to the artist work

Might want to look at Game Programming Patterns and Lazy Foo's SDL tutorials.

1 29 Nov 2016 10:24 u/Vladar in v/programming
SDL 2.0.5 is out
2 0 comments 20 Oct 2016 08:10 u/Vladar (self.programming) in v/programming
[Humor] How to save the princess using 8 programming languages
48 17 comments 06 Oct 2016 08:56 u/Vladar (..) in v/programming
Version 0.15.0 released - Nim Programming Language
1 0 comments 02 Oct 2016 15:55 u/Vladar (..) in v/programming
Comment 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.

1 15 Aug 2016 13:49 u/Vladar in v/programming
Comment on: Top the Most Popular Programming Languages Of 2016

Legacy software

0 26 Jul 2016 12:12 u/Vladar in v/programming
Unity Week 2016 | PACKT Books
1 0 comments 20 Jun 2016 16:40 u/Vladar (..) in v/programming
Introduction to Metaprogramming in Nim
3 0 comments 06 Jun 2016 06:38 u/Vladar (..) in v/programming
F*** You, I Quit - Hiring Is Broken
70 48 comments 28 Apr 2016 10:19 u/Vladar (..) in v/programming
Comment 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
0 15 Apr 2016 14:10 u/Vladar in v/programming
Comment on: We need more programming challenges. We should start off small: First non-repeating character of a string. Any language you like.

Nim

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]
1 15 Apr 2016 11:33 u/Vladar in v/programming
Comment on: Trying to debug code

What show is this?

2 12 Mar 2016 06:42 u/Vladar in v/programming
Comment on: Alternatives to notepad++

I'm using vim with couple of plugins. It's good if you have time to figure it out.

5 17 Feb 2016 20:05 u/Vladar in v/programming
Comment on: What is the fast track to developing for Linux?

First chapters of 21st Century C describe workflow in POSIX environment quite well.

2 16 Feb 2016 22:39 u/Vladar in v/programming
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.

2 16 Feb 2016 20:08 u/Vladar in v/programming
Andreas Rumpf at Nim workshop
1 0 comments 20 Nov 2015 16:11 u/Vladar (..) in v/programming
Nim version 0.12.0 released
5 0 comments 28 Oct 2015 17:47 u/Vladar (..) in v/programming
Nim for scientific computing - RNDuja Blog
7 0 comments 22 Oct 2015 18:17 u/Vladar (..) in v/programming
First 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/programming
Comment 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.

2 11 Jul 2015 08:14 u/Vladar in v/programming
Comment on: [TIL] What is the synonym of "I don't care" in programming?

discard statement in Nim.

0 09 Jul 2015 17:34 u/Vladar in v/programming
Comment on: New Github Desktop client for Mac and Windows teased, signup for invitation available

Mac and Windows

1 07 Jul 2015 17:53 u/Vladar in v/programming
Comment 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.

4 07 Jul 2015 16:56 u/Vladar in v/programming
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.

0 28 Jun 2015 10:12 u/Vladar in v/programming
Comment on: Executing python. I'm confused.

It'll be helpful if you could post some terminal output log of what is happening.

1 21 Jun 2015 22:21 u/Vladar in v/programming
Comment on: Resources to learn C?

Though this book is targeted at somewhat experienced coders, I highly recommend 21st Century C, 2nd Edition.

1 19 Jun 2015 21:07 u/Vladar in v/programming
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?

3 17 Jun 2015 18:26 u/Vladar in v/programming
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.

1 12 Jun 2015 23:54 u/Vladar in v/programming
  • ‹‹‹
  • ‹‹
  • ‹
  • 1
  • ›
  • ››
  • ›››

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