create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
| if redis.call('exists',KEYS[1]) > 0 then | |
| return 0 | |
| else | |
| redis.call('setex',KEYS[1],ARGV[1],ARGV[2]) | |
| return 1 | |
| end |
WARNING : This code now lives in its own github repository: lovasoa/fast_array_intersect. It is also published on npm: fast_array_intersect
This is my constantly updated CS:GO autoexec config. Changelogs can be found under revisions here
Put autoexec.cfg in ...\Steam\steamapps\common\Counter-Strike Global Offensive\csgo\cfg or take what you want from it and add to your autoexec config!
After the Wild West Simulator 2015 update, video.txt needs to be put in ...\Steam\userdata\<Steam3 ID>\730\local\cfg
Previously, in The Architecture of Open Source Applications, I described SocialCalc, an in-browser spreadsheet system that replaced the server-centric WikiCalc architecture. SocialCalc performs all of its computations in the browser; it uses the server only for loading and saving spreadsheets.
For the Socialtext team, performance was the primary goal behind SocialCalc's design in 2006. The key observation was this: Client-side computation in JavaScript, while an order of magnitude slower than server-side computation in Perl, was still much faster than the network latency incurred during AJAX roundtrips:
| $ gcc -DUSE_MMAP=0 tmp/rss.c && ./a.out | |
| rss 360448 | |
| ============== | |
| rss 360448 | |
| rss 1429504 | |
| rss 552960 | |
| ============== | |
| rss 552960 | |
| rss 1359872 | |
| rss 1359872 |
| // I'm using this now in my Alloy runtime testing to assert that the | |
| // proper styles are getting assigned to Titanium proxy objects. The | |
| // deep comparison is necessary for objects like font in the style. So | |
| // for my purposes the accuracy of the results far supercedes the lack | |
| // of blazing performance with this code. I'm using underscore.js as | |
| // it's part of Alloy, but isX() calls could easily be filled out in | |
| // a couple lines of JS. | |
| // | |
| // Obviously due to the use of JSON.stringify() the objects to be | |
| // compared need to be JSON serializable. |
| initialize: -> | |
| @bind 'all', @track_pageview | |
| track_pageview: -> | |
| url = Backbone.history.getFragment() | |
| ga('send', 'pageview', "/#{url}") |