Ideas for my LabVIEW demonstration

Hello!
I am doing a short 15-30 minute LabVIEW "show-off" at a company meeting this Friday and would like to not bore my non-technical audience.  Well..there will be a few people there with technical backgrounds.
Really it is to expose everyone to the capabilities we have with the LabVIEW software.  I would like to demonstrate its easy to use graphical programing language "G" very briefly (with a comparison to traditional text based programming) and the Remote Panels features of LabVIEW.  What we normally use it for in our test systems is kind of a boring subject, and I also think everyone realizes and understand that yes we do use it in our test systems.
I would like to setup something interesting so that my audience can see LabVIEW in action but I'm not real sure what to setup.  I have DIO and Analog IO at my disposal.  I also have lots of LEDs, a stepper motor, and some toy motors at my disposal.  I have an interface to the simple PID controller and I have made a PWM function.  I also think I can rig up a crude light sensor.
Any ideas?
-Nickerbocker

If you want it not to be too serious, you could probably create a game.
For example, something along the lines of "guess which LED would light up next and press the button under it".
Or if you really want to go crazy you can use the motors to create a one armed bandit. You will obviously need to create 3 strips with the images on them (you can probably do that in the printer) and roll those strips into circles and then connect them to the motors somehow and get the motors to rotate them.
You could try creating a Simon clone with your LEDs and buttons. I believe I saw an implementation on the LAVA forums once, so you can look there.
And so on...
Try to take over the world!

