This file contains 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
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> | |
<style> | |
.checked { | |
color: orange; | |
} | |
</style> | |
This file contains 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
<script type="text/javascript" src="jquery.js"></script> | |
<script type="text/javascript"> | |
// $(document).height() is total height of current screen. | |
// scrollTop is scroll from top , if top to scroll & total height exists current window size | |
$(window).scroll(function (){ | |
if($(document).height() <= $(window).scrollTop() + $(window).height()){ |
This file contains 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> | |
<body> | |
Price : | |
<input id="price" oninput="priceSet()" type="text"><br><br> | |
Dis : <input id="dis" type="text" oninput="disSet()"><br><br> | |
Vat : <input id="vat" type="text" oninput="vatSet()"><br><br> |
This file contains 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
* Module: | |
+ nodemon reload, automatically | |
+ Express 3.x is a light-weight web application framework to help organize your | |
web application into an MVC architecture on the server side. | |
+ body parser : its a middleware for parsing JSON | |
+ express-fileupload : uploading a file | |
api crud: | |
https://www.youtube.com/watch?v=4fWWn2Pe2Mk |
This file contains 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
vue : | |
https://www.youtube.com/watch?v=5SvkoDIpaIA&list=PL9fcHFJHtFaapJ90VEtHvbqGvDniKkuRT&index=1 | |
Terms :::::::::::::: | |
size : 16 kb | |
el : property of vue js. | |
This file contains 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
socket terms : | |
channel : | |
pusher called it channel | |
google called it topic. | |
connection name with socket server. | |
This file contains 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
Number system : | |
binary number system (base 2 number system) : 0 1 (101)^2 | |
decimal number system (base 10 number system) : 0123456789 (57)^10 | |
octal number system (base 8 number system) : 01234567 (623)^8 | |
Hexadecimal number system (base 16 number system) : A-F 0123456789 (AF09)^2 | |
Decimal to binary : https://www.youtube.com/watch?v=iNn9KY45hnQ&list=PLWnrxMxuatxOpOXRZRTeMKWLWWzdDxTW3 | |
convert any decimal to binary : |
This file contains 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
full hosting business tutotial : | |
https://www.youtube.com/watch?v=a3fWyq1iZAA | |
https://www.youtube.com/watch?v=luU93huctEM&list=PL7ounGbKEPUaninP50RQmr8_rXNMIzUbf | |
udemy : | |
https://www.udemy.com/how-to-create-a-web-hosting-business-whmcs-tutorial/ | |
local provider : |
This file contains 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
Green bar documents : | |
https://www.namecheap.com/security/ssl-certificates/extended-validation.aspx | |
ssl install in cpanel : | |
https://www.namecheap.com/support/knowledgebase/article.aspx/9418/0/cpanel | |
Green bar price list : |
This file contains 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
<?php | |
ini_set('display_errors', 1); | |
ini_set('display_startup_errors', 1); | |
error_reporting(E_ALL); | |
$database = 'unikeedubd_db'; | |
$user = 'unikeedubd_user'; | |
$pass = 'E1OR}CkSx+Rk'; | |
$host = 'localhost'; | |
$dir = dirname(__FILE__) . '/dump.sql'; |