Skip to content

Instantly share code, notes, and snippets.

@noromanba
noromanba / RollingChromiumUpdater.bat
Created August 11, 2011 20:19
Rolling Update Chromium with (Cygwin) wget
@rem ===========================================================================
@rem Rolling Update Chromium with (Cygwin) wget.
@rem @author noromanba
@rem @license MIT License http://nrm.mit-license.org/2011
@rem @see http://d.hatena.ne.jp/noromanba/20110628/1309201248
@rem @see http://web.archive.org/web/20090609215400/http://forums.tlokzz.com/downloads.php?do=file&id=3 (WebArchive)
@rem @see http://googlesystem.blogspot.com/2009/04/chromium-updater.html
@rem @see http://build.chromium.org/f/chromium/continuous/README.txt
@rem @see http://ref.layer8.sh/ja/entry/show/id/1007
@rem @see http://www.atmarkit.co.jp/fwin2k/win2ktips/718edtcacls/edtcacls.html
@noromanba
noromanba / NDLTimer.hta
Created August 31, 2011 16:48
Nwhois Deadline Timer
<!--
Nwhois Deadline Timer.
Copyright (c) 2011 noromanba
@author noromanba
@see http://d.hatena.ne.jp/noromanba/20110901/1314811130
@see http://countdown.reportitle.com/
@see https://groups.google.com/group/nwhois
@date 2011-09-03T02:00:20+09:00
-->
<html>
@noromanba
noromanba / HexAltDec.hta
Created September 21, 2011 11:05
Hex Decimal Alternate Converter: init.
<!--
Hex Decimal Alternate Converter.
The MIT License
Copyright (c) 2011 noromanba
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,
@noromanba
noromanba / ExpandShortURL.bat
Created December 26, 2011 04:26
Expand Short URL with Cygwin(prob GnuWin32) - Based on oneliner bash. put stdout(no linebreak)
@rem ===========================================================================
@rem Expand Short URL with Cygwin(prob GnuWin32).
@rem @author noromanba
@rem @license MIT License http://nrm.mit-license.org/2011
@rem @see https://gist.github.com/1520523
@rem @see http://gnuwin32.sourceforge.net/
@rem @see http://ya.maya.st/d/200903c.html#d20090321
@rem @see http://shellscript.sunone.me/filter_etc.html
@rem ===========================================================================
@noromanba
noromanba / nsfcmp.bat
Created January 1, 2012 12:40
Compare NSF Music Data. Ignoring Strings Header(small nsf util like 'cmp')
@rem ===========================================================================
@rem Compare NSF Music Data. Ignoring Strings Header.
@rem @author noromanba
@rem @license MIT License http://noromanba.mit-license.org/2012
@rem @see https://gist.github.com/1547235
@rem @see http://uraran.jp/psg/nsfspec_j.txt
@rem @see http://dic.nicovideo.jp/a/nsf
@rem @see http://man.cx/cmp(1)/ja
@rem ===========================================================================
@noromanba
noromanba / README.md
Last active December 1, 2017 22:55
Auto supplement Hatena::Star with AutoPatchWork / AutoPagerize for UserScript
@noromanba
noromanba / iso8601.bat
Created February 19, 2012 07:34
Stdout iso8601 format, work in a standard environment of OS
@rem ===========================================================================
@rem Stdout iso8601 format, work in a standard environment of OS.
@rem @author noromanba
@rem @license MIT License http://nrm.mit-license.org/2012
@rem @see https://gist.github.com/1862470
@rem @see http://www.atmarkit.co.jp/fwin2k/win2ktips/419batchdate/batchdate.html
@rem @see http://d.hatena.ne.jp/kurukuru-papa/20090412/1239529114
@rem @see http://blog.livedoor.jp/blackwingcat/archives/908078.html
@rem ===========================================================================
@noromanba
noromanba / GetIEVersion.bat
Created February 19, 2012 09:38
Get Version of Internet Explorer
@rem ===========================================================================
@rem Get Version of Internet Explorer.
@rem @author noromanba
@rem @license MIT License http://nrm.mit-license.org/2011
@rem @see https://gist.github.com/1862790
@rem ===========================================================================
@echo off
cd %~dp0
title Version of Installed IE
@noromanba
noromanba / iso8601Ruby.bat
Created February 19, 2012 09:44
Stdout iso8601 format with ActiveScriptRuby
@rem ===========================================================================
@rem Stdout iso8601 format with ActiveScriptRuby.
@rem @author noromanba
@rem @license MIT License http://nrm.mit-license.org/2011-2012
@rem @see https://gist.github.com/1862832
@rem ===========================================================================
@echo off
cd %~dp0
ruby -rtime -e 'puts Time.now.iso8601'
@noromanba
noromanba / VersionByDate.bat
Created February 19, 2012 23:19
stdout yyyy.M.D format, work in standard environment
@rem ===========================================================================
@rem stdout yyyy.M.D format, work in standard environment
@rem @license CC0 1.0 (Univ. PD) https://creativecommons.org/publicdomain/zero/1.0/
@rem @author noromanba (http://flavors.me/noromanba)
@rem @homepage https://gist.github.com/1866433
@rem ===========================================================================
:: c.f. http://ptech.g.hatena.ne.jp/noromanba/20120717
@echo off
cd %~dp0