Skip to content

Instantly share code, notes, and snippets.

View AzamatB's full-sized avatar
🏠
Working from home

Azamat Berdyshev AzamatB

🏠
Working from home
View GitHub Profile
@ChrisRackauckas
ChrisRackauckas / diffeqflux_blog_examples.jl
Created January 19, 2019 04:25
Example code from the DiffEqFlux.jl blog post
using DifferentialEquations, Flux, DiffEqFlux, Plots
####################################################
## Solve an ODE
####################################################
function lotka_volterra(du,u,p,t)
x, y = u
α, β, δ, γ = p
du[1] = dx = α*x - β*x*y
@dmbates
dmbates / JuliaGitPullRequest.md
Created May 16, 2012 16:49
Setting up git for creating pull requests to JuliaLang

These notes are based on Patrick O'Leary's video that he kindly created when I was wingeing about problems with git. It is best to watch the video first then go back through these notes to recall the steps.

Create a clone of the JuliaLang repository

git clone git://github.com/JuliaLang/julia.git

or

git clone git://github.com/JuliaLang/julia.git myjulia