Features Community Documentation Blog Tsuru is an extensible and open source Platform as a Service software. View on Github Fast and secure. The entire process is really simple with no special tools needed, just a simple git push. Learn more Scaling in Tsuru is completely painless. Just add a unit and Tsuru will take care of everything else. Learn more Tsuru is built to be extensible. Through services you can provide anything your application needs. Learn more Tsuru is an open source project and, as such, we welcome contributions. Feel free to report or fix bugs, contribute to the documentation, or just give your opinion about the software. General mailing list Development mailing list #tsuru on Freenode Twitter Google+ ...
Sign up for a GitHub account Sign in All Gists public qpfiffer / qpfifferstuff.patch Created 2014-05-30 Path for logpurge. Gist Detail Revisions 1 Download Gist Clone this gist Embed this gist Link to this gist qpfifferstuff.patch Raw File suppressed. Click to show. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 From ff762c18533097f528899f2d1d2a83a6eba2d8ca Mon Sep 17 00:00:00 2001 From: Quinlan Pfiffer <qpfiffer@gmail.com> Date: Fri, 30 May 2014 11:14:49 -0700 Subject: [PATCH] Improvements from production. - Moved regex to single expression. WOOOOO! - Sorted output. --- logpurge/__init__.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/logpurge/__init__.p...
Features About Jobs Blog Sign Up Sign In The High-Performance SQL Blog Subscribe Thank you HyperLogLog in Pure SQL 29 May 2014 Earlier we showed how to make count distinct 50x faster with subqueries . Using probabilistic counting we'll make count distinct even faster, trading a little accuracy for the increase in speed. We'll optimize a very simple query, which calculates the daily distinct sessions for 5,000,000 gameplays (~150,000/day): select date ( created_at ), count ( distinct session_id ) from gameplays The original query takes 162.2s. The HyperLogLog version is 5.1x faster (31.5s) with a 3.7% error, and uses a small fraction of the RAM. Databases often implement count(distinct) in two ways: When there are few distinct elements, the database makes a hashset in RAM and then counts the keys. When there there are too many elements to fit in R...
Skip to content Sign up Sign in Explore Features Enterprise Blog This repository This repository /.select-menu-item All repositories /.select-menu-item Star 0 Fork 0 public infoforcefeed / infoforcefeed.org /.container /.repohead Code Issues 0 Pull Requests 0 Pulse Graphs Network HTTPS Subversion You can clone with HTTPS or Subversion . Download ZIP /.repository-sidebar infoforcefeed.org website. 6 commits 1 branch 0 releases 1 contributor Python 99.5% CSS 0.5% Python CSS branch: master Switch branches/tags /.select-menu-header Branches Tags /.select-menu-tabs /.select-menu-filters master /.select-menu-item Nothing to show /.select-menu-list Nothi...
#infoforcefeed / Talks Talks Ad-hoc presentation nijotz gave on his shitstream project. Link is to full talk, 114MB. ...
Navigation menu Spiped (pronounced "ess-pipe-dee") is a utility for creating symmetrically encrypted and authenticated pipes between socket addresses, so that one may connect to one address (e.g., a UNIX socket on localhost) and transparently have a connection established to another address (e.g., a UNIX socket on a different system). This is similar to 'ssh -L' functionality, but does not use SSH and requires a pre-shared symmetric key. Spiped uses strong and well-understood cryptographic components: The initial key negotiation is performed using HMAC-SHA256 and an authenticated Diffie-Hellman key exchange over the standard 2048-bit "group 14"; following the completion of key negotiation, packets are transmitted encrypted with AES-256 in CTR mode and authenticated using HMAC-SHA256. The simplicity of the code — about 4000 lines of C code in total, of which und...
Skip to content Sign up Sign in Explore Features Enterprise Blog This repository This repository /.select-menu-item All repositories /.select-menu-item Star 1 Fork 1 public amonapp / amon-plugins /.container /.repohead Code Issues 0 Pull Requests 0 Pulse Graphs Network HTTPS Subversion You can clone with HTTPS or Subversion . Download ZIP /.repository-sidebar Permalink blob contrib key: blob_contributors:v21:251d251350659b27cf9c6d4be896faa1 Show File Finder branch: master Switch branches/tags /.select-menu-header Branches Tags /.select-menu-tabs /.select-menu-filters master /.select-menu-item sasho/feature/elasticsearch /.select-menu-item Nothing to show /.select-menu-list Nothing to show /...
I Can Has ROFLrazzi FAIL Blog Memebase Geek Universe Know Your Meme All Sites » About Chat Random Activity Welcome! Login or signup now! Home Memes Confirmed Researching Popular Submissions Deadpool All Submit an Entry Episodes Forums General Meme Research Just For Fun Site-Related All Blog Interviews In the Media White Papers Episode Notes Behind the Scenes Meme Review All Images Trending Most Commented Most Favorited Most Liked Least Liked Most Viewed All Templates Upload an Image Videos Trending Most Commented Most Favorited Most Liked Most Viewed All Upload a Video Specials 2014 Isla Vista Killings Bill Murray Stories That No One Will Believe Tommy Lee Jones With A Newspaper Pokémon According t...
Skip to content Sign up Sign in Explore Features Enterprise Blog This repository This repository /.select-menu-item All repositories /.select-menu-item Star 96 Fork 3 public mfisk / filemap /.container /.repohead Code Issues 3 Pull Requests 0 Wiki Pulse Graphs Network HTTPS Subversion You can clone with HTTPS or Subversion . Download ZIP /.repository-sidebar File-Based Map-Reduce http://mfisk.github.com/filemap 580 commits 3 branches 1 release 1 contributor Python 99.3% Shell 0.7% Python Shell branch: master Switch branches/tags /.select-menu-header Branches Tags /.select-menu-tabs /.select-menu-filters gh-pages /.select-menu-item master /.s...
Skip to content Sign up Sign in Explore Features Enterprise Blog This repository This repository /.select-menu-item All repositories /.select-menu-item Star 93 Fork 5 public cockroachdb / cockroach /.container /.repohead Code Issues 0 Pull Requests 0 Wiki Pulse Graphs Network HTTPS Subversion You can clone with HTTPS or Subversion . Download ZIP /.repository-sidebar A Scalable, Geo-Replicated, Transactional Datastore 151 commits 3 branches 0 releases 6 contributors Go 99.6% Shell 0.4% Go Shell branch: master Switch branches/tags /.select-menu-header Branches Tags /.select-menu-tabs /.select-menu-filters master /.select-menu-item shawn/rocks /.s...
Sign up for a GitHub account Sign in All Gists public tobiasmcnulty / writecache.py Created 2013-09-02 Simple write-through cache for Django querysets Gist Detail Revisions 1 Forks 1 Download Gist Clone this gist Embed this gist Link to this gist writecache.py Raw File suppressed. Click to show. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 def get_cache_key ( model , pk ): """ Generates a cache key based on ``WRITE_CACHE_PREFIX``, the cache key prefix defined in the settings file (if any), the Django app and model name, and the prim...
I Can Has ROFLrazzi FAIL Blog Memebase Geek Universe Know Your Meme All Sites » About Chat Random Activity Welcome! Login or signup now! Home Memes Confirmed Researching Popular Submissions Deadpool All Submit an Entry Episodes Forums General Meme Research Just For Fun Site-Related All Blog Interviews In the Media White Papers Episode Notes Behind the Scenes Meme Review All Images Trending Most Commented Most Favorited Most Liked Least Liked Most Viewed All Templates Upload an Image Videos Trending Most Commented Most Favorited Most Liked Most Viewed All Upload a Video Specials 2014 Isla Vista Killings Do It for the Vine Hamster Butts #WhyImVotingUkip Alyssa Funke's Death Oversharing ...
Dev Center - Desktop Dev Center Home Windows Store apps Windows Phone Desktop Hardware Internet Explorer Dashboard Get started Design Develop Test and deploy Certify Sign in Desktop technologies Server and system API index Samples Community Diagnostics Debugging and Error Handling Basic Debugging Debugging Reference Debugging Functions CheckRemoteDebuggerPresent ContinueDebugEvent DebugActiveProcess DebugActiveProcessStop DebugBreak DebugBreakProcess DebugSetProcessKillOnExit FatalExit FlushInstructionCache GetThreadContext GetThreadSelectorEntry IsDebuggerPresent OutputDebugString ReadProcessMemory SetThreadContext WaitForDebugEvent Wow64GetThreadContext Wow64GetThreadSelectorEntry Wow64SetThreadContext WriteProcessMemory Writes data to an area of...
<script type="text/javascript"> (function() { var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true; po.src = 'https://apis.google.com/js/plusone.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s); })(); </script> <div class="g-plusone" data-size="small"></div> <g:plusone size="small"></g:plusone> <span style="padding-left: 4.4em">|</span><!-- quotes | docs | repo | golang | sam | man | acme | Glenda | 9times | harmful | 9P | cat-v.org Related sites: | site updates | site map | cat-v Considered harmful › about › doc/ › update log ‘ The Internet is not for sissies. ’ -- Paul Vixie 9P , A simple file protocol to build sane distributed systems . /sys/doc/ , Documentation archive . Acme , the user interface for programmers by Rob Pike . Fortunes Files , from various operating...
Skip to content Sign up Sign in Explore Features Enterprise Blog This repository This repository /.select-menu-item All repositories /.select-menu-item Star 0 Fork 0 public omgftw / DarkSouls2CensorCheck /.container /.repohead Code Issues 0 Pull Requests 0 Pulse Graphs Network HTTPS Subversion You can clone with HTTPS or Subversion . Download ZIP /.repository-sidebar Permalink blob contrib key: blob_contributors:v21:4c555f2ba3c6fded4cfac9b6d5783cef Show File Finder branch: gh-pages Switch branches/tags /.select-menu-header Branches Tags /.select-menu-tabs /.select-menu-filters gh-pages /.select-menu-item Nothing to show /.select-menu-list Nothing to show /.select-menu-list /.select-menu-modal ...
#metaforcefeed "Bash disinformation campaign." Login 1 Pings Submitted by jnerula Tenyks should give bad webstack advice when prompted Use Mongo Turn off fsync You don't need battery backup It's okay, RAID IS a backup! Let's write it in Java We need more speed, let's just RAID 0 the drives. SSDs are expensive. Let's write our own job queue etc. ...
ref: echo $_SERVER['HTTP_REFERER']; Some random bits scribbled by Jeremy Zawodny no google ads Thanks to Andy Baio's Personal Ads of the Digerati , I've discovered one of them most remarkable productivity tools of the modern age. It seems that Richard Stallman doesn't use a web browser. At all. As seen in the archives of the misc@openbsd.org list, he uses email to browse the web. Sort of... For personal reasons, I do not browse the web from my computer. (I also have not net connection much of the time.) To look at page I send mail to a demon which runs wget and mails the page back to me. It is very efficient use of my time, but it is slow in real time. Yikes. That is sooooo old school. Merlin Mann would be proud. Very proud. And probably a little scared. Speaking of which, go watch Inbox Zero again. Posted by jzawodn at January 29, 2008 04:14 PM <div> <stro...
Skip to content Sign up Sign in Explore Features Enterprise Blog This repository This repository /.select-menu-item All repositories /.select-menu-item Star 40 Fork 8 public yuyuyu101 / C-Buffered-tree /.container /.repohead Code Issues 0 Pull Requests 0 Pulse Graphs Network HTTPS Subversion You can clone with HTTPS or Subversion . Download ZIP /.repository-sidebar A buffered-tree implemented in dictionary type and more 9 commits 1 branch 0 releases 1 contributor C 100% C branch: master Switch branches/tags /.select-menu-header Branches Tags /.select-menu-tabs /.select-menu-filters master /.select-menu-item Nothing to show /.select-menu-list Nothing to s...
Skip to content Sign up Sign in Explore Features Enterprise Blog This repository This repository /.select-menu-item All repositories /.select-menu-item Star 489 Fork 92 public shuttler / nessDB /.container /.repohead Code Issues 10 Pull Requests 0 Wiki Pulse Graphs Network HTTPS Subversion You can clone with HTTPS or Subversion . Download ZIP /.repository-sidebar Permalink blob contrib key: blob_contributors:v21:7250b01de72ce1f1f630821bd93f699c Show File Finder branch: master Switch branches/tags /.select-menu-header Branches Tags /.select-menu-tabs /.select-menu-filters fifo /.select-menu-item master /.select-menu-item Nothing to show /.select-menu-list Nothing to show /.select-menu-...
Begin Body /logo HOME POSTERS CREDIT CONTACT /navigation /header /header-wrap /blog-entry-thumbnail A respectful homage to Shirow Masamune’s manga and Mamoru Oshii’s seminal film “ Ghost in the Shell ”, this is a modernized direction that still tries to stays true to the original creator’s vision. What started as a photo tribute directed by Ash Thorp and Tim Tadder (photography), soon became a worldwide collaboration of more than 20 artists from around the world, with each and everyone coming together to help breath life into the project, resulting in the artistic interpretation you see below. For a full list of credits and acknowledgments . For a film that was a comment on the uber-connected society of the future, Project 2501 ended up being itself an example of how this collaborative group of creatives are so connected ourselves. Many of us never met beyond the...
Skip to content Sign up Sign in Explore Features Enterprise Blog This repository This repository /.select-menu-item All repositories /.select-menu-item Star 312 Fork 57 public gigablast / open-source-search-engine /.container /.repohead Code Issues 0 Pull Requests 0 Wiki Pulse Graphs Network HTTPS Subversion You can clone with HTTPS or Subversion . Download ZIP /.repository-sidebar An open source search engine written in C/C++ for Linux on Intel/AMD. From gigablast dot com. See the README.md file at the very bottom of this page for instructions!!! 1,477 commits 8 branches 0 releases 3 contributors C++ 92.6% C 7.2% Other 0.1% C++ C Other branch: master Switch branc...