Displaying 6 results from an estimated 6 matches for "hivemind".
2005 Mar 30
2
Beginner question: serverside singletons?
Hello all, just started tinkering with Rails after reading all the hype about
it. I''m a raw novice with Ruby and (obviously) Rails, but have extensive
experience with serverside Java (J2EE stack, Tapestry, etc). Rails looks
cool, though embedding Ruby code in HTML reminds me unpleasantly of JSP +
Struts and I''m deeply suspicious of all the behind-the-scenes magic going on
in
2006 Jun 25
17
JavaScript Compression
Is there a good windows-based JavaScript compressor which will reliably
compress script aculo and prototype?
Sam
_______________________________________________
Rails-spinoffs mailing list
Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs
2006 Jun 23
5
OT: Debugging iBook --- help
This is way OT, but here goes...
I''ve had an iBook for 2 days now and am debugging a web built with
prototype/script aculo / windows / etc... I have no real experience on a
Mac.
Occasionally, there''s no better way to debug JavaScript than an alert in a
loop... Once I have the information information I want from the alert, the
loop may want to execute another 300 times. I
2006 Jan 20
15
Cannot rake migrate on OS X After New Install, Tons of Debugging
...ey''re teaching now and I''m getting concerned
that I may just not be able to get Rails working correctly on my
system without some drastic surgery and the time to prep for the
workshop is getting scarce.
They supply an install-rails.sh script that essentially automates the
HiveMinds installation process. I ran that and everything seemed to
go just fine but I can''t do a rake migrate. It reports back the
directory itr''s in and then just hangs. I have to ctrl-C out of it.
So after a lot of debugging and looking and trying different things
and dorking wi...
2006 May 09
8
Dynamically printing a page
Does anyone know of a cross browser solution to print a page/url after a
user clicks a button?
Currently, I''m using a "hidden" iframe to do my bidding. But from my
experience, IE requires that the iframe''s src attribute be set initially to
the url, in order for the page to open properly. I wasn''t able to add the
iframe to the page dynamically, either.
So
2006 Jun 21
26
Implementing a boolean "switch" in a Class
I need a single boolean which would be "globally" accessible to all
instances of a class. Seems like the boolean should be in the class
prototype, but I was troubled by the difficulty of setting the prototype
boolean to true. Maybe I''m missing something?
var MyObject = Class.create();
MyObject.prototype = {
bSwitch: false,
... other methods and properties
}
var oMyOb1