Skip to content

Instantly share code, notes, and snippets.

View iranika's full-sized avatar

iranika109 iranika

View GitHub Profile

新規ページで開くやつ

javascript:(function(e){window.open("https://www.dlsite.com/home/mypage/buy/dlgift/product/=/product_id/"+e(location.href.replace(/.*\//, "").replace(/\.html.*$/, ""))+"/",null,"width=520,height=500");})(encodeURIComponent);

現在のページで開くやつ

@iranika
iranika / cloudSettings
Created May 26, 2020 09:51
Visual Studio Code Settings Sync Gist
{"lastUpload":"2020-05-26T09:50:52.260Z","extensionVersion":"v3.4.3"}
@iranika
iranika / .travis.yml
Last active February 7, 2020 12:02 — forked from genotrance/travis.sh
Travis CI setup for Nim
os:
- windows
- linux
- osx
language: c
env:
- BRANCH=0.19.6
- BRANCH=0.20.2
@iranika
iranika / aboutme.md
Last active October 29, 2019 13:17
iranikaについて

About iranika

Infrastructure engineer(server-side).
And ops enginner. I want DevOps skill...

Contents & OpenSource

MichikusaViewer

A simple manga viewer for Michikusaya.
Written by javascript(≠nodejs). Not used other js library.

@iranika
iranika / tcコマンド.adoc
Created June 24, 2019 01:17
各種検証系のコマンド一覧
@iranika
iranika / dotnetCLIの使い方.adoc
Last active June 21, 2019 08:46
dotnet CLIの使い方

dotnet CLIの使い方

.NET Core アプリケーションの展開

自己完結型の展開 (SCD)

dotnet publish -c Release -r <RID> --self-contained true
@iranika
iranika / Check-PDF.ps1
Last active March 30, 2019 12:32
PowerShellで定期実行っぽいことをしてみる。
<#
スクリプトの引数の設定。
./Check-PDF.ps1 -interval_time 10
みたいに引数から指定もできます
#>
param(
[int]$interval_time = 5 #デフォルトで5秒
)
#エラーが起こった際にスクリプトを止めるかどうか
//要素監視のやつ
//https://developer.mozilla.org/ja/docs/Web/API/MutationObserver
var target
var ob
var option
//tweetdeckのサイトはwindowやdocumentのonloadが何故か動かないので起動タイマーで暫定処置
var hoge = setInterval(function(){
console.log("observe starting..")
//監視対象のエレメント取得