Skip to content

Instantly share code, notes, and snippets.

View mhfaisalbd's full-sized avatar
🎯
Focusing

Md. Mahmudul Hasan Faisal mhfaisalbd

🎯
Focusing
View GitHub Profile
@mhfaisalbd
mhfaisalbd / addotnet.md
Last active April 30, 2024 08:48
Application Development (.NET) Learning path

System Application Development (.NET)

Syllabus and Course Manual for Class Lectures

PART I (.NET Programming Using C#)

Total Lecture Count: 10 Total Duration: 15:00 Hours (approx.)

Class 0: Scratch & Fundamental Concepts (Duration: 02:00 Hours Approx.)

  • Introduction
  • What is System Development
@mhfaisalbd
mhfaisalbd / SFSDOTNETDCP.md
Last active September 5, 2023 21:49
Steps for Full Stack .NET Developer | Career Path

Steps for Full Stack .NET Developer | Career Path

  1. Software Development Lifecycle (SDLC):

    Hint: Complete through Software Engineering theories. Select Agile as the targeted model from the 6 basics.

  2. Software Development Methodology:

    • Agile (SCRUM)
    • Sprint Event Board
  • Jira
function preview_image(imgOutputId, textOutputId, event) {
var reader = new FileReader();
reader.onload = function () {
var imgOutput = document.getElementById(imgOutputId);
var textOutput = document.getElementById(textOutputId);
imgOutput.src = reader.result;
textOutput.value = imgOutput.src;
}
reader.readAsDataURL(event.target.files[0]);
}
<html>
<head>
<script src="jquery-2.1.4.js"></script>
<script src="jspdf.min.js"></script>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<div id="navbar"><span>jsPDF Tutorial - Form Filling</span></div>
<div id="wrapper">