Similar Messages

  • Ideas for generating a Company-Accessible Labview Code Design Library

    Hello all,
    My group has been tasked with generating a Labview design library that can be accessed by all of our companies' Labview coders. The primary goals are to maximize code reusability and to share knowledge amongst everyone. I'm opening this as a general open-ended discussion to gather ideas on different approaches for this - has anyone else on the forums had experience doing something similar? Any suggestions on tools to use / approaches to take?
    One thing I have to consider is that not all of our engineers use the same versions of Labview, as certain projects have constraints requiring certain LV versions be used.

    1.  Establish a reuse style guide and be strict in the reviews.  Good VI documentation,  tip strips FP layout all of it!!!  make it comprehensive.  Its no use creating the library if the developers cannot figure out what it does and why it is where it is.
    2. Branch the library for each LabVIEW version and document any upgrades (a good bug tracking system is essential!) 
    3. Don't let every developer submit willy nilly.  The submission process should be through a select committee of more advanced developers to control where the code goes so the rest of the developers will find it on YourPallet. and obvious related code (inverse of function, poly instances...) are grouped together.
    Key Point.  Focus on the developer that will implement the tools in the library.
    Jeff

  • Need ideas for plug-in re-design

    My DAQ app uses "Plugins".   A Plugin is a VI which conforms to a particular terminal configuration.
    Here is the complete diagram of a simple one:
    The idea is that a plugin is another channel: This one takes the value of TORQUE (in N-m) and the value of SPEED (in RPM), performs some computation, and produces a result POWER (in kW).
    The user can then think of this as just another channel - it shows up in the datastream and the user can plot it, record it, set alarms on it, convert it to an output and send it out the CAN bus, anything he can do with a real channel, he can do with this plugin channel.
    So the above is exactly equivalent to having a POWER transducer.
    They can get much more complex than this.
    My code organizes these so that the prerequisite channels are run first, and then the dependent ones. (a prerequisite channel could also be a plug-in).
    If plugin B depends on plugin A as a prerequisite, I make sure that A runs first, regardless of which comes first in the CONFIG file.
    So the actual DAQ code samples the hardware channels, and then the plugins in a particular order.
    The DAQ is sampling at 10 Hz, and so these plugins run at that rate too.  There may be 100 different plugins, maybe 50 at a time in one test.
    The DAQ runs on a PXI box, running RTOS.  The host is an ordinary PC, running Windows.
    Even though the PXI is running a compiled RTEXE, it still loads the source-code VIs and runs them.
    My data file includes all the recorded data, all the config stuff used to set that up, AND THE PLUGIN VIs THEMSELVES.
    The plugin VI files are read as strings and stored in the datafile as strings, along with their names.
    When reading a data file, I read this string, and store it in a "sandbox" folder with a .VI extension.
    This guarantees that the version I have is the version the data was originally recorded with.
    The user can EDIT the data files, for example changing the scale factor on the SPEED channel from 307.3 RPM/V to 308.5 RPM/V.
    That causes a re-calculation of the SPEED channel.
    It ALSO causes a re-calculation of the POWER channel: My code detects that POWER depends on SPEED and since SPEED changed, I have to run every sample back through the POWER VI to get a new value. (Remember they're not all as simple as this example).
    THAT is why the VIs are stored in the data file.
    ALL OF THAT WORKS. 
    100%
    Like a dream.
    For 8-9 years now.
    EXCEPT...
    When it comes time to change LABVIEW versions.
    MY client has 10,000+ data files, each with 5-50 VIs embedded. Files are spread among 30+ machines, with a central server backup.
    We need to hang on to this data.
    I have a File Updater, which will take datafiles and update them (they are a DataLog file).
    THE TROUBLE IS:
    If I take a recent datafile, recorded with LV2010 (where we've been for 3+ years) and open it with the EXE built with LV2013, there's a problem if it tries to reprocess it.  The  error comes out as 
    Error Code 1126 occurred at Open VI Reference in HDT Open PlugIn.vi->HDT Find Calc Prerequisites.vi->HDT DataFile Prerequisite Manager.vi->HDT DataFile Viewer.vi->HDT.vi<APPEND>
    An error occurred loading VI 'BSFC.vi'.
    LabVIEW load error code 10: VI version (10.0) is too old to convert to the current LabVIEW version (13.0).
    The EXE code, having no COMPILER handy, cannot use the old VI.
    My FILE UPDATER, has a recompiler built into it (it reads the VI string, saves it as a VI file, opens it as a VI, saves it as a VI, then reads it as a string and puts it back where it belongs. 
    But if THAT is built into an EXE, it doesn't work either. Same problem, same error.
    If I run the FILE UPDATER from the LV2013 DevSys, then it's OK.  The re-compile process works fine, and then the EXE can read it and use the VI.
    BUT:
    1... That's painfully slow.  I have a cache handler where I recompile each VI only once and recognize it if I see it again, but still it's a long process.
    2... That doesn't work from an EXE.  My client has 2-3 DevSystems and 30+ computers with just the EXE. But that's where the data files are.
    3... Backup up Data Files on CD or DVD doesn't work.
    SO............  TO make a long story even longer.......
    I'm looking for an alternative.
    REQUIREMENTS:
    1... String-based, I suppose.  I want to type in "Power = Torque * Speed / 9545" and have the code know to fetch the value of  "Power", the value of "Torque", do the math, and produce the result.
    2... Has to execute quickly.  I have a zillion things to do at 10 Hz.
    3... Has to be able to re-order itself.  If I have ANOTHER plug-in channel called Fuel per Watt, and it calculates "FuelPerWatt = FuelFlow / Power * 10.34", then it has to know to execute POWER before it executes FUELPERWATT.
    4... Musr work from an EXE and an RTEXE.
    I've looked at a thing called MathToG, and it works OK for creating a VI from an equation, but it needs VI scripting, and therefore won't work from an EXE
    Any ideas?
    Steve Bird
    Culverson Software - Elegant software that is a pleasure to use.
    Culverson.com
    Blog for (mostly LabVIEW) programmers: Tips And Tricks

    Starting at the top, create a class which has no data and two methods - GetPrerequisites and Execute.  Both are dynamic dispatch (use the right-click option in the New menu in the project to create them).
    GetPrerequisites - has the input and output of the parent class so it is dynamic dispatch, and has a single output which is an array of the same class.  You may want error I/O as well.
    Execute - has the input and output of the parent class so it is dynamic dispatch, and has Result and Units outputs.  The prerequisites output is redundant with the previous function, but can be added.  Again, you may want error I/O.
    In the parent class, both of these functions are essentially empty and return default data.  The parent class is used for a template and to provide a parent for the function classes.  As such, set the properties for each of the methods so that children must override them (do this in the class properties dialog box).  Set these up the way you want them up front, since the children must use the exact same connector pane.
    The functions themselves are all created as follows:
    Create a class
    Change its inheritance so it inherits from the parent class - it is now a child
    Use the new menu on the child class to create functions to override the originals
    Delete all code but the terminals in the child functions
    Change the GetPrerequisites code so it returns a constant array of the prerequisite objects.  These will be parallel children of the original parent class.  For your power class, this would be an array containing the torque and speed classes.  The easiest way to create this array is to drag a copy of the torque and speed classes onto the block diagram and use build array.  They will be "coerced" to the parent class, but LabVIEW still knows what they are.
    Change the Execute code so that it does whatever it needs to do.  In general, use the GetPrerequisites function to fetch the prerequisites.  Use a FOR loop to run the parent Execute function on each of these prerequisites.  Dynamic dispatching will execute the correct code.  You now have an array of the results.  Use this, with whatever other functionality you need, to calculate your final values.
    The prerequisites can be dynamically loaded so you do not have a static link to the prerequisite classes.  If you would like to have a text interface, you can dynamically load the individual functions, then use their values in a LabVIEW formula VI for the final calculation.
    If this is still Greek, you may want to walk through the examples of LabVIEW classes and dynamic dispatch to get more background on how to use classes.
    If you would prefer a text string for your units so that you have more flexibility, let me know.  I have an SI unit string validation VI that may be of use.  It works for most unit combinations, provided they are not nested too deep.
    This account is no longer active. Contact ShadesOfGray for current posts and information.

  • Ideas for a beginner to program

    I've started mentoring a young student - teaching him LabVIEW. He
    is enjoying it and we have covered the basics. Now I need to come up
    with a project for him to start writing a program(s) on his own. For
    the time being, I would like to keep it to calculations/analysis/display
    kinds of things (no Daq hardware). I was wondering if anyone had ideas
    (or previous experience) of such kinds of programs - something
    relatively easy at this point, but useful/fun enough to keep him interested.
    Thanks,
    Dave
    David Thomson Original Code Consulting
    www.originalcode.com
    National Instruments Alliance Program Member
    Certified LabVIEW Architect
    There are 10 kinds of people: those who understand binary, and those who don't.

    Here is an idea for a nice little project would be:
    (assuming no Daq or GPIB hardware).
    Open a binary file. Parse the file to identify the OP codes and operands. Translate it to "english". Display the translation and write it to another file.
    You can expand to opening a serial port, communicating to a serial device. Interpret the data (especially if there is some sort of waveform to analyze). Plot the data "real-time". Display warnings or conditions if low or high limits are reached, or if a number of samples has been achieved.
    Prompt for user intervention (what to do with the data, ie: save it to file, display it, print it, etc). Allow for user control of the vi (Run / Pause / Stop / Abort).
    The above should provide basic functionality where ther
    e is no instrument to control or a data-acquisition system to monitor.
    Are you looking for real projects? Maybe a bit more challenging?
    Regards,
    -JLV-

  • Unable to determine the install root path for the LabVIEW Runtime Engine

    Hi,
    i have an issue with using a LabVIEW interop assembly in a .NET application. I get an exception "Unable to determine the install root path for the LabVIEW Runtime Engine" when calling the assembly.
    The little test program is attached below. It's called dotNETHost.exe. If you excecute the programm a dialog with an button appears. Clicking the button shall open another dialog (the LabVIEW Interop component). But the only thing I get is the exception message. The ZIP folder also contains the complete exception meassage (ExceptionMessange.jpg & ExceptionDetails.txt).
    The Interop Assembly was built with LabVIEW 2011. We use Visual Studio 2010 and .NET 4.0.. The dotNETHost.exe.config file is prepared as mentioned in Knowledge base - Loading .NET 4.0 assemblies.
    The Interop assembly contains only one simple dialog (loop is finished by clicking OK) without calling any other VIs or other DLL's.  In case of this there's also no support directory generated by the build process.
    I have no idea why it doesn' work. I hope anyone can help me.
    Thanks in advance
    Kay
    Attachments:
    Debug.zip ‏75 KB

    This may be unrelated, but Labview and .Net4.0 dont work well together. Not yet anyway. I had to compile my assembly in 3.5 to get it to work.
    Please read the following:
    http://zone.ni.com/reference/en-XX/help/371361H-01/lvhowto/configuring_clr_version/
    http://digital.ni.com/public.nsf/allkb/32B0BA28A72AA87D8625782600737DE9
    http://digital.ni.com/public.nsf/allkb/2030D78CFB2F0ADA86257718006362A3?OpenDocument
    Beginner? Try LabVIEW Basics
    Sharing bits of code? Try Snippets or LAVA Code Capture Tool
    Have you tried Quick Drop?, Visit QD Community.

  • Ideas for program

    I am currently studying for higher ed, and taking a class that includes AS3 teachings. For my exams I am expected to present a program I've made, and I can make anything I care for, it should be of some size and so I am having difficulties choosing something that would be easy enough to be made in a couple of months, but challenging enough to show my skills.
    I am looking for ideas for what I can make that fits these criterias, all suggestions are welcome

    The first thing you need to do is assess what skills you have or wish to demonstrate.  If you don't yet have the skills this can make choosing a project more difficult because learning new skills is more time consuming than demonstrating them.  Anyone with the skills and a couple of months to spare could create an impressively large project for themselves.
    So if you already have the skills, then you should aim at something in the form of a service-provider web site that has multiple interactive features and relies on imported content/data.  Maybe something in the way of a dating site where people can sign up, submit photos, fill out forms, be analyzed thru automated evaluations, get matched with others, watch marketing movieclips designed to lure them into signing up, etc...  I don't want to stress a dating site, but something that covers a number of different types of presentations, processing, and data delivery elements.
    If you don't already have the skills, and are expected to learn them over the same months that you are expected to be creating this project, then you should refer to whatever course syllabus you have, maybe even discuss it with the instructor and other students, so that you'll have a better idea of the expectations of this project's scope.

  • Small runtime engine for newer labview versions?

    A few times in the past I have created simple LabVIEW standalone executibles.  I did this in 8.6 and used the runtime engine minimal installer instead of the full version.  This resulted in an installation package size of 30-35 Meg.  
    I agin need to create a simple executible but have not seen a minimum runtime installer for any LabVIEW version since 8.6 
    Are there any minimal runtimes for other versions? 
    The default 2014 runtime is 264 Meg!!!  It is hard to explain to a customer why a simple "Hello World" program requires a 200+ Meg download.
    Solved!
    Go to Solution.

    Jack Dunaway has documented a way of segmenting the run time engine, basically only including the pieces of it you need.
    https://connect.wirebirdlabs.com/knowledgebase/articles/172999-segmenting-the-run-time-engine
    And here is an idea exchange item on it.
    http://forums.ni.com/t5/LabVIEW-Idea-Exchange/Segment-the-LabVIEW-Run-Time-Engine-RTE-to-ONLY-Necess...
    Unofficial Forum Rules and Guidelines - Hooovahh - LabVIEW Overlord
    If 10 out of 10 experts in any field say something is bad, you should probably take their opinion seriously.

  • TS1362 Everything works except the **** thing won't play. I push the play arrow or instruct it to play and it stays eternally paused. No problem buying things from these dogs,just can't play the when everthing pops up on screen.Any ideas for a hopeless ol

    Everything works on ITunes except play function.I can select as song I want but cannot get it off "pause."I tried going to controls and instructing it to play(no go) and clicking again and again on play arrow(which flips it to pause...).Any ideas for a very old,very frustrated non-tech guy???
    Please!! Thnaks!!!

    Replying to myself. Kept trying different areas of the ipod this evening, clicking various buttons, including some I'd never used before. All of a sudden I could see my Nano in iTunes. I quickly clicked on Restore before iTunes changed its mind about recognizing the iPod. Moved some songs onto it and it appears to be back to normal.  Keeping my fingers crossed. 

  • HT1384 My ipod nano 3rd generation, when connected by usb, does not show up in itunes, does not show up on my computer, does not seem to charge by the wall charger. It just has a black screen. Any ideas for me?

    My ipod nano 3rd generation, when connected by usb, does not show up in itunes, does not show up on my computer, does not seem to charge by the wall charger. It just has a black screen. Any ideas for me?
    I've run diagnostics. Can't find device. I've tried resetting. The toggle has been turned on and off.

    Cable works fine on my other iPod. Reset by pressing menu and center button together for 6-10 seconds. Left it to charge for many hours. Started acting up while running. Suddenly the music stopped playing but my Nike + was still working for the rest of my run. Took it straight it home and plugged it in to the wall to recharge since the battery was fairly low. Looked like it recharged ok but then screen went blank and now does it not show up on iTunes, does not seem to recharge by the wall charger (apple wall charger plugged into a surge protector in India). I have turned the hold switch off and on many times.
    Sounds like a repair issue, which is not easy to do in India :(

  • I bought an eBook from iTunes. I can view/read it perfectly on my iPhone but when I try to open the eBook file on my iPad, I get the error message, "Cannot open book. This book is protected by an incompatible technology." Any ideas for me? thx

    i bought an eBook from iTunes. I can view/read it perfectly on my iPhone but when I try to open the eBook file on my iPad, I get the error message, "Cannot open book. This book is protected by an incompatible technology." Any ideas for me? thx

    Welcome to the Apple Community.
    I have seen previous versions mentioned in a pop up message before on iCloud.com, but I'm not really sure at all how it would help, as I couldn't get it to do anything.
    The best advice I have at this time is to back up your work on your iOS device by regularly saving it to iTunes, if anything goes wrong you can then either load it into the numbers app again on the device or recover it via iTunes on your computer.
    My syncs are immediate, I never get chance to see if it works in the background, sorry.

  • Some calendars in iCal appear corrupted but OK on iPhone. If I sync will the calendar data on the phone restore info on the desktop iCal? any other ideas for how to sort this please?

    Some calendars in iCal appear corrupted (ie have red exclamation mark by them) but are still OK on iPhone. If I sync, will the calendar data on the phone restore info on the desktop iCal or will I lose that as well? Or could I back up the calendars on my iPhone somewhere and then import them into iCal? any other ideas for how to sort this please? it's driving me mad. thanks.

    I don't think there will be a solution to this. Exchange 2003 just isn't supported.

  • Looking for a Labview job. Any offers or suggestion​s?

    Hi, everybody!
    I wish we had labview.jobs or something. Since we have not yet,
    I would appreciate any hints regarding looking for a Labview job,
    especially for people with just 1 year of experience,
    beside emailing everybody on the NI Alliance list and searching
    general purpose job sites.
    In case prospective employers read this, my cover letter and resume follow:
    Dear Manager:
    Thank you for taking time out of your busy schedule.
    You will find that my resume which is attached,
    outlines why I am an excellent fit for a
    position with your company. In addition to my broad
    educational background including two Masters degrees
    in Electrical Engineering and Physics, numerous
    Computer Science courses taken, and ten years of
    diverse experience in programming and system
    administration and support, I have just finished a
    successful control and data acquisition project in
    Labview which is also described in my resume.
    My experience and background enable me
    to master any software development tool and/or
    environment very quickly, which makes me a perfect
    candidate who can always keep up with the
    ever-changing world of computer technologies.
    I am looking forward to discussing this opportunity
    with you.
    Sincerely,
    Stanislav Rumega
    2000 Goldsworth Valley, Apt. #X-5
    Kalamazoo, MI 49008
    Telephone: (616) 387-5967
    [email protected]
    http://free.prohosting.com/~styrum/webresume.shtml
    OBJECTIVE:
    To obtain a full-time Software Engineer, Developer,
    Programmer, or Analyst position after graduation from
    Western Michigan University in April 2000. Willing to
    consider positions that are usually offered to
    candidates with BS degrees too.
    SUMMARY:
    - Languages: G (LabVIEW), Java, C, C++, SQL, PL/SQL,
    HTML, SPARC Assembler;
    - Systems: MS-DOS, WINDOWS NT/98/95/3.11, SunOs UNIX;
    - Software: LabVIEW, Maple V, FoxPro, MS Word,
    MS Excel, CorelDraw , Internet Explorer, Netscape
    Navigator, various utilities and other packages;
    - Fluent in English and Russian.
    EXPERIENCE:
    Teaching/Research Assistant, 1997 - Present
    Department of Physics, Western Michigan University,
    Kalamazoo, MI
    - Taught undergraduate physics labs;
    - Graded student papers;
    Project:
    Developed a control and data acquisition program for
    an electron spectrometer system in the WMU accelerator
    laboratory. The program was written in LABVIEW.
    The project involved controlling and retrieving
    data from devices on a CAMAC crate as well as
    GPIB (IEEE-488) instruments connected to the system
    via a GPIB to CAMAC interface. A computer communicated
    with the system via a serial (RS-232) port on the
    crate controller.
    Engineer/Programmer, 1993-1997
    The Association FACTORIAL-SERVICE, Rostov-na-Donu,
    Russia
    - Supported all the available computer resources and
    other equipment (a phone switching system, phones,
    faxes, copiers, etc.);
    - Selected, purchased, installed, configured all the
    hardware and software used at the office;
    - Installed and administered a LAN;
    - Designed and coded applications;
    - Fine-tuned complicated off-the-shelf Accounting and
    Sales software which had their own built-in
    languages and required programming;
    - Trained users;
    - Provided translations between English and Russian.
    Engineer/Programmer, 1992-1993
    Joint Stock Company TRANSINFORM, Moscow, Russia
    - Provided some preparatory work and marketing for
    the introduction of an X.25 packet-switched
    computer network in Rostov-na-Donu, Russia.
    Engineer/Programmer, 1991-1992
    Soviet-British Joint Venture MARINE COMPUTER SYSTEMS,
    Moscow, Russia
    - Developed a FoxPro application to calculate traffic
    accident rates depending on road conditions.
    EDUCATION:
    Candidate for Master of Arts in Physics,
    1997 - Present Western Michigan University,
    Kalamazoo, Michigan
    Anticipated graduation date: 04/00.
    Computer Science GPA: 3.8,
    Overall GPA: 3.4 on a 4.0 scale.
    Computer Science courses taken:
    - Computer Science II (Object-Oriented C++
    Programming);
    - System Programming Concepts (UNIX, C);
    - Computer Organization and Assembly Language
    (SPARC);
    - Principles of Database Management Systems (SQL,
    PL/SQL);
    - Data and File Structures (C++);
    - Programming in Maple V;
    - Programming Languages (Principles of Programming
    Languages, Web Programming: HTML, Java).
    Awards:
    - Dean's List, 1998-1999;
    - David Carley Memorial Award, 1998;
    - Department Award for Graduate Student Teaching
    Effectiveness,1999.
    5-yr. Diploma in Radiophysics and Electronics,
    an equivalent of an MS in Electrical Engineering,
    1991 Rostov State University,
    Rostov-na-Donu, Russia
    Numerous courses in Mathematics, Physics, and Computer
    Science taken.
    GPA: 4.7 on a 5.0 scale.
    Project: Developed a simulation of a conveyor
    multiprocessor system. The program was written
    in Pascal.
    Awards:
    - Received a higher stipend for high academic
    achievements every semester, 1984-1987,
    1989-1991.
    ACTIVITIES:
    - Graduate Student Advisory Committee, Member,
    1999-2000;
    - Association of Information Technology
    Professionals, WMU Student Chapter, Member,
    1999-2000.
    - Volunteer Student Safety Patrol, 1989-1991.
    WORK AUTHORIZATION:
    Authorized to work in US for 12 months after
    graduation, which can be extended for up to
    6 years with employer's help through
    petitioning for a working visa.
    In Canada, an employment authorization (EA) must be
    obtained before starting employment.
    REFERENCES:
    Available upon request.

    Forgot to mention - go to any jobs web site and enter LabVIEW as a keyword - for
    example, I went to http://www.monster.com/ and found 301 postings.
    "John D. Seelbinder" wrote:
    > Viewpoint Software Solutions is looking for a software engineer with LabView
    > experience:
    > http://www.viewpointusa.com/employment.html
    >
    > FWIW I do not work for, or have a financial interest in Viewpoint Software
    > Solutions.
    >
    > Stanislav Rumega wrote:
    >
    > > Hi, everybody!
    > >
    > > I wish we had labview.jobs or something. Since we have not yet,
    > > I would appreciate any hints regarding looking for a Labview job,
    > > especially for people with just 1 year of experience,
    > > beside emailing everybody on the NI Alliance list and searching
    > > general purpose job sites.
    > >
    > > In case prospective employers read this, my cover letter and resume follow:
    > >
    > > Dear Manager:
    > >
    > > Thank you for taking time out of your busy schedule.
    > > You will find that my resume which is attached,
    > > outlines why I am an excellent fit for a
    > > position with your company. In addition to my broad
    > > educational background including two Masters degrees
    > > in Electrical Engineering and Physics, numerous
    > > Computer Science courses taken, and ten years of
    > > diverse experience in programming and system
    > > administration and support, I have just finished a
    > > successful control and data acquisition project in
    > > Labview which is also described in my resume.
    > > My experience and background enable me
    > > to master any software development tool and/or
    > > environment very quickly, which makes me a perfect
    > > candidate who can always keep up with the
    > > ever-changing world of computer technologies.
    > >
    > > I am looking forward to discussing this opportunity
    > > with you.
    > >
    > > Sincerely,
    > >
    > > Stanislav Rumega
    > > 2000 Goldsworth Valley, Apt. #X-5
    > > Kalamazoo, MI 49008
    > > Telephone: (616) 387-5967
    > > [email protected]
    > > http://free.prohosting.com/~styrum/webresume.shtml
    > >
    > > OBJECTIVE:
    > > To obtain a full-time Software Engineer, Developer,
    > > Programmer, or Analyst position after graduation from
    > > Western Michigan University in April 2000. Willing to
    > > consider positions that are usually offered to
    > > candidates with BS degrees too.
    > >
    > > SUMMARY:
    > > - Languages: G (LabVIEW), Java, C, C++, SQL, PL/SQL,
    > > HTML, SPARC Assembler;
    > > - Systems: MS-DOS, WINDOWS NT/98/95/3.11, SunOs UNIX;
    > > - Software: LabVIEW, Maple V, FoxPro, MS Word,
    > > MS Excel, CorelDraw , Internet Explorer, Netscape
    > > Navigator, various utilities and other packages;
    > > - Fluent in English and Russian.
    > >
    > > EXPERIENCE:
    > >
    > > Teaching/Research Assistant, 1997 - Present
    > > Department of Physics, Western Michigan University,
    > > Kalamazoo, MI
    > > - Taught undergraduate physics labs;
    > > - Graded student papers;
    > >
    > > Project:
    > > Developed a control and data acquisition program for
    > > an electron spectrometer system in the WMU accelerator
    > > laboratory. The program was written in LABVIEW.
    > > The project involved controlling and retrieving
    > > data from devices on a CAMAC crate as well as
    > > GPIB (IEEE-488) instruments connected to the system
    > > via a GPIB to CAMAC interface. A computer communicated
    > > with the system via a serial (RS-232) port on the
    > > crate controller.
    > >
    > > Engineer/Programmer, 1993-1997
    > > The Association FACTORIAL-SERVICE, Rostov-na-Donu,
    > > Russia
    > >
    > > - Supported all the available computer resources and
    > > other equipment (a phone switching system, phones,
    > > faxes, copiers, etc.);
    > > - Selected, purchased, installed, configured all the
    > > hardware and software used at the office;
    > > - Installed and administered a LAN;
    > > - Designed and coded applications;
    > > - Fine-tuned complicated off-the-shelf Accounting and
    > > Sales software which had their own built-in
    > > languages and required programming;
    > > - Trained users;
    > > - Provided translations between English and Russian.
    > >
    > > Engineer/Programmer, 1992-1993
    > > Joint Stock Company TRANSINFORM, Moscow, Russia
    > >
    > > - Provided some preparatory work and marketing for
    > > the introduction of an X.25 packet-switched
    > > computer network in Rostov-na-Donu, Russia.
    > >
    > > Engineer/Programmer, 1991-1992
    > > Soviet-British Joint Venture MARINE COMPUTER SYSTEMS,
    > > Moscow, Russia
    > >
    > > - Developed a FoxPro application to calculate traffic
    > > accident rates depending on road conditions.
    > >
    > > EDUCATION:
    > >
    > > Candidate for Master of Arts in Physics,
    > > 1997 - Present Western Michigan University,
    > > Kalamazoo, Michigan
    > >
    > > Anticipated graduation date: 04/00.
    > > Computer Science GPA: 3.8,
    > > Overall GPA: 3.4 on a 4.0 scale.
    > >
    > > Computer Science courses taken:
    > > - Computer Science II (Object-Oriented C++
    > > Programming);
    > > - System Programming Concepts (UNIX, C);
    > > - Computer Organization and Assembly Language
    > > (SPARC);
    > > - Principles of Database Management Systems (SQL,
    > > PL/SQL);
    > > - Data and File Structures (C++);
    > > - Programming in Maple V;
    > > - Programming Languages (Principles of Programming
    > > Languages, Web Programming: HTML, Java).
    > >
    > > Awards:
    > > - Dean's List, 1998-1999;
    > > - David Carley Memorial Award, 1998;
    > > - Department Award for Graduate Student Teaching
    > > Effectiveness,1999.
    > >
    > > 5-yr. Diploma in Radiophysics and Electronics,
    > > an equivalent of an MS in Electrical Engineering,
    > > 1991 Rostov State University,
    > > Rostov-na-Donu, Russia
    > >
    > > Numerous courses in Mathematics, Physics, and Computer
    > > Science taken.
    > > GPA: 4.7 on a 5.0 scale.
    > >
    > > Project: Developed a simulation of a conveyor
    > > multiprocessor system. The program was written
    > > in Pascal.
    > >
    > > Awards:
    > > - Received a higher stipend for high academic
    > > achievements every semester, 1984-1987,
    > > 1989-1991.
    > >
    > > ACTIVITIES:
    > > - Graduate Student Advisory Committee, Member,
    > > 1999-2000;
    > > - Association of Information Technology
    > > Professionals, WMU Student Chapter, Member,
    > > 1999-2000.
    > > - Volunteer Student Safety Patrol, 1989-1991.
    > >
    > > WORK AUTHORIZATION:
    > > Authorized to work in US for 12 months after
    > > graduation, which can be extended for up to
    > > 6 years with employer's help through
    > > petitioning for a working visa.
    > > In Canada, an employment authorization (EA) must be
    > > obtained before starting employment.
    > >
    > > REFERENCES:
    > > Available upon request.

  • Ideas for developing new Mini project

    Hi All,
    we want to develop our programming skill by doing some mini project in Java technology.
    A group of 3 members want to involve in this project with IDE as JDeveloper. So anyone can suggest a mini project with some 10 days duration. We are strong in Swing-EJB. We also intersted to work in JSP,Java script. Also ready to learn new technology..
    So whichever applicable suggest us or give some ideas for the project to improve our skills.
    Note: we are one year experienced in java Programming.

    Hi Lrj1985,
    According to your description, in order to allow users to know the probability of collecting from a debtor dependent on different dimension, you nedd to produce an OLAP cube to perform this. Since you haven't done this for a few years, now what you
    are looking for is that the ideas, starting points or direction to build the OLAP cube, right?
    In this case, here are some links which describe how to build a cube step by step, please see:
    http://www.codeproject.com/Articles/607134/BuildingplusYourplusFirstplusAnalysisplusServicesp
    http://technet.microsoft.com/en-us/magazine/ee677579.aspx
    Regards,
    Charlie Liao
    TechNet Community Support

  • My source audio isn't importing. Any ideas for how to fix?

    The audio is there. I've watched it in VLC, and the audio is there. Whenever I import the footage, though, it goes missing. Any ideas for how to fix it?

    Welcome to the forum.
    First, more information would be useful. See this FAQ Entry for what info will help: http://forums.adobe.com/thread/961741?tstart=0
    Also, when you Import your AV file, do you allow PrPro time to Conform the Audio portion? For more info on Conforming, Indexing and PEK file creation, see this article: http://forums.adobe.com/message/3892177#3892177
    Good luck,
    Hunt

  • Can you help me with Page Layout and/or Design ideas for a software manual?

    Greetings,
    I am a new InDesign user, and am converting a software manual that I created in MS Word into InDesign. It will be converted to a pdf to view online. I have the basics (3 master pages, page numbers, running headers, 2column pages with text boxes on the left and screenshots on the right), but I want to make it look prettier. Could you please give me some ideas on page layout and/or design to make it look better or more creative?
    A few things that I am considering: borders around screenshots, a watermark, a logo next to the page numbers, different size/type of fonts, etc.
    I am open to any suggestions to make this look better. However, please understand that I am new to InDesign. With that being said, please tell me a few steps when you mention your tips. Thank you!

    Take a look at a few websites on Cannons of Page Construction.
    I think the best idea for you is to look at a few software manuals and take tips from how they accomplished the layouts.
    I'm not saying to copy them - but rather see what works and doesn't work, what worked for them might not necessarily work for you - research some layouts.
    Fonts/type/sizes etc. are pretty much ambigious without context - is this a software manual for kids (soft cuddly big fonts easy to read), technical (small, tight spacing etc), Adult friendly (smooth, crisp clear, well spaced), elderly (large elegant fonts).
    It all really depends on your demographic audience.
    Being new to InDesign I suggest you take up Sandy Cohens Quickstart Visual Guide.
    I think you should look at Michael Murphys Book on Styles
    And you should definitely get your printer (the guys bulk printing) the booklet for you on board from the start to work out optimal sizes to suit their printing presses and workflow etc. And to ensure that you are setup correctly in page sizes, margins, safe type areas, colour profiles and a few other things that your printers prepress can help you with.

Maybe you are looking for

  • Solution Center problem with HP Office Jet J4550 and windows 7 (64bit)

    Hello All, I have a problem. I have the Solution Center and a HP Office Jet J4550 and windows 7 (64bit). When ever I open the solution center, the solution center says " HP office jet J4550 series disconnected" When I open HP document manager, I can

  • How to excute a local file?

    Hi. Experts. I want to excute a file (like aaa.doc) when i click a file after uploading in alv. How to excute a local file? I used behind command     lv_filename = ls_zdmt03-filenm.     cl_wd_runtime_services=>attach_file_to_response(        i_filena

  • Several issues with Logic 10.1.1

    Some problems I've encountered in LPX 10.1.1. 1. Recalling Aux Channels with saved Channel Strips. 2. Using an external controller assignments to control smart controls in Track Stacks. 3. Setting project tempo using Tap Tempo. 4. Track Automation ti

  • Can not edit Forms and Reports in WebDB. Any bug?

    I could not edit a form or report on the WebDB. I am geting an error :-- ORA-03114: not connected to ORACLE Actually I am still connected to Oracle. I am using WebDB version 2.0.5.6.1 What is the way ? Is it a bug ? Is there a patch for it ? null

  • Main Video on Multi-State Object Won't Stop Playing!

    In InDesign CS5. I have created an Interactive PDF that has a Mult-State Object of videos. I have One main video and 4 thumbnail videos set up in a gallery formation. So when the user clicks the main video or the thumb nails the different states chan