Smug Ugly, OSX presenting SMB shares
dashes.com35 pointsby gdee29 comments
> PayPal doesn't need to freeze your account, they can
> just as easily prevent you from withdrawing money to
> your bank account, which sucks but it probably won't
> kill your business. At least your customers can still
> pay you.
I can't believe I'm writing in PayPal's defense but facts are facts. > But I'm no longer accepting paypal payments myself
> and I would advise everybody to keep their account
> balances as low as possible.
Sound advice. In my new private project, I redraw from paypal every 200 euros. Thankfully, that's a lot of redraws (for certain definitions of a lot) and I'm a bit behind redraws but I learned the lesson from the losses the company I work with endures every month. Details in this same thread. (http://news.ycombinator.com/item?id=1679288) > I bet that somewhere in paypal, it works like DEA style
> asset forfeiture, and the people who freeze accounts stand
> to benefit financially, personally and directly.
You'd lose that bet. They refund the money to the original payer. For better or worse. My company loses a few hundred euros each month to this. They keep asking for proof of delivery. Yet we sell internet access. No proof in that unless I'm willing to break the law (and my client's trust) and tcpdump my clients. No way I'm doing that so I swallow the losses. No client ever filled a complain in the first place and no client ever complained about returned funds for consumed services either. :P > ssh prod-db
> mysqldump what-i-need > file.sql
> exit
> scp prod-db:file.sql .
You can definitely do better than that with ssh: ssh prod-db "mysqldump what-i-need" > file.sql
If the dump is large and the network is the bottleneck, you can also do it like this: ssh prod-db "mysqldump what-i-need | p7zip" | p7zip -d > file.sql
Edit: Noste gave the right oneliner, sorry I didn't notice it at first. Consider mine only as an expansion of his second point.