- 👋 Hi, I’m Victor Igbokwe, a Full-stack Software Engineer.
- 👀 I’m interested in Web Development, Mobile Development (with Flutter), Server-side Development (with Scala/NodeJS) and OpenSource.
- 🌱 I’m always learning new things - whatever necessary to keep my skills evergreen and to get the job done.
- 💞️ I’m looking to collaborate on Mobile and Web Development and other JavaScript/Dart/Scala projects - OpenSource or Commercial projects.
- 📫 How to reach me: available on Twitter @vicsstar and via email @ [email protected]
Software Developer
-
@corsearch <> __former: Truppr.com__
- Helsinki, Finland
- https://gist.github.com/vicsstar
- in/vicsstar
Pinned Loading
-
FLAMES game, written in JavaScript -...
FLAMES game, written in JavaScript - I liked the logic behind the game and wanted to represent it in code 1// flames.js
2// FLAMES game. Algorithm can be found here: http://flamesgame.appspot.com/algorithm
34const getFlame = (name1, name2) =>
5name1.toLowerCase().split(''). // take all characters in "name1", to compare
-
Implementation of a simple Tree data...
Implementation of a simple Tree data structure - tested with the common DOM structure 1function createNode(key) {
2const children = [];
3const attributes = {};
45return {
-
Simple QuickSort functions without s...
Simple QuickSort functions without side-effects in JavaScript and Scala #just-for-fun The tricks to make it "stateless", makes it slower - the algorithm becomes useless, almost, in the context of "quick sort" for large to really large lists. Little optimisation (with filtering & zipping). Then again, it's just for fun.... 1object QuickSort {
2def sort(list: Seq[Int]): Seq[Int] = {
3if (list.length < 2) list
4else {
5val midIndex = list.length / 2
-
data-structures
data-structures PublicMy implementations of data structures I'm learning or have learned about
Java
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.