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
#import <Foundation/Foundation.h> | |
int main(int argc, const char * argv[]) { | |
@autoreleasepool { | |
dispatch_queue_t qa = dispatch_queue_create("a", DISPATCH_QUEUE_SERIAL); | |
dispatch_queue_t qb = dispatch_queue_create("b", DISPATCH_QUEUE_SERIAL); | |
static void* key = &key; | |
dispatch_queue_set_specific(qa, key, (void*)1, NULL); |
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
# The si3124 card doesn't seem to like drives being hot plugged, so manually deactivate the ports | |
cfgadm -x sata_port_deactivate sata1/0 sata1/1 sata1/2 sata1/3 | |
# enable hot plug service | |
svcadm enable hotplug | |
# connect the drives, and: | |
cfgadm -x sata_port_activate sata1/0 sata1/1 sata1/2 sata1/3 | |
# they should connect and configure automatically now, if not: | |
cfgadm -c configure sata1/0 | |
cfgadm -c configure sata1/1 | |
cfgadm -c configure sata1/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
#!/bin/bash -x | |
# based on: http://superuser.com/questions/386506/hosting-iscsi-on-smartos | |
GROUPNAME=iscsi-1 | |
TARGETNAME=iqn.2010-08.org.illumos:02:$GROUPNAME | |
LOCAL_ADDRESS=192.168.1.2 | |
svcadm enable stmf | |
svcadm enable -r svc:/network/iscsi/target:default |
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
# near the top of spec_helper.rb | |
# clear the test log file before we start. | |
log_file = Rails.root.join("log/test.log") | |
File.truncate(log_file, 0) if File.exist?(log_file) |
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
context "deep copy some record" do | |
it do | |
duplicate = call_the_copy_method(original) | |
check_same = lambda { |&block| expect(block.call(duplicate)).to eq(block.call(original)) } | |
check_same.call { |x| x.name } | |
check_same.call { |x| x.list_of_shared_items } | |
check_same.call { |x| x.list_of_copied_items.map { |item| item.name } } |
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
module Let | |
def let(name, &block) | |
ivar = "@#{name}".to_sym | |
if instance_variable_defined?(ivar) | |
instance_variable_get(ivar) | |
else | |
instance_variable_set(ivar, instance_eval(&block)) | |
end | |
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
{ | |
"zonename": "17a296aa-012c-49bb-a10a-e6d48a06093d", | |
"autoboot": true, | |
"brand": "kvm", | |
"limit_priv": "default,-file_link_any,-net_access,-proc_fork,-proc_info,-proc_session", | |
"v": 1, | |
"create_timestamp": "2013-08-09T04:26:57.316Z", | |
"cpu_shares": 100, | |
"zfs_io_priority": 100, | |
"max_lwps": 2000, |
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
class Model < ParentModel | |
include Foo::Bar | |
extend Bar::Baz | |
acts_as_authentic | |
dsl_specific_flags | |
module InternalModule | |
... | |
end |
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
MattbookPro:sshkit matt$ ruby -v | |
ruby 2.0.0p353 (2013-11-22 revision 43784) [x86_64-darwin13.0.0] | |
MattbookPro:sshkit matt$ rake --version | |
rake, version 10.1.1 | |
MattbookPro:sshkit matt$ vagrant --version | |
Vagrant 1.4.2 | |
MattbookPro:sshkit matt$ uname -a | |
Darwin MattbookPro.local 13.0.2 Darwin Kernel Version 13.0.2: Sun Sep 29 19:38:57 PDT 2013; root:xnu-2422.75.4~1/RELEASE_X86_64 x86_64 | |
MattbookPro:sshkit matt$ vagrant status | |
WARN: Unresolved specs during Gem::Specification.reset: |
NewerOlder