Author Archives: pgfeldman

Tom 6.8.2012

Start 10:00

  • Spread out everything a little more so that the connectors won’t be under the pcb boards
  • Fixed the labels
  • Moved the sensor circuits so that they are closer to the analog inputs on the arduino

End: 6:00

Phil 6.11.12

7:30 – 6:30 FP

Mike 6.8.2012

  • Server backups
  • Final prep for meeting
  • 30 minute demo to colonel
  • 1 hour tutorial session with PMs
  • Additional requirements, test plan, etc. discussion with Tangie, Bill, Jessica, and Lenni
  • A few of the immediate things to add:
    • Default security banners
    • A new project summary table with budget, appropriations, and available balance all by year
    • Need to check on why no comments are working

Phil 6.8.12

8:30 – 12:30 ESSO

  • Moved the lab yesterday, so no notes.
  • Customer meeting:
    • Add a read-only admin user? I.e. one that can see everything, but can’t make changes
    • Need capability to print out/copy to clipboard the financial remediation. It sounds like these get included in reports
    • Comments aren’t being shown.
    • Make sure that most recent comments are on the top of the list, with date/time info
    • Unfunded Requests (UFRs) need to be downloadable. This can be done at two levels
      1. Add a link that points to a generic UFR Excel Spreadsheet
      2. Build a partially filled out UFR spreadsheet for the user to save.
    • Service Fincance POC name does not fill from dropdown selection. The field remains blank after the selection
    • Add banners like for VISIBILITY
    • Add regex for portion marking in all freeform text areas. Throw a fit if the portions are not marked.
    • Project Manager screen seems to load really slow sometimes. We might want to add something tat lets us see what it’s hanging on, but more importantly, add some loading animation so that the user doesn’t think the browser is hung.

12:30 – 5:30 FP

  • More Blender.
  • Got a meeting set up on Monday at 3:00 to learn how to use the MakerBot. Going to try to bring a file to attempt to print.
  • Pretty picture:

Mike 6.7.2012

  • Server backups at site
  • Status meeting with Jim G from TASC, Dave W. and others. Highlights of the meeting
    • We need some kind of requirements (future and retroactive). First we are checking around for an old statement of work then will go from there
    • Vet all new requirements through Dave W. and this weekly meeting before proceeding on them
    • Figure out who is working on the test plan
  • Finished up the presentation for tomorrow
  • Jessica R. is still having some issues deleting users, this time is was a foreign key problem with the user_alerts table
  • Lenni M. was having trouble changing his password, seems to have something to do with changing your password and trying to log in without refreshing the page (this should be possible)
  • The modify funding request screen needs an overhaul, it is VERY difficult to search, Tangie would also like the document_number column added
  • There’s an issue with searching on the project management list then scrolling
  • There are some instances of portfolio managers being updated on a project then not showing up in the project management list
  • Fixed the password changing issue, the login screen was getting stuck in a state between the normal state and the change password state

Dong Shin 06.07.2012

  • added MySQL database connection clean up routines to PPM server
  • mvn tomcat:redeploy generates 403 error on Tomcat 7. Maven’s Tomcat 7 requires different configuration… http://stackoverflow.com/questions/3714080/tomcat-7-maven-plugin
    • in tomcat-users.xml, add
      • <role rolename=”manager-gui”/>
        <role rolename=”manager-script”/>
        <user password=”admin” roles=”manager-gui, manager-script” username=”admin”/>
    • in pom.xml, add
      • <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>tomcat-maven-plugin</artifactId>
        <version>1.0-beta-1</version>
        <configuration>
        <url>http://127.0.0.1:8080/manager/text</url&gt;
        <server>localTomcat</server>
        <path>/${project.build.finalName}</path>
        </configuration>
        </plugin>
  • added the new config to PPM server’s pom.xml, now mvn tomcat:redeploy works.

Tom 6.6.2012

