RSS icon Home icon
  • Scammy LLC Statement of Information Letters

    Posted on September 30th, 2009 schmeeve No comments

    We’ve gotten two of these now.

    Business Filings Division SCAM

    Business Filings Division SCAM

    In short, it’s a scam. Do not send them money. While you do need to file a Statement of Information with the state for your LLC, you only need do it once every two years (at least in California) and the cost is somewhere around $25-30.

    It all looks very scary, and on the back there’s many warnings about penalties and how they’re gonna kill your puppy or something.

    Tell the USPS and BBB (California already gives this company an “F”).

    Also contact your state AG, which can’t work on your behalf, but may keep data for a class action to shut these scammers down.

    Update: the State of California has a page up concerning these fools.

  • They’re stealing your code!

    Posted on September 24th, 2009 schmeeve No comments

    The great security scare of the day is rouge (possibly Russian!) thieves on the prowl looking for source code on your websitez by poking through repository directories, such as .svn. Anyway, it’s simple to block, but please folks, look at where your web servers are pointed and what may be exposed. It’s a problem as old as the web itself.

    In Apache, this can be done easily:

    <IfModule mod_rewrite.c>
    RewriteRule ^(.*/)?\.svn/ - [F,L]
    ErrorDocument 403 "Access Forbidden"
    </IfModule>

    But sitting in front of Apache and Mongrel we use the pound load balancer. Here’s a bit of code which will catch anything trying to get into the svn directory, even though directory listings weren’t possible in the first place:

    Service
    URL ".svn.*"
    Redirect "http://d27n.com/public/404.html"
    End

    You can even skip the Redirect if you want to be lazy or don’t have a 404 page. This will just deadend the service.

  • authlogic facebook-connect and rspec

    Posted on September 22nd, 2009 dryan No comments

    The past week I’ve had a chance to add facebook-connect to a rails site we’ve been working on by using the fantastic Authlogic and the Authlogic Facebook Connect add on.  However I found that all my existing controller tests blew up after adding the facebook-connect add on and after a little digging realized I needed to stub a method on the  rspec TestRequest method.

    The TestCase rdoc explains how to setup authlogic within your rspec controller tests, so I won’t get into that here.  Since I already had everything setup with a login method in my spec_helper.rb file, I just had to add a single line to that method.

    ~/spec/spec_helper.rb

    def login(user)

    request.stub!(:set_facebook_session)

    UserSession.create(users(user))

    end

    Eventually I’ll have to write some tests for any features that use the facebook api, but for now stubbing that method does the trick.

  • iStat Menus 2.0 Released

    Posted on September 3rd, 2009 schmeeve No comments

    My favorite system monitor which sits in your menu bar (great for large screens). Now Snow Leopard compatible. It’s free!

    Grab it here.

    A few years ago I wrote the developer asking for a link to Activity Monitor in the menus and it appeared in the next version. Very awesome. Neat new organization options for the menus, too. Much goodness to be had.

  • Snow Leopard review by Ars. ht…

    Posted on September 1st, 2009 schmeeve No comments

    Snow Leopard review by Ars. http://bit.ly/16O9fK 23 pages covers all the nitty gritty, including 64bit, new NSURL/CFURL, new Finder, more