Displaying 20 results from an estimated 300 matches similar to: "sha1 or md5?"
2006 Jan 13
9
form_remote_tag breaks inside table
i guess its better form to keep form tags outside of table tags anyways,
but it took a lot of trial and error to figure out thats why @params
were no longer showing up after switching form_tag to form_remote_tag.
not sure if this is a prototype ''bug'' or ''feature'' or what. but my next
step was to switch to a seperate form tag for each row to reduce
needless
2006 Feb 04
4
Dynamic loading view from DB
Hi All,
I am looking for a way to dynamically load a view, inside a template, based
on uri that does not officially exist inside of rails. i.e. a typical CMS
system such as wordpress that stores the html from the pages in a database.
I have found a page on the the rails wiki (
http://wiki.rubyonrails.org/rails/pages/HowToRunAnActionBeforeRoutes) that
seems to be what I want, but lacking a few
2006 Feb 26
1
Any Rails users in Omaha, NE?
Hey everyone, just wondering if there are any other people on the list in
Omaha, NE that would be interested in getting together and chatting about
rails.
Cheers,
- Matt
--
Matt Secoske
http://www.secosoft.net
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060226/93c1467b/attachment.html
2006 Feb 02
1
What''s the javascript to submit an AJAX Form?
HI Everyone,
How do I form the href on an anchor so I can create a link-style submit for
an ajax form?
In this snippet, the INPUT generated by #submit_tag works OK, but the anchor
results in the AJAX replacing the whole page?
Can I make the anchor/href submit the AJAX form as well?
Thank you!
I have this (list.rhtml):
<%= form_remote_tag :url =>
2006 Jan 31
1
Ajax and the submit
While working on a new application, a friend and I ran into what we
think is a problem with using ajax. Users are used to being able to
modify the contents of a screen until they are finished and then saving
(committing). There does not seem to be a way to do this with ajax,
since you have to modify the model whenever you call back to the server.
The half baked solution that we came up with is
2006 Feb 06
5
RTRails now open sourced
Hi, if anyone is interested in HTTP streaming and realtime
communication:
Our RTRails project is now finished.
I uploaded RTRails to Rubyforge. Here is the project page:
http://rubyforge.org/projects/rtrails/
Here is a video showing two browsers using the app, Safari in Pull mode,
Firefox in push mode:
http://www.uni-weimar.de/~scheffl2/amsterdam/video.php
Here is a technical paper about
2017 Aug 24
5
functions from 'base' package are not accessible
Hi all!
The following code (executed in console)...
somevar <- data.frame(v1 = 1:5, somestring = 6:10, v3 = 11:15, v4 = 16:20);
somevar %>% gather(key = var, value = val, which(names(somevar) == "somestring"):length(somevar)) %>% head(2);
throws...
Error in which(names(somevar) == "somestring") :
could not find function "which"
if I change
2017 Aug 24
0
functions from 'base' package are not accessible
Try putting !!! (three exclamation symbols) in front of which(...)==....
The non-standard evaluation in the tidyverse can cause confusion.
Bill Dunlap
TIBCO Software
wdunlap tibco.com
On Thu, Aug 24, 2017 at 4:32 AM, Eugeny Melamud <
Eugeny.Melamud at lanit-tercom.com> wrote:
> Hi all!
>
> The following code (executed in console)...
> somevar <- data.frame(v1 = 1:5,
2011 Feb 25
4
means, SD's and tapply
I'm trying to use tapply to output means and SD or SE for my data but
seem to be limited by how many times I can subset it. Here's a snippet
of my data
> stems353[1:10,]
Time DataSource Plot Elevation Aspect Slope Type Species
SizeClass Stems
1 Modern Cameron 70F221 1730 ESE 20 Conifer ABCO
Class1 3
2 Modern Cameron 70F221 1730
2018 Sep 28
4
Simple bash question
I am calling a bash script and passing in somestring that includes a "$"
myscript "$plusmore"
I want to assign in the myscript the $1 arg to something like
MYTEXT="$1"
when I do that I dont get what I'm expecting. if I do
MYTEXT='$1'
I still dont get what I'm expecting.
On the first assignment of MYTEXT I do not want the "$" to be
2015 Apr 27
1
Development version of R: Improved nchar(), nzchar() but changed API
Dear Martin,
Does the work on nchar mean that bugs #16090 and #16091 will be resolved
[1,2]?
Thanks,
Mark
[1] https://bugs.r-project.org/bugzilla3/show_bug.cgi?id=16090
[2] https://bugs.r-project.org/bugzilla3/show_bug.cgi?id=16091
On Sat, Apr 25, 2015 at 11:06 PM, James Cloos <cloos at jhcloos.com> wrote:
> >>>>> "GC" == G?bor Cs?rdi <csardi.gabor at
2007 Feb 23
3
Ethernet bridge overflow ?
Hello,
I''ve setuped an ethernet bridge on a debian sarge 3.1 with l7-filter +
ipp2 shapper rules
The server is a supermicro p4sci + celeron pentium 4 base 3ghz + 512Mb
+ 2 ethernet e1000
One interface is connected to a cisco catalyst switch
The other interface is connected directly to a CMTS (a sort of router
for cable modem) configured as bridge too.
More than 20Mbps of bandwith
2008 Feb 13
8
comparing ajax.updater div in js
This is really bugging me no matter what I''m trying.
In javascript, I''m using the ajax.updater, and it (obviously) writes
back out to a div. I want to then compare what was echoed out into
this div (which came from the php file I listed in ajax.updater) with
a string.
test should equal "SomeString" because that is what is being echoed
out to
2016 Feb 03
2
Python hashlib and ripemd160
Hi - I think the patent monster has struck again.
rmd = hashlib.new('ripemd160',binascii.unhexlify(someString)).hexdigest()
That fails - ValueError: unsupported hash type
From some googling, it appears that the supported hash types are from
OpenSSL and that means the OpenSSL in CentOS doesn't support ripemd160.
I've worked around other stuff missing from CentOS OpenSSL by
2007 Oct 25
4
""throw $continue" is deprecated, use "return" instead"
I am using the firebug plugin to debug my javascript code, and I get
the following message while debugging. Anyone familiar with this
error?
See my code below:
<title>My Test </title>
<script src="json.js" type="text/javascript"></script>
<script src="prototype.js" type="text/javascript"></script>
2005 Nov 20
1
Just another localization thread
Hey all,
I was playing w/ Thomas Fuch''s Localization module (thanks Thomas!), and
just realized how hard is to localize an application in Rails :-)
The Localization module works nice, but the problem is the error
messages. Its not that good to keep the application in [your idiom] and
the error messages in english. I saw the other threads about it,
specially the ones that recommends
2012 Mar 15
2
how to hide code of any function
hi
I'm making some program and it need to be hidden.
it's not commercial purpose but it is educational,
so i do want to hide the code of function.
for example,
if i made following function:
a<-function(x){
y<-x^2
print(y)
}
i do not want someone to type "a" and take the code of the function.
is there anyone who can help me?
--
View this message in context:
2006 Apr 27
1
sigsev with postfix + dovecot SASL
hi,
I am just playing a bit with the dovecot SASL plugin for postfix and so far my
tests have been very successfull, can't wait to get the cyrus-sasl beast replaced.
However, I found a potential problem when doing some "illegal" stuff on the
postfix side:
-------CUT-------
cerberus:/var/log# telnet smtptest 25
Trying 192.168.99.99...
Connected to smtptest.bestsolution.at.
Escape
2007 Mar 08
3
Change of server
Hello friends, I have a question for you, my server is in 4.4 (centos) and
it is a Pentium III of 500 MHZ, it's a compaq proliant, now I want to
change the dark disc of it to other, which is HP Pentium IV, is it possible
that the change of server can be recognized by the Linux or I would have
problems at the moment of it is started in the new server?
Thanks and regards,
2012 Jun 18
1
Changing many csv files using apply?
Dear all,
I have many csv files whose contents I want to change a bit en masse. So far, I've written code that can change them in a for loop, like so:
# Subset of files in the folder I want to change
subset = "somestring"
# Retrieve list of files to change
filelist=list.files()
filelist = filelist[grep(subset, filelist)]
for(i in 1:length(filelist)){
setwd(readdir)