Skip to content

Instantly share code, notes, and snippets.

View iGormilhit's full-sized avatar
🐑
Sheepin' around

iGor milhit iGormilhit

🐑
Sheepin' around
View GitHub Profile
@NathanGiesbrecht
NathanGiesbrecht / noip2.service
Last active February 24, 2024 01:32
Systemd Service file for no-ip.com dynamic ip updater
# Simple No-ip.com Dynamic DNS Updater
#
# By Nathan Giesbrecht (http://nathangiesbrecht.com)
#
# 1) Install binary as described in no-ip.com's source file (assuming results in /usr/local/bin)
# 2) Run sudo /usr/local/bin/noip2 -C to generate configuration file
# 3) Copy this file noip2.service to /etc/systemd/system/
# 4) Execute `sudo systemctl daemon-reload`
# 5) Execute `sudo systemctl enable noip2`
# 6) Execute `sudo systemctl start noip2`
@yadomi
yadomi / pluxml2md.rb
Created May 17, 2015 15:43
Script to migrate articles from PluXML CMS to Jekyll's markdown
require 'nokogiri'
require 'reverse_markdown'
require 'date'
ARTICLE_PATH='/Users/yadomi/Desktop/data/articles/*.xml'
def title doc
doc.at('title').text
end