This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--open cmd | |
--diskpart | |
--list disk | |
--select the disk that need to be formatted | |
--open diskmanagement | |
--select the disk | |
--allocate the disk |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--windows + X -> opent command promt admin -> typw -> net.exe stop "Windows search" | |
-- permently disable windows search -> services.msc -> windows search -> disable | |
-- windows + x ->open cmd -> net.exe stop superfetch | |
see detail of the link : https://www.drivereasy.com/knowledge/fix-100-disk-usage-in-task-manager-improve-pc-performance-on-windows-10/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1.XAMPP INSTALLATILON : | |
wget https://www.apachefriends.org/xampp-files/5.6.20/xampp-linux-x64-5.6.20-0-installer.run | |
sudo su | |
chmod +x xampp-linux-x64-5.6.20-0-installer.run | |
./xampp-linux-x64-5.6.20-0-installer.run | |
2.Tomcat Installation : | |
sudo apt-get update | |
sudo apt-get install tomcat7 | |
sudo nano /etc/default/tomcat7 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html ng-app="addressApp" ng-controller="addressController"> | |
<head> | |
<title></title> | |
<script | |
src="https://code.jquery.com/jquery-2.2.4.min.js" | |
integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" | |
crossorigin="anonymous"></script> | |
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script> | |
</head> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"divisionId":1, | |
"divisionName":"Barisal", | |
"divisionBnName":"বরিশাল", | |
"districtId":34, | |
"districtName":"Barguna", | |
"districtBnName":"বরগুনা", | |
"upazilaId":6, | |
"upazilaName":"Taltali ", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wine uninstaller |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DataSource.groovy | |
dataSource { | |
pooled = true | |
jmxExport = true | |
driverClassName = "oracle.jdbc.driver.OracleDriver" | |
dialect = org.hibernate.dialect.Oracle10gDialect | |
username = "SUERP" | |
password = "SoftRithm5University9ERPDb82" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Use git log --diff-filter=D --summary to get all the commits which have deleted files and the files deleted; | |
#Use git checkout $commit~1 filename to restore the deleted file. | |
Where $commit is the value of the commit you've found at step 1, e.g. e4cf499627 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
in module add : 'ngRoute','ngSanitize','ui.select' | |
js css : <link href="assets/uiselect/select.css" rel="stylesheet" type="text/css"> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/select2/3.4.5/select2.css"> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/selectize.js/0.8.5/css/selectize.default.css"> | |
<script type="text/javascript" src="assets/js/vendor/angular-sanitize.min.js"></script> | |
<script type="text/javascript" src="assets/uiselect/select.js"></script> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://www.digitalocean.com/community/tutorials/install-tomcat-9-ubuntu-1804 |