Skip to content

Instantly share code, notes, and snippets.

View hroncok's full-sized avatar

Miro Hrončok hroncok

View GitHub Profile
[Desktop Entry]
Version=1.1
Name=CloudCompare Viewer
GenericName=3D point cloud viewer
Comment=Application for 3D point cloud (and triangular mesh) viewing
Type=Application
Exec=ccViewer %U
Icon=ccviewer
Terminal=false
Categories=Graphics;
@hroncok
hroncok / g2.c
Created February 8, 2016 21:11
/* 3SAT instance generator G2(n,m) */
/* created by M.Motoki */
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
void gen_unique_instance(int, int); /* generate 3CNF with at least 1 solution t*/
void sat_alloc(int n, int m, int k);
void write_sat(FILE *fp, int n, int m, int k);
# TABLE je ve skutečnosti instanční proměnná, ale berte to, jakože je globální
def solve():
TABLE = {} # slovník/hash kde klíče budou dvojice
for cost in MAX_COST..0:
weight, combo = _solve(NUMITEMS, cost)
if weight <= CAPACITY:
maxcombo = combo
maxcost = cost
@hroncok
hroncok / wedos-updatedns.py
Last active January 24, 2021 13:45
OpenShift WEDOS domain updater
#!/usr/bin/python3
# -*- coding: utf-8 -*-
"""
OpenShift WEDOS domain updater
==============================
This script makes sure that your main domain (example.org) resolves to the
same IP address as your WWW domain (www.example.org). When you run your
webapp on OpenShift, you should set CNAME DNS records, however, this is not
possible for main domains, such as example.org without a subdomain.
@hroncok
hroncok / pytest.log
Created April 2, 2015 12:18
DevAssistant test on Mac OS X
============================= test session starts ==============================
platform darwin -- Python 2.7.9 -- py-1.4.26 -- pytest-2.7.0
rootdir: /Users/churchyard/Documents/devassistant, inifile:
collected 911 items
test/test_actions.py ...................
test/test_argument.py ............
test/test_assistant_base.py .......
test/test_cache.py ....FF..
test/test_command_helpers.py ...............................
@hroncok
hroncok / .bashrc
Last active February 27, 2020 12:23
.bashrc
# .bashrc
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
# User specific environment
if ! [[ "$PATH" =~ "$HOME/.local/bin:$HOME/bin:" ]]
then
@hroncok
hroncok / dgroc
Last active August 29, 2015 14:02
dgroc config for Python 3
[main]
username = Miro Hrončok
email = mhroncok@redhat.com
copr_url = https://copr.fedoraproject.org/
upload_command = scp %s churchyard@fedorapeople.org:public_html/SRPMS/
upload_url = http://churchyard.fedorapeople.org/SRPMS/%s
[openscad-devel]
git_url = https://github.com/openscad/openscad.git
git_folder = ~/upstream/openscad-git/
@hroncok
hroncok / fedora-livecd-3dprint.ks
Created April 19, 2014 20:05
Fedora 3D printing kickstart
# fedora-livecd-3dprint.ks
#
# Description:
# - Fedora Live Spin with the light-weight Xfce Desktop Environment and 3D printing stuff
#
# Maintainer(s):
# - Miro Hrončok <miro@hroncok.cz>
%include fedora-live-base.ks
@hroncok
hroncok / fedpk-add-patch-check.sh
Last active December 31, 2015 08:19
Link the given pre-commit hook to current pwd git repository or to those in arguments
#!/bin/bash
HOOK=/usr/lib/fedpkg-patch-check.py
function addhook {
hookdir="${1%%/}/.git/hooks"
test -d "$hookdir" || (echo "$hookdir doesn't exist or is not a directory" 1>&2 && return 1)
test -h "$hookdir/pre-commit" && echo "$hookdir/pre-commit is already a link, skipping" 1>&2 && return 1
test -f "$hookdir/pre-commit" && echo "$hookdir/pre-commit is a file, you should call $HOOK manually from that file depending on what language is your hook written in" 1>&2 && return 1
ln -s $HOOK "$hookdir/pre-commit" || (echo "Could not link the hook into $hookdir" 1>&2 && return 1)
@hroncok
hroncok / svgto3d
Last active May 20, 2019 23:35
Get a list of svg files and convert them to prepared scad designs. You'l than have to modify only the size.
#!/usr/bin/env bash
# Public domain
if [ $# -lt 1 ]; then
echo "Give me some file(s), dude!" 1>&2
exit 1
fi
for svg in $@; do
shortname="$(basename "$svg")"