Skip to content

Commit 6c654d6

Browse files
fix(posts): remove 404 replit links
* At _site/blog/2020/05/11/texsvg/index.html:174: External link https://replit.com/@remarkablemark/texsvg-server-GitHub#package.json failed (status code 404) * At _site/blog/2020/09/26/python-phpserialize/index.html:211: External link https://replit.com/@remarkablemark/Python-phpserialize failed (status code 404) * At _site/blog/2021/03/31/nodejs-download-file/index.html:174: External link https://replit.com/@remarkablemark/node-fetch-mp4#index.js failed (status code 404) * At _site/blog/2021/04/16/create-stopwatch-with-html-javascript/index.html:223: External link https://replit.com/@remarkablemark/Stopwatch#index.html failed (status code 404) * At _site/blog/2021/08/29/javascript-generate-sha-256-hexadecimal-hash/index.html:195: External link https://replit.com/@remarkablemark/JavaScript-SHA-256-hash#index.html failed (status code 404) * At _site/blog/2022/12/27/bash-curl-google-sheets-csv/index.html:186: External link https://replit.com/@remarkablemark/Bash-cURL-Google-Sheets#main.sh failed (status code 404)
1 parent 486744b commit 6c654d6

6 files changed

Lines changed: 0 additions & 34 deletions

_posts/2020/2020-05-11-texsvg.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,6 @@ The examples below were built with [texsvg-server](https://github.com/remarkable
4848

4949
![x equals begin fraction negative b plus or minus begin square root b squared minus 4 times a times c end square root over 2 times a end fraction](https://texsvg-server-github.remarkablemark.repl.co/?tex=x=\frac{-b\pm\sqrt{b^2-4ac}}{2a} 'Quadratic Formula')
5050

51-
[Replit](https://replit.com/@remarkablemark/texsvg-server-GitHub#package.json):
52-
53-
<iframe height="400px" width="100%" src="https://replit.com/@remarkablemark/texsvg-server-GitHub?lite=true#package.json" scrolling="no" frameborder="no" allowtransparency="true" allowfullscreen="true" sandbox="allow-forms allow-pointer-lock allow-popups allow-same-origin allow-scripts allow-modals"></iframe>
54-
5551
[JSFiddle](https://jsfiddle.net/remarkablemark/1k7t6s9o/):
5652

5753
<script async src="https://jsfiddle.net/remarkablemark/1k7t6s9o/embed/result/"></script>

_posts/2020/2020-09-26-python-phpserialize.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,3 @@ output = {
8989
}
9090
print(output) # {'baz': 'qux'}
9191
```
92-
93-
## Demo
94-
95-
[Replit](https://replit.com/@remarkablemark/Python-phpserialize):
96-
97-
<iframe height="800px" width="100%" src="https://replit.com/@remarkablemark/Python-phpserialize?lite=true" scrolling="no" frameborder="no" allowtransparency="true" allowfullscreen="true" sandbox="allow-forms allow-pointer-lock allow-popups allow-same-origin allow-scripts allow-modals"></iframe>

_posts/2021/2021-03-31-nodejs-download-file.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,3 @@ Run the script to download the MP4:
4747
```sh
4848
node index.js
4949
```
50-
51-
## Demo
52-
53-
[Replit](https://replit.com/@remarkablemark/node-fetch-mp4#index.js):
54-
55-
<iframe height="400px" width="100%" src="https://replit.com/@remarkablemark/node-fetch-mp4?lite=true#index.js" scrolling="no" frameborder="no" allowtransparency="true" allowfullscreen="true" sandbox="allow-forms allow-pointer-lock allow-popups allow-same-origin allow-scripts allow-modals"></iframe>

_posts/2021/2021-04-16-create-stopwatch-with-html-javascript.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,3 @@ Update `index.html` to create the worker and listen to [`onmessage`](https://dev
9696
};
9797
</script>
9898
```
99-
100-
## Demo
101-
102-
Check out the [GitHub repository](https://github.com/remarkablemark/stopwatch) or [Replit](https://replit.com/@remarkablemark/Stopwatch#index.html):
103-
104-
<iframe height="400px" width="100%" src="https://replit.com/@remarkablemark/Stopwatch?lite=true#index.html" scrolling="no" frameborder="no" allowtransparency="true" allowfullscreen="true" sandbox="allow-forms allow-pointer-lock allow-popups allow-same-origin allow-scripts allow-modals"></iframe>

_posts/2021/2021-08-29-javascript-generate-sha-256-hexadecimal-hash.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,6 @@ Usage:
2929
console.log(hash('foo')); // '2c26b46b68ffc68ff99b453c1d30413413422d706483bfa0f98a5e886266e7ae'
3030
```
3131

32-
[Demo](https://replit.com/@remarkablemark/Nodejs-SHA-256-hash#index.js):
33-
34-
<iframe height="400px" width="100%" src="https://replit.com/@remarkablemark/Nodejs-SHA-256-hash?lite=true#index.js" scrolling="no" frameborder="no" allowtransparency="true" allowfullscreen="true" sandbox="allow-forms allow-pointer-lock allow-popups allow-same-origin allow-scripts allow-modals"></iframe>
35-
3632
## Browser
3733

3834
To generate a SHA-256 hash in the browser using [SubtleCrypto](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/digest#converting_a_digest_to_a_hex_string):
@@ -69,7 +65,3 @@ Usage:
6965
```js
7066
hash('foo').then((hex) => console.log(hex)); // '2c26b46b68ffc68ff99b453c1d30413413422d706483bfa0f98a5e886266e7ae'
7167
```
72-
73-
[Demo](https://replit.com/@remarkablemark/JavaScript-SHA-256-hash#index.html):
74-
75-
<iframe height="400px" width="100%" src="https://replit.com/@remarkablemark/JavaScript-SHA-256-hash?lite=true#index.html" scrolling="no" frameborder="no" allowtransparency="true" allowfullscreen="true" sandbox="allow-forms allow-pointer-lock allow-popups allow-same-origin allow-scripts allow-modals"></iframe>

_posts/2022/2022-12-27-bash-curl-google-sheets-csv.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,3 @@ SHEET_ID='1OiuuC_WrDCRfhnYX9i9BJ75-F0frFuSkAIYOgf-Qf6I'
6262
URL="https://docs.google.com/spreadsheets/d/$SHEET_ID/export?exportFormat=csv"
6363
curl -L $URL -o my_sheet.csv
6464
```
65-
66-
[Replit](https://replit.com/@remarkablemark/Bash-cURL-Google-Sheets#main.sh):
67-
68-
<iframe height="400px" width="100%" src="https://replit.com/@remarkablemark/Bash-cURL-Google-Sheets?lite=true#main.sh" scrolling="no" frameborder="no" allowtransparency="true" allowfullscreen="true" sandbox="allow-forms allow-pointer-lock allow-popups allow-same-origin allow-scripts allow-modals"></iframe>

0 commit comments

Comments
 (0)