Hacker Poesy
  • FAQ
  • Login

Brett Slatkin on onebigfluke.com

This remote profile is registered on another site; see 's original profile page on onebigfluke.com.

  1. Brett Slatkin ()'s status on Sunday, 13-Jan-2013 18:37:00 EST Brett Slatkin Brett Slatkin
    Remote profile options...
    I'll (finally) admit that post-rock is really a thing and it's great.image
    Sunday, 13-Jan-2013 18:37:00 EST from feedproxy.google.com permalink
  2. Brett Slatkin ()'s status on Saturday, 12-Jan-2013 13:09:00 EST Brett Slatkin Brett Slatkin
    Remote profile options...
    "Suicide is a public health issue. Media and online coverage of suicide should be informed by using best practices."

    Read the Guidelines
    image
    Saturday, 12-Jan-2013 13:09:00 EST from feedproxy.google.com permalink
  3. Brett Slatkin ()'s status on Friday, 11-Jan-2013 16:10:00 EST Brett Slatkin Brett Slatkin
    Remote profile options...
    Sometimes I feel like I drink too much (coffee, beer, etc). This makes me feel better.
    image
    hattip KevMoimage
    Friday, 11-Jan-2013 16:10:00 EST from feedproxy.google.com permalink
  4. Brett Slatkin ()'s status on Friday, 11-Jan-2013 14:49:00 EST Brett Slatkin Brett Slatkin
    Remote profile options...
    Using Sublime full-time now. Goodbye TextMate, it was a great ride: 7 years, 500KLOC, C++ Python, Java, JS, CSS, HTML, Go, and more.image
    Friday, 11-Jan-2013 14:49:00 EST from feedproxy.google.com permalink
  5. Brett Slatkin ()'s status on Friday, 11-Jan-2013 14:40:00 EST Brett Slatkin Brett Slatkin
    Remote profile options...
    Submitted a proposal for Velocity 2013 to spread the word about perceptual diffs and continuous deployment beyond this ignite talk. Re-read my proposal today: I dropped the word "this" in the description and sound like a schmuck. Can't edit it since it's past the deadline. Well, there's always next year.image
    Friday, 11-Jan-2013 14:40:00 EST from feedproxy.google.com permalink
  6. Brett Slatkin ()'s status on Wednesday, 09-Jan-2013 13:28:00 EST Brett Slatkin Brett Slatkin
    Remote profile options...
    On my Muni train today someone outside the back car was dragged by their hand for about 100 feet. Terrifying. It took maybe 10 seconds of screaming and panic for us back car passengers to get the train to stop. Also gotta say the person is stupid, stupid, stupid. Wait 5 minutes for the next train.image
    Wednesday, 09-Jan-2013 13:28:00 EST from feedproxy.google.com permalink
  7. Brett Slatkin ()'s status on Tuesday, 08-Jan-2013 18:44:00 EST Brett Slatkin Brett Slatkin
    Remote profile options...
    TIL: Python's @property has a short-hand for setters! class C(object): def __init__(self): self._x = None @property def x(self): """I'm the 'x' property.""" return self._x @x.setter def x(self, value): self._x = value @x.deleter def x(self): del self._x I was using Python 2.5 for so long I've been unaware of features introduce…
    Tuesday, 08-Jan-2013 18:44:00 EST from feedproxy.google.com permalink

    Attachments

    1. -20130108T234424-jf9rbwm.html
  8. Brett Slatkin ()'s status on Tuesday, 08-Jan-2013 00:53:00 EST Brett Slatkin Brett Slatkin
    Remote profile options...
    Okay okay -- One prediction for 2013: Krautrock will be bigger than ever before.image
    Tuesday, 08-Jan-2013 00:53:00 EST from feedproxy.google.com permalink
  9. Brett Slatkin ()'s status on Monday, 07-Jan-2013 21:17:00 EST Brett Slatkin Brett Slatkin
    Remote profile options...
    Computers are hard to use I've used this beautiful "Microsoft Natural Keyboard Elite" for a decade and buy them in 5 packs. Horrible name aside, it's really comfortable for me and what I prefer over Goldtouch and Kinesis. I've been using the Windows key as the Mac "command" key for a long time. The problem is that it's in the wrong position: the option and command keys are swapped. I've gott…
    Monday, 07-Jan-2013 21:17:00 EST from feedproxy.google.com permalink

    Attachments

    1. -20130108T021746-aerve8c.html
  10. Brett Slatkin ()'s status on Sunday, 06-Jan-2013 23:40:00 EST Brett Slatkin Brett Slatkin
    Remote profile options...
    Buying from Equals I like to buy things that are made in the USA. When that's not possible, I favor things made in countries where I understand the laws or society, such as members of the EU or Japan. When this comes up in conversation, I hear rhetorical questions like: Shouldn't the free market decide what the best product is? Why would you buy inferior goods for higher prices? Don't you help …
    Sunday, 06-Jan-2013 23:40:00 EST from feedproxy.google.com permalink

    Attachments

    1. -20130107T044058-pn3ghag.html
  11. Brett Slatkin ()'s status on Monday, 31-Dec-2012 13:56:00 EST Brett Slatkin Brett Slatkin
    Remote profile options...

    If he lost, the potus brew would have been hot water, right?

    image
    image
    Monday, 31-Dec-2012 13:56:00 EST from feedproxy.google.com permalink
  12. Brett Slatkin ()'s status on Monday, 31-Dec-2012 13:49:00 EST Brett Slatkin Brett Slatkin
    Remote profile options...

    Predictions for 2013

    There are two kinds of predictions in my mind:

    1. The obvious ones, like Kate Middleton will have a baby, a new Mac will come out, mobile will be huge, etc.

    2. The real ones, which somehow could be used to your advantage. If you had these, why would you tell anyone else? To be right? What's that worth unless you're Nate Silver?

    I'd rather just bet on or do the unpredictable thing.

    image
    Monday, 31-Dec-2012 13:49:00 EST from feedproxy.google.com permalink
  13. Brett Slatkin ()'s status on Thursday, 27-Dec-2012 16:24:00 EST Brett Slatkin Brett Slatkin
    Remote profile options...
    Another one I see a lot:

    "Every statement is if/panic"
    if _, err = dataFile.Seek(0, 0); err != nil {
      panic(err)
    }
    if err = dataFile.Truncate(0); err != nil {
      panic(err)
    }
    if err = json.NewEncoder(dataFile).Encode(teachMap); err != nil {
      panic(err)
    }
    
    image
    Thursday, 27-Dec-2012 16:24:00 EST from feedproxy.google.com permalink
  14. Brett Slatkin ()'s status on Thursday, 27-Dec-2012 13:31:00 EST Brett Slatkin Brett Slatkin
    Remote profile options...
    How golang feels, often:

    "Every other statement is error checking"
    func multiplyTwoNumbers() (*myType, error) {
      a, err := ReadNumber()
      if err != nil {
        return nil, err
      }
    
      b, err := ReadOtherNumber()
      if err != nil {
        return nil, err
      }
    
      return &myType{a * b}, nil
    }
    
    image
    Thursday, 27-Dec-2012 13:31:00 EST from feedproxy.google.com permalink
  15. Brett Slatkin ()'s status on Thursday, 27-Dec-2012 13:11:00 EST Brett Slatkin Brett Slatkin
    Remote profile options...
    Testing out Sublime Text 2 in earnest finally, after 7+ years of TextMate. Editor setup for future reference: Theme (variation of All Hallow's Eve) background: black text: white strings: green comments: red keywords: orange constants: cyan function calls: purple escapes: grey format strings: cyan line highlight: navy Config { "color_scheme": "Packages/Color Scheme - Default/All Hallow's Eve.t…
    Thursday, 27-Dec-2012 13:11:00 EST from feedproxy.google.com permalink

    Attachments

    1. -20121227T181142-4e3sqva.html
  16. Brett Slatkin ()'s status on Monday, 24-Dec-2012 12:06:00 EST Brett Slatkin Brett Slatkin
    Remote profile options...
    This video about the Tor Project was really interesting (silly hat aside). The comparison of Deep Packet Inspection devices to IBM helping the Nazis is apt (not Godwin's law). The point here was underscored by this recent article from the NY Times: "Last year [he] was among tens of thousands of Chinese who were dumped into the nation’s vast 're-education through labor' system, a Stalinist-insp…
    Monday, 24-Dec-2012 12:06:00 EST from feedproxy.google.com permalink

    Attachments

    1. -20121224T170624-h9nw7dv.html
  17. Brett Slatkin ()'s status on Saturday, 22-Dec-2012 20:33:00 EST Brett Slatkin Brett Slatkin
    Remote profile options...
    People still send email in ISO-2022-JP. It's hard to decode.image
    Saturday, 22-Dec-2012 20:33:00 EST from feedproxy.google.com permalink
  18. Brett Slatkin ()'s status on Friday, 21-Dec-2012 23:36:00 EST Brett Slatkin Brett Slatkin
    Remote profile options...
    The race is on for holiday hacking.image
    Friday, 21-Dec-2012 23:36:00 EST from feedproxy.google.com permalink
  19. Brett Slatkin ()'s status on Friday, 21-Dec-2012 14:12:00 EST Brett Slatkin Brett Slatkin
    Remote profile options...
    I was so confused the first time I saw "&c" in text. Children of the future will wonder what "&c" means.image
    Friday, 21-Dec-2012 14:12:00 EST from feedproxy.google.com permalink
  20. Brett Slatkin ()'s status on Tuesday, 18-Dec-2012 20:05:00 EST Brett Slatkin Brett Slatkin
    Remote profile options...
    TIL: "5 choose 2" understood by Google calculator. Easy combinatorics!
    image
    Tuesday, 18-Dec-2012 20:05:00 EST from feedproxy.google.com permalink
  • After
  • Before

User actions

    Brett Slatkin

    Brett Slatkin

    Tags
    • (None)
    • Help
    • About
    • FAQ
    • Privacy
    • Source
    • Version
    • Contact

    Hacker Poesy is a GNU social hub. It runs version 1.1.3-beta3, available under the GNU Affero General Public License.

    Creative Commons Attribution 3.0 All Hacker Poesy content and data are available under the Creative Commons Attribution 3.0 license.

    Switch to mobile site layout.