Ivan Bobev

Results 10 issues of Ivan Bobev

### Main programming language ClojureScript ### Tutorial title Tetris in ClojureScript ### Tutorial URL https://shaunlebron.github.io/t3tr0s-slides/#0 ### Category * [ ] 3D Renderer * [ ] Augmented Reality * [ ]...

### Main programming language Swift ### Tutorial title Retro Rampage ### Tutorial URL https://github.com/nicklockwood/RetroRampage ### Category * [ ] 3D Renderer * [ ] Augmented Reality * [ ] BitTorrent...

### Main programming language Go ### Tutorial title REST Servers in Go ### Tutorial URL https://eli.thegreenplace.net/2021/rest-servers-in-go-part-1-standard-library ### Category * [ ] 3D Renderer * [ ] Augmented Reality * [...

### Main programming language Rust ### Tutorial title NES Emulator in Rust ### Tutorial URL https://bugzmanov.github.io/nes_ebook ### Category * [ ] 3D Renderer * [ ] Augmented Reality * [...

I think that it will be good if alongside tutorial titles tag indicating the resource type is added. For example Hacker News uses [video] and [pdf] tags for corresponding resource...

enhancement
help wanted
good first issue

This pull request is a work in progress intended to be a starting point for those who want to finish this feature. Currently, it is not working stably and random...

There was a race condition in the `execProcess` procedure. The future for awaiting a process to finish should be created before the process actually finishes.

The following simple program crashes on Windows: ```nim import strformat, std/enumerate, os, asyncdispatch, asynctools/asyncproc type ProcessOutput = tuple[exitCode: int, output: string] var urlsToDownload: seq[string] = @[ "www.w3.org/TR/html401/html40.txt", "www.w3.org/TR/2002/REC-xhtml1-20020801/xhtml1.pdf"] proc downloadUrl(url:...

I tried 3 different tools for counting lines of code in a project and those are Ruby and Python versions of `git fame` and `cloc`. The three tools give completely...

In some situations there is a need for an associative container in which both types can be used as key, similar to [Boost.Bimap](https://www.boost.org/doc/libs/1_73_0/libs/bimap/doc/html/index.html#bimap.preface) for C++. I have such an implementation...