Hiveminder - Everything but the Secret Sauce

Loading...

Flash Player 9 (or above) is needed to view presentations.
We have detected that you do not have it on your computer. To install it, go here.

2 comments

Comments 1 - 2 of 2 previous next Post a comment

  • + guest18a2fe guest18a2fe 5 months ago
    LOL... yeah, i couldn’t go beyond the 30th slide. I mean, how retarded can one be ?
  • + guest9d1643 guest9d1643 7 months ago
    Wow, black fonts on black background. Genius.
Post a comment
Embed Video
Edit your comment Cancel

1 Event

Hiveminder - Everything but the Secret Sauce - Presentation Transcript

  1. Everything but the Secret Sauce Contains No Jifty! Modules, Magic and Monstrosities created for
  2. Jesse Vincent Best Practical
  3. We make Hiveminder Hiveminder
  4. It’s not opensource
  5. We built lots of cool stuff for Hiveminder Hiveminder
  6. We opensource everything we can
  7. Today’s Agenda Ten tools and techniques to help you: Find bugs faster Build web apps Ship software Get input from users Own the Inbox
  8. Find bugs faster
  9. TAP-Harness-Remote Run your tests over there.
  10. The Problem
  11. Hiveminder has lots of tests Hiverminder
  12. That's a problem?
  13. Yes.
  14. 30 minutes to run tests on my Macbook Macbook 30
  15. (It took the same on a Macbook Pro) (Macbook Pro )
  16. What to do?
  17. TAP::Harness 3.0
  18. I have two cores! 2 !
  19. TAP::Harness::Parallel
  20. prove -j 5 --fork
  21. 22 minutes prove -j 5 22
  22. Better! !
  23. Not good.
  24. Run tests on a server! !
  25. rsync -rvp . server: ssh server \"prove -j 9 t\"
  26. Better.
  27. Annoying to run.
  28. TAP::Harness::Remote
  29. Magic Remote Testing
  30. # ~/.remote_test --- local: /path/to/local/testing/root/ host: - remote1.testing.host.example.com - remote2.testing.host.example.com root: /where/to/place/local/root/on/remote/ user: username master: 1 perl: /usr/bin/perl ssh: /usr/bin/ssh ssh_args: - -x - -S - '~/.ssh/master-%r@%h:%p'
  31. prove --harness TAP::Harness::Remote t/*.t
  32. 16.5 minutes 16.5 !
  33. prove --harness TAP::Harness::Remote -j 5 t/*.t
  34. Magic Parallel Remote Testing
  35. 12 minutes! 12 !
  36. Not good enough for TDD
  37. What I need is... • Fast Servers ( ) • Lots of Fast Servers ( ) • Right Now ( ) • Not Very Often ( )
  38. A use for cloud computing! !
  39. TAP::Harness::Remote::EC2
  40. 4 hosts. -j 5
  41. 89 seconds 89
  42. Yatta!
  43. Yatta!
  44. EC2 Caveats Default Perl builds are really bad Perl Machines are mostly underpowered (“XL” instances are great, though) XL Machine Setup/Teardown is ~manual EC2
  45. What's next for ::Harness::Remote::* ? More polish on EC2 tools EC2 Better EC2 instance control EC2 More widespread usage
  46. Carp::REPL It's not quite a debugger
  47. How many of you use the Perl debugger? Perl
  48. How many of you know how to use the perl debugger?
  49. I don’t, either.
  50. So, what do I use?
  51. 31b:~ jesse$ perl /tmp/contrived.pl Undefined subroutine &main::does_not_exist called at /tmp/contrived.pl line 20. 31b:~ jesse$ vim /tmp/contrived.pl 18.sub c { 19. my $to_call = shift; 20. $to_call = \"does_\".$to_call; 21. no strict refs; 22. $to_call->(); 23.}
  52. 31b:~ jesse$ perl /tmp/contrived.pl Undefined subroutine &main::does_not_exist called at /tmp/contrived.pl line 22. 31b:~ jesse$ vim /tmp/contrived.pl 18.sub c { 19. my $to_call = shift; 20. $to_call = \"does_\".$to_call; 21. no strict refs; 22. use Carp; Carp::cluck(\"$to_call\"); 23. $to_call->(); 24.}
  53. Ick. A Print Statement. Print
  54. Anyone else here use print statement debugging? print
  55. (Oh god, I hope I'm not alone)
  56. Acme, you wrote Devel::ebug... Leon Brocard Devel::ebug …
  57. Do you use it?
  58. I want a simple debugger that's easier than print statements print
  59. sartak created Carp::REPL Shawn Moore Carp::REPL
  60. A lightweight, modern, interactive debugger
  61. Built on Devel::REPL Devel::REPL
  62. Carp::REPL Hooks into $SIG{__DIE__} Carp::REPL $SIG{__DIE__}
  63. $SIG{__WARN__} hooks are optional $SIG{__WARN__}
  64. 31b:~ jesse$ perl -MCarp::REPL /tmp/contrived.pl Undefined subroutine &main::does_not_exist called at /tmp/contrived.pl line 22. 0: Carp::REPL::repl called at /tmp/contrived.pl:22. 1: main::c called at /tmp/contrived.pl:15. 2: main::b called at /tmp/contrived.pl:9. 3: main::a called at /tmp/contrived.pl:27. Now at /tmp/contrived.pl:22 (frame 0). $
  65. That's not a shell prompt
  66. 31b:~ jesse$ perl -MCarp::REPL /tmp/contrived.pl Undefined subroutine &main::does_not_exist called at /tmp/contrived.pl line 22. 0: Carp::REPL::repl called at /tmp/contrived.pl:22. 1: main::c called at /tmp/contrived.pl:15. 2: main::b called at /tmp/contrived.pl:9. 3: main::a called at /tmp/contrived.pl:27. Now at /tmp/contrived.pl:22 (frame 0). $ warn $0 /tmp/contrived.pl at (eval 135) line 15, <FIN> line 1.
  67. It's Perl, but it's not just Perl Perl Perl
  68. :t - Stack trace :u - Up one stack frame :d - Down one stack frame :e - Print this frame's lexical environment :q - Quit this REPL $_e - ARRAYREF of this frame's @_
  69. $ :t 0: Carp::REPL::repl called at /tmp/contrived.pl:22. 1: main::c called at /tmp/contrived.pl:15. 2: main::b called at /tmp/contrived.pl:9. 3: main::a called at /tmp/contrived.pl:27. $
  70. $ :e $Env = { \"\\$to_call\" => \\do { my $v = 'does_not_exist' } }; $ :u $ :u Now at /tmp/contrived.pl:9 (frame 2). $ :e $Env = { \"\\$to_call\" => \\do { my $v = 'exist' } }; $ :u Now at /tmp/contrived.pl:27 (frame 3). $ :e $Env = { \"\\$to_call\" => \\do { my $v = '' } }; $ :d Now at /tmp/contrived.pl:9 (frame 2). $ :e $Env = { \"\\$to_call\" => \\do { my $v = 'exist' } }; $ warn join(\", \",@$_a); exist at (eval 138) line 18, <FIN> line 4.
  71. Why is my code 'warn'ing? Maybe it's in an eval. eval Or in a CPAN library. CPAN No problem! perl -MCarp::REPL=warn
  72. 31b:~ jesse$ perl -MCarp::REPL=warn /tmp/contrived.pl Use of uninitialized value in concatenation (.) or string at /tmp/contrived.pl line 8. 0: Carp::REPL::repl called at /tmp/contrived.pl:8. 1: main::a called at /tmp/contrived.pl:27. Now at /tmp/contrived.pl:8 (frame 0). $ :e $Env = { \"\\$to_call\" => \\do { my $v = undef } }; $ :q Undefined subroutine &main::does_not_exist called at /tmp/contrived.pl line 22, <FIN> line 2. 0: Carp::REPL::repl called at /tmp/contrived.pl:22. 1: main::c called at /tmp/contrived.pl:15. 2: main::b called at /tmp/contrived.pl:9. 3: main::a called at /tmp/contrived.pl:27. Now at /tmp/contrived.pl:22 (frame 0). $
  73. Inserting breakpoints You know your 'print' statements? print Turn them into breakpoints. Two ways: 2 : s/print/warn/ and -MCarp::REPL=warn Carp::REPL::repl
  74. 18.sub c { 19. my $to_call = shift; 20. no strict 'refs'; 21. Carp::REPL::repl(); #Gimme a breakpoint here! 22. $to_call = \"does_\".$to_call; 23. $to_call->(); 24.}
  75. What's next for Carp::REPL? I have no idea. It's simple. It works.
  76. Build web apps
  77. Template::Declare A Pure Perl Templating Engine 2007 Talk Encore Presentation!
  78. Perl has two big templating camps Perl 2
  79. Template::Toolkit A DSL for templates DSL It's NOT Perl Why should I learn a new language for templates?
  80. HTML::Mason There's Perl inside. Perl
  81. HTML::Mason <mason><is><still> <full><of> <angle><brackets> < >< >< >< >< >< >
  82. HTML::Mason </brackets></angle> </of></full> </still></is></mason> </ ></ ></ ></ ></ ></ >
  83. I'm Just A Simple Perl Hacker Perl
  84. I needed something more Perlish Perl
  85. template '/pages/mypage.html' => sub { html { head {}; body { h1 {'Hey, this is text'}; } } };
  86. template choices => page { h1 { 'My Choices' } dl { my $choices = Doxory::Model::ChoiceCollection->new; $choices->limit( column => 'asked_by', value => Jifty->web->current_user->id, ); while (my $c = $choices->next) { dt { $c->name, ' (', $c->asked_by->name, ')' } dd { b { $c->a } em { 'vs' } b { $c->b } } } } };
  87. But! Content! Templates! ! ! Design! Code! ! ! OMGWTFBBQ!? !? THAT'S WRONG! !
  88. The person who told you it's wrong was lying to you.
  89. We're Perl hackers Perl
  90. Why are we writing our templates in another language?
  91. This is not 1997 1997
  92. It’s 2008 2008
  93. People use CSS for design now CSS
  94. Programmers still have to make templates
  95. Templates run like CODE
  96. Because they ARE code
  97. Let's use our CODING tools to work with them
  98. How about Refactoring?
  99. Have you ever tried to refactor HTML? HTML
  100. template 'mypage.html' => page { h1 { 'Two choices' }; div { attr { class => 'item' }; h2 { 'Item 1'}; }; div { attr { class => 'item' }; h2 { 'Item 2'}; }; };
  101. template 'mypage.html' => page { h1 { 'Two choices' }; for (\"Item 1\", \"Item 2\") { item($_); } }; sub item { my $content = shift; div { attr { class => 'item' }; h2 {$content}; }; }
  102. We can refactor templates! !
  103. Our HTML is magically valid HTML
  104. (Syntax errors are... Syntax Errors) …
  105. Object Oriented Templates
  106. Subclassing It just works We're using Perl's symbol table Perl (Template::Declare's show() passes the class for you) Template::Declare show()
  107. Mixins alias Some::Template::Library under '/path'; That's it.
  108. Closures
  109. Tags as Closures HTML tags take blocks of content HTML Our tag methods take blocks of Perl Perl They return closures when you want them They run and output their content when you want them to
  110. sub h1 (&;$) { my $code = shift; ... if (defined wantarray) { return sub { ...closure around $code...}; } else { # Actually do our work, run $code and # return the output return $code->(); } }
  111. What's next for Template::Declare? HTML Attribute Validation HTML Compile to .js js
  112. CSS::Squish A compiler for Cascading Style Sheets CSS
  113. The Problem Many small CSS Files CSS Easy to work with Painful to serve
  114. The Problem One big CSS file CSS Painful to work with Easy to serve
  115. How CSS works main.css: @import \"yui-fonts.css\"; @import \"base.css\"; @import \"layout.css\"; @import \"nav.css\"; @import \"forms.css\"; @import \"boxes.css\"; @import \"login.css\"; ... CSS
  116. How CSS works • Browser downloads CSS stylesheets listed in HTML • Browser processes each stylesheet for @include directives • Browser fetches each stylesheet found • This is slow. CSS::Squish
  117. How CSS works To make CSS faster, you can tell browsers to cache stylesheets CSS ...then you have trouble if you want to update your styles Some people add datestamps to the stylesheet names: /css/mypagestyle.css?1210362379 CSS::Squish
  118. How CSS::Squish works It pretends to be a browser. You give it the path to a stylesheet. It returns the fully computed stylesheet the browser would get eventually. You serve that file out to the user. CSS::Squish
  119. How we use CSS::Squish Instead of: <link rel=\"stylesheet\" type=\"text/css\" href=\"main.css”/> We have this: <link rel=\"stylesheet\" type=\"text/css\" href=\"/ css/squished/ 4a50a85044a6ba727f7aa0683ac21f7e.css”/> CSS::Squish
  120. How we use CSS::Squish If we have a cached copy of the squished CSS, name the ‘file’ as an MD5 of the content CSS MD5 Tell browsers to cache it forever When users load a page, they will always fetch the squished CSS if it’s changed. By magic CSS CSS::Squish
  121. What’s next for CSS::Squish Refactor the MD5 hash bits from Jifty to CSS::Squish MD5 Jifty CSS::Squish What else do you want?
  122. Ship software
  123. App::ChangeLogger Gorgeous changelogs
  124. We create a lot of software
  125. (145 Projects in bps-public svn) 145
  126. We’re not so good at doing releases
  127. Lots of manual work
  128. ShipIt can help with most of it ShipIt
  129. What about Changelog?
  130. svn log svn://svn.foo.com/MyProj > Changelog
  131. Ship it! ShipIt
  132. Ew. No. Ick. Wrong. Bad.
  133. App::ChangeLogger
  134. Two commands • sort-changelog • generate-changelog 2
  135. Ok, three commands: • svn log --xml svn://svn.bestpractical.com/ App-Changelogger > changelog.raw.xml • ./bin/sort-changelog changelog.xml changelog.out.xml • bin/generate-changelog --generate changelog.out.xml Changelog 3
  136. What's next for App::Changelogger? Use it on itself. (Release it) Store changelog metadata in repository Support for Git, Hg Git Hg Easier customization
  137. Shipwright Build. Ship.
  138. The Problem CPAN
  139. The Problem Everything that is not CPAN : CPAN
  140. We make RT RT
  141. RT has Many Dependencies RT
  142. Apache::DBI Digest::MD5 HTML::Scrubber Mail::Mailer Test::Warn Apache::Request Digest::base HTML::TokeParser Module::Refresh Text::ParseWords Apache::Session File::Find HTML::TreeBuilder Module::Versions::Report Text::Quoted CGI::Cookie File::Glob HTTP::Request::Common Net::SMTP Text::Template CGI::Fast File::ShareDir HTTP::Server::Simple PerlIO::eol Text::WikiFormat CGI::SpeedyCGI File::Spec HTTP::Server::Simple::Mason Pod::Usage Text::Wrapper CSS::Squish File::Temp IPC::Run Regexp::Common Time::HiRes Cache::Simple::TimedExpiry GD::Graph IPC::Run::SafeHandles Scalar::Util Time::ParseDate Calendar::Simple GD::Text LWP::UserAgent String::ShellQuote Tree::Simple Class::ReturnValue Getopt::Long Locale::Maketext Term::ReadKey UNIVERSAL::require DBD::Oracle GnuPG::Interface Locale::Maketext::Fuzzy Term::ReadLine WWW::Mechanize DBD::Pg HTML::Entities Locale::Maketext::Lexicon Test::Builder XML::RSS DBD::SQLite HTML::Form Log::Dispatch Test::Deep XML::Simple DBD::mysql HTML::FormatText Log::Dispatch::Perl Test::Expect DBIx::SearchBuilder HTML::Mason MIME::Entity Test::HTTP::Server::Simple Data::ICal HTML::RewriteAttributes MIME::Types Test::WWW::Mechanize
  143. That’s just the non-core CPAN dependencies. Without all their dependencies.
  144. 116 CPAN distributions once you do the recursion 116
  145. And then there are the external libraries and programs
  146. • perl • readline • expat • zlib • fontconfig • gnupg • freetype • mysql • libgd • postgresql • libjpeg • libpng
  147. Plagger beats RT. (It has 135 CPAN deps) Plagger (Plagger 135 )
  148. RT is hard to install RT
  149. RT should be easy to install
  150. All software should be easy to install
  151. What Shipwright does Tracks all dependencies in version control (As far down as you want. I skip libc.) libc Shipwright
  152. What Shipwright does Computes a full dependency order No more recursive CPAN installs CPAN Shipwright
  153. What Shipwright does Keeps all packages in version control No more “that site is down” Shipwright
  154. What Shipwright does Automates multi-package builds (No manual intervention) Shipwright
  155. What Shipwright does Makes installed packages relocatable (Wraps all scripts and binaries) Shipwright
  156. What Shipwright does Makes historical builds reproducible (No more “Oh. that API changed in 2.0”) API 2.0 Shipwright
  157. Shipwright and CPAN CPAN-friendly CPAN (Not CPAN-only) CPAN CPAN dist import CPAN Automatic CPAN dependency resolution Full build ordering No more CPAN dependency hell. Shipwright CPAN
  158. Shipwright and C Native support for autoconfiscated packages No support for magic C->C dependency resolutions C C Shipwright C
  159. Shipwright and Ruby Not Ruby friendly :( Ruby No Gem support yet Gem Hackathon this weekend? Shipwright Ruby
  160. What you can ship A platform-neutral source distribution Platform-specific binary distributions
  161. Making a Shipwright Vessel svnadmin create file:///Users/jesse/shiprepo shipwright create --repository svn:file:///Users/jesse/shiprepo/myproject shipwright import --repository svn:file:///Users/jesse/shiprepo/myproject cpan:Plagger Go get a cup of coffee (Shipwright will chase all 135 dependencies) Shipwright 135 Shipwright
  162. Building a Shipwright Vessel svn co file:///Users/jesse/shiprepo/myproject cd myproject ./bin/shipwright-builder (Possibly more coffee) ( ) tar czvf myproject.tgz /path/to/build Shipwright
  163. Using a Shipwright Vessel • tar xzvf myproject.tgz c /usr/local/ myproject • ln -s /usr/local/myproject/bin/myprogram /usr/local/bin Shipwright
  164. What's next for Shipwright? Build tool usability improvements Ruby support? Ruby
  165. Get input from users
  166. Date::Extract Get a date
  167. The Problem
  168. Pick up the drycleaning on tuesday after school
  169. There are many Date / Time parsers on CPAN CPAN
  170. Date::Manip
  171. Time::ParseDate
  172. Date::Parse
  173. DateTime::Format::Natural
  174. Each can parse dates and times
  175. None of them are any good at finding dates in a block of text
  176. Timezones are hard
  177. Most parsers generate many false positives
  178. use Date::Extract; my $arbitrary_text = <<EOF; I need to plan for my trip. On Sunday afternoon, I'll head on to taiwan. EOF my $parser = Date::Extract->new(); my $dt = $parser->extract($arbitrary_text) or die \"No date found.\"; warn $dt->ymd;
  179. It's simple.
  180. It's unsexy.
  181. It's reliable.
  182. What's next for Date::Extract? Parsing more obscure human-written dates? Date::Extract::Lingua::* ?
  183. The Feedback Box Let users make suggestions everywhere
  184. mailto: links?
  185. getsatisfaction.com?
  186. I give up.
  187. Don't let your users give up.
  188. Feedback is important!
  189. Feedback can be easy!
  190. If you make it easy for users to give you feedback...
  191. You can capture lots of good information!
  192. From: Jesse Vincent / Feedback <comment-373709-destygrypuju@tasks.hiveminder.com> Date: Mon, 12 May 2008 12:31:49 -0700 Subject: Up for grabs: I'd really like Hiveminder to do all my work for me! (#EFYG) Jesse Vincent <jesse@bestpractical.com> created a task and put it up for grabs: http://task.hm/EFYG I'd really like Hiveminder to do all my work for me! -- Private debugging information: Is a Pro user! HTTP_ACCEPT: application/xml, text/xml, */* HTTP_ACCEPT_ENCODING: gzip, deflate HTTP_ACCEPT_LANGUAGE: en-us HTTP_CONNECTION: keep-alive HTTP_COOKIE: JIFTY_SID_HIVEMINDER=b58e123456719fd411bb9f3a8123458f; HTTP_HOST: hiveminder.com HTTP_REFERER: http://hiveminder.com/todo/ HTTP_USER_AGENT: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_2; en-us) AppleWebKit/526.5+ (KHTML, like Gecko) Version/3.1.1 Safari/525.18 HTTP_X_REQUESTED_WITH: XMLHttpRequest REMOTE_ADDR: 75.147.59.54 REMOTE_PORT: 35412 REQUEST_METHOD: POST REQUEST_URI: /todo/
  193. Collect lots of feedback
  194. Reply to lots of feedback
  195. Conversations make users happy
  196. Happy = Loyal
  197. Own the inbox
  198. Net::IMAP::Server An IMAP Server in Pure Perl Pure Perl IMAP Server
  199. Why?
  200. Offline Access
  201. iPhone Access iPhone
  202. Desktop Access
  203. Really, we just like things that are sick and wrong.
  204. Now Hiveminder users can take their tasks with them Hiveminder
  205. Magic mailboxes
  206. Update your tasks while offline
  207. What sort of mailbox do you use with that?
  208. mbox?
  209. no
  210. maildir?
  211. no
  212. How about Perl? Perl
  213. Net::IMAP::Server
  214. Complete RFC 3501 Implementation RFC 3501
  215. Write your own backends
  216. Let’s write one now
  217. How about a Spam server? Spam
  218. package Demo::IMAP::Auth; use base 'Net::IMAP::Server::DefaultAuth'; sub auth_plain { my ($self, $user, $pass ) = @_; # XXX DO AUTH CHECK return 1; }
  219. package Demo::IMAP::Model; use base 'Net::IMAP::Server::DefaultModel'; sub init { my $self = shift; $self->root(Demo::IMAP::Mailbox->new()); $self->root->add_child( name => \"INBOX\", is_inbox => 1); }
  220. package Demo::IMAP::Mailbox; use base qw/Net::IMAP::Server::Mailbox/; my $msg = Net::IMAP::Server::Message->new(<<'EOM'); From: jesse@example.com To: user@example.com Subject: This is a test message! Hello. I am executive assistant to the director of Bear Stearns, a failed investment Bank. I have access to USD5,000,000. ... EOM sub load_data { my $self = shift; $self->add_message($msg); }
  221. #!/usr/bin/perl use Net::IMAP::Server; Net::IMAP::Server->new( auth_class => \"Demo::IMAP::Auth\", model_class => \"Demo::IMAP::Model\", user => 'nobody', port => 143, ssl_port => 993 )->run();
  222. It runs! Ship it! (Just add SSL certificates) SSL
  223. with.hm Assign tasks by email
  224. We wanted to make it easy to work with Hiveminder by email. Hiveminder
  225. We had a few ideas... …
  226. Cc:
  227. Too clumsy
  228. Bcc:
  229. Too likely to break
  230. Commands in the body
  231. Too ugly
  232. hm...
  233. What could we do?
  234. DNS Hacks! Everybody loves DNS hacks DNS
  235. .hm
  236. Hiveminder!
  237. .hm
  238. Heard and McDonald Islands!
  239. with.hm
  240. Send your email with Hiveminder Hiveminder
  241. Wildcard MX Record! MX !
  242. *.with.hm ➡ mail.hiveminder.com
  243. An Example: From: jesse@bestpractical.com To: miyagawa@bulknews.net.with.hm Subject: Could you release a new version of plagger?
  244. My mail server looks up bulknews.net.with.hm bulknews.net.with.hm
  245. “Oh. That's handled by mail.hiveminder.com” mail.hiveminder.com
  246. mail.hiveminder.com unwraps the address. mail.hiveminder.com
  247. Hiveminder creates a task for miyagawa@bulknews.net miyagawa@bulknews.net
  248. Hiveminder emails miyagawa@bulknews.net miyagawa@bulknews.net
  249. Preventing Spam
  250. miyagawa@bulknews.net.my- secret.with.hm .
  251. I bet you can come up with even scarier uses of wildcard DNS. DNS
  252. Thank you!

+ obrajesseobrajesse, 2 years ago

custom

3658 views, 0 favs, 0 embeds more stats

Ten tools and techniques to help you:
Find bugs fa more

More info about this document

© All Rights Reserved

Go to text version

  • Total Views 3658
    • 3658 on SlideShare
    • 0 from embeds
  • Comments 2
  • Favorites 0
  • Downloads 24
Most viewed embeds

more

All embeds

less

Flagged as inappropriate Flag as inappropriate
Flag as inappropriate

Select your reason for flagging this presentation as inappropriate. If needed, use the feedback form to let us know more details.

Cancel
File a copyright complaint
Having problems? Go to our helpdesk?

Categories

Groups / Events