Extract first coordinate

I have a table with polygon geometries in. I want to extract the first coordinate of all the geometries. I can get them all using GETVERTICES but I only want the first one.
Any help gratefully received.
Ivan

Hi Ivan,
I use following function:
FUNCTION FNC_GET_POINT_2D (
     P_GEOM MDSYS.SDO_GEOMETRY
          ,P_POINT_NR PLS_INTEGER DEFAULT 1 -- which point?
          ) RETURN MDSYS.SDO_GEOMETRY
     IS
     lg_geom MDSYS.SDO_GEOMETRY; -- geometry
     ln_dim PLS_INTEGER; -- dimensions
     ln_p PLS_INTEGER; -- index (for array)
     px NUMBER;
     py NUMBER;     
     BEGIN
     -- Number of dimensions
     ln_dim := SUBSTR(P_GEOM.SDO_GTYPE,1,1);
-- exists the point?
     IF P_POINT_NR < 1 OR P_POINT_NR > P_GEOM.SDO_ORDINATES.COUNT()/ln_dim THEN
     RETURN NULL;
     END IF;
     -- index in the ordinate array
     ln_p := (P_POINT_NR-1)*ln_dim+1;
     -- extract the x and y values
     px := P_GEOM.SDO_ORDINATES(ln_p);
     py := P_GEOM.SDO_ORDINATES(ln_p+1);     
     --return the point...
     RETURN MDSYS.SDO_GEOMETRY(
     2001,
          P_GEOM.SDO_SRID,
          MDSYS.SDO_POINT_TYPE(px,py,NULL),
          NULL,NULL);
     END FNC_GET_POINT_2D
then:
SELECT
FNC_GET_POINT_2D(A.GEOMETRY,1).SDO_POINT.X,
FNC_GET_POINT_2D(A.GEOMETRY,1).SDO_POINT.Y,
FNC_GET_POINT_2D(A.GEOMETRY,1).SDO_POINT.Z
FROM
<TABLE> A
returns x,y,z... (first point)
Hope that helps...