Start: 10:00

  • Finished drawing the nets
  • It didn’t work, I need to rearrange some of the parts for the routes to work
  • Found some extra stuff that I don’t need which should give me some room to move stuff
  • Decided to run the power and ground leads manually to ensure they don’t block the other leads

End 6:00

Mike 6.6.12

  • Server backups at site
  • Deployed an update to resolve the user management windows problems
  • Updates applied to the databases to allow deleting of users without error
  • Discussed where Funding_Type should be held, no decision made
  • Discussed how excess funding could be handled, more discussion needed
  • Dumped a list of all funding requests in the system per Jessica R.’s request
  • Getting a weekly status report to Jessica
  • Worked a little on the chart stuff, hopefully things will slow down after Friday and i can get some more time in on it.  I did get to write the following line:

Phil 5.6.12

8:00 – 4:30 FP

  • More Blender.
  • Nice video tutorials: http://super3.org/blender25
  • Making reasonable progress. Between the videos and the books, this mostly makes sense.
  • Got multiple extrusions, subsurface sampling and swept surfaces working. Tomorrow I may be able to put together a mouse file after the meetings.

Tom 6.5.2012

Start 10:00

  • Continued to plot the nets for the auto-router
  • Tested in the sandbox to see if the auto-router will adjust for new nets.  It does
  • I had the connectors a backwards on the board.  fixed this
  • Double checked the d-sub connectors to make sure the leads were set up right

End 6:00

 

Mike 6.5.2012

  • Server backups at site
  • Deployed new version of PPM and PA with updates fields: Funding Type, Location, and Org.
  • Version also includes the auto-login capability but it is turned off for now to avoid issues
  • The email to all users went out today to test their connection.  At noon only one person replied and they could connect just fine
  • Found an error with the user management widget, Dong created a fix and I burned it to disc for tomorrow
  • Continued working on new slides to the presentation on Friday
  • Answered lots of questions at site as they came up, lots more interaction at my new desk

Dong Shin 06.05.2012

  • checked in fresh copy of ProjPortfolioMgrClient to SVN and moved ProjPortfolioMgrClient to old
  • deployed new PPM and PA at the Fort. new fields seem working
  • User Management errors – Database Null?
    • fixed
  • Delete User errors – fixed
    • DBUpdateSQLs06052012.sql in src/main/resources/database directory
    • caused by cascading foreign keys… this fixes it
      • ALTER TABLE `projects` DROP FOREIGN KEY `projects_ibfk_3` ;
        ALTER TABLE `projects` ADD FOREIGN KEY ( `proj_mgr_login` ) REFERENCES `project_portfolio`.`users` (
        `login`) ON DELETE SET NULL ON UPDATE CASCADE ;ALTER TABLE `projects` DROP FOREIGN KEY `projects_ibfk_2` ;
        ALTER TABLE `projects` ADD FOREIGN KEY ( `proj_admin_login` ) REFERENCES `project_portfolio`.`users` (`login`) ON DELETE SET NULL ON UPDATE CASCADE ;ALTER TABLE `projects` DROP FOREIGN KEY `projects_ibfk_1` ;
        ALTER TABLE `projects` ADD FOREIGN KEY ( `portfolio_mgr_login` ) REFERENCES `project_portfolio`.`users` (`login`) ON DELETE SET NULL ON UPDATE CASCADE ;ALTER TABLE `projects` DROP FOREIGN KEY `projects_ibfk_4` ;
        ALTER TABLE `projects` ADD FOREIGN KEY ( `portfolio_admin_login` ) REFERENCES `project_portfolio`.`users` (`login`) ON DELETE SET NULL ON UPDATE CASCADE ; 

Tom DeVito 6.5.2012

Start: 12:30

  • Fixed the mounting locations to be in line with the measurements taken Friday
  • Added two more connectors to the board.  One for connecting the analog inputs, the other for connecting the LEDs.
  • Added the circuit for the I2C bus.
  • Connected the nets for the new connectors.

End 6:30