Please Help me in my project

i am doing our capstone project, and i was stuck in thinking what will the title of my project, i don't even know what will be the focus of my project, i mean the topic... please help my guys any help will do and suggestions ... please

Well, your question has nothing whatsoever to do with Oracle.
(I had to look up "Capstone project" http://edglossary.org/capstone-project/)
If you can't imagine what your project will be or a good title for it, maybe you should repeat your years of school

Similar Messages

  • Please help i started my project video format 720HD resolution 12x720 rate 25p at last when i finish and burn to dvd the edges are cut off any one help please i am really in trouble

    please help i started my project with  video format 720HD, resolution 12x720, rate 25p.  at last when i finish and burn to dvd the edges are cut off and my logo cut off the screeen aswell any one help please i am really in trouble. thanks

    Sorry, but I don't know anything about that app.
    I did go to their Web site and I see they have a support link. Perhaps you can get help there or in their forum.
    If you are OK with a DVD with a basic menu, you could try the Share>DVD option in FCP.
    Good luck.
    Russ

  • Please help!! Semester Project due in 3 days...........

    I have a connectivity problem where I have to select a number of vertices(N) and
    connect them with random non repeating edges(M). I have to test with cases
    M=.1xNxN, M=.2xNxN,.............M= .9xNxN. Well, it works up to M=.2xNxN when using 10 edges but I get a Stackoverflow error with more than M=.2xNxN.
    Please Please help. I have two classes
    import java.util.Random;import java.util.Scanner;
    * Write a description of class QuickUnion here.
    * @author (your name)
    * @version (a version number or a date)
    public class Union
        private Random generator;
        int E1,E2; int count = 0; int n = 50000;
         int a[] = new int [n];
        int b[] = new int [n];
         //Actual random number generator
         public int Generator(int gen){
             generator = new Random();      
            return generator.nextInt(gen);}
        //Method uses Random Generator to get E1,E2(or p,q) values
        public void Generator(int e1, int e2, int N){
            E1=Generator(N-1);
            E2=Generator(N-1);
            while(E1==E2){E2=Generator(N);}
            check(E1,E2,N);}
        //Method checks both array a and b at the same time for p,q or q,p values already generated
        public void check(int e1, int e2, int N){
            for(int i=0; i<a.length; i++){
                if(((a==e1) && (b[i]==e2)) || ((b[i]==e1) && (a[i]==e2))){
    Generator(0,0,N); }}
    a[count]=e1; b[count]=e2; count++;
    //Methods to view a and b arrays
    public void arrayShow(){
    for(int k=0; k<a.length; k++){System.out.print(a[k] + " ");
    public void arrayShow2(){
    for(int k=0; k<a.length; k++){System.out.print(b[k] + " ");
    import java.util.*; import java.util.Scanner;
    * QUICKFIND QUICKFIND QUICKFIND
    * @author Degrion Hill
    * @version 3160 Project Program
    public class Client2
    {public static void main(String[] args)
    int answer =0;
    int N,E1,E2,counter= 0;
    Scanner in = new Scanner(System.in);
    // User Input for amount of Vertices
    System.out.println("Enter the number of Vertices");
    N=in.nextInt();
    //Populating Array
    int id[] = new int [N];
    for(int i = 0; i < N; i++){id[i]=i;}
    //User input for amount of edges
    System.out.println("Enter the number of edges");
    int edges = in.nextInt();
    Union test = new Union();
    //Random Edge Generator
    while(counter<edges){
    test.Generator(0,0,N);
    //Assignment of Random number to p,q values to make edge
    int p = test.E1, q = test.E2;
    int t = id[p];
    //Quick Find Algorithm
    System.out.println("p=" + p + " " + "q=" + q); counter++;
    for(int k =0; k < N; k++){
    System.out.print(" " + id[k]);}
    System.out.print("\n");
    if (t==id[q])continue;
    for(int i = 0; i<N; i++)
    if(id[i]==t) id[i]=id[q];
    System.out.println("SORTED");
    //Sort the array before Counting groups(Using Bubble Sort)
    Sort test2 = new Sort();
    test2.bubble(id,0,id.length-1);
    for(int m =0; m < N; m++){
    System.out.print(" " + id[m]);}
    //Count changes in the array(groups)
    int y=0; int group=0;
    for(int x=0; x<N; x++){
    if(x==0){id[y]=id[x];}
    if(id[x] != id[y]){id[y]=id[x];group++;}}
    System.out.println();
    System.out.println(group+1 + " Group/s");
    System.out.print("");
    System.out.println("Run Again? [1 for YES, 2 for NO]");
    answer=in.nextInt();
    //(Testing) Shows a and b arrays to see if ALL cases for p,q are there
    if(answer==1){main(args);} test.arrayShow(); System.out.println(""); test.arrayShow2();

    Whithout diving into your code: StackOverFlowError occurs usually if you do a recursion and don't stop it before memory blows.

  • I have ID, use a Mac, have Yosemite 10.10.2 - have not used ID for awhile but have a project but cannot open it because I need Jave SE6 runtime and cannot download it. Do I need an upgrade? Please help I have a project

    I need to download Java Se6 runtime in order to use InDesign but cannot download it. Please help as I have a project that must get done. If I need an upgrade please let me know.

    There is a Java update for Yosemite that includes what you need.

  • Please help me, HSC major project, urgent

    Hi,
    I am doing an interactive storybook for a HSC project. I am trying to code for it and it is telling me two error messages. These are 1120: Access of undefined property. I tried to insert a screenshot but it wont let me in this question. Maybe I message individual people the screenshot ?
    How do I fix this error message ?
    here is my code:
    stop();
    Page1_btn.addEventListener(MouseEvent.CLICK,turnpage2);
    function turnpage1 (evt:MouseEvent):void {
      screen_mov.gotoAndPlay ("Page2");
      page1_btn.visible = false;
    So the pages are numbered starting at 1, 2,3 3, 4, 5, ..............................
    Screen_mov is the movie clip for the project containing all the pages/ graphics
    and page1_btn is the button for page 1
    PLEASE HELP THIS IS URGENT !

    Hi,
    I am having further troubles. In my storybook on the first page all the buttons are appearing, I do not want this. How do I code to fix that, the only button I want on the first page is "page1_btn"
    will paste my coding into here, and could you please tell me what to do to fix this ?
    page2_btn.visible= false;
    p3_first_btn.visible= false;
    page1_btn.addEventListener(MouseEvent.CLICK,turnpage2);
    function turnpage2 (evt:MouseEvent):void {
      screen_movie.gotoAndPlay ("page2");
      page1_btn.visible = false;
    page2_btn.visible= true; 
    page2_btn.addEventListener(MouseEvent.CLICK,turnpage3);
    function turnpage3 (evt:MouseEvent):void {
    screen_movie.gotoAndPlay ("page3");
    page2_btn.visible= false;
    p3_first_btn.visible= true;
    p3_first_btn.addEventListener(MouseEvent.CLICK,turnpage3a);
    function turnpage3a (evt:MouseEvent):void {
    screen_movie.gotoAndPlay ("page3a");
    p3_first_btn.visible= false;
    And, also the reason why I am setting the buttons to visible= true; at the start and visible= false; at the end is because I can only have one button for each page.
    Please help someone,
    Regards,
    Adam

  • I lock my mac book by find my iphone application and i forget pin code please help me i have project i should show my manager my project i scared to lost my job

    Please help me

    "Only Apple retail stores or Apple Authorized Service Providers can unlock computers protected by a firmware password, such as passwords set with Find My Mac."
    http://support.apple.com/kb/TS4006

  • PLEASE HELP ME FOR MY PROJECT

    Hello.
    I have my project to be done by Monday.
    I typed some code, but have no idea what to do anymore. No clue...
    The following is the project overview etc.
    Overview
    In a single source file named App.java, define an Employee class to encapsulate employee data and an App class defining an applet to maintain a collection of Employee objects.
    Employee Class
    Define a small, non-public class named Employee that encapsulates private instance variables for name (String) and pay rate (double). The class needs a single constructor to instantiate an Employee object with values received for both instance variables. It also needs minimal set() and get() methods (such as setName(), getPayRate(), etc.) that allow a class client to store and retrieve the value of each instance variable. Do not be concerned with editing the data within this class. It is used only to support the testing of your applet.
    Code this class inside your App.java source file but after the definition of the App class. Be sure to omit the specification of public in the class header (because Java only allows one public class per source file).
    App class
    This public class will define the processing of your applet. Its required features are as follows:
    Input Components:
    Name (a TextField). For entering or displaying an employee's name.
    Pay rate (a TextField). For entering or displaying an employee's pay rate. When used for input, the value must be edited (see the processing notes below). If the value is invalid, display an appropriate error message.
    First (a button). When clicked, triggers the display of the name and pay rate of the first employee in the collection. If the collection is empty, display an appropriate message.
    Next (a button). When clicked, triggers the display of the name and pay rate of the next employee in the collection. If there are no more objects in the collection, display an appropriate message.
    Find (a button). When clicked, triggers the display of the name and pay rate of the employee whose name currently appears in the name text field. If the requested employee doesn't exist, display an appropriate error message.
    Add (a button). When clicked, triggers the construction of an Employee object having the currently displayed name and pay rate and the addition of the object to the collection. Display appropriate error messages if input data is missing or incorrect or if the employee already exists within the collection.
    Delete (a button). When clicked, triggers the deletion of the Employee object having the currently displayed name from the collection. If the specified employee doesn't exist, display an appropriate error message.
    Output components:
    Number of employees (a Label). For displaying how many Employee objects are currently within the collection. This must be changed as employees are added or deleted from the collection.
    Message area (a TextArea). For displaying messages.
    Processing notes:
    The applet must get the value of an HTML parameter named "maxRate". Convert the associated value string to a double and use it to edit a pay rate entered by the user. It represents the maximum allowable pay rate for an employee. If an attempt is made to enter a larger pay rate, display an appropriate error message.
    Use GridBagLayout for the applet's components. The arrangement of components is up to you.
    Use a SortedMap implemented as a TreeMap for the collection. It is to be maintained in ascending order based upon employee name.
    When the user moves the mouse to touch one of the buttons, its color or font should change. When the mouse exits the button, its color or font should return to normal.
    The following is the code I have so far
    <CODE>
    import java.util.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    public class App extends Applet implements ActionListener, MouseListener,
    MouseMotionListener{
    // Instance variables for the employees' name and pay rate.
    private String name;
    private double payRate;
    // Instance variables for referencing the Employee name heading and its text field.
    private Label nameLabel;
    private TextField nameField;
    // Instance variables for referencing the pay rate heading and its text field.
    private Label payRateLabel;
    private TextField payRateField;
    // Instance variables for referencing the number of employees' heading and
    // its text field.
    private Label empNumLabel;
    private TextField empNumField;
    // Instance variables for referencing the "First", "Next", "Find", "Add", and
    // "Delete" button.
    private Button firstBtn;
    private Button nextBtn;
    private Button findBtn;
    private Button addBtn;
    private Button deleteBtn;
    // Instance variables for referencing the message area.
    private TextArea msg;
    public static void main(String[] args){
    SortedMap m = new TreeMap();
    // This method defines initial (one-time) applet processing.
    public void init(){
    // Set the size and background/foreground color for the applet window.
    setSize(250, 350);
    setBackground(Color.lightGray);
    setForeground(Color.green);
    // Choose GridBagLayout and create a GridBagConstraints object for use in
    // laying out components to be added to hte container.
    setLayout(new GridBagLayout());
    GridBagConstraints c = new GridBagConstraints();
    // Initialize constraints to stretch small components to fill their entire
    // display area, give all rows equal height when distributing extra vertical
    // space, and give all columns equal width when distributing extra horizontal
    // space.
    c.fill=GridBagConstraints.BOTH;
    c.anchor = GridBagConstrainst.CENTER;
    c.weightx = 1;
    c.weighty = 1;
    // Build Employee Name label and add it to the top-left cell in the layout.
    nameLabel = new Label ("Employee Name");
    c.gridx = 0;
    c.gridy = 0;
    c.gridwidth = 1;
    c.gridheight = 1;
    add (nameLabel, c);
    // Build Employee Name text field and add it to x=1, y=0 in the layout.
    nameField = new TextField (30);
    c.gridx = 1;
    c.gridy = 0;
    c.gridwidth = 1;
    // or c.gridwidth = GridBagConstraints.REMAINDER; //Last on row.
    c.gridheight = 1;
    add (nameField, c);
    // Build Pay Rate label and add it to the second row, first column in the layout.
    payRateLabel = new Label ("Pay Rate");
    c.gridx = 0;
    c.gridy = 1;
    c.gridwidth = 1;
    c.gridheight = 1;
    add (payRateLabel, c);
    // Build Pay Rate text field and add it to x=1, y=1 in the layout.
    payRateField = new TextField (8);
    c.gridx = 1;
    c.gridy = 1;
    c.gridwidth = 1;
    // or c.gridwidth = GridBagConstraints.REMAINDER; //Last on row.
    c.gridheight = 1;
    add (payRateField, c);
    // Build number of employee label and add it to x=1, y=2 in the layout.
    empNumLabel = new Label ("Number of Employees");
    c.gridx = 1;
    c.gridy = 2;
    c.gridwidth = 1;
    c.gridheight = 1;
    add(empNumLabel, c);
    // Build number of employee text field and add it to x=2, y=2 in the layout.
    empNumField = new TextField (5);
    c.gridx = 2;
    c.gridy = 2;
    c.gridwidth = 1;
    c.gridheight = 1;
    add(empNumField, c);
    // Create the "ADD" button and add it to the x=1, y=3 in the layout.
    addBtn = new Button ("Add");
    addBtn.setBackground(Color.red);
    addBtn.setForeground(Color.black);
    addBtn.addActionListener(
    new ActionListener() {
    public void actionPerformed (ActionEvent e){
    c.gridx = 1;
    c.gridy = 3;
    c.gridwidth = 1;
    c.gridheight = 1;
    add(addBtn, c);
    // Create the "DELETE" button and add it to the x=2, y=3 in the layout.
    deleteBtn = new Button ("Delete");
    deleteBtn.setBackground(Color.red);
    deleteBtn.setForeground(Color.black);
    deleteBtn.addActionListener(
    new ActionListener() {
    public void actionPerformed (ActionEvent e){
    c.gridx = 2;
    c.gridy = 3;
    c.gridwidth = 1;
    c.gridheight = 1;
    add(deleteBtn, c);
    // Create the "FIRST" button and add it to the x=0, y=4 in the layout.
    firstBtn = new Button ("First");
    firstBtn.setBackground(Color.red);
    firstBtn.setForeground(Color.black);
    firstBtn.addActionListener(
    new ActionListener() {
    public void actionPerformed (ActionEvent e){
    c.gridx = 0;
    c.gridy = 4;
    c.gridwidth = 1;
    c.gridheight = 1;
    add(firstBtn, c);
    // Create the "NEXT" button and add it to the x=1, y=4 in the layout.
    nextBtn = new Button ("Next");
    nextBtn.setBackground(Color.red);
    nextBtn.setForeground(Color.black);
    nextBtn.addActionListener(
    new ActionListener() {
    public void actionPerformed (ActionEvent e){
    c.gridx = 1;
    c.gridy = 4;
    c.gridwidth = 1;
    c.gridheight = 1;
    add(nextBtn, c);
    // Create the "FIND" button and add it to the x=2, y=4 in the layout.
    findBtn = new Button ("Find");
    findBtn.setBackground(Color.red);
    findBtn.setForeground(Color.black);
    findBtn.addActionListener(
    new ActionListener() {
    public void actionPerformed (ActionEvent e){
    c.gridx = 2;
    c.gridy = 4;
    c.gridwidth = 1;
    c.gridheight = 1;
    add(findBtn, c);
    // Create message are and add it to x=0, y=5 in the layout.
    msg = new TextArea (5, 20);
    c.gridx = 0;
    c.gridy = 5;
    c.gridwidth = GridBagConstraints.REMAINDER; // Last on row
    c.gridheight = 1;
    add(msg, c);
    //???????????????????????????????????????????????/////////////////////////???????????????????????????????????????????????///////////////////////public void setName (String newName){
    name = newName;
    public void setPayRate (double newPayRate){
    payRate = newPayRate;
    public void getName () {
    return name;
    public void getPayRate() {
    return payRate;
    //Change color of Button
    public void mouseEntered (MouseEvent e){
    Color oldBackground = addBtn.getBackground();
    addBtn.setBackground(addBtn.getForeground());
    addBtn.setForeground(oldBackground);
    public void mouseExited (MouseEvent e){
    Color oldBackground = addBtn.getBackground();
    addBtn.setBackground(addBtn.getForeground());
    addBtn.setForeground(oldBackground);
    </CODE>
    I don't know where to put Employee class.
    I don't know what to do anymore...
    I'm soooooooooooooo stuck and just want to cry...
    Please give me any suggestion/help so that I could move on.
    Thank you so much in advance

    Step 1 (analying your specs).
    In a single source file named App.java, define an Employee class to encapsulate employee data and an App class defining an applet to maintain a collection of Employee objects.
    You are given lots of usefule information.
    Name of the primary (source) class to create App
    Primary class (source) will include an employee class.
    The need to maintain a collection (list) of employee classes.
    first thing i do is
    public class App {
        Vector myEmps = new Vector();// will hold the employee objects;
        Employee emp;      // single instance of an employee object
        App() {
           // this is how we add employee objects to the list
           // in this case the list is a vector.
           myEmps.add(new Employee("sean",1,80000.50));
           myEmps.add(new Employee("davey",1,70000.25));
           myEmps.add(new Employee("harry",1,90000.15));
    class Employee {
    // define employee data as variables
       String name;
       int ID;
       double payRate;
          Employee(String n, int ID, double pr) {
            this.name = n;
            this.ID = ID;
            this.payRate = pr;
         public void setName(String n) {  // can set/change emps name
            name = n;
         public void setPayRate(double pr) {  // can set/change payRate
              payRate = pr;
    }this is just a start

  • Please help me about samples project with COM UI DI

    I run sample project
    C:\Program Files\SAP\SAP Business One SDK\Samples\COM UI DI\VB.NET\AddColumn
    but i can't test becoz i don't know screen b1 matching with oForm.TypeEx = "65270"
    Please tell me about screen b1 for test this code

    I don't know the answer right away, but:
    - take a look into the FAQ in the Wiki (https://www.sdn.sap.com/irj/sdn/wiki?path=/display//b1/faq)
    - there go to "UI Forms"
    ...and find these links (mid-term we want of course more information directly available in the Wiki...):
    List of form IDs:
    /people/lutz.morrien3/blog/2004/10/01/all-sap-business-one-formtypes-at-one-look
    Update: https://weblogs.sdn.sap.com/cs/user/view/cs_msg/14059
    The hints in the update will help you to get the title of the form - and thus will give you a hint where to look for the form. For your convenience I have copied the "relevant code here:
    Dim Info As FormInfo = Application.ResourceData.GetFormInfo("65270")
    FormInfo.Title
    ...gives you the title of the form

  • Please help me with my project

    I am required to do a proj in java.i am not finding
    a good topic. But i liked the topic"html from java"
    i dont have a clue as to h ow to do it.
    please could you specify the detailed algorithm
    for implementing it.i will be grateful
    also if you know some other better topic ,pls
    could you tell me abt it along with the algorithm
    plese help
    belur

    So in a way you'd like us to do your project for you?
    Wouldn't that make it our project?

  • Please help me with my project- I know nothing about PS!!!!

    I want to major in Photography and have to take a Digital Imaging class. The first project is a Mr. Potato Head body with all the parts (eyes, mouth, hands, etc.) scattered around it. I have to create layers I guess to put the body parts in but have NO idea how to do it! I know how to create a new layer, but I don't know how to put the body parts in the layer or anything! The only thing I've done with Photoshop prior to this is editing photos but have no idea how to do anything else and have always been confused with the layers in Photoshop and never really understood the feature. (This is an online class BTW).
    Also, I asked this somewhere else and the person told me that when I selected the part of the image I wanted to put in the new layer, I can select the copy via layer and a new layer is automatically created. However, I can't seem to access that layer when I click on it and it doesn't appear to be locked. Why is this? (The answer is probably something obvious but I'm so new at Photoshop I know pretty much nothing about it!)
    If anyone can help me, I would reeeally appreciate it!!!!

    Hi,
    Below are some tutorial link explaining layers.
    http://www.photoshopessentials.com/basics/layer-shortcuts/
    http://www.tutorial9.net/photoshop/working-with-layers-in-photoshop/
    For extracting a perticular part you have to create selection for the part and Press Ctrl+J to copy paste in new layer.
    Hope this helps,
    Cheers,
    Maneet Puri,
    LeXolution IT Services

  • Please help with my my project mac

    hi, im buying a B&W G3 for use with a legacy soundcard only, and wish to know a few details about it that i wasnt able to find in a search. simple stuff really.
    whats the max ram and what spec? more ram will obviously make for a more pleasurable computing experience?
    whats the latest os9 version that it will run? does this model require a special set of disks like some later macs?
    im usually a pc guy, what is the equivalent speed in your opinion? what sort of performance should i expect?
    what is the video output format? will it work on a kvm with some other xp based systems?
    is there any way to get this whole idea into a smaller box? any mod sites? id love to put it into a 1 or 2 unit rack. i know that sounds like a project for sure, but im curious whats possible.
    thanks for your help!

    The revision 1 Blue & White G3 has a tragic flaw -- when used with a Hard Drive substantially faster or larger than its original 4, 6, or 8 GB drive, its IDE/DMA Controller falls apart and produces random data corruption. This results in unrepeatable, seemingly random crashes, freezes, and data corruption problems. The "litmus test" is in this article, under "3. Revised IDE Controller Chip":
    http://www.xlr8yourmac.com/G3-ZONE/yosemite/newfeatures.html
    All Rev 1 machines have a solid, three-drive shelf that must be completely removed to install additional drives. They support only one IDE drive.
    Most later Rev 2 machines use the individual flat metal sleds common through most of the rest of the G4 desktop cases. (I am not sure what is in a MDD G4). They feature a two-drive IDE cable and a "stacking bracket" for two drives in the rearmost drive position. This article show the "stacking bracket":
    58193- Power Macintosh G3 (Blue and White): Additional Hard Drive Installation Options
    Message was edited by: Grant Bennet-Alder

  • Please help me export my project?!!

    Hi,
    After days of tearing my hair out I've still not been able to resolve my issue.
    I want to burn a 2 hour and 20 min 16:9 PAl video onto a 4.7GB/120 min DVD-R.
    I've exported the file in quicktime and directly from FCP 4 into Compressor. I've then tried virtually all the settings to get the Video/Audio to fit onto my DVD.
    I've resorted to MPEG-1 as it compresses small enough (with bad quality).
    When I import this into DVD Studio Pro it says that there is a build error every time.
    Does anyone know a proved method of achieving the above. It's seems fairly simple but I have a deadline and I just can't get it onto DVD.
    Any help would be appreciated,
    Thanks,
    Pete.

    Hi Pete
    you need mpeg2
    You also have to do the sound seperately
    http://discussions.apple.com/thread.jspa?threadID=1079956&tstart=0
    Niel

  • Cisco Sg500X inter vlan routing - Cisco can you please help - holding up a project

    Hey guys
    I am simply trying to get inter vlan routing working on an SG500X operating in standalone mode.
    I have setup a couple of vlan interfaces on the switch which I assume are routed automatically when ip routing is enabled.
    I can ping these vlan interfaces from a pc on the appropriate VLAN  (ie - I can ping what should be the default gateway and the gateway and IP are setup correctly on the pc's in question but no traffic will pass from pc to pc.
    Have probably missed something obvious - any help would be greatly appreciated, config below:
    skelta-dist#sh run
    config-file-header
    skelta-dist
    v1.3.0.62 / R750_NIK_1_3_647_260
    CLI v1.0
    set system queues-mode 4
    file SSD indicator encrypted
    ssd-control-start
    ssd config
    ssd file passphrase control unrestricted
    no ssd file integrity control
    ssd-control-end cb0a3fdb1f3a1af4e4430033719968c0
    vlan database
    vlan 2000,3000,4092-4093
    exit
    voice vlan oui-table add 0001e3 Siemens_AG_phone________
    voice vlan oui-table add 00036b Cisco_phone_____________
    voice vlan oui-table add 00096e Avaya___________________
    voice vlan oui-table add 000fe2 H3C_Aolynk______________
    voice vlan oui-table add 0060b9 Philips_and_NEC_AG_phone
    voice vlan oui-table add 00d01e Pingtel_phone___________
    voice vlan oui-table add 00e075 Polycom/Veritel_phone___
    voice vlan oui-table add 00e0bb 3Com_phone______________
    bonjour interface range vlan 1
    hostname skelta-dist
    line console
    exec-timeout 0
    exit
    line ssh
    exec-timeout 0
    exit
    line telnet
    exec-timeout 0
    exit
    logging console debugging
    username admin password encrypted 54f0197510fc8f980214826ad98ecc0291956ebc privilege 15
    username cisco password encrypted 007253f1436da456a0880a66bbcc7c1b4a3af284 privilege 15
    username readonly password encrypted 9a27718297218c3757c365d357d13f49d0fa3065
    snmp-server location "Skelta comms room"
    snmp-server contact [email protected]
    ip http timeout-policy 0
    interface vlan 1
     ip address 1.1.1.1 255.255.255.0
     no ip address dhcp
    interface vlan 2000
     name backup
     ip address 192.168.50.241 255.255.255.0
    interface vlan 3000
     name user
     ip address 10.129.53.241 255.255.254.0
    interface vlan 4092
     name server
     ip address 10.129.38.241 255.255.255.0
    interface vlan 4093
     ip address 10.129.100.241 255.255.255.0
    interface gigabitethernet1/1
     switchport mode access
     switchport access vlan 3000
    interface gigabitethernet1/2
     switchport mode access
     switchport access vlan 3000
    interface gigabitethernet1/3
     switchport mode access
     switchport access vlan 3000
    interface gigabitethernet1/4
     switchport mode access
     switchport access vlan 3000
    interface gigabitethernet1/5
     switchport mode access
     switchport access vlan 3000
    interface gigabitethernet1/6
     switchport mode access
     switchport access vlan 3000
    interface gigabitethernet1/7
     switchport mode access
     switchport access vlan 4092
    interface gigabitethernet1/8
     switchport mode access
     switchport access vlan 4092
    interface gigabitethernet1/9
     switchport mode access
     switchport access vlan 4092
    interface gigabitethernet1/10
     switchport mode access
     switchport access vlan 4092
    interface gigabitethernet1/11
     switchport mode access
     switchport access vlan 4092
    interface gigabitethernet1/12
     switchport mode access
     switchport access vlan 4092
    interface gigabitethernet1/13
     switchport mode access
     switchport access vlan 4093
    interface gigabitethernet1/14
     switchport mode access
     switchport access vlan 4093
    interface gigabitethernet1/15
     switchport mode access
     switchport access vlan 4093
    interface gigabitethernet1/16
     switchport mode access
     switchport access vlan 4093
    interface gigabitethernet1/17
     switchport mode access
     switchport access vlan 4093
    interface gigabitethernet1/18
     switchport mode access
     switchport access vlan 4093
    interface gigabitethernet1/19
     switchport mode access
     switchport access vlan 2000
    interface gigabitethernet1/20
     switchport mode access
     switchport access vlan 2000
    interface gigabitethernet1/21
     switchport mode access
     switchport access vlan 2000
    interface gigabitethernet1/22
     switchport mode access
     switchport access vlan 2000
    interface gigabitethernet1/23
     switchport mode access
     switchport access vlan 2000
    interface gigabitethernet1/24
     switchport mode access
     switchport access vlan 2000
    interface tengigabitethernet1/1
     channel-group 1 mode on
    interface tengigabitethernet1/2
     channel-group 1 mode on
    exit
    macro auto disabled
    macro auto processing type host enabled
    macro auto processing type ip_phone disabled
    macro auto processing type ip_phone_desktop disabled
    macro auto processing type router enabled
    macro auto processing type ap disabled
    ip helper-address all 0.0.0.0 7
    skelta-dist#sh ip route
    Maximum Parallel Paths: 1 (1 after reset)
    IP Forwarding: enabled
    Codes: > - best, C - connected, S - static,
           R - RIP
    C   1.1.1.0/24 is directly connected, vlan 1
    C   10.129.38.0/24 is directly connected, vlan 4092
    C   10.129.52.0/23 is directly connected, vlan 3000
    skelta-dist#sh arp
    Total number of entries: 3
      VLAN    Interface     IP address        HW address          status
    vlan 3000  gi1/4      10.129.53.1     a4:5d:36:18:12:d6   dynamic
    vlan 4092  gi1/12     10.129.38.1     04:7d:7b:5b:f1:1f   dynamic
    vlan 4092             10.129.38.2     a4:5d:36:18:12:d6   dynamic
    These are the two VLANs and above are the two ARP entries for the pc's.
    and these are the default gateways:
    skelta-dist#sh ip interface
        IP Address         I/F       Type     Directed   Precedence   Status
                                              Broadcast
    1.1.1.1/24          vlan 1    Static      disable    No         Valid
    10.129.38.241/24    vlan 4092 Static      disable    No         Valid
    10.129.53.241/23    vlan 3000 Static      disable    No         Valid
    10.129.100.241/24   vlan 4093 Static      disable    No         Valid
    192.168.50.241/24   vlan 2000 Static      disable    No         Valid

    Hi Rajeevsh
    Ip routing is turned on, the correct connected routes are in the route table, I can see the arp entries for the two pc's but the two pc's cant ping each other (windows firewall is turned off).
    I CAN ping the vlan interfaces from both pc's but the pc's cant talk to each other.
    The ports are in untagged (switchport access) and obviously in the correct vlans
    skelta-dist#sh ip route address 10.129.38.1
    Maximum Parallel Paths: 1 (1 after reset)
    IP Forwarding: enabled
    Codes: > - best, C - connected, S - static,
           R - RIP
    C   10.129.38.0/23 is directly connected, vlan 4092
    skelta-dist#sh ip route address 10.129.53.1
    Maximum Parallel Paths: 1 (1 after reset)
    IP Forwarding: enabled
    Codes: > - best, C - connected, S - static,
           R - RIP
    C   10.129.53.0/24 is directly connected, vlan 1
    skelta-dist#sh arp
    Total number of entries: 2
      VLAN    Interface     IP address        HW address          status
    vlan 1     gi1/4      10.129.53.1     a4:5d:36:18:12:d6   dynamic
    vlan 4092  gi1/12     10.129.38.1     04:7d:7b:5b:f1:1f   dynamic
    skelta-dist#sh ip interface
        IP Address         I/F      I/F Status      Type     Directed   Precedence   Status
                                    admin/oper               Broadcast
    10.129.38.241/23    vlan 4092  UP/UP         Static      disable    No         Valid
    10.129.53.241/24    vlan 1     UP/UP         Static      disable    No         Valid

  • Masked pre comp of clip not showing clip motion within the mask please help

    Hi there,
    I'm trying to create a phenakistoscope Phenakistoscope - Wikipedia, the free encyclopedia out of a motion picture of a dancer.
    I've transformed the clip of the dancer and precomposed it and then masked and animated the rotation of the pre comp in a new composition.  I then duplicated the now animated pre comp 20 times offsetting each one, a frame later than the last to create the wheel effect with trailing frames.
    The animation of the mask and offset is working fine, however the footage in the clip is not playing in the masked composition.
    please help, here is the project file. Dropbox - caropheankistope.aep
    RAW FOOTAGE SAMPLE Dropbox - carolina base_raw sample.mov
    NON WORKING COMP SAMPLE OUTPUT Dropbox - carolina base_sample.mov
    Thanks
    adam

    I'm replying to your question on my phone so I can't look at your project but I did look at your video.
    Here is what I would do to troubleshoot the project. First run a RAM preview of the pre-composed and masked wedge comp. If that plays back correctly then everything else should work unless you have applied some kind of time effect to the duplicated layers. If that doesn't work then show us a screenshot of that pre-comp with all of the properties of the movie layer revealed (Press that u key twice).
    If you have not sorted this out by the time I get back the office I will try and take a look at your project.

  • /dev/poll with libevent problem Please help me!!!

    libevent compiled fine, but not worked.
    When i run "make verify" i got reply:
    cd ./test && make verify
    Running tests:
    KQUEUE
    Skipping test
    DEVPOLL
    test-eof: [warn] ioctl: DP_POLL: Invalid argument
    FAILED
    test-weof: [warn] ioctl: DP_POLL: Invalid argument
    FAILED
    test-time: [warn] ioctl: DP_POLL: Invalid argument
    FAILED
    regress: [warn] ioctl: DP_POLL: Invalid argument
    FAILED
    POLL
    test-eof: OKAY
    test-weof: OKAY
    test-time: OKAY
    regress: OKAY
    SELECT
    test-eof: OKAY
    test-weof: OKAY
    test-time: OKAY
    regress: OKAY
    RTSIG
    Skipping test
    EPOLL
    Skipping test
    Answer on uname -a
    SunOS gamesys01 5.10 Generic_118822-02 sun4u sparc SUNW,Sun-Fire-V490
    I am trying to compile libevent v1.0, v1.0c, v1.1, v1.1a with some effect. Please help me. Oua project did not work without memcached who using libevent. How can i solve this problem?

    I am already find cure for this problem. It is here: http://forum.sun.com/thread.jspa?forumID=272&threadID=26396

Maybe you are looking for

  • How can I store and view a pdf file ?

    I have an iphone 3GS 32Gb and want to store a pdf file on my phone so that I can view it later. Email is the only way I have been able to view my pdf file, but I dont really want to do it this way. On previous phones I could save a file on the phones

  • What is the model Number for the ipod touch 5g.

    What is the Model Number for the ipod touch 5g?

  • Itunes install fails due to apple application support

    I cannot get the install of itunes to complete. at the end of the routine I get "apple application support" not found iTune helper

  • How to use wild card character in input field

    Hi I'm creating model in which the Purchase Order information need to be entered in Input Field. My requirement is search using wild char char as '*' Let say in input field  i gave PO order as 20* then it'll search for all the PO's which starts from

  • Disc ejects before completion in iDVD

    Hi, firstly I'm a little behind the times having only recently upgraded to Snow Leopard, my problem is iDVD. I have a collection of images that I am trying to burn via iDVD all goes well until the burning, the disc ejects about 8 minutes before compl