0
votes
1answer
54 views
Where can a student get his hands on some fiber optics equipment?
Hi, I'm a computer science student and was able to convince a CDN who has a NOC locally to give me a tour of their facility this last Monday. I thought it was great and might consider network …
3
votes
3answers
284 views
Lightweight, portable C++ fibers, MIT license
I would like to get ahold of a lightweight, portable fiber lib with MIT license (or looser). Boost.Coroutine does not qualify (not lightweight), neither do Portable Coroutine Library nor Kent C++CSP …
0
votes
2answers
78 views
How do I use Ruby1.9 with Shoes?
Shoes wraps it's own Ruby install, right?
I can't use Fiber which is a Ruby1.9 feature. And, I want to use a Fiber for creating a generator.
Here's my code (so you can make sure the problem isn't …
2
votes
3answers
160 views
How do Enumerators work in Ruby 1.9.1?
This question is not about how to use Enumerators in Ruby 1.9.1 but rather im curious how they work. Here is some code:
class Bunk
def initialize
@h = [*1..100]
end
def each
…
14
votes
7answers
456 views
What is the difference between a thread and a fiber?
What is the difference between a thread and a fiber? I've heard of fibers from ruby and I've read heard they're available in other languages, could somebody explain to me in simple terms what is the …
