Saturday, July 27, 2013

MotionX-GPS Track: Fern Canyon

Hello,

Connie O'Dell uses MotionX-GPS on the iPhone and is sharing with you the following track:

Name:Fern Canyon
Date:Jul 27, 2013 3:27 pm
Map:
(valid until Jan 23, 2014)
View on Map
Distance:2.14 miles
Elapsed Time:1:12:55
Avg Speed:1.8 mph
Max Speed:7.7 mph
Avg Pace:34' 03" per mile
Min Altitude:5,741 ft
Max Altitude:7,460 ft
Start Time:2013-07-27T21:27:27Z
Start Location: 
 Latitude:39º 57' 54" N
 Longitude:105º 17' 23" W
End Location: 
 Latitude:39º 58' 17" N
 Longitude:105º 15' 55" W

 

MotionX-GPS Commonly Asked Questions

  1. What is MotionX-GPS?
    MotionX-GPS is the essential GPS application for outdoor enthusiasts. It puts an easy-to-use, state-of-the-art handheld GPS on your iPhone.

  2. Can I use MotionX-GPS?
    Sure! MotionX-GPS can be downloaded from the iTunes App Store.

  3. How can I display tracks in Google Earth?
    Follow the directions on the Google Earth web site to download and install the Google Earth program. Save the attached "Fern Canyon.kmz" file to your computer. Launch Google Earth, select File, Open, and open the saved "Fern Canyon.kmz" file.

  4. This email was forwarded to me. Where are the attachments?
    Some e-mail programs do not include the original attachments by default when forwarding an e-mail. In this case, the sender must reattach the original files for them to be included.

 

Please contact MotionX customer support with any comments or questions.

All the best,

The MotionX Team

US and Foreign Patents Granted and Pending. Fullpower® is a registered trademark of Fullpower Technologies, Inc. MotionX™ is a trademark of Fullpower Technologies, Inc. © Copyright 2003 - 2012 Fullpower Technologies, Inc. All rights reserved.

ver: ; ref-id:

Friday, July 19, 2013

DVCon 2013 PlayList, verification et al, thanks to Shelf3D.com

Nice playlist for the design verification crowd:

  Powered by Translate
Play Playlist
13 Videos. Showing from #1
DVCon 2013 - Meirav Nitzan of Xilinx on her poster "A Smart Generation of Design Attributes"
Meirav Nitzan of Xilinx R&D elaborates on her DVCon 2013 poster, "Taming the Beast: A Smart Generation of Design Attributes (Parameters) for Verification Closure Using Specman".
DVCon 2013 -- Neyaz Khan, Maxim, discusses mixed-signal (MS-SoC) verification
In this interview Neyaz Khan, distinguished member of technical staff at Maxim, discusses best practices for mixed-signal SoC verification -- the topic of a DVCon 2013 paper he co-authored.
DVCon 2013: AXI Asynchronous Bridge Verification with AXI ABVIP and Formal Datapath Scoreboards
An interview with presenter Chris Komar on the DVCon 2013 paper 2.1, "Overcoming AXI Asynchronous Bridge Verification Challenges with AXI Assertion-Based Verification IP (ABVIP) and Formal Datapath Scoreboards"
DVCon 2013: Saurabh Shrivastava of Xilinx on paper "How to Kill 4 Birds with 1 Stone Using Formal"
Joseph Hupcey III speaks with Saurabh Shrivastava of Xilinx about his DVCon paper, "How to Kill 4 Birds with 1 Stone: In a Highly Configurable Design Using Formal to Validate Legal Configurations, Find Design Bugs, and Improve Testbench and Software Specifications" . (Authors: Saurabh Shrivastava, Kavita Dangi, Mukesh Sharma - Xilinx, Inc.; Darrow Chu - Cadence Design Systems, Inc.)
DVCon 2013: Best Practices in Verification Planning
Co-author and presenter Paul Carzola shares some highlights of DVCon 2013 paper 4.2, "Best Practices in Verification Planning"
DVCon 2013 - Interview with AMIQ CEO Cristian Amitroaie
Joseph Hupcey III speaks with Amiq CEO Cristian Amitroaie discuss trends in supporting the unavoidable mix of design & verification languages in simple work flows, and innovations supporting specific languages like SystemVerilog, e, and VHDL.
DVCon 2013 - Tutorial: Fast Track Your UVM Debug Productivity with Simulation and Acceleration
Joe Hupcey III speaks with Nadav Chazan and Chris Dietrich of Cadence R&D about the DVCon tutorial "Fast Track Your UVM Debug Productivity with Simulation and Acceleration". Here Nadav and Chris outline some of the latest debug technologies and methodologies that increase the users' productivity and throughput -- in particular, how to combine the advantages of interactive and post-processing techniques.
DVCon 2013: Interview with Oski Technology CEO Vigyan Singhal
Joseph Hupcey III speaks with Vigyan Singhal, the CEO of from formal and ABV specialist Oski Technology, about how careful advanced planning can substantially reduce risk in verification projects.
DVCon 2013 -- Mike Stellfox of Cadence discusses verification planning
Mike Stellfox, Cadence fellow, discusses a DVCon panel he spoke at titled "Best Practices in Verification Planning."
DVCon 2013 -- John Biggs, IEEE 1801 chair, discusses new power format standard
In this interview John Biggs, principal engineer at ARM and chair of the IEEE 1801 (Unified Power Format) working group, discusses the new IEEE 1801-2013 standard and notes additions and improvements.
DVCon 2013 -- Ziv Binyamini of Cadence comments on "million design starts" panel
Ziv Binyamini, vice president and CTO of the System and Software Group at Cadence, comments on a panel he spoke at titled "Road to 1 Million Design Starts."
DVCon 2013 -- Stuart Swan of Cadence discusses high-level modeling
In this interview Stuart Swan, senior architect at Cadence, discusses a methodology for using the same models for high-level synthesis and virtual prototyping. He spoke about this topic at a DVCon 2013 tutorial.


DVCon 2013 PlayList

'via Blog this'

Wednesday, July 17, 2013

Makefile,pipes,awk,shell assignment, and $$1, oh my...

>>> On 9/5/2012 7:02 PM, Tim Daneliuk wrote:
...
>> Here's the line that is failing:
>>
>> 2LATEX   = $(shell which rst2latex.py rst2latex | tr '\012' ' ' | awk '{print $1}')  --stylesheet=parskip
>
> Bryan's example is using := for assignment.


...That wasn't it, as it turned out.  The problem was in the awk statement.

Instead of:

     awk '{print $1}'

I had to use:

     awk '{print $$1}'    


This is necessary because $1 is a *make* variable but $$1 is the awk variable I wanted ($1)....

D'uh ....

-----------------------------------------------------------------------
Tim Daneliuk
Somewhat OT: Using Pipes Inside a GNU Make File

'via Blog this'