It's great for beginners. Then it turns into a mess.
Vcpkgを使用してQtをインストールする。(e.g. C:\vcpkg
)
cd C:\vcpkg
.\vcpkg install qt5:x64-windows
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
# install dvd+rw-tools | |
$ sudo yum install dvd+rw-tools | |
$ sudo growisofs -speed=1 -dvd-compat -Z /dev/sr0=/home/amitava/dl/CentOS-7-x86_64-DVD-1503-01.iso |
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
/* | |
* Author: Ugo Varetto - [email protected] | |
* This code is distributed under the terms of the Apache Software License version 2.0 | |
* https://opensource.org/licenses/Apache-2.0 | |
*/ | |
#include < time.h > | |
#include < windows.h > | |
#if defined(_MSC_VER) || defined(_MSC_EXTENSIONS) |
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
#include <iostream> | |
#include <vector> | |
#include <mkl.h> | |
#include <mkl_df.h> | |
using namespace std; | |
int main () { | |
const int nx = 11; // #rows in x | |
const int ny = 1; // #cols in y |
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <limits.h> | |
#define MAX 36 | |
#define URANDOM_DEVICE "/dev/urandom" | |
static FILE *urandom; | |
/* |