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
[ WARNING ] Running with sudo | |
* <qemu>: Started process PID 1037 | |
* <VMRunner>: Event loop done. Exit status: None poll: 1 | |
* <VMRunner>: No poll - getting final output | |
[ WARNING ] Stderr: | |
qemu-system-x86_64: -netdev tap,id=net0,script=/usr/local/includeos/scripts/qemu-ifup,downscript=/usr/local/includeos/scripts/qemu-ifdown: network script /usr/local/includeos/scripts/qemu-ifup failed with status 256 | |
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
cpp-ethereum, a C++ Ethereum client | |
cpp-ethereum 1.3.0 | |
By cpp-ethereum contributors, (c) 2013-2016. | |
See the README for contributors and credits. | |
ℹ 10:22:48 PM.918|p2p UPnP device not found. | |
Node ID: enode://44465a0ef6fa04cda000b19dd2fa4227a68a253298db2db45fb69049d3f78b537ba954521b0901d5f8a5b24731b671a8f28a99b3ed49950aa0db9eee752ce844@0.0.0.0:0 | |
JSONRPC Admin Session Key: aUl+1FfF6fA= | |
⚡ 10:22:56 PM.628|eth Stop worker 360 ms | |
ℹ 10:22:56 PM.640|eth Killing blockchain & extras database (WithExisting::Kill). | |
Segmentation fault (core dumped) |
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
// The Play plugin | |
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.5.10") | |
// provides server side compilation of typescript to ecmascript 5 or 3 | |
addSbtPlugin("name.de-vries" % "sbt-typescript" % "0.3.0-beta.11") | |
// checks your typescript code for error prone constructions | |
addSbtPlugin("name.de-vries" % "sbt-tslint" % "5.1.0") |
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
name := """play-angular2-typescript""" | |
version := "0.2.0-beta.7" | |
lazy val root = (project in file(".")).enablePlugins(PlayScala) | |
scalaVersion := "2.11.8" | |
incOptions := incOptions.value.withNameHashing(true) | |
updateOptions := updateOptions.value.withCachedResolution(cachedResoluton = true) | |
//we use nodejs to make our typescript build as fast as possible | |
JsEngineKeys.engineType := JsEngineKeys.EngineType.Node |
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
/* | |
you need masriadb-connector-c and libevent to compile this example: | |
gcc -std=gnu11 -o async mysql_async_example.c -lmariadb -levent | |
*/ | |
#include <string.h> | |
#include <mysql.h> | |
#include <my_global.h> |
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
/* | |
you need masriadb-connector-c and libevent to compile this example: | |
gcc -std=gnu11 -o async mysql_async_example.c -lmariadb -levent | |
*/ | |
#include <string.h> | |
#include <mysql.h> | |
#include <my_global.h> |
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
$ dpkg --get-selections | grep ssl | |
libevent-openssl-2.0-5:amd64 install | |
libgnutls-openssl27:amd64 install | |
libio-socket-ssl-perl install | |
libnet-smtp-ssl-perl install | |
libnet-ssleay-perl install | |
libssl-dev:amd64 install | |
libssl-doc install | |
libssl1.0.0:amd64 install | |
openssl install |
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
/sdc1/workspacecpp/IncludeOS/examples/demo_service ~/sdc1/workspacecpp/IncludeOS | |
>> Compiling the service | |
/usr/bin/clang-3.7 -target i686-elf -mstackrealign -fstack-protector-all -msse3 -O2 -Wall -Wextra -c -m32 -std=c++14 -I/home/rchatsiri/IncludeOS_install/libcxx/include -I/home/rchatsiri/IncludeOS_install/api/sys -I/home/rchatsiri/IncludeOS_install/newlib/include -I/home/rchatsiri/IncludeOS_install/api -I/home/rchatsiri/IncludeOS_install/mod/GSL/include -D_LIBCPP_HAS_NO_THREADS=1 -D_GNU_SOURCE -o service.o service.cpp | |
/usr/bin/clang-3.7 -target i686-elf -mstackrealign -fstack-protector-all -msse3 -O2 -Wall -Wextra -c -m32 -std=c++14 -I/home/rchatsiri/IncludeOS_install/libcxx/include -I/home/rchatsiri/IncludeOS_install/api/sys -I/home/rchatsiri/IncludeOS_install/newlib/include -I/home/rchatsiri/IncludeOS_install/api -I/home/rchatsiri/IncludeOS_install/mod/GSL/include -D_LIBCPP_HAS_NO_THREADS=1 -D_GNU_SOURCE -DSERVICE_NAME="\"IncludeOS Demo Service\"" -o .service_name.o /home/rchatsiri/IncludeOS_install |
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
CXX=g++-4.8 ./configure --enable-shared LDFLAGS="-L/home/chatsiri/workspacecpp/gtest-1.6.0/lib -L/home/chatsiri/sda1/workspacecpp/boost_1_57_0/stage/lib -L/usr/lib64 -L/home/chatsiri/sda1/workspacecpp/google-glog/build/lib -L | |
/home/chatsiri/sda1/workspacecpp/gflags/build/lib" CPPFLAGS="-I/home/chatsiri/workspacecpp/gtest-1.6.0/include -I/home/chatsiri/sda1/workspacecpp/boost_1_57_0 -I/home/chatsiri/sda1/workspacecpp/google-glog/build/include -I/hom | |
e/chatsiri/sda1/workspacecpp/gflags/build/include" --with-boost=/home/chatsiri/sda1/workspacecpp/boost_1_57_0/ --with-boost-libdir=/home/chatsiri/sda1/workspacecpp/boost_1_57_0/stage/lib --with-boost-thread=boost_thread-mt -- | |
with-boost-regex=boost_regex --with-boost-system=boost_system-mt --with-boost-filesystem=boost_filesystem-mt CXXFLAGS="-fPIC" |
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
# nvidia-xconfig: X configuration file generated by nvidia-xconfig | |
# nvidia-xconfig: version 340.96 (buildmeister@swio-display-x86-rhel47-05) Sun Nov 8 22:50:27 PST 2015 | |
# nvidia-xconfig --query-gpu-info | |
# lspci -nn | grep VGA | |
Section "ServerLayout" | |
Identifier "Layout0" | |
Screen "Thinkpad Screen" | |
EndSection |