-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added updated comments to all articles
- Loading branch information
Rhys Tilford
committed
Jan 15, 2024
1 parent
2fb6aae
commit d1f1701
Showing
31 changed files
with
952 additions
and
192 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -104,3 +104,38 @@ The JavaScript file is [here](Day2.js). | |
<script src="Day2.js"></script> | ||
``` | ||
|
||
<div id="vssue"></div> | ||
|
||
<!-- Introduce Vue first --> | ||
|
||
<!-- vue runtime build (runtime only) --> | ||
<script src="https://unpkg.com/[email protected]/dist/vue.runtime.min.js"></script> | ||
<!-- OR: vue full build (runtime + compiler) --> | ||
<script src="https://unpkg.com/[email protected]/dist/vue.min.js"></script> | ||
|
||
<!-- Introduce Vssue after Vue --> | ||
|
||
<!-- Vssue Github build --> | ||
<script src="https://unpkg.com/vssue/dist/vssue.github.min.js"></script> | ||
|
||
<!-- use render function for vue runtime build --> | ||
<script> | ||
new Vue({ | ||
el: '#vssue', | ||
|
||
render: h => h('Vssue', { | ||
props: { | ||
// here set the title of issue of current page | ||
title: 'Vssue_article_01', | ||
|
||
// here set the options for your OAuth App | ||
options: { | ||
owner: 'rctilford', | ||
repo: 'personal-rhys-tilford', | ||
clientId: '9f2e6bf389986dd77793', | ||
clientSecret: '667ab6fd63d934d8e8fe1c3763e98351469e1195', // only required for some of the platforms | ||
}, | ||
} | ||
}) | ||
}) | ||
</script> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -183,4 +183,41 @@ function shuffle() { | |
|
||
*Some parts of the above code were adapted from suggestions by Github Copilot.* | ||
|
||
### If you would like to see the code in action click [here](https://rctilford.github.io/CSC324/). | ||
### If you would like to see the code in action click [here](https://rctilford.github.io/CSC324/). | ||
|
||
|
||
<div id="vssue"></div> | ||
|
||
<!-- Introduce Vue first --> | ||
|
||
<!-- vue runtime build (runtime only) --> | ||
<script src="https://unpkg.com/[email protected]/dist/vue.runtime.min.js"></script> | ||
<!-- OR: vue full build (runtime + compiler) --> | ||
<script src="https://unpkg.com/[email protected]/dist/vue.min.js"></script> | ||
|
||
<!-- Introduce Vssue after Vue --> | ||
|
||
<!-- Vssue Github build --> | ||
<script src="https://unpkg.com/vssue/dist/vssue.github.min.js"></script> | ||
|
||
<!-- use render function for vue runtime build --> | ||
<script> | ||
new Vue({ | ||
el: '#vssue', | ||
|
||
render: h => h('Vssue', { | ||
props: { | ||
// here set the title of issue of current page | ||
title: 'Vssue_article_02', | ||
|
||
// here set the options for your OAuth App | ||
options: { | ||
owner: 'rctilford', | ||
repo: 'personal-rhys-tilford', | ||
clientId: '9f2e6bf389986dd77793', | ||
clientSecret: '667ab6fd63d934d8e8fe1c3763e98351469e1195', // only required for some of the platforms | ||
}, | ||
} | ||
}) | ||
}) | ||
</script> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -156,4 +156,40 @@ Now that we know it can be written as a decimal, we will go on to the proof. | |
- **Ninth** Now we circle back to *Theorem 2.5.5* which contradicts the result of Step $8$ [$\bigstar$](shock.html). | ||
- **Tenth** Now that we have found a contradiction, we can apply *Reductio Ad Absurdum* to eliminate $1$ of the assumptions we used to get here and conclude the negation of that assumption. In our case, we conclude $\mathbb{F}$ is uncountable. [$\square$](cantorMemes.html) | ||
|
||
$\mathbfcal{Thank}$ $\mathbfcal{you}$ $\mathbfcal{for}$ $\mathbfcal{viewing}$ $\mathbfcal{this}$ $\mathbfcal{Queer}$ $\mathbfcal{Educational}$ $\mathbfcal{Demonstration}$ $\mathbfcal{(Q.E.D.)}$ | ||
$\mathbfcal{Thank}$ $\mathbfcal{you}$ $\mathbfcal{for}$ $\mathbfcal{viewing}$ $\mathbfcal{this}$ $\mathbfcal{Queer}$ $\mathbfcal{Educational}$ $\mathbfcal{Demonstration}$ $\mathbfcal{(Q.E.D.)}$ | ||
|
||
<div id="vssue"></div> | ||
|
||
<!-- Introduce Vue first --> | ||
|
||
<!-- vue runtime build (runtime only) --> | ||
<script src="https://unpkg.com/[email protected]/dist/vue.runtime.min.js"></script> | ||
<!-- OR: vue full build (runtime + compiler) --> | ||
<script src="https://unpkg.com/[email protected]/dist/vue.min.js"></script> | ||
|
||
<!-- Introduce Vssue after Vue --> | ||
|
||
<!-- Vssue Github build --> | ||
<script src="https://unpkg.com/vssue/dist/vssue.github.min.js"></script> | ||
|
||
<!-- use render function for vue runtime build --> | ||
<script> | ||
new Vue({ | ||
el: '#vssue', | ||
|
||
render: h => h('Vssue', { | ||
props: { | ||
// here set the title of issue of current page | ||
title: 'Vssue_article_03', | ||
|
||
// here set the options for your OAuth App | ||
options: { | ||
owner: 'rctilford', | ||
repo: 'personal-rhys-tilford', | ||
clientId: '9f2e6bf389986dd77793', | ||
clientSecret: '667ab6fd63d934d8e8fe1c3763e98351469e1195', // only required for some of the platforms | ||
}, | ||
} | ||
}) | ||
}) | ||
</script> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -433,3 +433,40 @@ Plot.plot({ | |
] | ||
}) | ||
``` | ||
|
||
|
||
<div id="vssue"></div> | ||
|
||
<!-- Introduce Vue first --> | ||
|
||
<!-- vue runtime build (runtime only) --> | ||
<script src="https://unpkg.com/[email protected]/dist/vue.runtime.min.js"></script> | ||
<!-- OR: vue full build (runtime + compiler) --> | ||
<script src="https://unpkg.com/[email protected]/dist/vue.min.js"></script> | ||
|
||
<!-- Introduce Vssue after Vue --> | ||
|
||
<!-- Vssue Github build --> | ||
<script src="https://unpkg.com/vssue/dist/vssue.github.min.js"></script> | ||
|
||
<!-- use render function for vue runtime build --> | ||
<script> | ||
new Vue({ | ||
el: '#vssue', | ||
|
||
render: h => h('Vssue', { | ||
props: { | ||
// here set the title of issue of current page | ||
title: 'Vssue_article_04', | ||
|
||
// here set the options for your OAuth App | ||
options: { | ||
owner: 'rctilford', | ||
repo: 'personal-rhys-tilford', | ||
clientId: '9f2e6bf389986dd77793', | ||
clientSecret: '667ab6fd63d934d8e8fe1c3763e98351469e1195', // only required for some of the platforms | ||
}, | ||
} | ||
}) | ||
}) | ||
</script> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,4 +51,40 @@ This step is likely the most straightforward of the whole process. In the `_quar | |
website: | ||
google-analytics: "UA-XXXXXXXX" | ||
``` | ||
After this change is deployed, It may take some time for Google Analytics to link with the site. I didn't notice any changes for about a half hour. | ||
After this change is deployed, It may take some time for Google Analytics to link with the site. I didn't notice any changes for about a half hour. | ||
|
||
<div id="vssue"></div> | ||
|
||
<!-- Introduce Vue first --> | ||
|
||
<!-- vue runtime build (runtime only) --> | ||
<script src="https://unpkg.com/[email protected]/dist/vue.runtime.min.js"></script> | ||
<!-- OR: vue full build (runtime + compiler) --> | ||
<script src="https://unpkg.com/[email protected]/dist/vue.min.js"></script> | ||
|
||
<!-- Introduce Vssue after Vue --> | ||
|
||
<!-- Vssue Github build --> | ||
<script src="https://unpkg.com/vssue/dist/vssue.github.min.js"></script> | ||
|
||
<!-- use render function for vue runtime build --> | ||
<script> | ||
new Vue({ | ||
el: '#vssue', | ||
|
||
render: h => h('Vssue', { | ||
props: { | ||
// here set the title of issue of current page | ||
title: 'Vssue_article_05', | ||
|
||
// here set the options for your OAuth App | ||
options: { | ||
owner: 'rctilford', | ||
repo: 'personal-rhys-tilford', | ||
clientId: '9f2e6bf389986dd77793', | ||
clientSecret: '667ab6fd63d934d8e8fe1c3763e98351469e1195', // only required for some of the platforms | ||
}, | ||
} | ||
}) | ||
}) | ||
</script> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,4 +21,40 @@ In order to make any changes to the element we have to find it's container. To d | |
|
||
```{=html} | ||
<iframe src="https://assets.pinterest.com/ext/embed.html?id=984318062294243327" height="520" width="236" frameborder="0" scrolling="no" ></iframe> | ||
``` | ||
``` | ||
|
||
<div id="vssue"></div> | ||
|
||
<!-- Introduce Vue first --> | ||
|
||
<!-- vue runtime build (runtime only) --> | ||
<script src="https://unpkg.com/[email protected]/dist/vue.runtime.min.js"></script> | ||
<!-- OR: vue full build (runtime + compiler) --> | ||
<script src="https://unpkg.com/[email protected]/dist/vue.min.js"></script> | ||
|
||
<!-- Introduce Vssue after Vue --> | ||
|
||
<!-- Vssue Github build --> | ||
<script src="https://unpkg.com/vssue/dist/vssue.github.min.js"></script> | ||
|
||
<!-- use render function for vue runtime build --> | ||
<script> | ||
new Vue({ | ||
el: '#vssue', | ||
|
||
render: h => h('Vssue', { | ||
props: { | ||
// here set the title of issue of current page | ||
title: 'Vssue_article_06', | ||
|
||
// here set the options for your OAuth App | ||
options: { | ||
owner: 'rctilford', | ||
repo: 'personal-rhys-tilford', | ||
clientId: '9f2e6bf389986dd77793', | ||
clientSecret: '667ab6fd63d934d8e8fe1c3763e98351469e1195', // only required for some of the platforms | ||
}, | ||
} | ||
}) | ||
}) | ||
</script> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -109,3 +109,38 @@ website: | |
title: "<svg class='logo' viewbox='65 55 100 10'><path></path></svg>" | ||
``` | ||
<div id="vssue"></div> | ||
<!-- Introduce Vue first --> | ||
<!-- vue runtime build (runtime only) --> | ||
<script src="https://unpkg.com/[email protected]/dist/vue.runtime.min.js"></script> | ||
<!-- OR: vue full build (runtime + compiler) --> | ||
<script src="https://unpkg.com/[email protected]/dist/vue.min.js"></script> | ||
<!-- Introduce Vssue after Vue --> | ||
<!-- Vssue Github build --> | ||
<script src="https://unpkg.com/vssue/dist/vssue.github.min.js"></script> | ||
<!-- use render function for vue runtime build --> | ||
<script> | ||
new Vue({ | ||
el: '#vssue', | ||
render: h => h('Vssue', { | ||
props: { | ||
// here set the title of issue of current page | ||
title: 'Vssue_article_07', | ||
// here set the options for your OAuth App | ||
options: { | ||
owner: 'rctilford', | ||
repo: 'personal-rhys-tilford', | ||
clientId: '9f2e6bf389986dd77793', | ||
clientSecret: '667ab6fd63d934d8e8fe1c3763e98351469e1195', // only required for some of the platforms | ||
}, | ||
} | ||
}) | ||
}) | ||
</script> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,4 +10,44 @@ categories: [Programming, Data Analysis, R, Just For Fun] | |
|
||
Some time ago I came across a fascinating mural project on social media. Each mural was made of thousands of dice arranged in a frame so that each dice was a single pixel in the image. I had largely forgotten about the piece until I came across another example of it created by [Dice Ideas](https://diceideas.com/) which is an organization that makes these murals by comission. On their website they have a tool that lets users upload a photo and get a digital example of what a dice mural might look like for that photo. I was curious to see how I could go about getting a spreadsheet that would show me what side of a dice would be face up for any photo so I got to work. | ||
|
||
I realized early on that some of my work would be best expedited to professional image editing software. I prefer [GIMP](https://www.gimp.org/) because it is a free open source program with ample support documents online. | ||
I realized early on that some of my work would be best expedited to professional image editing software. I prefer [GIMP](https://www.gimp.org/) because it is a free open source program with ample support documents online. | ||
|
||
|
||
|
||
|
||
|
||
<div id="vssue"></div> | ||
|
||
<!-- Introduce Vue first --> | ||
|
||
<!-- vue runtime build (runtime only) --> | ||
<script src="https://unpkg.com/[email protected]/dist/vue.runtime.min.js"></script> | ||
<!-- OR: vue full build (runtime + compiler) --> | ||
<script src="https://unpkg.com/[email protected]/dist/vue.min.js"></script> | ||
|
||
<!-- Introduce Vssue after Vue --> | ||
|
||
<!-- Vssue Github build --> | ||
<script src="https://unpkg.com/vssue/dist/vssue.github.min.js"></script> | ||
|
||
<!-- use render function for vue runtime build --> | ||
<script> | ||
new Vue({ | ||
el: '#vssue', | ||
|
||
render: h => h('Vssue', { | ||
props: { | ||
// here set the title of issue of current page | ||
title: 'Vssue_article_08', | ||
|
||
// here set the options for your OAuth App | ||
options: { | ||
owner: 'rctilford', | ||
repo: 'personal-rhys-tilford', | ||
clientId: '9f2e6bf389986dd77793', | ||
clientSecret: '667ab6fd63d934d8e8fe1c3763e98351469e1195', // only required for some of the platforms | ||
}, | ||
} | ||
}) | ||
}) | ||
</script> |
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
Oops, something went wrong.