Skip to content

Instantly share code, notes, and snippets.

View Turupawn's full-sized avatar
🇭🇳
Karaoke veteran

Ahmed Castro Turupawn

🇭🇳
Karaoke veteran
View GitHub Profile
pragma solidity 0.5.1;
library Library
{
// Structs
struct Participant
{
uint8 id;
address addr;
[1558412225] [LOG] Initializing SDK
[1558412225] [LOG] .modio/ directory created at C:/Users/antar/Documents/Unreal Projects/ModioContainer22/
[1558412225] [LOG] v0.10.1
[1558412225] [LOG] Installing downloaded mods...
[1558412225] [LOG] Finished installing downloaded mods
[1558412225] [LOG] Loading mod events data...
[1558412225] [LOG] Mod events data loaded. The last mod event poll was at 1558220427
[1558412225] [LOG] Loading authentication data...
[1558412225] [LOG] Authentication token found. You are logged in.
[1558412225] [LOG] User events data loaded. The last user event poll was at 1558220425
{
"FileVersion": 3,
"Version": 1,
"VersionName": "1.0",
"FriendlyName": "modio",
"Description": "Powerful Mod API",
"Category": "Other",
"CreatedBy": "mod.io",
"CreatedByURL": "mod.io",
"DocsURL": "",
turupawn@userr:~$ curl-config --version
libcurl 7.55.1
turupawn@userr:~$ curl-config --cflags
turupawn@userr:~$ curl-config --libs
-lcurl
turupawn@userr:~$ curl-config --feature | grep SSL
SSL
turupawn@userr:~$ curl-config --feature
SSL
[1561602911] [LOG] Initializing SDK
[1561602911] [LOG] .modio/ directory created at current workspace.
[1561602911] [LOG] v0.11.3 DEV
[1561602911] [LOG] Installing downloaded mods...
[1561602911] [LOG] Finished installing downloaded mods
[1561602911] [LOG] Loading mod events data...
[1561602911] [LOG] Mod events data loaded. The last mod event poll was at 1561602879
[1561602911] [LOG] Loading authentication data...
[1561602911] [LOG] Authentication token found. You are logged in.
[1561602911] [LOG] User events data loaded. The last user event poll was at 1561602740
## MinGW
### Setup
Download and install the [MinGW](http://www.mingw.org/) with MinGW32-Make support. Then add the MinGW `bin/` directory to your environment path.
We ship the Zlib and Curl binaries under the `lib/MinGW` directory but feel free to build them yourself by following [our guide](https://github.com/modio/SDK/tree/master/lib).
### Build
9:35:29 AM: Build ready to start
9:35:31 AM: build-image version: 9e0f207a27642d0115b1ca97cd5e8cebbe492f63
9:35:31 AM: build-image tag: v3.3.2
9:35:31 AM: buildbot version: ef8d0929ed0baabafd8bbb7d0b021e1fc24180c0
9:35:31 AM: Fetching cached dependencies
9:35:31 AM: Starting to download cache of 255.0KB
9:35:31 AM: Finished downloading cache in 96.836107ms
9:35:31 AM: Starting to extract cache
9:35:31 AM: Failed to fetch cache, continuing with build
9:35:31 AM: Starting to prepare the repo for build
[1567402283] [LOG] Initializing SDK
[1567402283] [LOG] .modio/ directory created at C:/Users/antar/Documents/Unreal Projects/UE4Example/
[1567402283] [LOG] v0.11.3 DEV
[1567402283] [LOG] Installing downloaded mods...
[1567402283] [LOG] Finished installing downloaded mods
[1567402283] [LOG] Loading mod events data...
[1567402283] [LOG] Mod events data loaded. The last mod event poll was at 1566757218
[1567402283] [LOG] Loading authentication data...
[1567402283] [LOG] Authentication token found. You are logged in.
[1567402283] [LOG] User events data loaded. The last user event poll was at 1566757219
did:muport:QmWSDpRSVfjYPAC5gedrGTmPtSr6bWvVDyDRHJ2qywwuaH
@Turupawn
Turupawn / build.sh
Last active September 10, 2019 00:40
Building mod.io in centos 7.6
# install dependencies
yum install git wget centos-release-scl curl-devel nano
yum-config-manager --enable rhel-server-rhscl-7-rpms
yum install devtoolset-7
scl enable devtoolset-7 bash
# install curl 3.14
wget https://github.com/Kitware/CMake/releases/download/v3.14.6/cmake-3.14.6.tar.gz
tar -zxvf cmake-3.14.6.tar.gz
cd cmake-3.14.6