Carp/RESEARCH.md

43 lines
1.7 KiB
Markdown
Raw Normal View History

2016-03-07 15:14:26 +03:00
# C PROGRAMMING, LLVM, AND DEBUGGING
2016-01-18 20:04:17 +03:00
http://clang.llvm.org/docs/AddressSanitizer.html
2016-03-02 12:41:49 +03:00
https://www.iar.com/support/resources/articles/advanced-preprocessor-tips-and-tricks/
2016-03-04 12:22:22 +03:00
http://jvns.ca/blog/2016/03/01/a-few-notes-on-the-stack/
2016-03-07 15:14:26 +03:00
https://www.recurse.com/blog/7-understanding-c-by-learning-assembly
http://msm.runhello.com/p/1003
2016-03-02 12:41:49 +03:00
# OWNERSHIP & BORROWING
2016-01-24 02:39:15 +03:00
http://blog.piston.rs/2016/01/23/dynamo/
2016-03-02 12:41:49 +03:00
http://evincarofautumn.blogspot.se/2016/01/thoughts-on-using-fractional-types-to.html
# MODULES & FUNCTORS
http://homepages.inf.ed.ac.uk/mfourman/teaching/mlCourse/notes/sml-modules.html
https://www.cse.unsw.edu.au/~chak/papers/modules-classes.pdf
2016-03-04 12:22:22 +03:00
# TYPES
https://lambdacube3d.wordpress.com/2016/03/03/tuples-as-heterogeneous-lists/
2016-02-24 22:16:58 +03:00
https://jeltsch.wordpress.com/2016/02/22/generic-programming-in-haskell/
2016-03-11 02:49:16 +03:00
http://okmij.org/ftp/ML/generalization.html
http://www.cs.cornell.edu/courses/cs312/2005sp/lectures/rec22.asp
2016-03-02 12:41:49 +03:00
# CSP
http://reaktor.com/blog/why-csp-matters-ii-how-do-i-know-sync-works/
2016-03-04 12:22:22 +03:00
# OTHER LISPS
2016-03-06 19:10:20 +03:00
https://wingolog.org/archives/2016/02/08/a-lambda-is-not-necessarily-a-closure
2016-03-04 12:22:22 +03:00
http://alex-charlton.com/posts/Prototype_to_polish_Making_games_in_CHICKEN_Scheme_with_Hypergiant/
2016-03-06 19:10:20 +03:00
http://beautifulracket.com/first-lang.html
http://stackoverflow.com/questions/4899113/fixed-point-combinator-for-mutually-recursive-functions/5272086#5272086
2016-03-04 12:22:22 +03:00
# LANGUAGE DESIGN
http://www.complang.tuwien.ac.at/kps2015/proceedings/KPS_2015_submission_29.pdf
2016-03-06 19:10:20 +03:00
http://www.lihaoyi.com/post/WhatsinaBuildTool.html
2016-03-08 19:37:53 +03:00
http://prog21.dadgum.com/136.html
2016-03-06 19:10:20 +03:00
# GRAPHS
https://en.wikipedia.org/wiki/Strongly_connected_component
https://en.wikipedia.org/wiki/Transitive_closure#In_graph_theory
2016-03-11 02:49:16 +03:00
# TO TRY
let fun ident(x) => x
in ident(ident)(2) end