similar to: Format ddmmYYYY in date

Displaying 20 results from an estimated 400 matches similar to: "Format ddmmYYYY in date"

2006 May 16
9
Date transform
hi all, i want my users to enter a date in "ddmmyyyy" format, do someone know how may i transform it in "yyyy-mm-dd" in the controler before i add it to the base please? thks irong -- Posted via http://www.ruby-forum.com/.
2005 Mar 02
1
postgresql date
If I select my date column from the pgadmin I see that in the ddmmyyyy form, I''ve specified so in the postgresql config. When I query from rails I get the date in yyyymmdd someone knows why? Thanks Enrico -- "The only thing necessary for the triumph of evil is for good men to do nothing" Edmund Burke
2008 Apr 19
1
Query: how to group data by months from a text file
Dear R-users, I have to deal with (txt) files of the form 10092007 24.62 24.31 24.90 11092007 19.20 23.17 22.10 13092007 24.71 27.33 23.10 14092007 27.33 27.90 24.10 15092007 28.22 28.55 24.30 16092007 28.53 29.24 27.40 17092007 24.19 30.64 26.80 18092007 22.60 20.62 28.40 19092007 18.89 21.70 14.70 20092007 21.27 22.92 17.30 21092007 22.38 24.72 18.80 22092007 23.94 24.73 20.40 23092007 25.33
2003 Apr 20
4
${EPOCH} and ${DATETIME} patch
Skipped content of type multipart/alternative-------------- next part -------------- Index: pbx.c =================================================================== RCS file: /usr/cvsroot/asterisk/pbx.c,v retrieving revision 1.14 diff -u -r1.14 pbx.c --- pbx.c 19 Apr 2003 02:41:22 -0000 1.14 +++ pbx.c 21 Apr 2003 02:27:43 -0000 @@ -713,6 +713,8 @@ { char *first,*second; char tmpvar[80] =
2017 May 24
1
Fwd: Samba 4.5.8-Debian User Profiles on NFS-Share
Hi, regarding to this problem I made some progress. After going back to Jessie, and samba 4.2.14 the following configuration works. Storage Client Wheezy 7.11) /etc/exports on nfs-server (version 1.2.6-4): /data/data 141.244.123.4(rw,sec=sys,async,no_root_squash,subtree_check) DC Version nfs-client: 1.2.8-9 Samba: Samba version 4.2.14-Debian profiles share on samba DC [profiles] # roaming
2001 Dec 10
2
Corrupt .RData
I'm using R 1.3.1 on a Windows NT 4.0 machine. As you might guess my machine crashes on me from time to time :-| So far, forcing a reboot via the Taskmanager has worked reasonably well: any open R session would enquire politely whether to save, and do so if requested. This time, it has not worked out. I get a 'Fatal Error: unable to restore saved data in .RData' message and R
2011 Jun 24
2
Is there an implementation of loess with more than 3 parametric ...
Dear John, > I suggest that you look at the abilities of the mgcv package. > There are notes of mine at > > http://www.maths.anu.edu.au/%7Ejohnm/r-book/xtras/autosmooth.pdf > > that may help you get started. Thank?you very much for the suggestion and the link to your write-up, it was indeed very helpful! I have experimented with this library for a while now and am really happy
2003 Aug 16
2
xtabs to dataframe fails (PR#3754)
Full_Name: Daniel Frey Version: 1.7.1 OS: Windows 2000 Submission from: (NULL) (80.254.164.242) Generating a data frame out of a xtabs result acts unusual. Take the following sample to reproduce it: > a.a <- c("a","a","a","b","b") > a.b <- c("c","c","d","e","f") >
2008 Apr 25
9
Can wine change short date format?
Since I updated to Ubuntu 8.04 yesterday I have lost the UK short date format DDMMYYYY and am having a real problem setting it system wide. (I now have the US MMDDYYYY format.) Ubuntu 8.04 appears to ignore the LANG="en_GB.UTF-8" line in etc/environment which fixed the issue in 7.10. The apps I run on wine all use the short date format so here is my question. Is it possible to make wine
2009 Mar 27
0
consistent segfaults in ROracle with one of the databases
Dear list. Has anybody had any issues with ROracle, namely consistently leading to a segmentation fault? One of our oracle databases seems to have certain issues at the moment (do not know what exactly though) and if that one is queried ROracle definitely fails with a segmentation fault. Any ideas? Here is the trace and below is also a type of query that crashes it: *** caught segfault ***
2002 Jul 31
2
ogg: another tag?
I've learned that I can make a tag with vorbisgain that tells the player at what volume a track is to be played to achieve a certain level of loudness. Is it possible that there will be a tag that tells the player for instance to add more bass when it plays a track? Ore more treble? With such tags it would be possible to customize the sound of a track according to my wishes - without
2003 Aug 17
3
Monitor application temporary hack
[apologies for no line wrap; config lines at bottom] I have mentioned on several threads here that the Monitor application doesn't do exactly what one would expect: the originating and answering legs of a call are unsynchronized by the duration of the interval that it takes for the answering leg to pick up the phone. This can be very distracting in a final mixed version of the file. Brian
2010 Sep 07
4
LMTP logging configuration
Hi, I'm using Dovecot 2.0.1, and I log to a custom syslog facility (local0) in the main configuration (I want a separate log file, but I want to make use of rsyslogd's capabilities). I overwrite the syslog facility for LDA (mail) to have all delivery related stuff in /var/log/mail.log, and that works fine. I tried to do the same for LMTP with protocol lmtp { syslog_facility = mail }
2012 May 04
2
[LLVMdev] how compile subproject
> Neither worked. =( Hmm. Something seems to have gone horribly wrong then. I've just reproduced Peter's suggestion on the autoconf build and it worked fine. Perhaps try a clean build out of tree: CMake: mkdir my_special_build_dir cd my_special_build_dir cmake $PATH_TO_LLVM_SOURCE make llc Autotools: mkdir my_special_build_dir cd my_special_build_dir $PATH_TO_LLVM_SOURCE/configure
2006 Dec 02
2
Initiator for iscsi?
Anyone running centos with an iscsi filesystem mounted? If so: What version of centos? Which iscsi package? What filesystem are you using on the mount? Does it perform like you'd expect? Thanks, peter
2008 Jun 05
2
Creating a list of functions
I've been trying to create a list of function where function[[i]] should actually return the value of i. trying: func <- vector("list",2) i <- 1 while (i <= 2) { func[[i]] <- function() { i } i <- i+1 } however only returned the last value of i for each function. Any help how to achieve the solution intended would be greatly appreciated. thanks in advance, andreas
2012 Jan 19
1
snow - bootstrapped correlation ranking
I wonder if someone could help me adjusting the following code to parallelized snow code: #Creating a data set (not needed to be parallel) n<-100 p<-100 x<-matrix(rnorm(n*p),p) y<-rnorm(n) # Bootstrapping nboot<-1000 alpha<-0.05 rhoboot <- array(0, dim=c(p,nboot)) bootranks <- array(0, dim=c(p,nboot)) bootsamples <- array( floor(runif(n*nboot)*n+1), dim=c(n,nboot)) for
2005 Aug 29
2
test for readline installation fails if installation location non-standard (PR#8104)
Full_Name: D Kreil Version: 2.1.1 OS: HP-UX B.11.23 U ia64 0029870451 unlimited-user license Submission from: (NULL) (62.178.15.60) When the dependency readline is installed in a non-standard location the installation procedure fails. If using a non-standard installation location like --prefix=/bi/common --exec-prefix=/bi/arch the configure script default include and library paths should
2009 Aug 18
5
OT - DECT handset with Line key
Hi, I need to replace digital handsets in offices where there cabling is appareantly not Ethernet-compliant. Today's usage is to press a key to toggle between private ou public line before issuing an outgoing call. Are you aware of a DECT handset (to overcome cabling limitations) that mimic this line-key behaviour ? For instance, acceptable behaviours would be to dial number string and press
2012 May 05
0
[LLVMdev] how compile subproject
Hi, thanks for your answers. I did: cd workspace svn co http://llvm.org/svn/llvm-project/llvm/trunk llvm cd llvm/ mkdir build cd build/ ../configure --enable-jit make                                                      # OK, everything went fine. cd ../lib/Transforms/InstCombine/            # Just to test vim InstCombineCalls.cpp                       # added `if (0 == 1) return 0;` at