Keyword editing; script request

I am looking for a way to better edit keywords in Aperture 2.
If I bring up the Keyword HUD (shift-H), I sure can organize the keywords into a tree, but Aperture shows neither the match count nor the images themselves. Selecting images by keyword can apparently only be done out of a flat list from the +Smart Settings+ of the Library search function or the Query HUD in the browser window.
I have been importing many older images from +iView Media 3+ which has excellent keyword management capabilities. In particular, I like the hierarchical location management via IPTC fields. (That would be nice to have in Aperture, without having to "abuse" keywords.) Unfortunately, I haven't been all that consistent in keyword assignment (who is?), so there is a lot of cruft (typos etc.), and cleaning this up is not getting any easier with more incoming pictures.
As a workaround, it would help if there was a pair of AppleScripts to map the keywords library onto appropriate containers and back, where a container is either a project, a yellow, or a blue folder -- I know this is a bit vague because of the very specific purposes and limitations of each one of those. Two scripts would be needed:
*Keywords to Folders*
- Create a toplevel container Keywords
- For each existing (hierarchical) keyword:
-- create a matching hierarchical container under Keywords
-- match images and place (link) them into the new container
-- remove keyword from the keyword library
At this point, one can edit the keywords graphically by manipulating the containers.
*Folders to Keywords*
- For each container below Keywords
-- create keyword in library, with same name and hierarchy level
-- apply keyword to images in container (if not already present)
However, this is beyond my limited expertise with AppleScript. For someone more experienced: Is this feasible, or does such a mapping perhaps already exist?
Regards, Michael

