This file contains hidden or 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
$ gdb/gdb /tmp/gdbtest/hello | |
GNU gdb (GDB) 7.5.0.20121123-cvs | |
Copyright (C) 2012 Free Software Foundation, Inc. | |
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> | |
This is free software: you are free to change and redistribute it. | |
There is NO WARRANTY, to the extent permitted by law. Type "show copying" | |
and "show warranty" for details. | |
This GDB was configured as "x86_64-apple-darwin12.2.0". | |
For bug reporting instructions, please see: | |
<http://www.gnu.org/software/gdb/bugs/>... |
This file contains hidden or 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 --git a/bfd/mach-o.c b/bfd/mach-o.c | |
index 29ebba4..e44cf6d 100644 | |
--- a/bfd/mach-o.c | |
+++ b/bfd/mach-o.c | |
@@ -3666,6 +3666,48 @@ bfd_mach_o_read_encryption_info (bfd *abfd, bfd_mach_o_load_command *command) | |
return TRUE; | |
} | |
+static bfd_boolean | |
+bfd_mach_o_read_main (bfd *abfd, bfd_mach_o_load_command *command) |
This file contains hidden or 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
GNU GENERAL PUBLIC LICENSE | |
Version 3, 29 June 2007 | |
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/> | |
Everyone is permitted to copy and distribute verbatim copies | |
of this license document, but changing it is not allowed. | |
Preamble | |
The GNU General Public License is a free, copyleft license for |
This file contains hidden or 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
>> load 'string_sayer.rb' | |
>> "Hello, world!" | |
=> "Hello, world!" |
This file contains hidden or 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
brew install qt # should already be done | |
brew install qwt # should already be done | |
brew install portaudio # should already be done | |
brew install wget # makes some downloading easier | |
# set up your virtualenv (`workon friture` if you've already created it) | |
mkvirtualenv friture | |
cd /tmp |
This file contains hidden or 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
# If the conditionals evaluate to false, the key wouldn't be present in the hash | |
Person.new( | |
first_name: params[:first_name], | |
last_name: params[:last_name], | |
age: params[:age] if params[:age].to_i > 18, | |
bio: params[:bio] unless params[:bio].blank?) | |
# This would be equivalent to |
This file contains hidden or 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
$ brew install go | |
==> Downloading https://downloads.sf.net/project/machomebrew/Bottles/go-1.1.2.mountain_lion.bottle.tar.gz | |
Already downloaded: /Library/Caches/Homebrew/go-1.1.2.mountain_lion.bottle.tar.gz | |
==> Pouring go-1.1.2.mountain_lion.bottle.tar.gz | |
==> Caveats | |
<snip> | |
==> Summary | |
/usr/local/Cellar/go/1.1.2: 3918 files, 110M | |
$ echo $GOROOT | |
/usr/local/Cellar/go/1.1.2 |
This file contains hidden or 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
########################################### | |
# IMPORTANT NOTE: | |
# | |
# As of asuswrt-merlin 380.67 Beta, you | |
# can now configure SSL certificates from | |
# the Webui, making these instructions | |
# unnecessary. | |
########################################### | |
This file contains hidden or 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
source "https://rubygems.org" | |
gem "sinatra" |
This file contains hidden or 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
(function () { | |
"use strict"; | |
var first = function (arr, c) { | |
c(arr[0]); | |
}; | |
var rest = function (arr, c) { | |
c(arr.slice(1)); | |
}; |