via http://wiki.twit.tv/wiki/This_WEEK_in_GOOGLE_5
Personal Hype Quotient for:
Michael Shook On a scale of 0-10, your ranking is
Level 3: Stupidly unaware of my social climbing and hyping possibilities..How we did it:
We took your follower count which is 49,
along with your last 422 tweets:
Where you hyped in 4 of them,
you re-tweeted in 0 of them
and you self-linked in 0 of them.
We munged all these together in our secret algorithm to come up with a level 3 score.
Roll Rate
File: In sw/airborne/fw_h_ctl.c we define the roll rate loop: float cmd = throttle_dep_pgain * ( err + h_ctl_roll_rate_igain * roll_rate_sum_err / H_CTL_ROLL_RATE_SUM_NB_SAMPLES + h_ctl_roll_rate_dgain * d_err);Note that the roll Pgain is variable with throttle and multiplies through the entire equation affecting the I and D terms as well for ease of tuning.
Fiddler is a Web Debugging Proxy which logs all HTTP(S) traffic between your computer and the Internet. Fiddler allows you to inspect all HTTP(S) traffic, set breakpoints, and "fiddle" with incoming or outgoing data. Fiddler includes a powerful event-based scripting subsystem, and can be extended using any .NET language.
Fiddler is freeware and can debug traffic from virtually any application, including Internet Explorer, Mozilla Firefox, Opera, and thousands more.
An I thought the Fiddler name was a metaphor for the bow going back an forth like HTTP messages.
via http://itc.conversationsnetwork.org/shows/detail4073.html
After being on both the giving and receiving end of plenty of presentations, I now realize there's one golden rule which applies to all of them:
Entertain your audience.
Every slide of your presentation should serve this fundamental vision statement. Is it entertaining? I don't mean each slide has to contain a wacky joke of some kind. Every slide should provoke a reaction from the audience -- be it controversial, unexpected, amusing, or a meditative Zen koan. Prod your audience. Do this not only to keep them awake, but to engage their brains. Deliver a series of short, sharp shocks that jolt your audience into a heightened state of engagement.
Once your audience has engaged with your presentation, that's when you trick them into learning. The very best presentations entertain and educate-- the common portmanteau is edutainment. The archetypal example of edutainment is Sesame Street.
via http://itc.conversationsnetwork.org/shows/detail4239.html
Assembla provides tools and services for accelerating software development, with three lines of business:
Tools: Workspaces on Assembla.com, this web site, used by thousands of teams.
Talent: Staffing services that find the best person or team for the job, worldwide.
Click here to see Assembla jobs.
Knowledge: We run projects ourselves, and we do management consulting to fix stalled product release cycles, streamline product strategy, build startup teams, implement iterative and agile processes, and get products released.
How does Doodle work?
- Create a poll.
- Forward the link to the poll to the participants.
- Follow online what the participants vote for.
Free. No registration required.
Schedule an event … … such as a board meeting, business lunch, conference call, family reunion, movie night, or any other group event. View example Make a choice … … among movies, menus, travel destinations, or among any other selection.
JSON ... it's the intersection of all modern programming languages. All languages have some sense of data, and structures of data. They all have simple values like number strings, and booleans. They all have some sense of a sequence of values. ... Every language has some sense of a collection of named values; it might be an object, or a record, or a struct, or a hash, or a property list, or something. All languages have these, these are universal ideas.
... But they all have the same idea about what the data looks like, and JSON has the thing that's common to everything. By being at the intersection, it turns out to be the thing that everybody can agree on, so it's really easy to pass data back and forth.
Prior data interchange formats tended to try to be the union of all the languages, and that turns out to be horrendously complex, and very difficult to deal with. JSON, by being so simple, actually became really easy to use.