Skip to content

Instantly share code, notes, and snippets.

View tamasgal's full-sized avatar

Tamas Gal tamasgal

View GitHub Profile
@tamasgal
tamasgal / README.md
Created June 26, 2021 15:07 — forked from goll/README.md
Docker nftables configuration for Debian 10
@tamasgal
tamasgal / Jenkinsfile
Created April 12, 2018 06:45 — forked from oifland/Jenkinsfile
Loops in Jenkinsfiles
// Related to https://issues.jenkins-ci.org/browse/JENKINS-26481
abcs = ['a', 'b', 'c']
node('master') {
stage('Test 1: loop of echo statements') {
echo_all(abcs)
}
stage('Test 2: loop of sh commands') {
@tamasgal
tamasgal / hdf5_simple.cpp
Created March 15, 2016 14:04 — forked from YukiSakamoto/hdf5_simple.cpp
simple example to write hdf5 using c++.
#include <string>
#include <iostream>
#include "H5Cpp.h"
#define MAX_NAME_LENGTH 32
const std::string FileName("SimpleCompound.h5");
const std::string DatasetName("PersonalInformation");
const std::string member_age("Age");
const std::string member_sex("Sex");
const std::string member_name("Name");