Posts

minhaj portfolio site

import React from 'react'; import { Github, Youtube, ExternalLink, Mail, Code, BookOpen, Video } from 'lucide-react'; const Portfolio = () => {   return (     <div className="min-h-screen bg-gradient-to-br from-gray-50 to-gray-100">       {/* Hero Section */}       <header className="container mx-auto px-4 py-16 md:py-24">         <div className="max-w-3xl mx-auto text-center">           <h1 className="text-4xl md:text-6xl font-bold text-gray-900 mb-4">             Minhaj Raza           </h1>           <p className="text-xl md:text-2xl text-gray-600 mb-8">             CS Student • App Developer • Content Creator           </p>           <div className="flex justify-center space-x-4">   ...

a basic calculator with flutter

  import 'package:flutter/material.dart' ; void main () => runApp ( CalculatorApp ()); class CalculatorApp extends StatelessWidget { const CalculatorApp ({ super . key }); @override Widget build ( BuildContext context ) { return MaterialApp ( debugShowCheckedModeBanner : false , title : 'Minhaj Calculator' , theme : ThemeData . dark (). copyWith ( primaryColor : Colors . deepPurple , scaffoldBackgroundColor : Colors . black , ), home : Calculator (), ); } } class Calculator extends StatefulWidget { @override _CalculatorState createState () => _CalculatorState (); } class _CalculatorState extends State < Calculator > { String _output = "0" ; String _currentNumber = "" ; String _operation = "" ; double _num1 = 0 ; double _num2 = 0 ; void _buttonPressed ( String buttonText ) { setState (() { if ( buttonText == "C" ) { _output =...

Zero to One book images

Image
                                                     Zero to one Book images  Chapter1 : Chapter 2 :    Chapter 3 :  Chapter 4 :  Chapter 5 :  Chapter 6 :  Chapter 7 :  Chapter 8 :  Chapter 9 :  Chapter 10 :  Chapter 11 :  Chapter 12 :  Chapter 13 :  Chapter 14 :  Conclusion: