How can we share knowledge such as sample projects and OPA standards?

Is there a place for the community to share things? For instance, we have been working on OPA standards, etc. It might be nice for other people to be able to comment on or reuse what we have created.
We also have example projects we are creating to prove concepts. As an example, we created a project to demonstrate temporal reasoning. This project answers questions such as "How do we make corrections to mistakes put into production for rate tables or temporal rules?" "How are general additions, subtractions, and modifications of rules handled when the rules are temporal?" "How do you unit test temporal rules to make sure they will not break at some point in the future?"
These questions were not easy to answer, so it would be nice to share our solutions and see what the community thinks.

Is the rule exchange down? http://www.ruleexchange.com/
I had time today and wanted to upload a sample "OPA Standards and Guidelines" document for the group's feedback... It is a rough draft, but feedback would help improve the quality of our work.
If I can manage it, I also wanted to upload a sample project that explains and demos temporal reasoning as we understand it. In light of some recent conversations on date usage, it seemed appropriate.

Similar Messages

  • How can I share address books between Mac's and ipod touch and iphone

    I try to share some of the address books with my family on our Macbooks, ipod touch and ihopnes.
    Similar as with iCal via the cloud.
    Is this possible ?

    HI Sig,,
    I have enabled the address book in icloud. But I do not se a buttonin the address book where I can make the choice which address book to share ?
    Any suggestion ?

  • How can i share my iTunes between my iMac and a pc with auth going on the web

    i like to share my iTunes as home sharing with my iMac 27 inch late 2009 processor 2.8 ghz os x yosemite  10.10    
    and a Asus laptop window8 with auth using iCloud

    When you say you have a shared library... you mean you have a networked external hard drive that you are sharing?
    In iTunes, generally...when the term Shared Library is used, it's speaking to sharing a specific computer's library over the network with different computer.
    I would think it would be better to do what ya'll have been doing (one log in acct/one computer) and have her create her own Apple acct and each of you log in and out whenever purchasing music apps etc. and then setup individual playlists and pick specific playlists to sync with each individual iPhone.
    If you don't want each other to know what you're buying then...disregard what I just said

  • HT204053 We have two Iphone 4S but we set each one up with different accounts, how can we share purchased or downloaded music from and iTunes card without purchasing twp different cards?

    We have two Iphone 4s with different accounts, what would we need to do to share music from and Itune card if one of us purchased and the other did not?

    Put all of the music on the computer(s) to which you sync, then sync to your idevices

  • How can I share files in airdrop between mac and phone without having setting turned to "everyone"?

    I'm trying to utlitise airdrop between my MBP and iPhone 5s. I have the same icloud account for both, but when I have airdrop set to "contacts only" on either device the other is not visible. I have to set either device that I am trying to send to as visible to Everyone for it to show up on the other.
    I have myself in my contact book as well so I should technically come up as a contact I would think? I'd rather not have to have visibility set to "everyone" if I can help it.
    Any advice?
    Thanks

    Handoff Continuity Troubleshooting

  • How can I add an image to a project and change it at runtime?

    I'm using JBuilder6 and I thought I saw a control to add images but I can't find it. I also wanted to be able to change the control at runtime. Also how should I specify the path so it knows how to use it? I hate to hard code one in. Since this is probably gonna be ported to other OS does Java have a way around this? I was going to put the images into my project's directory. For me to be able to just include the file w/the extension do I need to put it in the src folder or will the main directory be accessible?

    To add an image, or other source file with JBuilder, you have a button call "Add to project", his icon is a folder with a green cross.
    To call the Image os independant, I sugest you to put your images in a folder "image" in your project folder. Then to call them, you could use this :
    image=new ImageIcon(AClass.class.getResource("image"+java.io.File.separator+imageName));Where AClass is a class of your project, in general, the class where you call getRessource;
    "image" is the name of the under folder where are the image in your project folder;
    imageName is a string with the name of the file witch contains the image, for exemple : "my image.gif"I hope I help you.
    JHelp.

  • How can I share my iTunes library with 2 iTunes accounts?

    How can I share my iTunes library between me and my wife?
    I do not want to set-up 2 seperate accounts on my mac. Do not want to do home sharing or anything like this. 
    I just would like to connect my iPad to ONE itunes library and at the same time connect my wifes iPad to the SAME itunes library. Can this be done? How? Thanks! Maybe the answer is something really easy like "just connect both to the computer and sync them".
    Thanks!

    g71.engstrom wrote:
    I just would like to connect my iPad to ONE itunes library and at the same time connect my wifes iPad to the SAME itunes library. Can this be done? How?
    Plug them in and use them.
    That is all you need to do.
    In the answer from Apple I do not find anything about how the 2 exisiting iTunes accounts will be handled.
    They will be handled fine.
    All purchases from both iTunes accounts can be sync'd to both/either iPads with no problem.
    I have three iTunes accounts (me and two daughters), 3 iPhones, an iPad and a few iPods.
    Any/all content can be sync'd to any device, no problems.

  • How can i share a slideshow that i made with 8 people can i email it to them. it contains 2 200 pictures

    How can i share a slideshow containing @ 200 pictures and music with 8 friends? can i email it to them?

    Export it to the Desktop using the File -> Export commad. This makes a movie of it and you can then share that.
    I would caution you that as movie files are very large you might be best uploading to a sharing site or service like Dropbox and sending them a link

  • How can I share Pin variable between two packages?

    Hi every one,
    Is there any one who knows how can I share Pin variable that it is defined with OwnerPin between two packages in java card( with eclipse 3.1),I studied Sharing Interface subject and I knows it teorical but I can not do it practical .
    I can share primitive data type but I can not share Ownerpin.
    If anybody has some sample codes or knows any link ,please inform me.
    My code is same as below:
    //In Server Side
    package ginaPack;
    import javacard.framework.*;
    public class GinaApplet extends Applet implements GinaInterface{
    OwnerPIN pin;
    private GinaApplet (byte[] bArray,short bOffset,byte bLength) {
        pin =new OwnerPIN(PIN_TRY_LIMIT,MAX_PIN_SIZE);
              byte PinTemp[] = new byte[4];
              PinTemp[0] = (byte) 0x31;
              PinTemp[1] = (byte) 0x31;
              PinTemp[2] = (byte) 0x31;
              PinTemp[3] = (byte) 0x31;
              pin.update(PinTemp, (short) (0), (byte) PinTemp.length);       
        public Shareable getShareableInterfaceObject(AID clientAID,byte parameter)
              return  this;
        public OwnerPIN getPinShareable()
             return pin;         
         public void process(APDU apdu)
                      //there are some codes in this here
    }//Interface in Server side
    public interface GinaInterface extends Shareable
          public OwnerPIN getPinShareable();
    }//In Client side
    import ginaPack.*;
    public class UserCardApplet extends Applet {
    private UserCardApplet(byte[] bArray, short bOffset, byte bLength) {
         //there are some codes in this here
    public boolean select() {
              final byte[] Gina_AID={(byte)0x47,(byte)0x69,(byte)0x6e,(byte)0x61,(byte)0x41,(byte)0x70,(byte)0x70,(byte)0x6c,(byte)0x65,(byte)0x74};
              AID GinaAID = JCSystem.lookupAID( Gina_AID, ( short )0,( byte )Gina_AID.length );
              if ( GinaAID == null ) // probably not loaded on card
                        ISOException.throwIt( ISO7816.SW_FUNC_NOT_SUPPORTED );//6a 80
              GinaInterface ff = (GinaInterface) JCSystem.getAppletShareableInterfaceObject(GinaAID,(byte)0);
              if( ff == null )
                   ISOException.throwIt((short)0x0903);
    if ( ff.getPinShareable().getTriesRemaining()== 0 ) return false;
    }My problem is in this line :
    "if ( ff.getPinShareable().getTriesRemaining()== 0 ) return false; "when I select my applet this line throw an exception, ff.getPinshareable includes all of OwnerPin methods(such as getTriesRemaining ,check ,reset, update ,...)but all of them throw exception .
    I think firewal does not allow other packages uses this methods .If my guess is right then what should I do for sharing the variables that they are defined with non primitive data type such as (OwnerPin,Signature,...)
    I'd appriciated for any help.
    yours sincerely,
    Orchid.
    Message was edited by:
    NewOrchid

    Applet 1:
    package com.package1;
    import javacard.framework.*;
    public class Applet1 extends Applet {
        private static final byte tryLimit  = (byte)3;
        private static byte[] pinBytes = {(byte)1, (byte)7, (byte)4, (byte)5, (byte)2};
        private Library1 lib;
        protected Applet1(byte bArray[], short bOffset, byte bLength) throws PINException {
            lib= new Library1(tryLimit, (byte)pinBytes.length);
            lib.update(pinBytes, (short)0, (byte)pinBytes.length);
            register();
        public static void install(byte[] bArray, short bOffset, byte bLength) {
            new Applet1(bArray, bOffset, bLength);
        public void process(APDU apdu) {
            byte status=(byte)0;
            lib.resetAndUnblock();
            if (!(lib instanceof Shareable)) status += (byte)2;
            if (!(lib instanceof MyPIN)) status += (byte)4;
            ISOException.throwIt(Util.makeShort((byte)0x90, status)); // sw indicates tries remaining
        public Shareable getShareableInterfaceObject(AID cltAID, byte parm) {
            return lib;
    }Library1:
    package com.package1;
    import javacard.framework.OwnerPIN;
    import javacard.framework.PINException;
    public class Library1 extends OwnerPIN implements Interface1{
        public Library1(byte tryLimit, byte maxPINSize) throws PINException {
            super(tryLimit, maxPINSize);
    }Interface1:
    package com.package1;
    import javacard.framework.PIN;
    import javacard.framework.Shareable;
    public interface Interface1 extends Shareable {
        boolean check(byte[] pin, short offset, byte length);
        byte getTriesRemaining();
        boolean isValidated();
        void reset();
    }Applet2:
    package com.package2;
    import javacard.framework.*;
    import com.package1;
    public class Applet2 extends Applet {
        private final static byte CLA_TEST = (byte)0x80;  
        private final static byte INS_TEST = (byte)0x20;
        private final static byte P1_AUTHORIZE = (byte)0x00;
        private final static byte P1_DOIT = (byte)0x01;
        private final static byte P1_CHECK_SIO = (byte)0x0a;
        private Interface1 sio;
        protected Applet2(byte bArray[], short bOffset, byte bLength) {
            register();
        public static void install(byte[] bArray, short bOffset, byte bLength) {
            new Applet2(bArray, bOffset, bLength);
        public void process(APDU apdu) {
         byte[] buffer = apdu.getBuffer();
            if ((buffer[ISO7816.OFFSET_CLA] == CLA_TEST) ||
                (buffer[ISO7816.OFFSET_CLA] == ISO7816.CLA_ISO7816)) {
                short bytesReceived = apdu.setIncomingAndReceive();
                switch (buffer[ISO7816.OFFSET_INS]) {
                case ISO7816.INS_SELECT:
                    if (!JCSystem.getAID().equals(buffer, ISO7816.OFFSET_CDATA, buffer[ISO7816.OFFSET_LC]))
                        ISOException.throwIt(ISO7816.SW_APPLET_SELECT_FAILED);
                    sio = (Library1)JCSystem.getAppletShareableInterfaceObject(JCSystem.lookupAID(<fill in parameters>);
                    if (sio == null)
                        ISOException.throwIt(ISO7816.SW_CONDITIONS_NOT_SATISFIED);            
                    break;
                case INS_TEST:
                    switch (buffer[ISO7816.OFFSET_P1]) {
                    case P1_AUTHORIZE:
                        if (!sio.isValidated()) {
                            if(!sio.check(buffer, ISO7816.OFFSET_CDATA, buffer[ISO7816.OFFSET_LC]))
                                ISOException.throwIt(Util.makeShort((byte)0x9A, sio.getTriesRemaining()));
                        break;
                    case P1_DOIT:
                        if (!sio.isValidated())
                            ISOException.throwIt(ISO7816.SW_SECURITY_STATUS_NOT_SATISFIED);
                        sio.reset();
                        ISOException.throwIt(Util.makeShort((byte)0x9A, sio.getTriesRemaining()));                
                        break;
                    default:
                        ISOException.throwIt(ISO7816.SW_INCORRECT_P1P2);                   
                    break;
                default:
                    ISOException.throwIt(ISO7816.SW_INS_NOT_SUPPORTED);
            else {
                ISOException.throwIt(ISO7816.SW_CLA_NOT_SUPPORTED);
    }1. Upload package1
    2. Install Applet1
    3. Select Applet1
    4. Upload package2
    5. Install Applet2
    6. Select Applet2

  • How can I share a *.java source file across multiple projects in NetBeans?

    I'm sure this simple and a pretty common operation but how can I share a *.java source file across multiple projects in NetBeans? Right now I keep cut, coping and pasting the same source file between multiple projects to re-use the same code. But I could I make this source file a library file or something like that so that I could access it from any project. I assume this would be a generic operation but I mentioned NetBeans for clarity. Thanks.

    fiebigc wrote:
    I know I mentioned NetBeans but I'm most interested in the generic method for creating a library of source files that I can call into whatever program I am developing. I've done such a thing in C using header files and such but I'm trying to get a direction on how this is accomplished in Java. I'm sorry if I could edit the title I would. If anyone wants to be specific about NetBeans I welcome that too.
    Edited by: fiebigc on Jun 20, 2008 5:57 PM
    >I know I mentioned NetBeans but I'm most interested in the generic method for creating a library of source files that I can call into whatever program I am developing. I've done such a thing in C using header files and such but I'm trying to get a direction on how this is accomplished in Java. I'm sorry if I could edit the title I would. If anyone wants to be specific about NetBeans I welcome that too.
    Edited by: fiebigc on Jun 20, 2008 5:57 PM
    Create a class library.
    Write your code, compile it to .class files, put those class files in a .jar file and include the jar file in the classpath whenever you want to compile a project against it.

  • The iWork Public Beta allowed me to share Keynote presentations with anyone via the web. How can I share a Keynote presentation online via iCloud? Must the presentation be downloaded to view?

    The iWork Public Beta allowed me to share Keynote presentations with anyone via the web. Now Apple tells me the Public Beta is being replaced by iCloud. How can I share a Keynote presentation online via iCloud? Must the presentation be downloaded to view?

    iCloud is not designed for sharing data with other people: you will need a third-party alternative such as DropBox or Sugarsync.
    More details here (written for migrators from MobileMe but the basic information may be helpful):
    http://rfwilmut.net/migrate3

  • How can I share PDF documents in Ibooks

    How can I share PDF between my Apple devices with Ibooks? I have on my Ipad a lot of PDF manuals that I want to see on my other devices so I don´t need to download them to Ibooks on every device. Sync is on in the setup but it seems only to work with books and not PDF.

    No - it will not work with PDFs. You might consider another cloud service such as Box, DropBox, or Google Docs.

  • How can I share data between WinXP Pro and Mac OS 10.8.3 via wifi

    How can I share data between WinXP Pro and Mac OS 10.8.3 via home wifi. 

    MartyP wrote:
    Or is there a problem with both OS's writing stuff to the
    ~/Home/Library folder that may be incompatible?
    Yes, big time.  Mail, for sure, has a different file/folder structure, and would not be happy.
    Plus, a number of apps (Apple and 3rd-party) are "Sandboxed."  That's a security feature, to prevent malware or bad coding from affecting things it shouldn't.  Some of their files, including the preferences files, aren't even stored in the same places!
    Or to other places I'm not aware of?
    Probably.  If you have two versions of the same app, they may or may not expect the same data setup.
    To have one User folder for both OS's would save a lot of drive space
    Not if you use some or all of woodmeister50's suggestions. 
    But I'm also not sure how I'd use Time machine with such a set up.
    Just as you do now.  By default, Time Machine backs-up everything (except things like system work files, most caches and logs, trash) for all users and all internal drives & partitions.  By default, it excludes external drives.
    You can change those defaults, of course, via TM Preferences > Options.
    See Time Machine - Frequently Asked Question #32 for details and considerations of multiple drives.
    Presently I backup with . . . clones to other HD's
    Good.   Yes, clones are different.  You need multiple "tasks" to back up multiple drives/partitions.  But once set up, that shouldn't be a big deal.

  • How Can I Share iPod Music Over a LAN ?

    I want to share music from an iPod over my LAN.
    I've searched the forum, and can't find an answer there.
    Current Situation
    I have all my music on a G5 and share it over an Airport network, so I can play it from any computer in the house.
    I'm running out of disk space + I need to have iTunes running all the time in the background to serve the music over the network.
    Proposed Solution
    I want to use an old iBook as a music server. The iBook doesn't have enough disk space to store all the music, so I want to move all the music from my G5 to an iPod - then connect the iPod to the iBook and serve the music directly from the iPod.
    If I store the music on the iPod, I can play it fine on the iBook, using iTunes.
    If I enable music sharing on the iBook, the iBook music library can be shared over the network - but this does not include the music in the iPod music library.
    How can I share the iPod music directly over the network ?
    I can't copy the music from the iPod to the iBook - there's not enough disk space.
    I know I can do it by using the iPod in disk mode - and storing the music in an iTunes folder on the iPod. But I also want to use the iPod to play my music in the car - so storing the music in Disk Mode won't help.
    I guess I could set up the iBook to refer to an iTunes folder on the iPod using Disk Mode - then sync the iBook with the iPod --- but that just means I'll have 2 copies of the same music on the iPod --- there must be a better way ...
    DPG5   Mac OS X (10.3.9)  

    To the best of my knowledge, you can't. iTunes can only share music that's in the main iTunes library, not tracks from an iPod. Your best route will probably be to get an external hard drive for your iBook and put the iTunes library there.

  • How can I share my music with my wife's account?

    My family has multiple accounts on various devices (IPods, IPad) that share one IMac. How can I share the music on my account with my wife's account? My music doesn't show up on her account and vice/versa.

    I'm sorry to say, unless you're using apples pay service, that allows you to upload your own music, there is no way to do that. I'm assuming that the music you are talking about has not been purchased through them. If it has, then you can redownload it to any devices from within your app.
    I personally dont think its fair that you can't import music from your own online sources, but apple isnt in the busness of giving us what we want, just what will make them money.
    You could also look into some of the rare apps that have been allowed to slip through such as 8player or vlc. One of those might be able to pull from your own online source, but I cant say for sure, and its unlikely is will work very well. I personally have started using a third party cloud service to store backups of my music, that might be something to look into. 

Maybe you are looking for