ad unit /block-inner /block ad unit /block-inner /block /pre_header Fstoppers Originals Photo of the Day Meet the Writers Reviews Video BTS DIY Workshops 2015 More... RSS Facebook Twitter Google+ Flickr Vimeo Youtube Instagram Fstoppers Articles Store Community Groups Register or Log in /navigation HEADER /header MAIN Home Editorial /#content-header 0 0 by Gary Martin January 18, 2014 5 Comments ad unit /block-inner /block Chances are you've heard of Alt-J or could recognize several of their hit songs currently being played on every indie rock station. What you may not know is that their song Taro was written about the first female war photojournalist and her life partner who both died doing what they love. break The English rock group Alt-J was by far my favorite music group of 2013. Alt J,...
bro $ gem install bropages bro pages are a highly readable supplement to man pages bro pages show concise, common-case examples for Unix commands Standard If you type... $ bro curl ...then you get 2 entries for curl -- submit your own example with "bro add curl" # get the contents of a web page curl http://bropages.org bro thanks to upvote (2) bro ...no to downvote (0) ............................................... # send a header with curl curl --header "X-MyHeader: 1" www.bropages.org bro thanks 2 to upvote (1) bro ...no 2 to downvote (0) Standard adding an entry is easy with the bro CLI ! typing bro add cmd will launch your system editor, allowing you to submit an entry Standard The bro CLI is a Ruby Gem and can be installed as follows bro is meant to work out of the box for any machine running Ruby 1.8.7+ Standard we push code quite...
38-Moths Documentation Download The most webscale™ way to throw 502's since your last CGI project. #include <string.h> #include <38-moths/38-moths.h> static int index_handler ( const http_request * req , http_response * resp ) { resp -> out = malloc ( strlen ( "Hello, World!" ); memcpy ( resp -> out , buf , strlen ( "Hello, World!" )); resp -> outsize = sizeof ( buf ); return 200 ; } int main ( int argc , char * argv []) { int main_sock_fd = 0 ; static const route all_routes [] = { { "GET" , "root_handler" , "^/$" , 0 , & index_handler , & heap_cleanup }, }; http_serve ( & main_sock_fd , 2 , all_routes , 1 ); return 0 ; } It's just C. Write what you want, use your tools. A custom templating engine called GRESHUNKEL . Xbox Live® syntax Loops Interpolate strings! <!DOCTYPE html> <...
<![endif] #header-logo-image Sudo Room #site-description #header-text #header-left-section Home Calendar Event List Event Request Blog Chat Contact Wiki Membership Login #header-right-section #header-text-nav-wrap .inner-wrap #header-text-nav-container At the last hardware hack night, Jake and I got a web page to transmit uart serial data to an arduino at 9600 baud using the webaudio browser api. Sending serial data from an ordinary web page is interesting because it means you can communicate with hardware without installing any special software onto a device. This makes setting up a system faster and easier, which is really useful for annoying computers like phones where it is very difficult to install and run new software. Any device with a modern web browser will do: android, iOS, linux, windows, MacOSX, whatever! For a quick demo, check...
Skip to content Sign up Sign in This repository Explore Features Enterprise Blog Watch 3 Star 5 Fork 2 lfex / lfebot forked from oubiwann/lfebot /.container /.repohead Code Issues Pull requests Pulse Graphs HTTPS Subversion You can clone with HTTPS or Subversion . Download ZIP /.repository-sidebar LiffyBot is a port of the Erlbot Erlang IRC bot 87 commits 2 branches 0 releases 2 contributors Erlang 82.0% Makefile 16.1% Other 1.9% Erlang Makefile Other branch: master Switch branches/tags Branches Tags master null Nothing to show Nothing to show lfebot / This branch is 7 commits ahead of oubiwann:master Pull Request Compare So it's come t...
Start Alexa Certify Javascript End Alexa Certify Javascript Your browser does not have javascript support. If you have any problems viewing the video below , try the gif directly: http://fat.gfycat.com/GraciousEqualHypsilophodon.gif . Or the webm: http://zippy.gfycat.com/GraciousEqualHypsilophodon.webm . Mode GFYCAT http://gfycat.com/GraciousEqualHypsilophodon HTML5 video: auto-selects best format for browser, reverts to GIF where required. GIF http://fat.gfycat.com/GraciousEqualHypsilophodon.gif Slower. For "gif only" areas (eg /r/gifs , /r/reactiongifs ) IFRAME <iframe src="http://gfycat.com/ifr/GraciousEqualHypsilophodon" frameborder="0" scrolling="no" width="500" height="500" style="-webkit-backface-visibility: hidden;-webkit-transform: scale(1);" ></iframe> JS EMBED <img class="gfyitem" data-id="GraciousEqualHypsilophodon" /> Sorry, you don't have HTM...
Navigation Brand and toggle get grouped for better mobile display Toggle navigation i am trask Collect the nav links, forms, and other content for toggling Home about Contact /.navbar-collapse /.container Post Header Posted by iamtrask on July 12, 2015 Post Content Summary: I learn best with toy code that I can play with. This tutorial teaches backpropagation via a very simple toy example, a short python implementation. Edit: Some folks have asked about a followup article, and I'm planning to write one. I'll tweet it out when it's complete at @iamtrask . Feel free to follow if you'd be interested in reading it and thanks for all the feedback! X = np.array([ [0,0,1],[0,1,1],[1,0,1],[1,1,1] ]) y = np.array([[0,1,1,0]]).T syn0 = 2*np.random.random((3,4)) - 1 syn1 = 2*np.random.random((4,1)) - 1 for j in xrange(60000): l1 = 1/(1+np...
Skip to content Sign up Sign in This repository Explore Features Enterprise Blog Watch 2 Star 161 Fork 4 tessalt / echo-chamber-js /.container /.repohead Code Issues Pull requests Pulse Graphs HTTPS Subversion You can clone with HTTPS or Subversion . Download ZIP /.repository-sidebar Commenting without the comments 27 commits 1 branch 0 releases 1 contributor JavaScript 91.3% CSS 8.2% Shell 0.5% JavaScript CSS Shell branch: master Switch branches/tags Branches Tags master Nothing to show Nothing to show echo-chamber-js / less prominent alpha notice latest commit ff6751e8ba tessalt authored Jul 14, 2015 Permalink Failed to load latest c...
Advanced Bash-Scripting Guide: Prev Chapter 9. Another Look at Variables Next Builtin variables: variables affecting bash script behavior $BASH The path to the Bash binary itself bash$ echo $BASH /bin/bash $BASH_ENV An environmental variable pointing to a Bash startup file to be read when a script is invoked $BASH_SUBSHELL A variable indicating the subshell level. This is a new addition to Bash, version 3 . See Example 21-1 for usage. $BASHPID Process ID of the current instance of Bash. This is not the same as the $$ variable, but it often gives the same result. bash4$ echo $$ 11015 bash4$ echo $BASHPID 11015 bash4$ ps ax | grep bash4 11015 pts/2 R 0:00 bash4 But ... #!/bin/bash4 echo "\$\$ outside of subshell = $$" # 9602 echo "\$BASH_SUBSHELL outside of subshell = $BASH_SUBSHELL" # 0 echo "\$BASHPID outside...
Anchor to top Brand and toggle get grouped for better mobile display Toggle navigation Blender Cloud Collect the nav links, forms, and other content for toggling Open Projects Training Register Sign In /.navbar-collapse Open Projects by Blender Institute July, 2015 by Blender Institute June, 2015 399 12:06:37 by Weybec October, 2014 12 11:30 by Pablo Vazquez November, 2013 13 2:34:16 by Blender Institute September, 2012 5 1:19:57 by Blender Institute September, 2010 4 1:28:53 by Blender Institute April, 2008 Browse dozens of hours of high-quality training material! row container container-main Home News About Blender.org Blender Store Blender Network With the support ...
<![endif] New to Twitter? Sign up Twitter Search query Search Twitter Remove Verified account @ Suggested users Verified account @ Verified account @ Language: English Bahasa Indonesia Bahasa Melayu Čeština Dansk Deutsch English UK Español Filipino Français Italiano kannaḍa Magyar Nederlands Norsk Polski Português Română Suomi Svenska Tiếng Việt Türkçe Русский Українська мова עִבְרִית العربية فارسی मराठी हिन्दी বাংলা ગુજરાતી தமிழ் ภาษาไทย 한국어 日本語 简体中文 繁體中文 Have an account? Log in New to Twitter? Join Today » Log in Phone, email or username Password Log in Remember me Forgot password? Already using Twitter via text message? Follow Following Unfollow Blocked Unblock Pending Cancel Portl...
Help Home Page Today's Paper Video Most Popular open abColumn cur: prev: To save articles or get newsletters, alerts or recommendations – all free. Don't have an account yet? Create an account » Subscribed through iTunes and need an NYTimes.com account? Learn more » Need to connect your Home Delivery subscription to NYTimes.com? Link your subscription » Oauth block start Log in with Facebook Oauth block start Log in with Google Oauth block end or In order to access our Web site, your Web browser must accept cookies from NYTimes.com. More information » Email address Password Remember Me Forgot password? Terms of Service Privacy Policy LOG IN close abColumn cur: prev: NYTimes.com » Home Delivery » close spanAB close main © 2015 The New York Times Company Si...
This is a dumb hack, we should only have one or the other from the the template context, so only one of the following will be rendered. ...
<![endif] THIS IS OVERLORD md5! Follow Gizmodo Following Related blogs Sploid Paleofuture Indefinitely Wild Field Guide Factually Toyland Gizmodo en Español Throb Blogs you may like Deadspin Gawker Gizmodo io9 Jalopnik Jezebel Kotaku Lifehacker Sploid Notifications Username Follow Following Follow Gizmodo Following Related blogs Sploid Paleofuture Indefinitely Wild Field Guide Factually Toyland Gizmodo en Español Throb Blogs you may like Deadspin Gawker Gizmodo io9 Jalopnik Jezebel Kotaku Lifehacker Sploid Trending on Kinja 1. Frequently Asked Questions about Visiting Japan on Kotaku 2. How I Broke Through My Own Mediocrity on Lifehacker 3. The Search for the Next Eating Ass on Gawker Written by Adam Clark Estes Explore Every Canyon and Volcano on Mars With NASA's New 3D Map Finally: A VR-Enabled, Twerking Robot Butt That You Can Fuck We Cannot Allow Thi...
Header The latest news from Research at Google all content wrapper start DeepDream - a code example for visualizing Neural Networks Posted: Wednesday, July 01, 2015 Posted by Alexander Mordvintsev, Software Engineer, Christopher Olah, Software Engineering Intern and Mike Tyka, Software Engineer Two weeks ago we blogged about a visualization tool designed to help us understand how neural networks work and what each layer has learned. In addition to gaining some insight on how these networks carry out classification tasks, we found that this process also generated some beautiful art. Top: Input image. Bottom: output image made using a network trained on places by MIT Computer Science and AI Laboratory . We have seen a lot of interest and received some great questions, from programmers and artists alike, about the details of how these v...
[if gte IE 9]> <link rel="stylesheet" type="text/css" href="//static1.squarespace.com/static/sitecss/5005b4cb84ae929b37203d61/217/52a74dafe4b073a80cd253c5/52ea9e98e4b01e103a3c3b7e/922-05142015/1433888868716/site.css?&filterFeatures=false&part=1"/><link rel="stylesheet" type="text/css" href="//static1.squarespace.com/static/sitecss/5005b4cb84ae929b37203d61/217/52a74dafe4b073a80cd253c5/52ea9e98e4b01e103a3c3b7e/922-05142015/1433888868716/site.css?&filterFeatures=false&part=2"/><link rel="stylesheet" type="text/css" href="//static1.squarespace.com/static/sitecss/5005b4cb84ae929b37203d61/217/52a74dafe4b073a80cd253c5/52ea9e98e4b01e103a3c3b7e/922-05142015/1433888868716/site.css?&filterFeatures=false&part=3"/><link rel="stylesheet" type="text/css" href="//static1.squarespace.com/static/sitecss/5005b4cb84ae929b37203d61/217/52a74dafe4b073a80cd253c5/52ea9e98e4b01e103a3...
[if lt IE 7]> <style type="text/css"> #logo_holder img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); } #logo_holder { display: inline-block; width: 176px; height: 44px; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://store.akamai.steamstatic.com/public/images/v5/globalheader_logo.png'); } </style> <![endif] STORE Featured Explore Curators Wishlist News STATS COMMUNITY Home DISCUSSIONS Workshop Greenlight Market Broadcasts ABOUT SUPPORT Install Steam login | language Български (Bulgarian) čeština (Czech) Dansk (Danish) Nederlands (Dutch) Suomi (Finnish) Français (French) Ελληνικά (Greek) Deutsch (German) Magyar (Hungarian) Italiano (Italian) 日本語 (Japanese) 한국어 (Korean) Norsk (Norwegian) Polski (Polish) Português (Portuguese) Português-Brasil (Portuguese-Brazil) Русский (...
"shithouse tv is my favourite shithouse" - @cblgh "png is the greatest image format in the world but no one uses it、 no we use highly compressed jayーpeeーgees which look like shit、 hence shithouse。tv" - Idle This is shithouse tv. It's like a shitty YTMND. Upload an image or a webm file and go to town. Max size 10MB. NO SUCH BUMP PLS MAKE Subdomain: Image: <label for="music">Music:</label> <input id="music" name="music" type="file" /> BGcolor: YTMND Mode: Pickles: All Bumps now-I-am-become-Death-the-destroyer-of-worlds responsible-gun-ownership when-we-get-to-it game-of-cages never-ends-legit 4thjuly young-wally-vs-reblink emergencies-only currently parallel posix rubby-shitshow how-i-feel-rn the-neko-is-alive how-to-be-happy ooooooooo rubbbbbbish nijotz-general-operating-procedure google-translate nijotz3 code-hand...
<![endif] New to Twitter? Sign up Twitter Search query Search Twitter Remove Verified account @ Suggested users Verified account @ Verified account @ Language: English Bahasa Indonesia Bahasa Melayu Čeština Dansk Deutsch English UK Español Filipino Français Italiano kannaḍa Magyar Nederlands Norsk Polski Português Română Suomi Svenska Tiếng Việt Türkçe Русский Українська мова עִבְרִית العربية فارسی मराठी हिन्दी বাংলা ગુજરાતી தமிழ் ภาษาไทย 한국어 日本語 简体中文 繁體中文 Have an account? Log in New to Twitter? Join Today » Log in Phone, email or username Password Log in Remember me Forgot password? Already using Twitter via text message? Follow Following Unfollow Blocked Unblock Pending Cancel Vala ...
<![endif] Skip to content Info What It Is Rules Prizes FAQ Disaster Policy Cities Denver (6/14/15) Minneapolis (7/12/15) Des Moines (8/16/15) Austin (11/1/15) Tucson (11/15/15) Obstacles Party Sponsors Contact Sign Up! newsletter sign up here #site-navigation #masthead 06/14 Denver 07/12 Minneapolis 08/16 Des Moines 11/01 Austin 11/15 Tucson URBAN ASSAULT RIDE – the country’s BIGGEST Bike Obstacle Race – where riders hit checkpoints all over the city, taking on RAD obstacles at each stop! A huge PARTY follows with BEER, MUSIC, CONTESTS and a legendary PRIZE RAFFLE. JOIN THE FUN! CHOOSE YOUR CITY & SIGN UP TODAY! © 2015 Adventure Fit, Inc. All rights reserved. | Privacy Policy .site-info ...