Any interested in the V

Is anyone else in the US interested in the Muvo Vidz? It seems like it has the potential to be a great product. I wouldn't want to watch an epic on it but it would be great for some sitcoms and such when you have some time to kill.

Ah right kewl I hadn't heard of that since I'm in the UK.
Thouhg it seems rather nice.
It won't hold too much mind you, and the screen might be slightly too small, but it'd be okay if you only had a small collection.

Similar Messages

  • Are there any interesting tricks that the iphone 5 can do?

    Are there any interesting tricks that the iphone 5 can do? Are there any secrets?

    How about these:
    Apple - iPhone 5 - Learn some helpful iPhone tips and tricks.
    50 iPhone 5 tips and tricks - Opinion - Trusted Reviews

  • Is there any way to know when (and/or whether) a particular tv season will be available for purchase on itunes.  i'm particularly interested in the 2nd season of "homeland," the 5th season of "damages" and the 7th season of "dexter."  thanks.

    is there any way to know when (and/or whether) a particular tv season will be available for purchase on itunes.  i'm particularly interested in:
         the 2nd season of "homeland,"
         the 5th season of "damages"
         the 7th season of "dexter."
    thanks.

    Thanks. But the disc inspector only appears to let me change things like where the title menu button takes you, not detailed user operations. I have pretty much given up on this being anything other than a giant hassle, but if anybody knows whether a script could do this, I would be eternally grateful.

  • Lion seems to have broken aspects of AppleScript code. Any suggestions for the following?

    The following script works fine on a Snow Leopard machine, but hangs or throws an error during save out on a Lion machine:
    =====================
    global thumbDrive
    global thumbDrive2
    global hardDrive
    global thePath
    global filePath
    try
      -- The following PowerMate tell informs the powermate device "One button" to set it's light to a slow pulse rate.
              tell application "PowerMate"
      pop light state
                        set aDevice to first device
                        tell aDevice
      make light state with properties ¬
                                            {state type:pulsed, pulse rate:0.2, name:"Alert x3"}
                        end tell
              end tell
    on error
              display dialog "Powermate device not detected." buttons {"Ok"} default button 1
    end try
    tell application "Finder"
      delay 2 -- This delay allows the thumbdrive or volume to fully mount before trying to pull data from it.
              set hardDrive to (get name of startup disk) as alias -- Sets hardDrive to disk 0 for error checking
              set thumbDrive to (get name of disk 1) as alias -- This sets an alias of the name of disk 1 for error checking
              set thumbDrive2 to (get name of disk 1) -- This set the actual path of disk 1
              if thumbDrive is equal to hardDrive then -- Checks to see if disk 1 is equal to disk 0 if so we move on to setting thumbDrive to disk 2 in the following try
                        try
                                  set thumbDrive to (get name of disk 2) as alias -- check for global variables
                                  set thumbDrive2 to (get name of disk 2)
                        on error
                                  set thumbDrive to (get name of startup disk) as alias
                        end try
              end if
              set filePath to POSIX path of thumbDrive2 -- Sets the posix path of the thumbdrive
    end tell
      -- The following sets and formats the file name to the date and time.
    on recordMovie() -- This is a function for actually recording the video and saving it
              with timeout of 86400 seconds -- sets the timeout of the session to 24 hours
      repeat
                                  set buttonAnswer to "Ok"
                                  tell application "Finder"
                                            set theDate to current date
                                            set y to the year of theDate
                                            set m to month of theDate
                                            set d to day of theDate
                                            set h to hours of theDate
                                            set mi to minutes of theDate
                                            set s to seconds of theDate
                                            set thePath to filePath & "/" & y & "-" & m & "-" & d & "_" & h & "-" & mi & "-" & s & ".mov"
                                  end tell
                                  tell application "QuickTime Player"
      activate
      new movie recording
      present document 1 -- Sets the recording to full screen mode, hiding everything else on screen
                                            beep
                                            display dialog "Press button when you are ready to record" buttons {"RECORD"} default button 1
                                            try
                                                      tell application "PowerMate" -- Tells the powermate device to pulse quickly once we start recording
      pop light state
                                                                set aDevice to first device
                                                                tell aDevice
      make light state with properties ¬
                                                                                    {state type:pulsed, pulse rate:0.4, name:"Alert x3"}
                                                                end tell
                                                      end tell
                                            on error
                                                      display dialog "Powermate device not detected." buttons {"Ok"} default button 1
                                            end try
      start document 1 -- starts recording
                                            set answer to the button returned of (display dialog "Press button to stop recording." buttons {"STOP"} default button 1)
      stop document 1
                                            repeat
                                                           try
                save document 1 in thePath
                                                                          exit repeat
                                                           on error
                                                                          display dialog "There was an error saving your recording to your thumb Drive. Plug your thumbdrive back in and click ok" buttons {"Ok", "Cancel Do not save"}
                                                                          set buttonAnswer to the button returned of the result
                                                                          if buttonAnswer is equal to "Cancel Do not save" then exit repeat -- exit the save repeat
                                                                          delay 3
                                                           end try
                                            end repeat
      close document 1
                                            quit
                                  end tell
                                  if buttonAnswer is equal to "Cancel Do not save" then exit repeat -- exit the function repeat
                                  tell application "Finder"
      activate
                                            display dialog "Press Ok to record again, or eject to eject your thumb drive." buttons {"Ok", "Eject"}
                                            set buttonAnswer2 to the button returned of the result
                                            if buttonAnswer2 is equal to "Eject" then exit repeat
                                  end tell
                        end repeat
                             tell application "Finder"
                eject thumbDrive
                delay 5
           end tell
          end timeout
    end recordMovie
    if hardDrive is equal to thumbDrive then -- This script will run whether a volume is inserted or ejected this if statement kills the script if it was an ejection.
    else
              try
                             tell application "System Events" -- The following checks to see if there is more than 500MB of space on the drive, if less than it prompts the user.
               set freeSpace to round ((free space of disk thumbDrive2) / 1024 / 1024 / 1024)
               set spaceNeeded to "0.5"
           end tell
              end try
              if freeSpace is less than spaceNeeded then
                        tell application "Finder"
      activate
                                  display dialog "You may not have enough free space, you should have atleast 500 MB availble for an hour long recording." buttons {"Eject Disk", "Continue Anyway"}
                                  set buttonContinue to the button returned of the result
                        end tell
                        if buttonContinue is "Eject Disk" then
                                  tell application "Finder"
      eject thumbDrive
                                            delay 5
                                  end tell
                        else
      recordMovie() -- calls the record movie function if the user chooses continue instead of eject
                        end if
              else
      recordMovie() -- calls the record movie function if there is more than 500MB on the volume
              end if
    end if
    try
              tell application "PowerMate" -- This tells the powermate "One button" to turn off it's pulse and be dark.
      pop light state
                        set aDevice to first device
                        tell aDevice
      make light state with properties ¬
                                            {state type:steady, brightness:0.0, name:"Alert x3"}
                        end tell
              end tell
    on error
              display dialog "Powermate device not detected." buttons {"Ok"} default button 1
    end try
    ======================
    In Console messages I was finding the following along with error -1708:
    .sdef warning for argument 'FileType' of command 'save' in suite 'Standard Suite': 'saveable file format' is not a valid type name.
    So, I thought I'd change the save line as follows:
         save document 1 as "QuickTime movie" in thePath
    While this didn't solve the problem, it threw an error and allowed the script to continue with the error dialog rather than hang.
    Interestingly, though, the Snow Leopard machine seems to register the same error and yet still manages to save the file correctly.
    Any thoughts?
    Cheers,
    Anthony

    Uninstall Parallels using the uninstaller that came with Parallels. Remove all third-party peripherals. Then restart the computer.

  • Does the RFFOEDI1 program has any implication on the ACH direct deposit?

    Hi all,
    Can any one please explain the use of RFFOEDI1 program. Is this
    program used just to generate I-Doc?
    Scenario: For Check payment method(C)
    Once F110 run is successful, then we have to run RFFOUS_C program to
    generate checks. Once this program is complete, checks will be
    generated and the check info will be available in PAYR table.
    Scenario: For ACH-CCD payment method (D)
    Once F110 run is successful with payment method D, The payment details
    will hit BSAK table.
    Now, I don't want to generate the SAP standard I-Doc with RFFOEDI1, do
    I still need to run RFFOEDI1 program???
    For the check payment, RFFOUS_C program triggers the generation of
    checks after which the check info will be available in PAYR table
    Likewise, does the RFFOEDI1 program has any implication on the ACH
    direct deposit?
    To my understanding, If you do a payment using payment method, ACH
    direct deposit in SAP, we don't generate any check numbers ???!!!
    Do we get any reference number or anything when the direct deposit is
    done??? This reference number could be used to trace the invoice
    against which this ACH payment was done!
    If it is the case, where do we get/ when do we generate the reference
    number to trace the invoice????.....any inputs?
    If we are not going to run RFFOEDI1 program, (if we are not interested
    in generating IDoc) then are we DONE with the ACH direct deposit, once
    we are done with payment run(F110)???
    Where do we get the reference number which specifies the ACH payment?
    Sorry, I have poured in lot of question at one place!
    Any inputs/ solutions/ suggestions are greatly appreciated!
    Thanks a lot!

    RFFOEDI1 is typically used when payments to vendors are to be sent by an EDI 820 file to the bank. This program generates the PEXR2002 idoc. The idocs are sent to the EDI translator where these are mapped to an EDI 820 file format and sent to the bank.
    Scenario ACH-CCD payments method (D)
    If you do not want to send EDI 820 payments, you would typically not generate the idoc - in which case - you dont have to use RFFOEDI1. This probably means that (a) you are using the RFFOUS_T program for generating the payment medium or (b) you are using the payment medium workbench to generate the ACH file (NACHA format) for your house bank.
    You do have to send an ACH file to the bank for paying your vendors - which means - you are probably using one of the above methods to generate the file.
    ACH Direct Deposit
    I am assuming that you are probably referring to ACH-PPD type payments here. You would still have to send the payment medium using one of the methods mentioned above.
    In all ACH scenarios, your payment document number, is your reference number that was used to clear the open item.
    Hope this helps.

  • Select for all entries in table - only interested in the top entry

    Hi gurus,
    I have a general question: We have the task to select entries from a certain database table (that possibly holds millions of entries in the productive environment).
    We also have an internal table at out hands that holds all candiates e.g a material number for which we want to select the data. That table can hold a few hundred entries.
    In this task we are only interested in the 'youngest' entry for a given material - for that we a 'timestamp' in the key fields that should be used.
    The data base table has various other key fields so that we can have multiple entries for each material.
    What is the best/most efficient way to code it?
    One select ?
    Select and sort afterwards etc.?
    Thanks for any coding suggestion!
    CN.

    >
    Siegfried Boes  wrote:
    > [email protected].
    >
    > I think the discussion is to general, you must be more specific with one example if you want to know more.
    Hi Siegfried,
    Thank you for your extensive remarks.I give it a shoot to provide a little more detail.
    Let's assume we have the following table Z_TIMESTAMP:
    Keyfields in that order:
    TIMESTAMP  type     TIMESTAMP
      VTWEG            type     VTWEG
      KSCHL            type     KSCHL
      MATNR            type     ZZ_MATNR
    Non key fields 
    Z_AMOUNT    type   CURR
    The task is now to obtain for multiple MATNRS with multiple VTWEGS in each case the TOP entry in regard to TIMESTAMP field.  KSCHL is not known.
    Meaning the access happens w/o knowing the 1st keyfield. When I got you right an index (if one has to be designed) has to exclude the field TIMESTAMP but include VTWEG and KSCHL.
    The actual interest lies in the field  Z_AMOUNT that is not part of the key.
    I hope these details help!
    I guess I have to loop for each select and probably to work w/ ranges here.  As it can have usually up to three different MATNRs it has to check at a time (The 'youngest' entry of the 'up to three' MATNRs satisfies the requirement - think of different bundles of the same material).
    Can a loop be avoided ?
    Thanks.
    CN.

  • Any interest in daily built e17 cvs snapshots?

    Hi i have created a system for myself in which i build, mostly daily, a bleeding edge version of e17. I do not wish to compete with the rensel repository, I only want to find out if there is any interest, as i build them anyway for private use. If there is enough interest i can create an unofficial repository.
    btw I create the following packages:
    ecore-CVS_20050326-1.pkg.tar.gz
    epeg-CVS_20050326-1.pkg.tar.gz
    e-CVS_20050326-1.pkg.tar.gz
    epsilon-CVS_20050326-1.pkg.tar.gz
    edb-CVS_20050326-1.pkg.tar.gz
    erss-CVS_20050326-1.pkg.tar.gz
    edje-CVS_20050326-1.pkg.tar.gz
    esmart-CVS_20050326-1.pkg.tar.gz
    eet-CVS_20050326-1.pkg.tar.gz
    etox-CVS_20050326-1.pkg.tar.gz
    elicit-CVS_20050326-1.pkg.tar.gz
    e_utils-CVS_20050326-1.pkg.tar.gz
    embryo-CVS_20050326-1.pkg.tar.gz
    evas-CVS_20050326-1.pkg.tar.gz
    emotion-CVS_20050326-1.pkg.tar.gz
    evidence-CVS_20050326-1.pkg.tar.gz
    engage-CVS_20050326-1.pkg.tar.gz
    ewl-CVS_20050326-1.pkg.tar.gz
    engrave-CVS_20050326-1.pkg.tar.gz
    examine-CVS_20050326-1.pkg.tar.gz
    entice-CVS_20050326-1.pkg.tar.gz
    iconbar-CVS_20050326-1.pkg.tar.gz
    entrance-CVS_20050326-1.pkg.tar.gz
    imlib2-CVS_20050326-1.pkg.tar.gz
    envision-CVS_20050326-1.pkg.tar.gz
    imlib2_loaders-CVS_20050326-1.pkg.tar.gz
    Best regards Nick.

    cdk wrote:
    WOW ..... e17 rocks.  i just tried it out!  its flipping sweet m8s!  i havent spent much time in it but is it very usable.  i dont mean it has to be super stable but is is usable enough for everyday?
    cheers,
    cdk
    Yes it is usable, though it seems to crash now and then sometimes, I've ran it without any problem for several days. Also keep an eye on http://lude.net/edocs/, the unofficial documentation. It is usually quite up to date.
    The only disturbing thing about e17 is that there are almost no eapp files included by default.
    perhaps I should include some additional eapp files in my builds and extend the menu a bit. Another thing you should try is load engage instead of ibar, as it is a wonderfull dockapp and a lot more.
    For that do the following, all steps only required once:
    load the engage module:
    open a terminal and run /opt/e17/bin/enlightenment_remote -module-load /opt/e17/lib/engage/module.so
    then disable ibar:
    left click on the desktop | modules | ibar | toggle enable
    populate ~/.e/e/application/engage/.order with for example
    [nick@Nick ~]$ cat .e/e/applications/engage/.order
    kontact.eapp
    azureus.eapp
    gimp.eapp
    firefox.eapp
    enterminus.eapp
    xmms.eapp
    evidence.eapp
    konqueror.eapp
    pan.eapp
    gtick.eapp
    all eapp files should be in ~/.e/e/applications/all/ and can be made using  e_util_eapp_edit from the e_util package.
    After that enable engage in the same way as you disabled ibar:
    left click on the desktop | modules | engage | toggle enable
    You can create a wallpaper with e17setroot, it will set it as a background after it creates it, and it stores your background file somewhere in your ~/.e tree. After that you can use emblem to switch/choose any wallpaper you created in that way.
    except for the engage module you can load several others too, they can be found in /opt/e17/lib/enlightenment/modules and most aren't loaded by default. if a module is not loaded it will not be listed in the e17 menu.
    Hope this helps a lot of people
    EDIT:
    I added the icons suggested on http://aje.codewordt.co.uk/ from one of the devs of e17. I do not know if you have to delete your ~/.e before they are picked up, anyway just reinstall e for it to work.

  • Adobe Flash embeds will not be animated if they are completely hidden by another tab, window, or by scrolling down. If any part of the Flash is made visible, it will play again.

    Pretty much what's up there.
    If there's a Flash open, and I scroll down/open a window/open a new tab such that it is not visible anymore, it will not be animated. It freezes until any portion of it is visible again. This wasn't happening before a flash update, I believe.

    They will stay on the screen.  However, Process Monitor is only intended for advanced users.  It is recommended that users try to navigate to the troublesome registry key using regedit, and see if they can access it or not without an error.  This is far easier than trying to use Process Monitor, which is very complicated.
    I used Process Monitor to confirm that it was just that key which was causing the problem, and not others.  Process Monitor is not to be confused with the new Resource Monitor which is accessible via Task Manager in Windows 7 (and possibly Vista).  If you must experiment (and Process Monitor is very useful for diagnosing many deep-level problems if you know what you're looking for) Process Monitor can be downloaded from here:
    http://technet.microsoft.com/en-us/sysinternals/bb896645
    It replaces the older Sysinternals "FileMon" and "RegMon".  For those interested in the technical side, I had to setup a number of filters to be able to get the results display as in the screenshot.  First of all to just show Registry events.  Then to just show events from the manual Flash activeX installer executable.  The I added a filter to show only non-successfull results.  And finally, for the purposes of the screenshot, added a filter to just show those with "Access Denied", since other non-critical errors are also picked up due to missing keys because installation has not yet been fully completed I guess.   When experimenting, most of these filters were applied using the "is not" boolean logic, which will make sense if you experiment with the program.
    Without adding any filters, it picks up so many events (hundreds per second) that it's otherwise unusable.  e.g. 40,000 events within the first few seconds of opening the program. For this reason, I recommend simply using Regedit to diagnose the problem with the particular Flash registry key.

  • Any interest in sending emails as Outlook appt. request???

    All,
    I recently had a business need to send emails as meeting requests in Outlook. There are two ways to do this:
    1. The appt is sent as an attachment that a user can open and accept.
    2. The appt is sent as the email.
    The latter was the business requirement. This is done be combining a vcalendar standard with some things that Outlook needs to see the email as an appointment.
    It was a pain in the butt but I've made progress and got it working. It will NOT work with APEX_MAIL.
    I'm posting this because I know this is not just ApEx specific but if some people are interested, and the forum administrators don't mind, I'll post some details to get the ball rolling for others.
    Please respond to this if you are interested.
    Regards,
    Dan

    All,
    Of the two methods I mentioned before I will explain the second: sending the appointment as the email. The trick here, and the reason APEX_MAIL will not work, is that the email is a MIME multipart message that consists of two parts: the icalendar object and the regular message data. APEX_MAIL, at least for now ;), is not robust enough to allow us to create and specify the custom MIME types needed. For the basics on multipart messages see the following...
    http://en.wikipedia.org/wiki/MIME#Multipart_Messages
    For those of you that have the ability to use Java, the javax.mail package will work BUT REQUIRES MODIFICATION. See the following for details...
    http://forum.java.sun.com/thread.jspa?threadID=169827&start=0&tstart=0
    If you would prefer to keep your solution in PL/SQL or do not have the ability to use Java, I've included a specification and body for a basic procedure, SEND_MAIL, that can be added to any package. This is only a basic procedure to help get you started and requires EXECUTE ON UTL_SMTP.
    All you have to do is call the SEND_MAIL procedure passing a valid icalendar object to the p_body_cal parameter. For details on that see the following…
    http://en.wikipedia.org/wiki/ICalendar
    I HIGHLY recommend creating a function to create your icalendar objects for you. Let me know if you would like an example of such a function.
    SEND_MAIL spec
       PROCEDURE send_mail (
          p_from         IN  VARCHAR2
        , p_to           IN  VARCHAR2
        , p_subj         IN  VARCHAR2
        , p_body_html    IN  VARCHAR2
        , p_body_cal     IN  VARCHAR2
       );SEND_MAIL body
       PROCEDURE send_mail (
          p_from         IN  VARCHAR2
        , p_to           IN  VARCHAR2
        , p_subj         IN  VARCHAR2
        , p_body_html    IN  VARCHAR2
        , p_body_cal     IN  VARCHAR2
       AS
          l_connection   UTL_SMTP.CONNECTION;
          l_mail_server  VARCHAR2(255) := 'mail.yourserver.com';
          l_mail_port    PLS_INTEGER := 25;
          l_msg_hrd      VARCHAR2(32767);
          l_msg_body     VARCHAR2(32767);
          l_lf           VARCHAR2(2) := CHR(13)||CHR(10);
       BEGIN
          l_msg_body := ''
             || 'Date: ' || TO_CHAR(SYSDATE,'DAY, DD-MON-RR HH24:MI') || l_lf
             || 'From: <' || p_from || '> ' || l_lf
             || 'Subject: ' || p_subj || l_lf
             || 'To: ' || p_to || l_lf
             || 'MIME-Version: 1.0' || l_lf
             || 'Content-type: multipart/mixed; boundary="frontier"' || l_lf
             || '--frontier' || l_lf
             || 'Content-Type: text/calendar' || l_lf
             || 'charset="utf-8"' || l_lf
             || 'method=REQUEST' || l_lf
             || 'component=vevent' || l_lf
             || l_lf
             || p_body_cal || l_lf
             || '--frontier' || l_lf
             || 'Content-Type: text/html' || l_lf
             || 'charset="utf-8"' || l_lf
             || l_lf
             || p_body_html || l_lf
             || '--frontier--';
          l_connection := utl_smtp.open_connection(l_mail_server, l_mail_port);
          utl_smtp.helo(l_connection, l_mail_server);
          utl_smtp.mail(l_connection, p_from);
          utl_smtp.rcpt(l_connection, p_to);
          utl_smtp.data(l_connection, l_msg_body);
          utl_smtp.quit(l_connection);
       END send_mail;Good luck and happy coding.
    Regards,
    Dan
    I forgot to define l_lf...
    Message was edited by:
    dmcghan

  • Is there any benchmarks about the performance of BI web Intelligence

    Need to know any benchmarks about the performance of business objects web intelligence report against number of records stored in a relational database

    There no as such benchmark. However you can verify the actual time take by report query when fired directly on DB and time taken by Report to execute. and if there is lots of difference, then those report would ideal for tuning.
    e.g. if MOnthwise revenue report takes 5 mins and the actual query takes only 1.5 mins when fired directly on DB. that means something wrong with universe/reports.
    I hope this help you to get started.
    Please share your exp. its interesting to know.
    --Kuldeep

  • Any interest in a medical repo?

    Hi all,
    As a med student with an interest in linux I was wondering if there was any interest in a medical repo? I have made a few packages for personal use, mostly DICOM viewers and libraries, one of which is in AUR and the rest of which will follow soon. There is quite a lot of open source medical stuff though, and I know there is a medical repository for debian, so if there was interest I could package these too.
    I have hosting that should give me enough bandwidth (unless there are more arch-using medics out there than I thought:)). Let me know what you think.
    Stewart

    Quite old when looking at the dates but I think I'm interested in it.
    I'm a radiologist and quite like things working. The distro of my choice is arch, unfortunately the amounts of working dicom viewers is approaching zero.
    Besides I like the simple workflow of Arch I'm forced to use three different OS at the moment. (Arch, Win7 and MacOS).
    Standard is Arch, Win7 for scientific papers..thanks to endnote. And the MacOS with OsiriX as DICOM viewer.
    In some harsh words: That sucks alot!
    Besides there are good programs in my Arch world like the DICOM viewer ginkgo-cadx https://aur.archlinux.org/packages.php?ID=47365 or the citation managers zotero https://aur.archlinux.org/packages.php?ID=46784  / mendeley https://aur.archlinux.org/packages.php?ID=44071
    I think other programs like GNUmed or maybe aeskulap and many more are also helpful for your daily workflow.
    The problem as a doctor is you need things just working everytime and anywhere and for me I'm just to stupid to build and fix things myself.
    I've tried though but I failed so far. For these cases I need alot assistance.
    So if we could form a team, help each other out and could assure PKBUILD files in the AUR work out of the box I would be totally in. I don't think we need a medical repo. AUR is working quite well.
    Anyone else?

  • Any interest in a repo of cross-compilers?

    I recently had to make a couple of cross-compilers for a project that I was working on and wondered if there was any interest in a repo for cross-compilers?
    These are compilers that I know I can easily build (target triplet in brackets)
    linux-32bit:
    arm (arm-none-linux-gnueabi)
    ppc (powerpc-unknown-linux-gnu)
    mips (mips-unknown-linux-gnu / mipsel-unknown-linux-gnu)
    sparc (sparc-unknown-linux-gnu)
    linux-64 bit:
    alpha (alpha-unknown-linux-gnu)
    mips64 (mips64-unknown-linux-gnu / mips64el-unknown-linux-gnu)
    sparc64 (sparc64-unknown-linux-gnu)
    ppc64 (powerpc64-unknown-linux-gnu)
    hppa (hppa-unknown-linux-gnu)   [probably...]
    other:
    windows (i686-pc-mingw32)
    And some that I think can be done and would be quite interesting...
    bsd (i686-pc-kfreebsd-gnu) - the start to the often suggested ArchBSD maybe...
    hurd (i686-pc-gnu) - ArchHURD anyone?  I didn't think so! 
    So, would these be useful for anyone and are there any other architectures people would like?
    For those that are interested, my mingw32 compiler PKGBUILDs are here.  They are quite different to those in the [community] repo...

    I'll be doing lots of stuff with arm since I'm starting to make some homebrew apps for nds.
    But I'm already using:
    pkg: cross-arm-elf-binutils
    pkg: cross-arm-elf-gcc-base

  • Another Kernel pkg: any interest?

    Hey guys, I am just trying to see if there is any interest for yet another kernel set for arch.
    Basically, I had gotten in the habit of building my own kernel package (called neotweek) since about 2.6.19 based on a patchset that was a modification of kamikazee that centred around the ck patches and scheduler. I stopped working neotweek when CK stopped developing for the linux kernel; but I was wondering if people would be interested in a legacy pkg build of this particular kernel. Here is the broken-out patch list.
    2.6.22-sd-1.0-boost.patch
    2.6.22-sd-1.0-boost-tunable.patch
    acpi-buggy-bios.patch
    acpi-dsdt-initrd-v0.8.4-2.6.22.patch
    ahci-link-power-management-2.6.22.patch
    alsa-cvs-20070721-2.6.22.patch
    atapi-asynchronous-notification-2.6.22.patch
    aufs-cvs-071807-2.6.22.patch
    centrino_undervolt.patch
    cpu-support-rollup-2.6.22.patch
    enable-4k-stacks-default-2.6.22.patch
    ene-cardreader-support-2.6.22.patch
    ext4-updates-2.6.22.patch
    genpatches-2.6.22-2.patch
    gspca-20070508-2.6.22.patch
    hrtimers-2.6.22-1.patch
    hz-864-kconfig-option.patch
    ipw2100.patch
    ipw2200-1.2.2-2.6.22.patch
    ipw3945-1.2.1-2.6.22.patch
    iwlwifi-0.1.2-2.6.22.patch
    linux-phc-0.3.0-pre1-2.6.22.patch
    mactel-patches-2.6.22-1.patch
    neotweek-version.patch
    patch-2.6.22.1
    patch-2.6.22-ck1
    powertop-2.6.22.patch
    realtime-lsm-2.6.22.patch
    reiser4-2.6.22.patch
    sata_nv-sw-ncq-support-2.6.22.patch
    series
    suspend2-2.2.10.2-for-2.6.22.patch
    toshiba-bluetooth.patch
    udf-2.50-2.6.22.patch
    unionfs-2.6.22.patch
    usb-storage-unusual-devs.patch
    uvesafb-0.1-rc3-2.6.22.patch
    xpad-360-support-2.6.22.patch
    This build seems to work well with the arch boxes I use, but I wanted to see if there was any community interest in such a kernel before I go through the efforts to cleanup the PKGBUILDS and sanitizing the default configs, etc etc for an AUR submission.
    PS - the centrino undervolt patch is my own personal patch for manual undervolting of centrino sonoma cpus.

    Hey guys, I am just trying to see if there is any interest for yet another kernel set for arch.
    Basically, I had gotten in the habit of building my own kernel package (called neotweek) since about 2.6.19 based on a patchset that was a modification of kamikazee that centred around the ck patches and scheduler. I stopped working neotweek when CK stopped developing for the linux kernel; but I was wondering if people would be interested in a legacy pkg build of this particular kernel. Here is the broken-out patch list.
    2.6.22-sd-1.0-boost.patch
    2.6.22-sd-1.0-boost-tunable.patch
    acpi-buggy-bios.patch
    acpi-dsdt-initrd-v0.8.4-2.6.22.patch
    ahci-link-power-management-2.6.22.patch
    alsa-cvs-20070721-2.6.22.patch
    atapi-asynchronous-notification-2.6.22.patch
    aufs-cvs-071807-2.6.22.patch
    centrino_undervolt.patch
    cpu-support-rollup-2.6.22.patch
    enable-4k-stacks-default-2.6.22.patch
    ene-cardreader-support-2.6.22.patch
    ext4-updates-2.6.22.patch
    genpatches-2.6.22-2.patch
    gspca-20070508-2.6.22.patch
    hrtimers-2.6.22-1.patch
    hz-864-kconfig-option.patch
    ipw2100.patch
    ipw2200-1.2.2-2.6.22.patch
    ipw3945-1.2.1-2.6.22.patch
    iwlwifi-0.1.2-2.6.22.patch
    linux-phc-0.3.0-pre1-2.6.22.patch
    mactel-patches-2.6.22-1.patch
    neotweek-version.patch
    patch-2.6.22.1
    patch-2.6.22-ck1
    powertop-2.6.22.patch
    realtime-lsm-2.6.22.patch
    reiser4-2.6.22.patch
    sata_nv-sw-ncq-support-2.6.22.patch
    series
    suspend2-2.2.10.2-for-2.6.22.patch
    toshiba-bluetooth.patch
    udf-2.50-2.6.22.patch
    unionfs-2.6.22.patch
    usb-storage-unusual-devs.patch
    uvesafb-0.1-rc3-2.6.22.patch
    xpad-360-support-2.6.22.patch
    This build seems to work well with the arch boxes I use, but I wanted to see if there was any community interest in such a kernel before I go through the efforts to cleanup the PKGBUILDS and sanitizing the default configs, etc etc for an AUR submission.
    PS - the centrino undervolt patch is my own personal patch for manual undervolting of centrino sonoma cpus.

  • Hi, I´m new at the community. My book about the life of a bull who died in a bull fight was a best seller in Perú, and is been studied in many schools there. But I don't live there any more. People ask me about the book and is not any more at the lib

    Hi, I´m new at the community. My book about the life of a bull who died in a bull fight was a best seller in Perú, and is been studied in many schools there. But I don't live there any more. People ask me about the book and is not any more at the libraries. I would like to make a tradition to english, portugues, and may be another language that could be interesting to do.
    I am a psychologist with an specialization in couple and family therapy. I am writing more and more material and the people who reads me are asking me more.
    My mother thong is Spanish, my second Portuguese , and my third is english. I apologize if I make some mistakes trying to express myself.
    The situation is that I need to upload my book to iBook and I don't know how to do it. If I can pass that step I will like to upload more material I am sure people will enjoy and learn as they did with my first one.
    I really appreciate any help.
    Oliveste

    oliveste wrote:
    I need to upload my book to iBook and I don't know how to do it.
    Read the FAQ and come back if you have questions after you have signed up
    http://www.apple.com/itunes/working-itunes/sell-content/books/book-faq.html

  • Is there any BAPI returning the affected organisational units to users?

    Dear all,
    I would like to ask a question about organizational units. Whenever I want to affect a user to a given unit I
    use PPOME transaction. If I want to do this in ABAP level I use the function module RH_RELATION_WRITE.
    I would like to know, is there any BAPI returning the affected organizational unit to a given user?
    Thanks in advance,
    Kind Regards,
    Dariyoosh

    Alberto Sesma wrote:
    You can use Function Module RH_STRUC_GET
    >
    >
    > CALL FUNCTION 'RH_STRUC_GET'
    >   EXPORTING
    >      ACT_OTYPE = 'US'
    >      ACT_OBJID = user_name
    >      ACT_WEGID = 'US_CP_O'
    >   TABLES
    >        RESULT_TAB = LT_RESULT_TAB.
    >
    >
    > You will get the related org units in LT_RESULT_TAB. There are other two table parameters in that function module that you may find useful.
    >
    > If the function does not return any valid data you may try with other values for WEGID. You will find all the possible evaluation paths in transaction OOAW.
    >
    > Kind regards
    Dear Alberto,
    Thank you very much for your answer. I didn't know this FM and it solved my problem.
    For those who may be intered here is exactly I proceed. Suppose that in the table HRP1000 you have an
    structure (type S) with ObjID = 50000342 and you wish to have the SapUserID of the affected persons.
    DATA:
          affected_users TYPE STANDARD TABLE OF swhactor,
          user LIKE LINE OF affected_users.
    START-OF-SELECTION.
      CALL FUNCTION 'RH_STRUC_GET'
        EXPORTING
          act_otype              = 'S'
          act_objid              = '50000342'
          act_wegid              = 'A008'
          act_plvar              = '01'
          act_begda              = sy-datum
          act_endda              = sy-datum
          act_tdepth             = 0
       TABLES
         result_tab             = affected_users
    EXCEPTIONS
       NO_PLVAR_FOUND         = 1
       NO_ENTRY_FOUND         = 2
       OTHERS                 = 3
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      LOOP AT affected_users INTO user.
        WRITE: / user-objid.
      ENDLOOP.
    Also in transaction OOAW we can have all possible values for the third argument of the module function (act_wegid).
    For those who are interested, here are a few among many possible values which seem to be intesting for my
    problem.
    DFPS_DG1----
    Organizational Unit of User
    DFPS_DG3----
    All Org. Units Above a User
    ORGAS----
    Closest Organizational Unit and structure
    ORGASS----
    Closest Organizational Unit and structure     
    PPLEORG     -
    Organizational unit of an employee or position
    SAP_ORGP----
    Organizational assignments of a user/person
    SAP_USOG----
    Organizational Assignments of a User
    SAP_US_S----
    Positions and Personnel Number of a User
    US_S_S_C----
    All positions and jobs of a user
    WFM_ORGU----
    Organizational Assignment of User
    WF_ORGUN----
    Organizational unit of a user/person (module id Ben./Pers.)
    For example, let's say we have a userid named MYUSER01 and we would like to find all structures to which the user
    is affected. Here is how I proceed.
    DATA:
          itab_user_structures TYPE STANDARD TABLE OF swhactor,
          row_user_structures LIKE LINE OF itab_user_structures.
    START-OF-SELECTION.
    CALL FUNCTION 'RH_STRUC_GET'
        EXPORTING
          act_otype              = 'US'
          act_objid              = 'MYUSER01'
          act_wegid              = 'US_S_S_C'
          act_plvar              = '01'
          act_begda              = sy-datum
          act_endda              = sy-datum
          act_tdepth             = 0
       TABLES
         result_tab             = itab_user_structures
    EXCEPTIONS
       NO_PLVAR_FOUND         = 1
       NO_ENTRY_FOUND         = 2
       OTHERS                 = 3
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      LOOP AT itab_user_structures INTO row_user_structures.
        WRITE: / row_user_structures-objid.
      ENDLOOP.
    Thank you very much for your help.
    Kind Regards,
    Dariyoosh

Maybe you are looking for