Skip to content

Instantly share code, notes, and snippets.

Undefined symbols for architecture armv7:
"__curOrientation", referenced from:
-[UnityAppController application:didFinishLaunchingWithOptions:] in UnityAppController.o
ld: symbol(s) not found for architecture armv7
clang: error: linker command failed with exit code 1 (use -v to see invocation)
// ココを
static ScreenOrientation _curOrientation = orientationUnknown;
//こう書き換える
ScreenOrientation _curOrientation = orientationUnknown;
Shader "FX/Matte Shadow" {
Properties {
_Color ("Main Color", Color) = (1,1,1,1)
_MainTex ("Base (RGB) Trans (A)", 2D) = "white" {}
_Cutoff ("Alpha cutoff", Range(0,1)) = 0.5
/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/Theano-0.6.0-py2.7.egg/theano/sandbox/rng_mrg.py:768: UserWarning: MRG_RandomStreams Can't determine #streams from size ((Elemwise{add,no_inplace}.0,)), guessing 60*256
nstreams = self.n_streams(size)
/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/Theano-0.6.0-py2.7.egg/theano/sandbox/rng_mrg.py:768: UserWarning: MRG_RandomStreams Can't determine #streams from size (Shape.0), guessing 60*256
nstreams = self.n_streams(size)
Parameter and initial learning rate summary:
W: 0.1
bias_vis: 0.1
bias_hid: 0.1
sigma_driver: 0.1
Compiling sgd_update...
@reiji1020
reiji1020 / WhatisCaffe.md
Last active August 29, 2015 14:13
卒研用のメモ,Caffeとは何か

Caffeとは何か?

Caffe概要

  • Pycaffeと並び現在盛んに開発が行われているDeepLearningライブラリのひとつ
  • 開発者:Berkeley大学 Yangqing Jia(現Google)
  • メンテナンスはBerkeley Vision and Learning Center (BVLC)が行っている
  • ライセンス:BSD2clause
  • OS:Ubuntu 14.04,MacOSX10.9で動作させることが出来た
  • Windowsでも動かすことができるが非公式
UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
number.text = pasteboard.string;
@interface DetaSetTestViewController : UIViewController {
IBOutlet UILabel *number;
}
UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
NSString *ds= @"hoge";
[pasteboard setValue:ds forPasteboardType:@"DataSet.text"];
// DataSetアプリのURLスキームを指定する.
NSURL *url = [NSURL URLWithString:@"DataSet:"];
[[UIApplication sharedApplication]openURL:url];
UIPasteboard *pasteboard = [UIPasteboard PasteboardWithName:"DataSet" create:yes];
NSString *ds = @"aaaa";
[pasteboard setValue:ds forPasteboardType:@"DataSet.text"];
NSURL *url = [NSURL URLWithString:@"DataSet:"];
[[UIApplication sharedApplication]openURL:url];
UIPasteboard *pasteboard = [UIPasteboard pasteboardWithName:@"DataSet" create:NO];
number.text = pasteboard.string;