Skip to content

Commit 22e11a9

Browse files
committed
fix more broken links
1 parent 3db9cc9 commit 22e11a9

File tree

9 files changed

+14
-16
lines changed

9 files changed

+14
-16
lines changed

_posts/2019-03-17-dockerize-a-shinyapp-and-host-it-on-your-own-server-with-digitalocean/dockerize-a-shinyapp-and-host-it-on-your-own-server-with-digitalocean.Rmd

+2-2
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ myApp_docker
6969

7070
5. Build the docker image. In terminal (bash), navigate to your `myApp_docker` directory and run `docker build -t myApp_docker .` You can name the Docker image whatever you like (it's `myApp_docker` here, so the directory and Docker image name are identical).
7171

72-
6. Test run your Docker image by running your ShinyApp locally with Docker. In terminal/bash, run `docker run -p 80:80 myApp_docker` which starts your myApp_docker Docker image. When the image is running, go to your web browser and you can navigate to [http://localhost](http://localhost) to run your app. If it works, congrats on creating a self-contained Docker image of your ShinyApp! Make sure your app runs before you continue!
72+
6. Test run your Docker image by running your ShinyApp locally with Docker. In terminal/bash, run `docker run -p 80:80 myApp_docker` which starts your myApp_docker Docker image. When the image is running, go to your web browser and you can navigate to `http://localhost` to run your app. If it works, congrats on creating a self-contained Docker image of your ShinyApp! Make sure your app runs before you continue!
7373

7474
7. Save your Docker image as a tar-archive so you can upload it to a web server later on. Run `docker save -o myApp_docker.tar myApp_docker` which saves your Docker image as a tar-acrhive in your current directory (myApp_docker). Depending on the size of your image (about 1GB for my image), this command might take some time to run.
7575

@@ -109,7 +109,7 @@ ns2.digitalocean.com
109109
ns3.digitalocean.com
110110
```
111111

112-
2. Point your droplet IP to your domain name. Go to your DigitalOcean account and select Networking from the menu. Under "Add a domain", enter your new domain name (escal.site in my case) and tell it which droplet or project you want to point to. Then manage this domain by creating new records. Create an "A" type to point your droplet IP to your domain name. Create a "CNAME" type to point one URL to another URL (e.g., www.escal.site also points to escal.site in my case). See [here](https://www.howlthemes.com/point-domain-name-digitalocean-droplet/) and [here](https://www.digitalocean.com/docs/networking/dns/how-to/manage-records/) for more instructions.
112+
2. Point your droplet IP to your domain name. Go to your DigitalOcean account and select Networking from the menu. Under "Add a domain", enter your new domain name (escal.site in my case) and tell it which droplet or project you want to point to. Then manage this domain by creating new records. Create an "A" type to point your droplet IP to your domain name. Create a "CNAME" type to point one URL to another URL (e.g., www.escal.site also points to escal.site in my case). See [here](https://www.digitalocean.com/docs/networking/dns/how-to/manage-records/) for more instructions.
113113

114114
## Support my work
115115

_posts/2019-03-17-dockerize-a-shinyapp-and-host-it-on-your-own-server-with-digitalocean/dockerize-a-shinyapp-and-host-it-on-your-own-server-with-digitalocean.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -1016,7 +1016,7 @@ <h2 id="step-2.-dockerize-your-shinyapp-and-rstudio-server">Step 2. Dockerize yo
10161016
- app.R</code></pre>
10171017
<ol start="5" type="1">
10181018
<li><p>Build the docker image. In terminal (bash), navigate to your <code>myApp_docker</code> directory and run <code>docker build -t myApp_docker .</code> You can name the Docker image whatever you like (it’s <code>myApp_docker</code> here, so the directory and Docker image name are identical).</p></li>
1019-
<li><p>Test run your Docker image by running your ShinyApp locally with Docker. In terminal/bash, run <code>docker run -p 80:80 myApp_docker</code> which starts your myApp_docker Docker image. When the image is running, go to your web browser and you can navigate to <a href="http://localhost">http://localhost</a> to run your app. If it works, congrats on creating a self-contained Docker image of your ShinyApp! Make sure your app runs before you continue!</p></li>
1019+
<li><p>Test run your Docker image by running your ShinyApp locally with Docker. In terminal/bash, run <code>docker run -p 80:80 myApp_docker</code> which starts your myApp_docker Docker image. When the image is running, go to your web browser and you can navigate to <code>http://localhost</code> to run your app. If it works, congrats on creating a self-contained Docker image of your ShinyApp! Make sure your app runs before you continue!</p></li>
10201020
<li><p>Save your Docker image as a tar-archive so you can upload it to a web server later on. Run <code>docker save -o myApp_docker.tar myApp_docker</code> which saves your Docker image as a tar-acrhive in your current directory (myApp_docker). Depending on the size of your image (about 1GB for my image), this command might take some time to run.</p></li>
10211021
</ol>
10221022
<h2 id="step-3.-sign-up-to-digitalocean-to-get-a-private-server">Step 3. Sign up to DigitalOcean to get a private server</h2>
@@ -1046,7 +1046,7 @@ <h2 id="step-6.-optional-but-recommended-get-a-nice-domain-name-url-for-your-dro
10461046
ns2.digitalocean.com
10471047
ns3.digitalocean.com</code></pre>
10481048
<ol start="2" type="1">
1049-
<li>Point your droplet IP to your domain name. Go to your DigitalOcean account and select Networking from the menu. Under “Add a domain”, enter your new domain name (escal.site in my case) and tell it which droplet or project you want to point to. Then manage this domain by creating new records. Create an “A” type to point your droplet IP to your domain name. Create a “CNAME” type to point one URL to another URL (e.g., www.escal.site also points to escal.site in my case). See <a href="https://www.howlthemes.com/point-domain-name-digitalocean-droplet/">here</a> and <a href="https://www.digitalocean.com/docs/networking/dns/how-to/manage-records/">here</a> for more instructions.</li>
1049+
<li>Point your droplet IP to your domain name. Go to your DigitalOcean account and select Networking from the menu. Under “Add a domain”, enter your new domain name (escal.site in my case) and tell it which droplet or project you want to point to. Then manage this domain by creating new records. Create an “A” type to point your droplet IP to your domain name. Create a “CNAME” type to point one URL to another URL (e.g., www.escal.site also points to escal.site in my case). See <a href="https://www.digitalocean.com/docs/networking/dns/how-to/manage-records/">here</a> for more instructions.</li>
10501050
</ol>
10511051
<h2 id="support-my-work">Support my work</h2>
10521052
<p><a href="https://donorbox.org/support-my-teaching">Support my work and become a patron here</a>!</p>

_posts/2019-10-12-online-classes/online-classes.Rmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ knitr::opts_chunk$set(echo = FALSE)
3737

3838
### Mike X Cohen's Udemy courses
3939

40-
[Linear algebra, neural time series analysis, mathematics, dimension reduction, etc.](https://www.udemy.com/user/mike-x-cohen/)
40+
[Linear algebra, neural time series analysis, mathematics, dimension reduction, etc.](http://sincxpress.com/)
4141

4242
* I've worked with and learned a lot from Mike. He's an incredible neuroscientist, psychologist, and teacher. He also answers all questions (including life questions!) on his [online forum](https://discuss.sincxpress.com/).
4343

_posts/2019-10-12-online-classes/online-classes.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -985,7 +985,7 @@ <h3 id="computer-science">Computer science</h3>
985985
</ul>
986986
<p><a href="https://www.edx.org/course/6-00-2x-introduction-to-computational-thinking-and-data-science-3">MITx 6.00.2x Introduction to Computational Thinking and Data Science</a></p>
987987
<h3 id="mike-x-cohens-udemy-courses">Mike X Cohen’s Udemy courses</h3>
988-
<p><a href="https://www.udemy.com/user/mike-x-cohen/">Linear algebra, neural time series analysis, mathematics, dimension reduction, etc.</a></p>
988+
<p><a href="http://sincxpress.com/">Linear algebra, neural time series analysis, mathematics, dimension reduction, etc.</a></p>
989989
<ul>
990990
<li>I’ve worked with and learned a lot from Mike. He’s an incredible neuroscientist, psychologist, and teacher. He also answers all questions (including life questions!) on his <a href="https://discuss.sincxpress.com/">online forum</a>.</li>
991991
</ul>

docs/articles.html

+1-3
Original file line numberDiff line numberDiff line change
@@ -1741,9 +1741,7 @@ <h2>Resources for principal components analysis and dimension reduction</h2>
17411741
<div class="metadata">
17421742
<div class="publishedDate">Aug. 1, 2019</div>
17431743
</div>
1744-
<div class="thumbnail">
1745-
<img/>
1746-
</div>
1744+
<div class="thumbnail"></div>
17471745
<div class="description">
17481746
<h2>Good online classes (MOOCs) for data science</h2>
17491747
<p>A list of online classes I've completed or am planning to take</p>

docs/posts/2019-03-17-dockerize-a-shinyapp-and-host-it-on-your-own-server-with-digitalocean/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -1423,7 +1423,7 @@ <h2 id="step-2.-dockerize-your-shinyapp-and-rstudio-server">Step 2. Dockerize yo
14231423
- app.R</code></pre>
14241424
<ol start="5" type="1">
14251425
<li><p>Build the docker image. In terminal (bash), navigate to your <code>myApp_docker</code> directory and run <code>docker build -t myApp_docker .</code> You can name the Docker image whatever you like (it’s <code>myApp_docker</code> here, so the directory and Docker image name are identical).</p></li>
1426-
<li><p>Test run your Docker image by running your ShinyApp locally with Docker. In terminal/bash, run <code>docker run -p 80:80 myApp_docker</code> which starts your myApp_docker Docker image. When the image is running, go to your web browser and you can navigate to <a href="http://localhost">http://localhost</a> to run your app. If it works, congrats on creating a self-contained Docker image of your ShinyApp! Make sure your app runs before you continue!</p></li>
1426+
<li><p>Test run your Docker image by running your ShinyApp locally with Docker. In terminal/bash, run <code>docker run -p 80:80 myApp_docker</code> which starts your myApp_docker Docker image. When the image is running, go to your web browser and you can navigate to <code>http://localhost</code> to run your app. If it works, congrats on creating a self-contained Docker image of your ShinyApp! Make sure your app runs before you continue!</p></li>
14271427
<li><p>Save your Docker image as a tar-archive so you can upload it to a web server later on. Run <code>docker save -o myApp_docker.tar myApp_docker</code> which saves your Docker image as a tar-acrhive in your current directory (myApp_docker). Depending on the size of your image (about 1GB for my image), this command might take some time to run.</p></li>
14281428
</ol>
14291429
<h2 id="step-3.-sign-up-to-digitalocean-to-get-a-private-server">Step 3. Sign up to DigitalOcean to get a private server</h2>
@@ -1453,7 +1453,7 @@ <h2 id="step-6.-optional-but-recommended-get-a-nice-domain-name-url-for-your-dro
14531453
ns2.digitalocean.com
14541454
ns3.digitalocean.com</code></pre>
14551455
<ol start="2" type="1">
1456-
<li>Point your droplet IP to your domain name. Go to your DigitalOcean account and select Networking from the menu. Under “Add a domain”, enter your new domain name (escal.site in my case) and tell it which droplet or project you want to point to. Then manage this domain by creating new records. Create an “A” type to point your droplet IP to your domain name. Create a “CNAME” type to point one URL to another URL (e.g., www.escal.site also points to escal.site in my case). See <a href="https://www.howlthemes.com/point-domain-name-digitalocean-droplet/">here</a> and <a href="https://www.digitalocean.com/docs/networking/dns/how-to/manage-records/">here</a> for more instructions.</li>
1456+
<li>Point your droplet IP to your domain name. Go to your DigitalOcean account and select Networking from the menu. Under “Add a domain”, enter your new domain name (escal.site in my case) and tell it which droplet or project you want to point to. Then manage this domain by creating new records. Create an “A” type to point your droplet IP to your domain name. Create a “CNAME” type to point one URL to another URL (e.g., www.escal.site also points to escal.site in my case). See <a href="https://www.digitalocean.com/docs/networking/dns/how-to/manage-records/">here</a> for more instructions.</li>
14571457
</ol>
14581458
<h2 id="support-my-work">Support my work</h2>
14591459
<p><a href="https://donorbox.org/support-my-teaching">Support my work and become a patron here</a>!</p>

docs/posts/2019-10-12-online-classes/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1392,7 +1392,7 @@ <h3 id="computer-science">Computer science</h3>
13921392
</ul>
13931393
<p><a href="https://www.edx.org/course/6-00-2x-introduction-to-computational-thinking-and-data-science-3">MITx 6.00.2x Introduction to Computational Thinking and Data Science</a></p>
13941394
<h3 id="mike-x-cohens-udemy-courses">Mike X Cohen’s Udemy courses</h3>
1395-
<p><a href="https://www.udemy.com/user/mike-x-cohen/">Linear algebra, neural time series analysis, mathematics, dimension reduction, etc.</a></p>
1395+
<p><a href="http://sincxpress.com/">Linear algebra, neural time series analysis, mathematics, dimension reduction, etc.</a></p>
13961396
<ul>
13971397
<li>I’ve worked with and learned a lot from Mike. He’s an incredible neuroscientist, psychologist, and teacher. He also answers all questions (including life questions!) on his <a href="https://discuss.sincxpress.com/">online forum</a>.</li>
13981398
</ul>

docs/posts/posts.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@
134134
"moocs"
135135
],
136136
"preview": {},
137-
"last_modified": "2019-10-12T22:54:26-04:00"
137+
"last_modified": "2020-04-29T19:47:10-04:00"
138138
},
139139
{
140140
"path": "posts/2019-07-24-what-happens-when-you-remove-or-set-the-intercept-to-0-in-regression-models/",
@@ -253,7 +253,7 @@
253253
"webserver"
254254
],
255255
"preview": "https://raw.githubusercontent.com/hauselin/rtutorialsite/master/docs/attachments/dockerShinyDigitalOcean.jpg",
256-
"last_modified": "2020-04-29T19:28:55-04:00"
256+
"last_modified": "2020-04-29T19:44:29-04:00"
257257
},
258258
{
259259
"path": "posts/2019-02-22-why-we-should-never-use-barplots-use-geomquasirandom-instead/",

docs/sitemap.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
</url>
5959
<url>
6060
<loc>https://hausetutorials.netlify.com/posts/2019-10-12-online-classes/</loc>
61-
<lastmod>2019-10-12T22:54:26-04:00</lastmod>
61+
<lastmod>2020-04-29T19:47:10-04:00</lastmod>
6262
</url>
6363
<url>
6464
<loc>https://hausetutorials.netlify.com/posts/2019-07-24-what-happens-when-you-remove-or-set-the-intercept-to-0-in-regression-models/</loc>
@@ -82,7 +82,7 @@
8282
</url>
8383
<url>
8484
<loc>https://hausetutorials.netlify.com/posts/2019-03-17-dockerize-a-shinyapp-and-host-it-on-your-own-server-with-digitalocean/</loc>
85-
<lastmod>2020-04-29T19:28:55-04:00</lastmod>
85+
<lastmod>2020-04-29T19:44:29-04:00</lastmod>
8686
</url>
8787
<url>
8888
<loc>https://hausetutorials.netlify.com/posts/2019-02-22-why-we-should-never-use-barplots-use-geomquasirandom-instead/</loc>

0 commit comments

Comments
 (0)