« 137 138 139 140 141 227 »

Pages are deceptive. Live life in a basket.

Brazilian Jiu Jitsu & Mixed Martial Arts Portland, OR | SBGi | Est. 1992 SBG is Portland ’s Original Functional Martial Arts, and Brazilian Jiu Jitsu Academy. Call for a 45 Day Free Trial at the most Prestigious martial arts academy in the state. SBG is home of the North West First IBJJF World Champion. Offering classes for All Ages and All Levels, from no experience to the best in the west!

#site-logo .hgroup-wrap .container Why SBGi Kids Martial Arts Get Started! Martial Arts Brazilian Jiu Jitsu BJJ Competition Yoga MMA Muay Thai Kickboxing Boxing Classes Women’s Only Krav Maga and Self Defense Who Is SBGi FAQ Class Schedule and Membership SBG News Other News Sites and Blogs Contact Us Navigation .container #access Straight Blast Gym .featured-title Portland's Original BJJ Academy. Home of Oregon's First Black Belt, and Oregon's First IBJJF World Champion. .featured-content .featured-text .slides Kids Martial Arts .featured-title Click Here For Portland's Top Kids Life Skills and Martial Arts Program. .featured-content .featured-text .slides Brazilian Jiu Jitsu Portland .featured-title Portland's Original BJJ Academy. Home of Oregon's First Black Belt, and Oregon's First IBJJF World Champion. .featured-content .featured-text .slides Boxing Classes Po...

Linked on 2015-02-14 17:35:48 | Similar Links
Use runit by Xe · Pull Request #18 · qpfiffer/waifu.xyz · GitHub

Skip to content Sign up Sign in This repository Explore Features Enterprise Blog Watch 2 Star 5 Fork 2 qpfiffer / waifu.xyz /.container /.repohead Code Issues Pull Requests Pulse Graphs HTTPS Subversion You can clone with HTTPS or Subversion . Download ZIP /.repository-sidebar base sha1: "2704cabc57a8f1fd232eb258be416b6915569146" head sha1: "7c4ed0c76ccd6cbd402d32f48d1ccabfcdc58547" Loading… Use runit #18 Merged qpfiffer merged 1 commit into qpfiffer : master from unknown repository Feb 13, 2015 + 7 − 3      Conversation 1 Commits 1 Files changed 3 Apply labels to this issue bug duplicate enhancement help wanted i...

Linked on 2015-02-14 07:04:13 | Similar Links
feminize - plan9front - the front fell off - Google Project Hosting

My favorites ▼ | Sign in [if lte IE 7]> <div style="text-align:center;"> Your version of Internet Explorer is not supported. Try a browser that contributes to open source, such as <a href="http://www.firefox.com">Firefox</a>, <a href="http://www.google.com/chrome">Google Chrome</a>, or <a href="http://code.google.com/chrome/chromeframe/">Google Chrome Frame</a>. </div> <![endif] plan9front the front fell off Project Home Wiki Issues Source Repository: default wiki Checkout Browse Changes Clones Source path: hg / rc / bin / feminize Download zip | tar.gz ‹d7bee7c7fbf9 aa880b7c11d3 1 2 3 4 5 #!/bin/sed -f s/ [aeiou]n([a-z][a-z][a-z])/ man\1/ s/ [a-z]em([a-z][a-z][a-z])/ fem\1/ s/ [aeiou]m/ fem/ Show details Hide details Change log e263d58bfeda by Kurt H Maier <k...@intma.in> on A...

Linked on 2015-02-13 18:25:48 | Similar Links
Ah Lam's Note: gdb stops at SIGPIPE

skip links for text browsers skip to main | skip to sidebar Ah Lam's Note I am a software developer working in Hong Kong. This blog is for sharing my 2 cents IT knowledge. google_ad_section_start(name=default) Thursday, December 14, 2006 By default, gdb captures SIGPIPE of a process and pauses it. However, some program ignores SIGPIPE. So, the default behavour of gdb is not desired when debugging those program. To avoid gdb stopping in SIGPIPE, use the folloing command in gdb: handle SIGPIPE nostop noprint pass Posted by Ah Lam at 10:03 PM Labels: programming Brian Taylor said... Thanks! This was useful information. 1:54 AM Brian Taylor said... This comment has been removed by the author. 1:55 AM Post a Comment google_ad_section_end Newer Post Ol...

Linked on 2015-02-13 17:11:32 | Similar Links
splice(2): splice data to/from pipe - Linux man page

