Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix broken links in bibliography #123

Merged
merged 1 commit into from
Mar 10, 2023

Conversation

dijkstracula
Copy link
Contributor

@dijkstracula dijkstracula commented Mar 9, 2023

Hi folks,

Today I started working through the tutorial and have been enjoying myself. I noticed that the link to Greg Nelson's thesis is dead so I thought I would check if there were any others that failed to return an HTTP 200:

➜  liquidhaskell-tutorial git:(main) ✗ for URL in $(sed -e 's/^[^:]*:[ ]*//g' -e '/^$/d' -e '/^\/blog/d' templates/bib.lhs); do echo $URL $(curl -Lso /dev/null -w "%{http_code}" $URL); done | grep -v ' 200'
http://www.cs.bu.edu/~hwxi/DML/DML.html 404
https://github.com/ucsd-progsys/liquidhaskell/blob/master/include/Data/Vector.spec 404
http://hackage.haskell.org/packages/archive/base/latest/doc/html/src/Data-List.html 404
http://hackage.haskell.org/packages/archive/base/latest/doc/html/src/Data-List.html 404
http://www.cs.bu.edu/~hwxi/academic/papers/pldi98.pdf 404
http://cvc4.cs.nyu.edu/ 301
https://github.com/ucsd-progsys/liquidhaskell/blob/master/include/GHC/List.lhs#L334 404
http://hackage.haskell.org/packages/archive/base/latest/doc/html/src/Data-List.html#transpose 404
http://www.kroening.com/smt-lib-lsm.pdf) 403
https://github.com/ucsd-progsys/liquidhaskell/blob/master/include/Data/Set.spec 404
http://www.amazon.com/Pearls-Functional-Algorithm-Design-Richard/dp/0521513383 503
https://github.com/ucsd-progsys/liquidhaskell/blob/master/include/GHC/Ptr.spec 404
➜  liquidhaskell-tutorial git:(main) ✗

There were a bunch (including but not limited to the one mentioned in #122.) This patch fixes the above dead links as best I could. (Nelson's thesis was not among the above since it redirects to the root MSR homepage; I didn't explicitly vet any of the other ones that nominally return 200).

➜  liquidhaskell-tutorial git:(nathan/link_fixes) ✗ for URL in $(sed -e 's/^[^:]*:[ ]*//g' -e '/^$/d' -e '/^\/blog/d' templates/bib.lhs); do echo $URL $(curl -Lso /dev/null -w "%{http_code}" $URL); done | grep -v ' 200'
➜  liquidhaskell-tutorial git:(nathan/link_fixes) ✗

Well-typed greetings from Austin!

Nathan

@ranjitjhala
Copy link
Member

ranjitjhala commented Mar 9, 2023 via email

@ranjitjhala ranjitjhala merged commit afd6268 into ucsd-progsys:main Mar 10, 2023
@dijkstracula dijkstracula deleted the nathan/link_fixes branch March 10, 2023 17:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants