search for: lee

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

Did you mean: le
2016 Apr 20
0
Data reshaping with conditions
...ves 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 21 351 lee A 88 351 lee B 111 351 lee B 46 351 lee B 108 351 lee B",header=TRUE) # you can also do this with other reshape functions library(prettyR) svdatstr<-stretch_df(svdat,"id",c("Count","type&q...
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 lee B 46 351 lee B 108 351 lee B >From the above data I am expecting an output like below. id name type count_of_B Max of count B x y 335 sally B 167 167 117,19 NA 340 su...
2016 Apr 21
2
Data reshaping with conditions
...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 > 21 351 lee A > 88 351 lee B > 111 351 lee B > 46 351 lee B > 108 351 lee B",header=TRUE) > # you can also do this with other reshape functions > library(prettyR) > svdatstr<...
2016 Apr 21
0
Data reshaping with conditions
...l_ 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 what you want: 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 21 351 lee A 88 351 lee B 111 351 lee B 46 351 lee B 108 351 lee B",header=TRUE) # you can also do this with other reshape functions library(prettyR) svdatstr<-stretch_df(svdat,"id",c("Count","type&q...
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 305@asterisk.company.com to work If I have this extension exten => 305,1,Dial(SIP/305,16) ;Lee Goodman exten => 305,2,Voicemail2,su305 exten => 305,3,Hangup wou...
2019 Oct 31
4
PHP FPM issue
...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> wrote: > On 10/31/19 10:49 AM, Thomas Stephen Lee wrote: > > Hi, > > > > what is the workaround for this? > > > > https://www.nginx.com/blog/php-fpm-cve-2019-11043-vulnerability-nginx/ &g...
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...
2008 Oct 15
2
Asterisk 1.4.21.2 - Issues with call parking
...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 extensions.conf. The attached file capture.txt contains the Asterisk messages. Please let me know if I am missing something. Thanks, lee -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20081015/12a2e592/attachment.htm
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 "sensors" you are referring to.. > &...
2008 Sep 17
3
Dates in C api
...hen 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 recognize that a value is a date rather than a real? Equally, does anyone know if it's possible to create date values in the C api? Thanks, Phil Lee Philip Lee Morgan Stanley | Technology 750 Seventh Avenue, 12th Floor | New York, NY 10019 Phil.Lee at morganstanley.com -------------------------------------------------------- NOTICE: If received in error, please destroy and notify sender. Sender does not intend to waive confidentiality or pri...
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: > > Hello all, > > Is there a way to register callback that runs before/after passes? > PassTimingInfo seems to do a similar...
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...
2012 Nov 03
1
[Bridge] [PATCH 9/9] Avoid 'statement with no effect' compiler warnings
...hich 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> --- net/bridge/br_private.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/net/bridge/br_private.h b/net/bridge/br_private.h index 9b278c4..af5f584 100644 --- a/net/bridge/br_private.h +++ b/net/bridge/br_private.h @@ -566,10 +5...
2005 Apr 24
4
Vncserver not serving up my gnome desktop, just a fancy terminal!
...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 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 republican or a democrat nor is His government a democ...
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> Subject: [EXT] Re: [llvm-dev] Is it valid to dereference a pointer that have undef bits in its offset? > %p2 = gep %p, (undef & 8) A silly typo: undef & 8 -> undef & 7 On Mon, S...
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 republican or a democrat nor is His government a democ...
2006 Dec 31
8
(OT) Where to post free source for AGI?
...stral.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 -- Warm Regards, Lee
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 wit...
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
...rator, but for now it is quite easy to use with Rails and doesn''t require much HTML in the page; it does not contaminate params with extra junk and supports multiple datepickers on the same page. I hope some of you find it useful. Please CC me directly on any feedback. -- cheers, David Lee (davelee @ freenode #rubyonrails) -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails-spinoffs/attachments/20050919/39a8cef7/attachment.html