google_ad_section_start splice - splice data to/from a pipe #define _GNU_SOURCE /* See feature_test_macros (7) */#include < fcntl.h >ssize_t splice(int fd_in, loff_t *off_in, int fd_out, loff_t *off_out, size_t lenunsigned int " flags ); splice () moves data between two file descriptors without copying between kernel address space and user address space. It transfers up to len bytes of data from the file descriptor fd_in to the file descriptor fd_out , where one of the descriptors must refer to a pipe. If fd_in refers to a pipe, then off_in must be NULL. If fd_in does not refer to a pipe and off_in is NULL, then bytes are read from fd_in starting from the current file offset, and the current file offset is adjusted appropriately. If fd_in does not refer to a pipe and off_in is not NULL, then off_in must point to a buffer which specifies the start...

Linked on 2015-02-13 10:53:45 | Similar Links
Dynamic Server Management With Doozer and Groupcache

This is the top navigation bar. Non Impediti Ratione Cogitationis Home Tags Archives About RSS /.nav-collapse 2013-11-16 Title: Dynamic Server Management With Doozer and Groupcache Author: Joshua Marsh Description: Groupcache provides a great way to cache data. Instances can be dynamically managed using software like Doozer. Tags: go,golang,groupcache,doozer Languages: go,shell Groupcache , while not a complete replacement for memcached , is an amazing caching library. In just a few lines of code, you can greatly improve the access time to your immutable data. One of the problems many people quickly run into when using groupcache is maintaining a list of peers where the cached data is distributed. Using a configuration file is a fairly brittle method for maintaining the list. Fortunately, this isn’t a new problem. There are several programs w...

Linked on 2015-02-13 08:25:41 | Similar Links
Device mapper - Wikipedia, the free encyclopedia

CentralNotice From Wikipedia, the free encyclopedia Jump to: navigation , search The device mapper is a Linux kernel 's framework for mapping physical block devices onto higher-level virtual block devices . It forms the foundation of LVM2 , software RAIDs , dm-crypt disk encryption, and offers additional features such as file system snapshots . [ 1 ] Device mapper works by passing data from a virtual block device, which is provided by the device mapper itself, to another block device. Data can be also modified in transition, which is performed, for example, in the case of device mapper providing disk encryption or simulation of unreliable behavior. While this article focuses on the Linux kernel's implementation, the device mapper functionality is also available in both NetBSD and DragonFly BSD . [ 2 ] [ 3 ] 1 Usage 2 Features 3 Applications 4 References 5 Ex...

Linked on 2015-02-13 05:44:16 | Similar Links
Adaptive replacement cache - Wikipedia, the free encyclopedia

CentralNotice From Wikipedia, the free encyclopedia Jump to: navigation , search Adaptive Replacement Cache (ARC) is a page replacement algorithm with better performance [ 1 ] than LRU (Least Recently Used) developed [ 2 ] at the IBM Almaden Research Center . This is accomplished by keeping track of both Frequently Used and Recently Used pages plus a recent eviction history for both. In 2006, IBM was granted a patent for the adaptive replacement cache policy . 1 Summary 1.1 Replacement 2 Deployment 3 References 4 External links 5 See also Summary [ edit ] Basic LRU maintains an ordered list (the cache directory) of resource entries in the cache, with the sort order based on the time of most recent access. New entries are added at the top of the list, after the bottom entry has been evicted. Cache hits move to the top, pushing all other entries down. AR...

Linked on 2015-02-13 05:36:01 | Similar Links
xant/libshardcache · GitHub

Skip to content Sign up Sign in This repository Explore Features Enterprise Blog Watch 12 Star 26 Fork 9 xant / libshardcache /.container /.repohead Code Issues Pull Requests Pulse Graphs HTTPS Subversion You can clone with HTTPS or Subversion . Download ZIP /.repository-sidebar C implementation of a caching and cache-filling library inspired to groupcache 1,541 commits 3 branches 40 releases 6 contributors C 87.7% Perl 5.4% C++ 3.3% Python 2.6% Other 1.0% C Perl C++ Python Other branch: master Switch branches/tags Branches Tags gh-pages master slabs Nothing to show libshardcache-1.1 libshardcache-1.0 libshardcache-0.31 libshardcach...

Linked on 2015-02-13 05:35:15 | Similar Links
debugging - Setting a watchpoint on errno in gdb - Stack Overflow

current community chat blog Stack Overflow Meta Stack Overflow Stack Overflow Careers Sign up or log in to customize your list. more stack exchange communities Stack Exchange sign up log in tour help Tour Start here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings and policies of this site stack overflow careers Stack Overflow Questions Tags Users Badges Unanswered Ask Question Take the 2-minute tour × Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required. Setting a watchpoint on errno in gdb up vote 1 down vote favorite I'm trying to find out when errno changes. At first, I tried "watch errno" in gdb, ...

