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
# acore-cms docker-compose.yml | |
version: '3.7' | |
services: | |
wp-db: | |
restart: unless-stopped | |
image: mysql:8 | |
command: 'mysqld --mysql-native-password=ON' | |
volumes: | |
- mysql-data:/var/lib/mysql |
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
MPQExtractor -f -c -o /path/aowow/setup/mpqdata "/path/World of Warcraft/Data/common.MPQ" -e "*" | |
MPQExtractor -f -c -o /path/aowow/setup/mpqdata "/path/World of Warcraft/Data/common-2.MPQ" -e "*" | |
MPQExtractor -f -c -o /path/aowow/setup/mpqdata "/path/World of Warcraft/Data/expansion.MPQ" -e "*" | |
MPQExtractor -f -c -o /path/aowow/setup/mpqdata "/path/World of Warcraft/Data/lichking.MPQ" -e "*" | |
MPQExtractor -f -c -o /path/aowow/setup/mpqdata "/path/World of Warcraft/Data/patch.MPQ" -e "*" | |
MPQExtractor -f -c -o /path/aowow/setup/mpqdata "/path/World of Warcraft/Data/patch-2.MPQ" -e "*" | |
MPQExtractor -f -c -o /path/aowow/setup/mpqdata "/path/World of Warcraft/Data/patch-3.MPQ" -e "*" | |
MPQExtractor -f -c -o /path/aowow/setup/mpqdata "/path/World of Warcraft/Data/enUS/backup-enUS.MPQ" -e "*" | |
MPQExtractor -f -c -o /path/aowow/setup/mpqdata "/path/World of Warcraft/Data/enUS/base-enUS.MPQ" -e "*" |
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
import os | |
from os import listdir | |
from os.path import isfile, join | |
from argparse import ArgumentParser | |
from plyfile import PlyData | |
def parse_args(): | |
parser = ArgumentParser() |
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
/*Homework 5*/ | |
#define _CRT_SECURE_NO_WARNINGS | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
//----------------------------------------- | |
typedef struct s { | |
char nome[20]; | |
char numero[12]; |
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> | |
/* structure sql | |
CREATE TABLE extracted ( | |
profile VARCHAR(255) NOT NULL, | |
done BIT(1) NOT NULL DEFAULT b'0', | |
PRIMARY KEY (profile) | |
) | |
ENGINE=InnoDB; | |
*/ |