Right so I ran a script to check all pages, it's not perfect but it should help us find quite a few of the deadlinks, list below. Maybe that people could take responsibility in fixing things and pinging me in the PR so that I can mark it as done here.
There's a bunch of dead meetups etc that should probably just be removed
@ Helpers: there's two things you can do:
- do you recognise a link? do you know a fix? --> open a PR with the fix
- page is dead? just remove the link
Edit:
- fixed a bunch of issues due to use of
https instead of http
- removed from the list github links that errorred with 429 (too many requests), some may still be broken but most are fine
- removed 999 (linkedin)
- pruned from 600 to 100, yay!
Script
(skip this, it's only for maintenance purpose, I might eventually put this in the README)
It uses blc and is not pretty but it kind of does an ok job:
# modify this to wherever your npm installs stuff
const BLC = "/usr/local/Cellar/node/11.10.1/lib/node_modules/broken-link-checker/bin/blc"
@assert success(`$BLC -V`)
function check_page(url)
open("tempf", "w") do outf
redirect_stdout(outf) do
try run(`$BLC $url`); catch; end # sometimes BLC does weird stuff
end
end
output = readlines("tempf")
rm("tempf")
for line in output
startswith(line, "├─BROKEN─") || continue
tmp = replace(line, "├─BROKEN─ " => "")
println(" * [ ] $tmp")
end
end
# modify this to your local version of the site, assumes you've built it.
const BASE_PATH = "/Users/tlienart/Desktop/www.julialang.org/__site"
for (root, _, files) in walkdir(BASE_PATH)
for file in files
file == "index.html" || continue
fp = replace(joinpath(root, file), BASE_PATH => "")
fp = "https://julialang.org" * fp
println("* [ ] $fp")
check_page(fp)
end
end
List of dead links
Notes:
- the BLC error codes are indicated,
404 is the most obvious one; there are some others which are due to the robot being kicked so we might have to do this manually.
- BLC_UNKNOWN are usually related to a https instead of http
Errors
Chunk 1 (checked)
- [ ] https://julialang.org/blog/2012/02/why-we-created-julia/index.html
- [ ] https://topsy.com/julialang.org/ (ERRNO_ENOTFOUND)
- [ ] https://sd.csdn.net/a/20120223/312315.html (ERRNO_ENOTFOUND)
- [ ] https://www.statalgo.com/2012/03/24/statistics-with-julia/ (HTTP 404)
- [ ] https://julialang.org/blog/2012/02/why-we-created-julia-zh_CN/index.html
- [ ] https://topsy.com/julialang.org/ (ERRNO_ENOTFOUND)
- [ ] https://sd.csdn.net/a/20120223/312315.html (ERRNO_ENOTFOUND)
- [ ] https://timsalimans.com/gibbs-sampling-with-julia/ (ERRNO EPROTO)
- [ ] https://www.statalgo.com/2012/03/24/statistics-with-julia/ (HTTP 404)
- [ ] https://julialang.org/blog/2013/03/julia-tutorial-MIT/index.html
- [ ] https://docs.julialang.org/en/release-0.1/stdlib/base/#signal_processing (HTTP 404)
- [ ] https://github.com/JuliaStats/LM.jl (HTTP 404)
Chunk 2 (checked)
- [ ] https://julialang.org/blog/2013/04/distributed-numerical-optimization/index.html
- [ ] https://www.springerreference.com/docs/html/chapterdbid/72429.html (BLC UNKNOWN)
Chunk 4
- [ ] https://julialang.org/blog/2016/03/parallelaccelerator/index.html
- [ ] https://docs.julialang.org/en/release-0.4/manual/arrays/#comprehensions (HTTP 404)
- [ ] https://docs.julialang.org/en/release-0.4/manual/arrays/#comprehensions (HTTP 404)
- [ ] https://www.cs.indiana.edu/~lkuper/ (HTTP 404)
- [ ] https://docs.julialang.org/en/release-0.4/manual/conversion-and-promotion/#conversion (HTTP 404)
- [ ] https://docs.julialang.org/en/release-0.4/manual/functions/#do-block-syntax-for-function-arguments (HTTP 404)
- [ ] https://docs.julialang.org/en/release-0.4/devdocs/reflection/ (HTTP 404)
- [ ] https://julialang.org/blog/2016/05/juliacon-invitation/index.html
- [ ] https://juliacon.org/workshops.html (HTTP 404)
- [ ] https://juliacon.org/abstracts.html (HTTP 404)
- [ ] https://juliacon.org/pdf/juliacon2016poster3.pdf (HTTP 404)
- [ ] https://juliacon.org/pdf/juliacon2016poster3.pdf (HTTP 404)
Chunk 6
- [ ] https://julialang.org/blog/2016/10/julia-0.5-highlights/index.html
- [ ] https://docs.julialang.org/en/release-0.5/stdlib/math/#Base.clamp (HTTP 404)
- [ ] https://julialang.org/blog/2016/02/multidimensional-algorithms-and-iteration/ (HTTP 404)
- [ ] https://julialang.org/blog/2016/03/generalizing-abstractarrays-opportunities-and-challenges/ (HTTP 404)
- [ ] https://julialang.org/blog/2017/01/moredots/index.html
- [ ] https://docs.julialang.org/en/latest/manual/strings.html#Regular-Expressions-1 (HTTP 404)
Chunk 8
- [ ] https://julialang.org/blog/2017/04/repl-0.6-highlights/index.html
- [ ] https://docs.julialang.org/en/stable/manual/interacting-with-julia/ (HTTP 404)
- [ ] https://julialang.org/blog/2017/08/juliacon/index.html
- [ ] https://www.youtube.com/watch?v=7NDkpWoNiQ4 (HTTP 404)
- [ ] https://www.youtube.com/watch?v=DUdE3M2nlDE (HTTP 404)
- [ ] https://www.youtube.com/watch?v=FKBSVb9405w (HTTP 404)
- [ ] https://www.youtube.com/watch?v=uMs2192YAxg (HTTP 404)
- [ ] https://julialang.org/blog/2017/09/gsoc-fenics/index.html
- [ ] https://docs.julialang.org/en/latest/stdlib/arrays/ (HTTP 404)
Chunk 9
- [ ] https://julialang.org/blog/2017/12/ml&pl/index.html
- [ ] https://mxnet.incubator.apache.org/api/python/gluon.html (HTTP 404)
- [ ] https://mxnet.incubator.apache.org/how_to/multi_devices.html (HTTP 404)
- [ ] https://mxnet.incubator.apache.org/api/python/gluon.html (HTTP 404)
- [ ] https://github.com/google/sling/tree/master/myelin (HTTP 404)
- [ ] https://www.tensorflow.org/api_docs/python/tf/TextLineReader (HTTP 404)
- [ ] https://julialang.org/blog/2017/12/ml&pl-cn/index.html
- [ ] https://zh.wikipedia.org/zh-hk/兒童黑話 (BLC UNKNOWN)
- [ ] https://zh.wikipedia.org/zh-hk/兒童黑話 (HTTP undefined)
- [ ] https://mxnet.incubator.apache.org/api/python/gluon.html (HTTP 404)
- [ ] https://mxnet.incubator.apache.org/how_to/multi_devices.html (HTTP 404)
- [ ] https://mxnet.incubator.apache.org/api/python/gluon.html (HTTP 404)
- [ ] https://github.com/google/sling/tree/master/myelin (HTTP 404)
- [ ] https://www.tensorflow.org/api_docs/python/tf/TextLineReader (HTTP 404)
- [ ] https://julialang.org/blog/2017/12/ml&pl-zh_tw/index.html
- [ ] https://mxnet.incubator.apache.org/api/python/gluon.html (HTTP 404)
- [ ] https://mxnet.incubator.apache.org/how_to/multi_devices.html (HTTP 404)
- [ ] https://mxnet.incubator.apache.org/api/python/gluon.html (HTTP 404)
- [ ] https://github.com/google/sling/tree/master/myelin (HTTP 404)
- [ ] https://www.tensorflow.org/api_docs/python/tf/TextLineReader (HTTP 404)
- [ ] https://julialang.org/blog/2018/06/missing/index.html
- [ ] https://arrow.apache.org/docs/memory_layout.html#null-bitmaps (HTTP 404)
- [ ] https://julialang.org/blog/2018/07/iterators-in-julia-0.7/index.html
- [ ] https://docs.julialang.org/en/release-0.6/manual/interfaces/#man-interface-iteration-1 (HTTP 404)
Chunk 10
- [ ] https://julialang.org/blog/2018/08/GSoC-Final-Summary/index.html
- [ ] https://github.com/tejank10/Flux-baselines/blob/master/dqn/dqn.jl (HTTP 404)
- [ ] https://github.com/tejank10/Flux-baselines/blob/master/dqn/double-dqn.jl (HTTP 404)
- [ ] https://github.com/tejank10/Flux-baselines/blob/master/dqn/duel-dqn.jl (HTTP 404)
- [ ] https://github.com/tejank10/Flux-baselines/blob/master/actor-critic/a2c.jl (HTTP 404)
- [ ] https://github.com/tejank10/Flux-baselines/tree/master/ddpg (HTTP 404)
- [ ] https://github.com/tejank10/Flux-baselines/blob/master/actor-critic/a2c.jl (HTTP 404)
- [ ] https://github.com/tejank10/Flux-baselines/blob/master/dqn/duel-dqn.jl (HTTP 404)
- [ ] https://github.com/tejank10/Flux-baselines/tree/master/ddpg (HTTP 404)
- [ ] https://github.com/tejank10/Flux-baselines/blob/master/dqn/prioritized-replay-dqn.jl (HTTP 404)
- [ ] https://github.com/tejank10/model-zoo/tree/DNI/vision/mnist/dni.jl (HTTP 404)
- [ ] https://github.com/tejank10/model-zoo/tree/DNI/vision/mnist/dni.jl (HTTP 404)
- [ ] https://julialang.org/blog/2018/08/adding-newer-features-and-speeding-up-convolutions-in-flux/index.html
- [ ] https://avik-pal.github.io/blog/2018/07/Computer_Vision_using_Metalhead/ (HTTP 404)
- [ ] https://julialang.org/blog/2018/08/one-point-zero-es/index.html
- [ ] https://docs.julialang.org/en/release-0.7/NEWS/ (HTTP 404)
- [ ] https://julialang.org/blog/2019/01/fluxdiffeq/index.html
- [ ] https://julialang.org/blog/2019/04/fluxdiffeq-zh_tw/]Traditional%20Chinese (HTTP 404)
Chunk 11
- [ ] https://julialang.org/blog/2019/09/julia-workshop-beijing/index.html
- [ ] https://www.bilibili.com/video/av65371788 (HTTP_403)
- [ ] https://julialang.org/blog/2019/09/julia-workshop-beijing-zh_cn/index.html
- [ ] https://www.bilibili.com/video/av65371788 (HTTP_403)
- [ ] https://julialang.org/blog/2019/09/profilers/index.html
- [ ] https://docs.junolab.org/stable/man/juno_frontend.html#Profiler-1 (HTTP 404)
- [ ] https://github.com/JuliaLang/julia/tree/jn/profile-recurflat (HTTP 404)
- [ ] https://julialang.org/community/index.html
- [ ] https://www.meetup.com/Bangalore-Julia-User-Group/ (HTTP 404)
- [ ] https://www.meetup.com/Juliadelhi/ (HTTP 404)
- [ ] https://www.meetup.com/Singapore-Julia-User-Group/ (HTTP 404)
- [ ] https://www.meetup.com/JuliaStanbul/ (HTTP 404)
- [ ] https://www.meetup.com/Montreal-Julia-Programming-Language-Meetup/ (HTTP 404)
- [ ] https://www.meetup.com/Machine-Deep-Learning-an-Introduction/ (HTTP 404)
- [ ] https://www.meetup.com/Vancouver-Julia-Users/ (HTTP 404)
- [ ] https://www.meetup.com/Julia-lang-bsb/ (HTTP 404)
- [ ] https://julialang.org/downloads/oldreleases/index.html
- [ ] https://junolab.s3.amazonaws.com/release/1.0.3/juno-windows-x32.zip (HTTP_403)
- [ ] https://junolab.s3.amazonaws.com/release/1.0.3/juno-windows-x64.zip (HTTP_403)
- [ ] https://junolab.s3.amazonaws.com/release/1.0.3/juno-mac-x64.dmg (HTTP_403)
- [ ] https://junolab.s3.amazonaws.com/release/1.0.3/juno-linux-x32.zip (HTTP_403)
- [ ] https://junolab.s3.amazonaws.com/release/1.0.3/juno-linux-x64.zip (HTTP_403)
Chunk 14
- [ ] https://julialang.org/learning/index.html
- [ ] https://syl1.gitbook.io/julia-language-a-concise-tutorial/ (HTTP_204)
- [ ] https://homerreid.dyndns.org/teaching/18.330/ (ERRNO ECONNREFUSED)
- [ ] https://www.packtpub.com/application-development/mastering-julia-10 (HTTP 404)
- [ ] https://www.youtube.com/watch?v=0-Xsts_s5W (HTTP 404)
Chunk 15
- [ ] https://julialang.org/research/index.html
- [ ] https://dx.doi.org/https:/doi.org/10.1016/j.softx.2019.03.005 (HTTP 404)
- [ ] https://dx.doi.org/10.1515/gcc-2018-0004 (HTTP 404)
dead links
good first issue
help wanted
Most helpful comment
Bump. Help appreciated here.