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
This file contains any messages produced by compilers while | |
running configure, to aid debugging if configure makes a mistake. | |
It was created by configure, which was | |
generated by GNU Autoconf 2.64. Invocation command line was | |
$ ../configure --build=x86_64-apple-darwin10.8.0 --prefix=/usr/local/Cellar/gcc48/4.8.4 --libdir=/usr/local/Cellar/gcc48/4.8.4/lib/gcc/4.8 --enable-languages=c,c++,objc,obj-c++ --program-suffix=-4.8 --with-gmp=/usr/local/opt/gmp4 --with-mpfr=/usr/local/opt/mpfr2 --with-mpc=/usr/local/opt/libmpc08 --with-cloog=/usr/local/opt/cloog018 --with-isl=/usr/local/opt/isl011 --with-system-zlib --enable-libstdcxx-time=yes --enable-stage1-checking --enable-checking=release --enable-lto --disable-werror --with-pkgversion=Homebrew gcc48 4.8.4 --with-bugurl=https://github.com/Homebrew/homebrew-versions/issues --enable-plugin --disable-nls --enable-multilib | |
## --------- ## | |
## Platform. ## |
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
var EventManager = EventManager || { | |
handlers: {} | |
}; | |
EventManager.subscribe = function(event, fn) { | |
if (typeof(this.handlers[event]) === 'undefined') | |
this.handlers[event] = []; | |
this.handlers[event].push(fn); | |
}; |
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
on run {input, parameters} | |
set spamAccount to "[email protected]" | |
set tempFolderName to "JunkMail" | |
set tempFolderPath to path to home folder | |
set maxSendAttempts to 5 | |
set maxSentDeleteAttempts to 10 | |
set deleteSentMessage to false | |
set deleteJunkMessage to false | |
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
// | |
// main.m | |
// NSDictionarySorting | |
// | |
// Created by Giancarlo Mariot on 20/11/2013. | |
// Copyright (c) 2013 Giancarlo Mariot. All rights reserved. | |
// | |
#import <Foundation/Foundation.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
// | |
// main.m | |
// StringsGrep | |
// | |
// Created by Giancarlo Mariot on 18/11/2013. | |
// Copyright (c) 2013 Giancarlo Mariot. All rights reserved. | |
// | |
#import <Foundation/Foundation.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
// | |
// ROMTest.c | |
// ROMTest | |
// | |
// Created by Giancarlo Mariot on 04/11/2013. | |
// Copyright (c) 2013 Giancarlo Mariot. All rights reserved. | |
// | |
// Adapted from C++ code by Dennis Nedry. | |
// Reference: http://68kmla.org/forums/viewtopic.php?f=15&t=12920 | |
// |
NewerOlder