Skip to content

Instantly share code, notes, and snippets.

@mipek
mipek / rss_feed.sh
Created January 26, 2013 23:24
W3S Jenkins RSS notify-send bash script
#!/bin/bash
url="http://ci.0xf.org/rssAll"
rsstail -u $url -i 300 -n 0 | \
while read line; do
notify-send "$line"|cut -c8-
done
@mipek
mipek / cwportchanger.py
Last active December 19, 2015 12:59
CubeWorld Server Port Changer
#!/usr/bin/python
'''
CubeWorld Server Port Changer
By DonRevan
Version 1.0
'''
import os
if not os.path.isfile("Server.exe"):
raise Exception("Couldn't find server binary!")
@mipek
mipek / DumbHook.cs
Created July 29, 2022 12:30
Hook managed function
// MIT License
//
// Copyright (c) 2022 Michael Pekar
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions: