Displaying 20 results from an estimated 31 matches for "vinny".
Did you mean:
vinay
2003 Sep 22
0
Last call: Asterisk BoF in Boston, Tuesday 23rd
Hello -
The final schedule for the Asterisk birds-of-a-feather meeting (as
an adjunct to the VON conference) in Boston looks like this:
Tuesday, September 23rd at 8:15 at VinnyT's of Boston near the Hynes
Convention Center.
We'll try to get a corner booth in the "downstairs room", and look
for the guy wearing the blue button-down shirt with VON logos on the
breast pocket - that will be me.
JT
Details:
Vinny T's of Boston Back Bay
867 Boylston...
2009 Jun 27
1
Multiple parking lots use default park positions
...reinvite=nonat
[common](!)
type=friend
host=dynamic
[a10](!,common) ; EBC
context=a10
parkinglot=parkinglot_a10
[a10o](!,common) ; EBC - authorized for outbound calls
context=a10o
[jintrabartola](a10o)
callerid=Joe Intrabartola
[tkeeley](a10o)
callerid= Terry Keeley
[vdemarco](a10o)
callerid= Vinny De Marco
[a100](!,common) ; SSI
context=a100
parkinglot=parkinglot_a100
[jasiii](a100)
callerid=John A. Sullivan III
[gss](a100)
callerid=Graham Stoddart-Stones
I next included the parking contexts in extensions.conf as follows:
[a10] ; EBC
exten => 12,1,Dial(SIP/tkeeley)
;exten => 12,1...
2009 Oct 15
1
Callpickup works for outside calls but not inside calls
...rather than a10 or a10pub
;so that the spare stations can access them but public cannot
exten => 612,hint,SIP/tkeeley
; Joe Intrabartola
exten => 613,hint,SIP/jintrabartola
; Maryann Lapolla
exten => 614,hint,SIP/mlapolla
; Michael Intrabartola
exten => 616,hint,SIP/mintrabartola
; Vinny De Marco
exten => 617,hint,SIP/vdemarco
; Reception - the Reception desk may ring when someone dials zero
exten => 621,hint,SIP/reception-a10
; Steve McClain
exten => 624,hint,SIP/smcclain
; Amityville Intercom
;exten => 686,1,Dial(SIP/avilleextdoor-a10,60)
;exten => 686,n,Hangup(...
2009 Jun 06
2
Installation of wine not working on fedora 10
...irection to install e was installed from fedora repository Ver 1.1.15,
I installed all Wine file listed 14 of them. The installation went
through without a hitch, but nothing works install button don't do any
thing; wineboot, I don't know the usage, but it does not do any thing.
Thank you, Vinny
2011 Nov 16
3
plotting a double y axis when x and y lengths differ
Hello All,
Many thanks to the help I have received so far.
Here is an example data set I hope to plot
Data1
Year Data SE
1 2005 2 0.01
2 2006 4 0.01
3 2007 5 0.01
4 2008 2 0.01
5 2009 3 0.01
6 2010 6 0.01
Data2
Year Data SE
1 2006 32 1
2 2007 100 2
3 2008 60 4
4 2009 67 3
5 2010 8 1
Notice Data2 has one less years worth of data than Data1 (which is my
2006 Jan 12
0
[PATCH] VTPM_Tools - Makefile Library checking
Adds a check to vtpm_manager and vtpm Makefiles to verify openssl and
gmp dev files are installed. If files are missing, Makefile exits with a
message indicating that these tools will not be built, rather than an
error, which prevents Xen from building.
-Vinnie Scarlata
Signed-off-by: Vinnie Scarlata <vincent.r.scarlata@intel.com>
_______________________________________________
Xen-devel
2006 May 30
0
RE: [PATCH] Update for new tpm emulator [Replacement Patch]
Sorry, the other patch was broken. I type-o-ed in the patch creation
process and made a big patch of stuff already checked in. This patch
should replace the last one.
-Vinnie Scarlata
-----Original Message-----
From: xen-devel-bounces@lists.xensource.com
[mailto:xen-devel-bounces@lists.xensource.com] On Behalf Of Scarlata,
Vincent R
Sent: Friday, May 26, 2006 5:45 PM
To:
2006 Apr 13
0
Default ICMP rate limiting changes from 5.4 to 6.x?
....1-PRERELEASE FreeBSD 6.1-PRERELEASE
#3: Wed Mar 8 16:37:25 EST 2006
I can post dmesg output too, but I don't think that is necessarily
relevant as everything else is working perfectly fine and I have no
stability or performance problems.
Thanks in advance for any helpful ideas or hints!
Vinny Abello
Network Engineer
Server Management
vinny@tellurian.com
(973)300-9211 x 125
(973)940-6125 (Direct)
PGP Key Fingerprint: 3BC5 9A48 FC78 03D3 82E0 E935 5325 FBCB 0100 977A
Tellurian Networks - The Ultimate Internet Connection
http://www.tellurian.com (888)TELLURIAN
"Courage is resistanc...
2001 Oct 29
3
ext3 and 2.4.x kernels
Dear list readers -
it was brought to my attention that during the upgrade of a server to rh7.2,
and selecting the ext3 migration works well with 1 exception that i need
verified if i could please. i heard that once you migrate to ext3, you may
no longer do a kernel upgrade without downgrading to ext2 and then putting
the kernel or AC kernel in place 'patched'. What i need to know
2011 Oct 29
2
Extracting data by row
Thanks everyone for you help with my last question, and now I have one last
one...
Here is a sample of my data in .csv format
site,time_local,time_utc,reef_type_code,sensor_type,sensor_depth_m,temperature_c
06,2006-04-09 10:20:00,2006-04-09 20:20:00,BAK,sb39, 2, 29.63
06,2006-04-09 10:40:00,2006-04-09 20:40:00,BAK,sb39, 2, 29.56
06,2006-04-09 11:00:00,2006-04-09 21:00:00,BAK,sb39, 2, 29.51
2013 Apr 20
2
Editing data sheet issue with write.table append
I'm running R 2.15.2 on Max OS X 10.6.8
If I write a simple file
Data1<-1
DF<-data.frame(Data1)
colnames(DF)<-"Col1"
and write to a csv file
write.table(DF,file="Data.csv",sep=",",row.names=FALSE,col.names=TRUE)
I can then append to it no problem
Data2<-2
Data3<-4
DF2<-data.frame(Data2)
DF3<-data.frame(Data3)
2005 May 31
4
Karl
...lition@yahoogroups.com
Posted by: Karl J. Vesterling at December 18, 2003 11:14 AM
You know, I'm torn on this one. I don't delete comments, but since this is nothing more than typical propaganda, I'm tempted to.
I think I'll just leave it alone and stick to my policies.
Posted by: Vinny at December 18, 2003 11:15 AM
I thought I'd seen 'em all. this tripe is so old it's not even worth the effort to fisk it.
Posted by: nathalie at December 18, 2003 01:24 PM
--
___________________________________________________________
Sign-up for Ads Free at Mail.com
http://promo....
2011 Oct 27
2
Simple time series question with zoo
New user here. My goal is pull daily averages from a long dataset.
I've been working with some code I got from this list from
https://stat.ethz.ch/pipermail/r-help/2009-March/191302.html
The code how I have been using it is as follows:
library(zoo)
library(chron)
DB<-read.table("/Users/me/Desktop/R/data.csv", sep=",", header=TRUE, as.is
=TRUE)
z<-zoo(LTER6$temp,
2002 Oct 30
1
External Journal scenario - good idea?
Hello everyone,
I've just recently joined the ext3-users list. I spent much of the
weekend browsing over list archives and other tidbits I could find on
the net, regarding using an external journal, and running in
data=journal mode. From what I have seen looking around at what other
folks are doing, data=journal with an external journal may be able to
help our problem here.
If I
2005 Dec 30
0
[PATCH] VTPM_Tools VTPM State Key Encryption
Virtual TPM persistent states contain VTPM secrets, which are encrypted
using symmetric keys and stored on disk along with those symmetric keys.
The attached patch uses the TPM to encrypt the symmetric keys and other
global secrets before saving them to disk.
Signed-off-by: Vinnie Scarlata <vincent.r.scarlata@intel.com>
_______________________________________________
Xen-devel mailing
2006 Nov 28
0
Fwd: Prayer "For Fiji Ever Fiji"
---------- Forwarded message ----------
From: ravesi konrote <sales@manafiji.com>
Date: Nov 29, 2006 9:35 AM
Subject: Prayer "For Fiji Ever Fiji"
To: fb@manafiji.com, Cecilia Frost <salesnaviti@navitiresort.com.fj>, Mana
Island Personal Assistant <stoga@manafiji.com>, mana.vinnie@gmail.com, Mana
Wedding <wedding@manafiji.com>, reservationsmana
2012 Feb 23
1
Using R to read Nortek Aquadopp Profiler
Hello,
I have current data from a nortek ADP, which is basically current speed and
direction data in a 3 dimensional X Y Z format
http://www.nortekusa.com/usa/products/current-profilers/aquadopp-profiler-1
The instrument logs data in a complex way and I was wondering if anyone has
had any experience using R to at least read the data, and perhaps smooth it
as well. If so, are there any
2011 Nov 12
1
Subsetting data leads to funky plots
I'm trying out a basic plot, but something about the way I subset my data
leads to problems with the plot.
Here is the first bit of my data set
year,date,location,quadrat_juvenile,photo_location,photo_exists,genus,count,divers
2005,2005-04-30, 1 Fringing Reef,1, 1 Fringing Reef Coral Transect Pole 1-2
Quadrat 1,t,Acanthastrea,0,HP+MEM
2005,2005-04-30, 1 Fringing Reef,1, 1 Fringing Reef
2011 Nov 01
1
Multiple time series with zoo
Thanks for everyone's input so far, it is greatly appreciated. But I've got
one last task I could use some advice on
Here are the first few lines of my data set:
site,time_local,time_utc,reef_type_code,sensor_type,sensor_depth_m,temperature_c
06,2006-04-09 10:20:00,2006-04-09 20:20:00,BAK,sb39, 2, 29.63
06,2006-04-09 10:40:00,2006-04-09 20:40:00,BAK,sb39, 2, 29.56
06,2006-04-09
2013 Mar 18
0
[linux-linus test] 17325: regressions - trouble: broken/fail/pass
flight 17325 linux-linus real [real]
http://www.chiark.greenend.org.uk/~xensrcts/logs/17325/
Regressions :-(
Tests which did not succeed and are blocking,
including tests which could not be run:
test-amd64-amd64-xl 9 guest-start fail REGR. vs. 12557
test-amd64-i386-xl-credit2 15 guest-stop fail REGR. vs. 12557
test-amd64-i386-xl 15 guest-stop