Get started coding your own screen saver

Get help with yoss!
Post Reply
User avatar
moderator
Posts: 5
Joined: Tue Jun 04, 2019 4:45 pm

Get started coding your own screen saver

Post by moderator » Tue Jul 02, 2019 2:02 pm

Hi there!

Here are some absolute beginners guides which I hope can be useful. If you have a good source, please comment with more links!

Don't forget that the javascript file used by the screen saver should not contain any <script>..</script> block. The simplest screen saver you can write is one line:

Code: Select all

alert("Hi there!");
w3schools are famous and a comprehensive source of information and loads of examples. Best of all is their "Try it yourself" button in all of their examples. Break their examples until you grasp the idea!

https://www.w3schools.com/js/

developer.mozilla.org can be a bit scary! It's enormous. But also complete! It's the guys making the future browsers so it should be. This link lead directly to the javascript part, expect some reading. I use it as a complement to w3schools when there is just that tiny advanced thing I cannot google.

https://developer.mozilla.org/en-US/doc ... irst_steps

stackoverflow.com is the number one forum for getting your answers! It is so comprehensive it usually replaces reading the documentation. Every possible question have an answer. Google is your friend here. I google "javascript how do i..." followed with my question. Many times stackoverflow show up first simply because the same question has been asked in every variant of english you can imagine. :-) Always respect people answering your question, don't forget they do it for free.

https://stackoverflow.com/questions/tagged/javascript

geeksforgeeks.org seem to be organized and full of good examples along with explanations. The commercial is not too disturbing, some of it have a hide-me button.

https://www.geeksforgeeks.org/javascript-tutorial/

javascript.info seem to be a comprehensive guide with a classic structure with the fundamentals, data types, functions, objects and the lot.

https://javascript.info/hello-world

tutorialspoint.com are similar to javascript.info, packed with commercial but otherwise free to use.

https://www.tutorialspoint.com/javascri ... syntax.htm

I hope this will help you get started!
Last edited by moderator on Tue Jul 02, 2019 2:04 pm, edited 1 time in total.
Reason: title

Post Reply