Giter VIP home page Giter VIP logo

navi's Introduction

Hello!

I am a software engineer. As a programmer, I use 99% Java at work. In my free time I like to dabble in other languages. I prefer:

  • Java, because that's what I know best.
  • Lua (+ Love2D) for game programming.
  • Go, because it's fairly easy, fast, and type safe.
  • C, because it's also relatively easy. I wanted to learn it to understand more about memory management, Linux kernel programming and so on. I believe that understanding C will make you a better programmer.

Learning Rust more thorougly is also on my TODO list.

I've also attempted to do things in C++, but it's quite comprehensive. I decided it's not worth it anymore (in my free time), because there is just too much to know, and life is too short :)

navi's People

Contributors

krpors avatar

Watchers

 avatar  avatar  avatar

navi's Issues

Reconnect stream automatically (option)

Currently, when a stream gets disconnected due to networking issues, the stream's pipeline is not automatically 'restarted'. Ideally, a feature needs to be built to re-connect automatically after a network hic-up.

Add column for track duration

The current columns are:

  • Track
  • Artist
  • Title
  • Album

Ideally, a song duration column could be added (displayed as mm:ss).

Caching system for files

'Activating' a directory (i.e. list all files in that directory for the track table) currently iterates through all the files to parse them all. Time and time again. Parsing them, say 20 files, is not a hassle and goes fairly fast. However, a directory with over 300 files, and reparsing all those tags is a very tedious task. Therefore some kind of caching proxy needs to be made.

In pseudocode, something like this:

onClickDirectory(string dir) {
    if (fileCache.isCached(dir)) {
        filecache.returnFiles();
    } else {
        files[] = readDirContents(dir);
        fileCache.recache(files);

        return files;
    }
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.