Skip to content

Instantly share code, notes, and snippets.

@sakusan393
sakusan393 / node_module_all_uninstall.cmd
Last active January 10, 2017 06:56
node_modulesの中身をまとめてuninstallするバッチファイル
@Echo off
echo //////////////////////////////////////////////////////////////////
echo %cd%\node_modules\*をまとめてアンインストールするよ。
echo //////////////////////////////////////////////////////////////////
pause
for /d %%i in (%cd%\node_modules\*) do (
echo %%~ni
@sakusan393
sakusan393 / pointCloudTest
Created November 30, 2014 17:31
three.js webgl - particles - spritesheet
<!DOCTYPE html>
<html lang="en">
<head>
<title>three.js webgl - particles - spritesheet</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<style>
body {
background-color: #9999FF;
background: linear-gradient(#579fbc, #FFFFFF);
@sakusan393
sakusan393 / file0.m
Created July 14, 2012 16:21
AIR for iOSでスクリーンショットをカメラロールに保存するANEを作ってみたけど真っ白な画面しか取れない ref: http://qiita.com/items/836ed007a1e29877e89f
//
// ScreenShotANE.m
// ScreenShotANE
//
// Created by sakurai hiroyuki on 12/07/14.
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
//
#import "ScreenShotANE.h"
#import <QuartzCore/QuartzCore.h>