Advertisement
Guest User

Untitled

a guest
Sep 4th, 2011
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.95 KB | None | 0 0
  1. Attendees:
  2. Bill, Sarah, Carson, Alex, Michael, Clinton, Austin, Mahesh, Patrick, John,
  3. Lenore, Scott
  4.  
  5. IRC Channel
  6. #ubuntu-us-nc
  7. #ubuntu-us-nc
  8.  
  9. Vi Editor Tips:
  10. command-t = file search and open plugin
  11. vundle = package manager for vim (pathagen)
  12.  
  13.  
  14. Who uses black for highlighting ?
  15. The flying spaghetti monster might like boys, or girls, or aliens
  16. Good question.
  17. Damn, do i have to learn Python today?
  18. I am the very model of a modern major general.
  19.  
  20. http://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-00-introduction-to-computer-science-and-programming-fall-2008/readings
  21.  
  22. sweet thanks
  23.  
  24. HAPPY C++11 GUYS!
  25.  
  26. Howto Start Bug Fixing
  27. - pick a bug (mythfilldatabase runs wget with exposed password)
  28. https://bugs.launchpad.net/mythtv/+bug/672895
  29.  
  30. - If you know what program is crashing, find out what package it it from
  31. dpkg -S /usr/bin/mythfilldatabase
  32. mythtv-backend: /usr/bin/mythfilldatabase
  33.  
  34. - Download the source package and get the required dependancies
  35. apt-get source mythtv-backend
  36. Picking 'mythtv' as source package instead of 'mythtv-backend'
  37. sudo apt-get build-dep mythtv-backend
  38.  
  39. - Build from the orginal source
  40. cd mythtv-0.24.0+fixes.20110706.b491236/
  41. dpkg-buildpackage
  42.  
  43. - Find the offending line of code
  44. cd mythtv
  45. grep -r wget libs/.
  46. libs/libmythtv/datadirect.cpp: "wget --http-user='%1' ...
  47. bool DataDirectProcessor::GrabNextSuggestedTime(void)
  48. ...
  49. command = QString(
  50. "wget --http-user='%1' --http-passwd='%2' --post-file='%3' %4 "
  51. "--user-agent='%5' --output-document='%6'")
  52. .arg(GetUserID().replace('\'', "'\\''"))
  53. .arg(GetPassword().replace('\'', "'\\''")).arg(postFilename)
  54. .arg(ddurl).arg(user_agent).arg(resultFilename);
  55.  
  56. Suggest that we replace wget with a QHttp object (QT library)
  57. http://doc.qt.nokia.com/latest/qhttp.html -not supported
  58.  
  59. git-scm.com/ -for git information
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement