Category: Programming

12
Dec
2019

JavaScript can change styles   <!DOCTYPE html> <html> <body> <h2>What Can JavaScript Do?</h2> <p id=”Zaki” fontsize=’12px’>Hello Zaki</p>…

11
Dec
2019

Mission Node.js

  https://www.freecodecamp.org/news/what-exactly-is-node-js-ae36e97449f5/   Node_js also I am practicing from here. https://www.w3schools.com/nodejs/nodejs_http.asp   Node.Js code to url parse:…

24
Nov
2019

Learning R for statistikal analysis

https://www.statmethods.net/management/operators.html https://www.tutorialspoint.com/r/r_boxplots.htm

24
Nov
2019

Java Programming Recap In Sha Allah

12
Nov
2019

Mission Machine Learning

Pagerank Algorithm Eigenvalue   Square Matrices     Geometric Interpretation   Eigenvalue: https://www.khanacademy.org/math/linear-algebra/alternate-bases/eigen-everything/v/linear-algebra-introduction-to-eigenvalues-and-eigenvectors  

12
Nov
2019

For Loops in Python

monday_temperatures=[9.1,8.8,7.6] # print(round(monday_temperatures[0])) # print(round(monday_temperatures[1])) # print(round(monday_temperatures[2])) for temperatures in monday_temperatures: print(round(temperatures)) print(“done”) for letter in “Hello”:…