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
{ | |
"name": "XMPPFramework", | |
"version": "3.6.4", | |
"platforms": { | |
"ios": "5.0", | |
"osx": "10.7" | |
}, | |
"license": { | |
"type": "BSD", | |
"file": "copying.txt" |
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
diff -urN wxWidgets-3.0.2/docs/changes.txt wxWidgets-3.0.2.patch/docs/changes.txt | |
--- wxWidgets-3.0.2/docs/changes.txt 2014-10-06 17:33:44.000000000 -0400 | |
+++ wxWidgets-3.0.2.patch/docs/changes.txt 2015-05-27 00:05:17.000000000 -0400 | |
@@ -573,6 +573,13 @@ | |
was added. | |
+3.0.2: patched for OSX 10.10 build | |
+---------------------------- | |
+ |
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
lankhmar:~ greymouser$ brew doctor | |
Warning: /Library/Frameworks/Mono.framework detected | |
This can be picked up by CMake's build system and likely cause the build to | |
fail. You may need to move this file out of the way to compile CMake. | |
lankhmar:~ greymouser$ brew --config | |
HOMEBREW_VERSION: 0.9.5 | |
ORIGIN: https://github.com/mxcl/homebrew.git | |
HEAD: a59e2adfdb81da6a57f5f4c4b1a4a9b9863087da | |
HOMEBREW_PREFIX: /usr/local |
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
Starchy, Cheesy Rolls (pan de cassava/yuca) - 12 to 16 rolls | |
=== | |
* 2 cups (+bit extra) of tapioca / cassava / yuca starch/flour (potato starch works, too) | |
* 8 tbsp unsalted butter, cut into a few slices or cubes, not cold/hard - prefer Kerrygold | |
* 2 eggs | |
* 4 oz goat cheese | |
* 6 oz parmesan (grated) | |
* 3/4 tsp baking soda | |
* 1/4-1/2 tsp salt (to taste) |
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
package testC | |
// #include <SDL/SDL.h> | |
import "C" | |
const ( | |
WIDTH = 640 | |
HEIGHT = 480 | |
BPP = 4 | |
DEPTH = 32 |
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
/* Found at http://friedspace.com/SDLTest.c */ | |
#include <stdio.h> | |
#include <SDL.h> | |
#define WIDTH 640 | |
#define HEIGHT 480 | |
#define BPP 4 | |
#define DEPTH 32 |
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
set cmd to "/usr/local/bin/sshfs my.fake.com: /Users/foofum/Volumes/myremotehome" | |
try | |
do shell script cmd | |
on error | |
display alert "The mount did not work. Try the command from Terminal.app manually, and check your results. | |
'" & cmd & "'" buttons {":'( - Tears"} | |
end try |
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
VOLNAME=myremotehome | |
SRVNAME=my.fake.com | |
mkdir -p $HOME/Volumes/$VOLNAME | |
sshfs $SRVNAME: $HOME/Volumes/$VOLNAME -oauto_cache,reconnect,volname=$VOLNAME | |
# Did it work? | |
ls $HOME/Volumes/$VOLNAME | |
/sbin/umount $HOME/Volumes/$VOLNAME # or drag to eject button from desktop |
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
MYDIR="$HOME/Projects/macfuse/repos" | |
mkdir -p $MYDIR | |
cd $MYDIR | |
svn co http://macfuse.googlecode.com/svn/trunk/filesystems/sshfs/binary sshfs-binaries | |
cd sshfs-binaries | |
sudo cp sshfs-static-leopard /usr/local/bin/sshfs |
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
$ ssh my.fake.com "uname -a" | |
Linux my 2.6.32-24-server #42-Ubuntu SMP Fri Aug 20 15:38:55 UTC 2010 x86_64 GNU/Linux |
NewerOlder