Displaying 5 results from an estimated 5 matches for "archives2".
Did you mean:
archives
2006 Jul 21
9
How 37s affects Rails
Ok, no one has said it yet so I will.
http://37signals.com/svn/archives2/bezos_expeditions_invests_in_37signals.php?102#comments
How is this going to affect Rails? Or is it?
--
Posted via http://www.ruby-forum.com/.
2006 Nov 09
1
netbios name resolution stops working after device change
...= yes
[printers]
comment = All Printers
path = /var/spool/samba
browseable = no
guest ok = no
writeable = no
printable = yes
[archives]
comment = Archives
path = /mnt/archives
valid users = myuu ayin
public = yes
writeable = yes
printable = no
[archives2]
comment = Archives 2
path = /mnt/archives/archives2
valid users = myuu ayin
public = yes
writeable = yes
printable = no
Hope anyone can give some insight on this. Thanks and regards. :)
PS: After drafting this msg I tried recompiling the kernel to no avail.
2006 Jun 26
0
partitioned_id plugin
...oned_id helper for both
controllers and views which take
at least one parameter an Id and then optionally an
options hash specifying the number
of digits, partitions, and/or separator to be used.
Giving credit where credit is due, this plugin was
inspired by reading:
http://www.37signals.com/svn/archives2/id_partitioning.php
== Usage
=== Example 1
==== Folder.rb model
class Folder < ActiveRecord::Base
acts_as_partitioned_id
end
==== execute ruby script/console
f = Folder.new # =>
#<Folder:......>
f.save # => true
f.id...
2006 May 12
4
POST vs GET
I read in the Agile Rails book that I should avoid GETs for
destructive actions. I notice that on 37signals'' Backpack web site,
deleting an item in a list is accomplished with a simple click on a
picture of a trash can. Is this a violation of the POST/GET rule
noted above, or is there some way to make a clickable link send a
POST?
Ben
2005 May 06
17
FYI: watch out for google's web accelerator - can empty your app of data
Hi All,
A co-worker passed this info on to me:
http://37signals.com/svn/archives2/google_web_accelerator_hey_not_so_fast_an_alert_for_web_app_designers.php
The Skinny: Google has a "Web Accelerator" that pre-caches pages by
following url''s. If you have any plain/simple URL''s that don''t take
paramaters (like what often happens in rails apps)...