« 1139 1140 1141 1142 1143 1506 »

Pages are deceptive. Live life in a basket.

David Cameron Wants To Ban Snapchat

<![endif] asset_inserts /asset_inserts Newsletter ads popup END Newsletter ads popup modulous_debug_header END modulous_debug_header View mobile site RUM header GA, Data Layer and Omniture comScore Tag end Rum ads_top_1x1 Facebook stuff User auth stuff ads_pushdown / working Tuenti <script type="text/javascript" src="http://widgets.tuenti.com/widgets.js"></script> [if lt IE 7]> <p class="chromeframe">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a> to improve your experience.</p> <![endif] ads_pushdown ads_quickread ads_quickread_most_popular page_wrapper classes for page wrapper: wrapper bpage [[entry/blog], wide] ads_sponsored_content_logo Phoenix buglist page...

Linked on 2015-01-13 01:28:45 | Similar Links
cloudflare/kyototycoon · GitHub

Skip to content Sign up Sign in This repository Explore Features Enterprise Blog Star 10 Fork 2 cloudflare / kyototycoon /.container /.repohead Code Issues Pull Requests Pulse Graphs HTTPS Subversion You can clone with HTTPS or Subversion . Download ZIP /.repository-sidebar 9 commits 2 branches 0 releases 2 contributors C++ 80.9% Shell 11.8% Lua 3.7% CSS 1.7% Other 1.9% C++ Shell Lua CSS Other branch: master Switch branches/tags /.select-menu-header Branches Tags /.select-menu-tabs /.select-menu-filters master /.select-menu-item nick/KT-26-logging /.select-menu-item Nothing to show /.select-menu-list Nothing to show /.select-menu-list /.select-me...

Linked on 2015-01-13 00:52:18 | Similar Links
Caveman2 - The real web framework

