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
// |
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
all:test | |
CPPFLAGS+=-std=c++1y -Wall -pedantic | |
CPPFLAGS+=-g -O3 -DENABLE_ALL | |
#BOOST_DIR=/mnt/LARGE/MODULAR_BOOST/modular-boost | |
BOOST_DIR=/home/sehe/custom/boost | |
CPPFLAGS+=-isystem /home/sehe/custom/nonius/include | |
CPPFLAGS+=-isystem $(BOOST_DIR) | |
# CPPFLAGS+=-fopenmp |
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
all:mini_c | |
CPPFLAGS+=-std=c++11 -Wall -pedantic | |
CPPFLAGS+=-g -O2 | |
CPPFLAGS+=-pthread | |
%.o:%.cpp | |
$(CXX) $(CPPFLAGS) $< -c -o $@ |
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
all:TCPClient | |
CPPFLAGS+=-std=c++11 -Wall -pedantic -g -O2 -pthread | |
%.o: TCPClient.hpp | |
%: %.o | |
$(CXX) $(CPPFLAGS) $^ -o $@ -lboost_system |
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
#include "stdafx.h" | |
using namespace System; | |
using namespace System::Reflection; | |
using namespace System::Runtime::CompilerServices; | |
using namespace System::Runtime::InteropServices; | |
using namespace System::Security::Permissions; | |
// | |
// General Information about an assembly is controlled through the following |
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
#include <algorithm> | |
#include <memory> | |
#include <boost/serialization/vector.hpp> | |
template<class T, class A = std::allocator<T> > | |
struct ColorMatrix { | |
typedef T value_type; | |
typedef std::vector<value_type, A> Container; | |
ColorMatrix() : _number_of_columns(0) {} |
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
all:test | |
CPPFLAGS+=-std=c++1y -Wall -pedantic | |
CPPFLAGS+=-g -O2 | |
#BOOST_DIR=/mnt/LARGE/MODULAR_BOOST/modular-boost | |
BOOST_DIR=/home/sehe/custom/boost | |
CPPFLAGS+=-isystem /home/sehe/custom/nonius/include | |
CPPFLAGS+=-isystem $(BOOST_DIR) | |
# CPPFLAGS+=-fopenmp |
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
main | |
test | |
*.S | |
*.o | |
*.vim | |
.depends | |
tags |
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
#!/bin/bash | |
# this script requires | |
# - bash (or similar) | |
# - wget (or manually download the source images) | |
# - convert (imagemagick) | |
# - gifsicle (https://www.lcdf.org/gifsicle/) | |
wget -c 'https://scontent.cdninstagram.com/hphotos-xfa1/t51.2885-15/s320x320/e35/11248385_991083787599828_642737356_n.jpg' | |
wget -c http://i.imgur.com/CUhcR.gif | |
# prepare refp template |
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
all:test | |
CPPFLAGS+=-std=c++1y -Wall -pedantic | |
CPPFLAGS+=-g -O3 | |
#BOOST_DIR=/mnt/LARGE/MODULAR_BOOST/modular-boost | |
BOOST_DIR=/home/sehe/custom/boost | |
CPPFLAGS+=-isystem /home/sehe/custom/nonius/include | |
CPPFLAGS+=-isystem $(BOOST_DIR) | |
# CPPFLAGS+=-fopenmp |