Author Archives: julia on Abel Soares Siqueira

Apresentação de Julia no SMNE

By: julia on Abel Soares Siqueira

Re-posted from: https://abelsiqueira.com/blog/2016-11-29-smne-2016-julia/

Nos dias 30 de Novembro à 2 de Dezembro de 2016 acontece o primeiro Simpósio de Métodos Numéricos em Engenharia. Neste simpósio darei um minicurso sobre Julia.
Deixo aqui o material preliminar para os alunos do minicurso, ou interessados.
Notebook (necessário) exemplo.jl (necessário) HTML estático do notebook – para quem não conseguiu instalar Também deixo aqui o link do Etherpad para usarmos na aula.
Quem não conseguiu instalar até agora, pode tentar usar o JuliaBox, que roda Julia online.

Test Driven Development in Julia

By: julia on Abel Soares Siqueira

Re-posted from: https://abelsiqueira.com/blog/2016-03-13-test-driven-development-in-julia/

First, what is Test Driven Development (TDD)?
Well, I’m not an expert, so don’t quote me, but in practice it means that you
develop your code to fulfill tests that you define prior to beginning your work.
You do not define all your tests first, though. You define a single test,
and produce code to pass it. Then you define another code, and produce code to
pass both. And so forth until you complete your specification.

Test Driven Development in Julia

By: julia on Abel Soares Siqueira

Re-posted from: https://abelsiqueira.com/blog/2016-03-13-test-driven-development-in-julia/

First, what is Test Driven Development (TDD)? Well, I’m not an expert, so don’t quote me, but in practice it means that you develop your code to fulfill tests that you define prior to beginning your work. You do not define all your tests first, though. You define a single test, and produce code to pass it. Then you define another code, and produce code to pass both. And so forth until you complete your specification.