Tagged Questions
0
votes
0answers
52 views
I would like to hack a safe. More specifically, I would like to buy a safe that can be computer controlled. Arduino? [closed]
Basically I want to hack a safe to operate according to a simple program. This program could be in any language, but all it needs to do is make the safe be "open-able" between certain hours of the ...
7
votes
1answer
159 views
ruby - why don't blocks inherit their caller's $SAFE level like methods?
When a method is called by a thread with $SAFE = 4, that method is run with the same $SAFE level:
def test_method
raise "value of $SAFE inside the method: #{$SAFE}"
end
t = Thread.new{$SAFE = 4; ...
8
votes
2answers
2k views
$SAFE on ruby
I want to be able to run unstrusted ruby code. I want to be able to pass variables to said untrusted code that it may use. I also want said code to return a result to me. Here is a conceptual example ...