Similar Messages

  • Extract First letter from each word

    Hi All,
    I have a requirement to extract first letter of each word as shown in below example
    input: abcd output: a
    input: abcd efgh output: ae
    input: abcd efgh ijkl output: aejany help will be highly appreciated
    I am on db version 11g

    jeneesh wrote:
    Just a note - This will not take care of spaces at the end of the line..You're right, and not just spaces but any non-word characters. Here is fixed solution:
    with t as (
               select 'abcd ' str from dual union all
               select 'abcd efgh.' from dual union all
               select 'abcd efgh ijkl,' from dual union all
               select ' a abcd efgh ijkl! ' from dual
    select  str,
            '[' || regexp_replace(str,'\W*(\w)(\w*)|(\W*$)','\1') || ']' initials
      from  t
    STR                 INITIALS
    abcd                [a]
    abcd efgh.          [ae]
    abcd efgh ijkl,     [aei]
    a abcd efgh ijkl!  [aaei]
    SQL> BTW, oldie_63's solution takes care of spaces but not:
    with t as (
               select ' abcd' str from dual union all
               select '.abcd efgh' from dual union all
               select ',abcd efgh ijkl' from dual union all
               select '! a abcd efgh ijkl' from dual
    select  str,
            '[' || trim(regexp_replace(str,'(\S)\S*\s*','\1')) || ']' initials
      from  t
    STR                INITIALS
    abcd              [a]
    .abcd efgh         [.e]
    ,abcd efgh ijkl    [,ei]
    ! a abcd efgh ijkl [!aaei]
    SQL> Also, OP needs to clarify what to do with hyphenated words:
    SQL> with t as (
      2             select 'sugar-free' str from dual
      3            )
      4  select  str,
      5          '[' || regexp_replace(str,'\W*(\w)(\w*)|(\W*$)','\1') || ']' initials
      6    from  t
      7  /
    STR        INITIALS
    sugar-free [sf]
    SQL> with t as (
      2             select 'sugar-free' str from dual
      3            )
      4  select  str,
      5          '[' || trim(regexp_replace(str,'(\S)\S*\s*','\1')) || ']' initials
      6    from  t
      7  /
    STR        INITIALS
    sugar-free [s]
    SQL>Or words like:
    SQL> with t as (
      2             select 'O''Reily' str from dual
      3            )
      4  select  str,
      5          '[' || regexp_replace(str,'\W*(\w)(\w*)|(\W*$)','\1') || ']' initials
      6    from  t
      7  /
    STR     INITIALS
    O'Reily [OR]
    SQL> with t as (
      2             select 'O''Reily' str from dual
      3            )
      4  select  str,
      5          '[' || regexp_replace(str,'\W*(\w)(\w*)|(\W*$)','\1') || ']' initials
      6    from  t
      7  /
    STR     INITIALS
    O'Reily [OR]
    SQL> SY.

  • How can I extract cursor coordinate in Adobe Photoshop for use in Action script?

    What I want to do in Photoshop (version CC, but I think this applies to any version) is label a point using count tool under my mouse's current position, and label it multiple times (for different labels). I have an action that essentially does this:
    (1) Add to count (under one label) (2) Switch to second label (3) Add to count (under second label) (4) Switch to third label (5) Add to count (under third label)
    And the problem is that I need to be able to have a variable in the action script that uses the cursor's current position (X and Y numbers) on the canvas to set these three points when the macro is activated. Currently I am only able to record the script using constant X, Y values (the same point is labeled over and over when I play the recorded action). I am able to extract the code for the action for editing (via xbytor2's suggestion in this forum:https://forums.adobe.com/thread/696989) and I see where the variable can go, I just don't know what exactly to put in place of the constant X, Y values that will let Photoshop input the mouse's current coordinates...
    Any ideas? Much appreciated!!

    You could use the pen tool set to path and create a single dot, then run the script to get the cursor positions and use that in your script.
    var strtRulerUnits = app.preferences.rulerUnits;
    var strtTypeUnits = app.preferences.typeUnits;
    app.preferences.rulerUnits = Units.PIXELS;
    app.preferences.typeUnits = TypeUnits.PIXELS;
    var doc = activeDocument;
    var workPath = doc.pathItems.getByName("Work Path");
    var pos = workPath.subPathItems[0].pathPoints[0].leftDirection;
    $.writeln("x = " + pos[0] + " y = " + pos[1]);
    doc.pathItems.getByName("Work Path").remove();
    app.preferences.rulerUnits = strtRulerUnits;
    app.preferences.typeUnits = strtTypeUnits;

  • Extract First Matchin Record

    Hi,
    This is my first post to this forum. I need some help in writting a bit complex query. there are two tables. which have 1-m relationship. for each record in table a i want to extract the first matching row from table b.in table b there are many matches but i want to extract the first match and ignore the rest for each value of the primary key in table A.
    Table A
    field1 field2
    1 one
    2 two
    3 three
    Table B
    fieldb1 fieldb2 fieldb3
    1 one 55
    1 one 66
    1 two 77
    I want join on field1 and fieldb1 than check for condition where fieldb2 = one and fieldb3>0.so in this case it will return 2 records. but i want only the first match that is one 55.
    Thanks in advance.
    Raj.

    Hi,
    The query you posted:
    SELECT ll1.ln_id,min(princ_apld_amt), ll1.crtlamt_apld_amt, ll1.actl_1001pct_upb_amt
    FROM ll_ln_actvy00_1 ll1, ll_ln_actvy00_2 ll2
    WHERE ll1.ln_id = ll2.ln_id
    AND ll2.princ_apld_amt < ll1.crtlamt_apld_amt
    group by ll1.ln_idis not what you're actually running.
    The query above will cause the error "ORA-00979: not a GROUP BY" expression because there are columns in the SELECT clause ( ll1.crtlamt_apld_amt and ll1.actl_1001pct_upb_amt) that are not in the GROUP BY clause.
    What is the data in your tables that is producing the output you posted? Forgive me if you already posted it, but the only sample data I found is in your very first message, and I don't see how this output comes from that data. (Though it is a long thread, and I may have missed something.)

  • Extract First Zero Crossing After Peak

    I have a signal that approximates a noisy sine wave which I want to broadly break down into segments of negative and positive slope. As peak detection on the original trace is messy and the section of positive slope is complex, I plan to extract these features by working with the differential (the maximum velocity of the principle waveform is largely invariant and can be easily thresholded from the lower amplitude waveforms). I can easily detect the MIN peaks in the differential and now want to walk forward in the dataset to the first transition across the zero line and extract this timepoint to a new dataset. Does anyone have a script that I can modify for this purpose? Essentially, I want to trigger with an existing timepoint, iterate to the first timepoint where ti times ti+1 is negative and then write ti+1 to a new waveform.  I also want to walk backwards to the the first transition across the zero line and extract this timepoint to a new dataset but this is secondary.
    Thanks!
    Matt
    Solved!
    Go to Solution.

    Sorry for not responding earlier about my progess.
    I was able to extract the timepoints using your advice but now want to go back to the original data and extract the y-values. For some reason, my for loop below completes but only writes no-values? Extracting the x and y values in parallel won't work because I generated by x-value subset using the differential of the original dataset.
    The general question is as follows:
    Given a common timepoint, find the y-value associated with that timepoint in another channel.
    FOR i=1 TO InitContrLength
       ChDx(i, InitContrY) = ChDx(ChDx(i,InitContr)/Interval, Filtered)
       Next
    InitContr is an array of discontinuous time values which represent a subset of the original time series. My for loop is designed to iterate through the InitContr, converting them to an integer representing the appropriate row in my original dataset (Filtered) by dividing the time value by the step interval, and then writing the value from Filtered (which is an array of y-values) that corresponds to that row to InitContrY.
    Definitions in case the above is confusing
    InitContr = Channel containing a subset of time values
    Filtered = Channel containing all y-values from the original waveform
    Interval = step width of the original waveform
    InitContrY = New Channel that I want to write y-values to that correspond to InitContr x-Values
    Any ideas or links to a debugging primer would be greatly appreciated. If I could iterate through my for loop and visualize the variables in real time, I think I could figure this out myself.
    Matt

  • How to Extract Text coordinates from PDF

    Hi,
    can anyone tell me how to get coordinates in pdf document using VB or .NET, suppose if some text is written in pdf document then how can i get coordinates of that text. Its very Urgent.
    Thanks in Advance.

    I am trying to use the getPageNthWordQuads information to determine if a word on the page is within a region that I am interested in.
    I have a limited knowledge of javascript and have been looking up text manipulation functions and array manipulation functions in an attempt to figure out how to separate the values that are returned from the Quads routine. The Adobe documentation indicates that the Quads function returns an array, but when I try to access one of the values in the array, it gives me the entire contents of the array as though it is a string. If I use the .length function to try to determine the length of it, it tells me it is length of 1! I obviously am mis-handling this reference, but I have yet to find any specific examples that work with the quads array the way I am trying to work with it....
    Here is my code...I am running it against an open file in batch processing mode(maybe this has something to do with it)...
    var sourceDoc = this
    var tx1=492.5;
    var ty1=761.5;
    var tx4=563;
    var ty4=726.2;
    try {
    for (var j = 0; j < (this.numPages); j=j+2){
    var cnt=0;
    var rcvrnum="";
    cnt = sourceDoc.getPageNumWords(j);
    if (j == 0) {
    try {for (var i = 0; i < cnt; i++) {
    var quads = sourceDoc.getPageNthWordQuads(j,i);
    var x1 = quads[0];
    console.println("Page(" + j + "),Word(" + i + ") = " + sourceDoc.getPageNthWord({nPage: j, nWord: i}));
    console.println("Quads length is " + quads.length);
    console.println("X1 = " + x1);
    if ( x1 >= tx1 & x1 <= tx4 & y1 >= ty4 & y1 <= ty1 ) {
    console.println("Q1 is good");
    console.println("Page(" + j + "),Word(" + i + ") = " + sourceDoc.getPageNthWord({nPage: j, nWord: i}));
    } catch (e) { console.println("Aborted: " + e) };
    } catch (f) { console.println("Aborted: " + f) };
    I have tried several variations of the code above to try to extract my values so that I can compare them, but to no avail. The above code outputs to the console the following...
    Page(0),Word(0) = OTTO
    Quads length is 1
    X1 = 19.350006103515625,782.15087890625,126.51744079589844,782.15087890625,19.350006103515625, 721.5038452148438,126.51744079589844,721.5038452148438
    Page(0),Word(1) =
    Quads length is 1
    X1 = 125.17047119140625,782.15087890625,153.91525268554688,782.15087890625,125.17047119140625, 721.5038452148438,153.91525268554688,721.5038452148438
    and so on...
    x1 becomes the entire output from the array and yet I can not perform a simple split function on x1. If I try to split X1 into an array by splitting on the comma, I get the following error.
    Aborted: TypeError: x1.split is not a function
    Am I supposed to import some libraries or something?
    Thanks for any help....
    Kevin Ailes

  • Extract first name from string

    Post Author: gronkette
    CA Forum: General
    If I have the followng list:
    SCHEELS, Julie
    CURTIS, Tobi
    JOHNSON, Dawn    etc....
    How do I extract the First name following the comma?  I've been able to extract the Last name several ways.
    thanks!

    Post Author: gronkette
    CA Forum: General
    When I use the Split function with &#91;2&#93;..... I get the following error:
    A subscript must be between 1 and the size of the array...
    works great with &#91;1&#93;.
    -j-

  • Numbers '09: Extract first word of a cell

    I'm looking for a formula that extracts the first word out of text in a cell and displays it in another cell.
    Eg, in Cell A1 I have the text "Bob likes to swim". I want "Bob" to appear in another cell.
    I've found a solution for Excel, but it doesn't transfer to Numbers.
    Any ideas?

    Hello,
    I have a contact list that I am trying to sort out and I need to separate first and last name.
    The formula given here was great for first names, but I am having trouble with the last name:
    Using this formula
    {quote}=RIGHT(O3;FIND(" ";O3)-2){quote}
    where O2 is the cell where I have my full name, gives any kind of truncated names, depending on the length of the first name. I have tried any variation for the last term (-2), but nothing satisfactory.
    Now I have found this excel formula that I am trying to adapt to numbers:
    {quote}=RIGHT(A1,LEN(A1)-FIND("*",SUBSTITUTE(A1," ","*",LEN(A1)-LEN(SUBSTITUTE(A1," ","")))))
    which should become something like that in my case:
    =RIGHT(O2;LEN(O2)-FIND("*",SUBSTITUTE(O2;" ";"*";LEN(O2)-LEN(SUBSTITUTE(O2;" ";"")))))
    if I am not mistaken about the change from commas to semi-colon
    {quote}
    Any idea to what I should do ? Ideally, what I would like to have is a formula that extracts everything that is after the first word, so as to manage the name with particle and/or the middle names....
    Thanks for your attention,
    Colin

  • Extract First Entry from Hash Table, Place into Variable

    Hello,
    I want Powershell to query a property and then extract the first entry of that property and place into a variable. How would I do that?
    The command is:
    Get-CsRgsAgentGroup -Identity service:ApplicationServer:server.company.net -Name "Dispatch" | fl -Property AgentsByUri
    The output is: 
    AgentsByUri:{sip:[email protected],sip:variable2@company,sip:[email protected]}
    So, I would like the entry "sip:[email protected]", to be pulled into a variable.
    Thanks in advanced!

    If I run this without the $Variable, I at least return this output which is a good sign, though still throws back an error.
    When run with the $Variable, I just get back the error alone. We are on the right track.
    Get-CsRgsAgentGroup -Identity service:ApplicationServer:server.company.net -Name "Dispatch" | Select -ExpandProperty AgentsByUri | Select -First 1
    AbsolutePath   : [email protected]
    AbsoluteUri    : sip:[email protected]
    LocalPath      : [email protected]
    Authority      :
    HostNameType   : Unknown
    IsDefaultPort  : True
    IsFile         : False
    IsLoopback     : False
    PathAndQuery   : [email protected]
    Segments       : {[email protected]}
    IsUnc          : False
    Host           :
    Port           : -1
    Query          :
    Fragment       :
    Scheme         : sip
    OriginalString : sip:[email protected]
    DnsSafeHost    :
    IsAbsoluteUri  : True
    UserEscaped    : False
    UserInfo       :
    Get-CsRgsAgentGroup : The pipeline has been stopped.
    At line:1 char:1
    + Get-CsRgsAgentGroup -Identity service:ApplicationServer:server.company.net -Name " ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : NotSpecified: (:) [Get-CsRgsAgentGroup], PipelineStoppedException
        + FullyQualifiedErrorId : Microsoft.Rtc.Rgs.Management.GetOcsRgAgentGroupCmdlet
    Thank you so much for your help!

  • Extracting first goods receipt posting date

    Hi Experts,
    At the moment our 2LIS_02_SCL extractor is extracting the last goods receipt posting date from source system and we would like to get the first goods receipt posting date.
    Posting date is stored in EKBE-BUDAT and I have checked the 2LIS_02_SCL in CMOD but couldn't find the code.
    How do I resolve this issue.
    thanks

    Hi,
    changing the behaviour of the 2LIS_02_SCL will be fairly tricky (modification), I reckon. But you could enhance the extract structure with a new field and populate it in the standard CMOD exit. There you put some logic to determine the first good receipt. This is normally not the right way for LIS extractors but in your case it should be fine (no delta issues). Alternatively you overwrite the existing date field with the first GR in the exit. I would go for a dedicated field.
    Another option would be a generic extractor on the table EKBE. For purchase order related information you can get a clean delta and do the further processing in BW.
    Hope it helps.
    Stefan

  • How To: Extract first three characters of a text field

    Greetings --
    What is the best method for extracting the first three
    letters of a text field?
    I need to extract the first three letters of a text field (in
    this case Last Name),
    so I add it to other components so as to create an
    identification number for
    a person.
    This identification number that needs to be created is
    comprised of the
    person's date of birth, last 4 numbers of the social security
    number and
    the the first three letters of the person's last name.
    Example:
    ==> Birthdate: 11/15/45
    ==> Last 4 SSN: 6654
    ==> Last Name: Smith
    ID Number would be:
    ==> 1115456654SMI
    Leonard B

    That should do the trick:
    I put your values in variable, just replace the names, as
    needed
    <cfset birthdate = "11/15/45">
    <cfset ssn = "41646562121216654">
    <cfset lastname = "Smith">
    This deletes all the / from your birthday string (if it is a
    string!) and puts it into the id variable:
    <cfset id = replace(birthdate, "/", "", "All")>
    This takes the last 4 letters/digits of your social security
    number string and adds it to the id:
    <cfset id = id & right(ssn,4)>
    This takes the first thre letters/digits from your last name
    variable, puts it in upper case and adds it to the id string
    <cfset id = id & ucase(left(lastname,3))>
    Hope it helps.

  • Looking to extract position/coordinates from Simulated Starter Kit 2.0

    I am new to the Robotics Module of LabView so I wanted to clarify is either of things exist. The simulated DaNI (starter kit 2.0) moves depending on the speeds sent to the DC motors, but how/where is this translated into movement for the simulated DaNI? OR is there any way to put a marker or otherwise monitor the current position of the simulated DaNI in the simulated environment. (hopefully using coordinates or something similar?)
    I am only using the basic, nothing complex. Some code has been written to make inputs to the Write Dc Motor Setpoints VI and that is where the motor speed is inputted, but I cannot see where it actually translates into movement for the simulated DaNI.
    I don't need anything solved or fixed, would just appreciate a point in the right direction or a clarification.

    You may want to take a look at the "Starter Kit 2.0 Dead Reckoning" example to see how to directly access the position of the robot from the simulation environment. (If you don't have LabVIEW 2012 or later you can get the example here.)  In this case, you get a reference to the robot's "Body" object, then call the "Position" property to get the coordinates of the robot's center point within the simulation environment.  As for how the API controls the motors, the robot host interface contains references to the simulated motors, and it is sending position setpoints to the simulator through those references  This comminication is handled within Write DC Motor Setpoints.vi.  Meanwhile the simulator is calculating the friction and collisions between the wheels and the ground to make the robot move.
    Chris M

  • How to extract word coordinates from PDF using vc++6.0

    In sdk,i just know how to get coordinate from pdf using javascript,and it will be completed use vb.but i dont know how to get the coordinate througt vc++6.0.anyone can help me?
    thank you advance!

    PDEWordFinder is the usual method for getting words and co-ordinates.
    PDFEdit is not usually used, it is not suitable for getting text.
    It is very hard work to make the two worlds work together (e.g. to
    edit text you find).
    Aandi Inston

  • Inventory Extraction Issue

    Hi Gurus,
    I have couple of questions here regarding Inventory extraction, and I will ask one by one:
    1. I have a requirement to develop a report called " Stock Ledger Report " where the KPI's would be Quantity, Cost & Retail Price. The 2 KPI's Quantity & Costs are straightforward and the data for these come from MSEG-MENGE & MSEG-MENGE respectively. Retail Price is a bit complex since it is dependent on time and my client being a retail one their prices are subjected to change according to time. This is being calculated from different tables in the R/3 side so it's pretty clear that I have to add a custom field to my extractor.
    Now my Question is, to which data source should I add the custom field, will it be 2lis_03_bx or 2lis_03_bf?
    2. I started the extraction sometime back for 2lis_03_bx since that has to be extracted first, but I am getting a runtime error that says:
    Short Text
        Too many parameters specified with PERFORM.
    What happened?
        In a subroutine call, there were more parameters than in the
        routine definition.
        Error in ABAP application program.
        The current ABAP program "SAPLMCB1" had to be terminated because one of the
        statements could not be executed.
        This is probably due to an error in the ABAP program.
    Error analysis
        An exception occurred. This exception is dealt with in more detail below
        . The exception, which is assigned to the class
         'CX_SY_DYN_CALL_PARAM_NOT_FOUND', was neither
        caught nor passed along using a RAISING clause, in the procedure "UPDATE_CALL"
         "(FORM)"
        Since the caller of the procedure could not have expected this exception
         to occur, the running program was terminated.
        The reason for the exception is:
        A PERFORM was used to call the routine "F0001_UPDATE" of the program
         "RMCSA278".
        This routine contains 4 formal parameters, but the current call
        contains 5 actual parameters.
        parameters.
    The first thing I did was to check for the OSS notes 315880 and 353042 that have to be installed in the R/3 system to perform the data loading. I got this from the SAP White paper, How to handle Inventory scenarios in BW.
    I didn't find these notes in my R/3 system here, so I searched for these nodes in market place. The first note didn't make much sense to me where as the 2nd note was about how to activate the transaction key (PROCESSKEY).
    According to what was mentioned in market place, in order to work with the Inventory extractors I have to activate the determination of the PROCESS KEY. So how do I know which PROCESS KEY corresponds to my requirement ? I could see all the process keys in the Transaction key maintainence for BW in SBIW.
    My Question is if these 2 OSS notes are installed. will the issues be resolved ??
    Thanks,
    Guru.

    Hi
    check this SAp note for your dump
    Note 546844 - PERFORM command: Error message: 'Too many parameters'
    cheers,
    Swapna.G

  • First Date of the Given date and month

    Hi Evryone,
    I want to extract first day of the given date.
    For Ex: i aam giving date "30-jan-2013" but i want to show "01-jan-2013".
    In Oracle, Trunc function behaving mentioned above. So i need appropriote function in HANA to get the FIRSTDATE....
    I observed HANA Given last_date function but what about First_Date function? can i use it?
    Regards,
    Chandrakanth

    Hi Chandrakanth,
    Did you have a look on this blog:
    SAP HANA: Get the First Date and the Last Date of Month from a Given Date | WuaWua
    There is LAST_DAY in HANA but not FIRST_DAY.
    Since last day of the month may vary but first day of the month will always be '01'. Hence they may not have added that function.
    So either you can follow that approach in the blog or you can simply replace the day '01'.
    Regards,
    Krishna Tangudu

Maybe you are looking for

  • Trying to rebuild ZCM 10.3.1 server after crash

    Hi all, I'm currently trying to help a customer rebuild a ZCM 10.3.1 server (single primary server) used for Asset Management only, after a complete crash. The situation is, that we have now re-installed both the OS and ZCM 10.3.1 server with same na

  • Show focus points in lightroom

    I have Canon DSLRs and the EXIF metadata clearly contains the focal points that the camera focused on (I can see it with Canon Digital Photo Profiessional) I'd like to have the same view in Lightroom, i.e. Lightroom gives me a "viewfinder-like" overl

  • Is there anybody can help in this exception

    HTTP Status 500 - type Exception report message description The server encountered an internal error () that prevented it from fulfilling this request. exception org.apache.jasper.JasperException: Exception in JSP: /jsp/register.jsp:19 16: 17: <jsp:s

  • I try to update the facebook but the email show in the App store is the old one an I can't remember the password

    try to update the facebook but the email show in the App store in this icon in specfic is the old one an I can't remember the password, how this is happen if I have my new email set up in everything?

  • WiFi Stopped Working After Installing WICD

    Hi, I've been messing with knetworkmanager, wifi radar, and finally WICD. All in an effort to get to a usable interface for me to connect to my router at home. I never managed to get the first mentioned 2 to work due to knet not even opening, and wif