Displaying 20 results from an estimated 10000 matches similar to: "Re: Re: New Rails book coming down the tube... (Kevin Monceaux)"
2006 Apr 25
3
New Rails book coming down the tube...
Howdy guys and girls,
Most of you don''t know me; I''m mostly a lurker in the Rails community...
Anyhow, I wanted to let you guys know about my upcoming Rails book: Mr.
Neighborly''s Relevant Ramblings, Pointed Pontifications, and Thought
Theories on Ruby & Rails. I just released the first chapter for free today
(it''s a 60 page Ruby tutorial); you can grab it
2006 Jun 04
1
Re:Re:Two Announcements
I agree the presentation needs work haha. That''s something I really
haven''t put a lot of thought into yet. I''m hoping to start polishing
it up after I get the first half edited and cleaned up text-wise.
Since it seems everyone is interested in it, I can definitely post a
summary and TOC; I had one up and then when I launched the new site I
didn''t put it back
2006 Jun 03
2
Two Announcements - Beta Book and a Rails magazine!
Two announcements, so I''ll split this post into two pieces:
MR. NEIGHBORLY''S RUBY AND RAILS NOW IN BETA
=========================================
My Ruby on Rails book is now in beta. You can roll on over to the
website for more information and pricing:
http://www.rubyonrailsbook.com/
Here''s a rundown: Beta eBook is available now, print hopefully in July
sometime.
2010 May 10
0
xen you tube video link on wiki broken
On following page http://www.xen.org/support/documentation.html
in lower left hand corner there is a link to you tube videos which redirects to
http://www.rss2html.com/public/rss2html.php?TEMPLATE=template-2-2-3.htm&XMLFILE=http://gdata.youtube.com/feeds/base/videos?q=xen-virtualization&client=ytapi-youtube-search&v=2
I got a 404 message.
--
Tapas
2008 Jan 10
14
Keeping Camping going
Hello all,
I''m not sure who Camping''s steward is at this point(zimbatm? _why?),
but I haven''t seen much activity in quite some time. I really like
Camping, and I understand open source projects can fall by the
wayside.
So, I''d be willing to take over maintenance and releasing. I have
experience maintaining my own open source projects, and a history of
2007 Dec 27
17
2.0 & "Agile Web Dev..." book
Just running through the first little project (depot) in ''Agile Web
Development with Rails''. It isn''t scaffolding like it says it should
in the book.
After running:
>rails -d mysql depot
then SQLing:
drop table if exists products;
create table products (
id int not null auto_increment,
title varchar(100) not null,
description text not null,
image_url varchar(200)
2008 Dec 16
0
Serve N files from a directory that may or may not exist
Hi list,
Here''s my files directory in my apache module:
files
|
+-> ted.haha.com
bob.haha.com
etc.haha.com
I have a custom myexists function that returns boolean. I''d like to
check for a vhosts directory underneath each of those $fqdn
directories, i.e.,
if myexits("/var/puppet/modules/apache/files/${fqdn}/vhosts") {
# serve every file in
2008 Sep 12
1
write.dcf does not quote as Debian would like it to (PR#12816)
Full_Name: charles blundell
Version: 2.7.0
OS: Debian GNU/Linux
Submission from: (NULL) (217.37.73.202)
The Debian Policy Manual says concerning lines in a Description field:
* Those containing a space, a full stop and some more characters. These are for
future expansion. Do not use them.
(section 5.6.13, http://www.debian.org/doc/debian-policy/ch-controlfields.html)
But for example:
>
2011 Feb 09
2
file serving error
hello again list!!
I am attempting to work out how to serve files with puppet.
Here is my fileserver.conf file
# This file consists of arbitrarily named sections/modules
# defining where files are served from and to whom
# Define a section ''files''
# Adapt the allow/deny settings to your needs. Order
# for allow/deny does not matter, allow always takes precedence
# over
2008 Apr 03
3
Branchable migrations -- A plugin to let you organize your migrations
I just put a new plugin named branchable_migrations on Github.
Branchable migrations lets you separate your migrations into
"branches" (i.e., a director under db/migrate) that each have their
own version. Using the forthcoming UTC timestamped migrations and
this plugin, you can separate migrations by table or feature. Doing
so should alleviate many of the problems that seem to pike up
2011 Sep 16
0
[LLVMdev] How to duplicate a function?
Hi all,
I am a newbie in LLVM and I am trying to replace the function like:
old function || new function
=======================================
int haha(int a) { int haha(int a, char* ID) {
===>
} }
Of course in the newly replaced function "int haha(int,
2010 Jun 03
1
problem with 'svyby' function from SURVEY package
Hello,
I'm using a complex survey dataset and my goal is to simply spit out a bunch of probability-weighted outcome variable means for the different levels of covariate. So I first define the structure of the study design (I'm using the CDC's NHANES data):
dhanes <- svydesign(id=~PSU, strat=~STRATA, weight=~lab_weight, data=final, nest=TRUE)
No problem there.
Now I use the
2008 May 22
4
how to find out autoincrement id ?
Hi
I need to push newly created item id to file. (ie. its autoincrement
value)
I tried this on controller but it wont work, it cant find id value for
the newly created item.
def create
@imitem = Imitem.new(params[:imitem])
system "echo \"@imitem.id\" > /tmp/myid"
any help ?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you
2011 Sep 16
2
[LLVMdev] How to duplicate a function?
Hi all,
Sorry for the inconvenient about the previous post. The files were not
attached. So I put them here again.
I am a newbie in LLVM and I am trying to replace the function like:
old function || new function
==============================
=========
int haha(int a) { int haha(int a, char* ID) {
===>
}
2011 Sep 19
2
[LLVMdev] How to replace a function using llvm?
Hi all,
I am a newbie and have a question.
Using llvm, I want to change the original function into a new function which
have an additional pointer argument:
original function: int haha(int n) { .... }
new function: int haha(int n, *ptr) { ... }
Could you give me a suggestion?
Thank you in advance.
Shawn
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2007 Dec 22
8
Rails 2.0 scaffold
Hey guys,
I posted the other day about scaffold not working and i was told that it
was rails 2.0 doing this. (btw i''m using adgile web development)
I have read on the internet that you need to put extra stuff like title,
description......
So i did this:
C:\ruby\depot>ruby script\generate scaffold Product Admin id:int
title:varchar(1
00) description:text image_url:varchar(200)
2006 Jun 16
1
Odd behavior
I''m getting a lot of odd behavior with RedCloth.
Perhaps I''ve configured something wrong.
Here''s one example...
h1. header line
# one
# two
lala haha
------------ Returns the following---------------
<h1>header line
<ol>
<li>one</li>
<li>two<br />lala haha</li>
</ol></h1>
Any ideas about what this might be?
2008 Feb 03
4
Extract vowels and consonants using Ruby Regex
Hello,
I am trying to build a regex to extract vowels and consonants from a
string. So far, I am able to extract the basic a-e-i-o-u sequence
using the following extension to the String class:
class String
def vowels
scan(/[aeiou]/i)
end
def consonants
scan(/[^aeiou]/i)
end
end
examples:
>> "Mary had a little lamb".vowels
=> aaaiea
>> "Mary had a
2011 Sep 21
1
[LLVMdev] Segmentation fault while adding an addtional argument
Hi, all
I am trying to write a function pass to replace a old function to a new
function like:
int haha(int a) { } ==> int haha(int a, char *IO) { }
The below is a part of my code and generate segmentation fault. Can you help
me to fix it?
Thanks,
Shawn
// Since we have now created the new function, splice the body of the
old
// function right into the new function, leaving the
2020 Aug 14
0
Synology NAS is shutting down Ubuntu servers after very brief power outage (fwd)
On Thu, Aug 13, 2020 at 7:46 PM Todd Benivegna <todd at benivegna.com> wrote:
> So I finally got a test in after I changed my RPi to the master and
> everything else (including my Synology) to slaves. Before I did that
> though, I timed the shutdown of my Synology since it is the slowest slave
> to shutdown. It took 40 seconds to shutdown, so I changed HOSTSYNC in
>