EllipticCurve | 6 years ago | on: Ask HN: What projects are you working on now?
EllipticCurve's comments
EllipticCurve | 6 years ago | on: Ask HN: Who wants to be hired? (February 2020)
Remote: Maybe, not ideal
Willing to relocate: No
Technologies: C/C++, Go, Python (+ many more), OpenGL, Computergraphics, GPGPU, algorithm development (Currently working on Radar clustering/classification)
Résumé/CV: https://github.com/MauriceGit/Organisation/blob/master/proje...
Email: [email protected]
EllipticCurve | 6 years ago | on: Ask HN: How to find job again after career break?
You might do it to get back into coding, put it on a resume or just for fun (my reason to do it).
But the community around it (https://www.reddit.com/r/adventofcode/) is really great and it's a lot of fun!
It also provides as a specific daily purpose, in contrast to some random code test online.
Best of luck!
EllipticCurve | 6 years ago | on: 2019 Python Developer Survey
Nice concise, adaptive survey.
EllipticCurve | 6 years ago | on: Ask HN: What programming language you use the most at work?
EllipticCurve | 6 years ago | on: Ask HN: Successful one-person online businesses?
EllipticCurve | 6 years ago | on: Ask HN: How to effectively deal with recruiters?
EllipticCurve | 6 years ago | on: Ask HN: What have the past 12 months taught you?
My feeling is, that we were doing more complex problem solving at university and my personal projects are much more challenging than most things we do at work.
It's honestly quite a bit frustrating. And makes me want to build something up myself. Problem is, I am just not an idea-person...
EllipticCurve | 6 years ago | on: Show HN: Real-time image manipulation with Voronoi/Delaunay
EllipticCurve | 6 years ago | on: Show HN: Real-time image manipulation with Voronoi/Delaunay
In this case real-time in the sense that one can adjust parameters and (for not too many points) get an instant result instead of an image on disk. Additionally, I used all components to have it displayed with an adjustable fps count (OpenGL based rendering).
But I see, that the meaning of real-time is a bit biased. Any suggestions?
EllipticCurve | 6 years ago | on: Show HN: Real-time image manipulation with Voronoi/Delaunay
Do you have any interesting ideas for other projects on top of your head? I struggle a bit to actually use it in a useful way.
That is awesome, do it :)
EllipticCurve | 6 years ago | on: Show HN: Real-time image manipulation with Voronoi/Delaunay
So I'll keep that in mind for later, thanks!
EllipticCurve | 8 years ago | on: Geany – Lightweight IDE for Linux and Windows
Geany is my absolute go-to editor of choice. Fast, stable and really clean interface. Absolutely love it!!!
EllipticCurve | 8 years ago | on: Show HN: Open Source Jobs – Find jobs that match your open source contributions
And, when hitting enter, it just resets the github name instead of searching (little inconvenient).
EllipticCurve | 8 years ago | on: Strava heatmap can be used to locate military bases
EllipticCurve | 8 years ago | on: Resurrecting a Dragon
EllipticCurve | 8 years ago | on: Interactive Voronoi Diagram Generator with WebGL
But sometimes straight lines have some kind of angle introduced which shouldn't be there in a correct Voronoi tessellation.
For example: {"sites":[355,413,372,413],"queries":[]} should be a straight line, but has two angles. Have I missed something?
EllipticCurve | 9 years ago | on: Show HN: Design, data-structure, algorithm problems and their solutions
EllipticCurve | 9 years ago | on: Show HN: Design, data-structure, algorithm problems and their solutions
You should look into bucketsort. That allows you to sort in finite universes in Theta(n+k) without allocating huge arrays for large integers.
EllipticCurve | 9 years ago | on: Show HN: Design, data-structure, algorithm problems and their solutions
Sorting in θ(n+k) w.c. and a.c. (most of the time this is equal to O(n)) is possible for finite boundaries that allows for countingsort or bucketsort (radixsort uses countingsort internally).
Some implementations of those algorithms in Python: https://github.com/MauriceGit/Advanced_Algorithms
This is my first real compiler and it's lots of fun!!! It's also my first time working with x86-64 assembler (compiler target).
I'll write a Show HN post when I finished it.