タブレットの替え芯あれこれ
総合的なレビュー
-
じんぼろぐ「タブレットペンの芯」(純正品、爪楊枝、パスタ、プラ棒を比較した感想)
-
乙佳佐 明_monoblog「でじたる小道具『CINTIQ』23、24」(純正品(標準、フェルト)、竹串、紙製綿棒、綿棒の軸にアクリル系の溶剤を染み込ませて固めたものを比較した感想)
@charset "utf-8"; | |
html,body { margin:0; padding:0; } | |
<!DOCTYPE html> | |
<html lang="ja"> | |
<head> | |
<meta charset="utf-8"/> | |
<title>ページタイトル</title> | |
<link rel="stylesheet" href="css/style.css"/> | |
</head> | |
<body> | |
<article> |
// | |
// UIView+ConstraintsUtil.h | |
// | |
// Created by numata on 2014/01/02. | |
// Copyright (c) 2014 Sazameki and Satoshi Numata, Ph.D. All rights reserved. | |
// | |
@import UIKit; | |
@import QuartzCore; | |
@interface NSObject (CATransactionSupport) | |
- (NSTimer *)startTimerWithInterval:(NSTimeInterval)interval block:(void (^)(void))block; | |
- (void)startAnimationWithDuration:(NSTimeInterval)duration block:(void (^)(void))block; | |
- (void)startAnimationWithDuration:(NSTimeInterval)duration block:(void (^)(void))block completionHandler:(void (^)(void))completionHandler; |
じんぼろぐ「タブレットペンの芯」(純正品、爪楊枝、パスタ、プラ棒を比較した感想)
乙佳佐 明_monoblog「でじたる小道具『CINTIQ』23、24」(純正品(標準、フェルト)、竹串、紙製綿棒、綿棒の軸にアクリル系の溶剤を染み込ませて固めたものを比較した感想)
// | |
// RVNReceiptValidation.m | |
// | |
// Created by Satoshi Numata on 12/06/30. | |
// Copyright (c) 2012 Sazameki and Satoshi Numata, Ph.D. All rights reserved. | |
// | |
// This sample shows how to write the Mac App Store receipt validation code. | |
// Replace kRVNBundleID and kRVNBundleVersion with your own ones. | |
// | |
// This sample is provided because the coding sample found in "Validating Mac App Store Receipts" |
texturetool -e PVRTC --channel-weighting-linear --bits-per-pixel-2 -o <OUTPUT-FILENAME> -f PVR <INPUT-FILENAME> | |
texturetool -e PVRTC --channel-weighting-linear --bits-per-pixel-4 -o <OUTPUT-FILENAME> -f PVR <INPUT-FILENAME> | |
texturetool -e PVRTC --channel-weighting-perceptual --bits-per-pixel-2 -o <OUTPUT-FILENAME> -f PVR <INPUT-FILENAME> | |
texturetool -e PVRTC --channel-weighting-perceptual --bits-per-pixel-4 -o <OUTPUT-FILENAME> -f PVR <INPUT-FILENAME> |
# ひとつ前のコミットを取り消す | |
git reset --soft HEAD^ | |
# 直前のコミットに新しい変更点を追加する。 | |
git commit --amend | |
git push --force | |
# タグを取り除く | |
git tag -d TAGNAME | |
git push origin :refs/tags/TAGNAME |
#import "SZJsonParser.h" | |
NSString *str = @"[ 'Apple', 'Banana' ]"; | |
id obj = [str jsonObject]; // obj will be an array or a dictionary | |
NSLog(@"JSON Object: %@", obj); |
// Use these codes below after NSOpenGLView is prepared. | |
#include <OpenGL/gl.h> | |
- (void)doCheck | |
{ | |
NSLog(@"gl_version={%s}", glGetString(GL_VERSION)); | |
NSLog(@"gl_renderer={%s}", glGetString(GL_RENDERER)); | |
NSLog(@"gl_vendor={%s}", glGetString(GL_VENDOR)); |