Displaying 5 results from an estimated 5 matches for "file_url".
Did you mean:
file_uri
2009 Jun 10
1
scaffold.. random error
Did this:
script/generate scaffold file name:string description:text
file_url:string online_status:boolean position:integer
Plus:
rake db:migrate
And the model gives me an error. It can''t call any functions like,
Text.all, Text.new etc.
I get:
"undefined method `all'' for Text:Module"
I''ve done this a bunch of times before, no idea wh...
2014 Sep 01
3
help: shiny leer ficheros desde google drive
Hola, no suelo usar dropbox para dejar ficheros de datos pero no he
tenido ningún problema para descargar un dataset (respondiendo a una
consulta en un foro linkedin). Por ejemplo:
file_url = "https://www.dropbox.com/s/1j0pdi02asc3g20/BigDataE1.csv?dl=1"
kk <- read.table(file_url,
header = TRUE,
sep = ';',
quote = "\\")
summary(kk)
(usando la url de descarga directa que añade ese "?dl=1")
Lo que sí he vis...
2011 Oct 26
6
Add an index to a form
Hello,
I''m having some trouble with forms, my app allows to enter data by
using a multi-step form that has 7 steps.
There are 3 steps that may let the user to add 1 form, for example
there''s a step called "children"
and that children has the following fields:
* name
* age
* gender
but one father may have more than 1 child and I''m adding another form
with
2006 Jan 09
1
Saving an upload
...(id)
);
CREATE TABLE films (
id serial NOT NULL,
name character varying NOT NULL,
has_subtitles boolean NOT NULL,
is_censored boolean NOT NULL,
episode_no integer NOT NULL,
length character varying NOT NULL,
description text NOT NULL,
release_date date NOT NULL,
file_url character varying NOT NULL,
size double precision NOT NULL,
picture_id integer NOT NULL REFERENCES pictures(id),
primary key (id)
);
CREATE TABLE films_pictures (
film_id integer NOT NULL,
picture_id integer NOT NULL,
"position" integer NOT NULL,
primary key (...
2018 Dec 04
3
patch to support custom HTTP headers in download.file() and url()
...39;%s' argument"), "mode");
mode = CHAR(STRING_ELT(smode, 0));
- cacheOK = asLogical(CAR(args));
+ cacheOK = asLogical(CAR(args)); args = CDR(args);
if(cacheOK == NA_LOGICAL)
error(_("invalid '%s' argument"), "cacheOK");
Rboolean file_URL = (strncmp(url, "file://", 7) == 0);
+ sheaders = CAR(args);
+ if(TYPEOF(sheaders) != NILSXP && !isString(sheaders))
+ error(_("invalid '%s' argument"), "headers");
#ifdef Win32
int meth = asLogical(CADR(args));
if(meth == NA_LOG...