This allows you to use the following video streaming services outside of the US from your Mac without having to use a proxy or VPN, so no big bandwidth issues:
- Hulu / HuluPlus
- CBS
- ABC
- MTV
- theWB
- CW TV
- Crackle
- NBC
| # $ tweet Hi mom! | |
| # | |
| # Put this in ~/.bashrc or wherever. | |
| # If it doesn't work, make sure your ~/.netrc is right | |
| # | |
| # (Thanks to @anildigital for curl-fu) | |
| function tweet { | |
| curl -n -d status="$*" https://twitter.com/statuses/update.xml --insecure &> /dev/null | |
| echo "tweet'd" |
| #include <iostream> | |
| using namespace std; | |
| class A | |
| { | |
| protected: | |
| public: | |
| int count; |
| all: | |
| g++ -O3 -c -o scans.o scans.cpp | |
| g++ -O3 scans.o ScanBenchmark.cpp |
This allows you to use the following video streaming services outside of the US from your Mac without having to use a proxy or VPN, so no big bandwidth issues:
| #include <iostream> | |
| #include <chrono> | |
| class A { | |
| public: | |
| enum class Type { | |
| B,C,D | |
| }; |
| --- a/tutorial/cpp/CppClient.cpp | |
| +++ b/tutorial/cpp/CppClient.cpp | |
| @@ -38,9 +38,9 @@ | |
| using namespace boost; | |
| int main(int argc, char** argv) { | |
| - shared_ptr<TTransport> socket(new TSocket("localhost", 9090)); | |
| - shared_ptr<TTransport> transport(new TBufferedTransport(socket)); | |
| - shared_ptr<TProtocol> protocol(new TBinaryProtocol(transport)); | |
| + boost::shared_ptr<TTransport> socket(new TSocket("localhost", 9090)); |
| <?xml version="1.0" encoding="utf-8"?> | |
| <html xmlns="http://www.w3.org/1999/xhtml"> | |
| <head> | |
| <meta http-equiv="content-type" content="application/xhtml+xml; charset=utf-8" /> | |
| <title>Generated by gitinspector 0.3.2</title> | |
| <script type="application/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script> | |
| <script type="application/javascript"> | |
| (function($){$.extend({tablesorter:new | |
| function(){var parsers=[],widgets=[];this.defaults={cssHeader:"header",cssAsc:"headerSortUp",cssDesc:"headerSortDown",cssChildRow:"expand-child",sortInitialOrder:"asc",sortMultiSortKey:"shiftKey",sortForce:null,sortAppend:null,sortLocaleCompare:true,textExtraction:"simple",parsers:{},widgets:[],widgetZebra:{css:["even","odd"]},headers:{},widthFixed:false,cancelSelection:true,sortList:[],headerList:[],dateFormat:"us",decimal:'/\.|\,/g',onRenderHeader:null,selectorHeaders:'thead th',debug:false};function benchmark(s,d){log(s+","+(new Date().getTime()-d.getTime())+"ms");}this.benchmark=benchmark; |