- https://www.freecodecamp.org/news/learn-html-and-css-from-the-ceo-of-scrimba/
- https://www.freecodecamp.org/news/intro-to-algorithms-with-python/
- https://www.freecodecamp.org/news/whats-the-difference-between-authentication-and-authorisation
- https://www.freecodecamp.org/news/create-a-low-code-ecommerce-app-with-stripe-postgres-rest-api-backend/
- https://www.freecodecamp.org/news/machine-learning-for-everybody/
- https://www.freecodecamp.org/news/data-structures-in-javascript-with-examples/
- https://www.freecodecamp.org/news/javascript-dom-manipulation/
- https://www.freecodecamp.org/news/the-php-handbook/
- https://www.freecodecamp.org/news/use-react-and-apis-to-build-a-weather-app/
I am also active at:
Sunday, May 22, 2022
Free Code Camp courses
Hash Table or Map or Dictionary or Objects (in JavaScript and JSON)
JavaScript has a built in function for converting JSON strings into JavaScript objects:
JSON.parse()
JavaScript also has a built in function for converting an object into a JSON string:
JSON.stringify()
Example of a JSON string:
'{"name":"John", "age":30, "car":"Ford"}'
The JSON format is syntactically similar to the code for creating JavaScript objects. Because of this, a JavaScript program can easily convert JSON data into JavaScript objects.
Since the format is text only, JSON data can easily be sent between computers, and used by any programming language.
Read this for more details https://www.w3schools.com/js/js_json_intro.asp
Thursday, May 19, 2022
Tuesday, May 17, 2022
Sunday, May 8, 2022
Basic Flask web app
from flask import Flask app = Flask(__name__) #In Flask, URL rules can be added using either the @app.route() decorator or the app.add_url_...
-
//The HTML index page <!DOCTYPE html> <!-- To change this license header, choose License Headers in Project Properties. To change ...
-
Acronym Full Form AJAX Asynchronous JavaScript and XML API Application Programming Interface APK Android Application Package ASP Activ...
-
Here is a table for various colors and their corresponding data for OpenGL https://community.khronos.org/t/color-tables/22518/6