Labview Programmer needed for project work in Milwaukee Area or over the internet

We have a project I need to get done before summers end and we have majotiy of the code. My company builds robotic systems which we use for industrial inspections mainly in the petrochemical industry.  These robotic systems work with a ultrasonic systems which we use to take thickness measurements of piping and pressure vessels using ultrasound.   We have the ultrasound equipment and most of the software as said previously, we just need it polished up and some additions made.  Here is a link from NI which is simular to what we do and you can even download the code and have a look at there code: http://zone.ni.com/devzone/cda/epd/p/id/3618 . Our code is a bit more complex but you get the picture. 
This position is not a full time position as of yet.  We are looking for someone to work with us on a contract basis for now. We need someone experienced with the following; Data aquisition, Data analysis, Experience with RF, USB comunication.  We perfer to hire somebody local but if we cant we can can do this over the internet.  If you are interested, give us a reply with contact info.  Thanks.
Regards,
Bill

    Bill,
We are able to offer you the help you need on
this.  I work for a LabVIEW/test-system consulting group based here out
of Salt Lake City...not too far if a quick trip is needed.  Among the
six of us, four of us are former NI employees and we count with a lot of LabVIEW experience and regularly do
contract work, local and remote.  This sounds interesting and right up
our alley as far as experience goes.  I'd refer you to our website for
further info about different projects that we've done for many
clients.  www.mooregoodideas.com.
If this seems workable for
you, feel free to shoot me a note at [email protected]  I'd be
curious to know more about what you're after and how we can help you
out. 
Thanks,
Jim

