In Git you can add a submodule to a repository. This is basically a repository embedded in your main repository. This can be very useful. A couple of advantages of using submodules:
- You can separate the code into different repositories.
## Follow this link for further updates to Github Desktop for Ubuntu https://github.com/shiftkey/desktop/releases/latest | |
# UPDATE (2022-11-07): Thanks to Sxvxgee's message, the updated code is as follows | |
sudo wget https://github.com/shiftkey/desktop/releases/download/release-3.1.1-linux1/GitHubDesktop-linux-3.1.1-linux1.deb | |
### Uncomment below line if you have not installed gdebi-core before | |
# sudo apt-get install gdebi-core | |
sudo gdebi GitHubDesktop-linux-3.1.1-linux1.deb | |
# UPDATE (2021-10-18): Thanks to Amin Yahyaabadi's message, the updated code is as follows |
FCKGW-RHQQ2-YXRKT-8TG6W-2B7Q8 | |
Windows XP PRO Corporate serial number S/N: Key: MQPWW-PGVKX-YPMKG-8DH3G-KC8PW | |
windows xp home edition serial number S/N: 034634-262024-171505-828316-729010-413531-800424-400442 | |
Windows XP 64 serial number S/N: B2RBK-7KPT9-4JP6X-QQFWM-PJD6G | |
Windows XP serial number S/N: K6C2K-KY62K-DQR84-RD4QV-QB74Q | |
Windows XP Professional 64-bit Corporate Edition 5.2.3790.1830 serial number S/N: VCFQD-V9FX9-46WVH-K3CD4-4J3JM | |
Microsoft Windows XP Professional SP2 serial number S/N: YY8F2-3CKVQ-RKTRG-6JMDR-9DTG6 | |
Windows XP Professional Service Pack 1 sp1 serial number S/N: F46YY - 2R8VQ - R8GMY - 926VK - 6BQ73 | |
Windows XP Pro serial number S/N: KBWR7-76BD8-J7MDQ-KKG&C-V9Q2J |
#include <windows.h> | |
int main(int argc, char *argv[]) | |
{ | |
// ensure only one running instance | |
HANDLE hMutexHandle = CreateMutex(NULL, TRUE, L"my.mutex.name"); | |
if (GetLastError() == ERROR_ALREADY_EXISTS) | |
{ | |
return 0; | |
} |
# Template: A.html | |
<html> | |
<head></head> | |
<body> | |
{% block hello %} | |
HELLO | |
{% endblock %} | |
</body> | |
</html> |
apt-get install xrdp | |
apt-get install xorgxrdp | |
adduser xrdp ssl-cert | |
apt-get install xfce4 xfce4-terminal |
sudo add-apt-repository ppa:qbittorrent-team/qbittorrent-stable | |
sudo apt install qbittorrent-nox | |
qbittorrent-nox | |
sudo adduser --system --group qbittorrent-nox | |
sudo adduser your-username qbittorrent-nox | |
sudo nano /etc/systemd/system/qbittorrent-nox.service | |
sudo systemctl start qbittorrent-nox | |
sudo systemctl daemon-reload | |
sudo systemctl enable qbittorrent-nox | |
systemctl status qbittorrent-nox |