HEADER Now Available on Quicklisp <nav> <ul> <li><a href="#overview">overview</a></li> <li><a href="#documentation">documentation</a></li> <li><a href="#contribute">contribute</a></li> </ul> </nav> MAIN CONTENT (defparameter *app* (make-instance '<app>)) @route GET "/" (defun index () (with-layout (:title "Welcome to My site") (render #P"index.tmpl"))) Lisp is a language for doing what you've been told is impossible. — Kent Pitman Common Lisp is the standardized most powerful language with high-performance implementations in the world. It has lexical closures, multi-dispatch object system called CLOS, the metaobject protocol and macros. As Caveman2 is written in portable Common Lisp, you don't need to compromise on its language. As Caveman2 bases on Clack , your web application works on many w...

Linked on 2015-01-13 00:31:36 | Similar Links
ohai/lib/ohai/plugins at master · opscode/ohai · GitHub

Skip to content Sign up Sign in This repository Explore Features Enterprise Blog Star 448 Fork 291 opscode / ohai /.container /.repohead Code Issues Pull Requests Pulse Graphs HTTPS Subversion You can clone with HTTPS or Subversion . Download ZIP /.repository-sidebar branch: master Switch branches/tags /.select-menu-header Branches Tags /.select-menu-tabs /.select-menu-filters 6-stable /.select-menu-item 7-stable /.select-menu-item 8-stable /.select-menu-item OC-9924 /.select-menu-item OC-10057 /.select-menu-item OC-10161 /.select-menu-item OC-10251 /.select-menu-item OC-10876 /.select-menu-item OC-10958 /.select-menu-item OC-10998 /.select-menu-item OHAI-126 /.select-menu-item OHAI-420...

Linked on 2015-01-13 00:13:41 | Similar Links
gist:a03638c2a9d87c160f97

Sign up for a GitHub account Sign in All Gists lykkin / gist:a03638c2a9d87c160f97 Created January 13, 2015 Code Revisions 1 /.sunken-menu-group /.sunken-menu-contents Embed HTTPS SSH You can clone with HTTPS or SSH . Download Gist /.only-with-full-nav View gist:a03638c2a9d87c160f97 gistfile1.go 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 // +build darwin package plugins import ( " os/exec " " log " " strconv " ) type Cpu struct { Name string } func GetCpuMetric ( metric string ) ( string , error ) { cmd := exec. Command ( " sysctl " ,...

Linked on 2015-01-13 00:08:17 | Similar Links
CL-STM

Protocol prev | up | next | toc Transactions prev | up | next | toc ( defclass transaction ( ) ( ) ) ( defgeneric perform ( transaction ) ( :documentation "Run TRANSACTION atomically with respect to all other threads in a new thread. If the transaction retries, then the thread loops again re-executing the transaction and commiting it to memory. PERFORM returns a thread created by BORDEAUX-THREADS as its value." ) ) ( defgeneric execute ( transaction ) ( :documentation "Execute TRANSACTION and return 3 values. 1. A boolean specifying whether or not the transaction retried. 2. A transaction log of all the changes that occured. 3. A list of values that TRANSACTION returns." ) ) ( defgeneric orelse ( tx1 tx2 ) ( :documentation "Compose two transactions alternatively. ORELSE returns a new transaction. We perform TX1 and if it succeeds then we're done. If it fails then we perf...

Linked on 2015-01-12 22:04:14 | Similar Links
Lisp for the Web

The following article and code has been updated as the book Lisp for the Web . You can get it for any price you want at Leanpub . With his essay Beating the Averages , Paul Graham told the story of how his web start-up Viaweb outperformed its competitors by using Lisp. Lisp? Did I parse that correctly? That ancient language with all those scary parentheses? Yes, indeed! And with the goal of identifying its strengths and what they can do for us, I'll put Lisp to work developing a web application. In the process we'll find out how a 50 years old language can be so well-suited for modern web development and yes, it's related to all those parentheses. Starting from scratch, we'll develop a three-tier web application. I'll show how to: utilize powerful open source libraries for expressing dynamic HTML and JavaScript in Lisp, develop a small, embedded domain spec...

Linked on 2015-01-12 22:02:20 | Similar Links
The Common Lisp Cookbook - Sockets

The Common Lisp Cookbook Introduction Addresses Server Sockets Client Sockets Communication Closing A complete example ANSI Common Lisp does not provide standard functions to operate on sockets, but all major CL implementations have added socket support to their environments. Although all socket packages offer roughly the same functionalities, they use slightly different names for functions, making it hard to provide a standardized description. In this chapter, we will use the socket library contained in PORT , that in turn is part of the Common Lisp Open Code Collection (CLOCC). The socket functions provided by PORT currently work without modifications on a wide range of Common Lisp implementations (Allegro, Lispworks, CLISP, CMU CL, SBCL, GCL). Therefore, this section does not contain pointers to the Common Lisp HyperSpec. We refer you to the documentation of the PORT pac...

Linked on 2015-01-12 21:59:31 | Similar Links
infoforcefeed/goat-tower · GitHub

Skip to content Sign up Sign in This repository Explore Features Enterprise Blog Star 1 Fork 2 infoforcefeed / goat-tower /.container /.repohead Code Issues Pull Requests Pulse Graphs HTTPS Subversion You can clone with HTTPS or Subversion . Download ZIP /.repository-sidebar 3 months and a sub-par ircbot plugin is why we don't give a shit anymore 43 commits 1 branch 0 releases 3 contributors Python 95.8% Shell 4.2% Python Shell 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 show /.select-menu-list /.select-menu-modal /.select-menu-mod...

Linked on 2015-01-12 21:51:01 | Similar Links
infoforcefeed/Software-Development-for-Arsonists · GitHub

Skip to content Sign up Sign in This repository Explore Features Enterprise Blog Star 0 Fork 0 infoforcefeed / Software-Development-for-Arsonists /.container /.repohead Code Issues Pull Requests Pulse Graphs HTTPS Subversion You can clone with HTTPS or Subversion . Download ZIP /.repository-sidebar Blog/Book/Ramblings for the dissidents in all of us http://arson.infoforcefeed.org 16 commits 3 branches 0 releases 2 contributors Python 93.6% CSS 5.9% Shell 0.5% Python CSS Shell branch: master Switch branches/tags /.select-menu-header Branches Tags /.select-menu-tabs /.select-menu-filters 0003_Objectivity_is_dead /.select-menu-item master /.select-menu-item post/not-a...

Linked on 2015-01-12 21:49:32 | Similar Links
Defer, Panic, and Recover - The Go Blog

Documents Packages The Project Help Blog The Go Programming Language Go Wins 2010 Bossie Award Share Memory By Communicating golang.org Install Go A Tour of Go Go Documentation Go Mailing List Go on Google+ Go+ Community Go on Twitter Blog index The Go Blog Defer, Panic, and Recover 4 August 2010 Go has the usual mechanisms for control flow: if, for, switch, goto. It also has the go statement to run code in a separate goroutine. Here I'd like to discuss some of the less common ones: defer, panic, and recover. A defer statement pushes a function call onto a list. The list of saved calls is executed after the surrounding function returns. Defer is commonly used to simplify functions that perform various clean-up actions. For example, let's look at a function that opens two files and copies the contents of one file to the other: func CopyFile(dstName, s...

Linked on 2015-01-12 19:57:35 | Similar Links
gist:03b56159d948b569def6

Sign up for a GitHub account Sign in All Gists lykkin / gist:03b56159d948b569def6 Created January 12, 2015 Code Revisions 1 /.sunken-menu-group /.sunken-menu-contents Embed HTTPS SSH You can clone with HTTPS or SSH . Download Gist /.only-with-full-nav View gist:03b56159d948b569def6 gistfile1.c Raw File suppressed. Click to show. 1 2 3 4 5 6 # include < stdio.h > int main ( int argc, char *argv[]){ int x = 1 ; x += x++ + ++x; printf ( " %i " , x); } Sign up for free to join this conversation on GitHub . Already have an account? Sign in to comment /.discussion-timeline /.gist-content /.container Something went wrong with that request. Please try again. Status API Blog About © 2015 GitHub , Inc. Terms Privacy S...

Linked on 2015-01-12 19:42:55 | Similar Links
Lamp Database - Web Development - Software Development - Technology Consultants

LAMP is the acronym for a powerful and commonly used suite of open source tools. We use these tools to build bespoke solutions for our customers. Linux operating system, Apache web server, MySQL database management, and Perl, Python & the PHP programming language. C# & C++ programming languages. At LAMP Database.com we specialise in building bespoke customised solutions. Tailor made for any organisation, large or small. Because our systems are designed from the ground up with your specific purpose in mind, they are highly efficient and optimised. We are able to leverage almost any technology available, however our core technologies are Open Source tools that are the most widely used on the Internet today. Your system will be custom designed by us for you. It will be written from scratch using tried and tested methods that are proven to b...

Linked on 2015-01-12 19:38:08 | Similar Links
Infoforcefeed · GitHub

Skip to content Sign up Sign in This repository Explore Features Enterprise Blog Infoforcefeed #infoforcefeed is a channel on Freenode. Dreams of cryptoanarchist tomato/potato farms. Satan's Lawn http://infoforcefeed.org /.org-header Filters Sources Forks Loading… C 30 5 OlegDB Enough works to use this in production Updated Jan 12, 2015 C 0 0 mayo-workbench CRUD application for managing OlegDB. Updated Jan 12, 2015 Python 0 0 Software-Development-for-Arsonists Blog/Book/Ramblings for the dissidents in all of us Updated Jan 1, 2015 Python 0 2 OlegDB-Website The website and static site generator for the OlegDB website Updated Dec 11, 2014 C 0 4 lair forked from qpfiffer/lair A small Den implementation written in C. Updated Dec 1,...

Linked on 2015-01-12 19:34:17 | Similar Links
IRC-Nick-Graph/tst_map.h at tst_set · qpfiffer/IRC-Nick-Graph · GitHub

Skip to content Sign up Sign in This repository Explore Features Enterprise Blog Star 1 Fork 0 qpfiffer / IRC-Nick-Graph /.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:3a7073a831b6b347a992d1bc009b729d branch: tst_set Switch branches/tags /.select-menu-header Branches Tags /.select-menu-tabs /.select-menu-filters erlang_port /.select-menu-item master /.select-menu-item tst_ref /.select-menu-item tst_set /.select-menu-item Nothing to show /.select-menu-list Nothing to show /.select-menu-list /.select-menu-modal /.select-menu-modal-holder /.select-menu ...

Linked on 2015-01-12 19:27:52 | Similar Links
kyotopantry/gatekeeper.h at master · qpfiffer/kyotopantry · GitHub

Skip to content Sign up Sign in This repository Explore Features Enterprise Blog Star 1 Fork 1 qpfiffer / kyotopantry /.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:f192d019be2f8e98eec89b4c6aa6e8ff 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 show /.select-menu-list /.select-menu-modal /.select-menu-modal-holder /.select-menu kyotopantry / include / gatekeeper.h qpfiffer Jul 31, 2014 The vault lives. -O2 considere...

Linked on 2015-01-12 19:26:07 | Similar Links
detective/plugins.go at master · kyleterry/detective · GitHub

Skip to content Sign up Sign in This repository Explore Features Enterprise Blog Star 0 Fork 2 kyleterry / detective /.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:149d10d024830caa360fc91ec5f09a23 branch: master Switch branches/tags /.select-menu-header Branches Tags /.select-menu-tabs /.select-menu-filters master /.select-menu-item redux /.select-menu-item Nothing to show /.select-menu-list Nothing to show /.select-menu-list /.select-menu-modal /.select-menu-modal-holder /.select-menu detective / plugins / plugins.go kyleterry Dec 18, 2014 Plug...

Linked on 2015-01-12 19:23:43 | Similar Links
Ori File System

Ori Distributed File System About Getting Ori Source People Publications Contact Ori is a distributed file system built for offline operation and empowers the user with control over synchronization operations and conflict resolution. We provide history through light weight snapshots and allow users to verify the history has not been tampered with. Through the use of replication instances can be resilient and recover damaged data from other nodes. Ori operates peer-to-peer among your devices and uses existing secure communication channels such as SSH to transfer your data. In today's world we often are moving around with intermittent network connectivity and we want to access our data when we board a plane or travel to the office. Ori can verify the authen...

Linked on 2015-01-12 19:21:50 | Similar Links
Add ldconfig to install script. · 668434f · infoforcefeed/OlegDB · GitHub

Skip to content Sign up Sign in This repository Explore Features Enterprise Blog Star 30 Fork 5 infoforcefeed / OlegDB /.container /.repohead Code Issues Pull Requests Pulse Graphs HTTPS Subversion You can clone with HTTPS or Subversion . Download ZIP /.repository-sidebar Permalink Browse code Add ldconfig to install script. This fixes @kyleterry 's weird library path bugs. Loading branch information ... commit 668434fbf6b11c1d01c028981dfb40b53cf86d91 1 parent 319db22 qpfiffer authored Jan 12, 2015 Unified Split Showing 1 changed file with 1 addition and 0 deletions . + 1 − 0   Makefile 1   Makefile Show notes View @@ -65,6 +65,7 @@ libinstall: $(LIB_OUT) ln -fs $( INSTALL_LIB ) liboleg...

Linked on 2015-01-12 19:18:51 | Similar Links
« 1139 1140 1141 1142 1143 1506 »

Pages are deceptive. Live life in a basket.