« 1465 1466 1467 1468 1469 1506 »

Pages are deceptive. Live life in a basket.

Python Monthly Presentation Night » Calagator: Portland's Tech Calendar

Calagator Events Venues Get Involved: Blog | Forum | Code Something not right? File an issue or get satisfaction . Search Events Overview Browse events Add an event Import event(s) Export or edit this event... Google Calendar iCalendar file hCalendar markup Wednesday, February 26, 2014 from 6:30 – 8:30pm Urban Airship Inc 1417 NW Everett St, Suite 300 Portland , OR 97209 US ( map ) This month we're excited to have pizza sponsored by Reply! Inc . Reply! has a Python job opening here in Portland and would love to tell you more about it. Come join us for Pythonic talks! This month: An Intro to Evented Programming in Python by Matt Foster Hy: Lisp in Python by Ben Vulpes Join us afterward at Rogue on NW Flanders to continue the discussion over a beverage. RSVP at our Meetup page You can edit , clone , or delete this event...

Linked on 2014-02-25 05:44:27 | Similar Links
Rachel_Steps_Out comments on Copy of the alleged MtGox-Situation-Crisis-Strategy-Draft

jump to content my subreddits AdviceAnimals announcements AskReddit askscience aww bestof blog books EarthPorn explainlikeimfive funny gaming gifs IAmA movies Music news pics science sports technology television todayilearned videos worldnews edit subscriptions front - all - random | pics - funny - gaming - AskReddit - worldnews - news - videos - IAmA - todayilearned - aww - technology - AdviceAnimals - science - Music - movies - bestof - books - EarthPorn - explainlikeimfive - gifs - television - askscience - sports - mildlyinteresting - LifeProTips - woahdude - Unexpected - reactiongifs - Showerthoughts - food - Jokes - photoshopbattles - firstworldanarchists - FoodPorn - HistoryPorn - twitchplayspokemon - WTF - leagueoflegends - cringepics - 4chan - politics - pokemon - MakeupAddiction - gentlemanboners - pcmasterrace - nba - atheism - Bitcoin - dogecoin - soccer more » BitcoinMarke...

Linked on 2014-02-25 05:37:31 | Similar Links
Bitcoin Ticker - Tick by tick - Real time updates

Bitcoin Ticker - Tick by tick, real time updates. All data is indicative. Options Last Updated: seconds Time between graph updates (lower = higher cpu usage) : milliseconds Play sound on each trade Round Bids/Asks to 0.500 Animate Depth Movements Show bid/ask lines Alert if price falls below: Alert if price climbs above: Alert if price change +/- : Sound Alert Chrome Alert Finished Combined Mobile Linkable Help News Archive D3 Map Transactions bitstamp mtgox btcchina btce huobi bitfinex USD EUR GBP AUD 10m 1hr 3hr 12hr 24hr 3day 7day | 30day | 3Mth | 6Mth | AllTime UpVotes 0 Discuss Graph Options &nbspShow; News &nbspShow; SMA &nbspShow; EMA &nbspDonchian; Channel &nbspLog; Scale &nbspCandlestick; Stamp$: gox$: btce$: gox£: gox€: btcc...

Linked on 2014-02-25 05:01:46 | Similar Links
GoxBalance - How much do they owe us ?

Fixed navbar GoxBalance SOON TM to see how much they owe us. You will be notified about updates. Submit! /col-lg-6 /row Users USD BTC Highest values are not considered and from time to time the entries are reviewed and cleaned so they could decrease. Obviously famous/popular emails will be deleted. AddThis Button BEGIN AddThis Button END /container /headerwrap Notify me /row Tips: 1HsyyYnaxH5YvfHeCBUABRo1bHiYf2i5JY Thanks! Suggestions welcome: info@goxbalance.com /container Bootstrap core JavaScript ================================================== Placed at the end of the document so the pages load faster ...

Linked on 2014-02-25 04:43:34 | Similar Links
MtGox Situation: Crisis Strategy Draft

INFOLINKS_OFF Upload Log In Sign up Browse Books Biography Business Cookbooks & Food Fiction & Literature History Hobbies, Crafts, & Home Kids & Teens Mystery Religion Romance Science Fiction Other Content Brochures Court Filings Creative Writing Legal forms Instruction manuals Maps Graphic Art Presentations Recipes/Menus School Work P. 1 MtGox Situation: Crisis Strategy Draft Ratings: (0) | Views: 26,615 | Likes: 2 Published by twobitidiot I believe in the authenticity of this report and have confirmed these numbers from multiple sources. I believe in the authenticity of this report and have confirmed these numbers from multiple sources. Categories: Presentations Published by: twobitidiot on Feb 25, 2014 Copyright: Attribution Non-commercial Read on Scribd mobile: iPhone , iPad and Android . Free download as PDF, TXT or read online for free from Scribd Flag for inappropriate conte...

Linked on 2014-02-25 04:42:58 | Similar Links
Haskeller (relocate or remote) - Zalora - Job Board

