Author Archives: julia on Abel Soares Siqueira

Package Development in Julia 1.0 using the REPL

By: julia on Abel Soares Siqueira

Re-posted from: https://abelsiqueira.com/blog/2018-12-05-package-development-on-julia-10/

This is a quick post on package development in Julia 1.0. Let me know if you’re interested in more, and what.
Suppose you’re developing a package – say, MyPackage.jl – whether from scratch, or updating from Julia 0.6. First, and foremost, you need to be able to run and test it. On Julia 1.0, this is one possible way, while using the REPL.
Choose a folder to develop it and create the necessary files

Optimizing the Dollar Game from Numberphile

By: julia on Abel Soares Siqueira

Re-posted from: https://abelsiqueira.com/blog/2018-09-04-the-dollar-game-from-numberphile/

I just watched The Dollar Game – Numberphile, in which a game involving graphs is presented. I recommend you watch the video for complete information.
The game involves a graph with integer values on its nodes, positive and negative. For instance, the following graph:
Each node corresponds to a person, the node value is the amount of money that person has, the edges are the people that person can give or take money from.

Optimizing the Dollar Game from Numberphile

By: julia on Abel Soares Siqueira

Re-posted from: https://abelsiqueira.com/blog/2018-09-04-the-dollar-game-from-numberphile/

I just watched The Dollar Game –
Numberphile
, in which a game involving graphs is presented.
I recommend you watch the video for complete information.

The game involves a graph with integer values on its nodes, positive and
negative. For instance, the following graph:

Each node corresponds to a person, the node value is the amount of
money that person has, the edges are the people that person can give or
take money from.
The objective of the game is to have everyone have a non-negative amount of money.
In each move of the game, one person decides to give or take money,
however, that person either takes 1 dollar from each of their connections,
or gives 1 dollar to each one.