Pivotal Labs

Main menu

Skip to primary content
Skip to secondary content
  • About
  • Case Studies
  • Team
    • Executives
    • Locations
      • San Francisco (HQ)
      • Boston
      • Boulder
      • Denver
      • London
      • Los Angeles
      • New York
  • Community
    • Blogs
    • Tech Talks
    • Events
  • Careers
    • Lifestyle
    • Principles & Practices
    • Benefits
    • FAQ
    • Apply
  • Contact
    • Press Room
    • Press Releases
    • In The News
    • Press Kit
  • All
  • Labs
  • Standup
  • Tracker

Standup NY: 10/12/12: All the events

Robbie Clutton
Friday, October 12, 2012

Interestings

Android: View.onTouchEvent()

If you get an ACTION_DOWN event in View.onTouchEvent() and you return false, then you will not get the corresponding ACTION_UP event.

If you follow some of the easy to find and clear online examples for GestureDetector you might not return true when handling the onTouchEvent. Without ACTION_UP events some gestures will never register.

This is wrong:
@Override
public boolean onTouchEvent(MotionEvent event) {
return gestureDetector.onTouchEvent(event);
}

Do this instead:
@Override
public boolean onTouchEvent(MotionEvent event){
gestureDetector.onTouchEvent(event);
return true;
}

Events

Monday: MON: PyLadies Meetup in Grand Central

A group for Python ladies of all levels of programming experience, in the NYC metro area.

Monday: MON: Database Event in Main Event Space

Explore techniques for merging traditional database concepts (including immediate consistency and reliability) with the flexibility and high performance seen in NoSQL database systems.

Tuesday: TUES: Agile Experience Meetup in Main Event Space

A key trend among UX designers on Agile teams is a shift away from using software to create design docs like wireframes and personas, and instead creating specs by hand.

Tuesday: TUES: NYC Machine- Probabalistic Graphic Models in Grand Central

In this class, you will learn the basics of the PGM representation and how to construct them, using both human knowledge and machine learning techniques.

Wednesday: WEDS: Database Event

Explore techniques for merging traditional database concepts (including immediate consistency and reliability) with the flexibility and high performance seen in NoSQL database systems.

  • 0 Shares
  • Share on Facebook
  • Share on Twitter

Add New Comment Cancel reply

Your email address will not be published.

Robbie Clutton

Robbie Clutton
New York

Recent Posts

  • Stop leaky APIs
  • ElementalJS and SimpleBDD open source updates
  • Stop leaking ActiveRecord throughout your application
Subscribe to Robbie's Feed

Author Topics

api (1)
architecture (1)
ironblogger (10)
object-design (2)
rails (4)
rest (2)
elementaljs (2)
opensource (1)
simplebdd (2)
activerecord (2)
routing (1)
refinements (1)
ruby (5)
scala (2)
autolibs (1)
brew (1)
documentation (1)
rvm (1)
bdd (3)
rspec (4)
testing (8)
lean (2)
startup architecture (2)
sustainable archtiecture (1)
yagni (1)
metrics (1)
validation (1)
nosql (1)
nulldb (1)
javascript (3)
ci (2)
jasmine (1)
build (1)
agile (1)
review (1)
web (1)
  • About
  • Case Studies
  • Team
  • Community
  • Careers
  • Contact
  • Labs
  • Events

Contact Us

contact@pivotallabs.com
+1 415-77-PIVOT
TwitterLinkedInFacebook

Pivotal Tracker

Tracker is the award-winning agile project management tool that enables real-time collaboration around a shared, prioritized backlog.
Visit pivotaltracker.com >