CPP=g++ -std=c++14
all:server client
echo "ok"
server: server.cpp config.h socket.o
${CPP} server.cpp socket.o -o server
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 <string> | |
using namespace std; | |
class A | |
{ | |
public: | |
A(const string & a) : value(a) | |
{ |
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
#!/usr/bin/env python3 | |
# ###################################################### | |
# irods password obfuscation on system without icommands | |
# | |
# Usage: | |
# 1. install irods python client with | |
# pip3 install python-irodsclient | |
# (see https://github.com/irods/python-irodsclient ) | |
# 2. execute script | |
# |