Similar Messages

  • LabVIEW programmer needed for full time position, Orange County CA

    Anaheim CA 92801
    [email protected]
    Job Title: Project Manager
    Job Type: Permanent
    Job Location: Anaheim CA
    Main hardware expertise required: Compact DAQ/RIO (cDAQ,cRIO), Enclosures, Cabling, Other (please comment)  
    Main software expertise required: LabVIEW, LabVIEW Real-time (RT)
    Job Description: LabVIEW programmer needed to program and update a series of technologies while using NI CompactRIO and Single Board RIO applications. Some basic networking and basic electronics experience required.
    40 hrs/wk at our Orange County facility.
    What qualifications and T&M certifications do you require? Technical, LabVIEW Certified Developer Prefered
    Salary Offered: $60K-80K based on experience and qualifications  
    The attachment is a picture of the prototype ETU unit. The DBA of the company is "GreenLink Systems," our website is www.greenlinksystem.com
    Attachments:
    ETU and Staff.jpg ‏186 KB

        Bill,
    We are able to offer you the help you need on
    this.  I work for a LabVIEW/test-system consulting group based here out
    of Salt Lake City...not too far if a quick trip is needed.  Among the
    six of us, four of us are former NI employees and we count with a lot of LabVIEW experience and regularly do
    contract work, local and remote.  This sounds interesting and right up
    our alley as far as experience goes.  I'd refer you to our website for
    further info about different projects that we've done for many
    clients.  www.mooregoodideas.com.
    If this seems workable for
    you, feel free to shoot me a note at [email protected]  I'd be
    curious to know more about what you're after and how we can help you
    out. 
    Thanks,
    Jim

  • Help needed for Project Work

    +People..I am new to this forum and your help is absolutely essential as it for my project work. There are two questions in my project. This is the second one. The first question is at the following thread.
    http://forum.java.sun.com/thread.jspa?threadID=5220057
    Thanks in advance..+*
    This is the Question
    Create a class ToyCollection that stores information about different toys in a toy shop.  The information to be stored about a single toy is,
    -         Toy identification as String
    -         Name of the toy as String
    -         Short description about the toy as a String
    -         Price of the toy as float
    -         Quantity of the toy in hand as short integer.
    This class contains following methods,
    -         Constructor method that assigns user input values to above mentioned variables.
    -         main ( ) method that creates array of 4 objects of ToyCollection class and that takes input for all above details from the user and
    calls method to check validity of Quantity and Price values. If all values are valid then create the objects and display the details
    for all 4 toys.
    -         Method that checks validity of quantity and price. If the quantity is 0 or negative then method should throw user defined
    exception with appropriate message and come out of program. Similarly if the price is 0 or negative then it should throw user defined exception with appropriate message and come out of program.
    -         Method that displays all details about a single toy in the following format, e.g. Here Total price should be calculated.
    Toy Identification                  :  S-1
    Toy Name                            :  Small Scooter
    Toy Description                    :  Ordinary 3 wheeler scooter
    Toy price                              :   650.50
    Quantity in hand                    :   3
    Total price of Toys               :    1951.50
    And i did the following coding
    import java.io.*;
    import java.lang.*;
    public class ToyCollection
         public int toyid;
         public String toyname;
         public String toydetails;
         public float toyprice;
         public int toyquantity;
         public void setToyid(int tid)
              toyid = tid;
         public void setToyname(String tname)
              toyname = tname;
         public void setToydetails(String tdet)     
              toydetails = tdet;
         public void setToyprice(float tpri)
              toyprice = tpri;
         public void setToyquantity(int tquan)
              toyquantity = tquan;
         public int getToyid()
              return toyid;
         public String getToyname()
              return toyname;
         public String getToydetails()     
              return toydetails;
         public float getToyprice()
              return toyprice;
         public int getToyquantity()
              return toyquantity;
         public static void main(String args[])throws Exception
              ToyCollection a=new ToyCollection();
              System.out.println("Enter the Toy id");
              BufferedReader br1=new BufferedReader(new InputStreamReader(System.in));
              int tid=Integer.parseInt(br1.readLine());
              a.setToyid(tid);
              System.out.println("Enter the Toy name");
              BufferedReader br2=new BufferedReader(new InputStreamReader(System.in));
              String tname=br2.readLine();
              a.setToyname(tname);
              System.out.println("Enter the Toy details");
              BufferedReader br3=new BufferedReader(new InputStreamReader(System.in));
              String tdet=br3.readLine();
              a.setToydetails(tdet);
              System.out.println("Enter the Toy price");
              BufferedReader br4=new BufferedReader(new InputStreamReader(System.in));
              float tpri=Float.parseFloat(br4.readLine());
              a.setToyprice(tpri);
              System.out.println("Enter the Toy quantity");
              BufferedReader br5=new BufferedReader(new InputStreamReader(System.in));
              int tquan=Integer.parseInt(br5.readLine());
              a.setToyquantity(tquan);
              System.out.println("The Toy Attributed you entered are displayed below \n" + " ID :" + a.getToyid() + "\n " +" Name :" + a.getToyname() + "\n " + " Details :" + a.getToydetails() + "\n " + " Price :" + a.getToyprice() + "\n " + " Quantity :" + a.getToyquantity());
    I submitted the above coding and this was the response from the evaluator
    *"You need to create array of toys. You are accepting details of toy in a single line and your program ends."*
    Eagerly awaiting your reply at the earliest people.

    DrLaszloJamf , here is the question.
    Create a class ToyCollection that stores information about different toys in a toy shop. The information to be stored about a single toy is,
    - Toy identification as String
    - Name of the toy as String
    - Short description about the toy as a String
    - Price of the toy as float
    - Quantity of the toy in hand as short integer.
    This class contains following methods,
    - Constructor method that assigns user input values to above mentioned variables.
    - main ( ) method that creates array of 4 objects of ToyCollection class and that takes input for all above details from the user and
    calls method to check validity of Quantity and Price values. If all values are valid then create the objects and display the details
    for all 4 toys.
    - Method that checks validity of quantity and price. If the quantity is 0 or negative then method should throw user defined
    exception with appropriate message and come out of program. Similarly if the price is 0 or negative then it should throw user defined exception with appropriate message and come out of program.
    - Method that displays all details about a single toy in the following format, e.g. Here Total price should be calculated.
    Toy Identification : S-1
    Toy Name : Small Scooter
    Toy Description : Ordinary 3 wheeler scooter
    Toy price : 650.50
    Quantity in hand : 3
    Total price of Toys : 1951.50
    What is the java code for the above ?

  • Will Remote Desktop 1.2 work on 10.4.3 over the internet

    I Can't get Remote Desktop 1.2 to work on 10.4.3 over the net from a remote location ! It will work in my office over the same wireless connection.

    Mac OS X 10.4 comes with the 2.2 version of the ARD client so and requires the 2.2 administration application to work.
    Once you get 2.2 on both ends, you'll need to make sure that ports 3293 and 5900 are open on any routers between your admin station and the client workstation.

  • Can someone point in the right direction for how to make a multiplayer game over the internet

    Hello,
    I am looking into making a game where two people who can be in different places would log on to the app, log in and can play - i.e. they would be connected over the internet. I'm looking for a hint on what is the direction to take and which technologies.
    For example is there a best practice for example if you make an app with DirectX and C++, and you use some kind of web service or something? or is it easier using C# and XNA? just looking for some pointers in the right direction. I have played around
    with DirectX, far from proficient but have familiarity, I have no experience with XNA but hear it's less hardcore and easier going. I'm particularly interested in what the best way to connect over the internet.
    Thanks

    What you are asking is very complicated and one of the more difficult things you can do in gaming. I'd strongly recommend you start smaller to learn and then move up to multi-player games as your skills grow.
    From the multiplayer client perspective it doesn't really matter which technology you use. You can write a multiplayer game in any engine or technology that can talk to the network. Choose the client technology that you are most adept at and interested in
    and learn it. You can go straight to DX, use a third party library such as Monogame (XNA isn't supported for Windows Store apps), or a complete game engine such as Unity. Once you can write a decent one-player game you'll have the foundation to start on to
    build a two-player game.
    At that point you'll need to define the problem much more specifically. As you state it, it is really wide open. How do you want the users to connect? Directly machine to machine? Matched through a web server but running client side? Connecting to a game
    running on a remote server? Something else?
    The network connection itself is probably fairly straightforward, but where to connect and how to manage that can be difficult. You'll have to decide what properties you want. Is this an action game where responsiveness is important or
    a turn based game where timing is less relevant?
    Are the players connecting locally or completely remotely? If the former then they can probably connect directly over the local network (NFC is great here). If the latter then they probably will need to connect to a matchmaker service to avoid firewalls.
    This can get very complex, but there are existing solutions you can use rather than writing your own.
    --Rob

  • LabView "Guru" needed for the summer (4 month project) Kalamazoo, MI

    LabView "Guru" needed for the summer (4 month project)
    I am looking to hire a LabView "Guru" for a summer project in Kalamazoo, MI that will last 4 months.  Specifically, the ideal person will have the following:
    LabView expert with a minimum of 7-15 years of experience working with LabView (currently using version 6.1).
    80% of the job will be dissecting and interpreting mature LabView code and then re-engineering it to be used for testing.
    Printed Circuit Board experience a plus.
    4 year degree (BSEE preferred, but expertise in LabView takes priority over degree)
    The pay will be $60/hr and you can plan on overtime of at least 10 hrs each week that will be paid at $90/hr. 
    Please call 616-855-4600 if you need more information and email a "word" copy of your resume to [email protected]

    Sounds like Parker-Abex (LabVIEW 6.1 part)
    Putnam
    Certified LabVIEW Developer
    Senior Test Engineer
    Currently using LV 6.1-LabVIEW 2012, RT8.5
    LabVIEW Champion

  • Houston LabView Programmer needed

    Houston, Tx LabView Programmer needed.
    We are looking for a Labview experience programmer in the. Please contact for more details. (713) 333-0227

    There is a special forum for this kind of posts: http://forums.ni.com/ni/board?board.id=JobPost
    Thanks!
    LabVIEW Champion . Do more with less code and in less time .

  • Hi! I've just installed mountain lion and I find one of the programs I need for my work is crashing all the time. any ideas what i can do?

    hi! I've just installed mountain lion and I find one of the programs I need for my work is crashing all the time. any ideas what i can do?

    Ah!
    Factuur Bright x
    part of errors:
    Process:         Factuur Bright X [1476]
    Path:            /Applications/Factuur Bright X/Factuur Bright X.app/Contents/MacOS/Factuur Bright X
    Identifier:      ???
    Version:         ??? (2.0.0b20)
    Code Type:       X86 (Native)
    Parent Process:  launchd [184]
    User ID:         501
    Date/Time:       2013-07-10 22:35:39.180 +0200
    OS Version:      Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Interval Since Last Report:          2118 sec
    Crashes Since Last Report:           1
    Per-App Interval Since Last Report:  24 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      47D641A2-4625-7590-369C-8BAFE1439551
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000010

  • Experienced CLA, CTD available for project work.

    Experienced CLA, CTD and CPI available for project work.
    Work model would be remote activity with availability for kick-off and integration onsite travel.
    Clear communicator with excellent presentation and customer facing skills.  Deep experience with large swath of NI technologies and hardware.  Wide capability with peripheral software tools such as sql, Amazon - AWS, bug tools, agile development, SCM, remote connectivity, networking, web service etc.
    Please email for more discussions:  [email protected]
    Michael Weir

    Hi All,
    Just to say I am still available for remote contract opportunities and that I am now also a Certified TestStand Architect.
    Message @ [email protected] for more information..
    Thanks & Regards,
    Shane.

  • Hello, can someone guide me on how to purchase ExportPDF please? i'm currently residing in South East Asia and it doesn't allow me to purchase the software that i need for my work. Please guide me. i need help badly.

    Hello, can someone guide me on how to purchase ExportPDF please? i'm currently residing in South East Asia and it doesn't allow me to purchase the software that i need for my work. Please guide me. i need help badly.

    Hi watanabei,
    Please see Countries where ExportPDF is available for purchase. - Adobe Community. It's necessary to have a credit card billing address in one of the countries listed in this document. If ExportPDF is unavailable to you, you may want to consider an Acrobat subscription, which would also allow you to convert PDF files to Word and other format. For more information, see www.adobe.com/products/acrobat.html.
    Best,
    Sara

  • SSRS Report for Incidents/Work Items Created or Closed over time

    I'm curious if anyone has developed a custom report based off the DWDataMart that displays the count for creation of incidents or other work items over time or work items that are closed over time.

    Hi Jon,
    There is a blog, which talks about in detail regarding SCSM reporting,
    http://scug.be/scsm/2012/04/10/working-with-scsm-reporting/
    However related to your queries please refer to this,
    http://blogs.technet.com/b/servicemanager/archive/2010/04/23/how-to-create-a-custom-report-and-display-it-in-the-console.aspx
    Thanks,
    Mohammad.
    -Zakir, Let us know if the answer/post helps you :)

  • Will playing excessive need for speed  games on my macbook pro damage the arrow keys(i play using them) ??

    hey guyz i wanted to ask whether playing excessive (1-2 hours daily) need for speed carbon on my macbook pro using the arrow keys to control the car damage the arrow keys of the MBP??
    pls answer asap i am worried..

    I don't think that you have to worry about arrow keys because they won't damage with their use (unless you hit heavily these keys). Using games, there are other things to worry, as the temperature of the Mac, but fans will turn on automatically when your Mac needs

  • Firefox 3.5.1 on WinXP automatically switches to "Work Offline" when a connection to the internet drops. User must un-click "Work Offline" for it to work once a connection has been restored. Why?

    Firefox 3.5.1 on WinXP automatically switches to "Work Offline" when a connection to the internet drops. This was not the case with earlier versions. Why is this necessary? Is there an option/preference setting to change this?

    # Yes, if you go to accounts.firefox.org, sign out, you will now be signed out.
    # Sign back in, and you will be asked to save the password you entered.
    # This will save the password and autocomplete if you have this option turned on.
    I am not exactly sure why the menu did not detect the password change or if it was stored incorrectly after you changed it? But after storing the correct password you can manage any duplicate passwords in the password manager.[[Password manager - Remember, delete and change saved passwords in Firefox]]

  • My safari doesn't work sometimes, but I connect with the internet.

    my safari doesn't work sometimes, but I connect with the internet. Some of the videos I can't see with the Safari browser, but I can see it with other brower. But my friend can see these videos with her safari. And I can not connect with the app store sometimes.

    Before you try to configure the settings on your Router, first thing which you need to do is, Press and hold the reset button for 60 seconds...Release the reset button...Unplug the power cable from your router, wait for 60 seconds and re-connect the power cable...
    Connect the Modem to the Linksys Router on the Internet Port and then connect your computer to the Linksys router on the LAN Port 1. On your Computer click on Start - Run - CMD and click Ok... Now in the Command Prompt window type "ipconfig" and hit enter and note down the "IP address, Subnet Mask and Default Gateway" , Now again in the Command Prompt window type "ping default gateway IP" and hit enter and check if you are getting any replies, If yes then you can login to the setup page of the configure all the settings on it from scratch. 
    If your Internet Service Provider is Cable follow this link

  • Xmlnamespaces clause of xmltable: Does it go over the internet for xsd?

    Hi,
    I've got a query from xmltable passing an xmltype variable.
    Something like this:
    select id, name, data
    From XMLTable(XMLNamespaces ('https://www3.somesite.es/bla/bla/bla/thexsd.xsd' as "n1" ,
                                        'https://www3.somesite.es/bla/bla/bla/otherxsd.xsd' as "co") ,
                         '/n1:some/tag' passing l_my_xmltype_var
    COLUMNS id        NUMBER(20)      PATH '//n1:id' ,
                                 name        VARCHAR2(9)     PATH '//n1:name' ,
                                 data     VARCHAR2(125)   PATH '//co:datatxt') XThis query is run in a loop, and we are trying to improve its performance.
    Dba tells me that everytime the query is run, it has to retrieve both xsd over the internet.
    1. Is this true?
    2. If it is ... Could I store the xsds local or even inside the database? (I've heard something about schema registering)
    Thanks

    julius wrote:
    The actual query has over 75 columns. Its major consumption is spent on java, so I have to assume that is due to the underneath parsing process of xmltable.
    You are OR doing something (horribly) wrong OR should upgrade to a database version bigger than or equal to 10.2.0.3.x
    PLEASE post your database version (all digits!)
    Do you mean that, even working with a local xmltable passing an xmltype variable (not an actual structured xml table), registering the schema will do good to the performance?Yep, for example avoiding those JAVA calls... validation via registered XML Schema's is optimized if not only due to its based kernel code, that is C - code
    I suppose I would have to:
    1. Register the xsd
    2. Reference it when I create the xmltype variable (adding the second parameter to the xmltype function).
    Correct.
    Then, during the xmltable processing, the engine will be smart enough to use the registered xsd info to improve the query performance? Ok, I'm a bit skeptical, but will give it a try.
    I will also try to help the processing by specifying the full tree path instead of using "//tag".
    It will make a difference (providing you are at least on 10.2.0.3.x regarding using XMLTABLE, that is the XQuery engine...
    As a curiosity, all this query optimization quest came when - after a modification - performance of the query dropped from 5 seconds to 90 seconds. Things went south when I added an * in the select list instead of refering the columns with their names. So it doesn't seem a good idea to use * with a high column number xmltableCould be, but can't tell. This kind of issues are depending on a lot of parameters and environment settings. It could be a bind issue or...or...
    That's one of the reasons we need the database version to give you a better answer...
    Edited by: Marco Gralike on Jun 8, 2011 11:17 AM

Maybe you are looking for

  • Recover .TMP files on offline folders in Windows 7 Synch

    Hello. I have a user with Windows 7 Pro and we set him up for offline folder synchronization. Somehow several of his office docs disappeared and seem to have been replaced by several .TMP files with similar sizes and dates. We only keep 7 days worth

  • How to get  the times a document has been opened

    Does somebody know if exists any kind of property attached to documents that can tell who many times a document has been opened? Or there is a way to know this in a different way? Thank you in advanced.

  • Mail and Keychain Problem

    I would like to refer to the problem of Mail asking multiple (50 plus) a day for the passwords for POP accounts. The question has been posted a couple of times here and a dozens of times in other forums. Nobody was able to give an answer. If nobody h

  • Hierarchy Subtotals in the Query

    Hi, I have inserted a GL Account hierarchy in the query,all amounts are okay in the query except the subtotals. The subtotals are totally wrong, its giving me this message: Diagnosis The function Calculate Results as ... could not be applied everywhe

  • Installation Oracle8i 8.1.5

    Hi, my name is Sergio Eduardo Turrubiates Lira. my email address is [email protected] I4m trying to install Oracle8i 8.1.5 in a SuSE Linux 6.4 but when a run the runInstaller i have an error Initializing Java Virtual Machine from /usr/local/jre/bin/j