search for: quint

Displaying 14 results from an estimated 14 matches for "quint".

Did you mean: uint
2006 Jul 14
9
DRY Javascript Degredation
Hi, It seems there must be a better way to do this than what I am currently doing. I have a simple app that collects a users thoughts along with their email address and their first an last name. On a page that lists all the users thoughts they can click on a link to "add a thought" which then displays a form with ajax. My current methodology for this is not very dry. If js is
2005 Dec 11
1
Quantile function for the generalized beta distribution of the 2nd kind
I have succeded in defining the cdf of the generalized beta of the second kind, eg. pgbeta2 <- function(quint,b,a,p1,p2) { integrate(function(x) {exp(log(a)+(a*p1-1)*log(x)-(a*p1)*log(b)-log(beta(p1,p2))-(p1+p2)*log(1+(x/b)^a))},0,quint)$value } but I'm facing problems with the quantile function. I tried something like qgbeta2 <- function(proba,b,a,p1,p2) { optimize(function(z) {(proba-pgbeta2(z...
2017 Mar 13
2
modbus driver for phoenix contact industrial UPS
Hello, this is to let you know I will start working on a modbus driver for the PhoenixContact QUINT-UPS industrial DC UPS, model 2320461. https://www.phoenixcontact.com/online/portal/us?uri=pxc-oc-itemdetail:pid=2320461&library=usen&pcck=P-22-07-01-01&tab=1 I will reuse some parts of the nutdrv-modbus branch, but this will be a model specific driver, not a generic one. Unfortunatel...
2006 Jul 18
4
Multiple Layouts - Single Controller
How do I do multiple layouts for a single controller: I am aware I can do... render(:layout =>''mylayout'') for individual actions, however this becomes a multiple render problem. I tried this... layout "mylayout", :except => [:myaction, :myotheraction] layout "myotherlayout", :only => [:myaction, :myotheraction] However that doesn''t
2006 Jul 14
5
Ideas for AJAX pagination
Hi, I am looking for ideas on how to remove the last item from a paginated page when a new item is inserted, thus leaving only 10 elements on the page. Currently I have a form that inserts with AJAX, but as expected, each post added to the page just increases the number of posts leaving 11 on a page that should only be displaying 10. I have unique ID''s for each post (e.g.
2006 Jul 21
3
[Slightly OT] CSS with wildcard?
Sorry if this is a simple question, I''m a CSS noob. I have a rails app that is displaying posts, I am having it generate each post with its own div like "post_19", "post_20", etc. I could make it so it puts another div around that div (i need the individual post div''s for deletion with AJAX) but would rather not. Is there some way to use CSS to do
2017 Mar 14
0
modbus driver for phoenix contact industrial UPS
...ng on setting up hundreds of those UPS boxes and it would be great to have an estimate) Kind Regards, -Spiros On 13 March 2017 at 13:18, Spiros Ioannou <sivann at gmail.com> wrote: > Hello, > this is to let you know I will start working on a modbus driver for the > PhoenixContact QUINT-UPS industrial DC UPS, model 2320461. > > https://www.phoenixcontact.com/online/portal/us?uri=pxc-oc-i > temdetail:pid=2320461&library=usen&pcck=P-22-07-01-01&tab=1 > > I will reuse some parts of the nutdrv-modbus branch, but this will be a > model specific driver, not...
2006 Jul 18
5
Ruby on rails local groups, everyone?
Hi , Just discover a interesting way to connect ror developers locallly. http://www.citycita.org let groups of people who share same interests to plan events and meet offline in local communities around the world. The service is quite new but it seem to have an ROR Oslo community that use it - http://rubyonrails.citycita.org/22498/. Worth a look ! -- Posted via http://www.ruby-forum.com/.
2013 Nov 08
1
CRAN package 5000
Package 'quint' brought the number of packages on CRAN (for all platforms: some are Windows-only or non-Windows only) to 5000 a few minutes ago: see http://cran.r-project.org/web/packages/index.html . -- Brian D. Ripley, ripley at stats.ox.ac.uk Professor of Applied Statistics, http://ww...
2006 Jul 25
6
DRY question (newbie)
Say i want to include the same chunck of text (a menu on a webpage for example) on each page. Is there a method by which I can save the HTML in a text file and call it up later? Is there a better way? I know ruby has "puts" but i can''t use that b/c it does not work with my webhost (dreamhost.com) Any suggestions? -- Posted via http://www.ruby-forum.com/.
2009 Jan 18
1
rsync-phenomenon
Hi, I have some questions regarding rsync. I've created a little script that makes a backup of my home-directory using rsync. When I call this script again _all files_ will be copied again. What's wrong here? My environment: OS is Linux (SuSE 10.3) I want to backup my internal disk to an external disk connected via eSATA. The internal disk is ext3, the external disk is FAT32 (I want
2006 Apr 26
2
freezing to Rails 1.0 for a production site
Hi, I have a shared web hosting account. Currently the hosting company has Rails 1.0 but I''m sure they will upgrade to Rails 1.1 sometime soon. I don''t want my site to break if anything with Rails 1.1 will cause a break. How do I freeze my app to Rails 1.0? I imagine I download the rails source into the vendor directory. But from where to download and how to configure my app to
2010 Dec 21
0
private DNS servers & dnsmasq
...ll working properly (as confirmed with dig & server overrides throughout the environment), but resolv.conf based resolution isn't able to find servers for either of those two domains (dnsmasq is trying to resolve them via an upstream server, which obviously fails). Thanks for any advice. -Quint -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://listman.redhat.com/archives/libvirt-users/attachments/20101221/953dd3a1/attachment.htm>
2006 Sep 29
1
newbie Q: it won't display foreign keys...
I have two tables CREATE TABLE continents ( id int(11) NOT NULL auto_increment, name varchar(255) NOT NULL, PRIMARY KEY (id) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE countries ( id int(11) NOT NULL auto_increment, name varchar(255) NOT NULL, continent_id int(11) NOT NULL, PRIMARY KEY (id) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; I generate scaffolds for country and for