Posts

PHP-Array

PHP Beginner PHP Array Loop Function Pre-Def variable Session Read Write File CRUD Advanced PHP PHP MySQL PHP MyAdmin PHP MySQL Notes Other course Python Beginner Intermediate Advanced Pro python-hosting React Links General JS PHP Programming Python C++ Stuff < Beginner PHP >< Array >< Loop >< Function >< Pre-Def variable >< Session > < Read Write File > < CRUD > < Advanced PHP > < PHP MySQL PHP MyAdmin > < PHP MySQL Notes > Numeric Arrays Associate numeric index with their value...

PHP-Loop

PHP Beginner PHP Array Loop Function Pre-Def variable Session Read Write File CRUD Advanced PHP PHP MySQL PHP MyAdmin PHP MySQL Notes Other course Python Beginner Intermediate Advanced Pro python-hosting React Links General JS PHP Programming Python C++ Stuff < Beginner PHP >< Array >< Loop >< Function >< Pre-Def variable >< Session > < Read Write File > < CRUD > < Advanced PHP > < PHP MySQL PHP MyAdmin > < PHP MySQL Notes >   While Loop execute as long as condition is true w...

PHP - Beginner

PHP Beginner PHP Array Loop Function Pre-Def variable Session Read Write File CRUD Advanced PHP PHP MySQL PHP MyAdmin PHP MySQL Notes Other course Python Beginner Intermediate Advanced Pro python-hosting React Links General JS PHP Programming Python C++ Stuff < Beginner PHP >< Array >< Loop >< Function >< Pre-Def variable >< Session > < Read Write File > < CRUD > < Advanced PHP > < PHP MySQL PHP MyAdmin > < PHP MySQL Notes > Hello World  <?php echo "Hello World"; ?...

ReactJS-Function

< React Course Notes >< ReactJS function >  Functions: const square = function(x) {   return x * x; }; console.log(square(3)); // → 9 Function`s Parameters A function can have multiple parameters  const roundTo = function(n, step) {   let remainder = n % step;   return n - remainder + (remainder < step / 2 ? 0 : step); }; console.log(roundTo(23, 10)); // → 20 or no parameters at all const makeNoise = function() {   console.log("Pling!"); }; makeNoise(); // → Pling! Nested functions const hummus = function(factor) {   const ingredient = function(amount, unit, name) {     let ingredientAmount = amount * factor;     if (ingredientAmount > 1) {       unit += "s";     }     console.log(`${ingredientAmount} ${unit} ${name}`);   };   ingredient(1, "can", "chickpeas");   ingredient(0.25, "cup", "tahini");   ingredient(0.25, "cup", "lemon juice");   ingredient(1, "...

GIT

< JS C C++ Python >< coding Robotics CNC > < Robotics CNC Links > < CNC >< CNC tutorial > < 3d printing >< Azure MongoDB Spark > < AI Pytorch > < Ship building >< GIT >   source: jwiegley.github.io/git-from-the-bottom-up/  1.Definition of terms Repository it is a collection of commits it defines HEAD it contains a set of branches and tags Index changes are first registered in the index it is a way of confirming changes before doing a commit it is also called the staging area working trees it is any directory on your filesystem which has a repository associated with it typically indicated by the presence of a sub-directory within-it, named: git it includes all the files and subdirectories in that directory Commit it is a snapshot of your working tree at some point of time it is an archive of what the project`s tree looked like at a past date Whether on your machine or someone else`s  the state of HEAD at the tim y...

Links: Very original work helpers - super duper

 < CSS >< PHP >< 2d-3d webdsgn links >< Agile SQL >< Scratch Blockly Android Blockchain > < Azure MongoDB Spark >< Work helpers > CSS   Drawing https://excalidraw.com /  - online anonymous drawing https://plus.excalidraw.com/plus/?utm_source=excalidraw&utm_medium=app&utm_content=hamburger Visual Coding - WYSIWYG https://www.flyde.dev/  like scratch - very good - go to : VS code extension link from the menu : https://marketplace.visualstudio.com/items?itemName=flyde.flyde-vscode trading work helpers pinejs - trading programming with it is cool -  requires to learn extra ,  Familiarity with TradingView indicators:  Moving Averages,  RSI Bollinger Bands https://courses.theartoftrading.com/courses/pine-script-basics-course#:~:text=Forever!,is%20completely%20free%20for%20life.   trading platform : Kortana - up to 200 K for simulation

React-course notes

< React Course Notes >< ReactJS function > I) installation: https://www.freecodecamp.org/news/react-for-beginners-handbook/ run msdos in C;// run the command: - This creates the working folder npm create vite@5.1.0 my-alorya-app -- --template react II) to start vite.js run in msdos: cd my-alorya-app change folder with cd my-app - in msdos This installs the app in the folder: npm install Run Vite.js:  npm run dev With vite all is ready! -  Watch out :  There should be no errors in the installation (red text).  If there are any, you should correct them. creating project (without vite.js) I recommend you just use vite.js and not the following, I found them too comples, and I had many errors to correct. Run the code -  Run them if you do not use vite.js - if you use vite.js you don`t need them npm init -y install react libraries npm install react@^17.0.0 react-dom@^17.0.0 --save install babel npm install @babel/preset-env @babel/preset-react @babel/core ...