日時: | 2022-03-28 |
---|---|
作: | voluntas |
バージョン: | 2022.4 |
URL: | https://voluntas.github.io/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Mix.install([ | |
{:ortex, "== 0.1.9"}, | |
:req, | |
{:nx, "== 0.7.0"}, | |
{:membrane_core, "~> 1.0"}, | |
{:membrane_file_plugin, "~> 0.17.0"}, | |
{:membrane_portaudio_plugin, "~> 0.19.2"}, | |
{:membrane_ffmpeg_swresample_plugin, "~> 0.20.2"}, | |
{:membrane_mp3_mad_plugin, "~> 0.18.3"}, | |
{:membrane_mp3_lame_plugin, "~> 0.18.2"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*.img | |
*.raw |
Source: http://willandorla.com/will/2011/01/convert-folder-into-git-submodule/
$ git clone --no-hardlinks original-repo copied-repo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- [ ] Math | |
- [ ] Linear Algebra | |
- [ ] Lay - Linear Algebra | |
- [ ] 18.06 Linear Algebra | |
http://www.scotthyoung.com/blog/mit-challenge/#more-link1806 | |
- [ ] Burke Lecture Notes | |
http://www.math.washington.edu/~burke/crs/407/lectures/ | |
- [ ] Coding The Matrix | |
http://www.amazon.com/dp/0615880991/?tag=coursera-course198-20 | |
- [ ] Quantifying Uncertainty |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function(window, document) { | |
// The end user should be allowed to disable synchronization. This button | |
// is optional on the page | |
var syncAllow = true; | |
var syncButton = document.querySelector('.sync-button'); | |
// If the sync button exists bind a click event and toggle the syncAllow | |
// boolean. Set the value of the button. | |
if(syncButton) { |