Skip to content

Instantly share code, notes, and snippets.

View Lycolia's full-sized avatar
🍥

Lycolia Rizzim Lycolia

🍥
View GitHub Profile
@Lycolia
Lycolia / MyDNS.jp-v4-Update.sh
Created February 21, 2021 23:27
update ip-address for MyDNS.jp by bash
#!/bin/bash
# 関数定義
## ログ出力して終了
put_exit_log() {
# ログ文字列生成
log_mes="DATE:${exec_date}"
log_mes="${log_mes}\tIP_GET_STATE:${ip_rescd}"
log_mes="${log_mes}\tGET_v4IP:${ipv4_addr}"
log_mes="${log_mes}\tMyDNS_UPDATE_STATE:${ddns_rescd}"
@Lycolia
Lycolia / Redmine wiki TOC navigator.user.js
Created February 18, 2021 12:23
Redmine-wiki-ToC-floating-navigator
// ==UserScript==
// @name Redmine-wiki-ToC-floating-navigator
// @namespace https://github.com/Lycolia
// @version 0.2
// @description Redmine wiki ToC floating navigator, for 4.1.1.stable
// @author Lycolia
// @match *://*/redmine/projects/*/wiki/*
// @grant none
// ==/UserScript==
@Lycolia
Lycolia / .htaccess
Last active February 18, 2021 12:23
C-lang-CGI-example
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /test.cgi [L]
</IfModule>