Tonight's Meet-Up SLIGHT DELAY (Recommend Broad St Exit 5B)

Hey Folks! Just wanted to give a heads up about Voters Rights march this afternoon. I usually take the Broad St Exit anyway, but if you don't normally you may want to consider since the march will be coming finishing up on Cherry Street.There is a chance this may not effect us at all since it starts at 5pm and they are planning on reopening streets as the march travels along the map http://www.wxii12.com/news/moral-monday-protest-march-scheduled-in-downtown-ws-traffic-delays-possib...But technically they are saying the march will last from 5pm-7pm so the worst case scenerio we start 30 minutes late. (BTW I accidentally put 6pm for the start time for meeting tonight, but as most of you know we don't officially start until 6:30pm)See you all tonight!!!
This topic first appeared in the Spiceworks Community

Hi, Nubz!
Yes, I just saw that, and am still chuckling.
Maybe that will mollify the Jive gods?
Thanks again,
Jim

Similar Messages

  • Very slight delay in live recording

    Hi.
    I am running LE with an Alexis Multimix 8 Firewire control mixer. I am getting a very slight delay over the monitor speakers and in headphones when speaking into mic or playing guitar when a track is record enabled. This is annoying. I do not get this delay when using Cubase LE which came with the mixer. Being new, I guess you might call what I am looking for is a "dry" sound. I have tinkered and read the manual adnauseum to no avail. Is this due to a "processing" delay through LE? Is there a record or monitoring setting that will alleviate this problem?
    Thanks,
    Tom
    20" iMac G5 w/iSight   Mac OS X (10.4.4)   1 gb RAM, 250 MB Hard Drive, FCE 2.03, QT 7.04

    To all.
    I think I just found the answer in another thread. I turned off "software monitoring" in the audio preferences and the delay went away. What exactly have I done though in terms of input sound and what is being recorded?
    Thanks

  • Problems with the slight delay of keyPressed.

    Hi all!
    I just joined the wonderful sdn network, so HELLO EVERYONE :D
    I studyed some java in unversity, but never in depth, and ive recently found myself yearning after it, so recently i decided to try and teach myself!
    Unfortuantly ive hit abit of a problem, im trying to make a pacman game, hopfully develop it beyond the original and make it more innovative.
    Ive come across two problems
    1. My applet doesnt seem to have any focus until ive clicked onto it - i cant figure out what needs the focus and which focus method i should use or where the code should go!
    2. Although ive got my pacman displayed with a nice munching motion (which im quite proud of ^_^ ) and he moves when the specific keys are pressed, theres a slight delay when i try and change direction, or when i first keyPress. Hopefully you can see what i mean when you run my code, or maybe you already know what im talking about!
    I have a feeling its to do with the keyPressed code, since it only kicks in when the key is down, rather then when its keyDowning(if thats even a word!) is there a way to remove that delay so movement is seamless?
    So id be very grateful if you could advise me on what my first mistake was, and what i could do with my second problem!
    Thank you, my code is below, and please feel free to share some POSTIVE critisim, on my code, or advice on what steps to take next or in coding in general!
    CHEERS!
    sskenth
    4 classes - AnimationThread, Pacman, PaintSurface, Room
    import java.applet.*;
    import java.awt.*;
    import javax.swing.*;
    import java.awt.geom.*;
    class AnimationThread extends Thread
         JApplet c;
         int threadSpeed = 20; // this allows the pacman speed to be reduced i.e. negative slow pill... change to 100 for slow!
         public AnimationThread(JApplet c)
              this.c=c;
         public void run()
              while(true)
                   c.repaint();
                   try
                        Thread.sleep(threadSpeed);
                   catch(InterruptedException ex)
                        //swallow the exception
    import java.awt.geom.*;
    import java.awt.event.*;
    class Pacman extends Arc2D.Float //implements KeyListener //setArc(double x, double y, double w, double h, double angSt, double angExt, int closure)
              private int diameter;
              private int x_speed,y_speed;
              private int width = Room.WIDTH;
              private int height = Room.HEIGHT;
              private     int mouth = 10;// mouth is the amount it opens by! -1 is opening, +1 is closing
                             // mouth - =1 makes it spin!
              public Pacman(int diameter)
                   super((int)(Math.random() * (Room.WIDTH - 20) + 1), (int)(Math.random() * (Room.HEIGHT - 20) + 1),diameter,diameter,210,300,2);
                   this.diameter = diameter;
                   //this.x_speed = (int)(Math.random()*5+1);
                   //this.y_speed = (int)(Math.random()*5+1);
                   this.x_speed = 10;
                   this.y_speed = 10;
         public void move(int e)
                   if(e == KeyEvent.VK_UP)
                   this.setAngleStart(120);
                   super.y -=y_speed;
                   if(e == KeyEvent.VK_DOWN)
                   this.setAngleStart(300);
                   super.y +=y_speed;
                   if(e == KeyEvent.VK_LEFT)
                   this.setAngleStart(210);
                   super.x -=x_speed;
                   if(e == KeyEvent.VK_RIGHT)
                   this.setAngleStart(30);
                   super.x +=x_speed;
                   //System.out.println(direction);
              public void mouth()
                        if(this.getAngleExtent()  >= 360)
                        mouth = -10;
                        if(this.getAngleExtent()  <= 270)
                        mouth = 10;
                   double angExt = this.getAngleExtent();
                   this.setAngleExtent(angExt +=mouth);
                   //     System.out.println(getAngleExtent());
    import java.awt.event.*;
    import java.applet.*;
    import java.awt.*;
    import javax.swing.*;
    import java.awt.geom.*;
    import java.util.*;
    class PaintSurface extends JComponent
              public ArrayList<Pacman> pacmans = new ArrayList<Pacman>();
              public static Pacman pacman;
              public PaintSurface()
                    pacman = new Pacman(50); //diameter of pacman
                   //for(int i = 0; i <10; i++)
                        //pacmans.add(new Pacman(50));
              public void paint (Graphics g)
                   Graphics2D g2 = (Graphics2D)g;
                   g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
                   //g2.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_OVER, 0.50F)); //adds transparency
                   g2.setColor(Color.YELLOW);
                   //for(Pacman pacman: pacmans)
                        //pacman.move();
                        pacman.mouth();
                        g2.fill(pacman);
    import java.applet.*;
    import java.awt.*;
    import javax.swing.*;
    import java.awt.geom.*;
    import java.awt.event.*;
    public class Room extends JApplet implements KeyListener
              public static final int WIDTH = 1000;
              public static final int HEIGHT = 300;
              private PaintSurface canvas;
              public void init()
                   this.setSize(WIDTH, HEIGHT);
                   canvas = new PaintSurface();
                   this.add(canvas,BorderLayout.CENTER);
                   Thread t = new AnimationThread(this);
                   t.start();
                   addKeyListener(this);
                   //canvas.requestFocus();
                   this.requestFocusInWindow();
              //frame.pack();  //Realize the components.
                  //This button will have the initial focus.
                 // button.requestFocusInWindow();
              public void keyReleased(KeyEvent e)
                             //System.out.println("KeyRELEASED "+e);
                             //int keyCode = e.getKeyCode();
                             //     PaintSurface.pacman.move(keyCode);
                        public void keyPressed(KeyEvent e)
                        //System.out.println("KeyRELEASED "+e);
                        int keyCode = e.getKeyCode();
                                  PaintSurface.pacman.move(keyCode);
                        public void keyTyped(KeyEvent e)

    Well i did as you both said, and it worked! thought id just put the code up for anyone who was wondering what it looked like, just replace the pacman class above with this new one and start the thread!
    import java.awt.geom.*;
    import java.awt.event.*;
    class Pacman extends Arc2D.Float implements Runnable //implements KeyListener //setArc(double x, double y, double w, double h, double angSt, double angExt, int closure)
              private int diameter;
              public int x_speed,y_speed;
              private int width = Room.WIDTH;
              private int height = Room.HEIGHT;
              private     int mouth = 10;// mouth is the amount it opens by! -1 is opening, +1 is closing
                             // mouth - =1 makes it spin!
              public static String direction;
              public Pacman(int diameter)
                   //super((int)(Math.random() * (Room.WIDTH - 20) + 1), (int)(Math.random() * (Room.HEIGHT - 20) + 1),diameter,diameter,210,300,2);
                   super(100 , 100,diameter,diameter,210,300,2);
                   this.diameter = diameter;
                   //this.x_speed = (int)(Math.random()*5+1);
                   //this.y_speed = (int)(Math.random()*5+1);
                   this.x_speed = 10;
                   this.y_speed = 10;
                   //Thread t = new GameLoop(this);
                   //t.start();
         public void move(int e)
                   if(e == KeyEvent.VK_UP)
                   this.setAngleStart(120);
                   direction = "UP";
                   //movement();
                   //super.y -=y_speed;
                   if(e == KeyEvent.VK_DOWN)
                   this.setAngleStart(300);
                   direction = "DOWN";
                   //movement();
                   //super.y +=y_speed;
                   if(e == KeyEvent.VK_LEFT)
                   this.setAngleStart(210);
                   direction = "LEFT";
                   //movement();
                   //super.x -=x_speed;
                   if(e == KeyEvent.VK_RIGHT)
                   this.setAngleStart(30);
                   direction = "RIGHT";
                   //movement();
                   //super.x +=x_speed;
         /*public void move(String s)
                   if(direction == "UP")
                   super.y -=y_speed;
                   if(direction == "DOWN")
                   super.y +=y_speed;
                   if(direction == "LEFT")
                   super.x -=x_speed;
                   if(direction == "RIGHT")
                   super.x +=x_speed;
              public void mouth()
                        if(this.getAngleExtent()  >= 360)
                        mouth = -10;
                        if(this.getAngleExtent()  <= 270)
                        mouth = 10;
                   double angExt = this.getAngleExtent();
                   this.setAngleExtent(angExt +=mouth);
                   //     System.out.println(getAngleExtent());
              public void movement()
                   if(direction == "UP")
                   super.y -=y_speed;
                   if(direction == "DOWN")
                   super.y +=y_speed;
                   if(direction == "LEFT")
                   super.x -=x_speed;
                   if(direction == "RIGHT")
                   super.x +=x_speed;
                        if((direction == null) || (direction  ==""))
         public void run()
              while(true)
                        movement();
                   if((direction == null) || (direction  ==""))
                   try
                        Thread.sleep(20);
                   catch(InterruptedException e)
    }

  • Slight delay on playback

    I am an aerobics instructor. Imported an aerobics cd into ITUNES where perfect 8 count measures are uninterrupted between songs. But when I playback using IPOD mini 1.4.1. there is a slight delay between songs. Playback is correct in ITUNES

    No, that's the usual latency we all deal with.
    Hook earphones or speakers to your Playback monitor/TV and the sound will sync to that monitor provided firewire out is active.
    Al

  • Why slight delay immediately after launch?

    Ever since I upgraded to Aperture 3.5.1 (from 3.4.5) and to Mavericks 10.9.2 (from Mountain Lion 10.8.5), I've noticed a slight (3-5) second delay upon launch in Projects View: the key photos associated with each project are a little blurry and only become sharp after the delay is over.
    Any idea as to what could be causing this delay?

    Sorry to repeat myself, but try OnyX "automation" followed by a reboot, it might be a corrupt ds_store file or something else.
    At least the "do it all" cocktail of OnyX may catch the problem.
    http://www.apple.com/downloads/macosx/systemdiskutilities/onyx.html
    If you still have a problem after that, we can start looking at other issues.

  • Is there a way to put a slight delay into hot corner activation?

    I have my hot corners set up for Spaces, Expose, DashBoard etc. I find it pretty frustrating that I momentarily invoke a hot corner action every time I go for the Apple menu, or the trash, or something on the far left side of my over-populated dock. It's especially annoying when DashBoard kicks in doing this. I assume Apple made a user selectable delay on spring loaded folders to avert similar frustrations.
    Is there some 'defaults write com.apple.blah...' command that fixes this?

    I don't know of a delay function, but you can add a modifier key to the activation.
    In the System Preferences, while you are setting up that corner for activation, press the modifier key (e.g., shift) then select the function (e.g., spaces). To use it, you'd have to have the modifier key pressed BEFORE you move the mouse to that corner for activation to work.

  • Why is there a "slight delay" after start up??

    Hello all. Office PowerMac Quad 2.5, latest OS X.
    The Starting Up process (Blue Bar) is really fast, but after that when it comes to the Desktop, where the Top Menu Bar, Clock etc would start to appear, there will be this "clean page of a Desktop" before everything starts to appear in place, this can take a while.
    I did not use a stopwatch or anything, but that process is definitely "much slower" than my PB 12" and my home iMac G5, both of them after starting up, the Desktop "items" would almost sequentially starts to appear (in place), no much delay.
    I would also like to point out a while ago, I thought I had some problems with my G5 that I trashed away the entire Cache folders found in the main Library and the other User's folder, I think.
    Thanks and cheers

    Sorry to repeat myself, but try OnyX "automation" followed by a reboot, it might be a corrupt ds_store file or something else.
    At least the "do it all" cocktail of OnyX may catch the problem.
    http://www.apple.com/downloads/macosx/systemdiskutilities/onyx.html
    If you still have a problem after that, we can start looking at other issues.

  • First keystroke after idle has a slight delay

    So when I don't touch the keyboard or trackpad for about 5 seconds the first keystroke I make is delayed for about .5 secs which is annoying when recording in Ableton with the MacBook keyboard or when gaming. After the initial key press everything works fine until I don't touch the machine for 5 seconds again.
    I'm on the 2012 i7 quad core MacBook so performance isn't the issue. I'm guessing this is some power management thing?

    Hi! I have a similar trouble on my Macbook Air mid 2011! The first keystroke is ignored (as if my keyboad has fallen asleep)... Any ideas?

  • I find there is a slight delay between my macbook speakers and external speakers connected via Airport Express.  Is there a way to rectify this?  Thanks!

    Music plays out of sync between my computer speakers and externally connected throught Airport Express speakers.

    Unfortunately, I don't have either a Slingbox or iHome speakers so I won't be able to reproduce any of the issues you are having. With the fact that you live in large apartment complex would still lead me to believe that Wi-Fi interference may be the reason that you are having streaming issues.
    I suggest you perform a simple site survey, using utilities like iStumbler, or AirRadar to determine potential areas of interference, and then, try to either eliminate or significantly reduce them where possible.

  • Recommended SAP user exits

    hi experts,
    in our project we are not incorporating BADI technology for extractor enhancements due to known performance issues and now its decided that we will incorporate a simple ABAP technique using PERFORM ststement that will allow a program to dynamically called based on data source name.
    now question is that:
    1) what type of USEREXIT is recommended by SAP in such a problem explained above.
    2)Is there any DATASOURCE or FUNCTION MODULE whose Data source name character exceeds 30 chars.
    please ans me in terms of:
               1) performance 2) memory and complexity.
    thank you very much.

    Hi Check the links below :
    http://knol.google.com/k/alfonzo-vega/sap-bi-global-report-variable-user-exit/2uo5n5fokb0ac/4#
    http://it.toolbox.com/wiki/index.php/SAP_BI_Global_Report_Variable_user_exit_modularization
    But the above links talks about Query level  user exit modularization.
    List of User Exits in SAP R/3 Enterprise 4.7:
    http://www.erpgenie.com/abap/1395-list-of-user-exits-in-sap-r3-enterprise-47
    Regards
    Ram.
    Edited by: Ramakanth Deepak Gandepalli on Dec 18, 2009 10:59 AM

  • Using Multiple Speakers AppleTV has slight lag or delay to audio

    Hello all!
    I recently purchased an Apple TV and have updated it to the latest versions as is all my software on my mac. For the last year I have used AirPort Express for streaming to my receiver across the room using a standard 1/8" to RCA stereo connection. When played on my computer at the same time it creates a nice room filling sound.
    However, I tried using the Apple TV as the remote speaker instead of the AirPort Express since I have it hooked up with the optical cable instead for movies and what not obviously. However, there is a very slight delay when using the AppleTV as a remote speaker giving a slight reverb effect to the music playback.
    I am going to test a regular analog audio out from the AppleTV later tonight in case it my be a signal processing issue with my receiver (Yamaha HTR-5500). However if anyone has any ideas in the interim, they would be appreciated. Thank you so much in advance!

    Thanks for the quick reply.
    Both the Airport Express and the AppleTV go to the same receiver and therefore go to the same 5.1 speaker set up. It is either the Computer & AirPort Express or Computer & AppleTV going at the same time. I don't use all 3 out at the same time since that would be pointless.
    Here is the basic hardware/network setup:
    - Ethernet connection from wall goes into AirPort Express for network dedicated for my upstairs man cave
    - Wireless connection feeds my iMac which in turn feeds the audio signal for AirTunes back to the AirPort Express
    - The Audio from the AirPort express goes directly into my receiver.
    - The AppleTV is wirelessly connected to the network as well.
    I am aware of the mini-tos link on the AirPort Express but the way I have it set up it is also is the wireless router for my office and therefore is plugged directly into to the wall and the extra adapter is just a bit too much weight on it so i stuck with the basic stereo out since I only use it for music and anything in ProLogic cam be through a regular stereo signal if need be.
    But yeah, I am going to try the analog out on the AppleTV tonight and whatever my results are I will post them here. Thanks so much!
    Message was edited by: J.C. Richardson

  • How can I add a delay to sync iTunes playback with my Sonos system

    I have a Sonos multi-room audio system which accesses all my music from a drive on my Airport Extreme base station. These music files are also accessed through iTunes on my Macs.
    When I'm at my Macs, I prefer to use iTunes to play my music, so I have an Airport Express which is used as a line-in source for the Sonos system. Using this, I can play my music on a Mac and also have it play through all the other speakers on the Sonos system.
    The only drawback is, the Sonos system introduces a slight delay in order to sync the different players, which puts it out of sync with iTunes.
    Is there a plug-in or similar that would allow me to introduce a small delay in the playback from iTunes without affecting the feed to the Airport Express?
    Thanks in advance.

    iOS: Device not recognized in iTunes for OS X - Apple Support
    iPhone, iPad, or iPod touch not recognized in iTunes for Windows - Apple Support

  • OS X Delay over HDMI rougted through Xbox One (no delay using Windows)

    I have my Mac Mini (late 2012, OS X 10.8.5) connected via HDMI to my Xbox One, which is connected to my tv via HDMI. I have been experience a very annoying lag, especially noticeable when using my trackpad. There is a noticeable delay between my trackpad input and the movement of the cursor on my tv. At first, I thought this was due to the signal being routed through the Xbox, considering the fact that I never experienced any delay prior to routing through the Xbox One. I just assumed the Xbox was causing the slight delay. However, I have a Windows partition which I hardly ever use. Today, I booted into Windows for the first time since I've been routing through the Xbox. To my surprise, there was no delay whatsoever. My cursor moved perfectly in time with my trackpad input. Now that I've booted back into OS X, I'm experiencing the delay again. The Xbox does seem to be introducing the problem, as the delay is gone when I connect my Mac Mini directly to my tv, bypassing the Xbox. Why would there be a delay introduced to OS X when there is absolutely no delay on Windows 7? Is there something I can do to fix this? Is there some sort of preference that I can change in OS X to reduce this delay? I know the Xbox is introducing the problem, but it doesn't really seem to be the cause, and I can't help but think that it can be fixed since the Xbox isn't causing the problem with Windows running on the same computer.
    I know that I could just bypass the Xbox, but I don't want to do that. I'm aware that this would fix the probem, but it would be very inconvenient. Also, that doesn't really solve the problem, it just ignores it. Whatever the cause of the delay, it appears to be unique to OS X, not caused solely by the Xbox.

    try another smtp relay service...
    in either case, you may want to setup an SPF record for your domain which specifies the relay service is authorized to send mail for your domain.
    Jeff

  • RMBP, Chrome, Youtube: Video delays when in full screen

    Hi all,
    I have a retina Macbook Pro running Mac OS X 10.8.2, Chrome 25.0.1364.99. When I watch youtube videos there is normally no lag. Once I switch into full screen mode, there's a slight delay where instead of the video the screen will show a blank white screen before switching to the video.
    This results in a slight 0.5-1s lag of the video behind the audio.
    Opening the same video on Firefox and going to full screen doesn't result in this blank white screen and does not result in video lagging behind audio.
    Any suggestions?
    Thanks in advance.

    Thank you,
    it also worked for me
    simonsglcfc wrote:
    Had the exact same problem the past couple of days, was really frustrating as it was making videos play delayed in full screen and I tried searching for it everywhere but couldn't find any solutions.
    Anyway, what I did has fixed it as a temporary workaround:
    1. In Chrome, type chrome://plugins in the address bar
    2. Click top right to expand +Details
    3. Navigate to:
    Adobe Flash Player (2 files) - Version: 11.6.602.171
    Shockwave Flash 11.6 r602
    Name:
    Shockwave Flash
    Description:
    Shockwave Flash 11.6 r602
    Version:
    11.6.602.171
    Location:
    /Applications/Google Chrome.app/Contents/Versions/25.0.1364.99/Google Chrome Framework.framework/Internet Plug-Ins/PepperFlash/PepperFlashPlayer.plugin
    Type:
    PPAPI (out-of-process)
    Disable
    MIME types:
    MIME type
    Description
    File extensions
    application/x-shockwave-flash
    Shockwave Flash
    .swf
    application/futuresplash
    FutureSplash Player
    .spl
    Name:
    Shockwave Flash
    Description:
    Shockwave Flash 11.6 r602
    Version:
    11.6.602.171
    Location:
    /Library/Internet Plug-Ins/Flash Player.plugin
    Type:
    NPAPI
    Disable
    MIME types:
    MIME type
    Description
    File extensions
    application/x-shockwave-flash
    Shockwave Flash
    .swf
    application/futuresplash
    FutureSplash Player
    .spl
    You need to disable the first of the two entries...which I have highlighted in Bold above.
    Hope that helps.

  • Slight out of sync audio on export

    When I export a sequence with the setting:  "Match Sequence Settings"   - Everything plays/sounds fine.
    But when I use any other codec (H.264, etc) to export, the audio is always slightly delayed.  It's not much, but you can definitely tell.
    Is there something I'm not doing right?  I can't believe that this is just an inherent issue with Encoder's compression.
    By the way, I've tried variable/constant bitrate, changing the audio precedence, sample rate.  Nothing makes a difference.  Anytime I compress, the audio is delayed.
    Has anyone else had this problem?

    Hi - I'm still having some sync issues.
    1)  No, I am pairing independent audio and video sources.  Specifically, I'm taking interview audio and syncing it using Pluraleyes. 
    2)  No effects
    3)  No, it seems to be okay with very short (10 seconds) clips.
    4)  No, I haven't tried that.  (would that be in Media Encoder Preferences?)
    5)  Windows media, VLC
    6)  The sync issue did not seem to get worse as the video played on
    7)  I will send you a direct link (video hasn't been "released" yet)
    I will also say, when I took the H.264 export and placed it back into my Premiere timeline, the audio was 1 or 2 frames off.  Again, not incredibly noticeable, but once I shifted it forward in time, the audio and video lined up great.
    Thanks again for the help. 

Maybe you are looking for

  • How do I make Indesign CS3 the default rather than Indesign CS4?

    Indesign 6.0.2 is driving me crazy, that spinning ball spins for every character I type.  It takes 5 minutes to write one word.  I want to use CS3 instead, which works great with dynamic spelling, which I have turned off in CS4, but don't want to dum

  • Itunes,on XP,keeps freezing

    latest Itunes,on XP,keeps freezing when try burn playlist, was working fine week ago,any ideas?

  • -50 error when downloading song

    I have been able to download songs in the past no problem on this computer. My daughter downloaded a song and got a -50 error after a few seconds. She pushed the retry button and it seemed to download from where it left off to completion. However, on

  • Want to check time take by each Individual statment

    Hi SAP gurus, I want to know is there any utility by which i will know how much time it is taking for execution of <b>each individual statement</b> (not only select statement) in ABAP.

  • CPA Cache Monitoring is not working in PCK

    Hi all, i had done a scenario Mail to File in PCK .When i checked the flow of messages in Message Monitoring . Receiver Party and Receiver Services are missing. When i try to refresh CPA cache using URL: http://<host>:<port>/CPACache/refresh?mode=del