Posts

Class 1: Data Communications (ECE - 3101)

Image
# Define "Data Communication"  # Fundamental Charecterstics of Data Communication.  Answer: There are 5 basic elements in data communication system.  Sender Receiver Medium : wired/wireless data Rules - (Protocol) Books: Data Communications & Networking (BEHROUZ A FOROUZAN)  Class Work: Reading Chapter 1: Introduction (All Pages)

Set Up Your PC for Web Development - Day 77

 Set Up Your PC for Web Development After a logtime break, I come back. Today, I wiil discuss "How to set up our Device for web Develoment".  Install node Install git Install Github Desktop Install VS Code Install Heroku vs code extensions for web development Auto Close Tag Auto Import Auto Rename Tag Bracket Pair Colorizer Code Spell Checker Color Picker Editor Config GitHistory GitLens HTML Snippets Import  Cost JavaScript(ES6) Code Snippets npm  npm intellisense Path Intellisense Polacode Prettier code formatter React Extensions Pack Reactjs Code snippets search node_modules Visulal Studio Intellicode ESLint Search Google => "Best VS Code extensions for web development" 

Some basic javaScript problems you must solve to level up your skills - day 41

 1. Find the largest number of the Array function theLargest ( numbers ){     let largest = numbers [ 0 ];     for ( let i = 0 ; i < numbers . length ; i ++) {         const element = numbers [ i ];         if ( element > largest ){             largest = element ;         }     }     console . log ( largest ); } theLargest ([ 1 , 2 , 3 , 6 , 4 , 2 , 3 ]) 2. Convert Inch to Feet function convertInchToFeet ( inch ){     const feet = inch / 12 ;     return feet . toFixed ( 2 ); } const mojnuFeet = convertInchToFeet ( 62 ); console . log ( mojnuFeet ); const daduFeet = convertInchToFeet ( 48 ); console . log ( daduFeet ); 3. Check a Year Leap Year or Not function checkLeapYearOrNot ( year ) {     if ( year % 400 == 0 ){         return year + " is a Leap Year" ;     } ...

Learn javaScript Basics- Day 4

HTML : html used for describing content CSS : css used for describing presentation of the content JavaScript : javascript used for describing behaviours Run JavaScript in VS Code node filename.js or,  click run button in VS code create a launch.json file select node.js preview html and css are not programming language. JavaScript is a programming language.  Programming is a set of instruction (which is written by programmer) that telling a computer what to do.    What does the alert() function do? The alert function opens up a pop-up box with whatever text you pass to it. What does prompt() funtion do? The prompt function opens up a pop up box with a text field that allows the user to type an answer, which it will then return to code. Primitive values are hardcoded and therefore cannot be changed. if a=10, you can change the value of x you can not change 10 Javascript data types Numbers String booleans null undefined object function Numbers : JavaScript onl...

Learn Git and host your website- Day 3

 Github  Create a Github account It helps you to share you code multiple computers or collaborate with friends version control system Install Git ======= download git from Google git --version download Github desktop  https://desktop.github.com/ Configuring Git =========== git config --global user.name "coderMojnu" git config --global user.email mojnu.cse.pust@gmail.com First Push ======= mkdir first_push cd first_push touch README.md (Markdown is a language that looks a lot like plain text)  echo "foo bar bizz bang" >> README.md (saving some text in README.md) cd projects/first_push/ git init git status git add README.md (Calling git track the file)  git commit -m "Initial Commit" (Calling git to save this)  Checking Status and Branches ====================== git status Send your all Code to github ===================== create a new Repository and fill up the information and hit 'create Repository' button git remote add origin https://github...

Learn CSS as a Beginner - day 2 | 90 Day Code

Image
 Learn CSS as a Beginner - day 2 There are three core part in web development:  HTML CSS JavaScript CSS - (Cascading Style Sheets) makes web page beautiful. Add makeup in text, audio, video, table, input.  CSS can style a html tag in three ways:  Inline CSS Internal CSS External CSS 1. Inline CSS:  It's direct apply in html element  use style attribute Inline css override the style which are define by the internal or external CSS Ex: <p style="color: blue">I am blue text</p> 2. Internal CSS: write <style></style> tag under the <head> tag. <style>p {color: blue;}</style> 3. External CSS:  Professionaly every developer use external css to manage their html code. In your html code write <link rel="stylesheet" href="style.css"/> in the head tag.  Example:  HTML Color : you can use color in your website in five different ways.  Color names: <h1 style="color: tomato">Tomato Color</h1>...

Journey start to become a web developer and Learn HTML - day 1 | 90 Day Code

Image
Journey start to become a web developer and Learn HTML - day 1 | 90 Day Code Before start to be a web developer journey you must follow three rules until you finished.   It will take 6-7 hours every day (90 day)  Must be given priority than all other works Be unsocial and sacrifice all other enjoyable issue in this 90 day.    3 main language to build a website How to become a Front end Web Developer in four steps:  Learn HTML, CSS, Bootstrap, JavaScript Learn a Framework: React  Learn version control system: Git Learn CSS preprocessors: SASS, JS preprocessors: TypeScript frontend web development skills How to become a back end developer:   Understanding of front end web technologies: HTML, CSS, JavaScript Choose a programming language: 👉JavaScript👈 or Python or PHP Learn a framework: node js, express js, django (python framework) Learn git and github Learn Firebase, firebase authentication,  Databases: SQL and Non-SQL (MongoDB) Learn about API...