VS Code version 1.98.2 (the current version 27/03/2025) crashes when running on a Raspberry Pi.
If you are running VS Code on a Pi then I would refuse updates until this problem has been fixed.
A blog for fun JavaScript projects.
VS Code version 1.98.2 (the current version 27/03/2025) crashes when running on a Raspberry Pi.
If you are running VS Code on a Pi then I would refuse updates until this problem has been fixed.
My two books:
“Practical Arduino C” and “Learn To Program with Games and JavaScript”
Are now out of print but can be read online as follows
Learn to Program with Games and JavaScript
Both books have support pages that include code downloads and additional notes. These can be located at:
Practical Arduino C support pages
Learn to Program with Games and JavaScript
The following book specific web sites are now deprecated and will be discontinued over the next weeks and months (from Feb. 2025)
practicalarduinoc.co.uk (discontinued March 2025 please use https://adit.co.uk)
practicalarduinoc.com
programmingjavascriptbook.com
Please bookmark and use https://adit.co.uk to access all resources for these books.
My book "Learn to Program with Games and JavaScript" introduces some data structures and algorithms. If you want to extend your knowledge in these areas then I recommend checking out this project on GitHub. There are a huge number of useful data structures and a host of key algorithms that will build upon your programming skills and take you wherever you need to go into the future.
If you have read my book and would like to take a look at some alternate approaches to game development then I recommend following this series of posts on game development for a microprocessor platform using the Lua programming language. You might think that is a big step away from JavaScript running within a browser (even if my book was designed for a wide range of personal computer platforms) and it is BUT - you will be surprised to find just how much of what you learned is directly applicable and transferable to an alternate programming environment. Those JavaScript programming skills do not lock you in to that one programming language but are transferable to new project areas.
Looking for some game ideas? Why not take a look at the JS 13K 2020 competition top 10.
They all look brilliant to me.
html { padding: 0; margin: 0; border: 0;}
#dvViewer {
width: 300px;
height: 200px;
}
svg {
height: 100%;
width: 100%;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible">
<title>Basic SVG Demo</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="main.css" />
</head>
<body>
<div id="dvViewer">
<svg viewBox="0 0 200 100" xmlns="http://www.w3.org/2000/svg">
<style>
.normal { font: normal 15px sans-serif; }
.bold { font: bold 30px sans-serif; }
.bright { font: italic 40px serif; fill: red; }
</style> <!-- font colour is the fill -->
<text x="10" y="35" class="normal">Welcome</text>
<text x="75" y="35" class="bold">readers</text>
<text x="55" y="65" class="normal">to</text>
<text x="70" y="65" class="bright">SVG!</text>
</svg>
</div>
</body>
</html>
<div id="dvScale">
<svg viewBox="0 0 510 30" xmlns="http://www.w3.org/2000/svg">
<style>
.normals { font: normal 10px sans-serif; text-anchor: middle;}
.tl {stroke: black; stroke-width: 0.5;}
</style>
<line x1="5" y1="20" x2="5" y2="30" class="tl" />
<text x="5" y="19" class="normals" >1</text>
<line x1="155.5" y1="20" x2="155.5" y2="30" class="tl" />
<text x="155.5" y="19" class="normals" >2</text>
<line x1="243.5" y1="20" x2="243.5" y2="30" class="tl" />
<text x="243.5" y="19" class="normals" >3</text>
<line x1="306" y1="20" x2="306" y2="30" class="tl" />
<text x="306" y="19" class="normals" >4</text>
<line x1="354.5" y1="20" x2="354.5" y2="30" class="tl" />
<text x="354.5" y="19" class="normals" >5</text>
<line x1="394" y1="20" x2="394" y2="30" class="tl" />
<text x="394" y="19" class="normals" >6</text>
<line x1="427.5" y1="20" x2="427.5" y2="30" class="tl" />
<text x="427.5" y="19" class="normals" >7</text>
<line x1="456.5" y1="20" x2="456.5" y2="30" class="tl" />
<text x="456.5" y="19" class="normals" >8</text>
<line x1="482" y1="20" x2="482" y2="30" class="tl" />
<text x="482" y="19" class="normals" >9</text>
<line x1="505" y1="20" x2="505" y2="30" class="tl" />
<text x="505" y="19" class="normals" >10</text>
</svg>
</div>
#dvScale {
width: 510px;
height: 30px;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible">
<title>SVG and JavaScript</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="main.css" />
<script src="svg.js"></script>
</head>
<body>
<div id="dvScale">
</div>
<script src="main.js"></script>
</body>
</html>
function createSvgElem(svgTag, svgAttr, svgStyle, addTo) {
const nSpace = "http://www.w3.org/2000/svg";
let nElem = document.createElementNS(nSpace, svgTag);
for (let atrib in svgAttr) {
nElem.setAttributeNS(null, atrib, svgAttr[atrib]);
}
if (svgStyle) {
for (let atrib in svgStyle) {
nElem.style[atrib] = svgStyle[atrib];
}
}
if (addTo) {
addTo.appendChild(nElem);
}
return nElem;
}
var div = document.getElementById("dvScale");
function initialise(){
let svgStyle = {
small: { "font": "normal 10px sans-serif", "text-anchor": "middle"},
tl: {"stroke": "black", "stroke-width": "0.5"}
};
let svgAttr = {"viewBox": "0 0 510 30"};
let svg = createSvgElem("svg", svgAttr, null, div);
for(let i = 1; i < 11; i++){
let x = (Math.log10(i) * 500 + 5).toFixed(1); // log of number * scale length + scale start
svgAttr = {"x1": x, "x2": x, "y1": "20", "y2": "30"};
createSvgElem("line", svgAttr, svgStyle.tl, svg);
let lab = createSvgElem("text", {"x": x, "y": "19"}, svgStyle.small, svg);
lab.innerHTML = i.toString();
}
}
initialise();