Displaying 20 results from an estimated 10000 matches similar to: "[LLVMdev] LLVM talk: Palo Alto"
2013 Apr 10
0
Research Analyst at YouGov in Palo Alto, CA
RESEARCH ANALYST
YouGov is currently recruiting a Research Analyst to work in our Palo Alto office within our Operations department. The successful candidate will work with the Analytics team, which provides project directors with the operational services they require to offer quality consultancy on a wide variety of topics.
The successful candidate will be provided with the relevant training
2011 Jul 28
0
Development/Operations engineer, Palo Alto, CA -- FreeBSD/startup
The job description is below, with more information available through LinkedIn.
http://www.linkedin.com/jobs?viewJob=&jobId=1805547
I'd like to reinforce that this is actually a fairly FreeBSD specific role. So,
if the idea of FreeBSD + funded startup sounds appealing, please read on!
Please feel free to contact me for more information <my first name>@ubalo.com
or even to just
2010 Jul 14
0
[Jobs] Groupon is looking for RoR Developers in Chicago and Palo Alto
Groupon is seeking top-notch developers who love working on all
aspects of software used by millions of people around the world. We
are looking to add to a talented team of folks who are passionate
about software and work to build efficient and scalable systems to
support our growing platform.
Some great things we have been able to deliver include a site built
entirely on Rails which scaled
2004 Jan 12
0
Part time sysadmin wanted in Palo Alto, CA
The place where I work, we need a part time sysadmin
contractor. We don't need you to work crazy hours or be
available at all hours but freebsd/linux/windows/network
admin&debugging + scripting experience essential. Must
be able to work independently! The work load is
variable but will probably settle down to few hours a
week (wish I can offer a fulltime position but we are a
small
2011 Feb 22
0
Statistical Programmer
STATISTICAL PROGRAMMER
We are seeking one or more programmers for our Analytics Group, based in
Palo Alto. We are looking for people who combine strong programming skills
with experience performing statistical analyses on large datasets. Work in
a fast-paced and intellectually stimulating environment where technically
sophisticated solutions to marketing, financial, and political problems
are
2023 Nov 03
1
Sum data according to date in sequence
Hi all,
This is the data:
> dput(head(dt1,20))structure(list(StationName = c("PALO ALTO CA / CAMBRIDGE #1",
"PALO ALTO CA / CAMBRIDGE #1", "PALO ALTO CA / CAMBRIDGE #1",
"PALO ALTO CA / CAMBRIDGE #1", "PALO ALTO CA / CAMBRIDGE #1",
"PALO ALTO CA / CAMBRIDGE #1", "PALO ALTO CA / CAMBRIDGE #1",
"PALO ALTO CA / CAMBRIDGE
2023 Nov 03
1
Sum data according to date in sequence
Is this what you are after?
library(tidyverse)
library(lubridate)
input <- structure(list(StationName = c("PALO ALTO CA / CAMBRIDGE #1",
"PALO ALTO CA / CAMBRIDGE #1", "PALO ALTO CA / CAMBRIDGE #1",
"PALO ALTO CA / CAMBRIDGE #1", "PALO ALTO CA / CAMBRIDGE #1",
"PALO ALTO CA / CAMBRIDGE #1", "PALO ALTO CA / CAMBRIDGE
2023 Nov 04
2
Sum data according to date in sequence
?s 01:49 de 03/11/2023, roslinazairimah zakaria escreveu:
> Hi all,
>
> This is the data:
>
>> dput(head(dt1,20))structure(list(StationName = c("PALO ALTO CA / CAMBRIDGE #1",
> "PALO ALTO CA / CAMBRIDGE #1", "PALO ALTO CA / CAMBRIDGE #1",
> "PALO ALTO CA / CAMBRIDGE #1", "PALO ALTO CA / CAMBRIDGE #1",
> "PALO ALTO
2023 Nov 03
1
Sum data according to date in sequence
How about send a 'dput' of some sample data. My guess is that your date is
'character' and not 'Date'.
Thanks
Jim Holtman
*Data Munger Guru*
*What is the problem that you are trying to solve?Tell me what you want to
do, not how you want to do it.*
On Thu, Nov 2, 2023 at 4:24?PM roslinazairimah zakaria <roslinaump at gmail.com>
wrote:
> Dear all,
>
> I
2023 Nov 02
4
Sum data according to date in sequence
Dear all,
I have this set of data. I would like to sum the EnergykWh according date
sequences.
> head(dt1,20) StationName date time EnergykWh
1 PALO ALTO CA / CAMBRIDGE #1 1/14/2016 12:09 4.680496
2 PALO ALTO CA / CAMBRIDGE #1 1/14/2016 19:50 6.272414
3 PALO ALTO CA / CAMBRIDGE #1 1/14/2016 20:22 1.032782
4 PALO ALTO CA / CAMBRIDGE #1 1/15/2016 8:25 11.004884
5
2023 Nov 03
2
Sum data according to date in sequence
Hi,
I tried this:
# extract date from the time stamp
dt1 <- cbind(as.Date(dt$EndDate, format="%m/%d/%Y"), dt$EnergykWh)
head(dt1)
colnames(dt1) <- c("date", "EnergykWh")
and
my dt1 becomes these, the dates are replace by numbers.
dt1 <- cbind(as.Date(dt$EndDate, format="%m/%d/%Y"), dt$EnergykWh)
dput(head(dt1))
colnames(dt1) <-
2019 Dec 24
3
Problems installing CentOS 8
I'm having a problem installing CentOS 8 from a USB drive. When the
installer boots from the USB, it displays the language selection screen.
After I select English and continue, the installer freezes. The USB
drive flashes a couple times over the next minute or so, the stops. The
mouse moves the cursor, but the installer is unresponsive to either
selecting QUIT or HELP.
I've
2012 Jul 10
3
System crash -- no clue why
Hi --
My CentOS 5.8 server crashed, leaving no clue why. The
last entry in /var/log/messages is a dhcpd notice around
4:00am, followed by the restart message when I rebooted.
The only clue that I have is that the fan was running full
speed when I restarted it. The fan slowed to normal speed.
Any ideas what I can do to find out the cause?
--
Michael Eager eager at eagercon.com
1960 Park
2015 Nov 23
2
Building for older versions
On 11/23/2015 08:06 AM, Nicolas Thierry-Mieg wrote:
> On 11/23/2015 04:33 PM, Michael Eager wrote:
>> Hi --
>>
>> I'm trying to build an application on CentOS 7 which
>> can run on older versions of CentOS. I'm running into
>> problems with versioning of memcpy in Glibc. Executables
>> built on CentOS 7 require memcpy from glibc-2.14, which
>>
2015 Nov 23
6
Building for older versions
Hi --
I'm trying to build an application on CentOS 7 which
can run on older versions of CentOS. I'm running into
problems with versioning of memcpy in Glibc. Executables
built on CentOS 7 require memcpy from glibc-2.14, which
causes the program not to load on systems with older
versions of glibc.
My online search suggests to add an asm() with a .symver
option to select memcpy from
2015 Nov 23
1
Building for older versions
On 11/23/2015 09:10 AM, Nicolas Thierry-Mieg wrote:
> On 11/23/2015 06:00 PM, Michael Eager wrote:
>> On 11/23/2015 08:06 AM, Nicolas Thierry-Mieg wrote:
>>> On 11/23/2015 04:33 PM, Michael Eager wrote:
>>>> Hi --
>>>>
>>>> I'm trying to build an application on CentOS 7 which
>>>> can run on older versions of CentOS. I'm
2019 Dec 24
0
Problems installing CentOS 8
On Mon, Dec 23, 2019 at 8:20 PM Michael Eager <eager at eagerm.com> wrote:
>
> I'm having a problem installing CentOS 8 from a USB drive. When the
> installer boots from the USB, it displays the language selection screen.
> After I select English and continue, the installer freezes. The USB
> drive flashes a couple times over the next minute or so, the stops. The
>
2015 May 09
4
NFS performance on CentOS 7
I am setting up a file server with CentOS 7. I'm seeing
performance which is considerably slower than a similar
server running CentOS 6.6. A 3Gb directory can be copied
to/from the CentOS 6.6 server in about 50 seconds. The
same directory takes about 270 seconds to copy to/from
the CentOS 7 system.
I see the same performance difference with NFS mounted
file systems or using scp, so it
2012 Jun 28
1
CentOS 5.8 crash/freeze running VMware
Hi --
I have a server running CentOS 5.8. It has a 6-core AMD processor,
16Gb memory, and a RAID 5 file system. It serves as both a file server
and to run several VMware virtual machines. The guest machines run
Windows 7 and various versions of Linux.
The system is running the latest version of VMware Workstation.
Until recently, I started VMs using the VMware Workstation GUI.
The system has
2020 Jan 04
0
USB drive very slow on CentOS 8
I recently upgraded from CentOS 7 to CentOS 8.
I have a Mediasonic HF2-SU3S2 external drive enclosure with 4x3Tb drives
configured as a software RAID 5 array (mdadm) with LVM. It's connected
to a USB 3.0 port.
On CentOS 7, the drive performance is reasonable. On CentOS 8,
performance is extremely slow, about USB 1.0 performance. Maybe worse.
Connecting an external USB SSD to the