Forgive me but I cannot help myself - I must post a response.
While I sympathize with you in whatever issue you are trying to solve with your organization and I do believe whole heartedly in using whatever tools you have in anyway that suits your needs. I do believe that you may be missing the point of hierarchical keywords. The point is primarily to impose additional pseudo hierarchical structures that are not necessarily identical to your primary hierarchical structure. It's also convenient and efficient to be able to change those virtual structures and add new ones. This is usually best accomplished by only adding the most specific keywords to your images and then arranging those specific keywords under increasingly general parent keywords. You don't really want to be adding every single keyword in the hierarchy to each image nor do you want your primary org structure to mirror one particular keyword path.
Yea yea yea I know all about the export issue with Aperture hierarchies for you stock guys out there (LR2 has a really nice solution for this w/o making a big mess). See here if are interested [Aperture2 and LR2 Keywords|http://photo.rwboyer.com/2008/11/aperture-2-vs-lightroom-2-keywords>
Personally I believe you would find yourself with a bigger more gigantic mess should this script/scripts be unleashed on humanity. Maybe we here at the ole' Aperture forum could be of assistance in helping get to the root of what you are actually trying to accomplish?
RB

Similar Messages

  • Employee is not able to Edit the Request if it is Rejected by the Approver.

    Hi,
        we are working on EHP5  , ECC 6.0  . We  are implementing claims and reimbursements . In our process if the employee raises the claim request in the portal and the approver rejects the claim request , employee is not able to edit the request in the portal . So please suggest the solution for this .
    Thank you
    lokesh

    Hello Lokesh,
    The edit feature of claims is on the basis of status. Approved & Rejected claim requests cannot be edited. The approver has got the option to edit the claimed amount on basis of the proof attached.
    Hence the approver can edit and then decide to approve or reject. But employees in case of any
    rejection of claims needs to reapply with a new claim.
    Regards,
    Pankaj

  • Reflection errors in Field Data Edit Scripting context(Line Item class)

    Hello Experts,
    I have a script that does some validation in the Field Data Edit Scripting context of the "Line Item" class, and I  have "MATERIAL" as my target. when i try throwing an Application Exception in this context I get a reflection error message box instead of the message I have passed to the Application Exception constructor.
    your help will be greatly appreciated.
    kind regards,

    One thing to be aware of is that no matter how you choose to construct your exception in field, field data edit and collection scripts, the attribute is always set to the be the taget field/collection. Have you noticed that? The script designers made things that way. What's going on here is that the exception raised in the Interprer is caught by the Script Manager and rethrown with the script target as the attribute and your raised exception as the exception.
    One other thing I would point out is that scripts set to execute on the Collection Member Lifecycle event tend to be poor performers.  You can get a faster result if you edit whole collection and chain the errors onto one ChainException. I can only speculate as to why, but I have seen major improvements in complex scripts if I iterate the whole collection, versus implementing a collection memeber lifecycle validate event. This is counter-intuitive, but there it is.
    Finally, exceptions raised in Collection Lifecycle Events that interupt the overall save process in the prescence of parent document Lifecycle Validation events can result in partially saved data. I observed this issue a few years back and it may be resolved now. The only member lifecycle event I use is Created, to lock, default, etc.
    So, for your particular problem, you may want to rethink your strategy and see if you can get things to work for you bypassing that reflection issue. If you still can't raise the exception on MATERIAL, maybe you can raise it on another field, because another advantage of this approach is that you have full control to raise any error on any field on the Line Items.

  • Problems when using RUNLOGIC Keyword in Script Logic

    Hello experts,
    I have a problem using RUNLOGIC keyword within Script logic. Both scripts are mentioned below.
    Following scenario:
    - combination of DESTINATION_APP and LOOKUP to multiply values from two source applications in order to to write results in target application
    - data volume in source application VALCHAIN are approx 187.000 records; source app SALES = 500 records
    - created data records in target application QUANTITIES are approx 204.000 records
    Running LOGIC01_QUANTITIES.LGF without "RUNLOGIC" keyword:
    - time to execute logic and write records: 10-12 minutes
    - created records 204.000
    Running LOGIC01_QUANTITIES.LGF via CALL_RUNLOGIC.LGF
    - script does not finish; system produces dumps
    - Tcode ST22 shows error messages called "TSV_TNEW_PAGE_ALLOC_FAILED" as well as "SYSTEM_NO_ROLL" as well as "CALL_FUNCTION_SEND_ERROR"
    Does anybody have a guess for that? Any answer appreciated.
    Thanks a lot!
    ==================================================
    CALL_RUNLOGIC.LGF
    *START_BADI RUNLOGIC
    QUERY=OFF
    WRITE=ON
    LOGIC=LOGIC01_QUANTITIES.LGF
    APPSET=FINPLAN_PERFORM
    APP=VALCHAIN
    CHANGED=PRODUCT
    DEBUG=OFF
    *END_BADI
    ===========================================
    LOGIC01_QUANTITIES.LGF
    *XDIM_MEMBERSET DATASRC=ITEMIZED
    *XDIM_MEMBERSET VERSION=%VERSION_SET%
    *XDIM_MEMBERSET TIME=%TIME_SET%
    *LOOKUP SALES
    *DIM DATASRC="OUTPUT"
    *DIM ITEM="IM_M02"
    *DIM QUANTU="QU_TO"
    *DIM MEASURES="PERIODIC"
    *FOR %LOOP_CENTER%=PC_1000,PC_2000,PC_3000,PC_4000,PC_5000,PC_6000
    *DIM C_%LOOP_CENTER%:PCENTER=%LOOP_CENTER%
    *NEXT
    *ENDLOOKUP
    *DESTINATION_APP=QUANTITIES
    *ADD_DIM COSELE=CE_NONE
    *WHEN PRODUCT.LG
    *IS "1"
      *WHEN MATERIAL
      *IS "MA_NONE"
        *FOR %LOOP_CENTER%=PC_1000,PC_2000,PC_3000,PC_4000,PC_5000,PC_6000
        REC(EXPRESSION=%VALUE%LOOKUP(C_%LOOP_CENTER%), PCENTER=%LOOP_CENTER%, ITEM="IM_M08", DATASRC="CALCULATED")
        *NEXT
      *ELSE
        *FOR %LOOP_CENTER%=PC_1000,PC_2000,PC_3000,PC_4000,PC_5000,PC_6000
        REC(EXPRESSION=%VALUE%LOOKUP(C_%LOOP_CENTER%), PCENTER=%LOOP_CENTER%, ITEM="IM_M05", DATASRC="CALCULATED")
        *NEXT
      *ENDWHEN
    *IS "1000"
      *WHEN MATERIAL
      *IS "MA_NONE"
        *FOR %LOOP_CENTER%=PC_1000,PC_2000,PC_3000,PC_4000,PC_5000,PC_6000
        REC(EXPRESSION=%VALUE%LOOKUP(C_%LOOP_CENTER%)/1000, PCENTER=%LOOP_CENTER%, ITEM="IM_M08", DATASRC="CALCULATED")
        *NEXT
      *ELSE
        *FOR %LOOP_CENTER%=PC_1000,PC_2000,PC_3000,PC_4000,PC_5000,PC_6000
        REC(EXPRESSION=%VALUE%LOOKUP(C_%LOOP_CENTER%)/1000, PCENTER=%LOOP_CENTER%, ITEM="IM_M05", DATASRC="CALCULATED")
        *NEXT
      *ENDWHEN
    *ENDWHEN
    *COMMIT

    Hello,
    This error comes up when there is no enough memory.
    How many members do you have in PRODUCT and how many parallel processes did you set up in PARALLELSCRIPT?
    Also, I'd suggest to put *XDIM_MEMBERSET PRODUCT = %PRODUCT_SET% in your LOGIC01_QUANTITIES.LGF script.
    Did you get anything in RUNLOGIC log? In UJFS you can find logs for every parallel process ran, name if it is just it's time stamp.
    Can you see from those what scripts ran and with what parameters?
    This should simplify resolution of your issue.
    Regards,
    Gersh

  • Editing Script Component in VS2013 launches VS2012?

    New SSIS developer here.
    Using VS Premium 2013 RTM (12.0.21005.1 REL) with SSDT 12.0.30919.1 and SQL Server Integration Services.
    I have a Business Intelligence -> Integration Services project (an SSIS project), and when I create a Script Component in a Data Flow Task and click "Edit Script...", it launches Visual Studio 2012.
    The ScriptLanguage property for the Script Component is set to "Microsoft Visual C# 2012". I don't see an option for "Microsoft Visual C# 2013" (if such a thing exists?).
    Questions:
    1. How can I set VS2013 to call VS2013 (and NOT VS2012) for editing the C# in my Script Component? I can create/edit/build a straight C# project just fine in VS2013, so how to do I get VS2013 to edit C# in the Script Component instead of launching VS2012?
    2. What is the relationship between the version of Visual Studio ("Visual Studio 2013") and the version of the languages available/defaulted in the ScriptLanguage setting ("Microsoft Visual C#/Visual Basic 2012")?
    Thank you very much for your help.

    Answer:
    You cannot as the Script Task is done via VSTA which is VS 2012 Shell. And there is not such need;
    Arthur
    MyBlog
    Twitter

  • AW memory error when clicking "Edit Script" on ICM 7.2.7 Script editor

    I have installed a new AW/HDS(ICM 7.2.7).Installation went on smoothly but when i open a exist script through script editor and click "Edit Script", I get memory error "The instruction at "0x7c1..the memory could not be read" and the script editor closes automatically. I am able to make changes in Configuration Manager without any issues.The new server is configured as a secondary pointing to a primary distributor in a different region.Let me know if anyone has faced this issue or have any idea.All the ICM processes on the server looks fine. I am able to open the same script from other AWs without any issues.
    Thanks
    KMS

    I would run "Initialize Local Database" on the secondary to drop the local AW DB and rebuild it from the Central Controller.
    Then I would try stopping the primary Distributor so the Secondary establishes the real-time feed to the Router by itself and check.
    Regards,
    Geoff

  • Can't edit script

    Hi,
    I've looked through forums where others have experienced the same problem:
    - text is not editable, and seems to be locked.
    Have tried Ctrl key to try and toggle this off, but only worked once.
    What is the solution to having full access to an editable script please?

    Hi Rohit,
    I can send you the file in a few months after we've concluded filming.
    For now I can't share the file.
    Is this a common issue people have? I discovered a few similar cases in forums online.
    Thanks,
    stefan

  • Keyword edit

    Hello...
    I started to use my Aperture 3 a bit in a hurry, did not have time to read the manual extensively.
    I entered several keywords and attributed them to photos in different projects.
    After, I realised that my keyword definitions were either inappropiate or redundant.
    I am wondering if I can straighten up this by editing my keywords, which I guess you can do by exporting the keywords, edit them with a word prodesssor in text mode, and reloading them.
    My question is: if a keyword is modified (eg. typo corrected) or moved into a new subcategory, will this change the keywords that are already attached to existing photos ?
    Thanks and cheers

    Hi Denis,
    Denis Giguere wrote:
    I guess you can do by exporting the keywords, edit them with a word prodesssor in text mode, and reloading them.
    No!  You use Aperture's Keywords HUD to edit your keywords.  When you rename one, Aperture will ask you if you want to apply this change to all the Images to which you have applied that keyword.  You can also group your keywords under other keywords.  If you do so, I recommend _not_ using any of your keyword-group keywords as keywords.  (See this thread.)  You can merge keywords that are identical.
    The user manual is uncharacteristically thin on keyword use in Aperture.  Read the keywording section and ask more questions.

  • Keyword edit view

    A keyword edit view would be nice. Just some UI widget that would one more easily create, delete and edit keywords. The current UI is pretty tweaking when trying to create parent-child relationships (try adding Apple under Zebra when you have hundreds of keywords). Also, allowing one to select multiple keywords for batch ops, like creating synonyms, would be nice.
    An export (and import) to/from XML or some other normalized form would be sweet, too.

    <[email protected]> wrote in message <br />news:[email protected]..<br />> What would be nice is to regroup and integrate all keyword tools into one <br />> pop-up window or panel, as they are too<br />>much spread in the present Lightroom interface.<br /><br />I think a consolidated keyword popup would be great.  Especially if it had the <br />different functions (create/edit/delete, add keywords to image, etc) on tabs or <br />something, and had a different keyboard shortcut for each tab.  What I'd ideally <br />like to be able to do is hit a keyboard shortcut (Ctrl-K would be my preference) <br />and then have a popup where I could type the keywords I want to add to the <br />selected image(s) and hit Enter to save and close the dialog.<br /><br />The current Ctrl-K functionality is a bit awkward - it puts focus in the keyword <br />panel on the right (showing it if I have it hidden), and selects the entire text <br />area containing the keywords for the selected image(s).  So I have to hit <br />Ctrl-K, hit End, hit Comma, then type my keywords.  If I happened to be viewing <br />with panels turned off, I now have to click the "hide right panel" arrow. <br />Yuck!<br /><br />-- <br />Rob Freundlich<br />"Males ae biologically driven to go out and hunt giraffes." - Newt Gingrich<br />"Some folks you don't have to satirize, you just quote 'em." - Tom Paxton

  • Upgraded to VS 2013 - cannot edit script in SSIS script component

    I'm running SQL Server 2014 and just recently upgraded to Visual Studio 2013 from 2012. I was attempting to develop an SSIS solution today - the first time since the upgrade - and was blocked because I wasn't able to edit the script for a script component
    in an SSIS package.
    I can add the object to a data flow but clicking on the "Edit Script..." button yields no response whatsoever. No error, no scripting environment. 
    I'm running VS2013 Ultimate with SSDT 2013, and SS 2014 Enterprise. 
    My hunch is that there are components missing somewhere but I don't know enough about this platform to piece together how things are related. I have nearly every option installed for VS2013 except for Windows Phone and app store development.
    I didn't have an issue previously and I'm unsure how to debug this - especially since I'm not a real SDE. 
    Thanks in advance for your help

    Hi Torben E,
    Maybe that you were unaware that you post this issue in Visual Studio Setup and Installation forum. This forum is to discuss and ask questions about the install and setup of Visual Studio. Obviously, this case is out of the scope of this forum.
    I'm unsure which forum is better for this case. Is Visual Studio General forum? Or SQL Server Integration Services forum? But I'd like to find a suitable forum along with you.
    >>I was attempting to develop an SSIS solution today - the first time since the upgrade - and was blocked because I wasn't able to edit the script for a script component in an SSIS package.  
    I see that you upgrade to Visual Studio 2013 from 2012. And you didn't have an issue previously. Do you mean that you can create SSIS project and edit the script for a script component before you upgrade VS?
    >>ERROR: Cannot resolve reference coloader80.dll,processorArchitecture="X86",type="win32",version="1.0.0.0".
    From the error message, it seems that the IDE can't find the coloader80.dll. Can you find this dll in your PC? Does it exist in the path ""C:\Program
    Files (x86)\Microsoft
    Visual Studio 11.0\Common7\IDE\"?
    If you can find it, please try to register the oleaut32.dll as the thread below mentioned to see if this method can solve this issue.
    https://social.msdn.microsoft.com/Forums/en-US/68d89658-b35f-4828-a9b1-31cf5cfc7717/coloader80dll-and-critical-debug-error?forum=Vsexpressvb
    This error is caused by the registration for oleaut32.dll was corrupted, there maybe other dll that also named oleaut32.dll, so visual studio could not
    find the right oleaut32.dll.
    So please download the OleAutClean.msi in this link and run it, to clean all the registration of oleaut32.dll.
    http://download.microsoft.com/download/a/9/3/a93f06e7-5828-460c-a78b-ab89c77b6957/OleAutClean.msi
    Then register the oleaut32.dll again.
    1.     
    Right click the Commandline to run the commandline as administrator.
    2.     
    In the commandline, run the following command if you are using Win7 or vista.
    regsvr32 "%CommonProgramFiles%\microsoft shared\VS7DEBUG\coloader80.dll" . Then you will see a dialog that shows the registration
    successes.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Script Editor takes forever to load with SSIS 2012 packages in VS 2012 when you click on Edit Script... button

    Hi,
    I'm upgrading some SSIS Packages to the SQL 2012 Project deployment model. However, when I click on the Edit Script... button in a Script Editor Task, Visual Studio just sits there for minutes until it sometimes opens, sometimes doesn't. Surely this should
    open up pretty much instantaneously. Can anyone shed any light on why this is happening ?
    Thanks
    Dave Evans

    Hi Dave Evans,
    It might be due to permission issue, please try to uncheck "Check for publisher’s certificate revocation" under the "Security" group in "Advanced" tab in "Internet Options", please see:
    http://stackoverflow.com/questions/13540151/ssis-script-editor-loads-very-slow 
    Thanks,
    Eileen
    Eileen Zhao
    TechNet Community Support

  • How can i edit script component in another machine?

    Hello everyone,
    i am using sqlserver data tools to build a package..
    i have alot of script components...the problem is i wrote this package in machine A ... when i take the whole solution in machine B 
    i can not edit or see the script components projects files etc...
    am i missing an atribute at package solution/project file?
    because in ssis 2008 r2 version i can edit all of components (script componet,oledb source component...etc.)
    ...but  in 2012 version of ssis i can not edit script component project..
    thanks a lot..
    evgeni

    Evgeni
    because in ssis 2008 r2 version i can edit all of components (script componet,oledb source component...etc.)
    ...but  in 2012 version of ssis i can not edit script component project"
    I guess you need to upgrade the package/solution 1st to the SSIS 2012 format.
    You need to go to Start-Microsoft SQL Server 2012->Integration Services and choose
    Project Conversion Wizard .
    Once the project (not just a package) is converted to SSIS 2012 open it in SSDT, access your Script Component and then choose
    Design Script button
    Arthur My Blog

  • Keyword Editing Bugs - Help

    I have two separate (but likely related) problems with Keywords editing in iPhoto '11:
    (1) When viewing a Smart Album, attempting to edit the Keywords of a single photo is frequently changing the Keywords of every photo in the Smart Album. (This is obviously yielding disastrous results. Now thousands of my photos are tagged incorrectly.) I click a single photo -- or Command-Click three or four photos -- and, after confirming that only the photos I want to update are selected (the top right message reports "3 photos selected", for example), I modify the Keywords. Then when I click "Return", every photo in the album is updated with the new Keyword(s).
    (2) When attempting to edit Keywords anywhere -- albums, smart albums, etc. -- I am unable to delete a keyword unless I do it multiple times. For example, the photo will be tagged with Keywords "Alpha", "Bravo", "Delta", and "Echo". I delete "Bravo" and hit "Return", and then the "Bravo" Keyword comes back. I delete it. It comes back. I delete it again, and it finally disappears.
    I have rebuilt my library multiple times at iPhoto startup, but nothing seems to resolve this problem.
    My entire iPhoto library is now an epic disaster. I have 23,000+ photos and now thousands of them are tagged incorrectly. Attempting to fix them keeps making everything worse.
    Does anyone have any ideas?

    Mistrustful aren't we?
    1. Using iPhoto Library Manager to rebuild a Library requires no purchase. You can download and use the app for free. Some extra features (like merging libraries) require a purchase. So, even if I had a beneficial interest in iPhoto Library Manager what would it gain me when the most frequent (by a mile...) use I suggest the app for costs nothing.
    I don't know that I'm a "vocal advocate" for the application. I recommend it as a way to solve library corruption issues. I'm not the only person on here who does. All the most experienced posters here do. There's a reason for that. It's the best solution on offer.
    2. I have no interest in, financial relationship with, or anything to gain from anyone using iPhoto Library Manager for any reason whatever. Neither do I have anything to gain from your using Apple products - I'm neither an employee nor a shareholder - or indeed, any other hardware or software.
    3. iPhoto Library Manager is not a workaround it's a solution. You cannot repair that database. There is no way to. You may be reticent to accept that. Good. If you can find an way or another app to repair the database I'll happily recommend that instead of iPhoto Library Manager. (And I'll have no financial relationship with that, either)
    4. Your Library is corrupted. You have four options now:
    Rebuild with iPhoto's own tools - that hasn't worked for you
    Restore from a known-good back up. That's the next best option
    Everything from now on means some data loss
    Rebuild with iPhoto Library Manager - minimise the data loss
    Make a new Library and start over from scratch. Maximum pain and dataloss.
    Your choice.
    Regards
    TD

  • SAP Scripts Request No. determination

    Hi,
      Could anyone let me know how or where do I determine the Request number for a SAP Script Form?
    Help is most rewarded,
    Thanks,
    Kumar

    Hi!
    If you wnated to determine the transport request, you can use the SE10 transaction to it.
    Enter into the user name a * character and press enter.
    You'll have all transport requests.
    Select one mandant, then Edit - Expand.
    And now you can search with the Ctrl+F after your sapscript.
    Regards
    Tamá

  • Cannot edit Service Requests or Service Offerings in SM Console

    I have been working on a Service Manager deployment for the past few weeks and yesterday I lost the ability to edit a Service Request or Service Offering when going to the Library, highlighting the object and the clicking Properties.  I am using the
    console on the server itself.  I have no remote consoles in the environment.  I see the properties display for a moment, then disappear.  The navbar on the left is there, but the main window is blank. Both OK and Cancel buttons are
    grayed-out.  I can add a request to an offering or publish a draft by using the options from the Tasks pane.  I can edit properties of other objects.  Before yesterday, I could edit request and offering objects.  I am not
    aware of any changes made to this system other than attempting to install the Exchange Connector v3 and it will not install.  (I've posted a separate question to the Connectors forum.)  There are no corresponding events in the event logs when I attempt
    to open the properties.  This behavior applies to the canned offerings and requests as well as offerings and requests I have created.
    All suggestions welcome.

    A little more information about the property form behavior.  When the property form window first appears, the form content is visible with what looks like a progress bar.  This disappears in less than a second.  All that is visible is
    the left navbar (General, User Prompts, Map Prompts, etc), the OK and Cancel buttons and a lot of whitespace where the form usually appears.  After a variable number of seconds, anywhere from 3 to 10, the OK and Cancel buttons are enabled.  I uninstalled
    Service Manager and reinstalled re-using the Service Manager database.  The property form behavior remains the same.  I hope someone has fixed this before.
    Thanks

Maybe you are looking for

  • Java Card Game (Carioca)

    Hi everyone. Im currently making a card game in java for a south american game called Carioca originally i had CariocaController, which controlled game logic such as creating cards and players, dealing the cards setting the cards etc. btnStartGame in

  • TS1702 Half installed apps

    I stared to down load a app but left the wifi area before it fully downloaded , the app is not on iPad and when I go back to App Store it shows the install icon half greyed , any ideas how to resolve this please , the 2 apps were I player and you tub

  • WRT320N Router fails to assign an IP in either wired or wireless configuration

    Hi  I bought a Links WRT320N   router less the 6 months ago. I have been using it  as a wireless router since without any problems. A week ago  one of the PC's in the networks did not receive a valid IP, although it was able to connect to the router

  • Password for Oc4j JMS in SOA Suite

    Hi, If I want to connect to OC4J JMS from an external application, so that the external application can insert message in queue (say a file persisted queue, that is being managed by the OC4J JMS), I would need to share the hostname, user id and pwd w

  • Arch won't boot anymore

    Hello again I've spent the last few days familiarizing myself with arch and setting up my system. Now I've encountered a problem I can't get rid off myself: After selecting arch from grub, pretty much nothing happens. All I see is the following outpu