HN user

wikunia

183 karma
Posts33
Comments15
View on HN
www.3blue1brown.com 4y ago

Interactive blog about some 3blue1brown videos

wikunia
2pts0
opensourc.es 5y ago

How to Write a Chess Engine?

wikunia
2pts0
www.youtube.com 5y ago

Video: Two silly chess engines A commentary

wikunia
1pts0
opensourc.es 5y ago

Graph Coloring Using Cliques

wikunia
1pts0
opensourc.es 5y ago

Javis.jl – Animating Fourier Series

wikunia
2pts0
opensourc.es 5y ago

Debugging in Julia – Two different ways

wikunia
3pts0
jkrumbiegel.github.io 5y ago

Julia Helps to Bridge the Gap Between User and Creator

wikunia
6pts0
opensourc.es 5y ago

Julia Basics: REPL and Revise

wikunia
6pts0
news.ycombinator.com 5y ago

Ask HN: How do you learn a new programming language?

wikunia
8pts3
opensourc.es 5y ago

Javis v0.2 and the Future

wikunia
50pts9
opensourc.es 5y ago

Mathy Animations with JuliaLang

wikunia
4pts0
opensourc.es 6y ago

Tau vs. Pi which is more beautiful?

wikunia
1pts0
opensourc.es 6y ago

Multiple Dispatch in Julia

wikunia
44pts13
youtu.be 6y ago

Puzzle Solving Using CP

wikunia
4pts0
covid19.opensourc.es 6y ago

Covid-19 Interactive Dashboard

wikunia
1pts0
covid19.opensourc.es 6y ago

Covid-19: Interactive timeseries map

wikunia
1pts0
covid19.opensourc.es 6y ago

Covid-19 interactive choropleth visualization

wikunia
1pts0
youtu.be 6y ago

How the Enigma cipher can be cracked. A visual explanation

wikunia
2pts0
youtu.be 6y ago

Video: Mandelbrot Using Julia and GPU

wikunia
2pts0
opensourc.es 6y ago

Cracking the Enigma Using JuliaLang

wikunia
1pts0
youtu.be 6y ago

PowerPoint Programming: Video

wikunia
1pts0
opensourc.es 6y ago

Kaggle Santa 2019: Final wrap up

wikunia
1pts0
opensourc.es 6y ago

Matchings and How to Find Them

wikunia
1pts0
opensourc.es 6y ago

How to Profile Julia Code?

wikunia
2pts0
techytok.ml 6y ago

Writing Performant Code in Julia

wikunia
5pts7
opensourc.es 6y ago

Graph Coloring MIP and Constraint Solver in Julia

wikunia
3pts0
opensourc.es 6y ago

Solving the Megaron Cube with Python

wikunia
25pts0
opensourc.es 6y ago

Introduction to Neuromorphic Computing

wikunia
3pts0
t-dillon.github.io 6y ago

A fast sudoku solver explained

wikunia
3pts0
opensourc.es 6y ago

What the hell are bezier curves: Visual understanding

wikunia
1pts0

Okay for coding I what say: practice practice practice :D I personally learn best when I have an idea and I want to implement something specific. Can be big or small. Best are the ones which are very extensible. What I do as a mentor is to review code and give feedback. You probably don't wanna learn julia though. You can get some starter feedback at exercism.io Maybe you can ask there as well if someone wants to mentor you for some cash.

Not directly a mentor but maybe a study group helps? Have you done some internet courses on some topics? Maybe try to connect to the professors. They might have good students that can help you out. I think finding a mentor for coding stuff is one thing but getting a good background of CS education is harder. Hope you find someone :)

Thanks for the comment. I struggled with giving it a title that fits and still shows outsiders what the package does. Now nobody knows what Javis is and maybe thinks it manipulates the future On my blog I attracted more the people who are already familiar with Julia and Javis.

I agree and would say that normally dispatch comes in handy for things like `+`, `length` and of course your own functions where the meaning is the same but the implementation must be different depending on the type.

This is not able to solve linear problems as it's built only for discrete variables in mind. The approach is more removing values from the search space to find a feasible solution whereas LP focuses on optimization. There are problems were both approaches can be used. Currently my solver is quite limited. Stay tuned