Skip to content

Instantly share code, notes, and snippets.

@pbabics
pbabics / UDPBroadcaster
Created March 26, 2012 17:42
UDP broadcasting class used to locate application within network
#include <stdlib.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <time.h>
#include <string.h>
#include <stdio.h>
#include <cassert>
#include <unistd.h>
@pbabics
pbabics / fs_encrypt_decrypt.sh
Created September 9, 2015 12:04
Fallout Shelter save file Decrypt/Encrypt
# Encrypt:
cat Vault.json | openssl aes-256-cbc -iv '7475383967656a693334307438397532' -K 'A7CA9F3366D892C2F0BEF417341CA971B69AE9F7BACCCFFCF43C62D1D7D021F9' | base64
# Decrypt:
cat Vault1.sav | base64 -d | openssl aes-256-cbc -d -iv '7475383967656a693334307438397532' -K 'A7CA9F3366D892C2F0BEF417341CA971B69AE9F7BACCCFFCF43C62D1D7D021F9' | python -m json.tool
@pbabics
pbabics / gitlab-gc.sh
Created November 11, 2016 13:13
Manual garbage collector for gitlab registry, it removes old revisions that are not referenced by any tag
#!/bin/bash
BASE_PATH=/var/opt/gitlab/gitlab-rails/shared/registry/docker/registry/v2/repositories
DRY_RUN=0
KEEP_LAST_IMAGES=10
RUN_GARBAGE_COLLECTOR=0
GITLAB_CTL_COMMAND=`which gitlab-ctl`
#!/usr/bin/env python3
import threading
import multiprocessing
import numpy as np
import matplotlib.pyplot as plt
import tensorflow as tf
import tensorflow.contrib.slim as slim
import scipy.signal
import gym
@pbabics
pbabics / gitlab-registry-stats.py
Created January 27, 2017 11:31
Prints statistics per project in gitlab registry (usefull for debugging purposes)
#!/usr/bin/env python2.7
import os
import json
import argparse
import math
def convert_size(size_bytes):
if (size_bytes == 0):
return '0B'
@pbabics
pbabics / gitlab-registry-cleaner.py
Created January 31, 2017 09:37
Python script for removal of old Gitlab Registry tags (per project), usefull when you have many tags and you are too lazy to remove them manualy
#!/usr/bin/env python
import os
import json
import argparse
import math
from datetime import datetime
import dateutil.parser
import time
import sys
@pbabics
pbabics / progress.cpp
Created April 5, 2017 16:44
Simple Linux console application for printing progress of per line output items (i.e progress of printing sha sums of listed files via parallels)
#include <cstdio>
#include <cstdlib>
#include <cstring>
#define eprintf(...) fprintf(stderr, __VA_ARGS__)
int main(int argc, const char* argv[])
{
if (argc != 2)
@pbabics
pbabics / progress.cpp
Last active April 5, 2017 16:44
Simple Linux console application for printing progress of per line output items (i.e progress of printing sha sums of listed files via parallels), to compile use: g++ -O3 -o progress -Wall -Wno-long-long -pedantic -std=c++11 progress.cpp
#include <cstdio>
#include <cstdlib>
#include <cstring>
#define eprintf(...) fprintf(stderr, __VA_ARGS__)
int main(int argc, const char* argv[])
{
if (argc != 2)
@pbabics
pbabics / metacentrum.md
Created May 25, 2017 10:09
MetaCentrum Python setup (without modules..)

Metacentrum Python installation

Metacentrum (https://metavo.metacentrum.cz/) is virtual organization providing grid computing infrastructure for academic purposes of Czech Universities and Research Groups.

Servers under this organization contain so called modules which are software packages that can be loaded via module commmand. These modules contain also python software packages like TensorFlow, Caffe, Keras, and others. But these modules contain old versions of these python software packages, and most of time, it is difficult to use them, due to wrong installation with different versions of python librabries. Most of time you get exception with missing library name.

Best way to use python software packages is to install them locally, without loading any available modules.

Prepare environment

First step is to prepare Python environment, install pip and install required python software packages.

typedef int (*CALLABLE) (void);
CALLABLE async_functions[] = {
xyz,
yzx,
zxy,
};
int async_delays[] = {0, 0, 0};