« Go back to job listings Location: Type: Min. Experience: Full-time Position in Pure Haskell ZALORA was founded in early 2012, offering clothes and accessories online in 7 Southeast Asian countries. It has grown steadily, reaching its millionth order in May 2013. We're now looking to double the size of our Haskell team. The Haskell team works in parallel to our existing PHP developers. Your job will be to disassemble our legacy LAMP architecture (PHP, MySQL, Memcache, Solr) and build a Haskell-based service-oriented architecture in its place. This means working across the full stack, from system-level tools to web-based interfaces, depending on your expertise and area of interest. Most of the team is here in Singapore. We help with relocation but allow remote work as well. Our Development Philosophy Build modular and simple systems. Apply purely functiona...

Linked on 2014-02-25 00:54:51 | Similar Links
java - Why is printing "B" dramatically slower than printing "#"? - Stack Overflow

current community chat blog Stack Overflow Meta Stack Overflow Careers 2.0 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 careers 2.0 Stack Overflow Questions Tags Tour Users 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. Why is printing “B” dramatically slower than printing “#”? [on hold] up vote 219 down vote favorite 30 I generated two matrices of 1000 x 1000 : The first matrix consisted of O and # . The second matrix consisted of O and B . Using ...

Linked on 2014-02-25 00:47:07 | Similar Links
Relational shell programming

[ article index ] [ ] [ @mattmight ] [ +mattmight ] [ rss ] No one would mistake the average shell script for principled software. Yet, if we look at how scripts are used, patterns emerge. Unix is a bestiary of ad hoc databases: comma-, colon-, tab- and space-separated tables. Think of /etc/* or /var/log/* , or of columnar commands. Shell scripts commonly, if unknowingly, compose five (of six) primitive relational-algebraic operations on these tables: union, difference, projection, selection and renaming: cat acts like union; sed and grep act like selection; cut acts like projection; awk can perform renaming; and diff acts (almost) like difference. Relational algebra (whose sixth primitive operation is Cartesian product) is equivalent to both relational calculus and SQL. Cartesian product (and equijoin) are not difficult to create in bash. If you find yourself stumb...

Linked on 2014-02-24 23:10:18 | Similar Links
Last man - Wikipedia, the free encyclopedia

CentralNotice Last man From Wikipedia, the free encyclopedia Jump to: navigation , search For the football term, see Last man (football) . For uses of "The Last Man", see The Last Man (disambiguation) . The last man ( German : der letzte Mensch ) is a term used by the philosopher Friedrich Nietzsche in Thus Spoke Zarathustra to describe the antithesis of the imagined superior being, the Übermensch , whose imminent appearance is heralded by Zarathustra. The last man is tired of life, takes no risks, and seeks only comfort and security. The last man's primary appearance is in "Zarathustra's Prologue." After having unsuccessfully attempted to get the populace to accept the Übermensch as the goal of society, Zarathustra confronts them with a goal so disgusting that he assumes that it will revolt them. [ 1 ] The last man is the goal that European civilization has apparently...

Linked on 2014-02-24 21:30:33 | Similar Links
Open Source Bridge 2014 Registration, Portland - Eventbrite

<![endif] Invalid quantity. Please enter a quantity of 1 or more. The quantity you chose exceeds the quantity available. Please enter your name. Please enter an email address. Please enter a valid email address. Please enter your message or comments. Please enter the code as shown on the image. Please select the date you would like to attend. Please enter an email address. Please enter a valid email address in the To: field. Please enter a subject for your message. Please enter a message. You can only send this invitations to 10 email addresses at a time. $$$$ is not a properly formatted color. Please use the format #RRGGBB for all colors. Please limit your message to $$$$ characters. There are currently ££££. $$$$ is not a valid email address. Please enter a promotional code. N/A Sold Out Pending You have exceeded the time limit and your reservation has been r...

Linked on 2014-02-24 21:17:32 | Similar Links
Cap'n Proto: Introduction

HEADER Discuss on Groups View on GitHub MAIN CONTENT Introduction News Installation Schema Language Encoding RPC Protocol The capnp Tool C++ Serialization C++ RPC Other Languages Road Map FAQ Cap’n Proto is an insanely fast data interchange format and capability-based RPC system. Think JSON, except binary. Or think Protocol Buffers , except faster. In fact, in benchmarks, Cap’n Proto is INFINITY TIMES faster than Protocol Buffers. This benchmark is, of course, unfair. It is only measuring the time to encode and decode a message in memory. Cap’n Proto gets a perfect score because there is no encoding/decoding step . The Cap’n Proto encoding is appropriate both as a data interchange format and an in-memory representation, so once your structure is built, you can simply write the bytes straight out to disk! But doesn’t that mean the encoding is platform-specific? N...

Linked on 2014-02-24 17:16:45 | Similar Links
Switched from json serialization to messagepack. · cc340f1 · infoforcefeed/OlegDBFlaskSessions · GitHub

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 / OlegDBFlaskSessions /.container /.repohead Code Issues 0 Pull Requests 0 Pulse Graphs Network HTTPS Subversion You can clone with HTTPS or Subversion . Download ZIP /.repository-sidebar Browse code Switched from json serialization to messagepack. master commit cc340f1992a31d535a970c44594a6620a90d2eab 1 parent edee214 qpfiffer authored February 23, 2014 Showing 2 changed files with 10 additions and 11 deletions . Show Diff Stats Hide Diff Stats 18    olegsessions/olegsessions.py 3    setup.py 18    olegsessions/olegse...

Linked on 2014-02-24 05:34:17 | Similar Links
deserialization - Performant Entity Serialization: BSON vs MessagePack (vs JSON) - Stack Overflow

current community chat blog Stack Overflow Meta Stack Overflow Careers 2.0 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 careers 2.0 Stack Overflow Questions Tags Tour Users 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. Performant Entity Serialization: BSON vs MessagePack (vs JSON) up vote 60 down vote favorite 38 Recently I've found MessagePack an alternative binary serialization format to Google's Protocol Buffers and JSON which also outperforms bo...

Linked on 2014-02-24 05:15:04 | Similar Links
gist:9182079

Sign up for a GitHub account Sign in Discover Gists public kyleterry / gist:9182079 Created 2014-02-24 Gist Detail Revisions 1 Download Gist Clone this gist Embed this gist Link to this gist gistfile1.txt 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 [ OK kyle@insomnia:~ ] $ curl -vvvv -X POST -d 'testing' http://localhost:8080/test --header "Content-Type: text/html" * Hostname was NOT found in DNS cache * Trying ::1... * connect to ::1 port 8080 failed: Connection refused * Trying 127.0.0.1... * Connected to localhost (127.0.0.1) port 8080 (#0) > POST /test HTTP/1.1 > User-Agent: curl/7.35.0 > Host: localhost:8080 > Accept: */* > Content-...

