Variational Calculus and Optimal Control, John L. Troutman
Variational Calculus with Elementary Convexity, John L. Troutman
| <!-- place the following line where you want the sponsor message to appear --> | |
| <span class="s-message"></span> | |
| <!-- place the following right before the </body> tag in the footer --> | |
| <script> | |
| $(document).ready(function () { | |
| var message = "Sponsor", | |
| target = $(".s-message"); | |
| // Check if there is that class on the page |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title>Sample App</title> | |
| <link href="//cdnjs.cloudflare.com/ajax/libs/bootswatch/3.3.4/cyborg/bootstrap.min.css" rel="stylesheet"> |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title></title> | |
| <link href="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet"> | |
| <!--<link href="//cdnjs.cloudflare.com/ajax/libs/bootswatch/3.3.4/paper/bootstrap.min.css" rel="stylesheet">--> |
| For equations on the same line, surround the equation with backslash-escaped parentheses like this: \( i^i \) | |
| To put an equation on its own line, use backslash-escaped square brackets like this: | |
| \[ i^i \] | |
| or double dollar signs: | |
| $$ i^i $$ |
| <!--[if lt IE 10]> | |
| <p class="browser-upgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://www.firefox.com/">upgrade your browser</a> to improve your experience.</p> | |
| <![endif]--> |
| def x(y): | |
| return y |
Run these commands in the terminal. The $ means your terminal prompt.
$ sudo apt-get update
$ sudo apt-get install python-pip
$ sudo pip install virtualenv
$ sudo pip install virtualenvwrapper
Open up your .bashrc file. Example: gedit ~/.bashrc. If you use zsh, then edit ~/.zshrc instead. Put these lines at the bottom:
| // Don't connect to remote links on hover | |
| user_pref("network.http.speculative-parallel-limit", 0); | |
| // Don't trim URLs. This makes users ignorant of how URLs work | |
| user_pref("browser.urlbar.trimURLs", false); | |
| // Enable privacy protection | |
| user_pref("privacy.trackingprotection.enabled", true); | |
| // Don't autofill URL bar. It's faster to have the exact same behavior every time. |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0"> | |
| <title>Website</title> | |
| <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.6/semantic.min.css" /> |