Personal Blog

Programming

Programming

Work Anniversary

Today is my Third Work Anniversary at Tehran Institute of Technology. I am Full-Stack tutor there but currently teaching just Front-End Web Design. Visit My Academic & Educational Website Now I am planning to expand my knowledge with up-to-date skills. Salut!
Continue reading →
Programming

Tips About Web Design Projects

You may be a Freelance Web Designer (Front-End Designer) or Developer (Back-End Programmer) or both: a Full-Stack Developer. First step through a successful web design project is understanding the purpose of design and audience. It may have been a design for all ranges or a specific partition of people. It may be a general-purpose website or dedicated to special purpose(s). Second: you have to arrange a contract. No step must be taken unless it is documented into a contract. Even…
Continue reading →
Programming

What is Dictionary in Python?

Python has some complicated data structures, such as: Lists, Tuples, Dictionaries and Sets Dictionary is also called Associative Array. A dictionary consists of a collection of key-value pairs. Definition: d = { <key>: <value>, <key>: <value>, . . . <key>: <value> } Iteration Code: dict = {'color': 'blue', 'fruit': 'apple', 'pet': 'dog'} for key in dict: print(key) Output: color fruit pet Code: for item in dict.items(): print(item) Output: ('color', 'blue') ('fruit', 'apple') ('pet', 'dog') Code: for item in dict.items(): print(item)…
Continue reading →
Programming

Natural Language Programming

Do you know, you don't have to be a programmer to write a computer program? These days, by improving artificial intelligence methods, you can just write down what you expect from a computer program, and using special interface, the story will interpreted and turned into a computer program. It don't have to be a specific person to do so, just a robot called "transparent robot" (hidden from human eyes) can write the story down and interface such as Inform 7…
Continue reading →
Programming

How to fix Bootstrap 5 in Dreamweaver

You know, if you want to use Bootstrap in Dreamweaver, it can be automatically done. Download bootstrap zip file from: https://getbootstrap.com/Put CSS and JS folder of Bootstrap in your root folderCreate New SiteCreate a file -> Select Bootstrap -> Attach Bootstrap.css file on the dialog below 5. Now Dreamweaver automatically will add line below to header: <link href="css/bootstrap.min.css" rel="stylesheet"> and these lines to footer of the page: <script src="js/jquery-3.4.1.min.js"></script> <script src="js/popper.min.js"></script> <script src="js/bootstrap.min.js"></script> Note: Some JavaScript function doesn't work in…
Continue reading →
Programming

Face Recognition on Python

A few weeks ago, me & my brother were talking about face recognition on scanned family photos.I got curious to find out how to implement a face recognition on Python. 1. Install Anaconda for Python Package ManagerIt has a shell for downloading packages automatically. 2. Download & Install CMakeFor compiling DLib on Visual Studio 2015 3. Install Visula Studio 2015 (Version is important) 4. Download DLib Package and Extract 5. Open CMake and configure like below: 6. Download & Install…
Continue reading →
Back to top