Linked on 2015-02-12 17:59:09 | Similar Links
bitcoin/bitcoinrpc.cpp at v0.5.3 · bitcoin/bitcoin · GitHub

Skip to content Sign up Sign in This repository Explore Features Enterprise Blog Watch 836 Star 6,447 Fork 4,540 bitcoin / bitcoin /.container /.repohead Code Issues Pull Requests Pulse Graphs HTTPS Subversion You can clone with HTTPS or Subversion . Download ZIP /.repository-sidebar Permalink blob contrib key: blob_contributors:v21:855bb6530961a1179d0257a43149eb5c tag: v0.5.3 Switch branches/tags Branches Tags 0.6.3 0.7.2 0.8 0.9 0.10 freenode-verf master Nothing to show v0.10.0rc4 v0.10.0rc3 v0.10.0rc2 v0.10.0rc1 v0.9.4 v0.9.3rc2 v0.9.3rc1 v0.9.3 v0.9.2rc2 v0.9.2rc1 v0.9.2.1 v0.9.2 v0.9.1 v0.9.0rc3 v0.9.0rc2 v0.9.0rc1 v0.9.0 v0.8.6rc1...

Linked on 2015-02-12 17:41:47 | Similar Links
Locust - A modern load testing framework

Locust Documentation Code Define user behaviour with Python code, and swarm your system with millions of simultaneous users. Tweet Follow @locustio No need for clunky UIs or bloated XML. Just plain code. Locust supports running load tests distributed over multiple machines, and can therefore be used to simulate millions of simultaneous users Locust has been used to simulate millions of simultaneous users. Battlelog, the web app for the Battlefield games, is load tested using Locust, so one can really say Locust is Battletested ;). I'm impressed not more people talk about locust (http://locust.io/). The thing is awesome :) Shoutout too the guys from ESN :) Armin Ronacher @mitsuhiko Author of Flask, Jinja2 & more it’s become a mandatory part of the development of any large scale...

Linked on 2015-02-12 17:19:53 | Similar Links
Hudson Dusters - Wikipedia, the free encyclopedia

CentralNotice From Wikipedia, the free encyclopedia Jump to: navigation , search Hudson Dusters Founder Circular Jack Kid Yorke Goo Goo Knox Founding location Lower East Side, New York Years active 1890s-1910s Territory Manhattan Ethnicity Irish-American Membership 200 (est.) Criminal activities Burglary , armed robbery , street muggings , assault , narcotics . Rivals Boodle Gang Marginals Pearl Buttons Fashion Plates Gopher Gang The Hudson Dusters was a New York City street gang during the early twentieth century. Formed in the late 1890s by "Circular Jack", "Kid Yorke", and "Goo Goo Knox", the gang began operating from an apartment house on Hudson Street . Knox, a former member of the Gopher Gang , had fled after a failed attempt to gain leadership of the gang from then leader, Marty Brennan. However the two gangs later became all...

Linked on 2015-02-12 04:02:15 | Similar Links
LGTM.in/g

Toggle navigation LGTM.in/g Home Random Submit Browse Login with /.nav-collapse × Pro Tip: Install LGTM as a Google Chrome Extension. You can then LGTM with a click of a button. 100 0 99 1 86 14 85 15 84 26 73 37 73 37 69 31 67 33 66 74 62 48 59 41 Looks good to me (LGTM) is the most popular comment on Github, perhaps. But LGTM is boring. So we spice it up with some images. Crafting images and picking them works fine on a leisurely day, but at crunch time, it helps to ...

Linked on 2015-02-12 00:51:52 | Similar Links
China - Sam Altman

Sam Altman « Back to blog China The most important story of 2014 that most people ignored was the Chinese economy overtaking the US economy.  (This is using the purchasing power parity metric, which incorporates differences in the price of goods, but the Chinese economy will overtake on other metrics soon enough.) This shouldn’t have caught anyone by surprise; US growth has stagnated while Chinese growth has continued to do pretty well (the chart below shows inflation-adjusted economic growth rates in China vs. the US since 1978).  The US has become less competitive globally—for example, other countries have surpassed our education system, and we have structural and demographic challenges other countries don’t and that create significant expenses. The historical track record of the largest economy being overtaken by another is not good.  Sometimes it...

Linked on 2015-02-11 21:56:51 | Similar Links
« 137 138 139 140 141 227 »

Pages are deceptive. Live life in a basket.