Skip to content

Instantly share code, notes, and snippets.

View aiwas's full-sized avatar
💭
hey

Miyako Kuwano aiwas

💭
hey
View GitHub Profile
npm info lifecycle node-sass@4.9.2~install: node-sass@4.9.2
> node-sass@4.9.2 install /home/aiwas/git/misskey/node_modules/node-sass
> node scripts/install.js
Downloading binary from https://github.com/sass/node-sass/releases/download/v4.9.2/linux-x64-64_binding.node
/home/aiwas/git/misskey/node_modules/gauge/render-template.js:67
throw new error.MissingTemplateValue(cloned, values)
^
@aiwas
aiwas / device.log
Last active July 8, 2018 08:09
Error on SONY S330[PaSoRi] with libnfc-1.7.1
Device: ID 054c:02e1 Sony Corp. FeliCa S330 [PaSoRi]
Device Descriptor:
bLength 18
bDescriptorType 1
bcdUSB 2.00
bDeviceClass 0
bDeviceSubClass 0
bDeviceProtocol 0
bMaxPacketSize0 8
idVendor 0x054c Sony Corp.
@aiwas
aiwas / characters.csv
Created May 8, 2018 12:41
List of characters for "COM3D2 MIDNIGHT MAID-EDIT 60MINS ONE GAME MATCH" on mstdn.maud.io .
1 黒髪
1 赤髪
1 青髪
1 緑髪
1 茶髪
1 桃髪
1 銀髪
1 金髪
2 ツインテール
2 ポニーテール
@aiwas
aiwas / Remove-NeedlessPackage.ps1
Last active April 5, 2020 09:42
Windows 10 において不要なプリインストールアプリケーションを抹殺するやつ
# 参考: https://news.mynavi.jp/article/win10tips-171/
$appList = @(
"Microsoft.BingNews", # ニュース
"Microsoft.BingFinance", # マネー
"Microsoft.BingSports", # スポーツ
#"Microsoft.BingWeather", # 天気
"Microsoft.ConnectivityStore", # Wi-Fi
"Microsoft.Getstarted", # Get Started
"Microsoft.GetHelp", # 問い合わせ
@aiwas
aiwas / keybase.md
Created December 25, 2017 12:38
Keybase proof

Keybase proof

I hereby claim:

  • I am aiwas on github.
  • I am aiwas (https://keybase.io/aiwas) on keybase.
  • I have a public key ASDodDuthaHUcK_01MO0Kvf8nYQpWgnPCIpwYZOhSkPLWwo

To claim this, I am signing this object:

@aiwas
aiwas / niconico_html5.css
Created May 8, 2017 18:29
ニコニコ動画(HTML5プレーヤー)のUserStyleSheet
a { color: teal; }
a:hover { text-decoration: none; }
/*ヘッダー*/
#siteHeader { background-color: #333; }
#siteHeader #siteHeaderInner { background: none; }
#siteHeaderNotificationPremium { display: none !important; }
#siteHeaderNotification span.siteHeaderNotNotifications {
background: none;
cabac=1
ref=8
deblock=1:0:0
analyse=0x3:0x133
me=umh
subme=9
psy=1
psy_rd=1.00:0.00
mixed_ref=1
me_range=16
[06:02:52] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.lang.reflect.InvocationTargetException
[06:02:52] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.GeneratedMethodAccessor13.invoke(Unknown Source)
[06:02:52] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
[06:02:52] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.reflect.Method.invoke(Unknown Source)
[06:02:52] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at Reflector.call(Reflector.java:454)
[06:02:52] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.renderer.RenderGlobal.func_180446_a(RenderGlobal.java:821)
[06:02:52] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.renderer.EntityRenderer.func_175068_a(EntityR
@aiwas
aiwas / CardCut.scm
Last active August 29, 2015 14:10
端末のSSからスクフェスのカード部分を切り抜くやつ
(define (script-fu-CardCut img layer)
(gimp-image-rotate img 2)
(gimp-image-resize img 1080 1520 0 -201)
(gimp-layer-resize-to-image-size layer)
(gimp-displays-flush)
) ;end of define
(script-fu-register
@aiwas
aiwas / get_minecraft_skinface.php4
Created November 18, 2014 02:24
Minecraftのスキンの顔部分を取得する奴 4.xでもうごく
<?php
$user = $_GET['user'];
$url = "http://s3.amazonaws.com/MinecraftSkins/{$user}.png";
$skin = imagecreatefrompng($url);
$face = imagecreatetruecolor(8, 8);
imagecopy($face, $skin, 0, 0, 8, 8, 8, 8);
header('Content-Type: image/png');