UPDATED: 2022-05-06
If you don’t know anything about programming but you would like to start creating your own webs, desktop or mobile apps from scratch, I’m here to help you out ^^
Break the ice with a short fun history about JavaScript and the Web
- From undefined to something.js
Here we go, our first real code contact! You can start doing these fantastic courses from CodeAcademy (guided step by step, interactive and very basic)
- Introduction to HTML
- Introduction to CSS
- Introduction to JavaScript (and intermediate)
Follow with these complete courses from W3CSchools (a wider guide with many examples)
- HTML – The language for building webs
- CSS – The language for styling webs
- JavaScript – The language for programming webs
Don’t worry if some concept are repeated, you need to consolidate, humans learn buy doing.
Another really good option is Mozilla Developer Network (shared knowledge for the Open Web) and all courses about Web Technologies where you can find a wonderful documentation, tutorials and tools. Everything very well structured and in many different languages with the chance to dive deeper into Web Technologies.
After doing CodeAcademy, W3CSchools courses and having taken a glance to MDN I would recommend you to watch this YouTube tutorial: Understanding the Weird Parts of JavaScript. It’s also really basic but it explains some aspects under the hood of JS. This guy made a really good presentation, one of the best videos about JS I’ve ever seen. You can complete his course on Udemy.
After consolidating a good base:
- Functional Programming with JavaScript (mandatory)
- Understanding the even loop (mandatory)
- CSS Grid
- Svelte
- Some of my tricks
Things are as easy as you want them, the knowledge should be open and free for everyone. There are many genius out there and most of them cannot afford their studies, even if they are public. Do not keep your knowledge for you, spread it out together with your ideas to build a better world 🙂
Draft an app, how to start?
/in Design/by GénesisI’ve been developing apps from a few years now and there are some typical things at the beggining (when you are thinking and designing the app) that you should do if you do not want to be overwhelmed.
Here you can see an initial basic draft. Do not extend yourself too much doing it wonderful and perfect because you will have to change it a lot (it has to be just the first idea), remember you will have more meetings with your team and customers.
Please, do not make the mistake of starting with the code!
Draggable marker in Google Maps without API Key
/in HTML5, JavaScript/by GénesisThere is a really good documentation about how to use Google Maps API, many of the Google examples are with an API Key but you don’t need it. Use the API Key if you want to monitor your apps or if you want to buy additional usage quota (less than 2.5000 loads per day it’s free).
So, for this basic example, we use Google Maps API without Key to add a draggable Marker in a map that is always centered on our marker position.
CSS zoom
/in CSS3, HTML5, JavaScript/by GénesisEasy zoom in, zoom out, normal zoom and zoom adjusted to the container with CSS and JS.
If you want to change the zoom, just add or subtract from the original zoom CSS property.
You can also set up maximum and minimum values to avoid infinite zoom.
To adjust an area or image to your container you need to divide the width or height depending of what you want to adjust.
Here a real example:
Basic CSS transition using box-shadow
/in CSS3, HTML5/by GénesisWould you like to set up a cool basic transition for your buttons when the cursor is over them?
Our CSS will change if the mouse is over the button.
We are filling up the element with an inner shadow (inset) and changing the font color.
Here a real example:
Would you like to start with web development?
/in CSS3, HTML5, JavaScript, Tooling/by GénesisUPDATED: 2022-05-06
If you don’t know anything about programming but you would like to start creating your own webs, desktop or mobile apps from scratch, I’m here to help you out ^^
Break the ice with a short fun history about JavaScript and the Web
Here we go, our first real code contact! You can start doing these fantastic courses from CodeAcademy (guided step by step, interactive and very basic)
Follow with these complete courses from W3CSchools (a wider guide with many examples)
Don’t worry if some concept are repeated, you need to consolidate, humans learn buy doing.
Another really good option is Mozilla Developer Network (shared knowledge for the Open Web) and all courses about Web Technologies where you can find a wonderful documentation, tutorials and tools. Everything very well structured and in many different languages with the chance to dive deeper into Web Technologies.
After doing CodeAcademy, W3CSchools courses and having taken a glance to MDN I would recommend you to watch this YouTube tutorial: Understanding the Weird Parts of JavaScript. It’s also really basic but it explains some aspects under the hood of JS. This guy made a really good presentation, one of the best videos about JS I’ve ever seen. You can complete his course on Udemy.
After consolidating a good base:
Things are as easy as you want them, the knowledge should be open and free for everyone. There are many genius out there and most of them cannot afford their studies, even if they are public. Do not keep your knowledge for you, spread it out together with your ideas to build a better world 🙂