This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*** | |
--- | |
*************** | |
*** 5,16 **** | |
--- 5,17 ---- | |
// Created by Sixten Otto on 12/30/09. | |
// Copyright 2010 Results Direct. All rights reserved. | |
// | |
#import "RDLinkedInResponseParser.h" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
==> Downloading http://ffmpeg.org/releases/ffmpeg-0.8.tar.bz2 | |
File already downloaded in /Users/sixten/Library/Caches/Homebrew | |
/usr/bin/tar xf /Users/sixten/Library/Caches/Homebrew/ffmpeg-0.8.tar.bz2 | |
==> ./configure --prefix=/usr/local/Cellar/ffmpeg/0.8 --enable-gpl --enable-version3 --enable-nonfree --enable-hardcoded-tables --enable-libx264 --enable-libfaac --enable-libmp3lame --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libxvid | |
./configure --prefix=/usr/local/Cellar/ffmpeg/0.8 --enable-gpl --enable-version3 --enable-nonfree --enable-hardcoded-tables --enable-libx264 --enable-libfaac --enable-libmp3lame --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libxvid | |
install prefix /usr/local/Cellar/ffmpeg/0.8 | |
source path /private/tmp/homebrew-ffmpeg-0.8-rTcl/ffmpeg-0.8 | |
C compiler gcc | |
ARCH x86 (generic) | |
big-endian no |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Unbrewed dylibs were found in /usr/local/lib. | |
If you didn't put them there on purpose they could cause problems when | |
building Homebrew formulae, and may need to be deleted. | |
Unexpected dylibs: | |
/usr/local/lib/libfontforge.1.0.0.dylib | |
/usr/local/lib/libgdraw.4.0.8.dylib | |
/usr/local/lib/libgioftp.1.0.0.dylib | |
/usr/local/lib/libgunicode.3.0.1.dylib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// RDManagedObjectStore.h | |
// Capri | |
// | |
// Created by Sixten Otto on 4/17/12. | |
// Copyright (c) 2012 Results Direct. All rights reserved. | |
// | |
// Permission is hereby granted, free of charge, to any person obtaining a | |
// copy of this software and associated documentation files (the | |
// "Software"), to deal in the Software without restriction, including |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Collections.ObjectModel; | |
using System.Data.Entity; | |
using System.Data.Entity.Infrastructure; | |
using System.Linq; | |
using System.Linq.Expressions; | |
using System.Threading; | |
using System.Threading.Tasks; |