Linked on 2014-02-24 04:44:31 | Similar Links
Fixed fwrite + truncation bug · 0f467a4 · infoforcefeed/Project-Oleg · GitHub

Sign up Sign in Explore Features Enterprise Blog This repository This repository /.select-menu-item All repositories /.select-menu-item Star 5 Fork 1 public infoforcefeed / Project-Oleg /.container /.repohead Code Issues 11 Pull Requests 1 Wiki Pulse Graphs Network HTTPS Subversion You can clone with HTTPS or Subversion . Download ZIP /.repository-sidebar Browse code Fixed fwrite + truncation bug master commit 0f467a4524ee4ee3f165e2c392ef9c20ea0b7dcf 1 parent 12435be qpfiffer authored February 23, 2014 Showing 3 changed files with 12 additions and 9 deletions . Show Diff Stats Hide Diff Stats 9    src/aol.c 2    src/ol_parse.erl 10   src/port_driver.c 9    src/aol.c...

Linked on 2014-02-24 00:52:50 | Similar Links
infoforcefeed/OlegDBFlaskSessions · GitHub

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 / OlegDBFlaskSessions /.container /.repohead Code Issues 0 Pull Requests 0 Pulse Graphs Network HTTPS Subversion You can clone with HTTPS or Subversion . Download ZIP /.repository-sidebar Sessions for Flask backed by OlegDB. 2 commits 1 branch 0 releases 1 contributor Python 100% Python 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 /....

Linked on 2014-02-24 00:06:26 | Similar Links
BUTTS JS

Papers Upload BUTTS JS Effect of Various Herbicides on Glucose Metabolism in Root Tissue of Garden Peas, Pisum sativum. I. 2,4-Dichlorophenoxyacetic Acid &amp; Its Analogs 1962 Plant physiology BUTTS JS (Bourke et al. 1962) Bourke JB, Butts JS, et al. (1962). Effect of Various Herbicides on Glucose Metabolism in Root Tissue of Garden Peas, Pisum sativum. I. 2,4-Dichlorophenoxyacetic Acid &amp; Its Analogs. Plant Physiol. 37 (2): 233-7. PMID: 16655636 ◄ 1 © 2014 Torna.do...

Linked on 2014-02-23 22:12:04 | Similar Links
Thanks

Foundation Projects People Get Involved Download Support Apache Home » Foundation The Apache Software Foundation could not exist without the continued generous support from the community. We would like to take this opportunity to thank our Sponsors. If you are interested in sponsoring the ASF, please read our sponsorship page . The Apache Software Foundation would like to thank the following Platinum Sponsor(s): Yahoo! . 10/4/2007 Microsoft . 25/7/2008 Google . 6/1/2007 Facebook . 1/12/2010 Citrix . 4/3/2012 Matt Mullenweg . 6/13/2012 The Apache Software Foundation would like to thank the following Gold Sponsor(s): Cloudera . 12/1/2010 Comcast . 7/4/2013 HP . 6/1/2007 Hortonworks . 9/12/2011 IBM . 11/3/2010 The Apache Software Foundation would like to thank the following Silver Sponsor(s): Budget Direct . 5/7/2013 Huawei . 4/19/...

Linked on 2014-02-21 22:09:39 | Similar Links
« 1465 1466 1467 1468 1469 1506 »

Pages are deceptive. Live life in a basket.