bash-3.2$ sudo easy_install appscript Password: Searching for appscript Reading http://pypi.python.org/simple/appscript/ Reading http://appscript.sourceforge.net Best match: appscript 1.0.0 Downloading http://pypi.python.org/packages/source/a/appscript/appscript-1.0.0.tar.gz#md5=6619b637037ea0f391f45870c13ae38a Processing appscript-1.0.0.tar.gz Running appscript-1.0.0/setup.py -q bdist_egg –dist-dir /tmp/easy_install-C4d1az/appscript-1.0.0/egg-dist-tmp-yVTHww /usr/libexec/gcc/powerpc-apple-darwin10/4.2.1/as: assembler (/usr/bin/../libexec/gcc/darwin/ppc/as or /usr/bin/../local/libexec/gcc/darwin/ppc/as) for architecture ppc not installed Installed assemblers are: /usr/bin/../libexec/gcc/darwin/x86_64/as for architecture x86_64 /usr/bin/../libexec/gcc/darwin/i386/as for architecture i386 我是一个很大的noob在这个东西(我已经学会了使用python和unix了一下,但我从来没有处理安装。)早些时候,我得到一个错误,相关的gcc-4.2没有被发现,我发现一些build议重新安装XCode的post。 我去了4.0(不好的select?),现在我明白了。 我不知道该怎么做。
为什么Clojure尽pipe如此强调function范例,却不使用Maybe / Option monad来表示可选值? Scala是一个我经常使用的函数式编程语言,它的使用相当普遍。
我正在尝试使用HMAC-SHA256algorithm创build签名,这是我的代码。 我正在使用美国ASCII编码。 final Charset asciiCs = Charset.forName("US-ASCII"); final Mac sha256_HMAC = Mac.getInstance("HmacSHA256"); final SecretKeySpec secret_key = new javax.crypto.spec.SecretKeySpec(asciiCs.encode("key").array(), "HmacSHA256"); final byte[] mac_data = sha256_HMAC.doFinal(asciiCs.encode("The quick brown fox jumps over the lazy dog").array()); String result = ""; for (final byte element : mac_data) { result += Integer.toString((element & 0xff) + 0x100, 16).substring(1); } System.out.println("Result:[" + result […]
有没有办法将一些文本括在括号(或花括号)在vim? 换句话说,你将如何做到这一点? 初始string: It is sunny outside. 最终string: It is (sunny) outside. 在一个有趣的笔记,我只是打:w提交这个问题。 快乐的vim-ing,SOCommunity!
我正在尝试一些非常简单的东西,但不知何故我无法得到它的工作。 我所要做的就是使用UISegmentedControl在2个视图控制器之间进行切换,例如您可以在Highlights选项卡的App Store应用程序中看到它。 我正在使用iOS5和故事板。 这是我的Storyboad排队: 所以我有一个根视图控制器和两个UITableViews – 这2个TableViews我想切换。 这是实现文件的样子 #import "SegmentedLocationViewController.h" #import "PastEventsLocationViewController.h" #import "FutureEventsLocationViewController.h" @interface SegmentedLocationViewController() @property (weak, nonatomic) IBOutlet UISegmentedControl *segmentedControl; @property (strong, nonatomic) NSArray *viewControllers; @end @implementation SegmentedLocationViewController @synthesize segmentedControl = _segmentedControl; @synthesize viewControllers = _viewControllers; – (IBAction)indexDidChangeForSegmentedControl:(UISegmentedControl*)segmentedControl { NSLog(@"index: %d", segmentedControl.selectedSegmentIndex); } – (void)setupViewControllers { PastEventsLocationViewController *pastEventsLocationViewController = [[PastEventsLocationViewController alloc] initWithStyle:UITableViewStylePlain]; […]
我有一个UIView包含一个AVPlayer来显示video。 改变方向时,我需要改变video的大小和位置。 我对调整层次不是很有经验,所以我在调整video时遇到了问题。 我开始创buildAVPlayer并将其播放器添加到我的videoHolderView图层: NSURL *videoURL = [NSURL fileURLWithPath:videoPath]; self.avPlayer = [AVPlayer playerWithURL:videoURL]; AVPlayerLayer* playerLayer = [AVPlayerLayer playerLayerWithPlayer:self.avPlayer]; playerLayer.frame = videoHolderView.bounds; playerLayer.videoGravity = AVLayerVideoGravityResizeAspect; playerLayer.needsDisplayOnBoundsChange = YES; [videoHolderView.layer addSublayer:playerLayer]; videoHolderView.layer.needsDisplayOnBoundsChange = YES; 然后,稍后,我更改videoHolderView框架的大小和位置: [videoHolderView setFrame:CGRectMake(0, 0, 768, 502)]; 在这一点上,我需要avPlayer调整到这些相同的尺寸。 这不会自动发生 – avPlayer停留在videoHolderView内的小尺寸。 如果有人可以帮忙,我真的很感激任何意见。 多谢你们。
我不能让我的静态文件来。 我已经尝试了各种设置和目录configuration等,但他们只是成为404s。 我有debug_toolbar安装,所以知道STATIC_URL达到我的请求上下文。 目录结构显示/静态(我也已经把餐目应用程序文件夹内的目录,和用户,只是试试看。 /mealmate /mealmate /meals /static /css /bootstrap.min.css /templates /users Settings.py(一些重要的设置,虽然我已经尝试了其他各种): MEDIA_ROOT = os.path.join(PROJECT_PATH, 'media/') STATIC_URL = '/static/' INSTALLED_APPS = ( 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'django.contrib.messages', 'django.contrib.staticfiles', ) WSGI_APPLICATION = 'mealmate.wsgi.application' 在base.html中呈现 <link rel="stylesheet" href="/static/css/bootstrap.min.css"> 有任何想法吗? 谢谢
我从网站上传了很多图片,需要更好地整理文件。 因此,我决定在几个月内创build一个文件夹。 $month = date('Yd') file_put_contents("upload/promotions/".$month."/".$image, $contents_data); 我试过这个之后,得到错误的结果。 消息:file_put_contents(上传/ promotions / 201211 / ang232.png):未能打开stream:没有这样的文件或目录 如果我试图把只有文件存在文件夹,它的工作。 但是,它无法创build一个新的文件夹。 有没有办法解决这个问题?
我有一个模式窗口,我用来向用户展示一个表单。 他们input的信息,然后按下一个button,有一个ng点击。 服务器处理请求并发送回应。 当响应成功时,我想closures控制器的模态窗口。 这怎么能实现? 模态是另一个页面中的一个部分 主页: <!– main content –> <p>Foo</p> <!– angular directive –> <foo-directive></foo-directive> 该指令的内容: <div ng-controller="FooCtrl"> <ul class="thumbnails"> <li class="span3 tile tile-white" ng-repeat="foo in model.foo"> <div> {{foo.bar}} </div> <div> ({{foo.bam}}) </div> <div> <a data-toggle="modal" href="#myModal"><img src="{{foo.imgPath}}"></a> </div> </li> </ul> <!– foo modal partial included by ejs –> <% include foo_modal.ejs %> […]
当出现错误信息时手表停止。 stream.js:94 throw er; // Unhandled stream error in pipe. ^ source string:51: error: invalid property name 我如何保持观看状态,只是告诉我错误在哪里。 咕噜可以处理错误,不需要停下来, styleSheet.scss:41: error: invalid property name 否则,我需要在错误发生时在命令行中input“gulp”。