Programming Classes
257 subscribers
35 photos
1 video
12 files
24 links
Tech For better Future!
Download Telegram
Forwarded from Udemy Free Course
πŸ†“πŸ†“πŸ†“ FREE COURSE ALERT πŸ†“πŸ†“πŸ†“

πŸ“š Learn CSS - For Beginners

ℹ️ Learn to Work with Cascading Style Sheets
πŸ§‘β€πŸ« Instructor: YouAccel Training

🌐 Language: English
πŸ“Œ Category: #Coding

πŸ’° Price: $39.99 βž‘οΈπŸ†“
πŸƒ ENROLL NOW - LIMITED ENROLLMENTS ONLY
━━━━━━━━━━━━━━━
πŸ“š @course | @exams | @iitjee | @learning | @notes | @physicswallah | @skillshare | @unacademy πŸ“‘
Programming Classes pinned Β«For Web development Students only

Please Select Only 3 Projects from these 10 Projects. Top 3 selected projects will be done in class. We will Try to cover the others too AS much as The time allowed us.
Β»
Forwarded from Udemy Free Course
πŸ†“πŸ†“πŸ†“ FREE COURSE ALERT πŸ†“πŸ†“πŸ†“

πŸ“œ Learn JavaScript - For Beginners

ℹ️ Learn how to Code Web Pages using JavaScript
πŸ§‘β€πŸ« Instructor: YouAccel Training

🌐 Language: English
πŸ“Œ Category: #Coding

πŸ’° Price: $34.99 βž‘οΈπŸ†“
πŸƒ ENROLL NOW - LIMITED ENROLLMENTS ONLY
━━━━━━━━━━━━━━━
πŸ“š @course | @exams | @iitjee | @learning | @notes | @physicswallah | @skillshare | @unacademy πŸ“‘
❀1πŸ₯°1
We have a class on Sunday at the usual time , don't forget to study before you come to class.
πŸ‘4
How many hours of the python video with mosh have you watched?
Anonymous Poll
18%
1 hour
8%
2 hours
13%
3 hours
24%
4 hours and more
37%
I haven't seen it at all
πŸ‘3
There is class tomorrow (Sunday). Please be make sure you come on time. Attendance has marks. Being absent may result in loss of marks.
❀2πŸ‘1
    var inputValue = parseFloat(document.getElementById("input").value);
var Result = document.getElementById("result");
var outputValue;

outputValue = inputValue * 1000; /

outputElement.textContent = outputValue + " km";
}
There is class on Friday at 10:30 local time for web dev, python and basic computer classes.

For python students please bring your projects for evaluation.
πŸ‘3
Tomorrow we have a class at 2:00 local time for web dev, python and basic computer classes.

For website development Students Prepare a project you want to work on.
❀3πŸ‘1πŸ”₯1
πŸ“ŒProject ideas for python students

1. Create a code generator. This can that take text as input, replaces each letter with another letter, and outputs the β€œencoded” message.

2. Build a countdown calculator. Write some code that can take two dates as input, and then calculate the amount of time between them. This will be a great way to familiarize yourself with Python’s datetime module.

3. Write a sorting project. Given a list, can you write some code that sorts it alphabetically, or numerically? Yes, Python has this functionality built-in, but see if you can do it without using sort()!

4. Build an interactive quiz application. Which Avenger are you? Build a personality or recommendation quiz that asks users some questions, stores their answers, and then performs some kind of calculation to give the user a personalized result based on their answers

5. Tic-Tac-Toe by Text. Build a Tic-Tac-Toe game that’s playable like a text adventure. Can you make it print a text-based representation of the board after each move?

6. Make a temperature/measurement converter. Write a script that can convert Fahrenheit to Celcius and back, or inches to centimeters and back, etc. How far can you take it?

7. Simple Calculator: Create a basic calculator program that can perform addition, subtraction, multiplication, and division operations.

8. Number Guessing Game: Develop a game where the computer generates a random number and the player has to guess it within a certain number of attempts.
9. Countdown Timer: Create a program that allows users to set a countdown timer for a specified duration and notifies them when the time is up.

10. BMI Calculator: Develop a Body Mass Index (BMI) calculator that takes input for height and weight and calculates the BMI value along with a corresponding health category.

11. Password Generator: Build a program that generates random passwords of varying lengths and complexities based on user input.

12. Currency Converter: Build a program that converts currency values between different currencies based on exchange rates.

πŸ” πŸ” πŸ” πŸ” πŸ” πŸ” 
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘4πŸ”₯2❀1
This is the Random password generator project that we worked on at class today. You can see the code here for those of you who missed the class.
Password Generator In JavaScript πŸ˜‰
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Password Generator</title>
<script>
function generatePassword(length) {
var charset = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
var password = "";
for (var i = 0; i < length; i++) {
var randomIndex = Math.floor(Math.random() * charset.length);
password += charset[randomIndex];
}
return password;
}

function generateAndDisplayPassword() {
var passwordLength = document.getElementById("passwordLength").value;
var newPassword = generatePassword(passwordLength);
document.getElementById("passwordDisplay").innerText = newPassword;
}
</script>
</head>
<body>
<h1>Password Generator</h1>
<label for="passwordLength">Password Length:</label>
<input type="number" id="passwordLength" value="12" min="6" max="20">
<button onclick="generateAndDisplayPassword()">Generate Password</button>
<p id="passwordDisplay"></p>
</body>
</html>
πŸ‘2❀1
Programming Classes pinned Β«Choose one project idea that you haven't submitted before and prepare it for the next week. It has presentation. Please, be serious about it as this is the last grading project.Β»
πŸ” πŸ” πŸ” πŸ” πŸ” πŸ” 

🚨There's class tomorrow at 2:30 local time so python students bring your project and it has presentation.

It's the last grading project so don't be absent.
Please open Telegram to view this post
VIEW IN TELEGRAM
Web Development today At 4:00 am (Local Time)
πŸ‘3