Skip to content

Instantly share code, notes, and snippets.

View MartinNowak's full-sized avatar
🎯
Focusing

dawg MartinNowak

🎯
Focusing
View GitHub Profile
@MartinNowak
MartinNowak / dnf-automatic-restart
Last active August 28, 2023 21:31
dnf-automatic restart hook
#!/usr/bin/env bash
set -ueEo pipefail
if ! dnf needs-restarting --reboothint; then
systemctl reboot --message='Rebooting after dnf-automatic updates'
fi
mapfile -t services < <(dnf needs-restarting --services)
if [[ "${#services[*]}" -ne 0 ]]; then
@MartinNowak
MartinNowak / fir.py
Created April 28, 2022 10:31
FIR low-pass filter
#!python
from numpy import cos, sin, pi, absolute, arange
from scipy.signal import windows, kaiserord, lfilter, firwin, freqz
from pylab import figure, clf, plot, xlabel, ylabel, xlim, ylim, title, grid, axes, show
N = window_size_in_days = 20
#------------------------------------------------
@MartinNowak
MartinNowak / Scikit-HTS.py
Created March 11, 2022 15:46
hts for m5 dataset
#!/usr/bin/env python
# coding: utf-8
# # scikit-hts showcase: [M5 kaggle competition](https://www.kaggle.com/c/m5-forecasting-accuracy)
#
# In this notebook we will use the data from the Kaggle competiton to perform some hierarchical forecasting. The problem is particularly well suited for the library, as there is a clear hierarchical relationship between each of the series: we have states, stores, categories, departments, and items; sum of sales of items resolve to departments, which summed resolved to categories and so forth.
#
#
# We will however limit the scope of the forecasting task to producing forecasts at the
# department level, rather than going to the full extent and forecasting for single items.

send aws credentials

gpg –keyring $PWD/d-keyring.gpg –no-default-keyring –list-keys –with-fingerprint

Bump ldc version with major dlang releases, keep it for minor dlang release

Bump D version (to -beta.1)

Bump Dub version (mostly only with major release, compare e.g. dub v1.26.0…stable to check for bugfixes and minor releases)

We do -beta.1 for all releases and an additional -rc.1 for major releases

(status quo: 2 weeks beta+rc phase for major, 1 week beta for minor releases)

@MartinNowak
MartinNowak / terraform_update.sh
Last active November 29, 2021 19:03
script to update terraform binary to (latest) version
#!/usr/bin/env bash
set -ueo pipefail
function cleanup {
rm -rf "$TMP"
}
TMP=$(mktemp -d)
trap cleanup EXIT
cd "$TMP"
@MartinNowak
MartinNowak / convert_saved_model.py
Created November 28, 2019 16:17
Convert TF saved model from protobuf binary to text format
import os, sys
import google.protobuf
from tensorflow.core.protobuf import saved_model_pb2
import tensorflow as tf
def convert_saved_model_to_pbtxt(path):
saved_model = saved_model_pb2.SavedModel()
with open(os.path.join(path, 'saved_model.pb'), 'rb') as f:
@MartinNowak
MartinNowak / safety_dance.d
Last active October 23, 2017 19:59
@safe, scope, and RC related question marks
//==============================================================================
//
struct String
{
/// clone string, doesn't escape, but return value must have independent lifetime
String clone() scope
{
return String();
}
@MartinNowak
MartinNowak / plot.R
Last active September 26, 2017 05:03
Benchmark realloc growth strategies
library(ggplot2)
library(dplyr)
library(plyr)
data <- read.csv('capacities.csv')
data <- ddply(data, .(growth_factor), mutate, step = seq_along(capacity))
data$growth_factor <- factor(data$growth_factor)
p <- ggplot(data, aes(x=step, y=capacity, color=growth_factor)) + geom_step() + geom_point(size = 0.5)
ggsave("capacity_steps.png", p)
@MartinNowak
MartinNowak / excludedCommits
Last active July 14, 2017 13:29
Get top contributors for a source file of a git repo.
// ==== phobos
// git log --grep='convert docstring examples to unittests' --pretty=%H
ba596549cc76547e1cb78177ed3d3d99668f9212
04654c071d1b7e59b53aa6f269dfe209966263cf
afc40287e02042df43bc763595869bedee15e8de
66e0dc39c5212821208b496800080210f7146ff9
ce795612149097cc6f2bcaa32da4a1023dedaa28
167b28679bd3b9f2639341e78b102616e2223efb
6c386d6f3165f062d0722155dc64a87de4c3e1b2
d81030ab8a15de5353735c646807308ec3bbf3b0
@MartinNowak
MartinNowak / release.sh
Last active October 17, 2022 12:29
Orchestration for dlang release building
#!/usr/bin/env bash
set -ueo pipefail
set -x
ROOT="$PWD"
LATEST_D_VER=v$(curl -fsS http://downloads.dlang.org/releases/LATEST)
BUILD_LDC_VER=v1.30.0
D_VER=v2.101.0-beta.1