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
{ | |
"env": { | |
"browser": true, | |
"es6": true | |
}, | |
"extends": "eslint:recommended", | |
"globals": { | |
"Atomics": "readonly", | |
"SharedArrayBuffer": "readonly" | |
}, |
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
#ifndef MAINWINDOW_H | |
#define MAINWINDOW_H | |
#include <QMainWindow> | |
#include <QNetworkAccessManager> | |
#include <QDebug> | |
#include <QUrl> | |
#include <QNetworkRequest> | |
#include <QNetworkReply> |
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
ping 192.168.1.103 | |
sudo gedit /etc/hosts | |
#add 3rd line 192.168.1.103 gitserver and save | |
ping gitserver | |
ssh-keygen | |
id_rsa.pub generated add to server ~/.ssh.authorized_keys |
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
sudo apt-get install libvlc-dev | |
sudo apt-get install vlc | |
sudo apt-get install libvlccore-dev | |
sudo apt-get update | |
git clone https://github.com/vlc-qt/vlc-qt.git | |
cd vlc-qt | |
git submodule init | |
git submodule update |