Update README.md

This commit is contained in:
Ric Harvey 2024-11-13 22:17:30 +00:00
parent f63dbb5651
commit 64d955ba0b

View file

@ -1,7 +1,30 @@
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.4/Chart.js">
</script>
# < 👋 Hello World > # < 👋 Hello World >
<link rel="me" href="https://mastodon.squarecows.com/@Ric"> <link rel="me" href="https://mastodon.squarecows.com/@Ric">
Hi everyone and welcome to my profile, I'm Richard Harvey (or you can call me Ric). I'm a developer advocate in my day job connecting with over 10,000 engineers internally and deliver technical demo's, workshops and tutorials to the organisation. As a lot of my work is around Open Source Technology I also work hard to be able to release the tutorials to the wider public. I champion the usage of Open Source in businesses and have built several tools to help with this and the deployment. They'll all be in my repository list over time and should help you not only build the project but tackle the governance and compliance that comes with adopting a project internally. Hi everyone and welcome to my profile, I'm Richard Harvey (or you can call me Ric). I'm a developer advocate in my day job connecting with over 10,000 engineers internally and deliver technical demo's, workshops and tutorials to the organisation. As a lot of my work is around Open Source Technology I also work hard to be able to release the tutorials to the wider public. I champion the usage of Open Source in businesses and have built several tools to help with this and the deployment. They'll all be in my repository list over time and should help you not only build the project but tackle the governance and compliance that comes with adopting a project internally.
## test chart
<canvas id="myChart" style="width:100%;max-width:700px"></canvas>
const xValues = ["Italy", "France", "Spain", "USA", "Argentina"];
const yValues = [55, 49, 44, 24, 15];
const barColors = ["red", "green","blue","orange","brown"];
new Chart("myChart", {
type: "bar",
data: {
labels: xValues,
datasets: [{
backgroundColor: barColors,
data: yValues
}]
},
options: {...}
});
## Contact ## Contact