Introduction: In the world of personal development and self-improvement literature, few books have had as lasting an impact as “The 7 Habits of Highly Effective People” by Stephen R. Covey. Published in 1989, this groundbreaking book presents a holistic approach to personal effectiveness that transcends time and remains highly relevant today. In this article, we will explore the key insights […]
Cyber Crime in Pakistan: An Overview
In today’s digital age, cybercrime is a growing concern for individuals, organizations, and governments worldwide. Pakistan is no exception to this trend, and the country has seen a significant increase in cybercrime in recent years. In this article, we will discuss the different types of cybercrime prevalent in Pakistan, the laws in place to address these crimes, and their effectiveness. […]
Outline – Cyber Laws in Pakistan – A Critical Analysis
Introduction to Cyber Laws in Pakistan: Give an overview of the history of cyber laws in Pakistan and their current status. Discuss the need for cyber laws in today’s digital world and how they impact individuals and society. Cyber Crime in Pakistan: Discuss different types of cybercrime prevalent in Pakistan, such as hacking, identity theft, and cyberbullying. Explain the laws […]
Introduction to the Social Issues in Pakistan
Pakistan is a country with a rich cultural heritage, but it is also beset by a number of social issues that have hindered its progress. These issues have their roots in a number of different factors, including historical, cultural, economic, and political factors. In this article, we will take a look at some of the major social issues in Pakistan, […]
How to clone a private git repository using ssh
About SSH keys You can use SSH to perform Git operations in repositories on GitHub.com. For more information, see “About SSH.” If you have an existing SSH key, you can use the key to authenticate Git operations over SSH. Checking for existing SSH keys Before you generate a new SSH key, you should check your local machine for existing […]
Email Template to ask a Foreign Supervisor for a Consent Letter to Avail a Scholarship
Dear Sir/Mam, I hope you are keeping in good health. I’m Rana Faraz Ahmed, a Software Engineer, a Data Scientist and a PhD Scholar from Pakistan. The government of Pakistan is offering a scholarship (INTERNATIONAL RESEARCH SUPPORT INITIATIVE PROGRAM) to its enrolled PhD scholars for a period of six months. To be able to use it, I need to get an official acceptance letter for research from […]
Django Handouts
pip install django django-admin django-admin startproject project-name python manage.py runserver python manage.py startapp app-name python manage.py migrate python manage.py createsuperuser python manage.py makemigrations python manage.py migrate After applying migration we need to register the migrated model with the admin of that app: from . models import * admin.site.register(model-name) python manage.py shell pip install psycopg2 –> This library makes django communicate […]
How to integrate iDempiere with PHP Apps using SOAP APIs?
Useful resources regarding the subject matter are as follow: Starting Point: https://wiki.idempiere.org/en/Web_Services_First_Steps Web Service Security: https://wiki.idempiere.org/en/Web_Services_Security More Info: https://wiki.idempiere.org/en/Web_services Access APIs: http://localhost:8080/ADInterface/services To learn about CURL: https://phpenthusiast.com/blog/five-php-curl-examples To Process Response: https://stackoverflow.com/questions/35581239/returning-a-xml-response-with-curl/35581517 To Beautify Response: https://www.semicolonworld.com/php/tutorial/convert-array-to-xml-php Scenario: Integrate iDempiere with PHP application and get all Business Partners using SOAP API. Solution: First of all, we have to setup web service cofigurations […]
Callout to deduct Withholding on Invoice in iDempiere
Note: This article significantly target scenarios of Islamia University of Bahawalpur. However, reader can use it to implement his/her own ideas. I’m writing it so that any developer from IUB can make any technical ammendents. There is another announcement that you may not like: This Call out or calculator has nothing to do with the accounting of iDempiere but […]
How to configure pgAdmin4 on live server?
After installing PostgreSQL, run this command in terminal to install PgAdmin4 on Ubuntu, sudo apt install pgadmin4 pgadmin4-apache2 -y During installation, it will ask for Email Address and Password to access. Give any email address that will be used as username and Password that will be used to access admin panel. After that you can access pgadmin4 by entering: localhost/pgadmin4/ in […]