search for: lees

Displaying 20 results from an estimated 2923 matches for "lees".

Did you mean: lee
2016 Apr 20
0
Data reshaping with conditions
Hi sri, As your problem involves a few logical steps, I found it easier to approach it in a stepwise way. Perhaps there are more elegant ways to accomplish this. svdat<-read.table(text="Count id name type 117 335 sally A 19 335 sally A 167 335 sally B 18 340 susan A 56 340 susan A 22 340 susan B 53 340 susan B 135 351 lee A 114 351 lee A 84 351 lee A 80 351 lee A 19 351 lee A 8 351 lee A
2016 Apr 20
2
Data reshaping with conditions
Dear All, I am trying to reshape the data with some conditions. A small part of the data looks like below. Like this there will be more data with repeating ID. Count id name type 117 335 sally A 19 335 sally A 167 335 sally B 18 340 susan A 56 340 susan A 22 340 susan B 53 340 susan B 135 351 lee A 114 351 lee A 84 351 lee A 80 351 lee A 19 351 lee A 8 351 lee A 21 351 lee A 88 351 lee B 111 351
2016 Apr 21
2
Data reshaping with conditions
Hi Jim, Thanks for your time. But somehow this code did not help me to achieve my expected output. Problems: 1) x, y are coming as logical rather than values as I mentioned in my post 2) The values that I get for Max A and Max B not correct 3) It looks like a pretty big data, but I just need to concatenate the values with a comma, the final output will be a character
2016 Apr 21
0
Data reshaping with conditions
Hi sri, I think that I see what you mean. Your statements: x = Count_A_less_than_max of (Count type B) y = Count_A_higher_than_max of (Count type B). I took to mean that you wanted a logical value for x and y. Looking more closely at your initial message, I see that you wanted _all_ values of A with respect to maxB in x and y. The error with maximum values was due to a typo. Perhaps this will do
2003 Sep 11
1
how to make sip uri work
Lets say I have an * at my business, with 7960 SIP phones. All the sip phones are registered using their extension number (like 305), but I would also like to put my SIP URI on my business card and in a name format, not an extension number (like lee.goodman), so that the SIP URI would read lee.goodman@asterisk.company.com. How would I set this up in extensions.conf? I got
2019 Oct 31
4
PHP FPM issue
Hi Marius, Will make the changes and see how it goes. On the other hand https://cbs.centos.org/koji/buildinfo?buildID=27138 if the above was released we could just install and migrate to rh-php73-php, which is not affected as per https://access.redhat.com/security/cve/cve-2019-11043 thanks --- Thomas Stephen Lee On Thu, Oct 31, 2019 at 8:40 PM Marius ROMAN <marius at roman.systems>
2011 Apr 26
1
Public Apology to Minister Mentor Lee Kuan Yew and Prime Minister Lee Hsien Loong, Singapore
I was misconstrued as having insulted Minister Mentor Lee Kuan Yew. My words were twisted and misinterpreted and I feel that there is a need to explain myself and set the record straight. [b]What really happened[/b] It was sometime in Aug/Sep in the year 2009. The setting was in the Tampines Central office of Asiasoft Online Pte Ltd. I was having a ***verbal*** conversation with Melvin Lee,
2008 Oct 15
2
Asterisk 1.4.21.2 - Issues with call parking
Hi, I am facing the following issues with call parking: 1) Asterisk does not announce the parking extension:- I press # and hear "transfer" followed by a beep. I dial 700 but do not hear the parking extension number. 2) After parking time, the original extension rings and i accept the call. When I again try to park, the call park sequence fails. I have attached features.conf and
2020 Apr 02
4
Versions in RHEL and CentOS
On Wed, Apr 1, 2020 at 12:33 PM Peter Kjellstr?m <cap at nsc.liu.se> wrote: > On Wed, 1 Apr 2020 10:01:04 +0530 > Thomas Stephen Lee <lee.iitb at gmail.com> wrote: > ... > > Thanks for the information ?. > > Rented a new EPYC Rome Server from Hetzner, but sensors does not show > > status of all cores in list, which is why I asked. > > Curious what
2008 Sep 17
3
Dates in C api
r-devel, I've been trying to write a C plugin for R, and I'm struggling to understand how dates are represented. I can create a date in R: > mydate<-as.Date(1, origin="1900-01-01") mydate [1] "1900-01-02" When I pass my date to a plugin, though, it's type is that of a real. There doesn't seem to be a date type in Rinternals.h, is there a way to
2019 Dec 12
3
Adding custom callback function before/after passes
Hello Fedor. Thank you for the information. I made a simple patch that exposes PassInstrumentationCallback so llvmGetPassPluginInfo can use it: https://reviews.llvm.org/D71086 . Would this change make sense? Thanks, Juneyoung Lee On Thu, Dec 12, 2019 at 12:44 AM Fedor Sergeev <fedor.sergeev at azul.com> wrote: > > > On 12/3/19 8:01 PM, Juneyoung Lee via llvm-dev wrote: > >
2023 Aug 24
4
[PATCH (set 1) 00/20] Rid W=1 warnings from GPU
On Thu, 24 Aug 2023, Jani Nikula wrote: > On Thu, 24 Aug 2023, Lee Jones <lee at kernel.org> wrote: > > This set is part of a larger effort attempting to clean-up W=1 > > kernel builds, which are currently overwhelmingly riddled with > > niggly little warnings. > > The next question is, how do we keep it W=1 clean going forward? My plan was to fix them all, then
2012 Nov 03
1
[Bridge] [PATCH 9/9] Avoid 'statement with no effect' compiler warnings
Instead of issuing (0) statements when !CONFIG_SYSFS which will cause 'warning: ', we'll use inline statements instead. This will effectively do the same thing, but suppress any unnecessary warnings. Cc: Stephen Hemminger <shemminger at vyatta.com> Cc: bridge at lists.linux-foundation.org Cc: netdev at vger.kernel.org Signed-off-by: Lee Jones <lee.jones at linaro.org> ---
2005 Apr 24
4
Vncserver not serving up my gnome desktop, just a fancy terminal!
I have the vncserver running on CentOS 4, but when I log in using vncviewer from another box, I don't see my gnome desktop, just a fancy terminal. I suspect I need to edit the ~/.vnc "xstartup file, but what do I add to fix this. On all other distros I have tried, the vncserver serves up my gnome desktop by default. -- Lee Parmeter Emperor, linXos - The Flying Penguin
2020 Sep 21
2
Is it valid to dereference a pointer that have undef bits in its offset?
I think it’s reasonable to expect that IR generated by frontends doesn’t do this. Not sure about transforms; I can imagine that we might speculate a load without proving all the bits are well-defined. -Eli From: llvm-dev <llvm-dev-bounces at lists.llvm.org> On Behalf Of Juneyoung Lee via llvm-dev Sent: Sunday, September 20, 2020 3:54 PM To: llvm-dev <llvm-dev at lists.llvm.org>
2005 Apr 24
3
apt repo's for centos
I downloaded and installed apt and synaptic using yum ok, but are there corresponding apt repo's for the yum ones? If so, what are they? -- Lee Parmeter Emperor, linXos - The Flying Penguin http://www.linXos.com Linux Registered User #337161 'It's free. It works. Duh.'" - Eric Harrison The United States is NOT a democracy, it was founded as a Republic! God is not a
2006 Dec 31
8
(OT) Where to post free source for AGI?
Hey all, After figuring out a problem with AGI and freepascal, I have finished writing a small Cepstral (http://www.cepstral.com) AGI app. I wrote a small readme for it at http://www.datatrakpos.com/misc/dial/readme.txt. I'd like to give it to the community (source/binary) and was wondering where to post it? The wiki? Also, anyone have suggestion on licensing? LGPL? FreeBSD? Thanks
2014 Dec 10
3
Request permission for editting Simplified Chinese Frontpage
Dear Alan On 12/10/2014 01:27 AM, Alan Bartlett wrote: > On 9 December 2014 at 13:50, Ho Lee <huanying2000a at gmail.com> wrote: >> My wiki username is HoLee . >> >> Could I gain access to these Simplified Chinese Frontpage? > I like the idea of having more than one person looking after a > particular language translation and your offer to assist with
2005 Aug 18
4
CRM software
Can anyone recommend CRM software with a link into Asterisk? I would like a pop up on caller ID if possible. I've played with the FOP and SugarCRM but can't get them working together. Regards Lee -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20050818/e71c34a3/attachment.htm
2005 Sep 19
9
Rails compatible JS datepicker -- beta
hi all, I''ve built a simple javascript datepicker for use with Rails. I''m sure others exist, but think this one is quite decent without being overengineered. http://projects.exactlyoneturtle.com/date_picker/ At present there''s no Rails HTML generator method for it; later I will package it in a script/generator, but for now it is quite easy to use with Rails and