Displaying 3 results from an estimated 3 matches for "fechafin".
2010 Jun 08
1
POSIXlt objects
Hello I am using POSIXlt date format and I am having the following problem,
I've got two dates called FechaIni and FechaFin, one in 2008 and the other
in 2009 but when I do FechaIni$year and FechaFin$year to call the year I am
getting the smae year for both.
> FechaIni
[1] "2008-11-13 UTC"
> FechaFin
[1] "2009-06-13 UTC"
> FechaFin$year
[1] 108
> FechaIni$year
[1] 108
does somebody know...
2018 Jan 19
5
API de AEMET con R?
...aciones/?api_key=*vuestra
api key*
DESCARGAR DATOS HISTÓRICOS
Diciembre 2017, ALICANTE
wget --method GET --header 'cache-control: no-cache' --no-check-certificate
--output-document -
https://opendata.aemet.es/opendata/api/valores/climatologicos/diarios/datos/fechaini/2017-12-01T00:00:00UTC/fechafin/2017-12-31T00:00:00UTC/estacion/8025?api_key=*vuestra
api key*
Noviembre 2017, ALICANTE
wget --method GET --header 'cache-control: no-cache' --no-check-certificate
--output-document -
https://opendata.aemet.es/opendata/api/valores/climatologicos/diarios/datos/fechaini/2017-11-01T00:00:00UT...
2011 Jun 13
1
Lost performance between Samba 3.0.24 and 3.5.8 with high number of concurrent connections
...nd Samba 3.5.8. From one client I ran the next script:
#!/bin/bash
connectAndList ()
{
for i in $( seq 1 1000 )
do
fechaInicio=$( date )
salida=$( smbclient //yela/mdrive -U nobody% -c ls 2>
/dev/null )
retorno=$?
fechaFin=$( date )
if [ ! $retorno -eq 0 ]
then
echo "$fechaInicio - Error $1 $salida - $fechaFin"
sleep 1
fi
done
}
for j in $( seq 1 5 )
do
for i in $( seq 1 100 )
do...