« 1210 1211 1212 1213 1214 1506 »

Pages are deceptive. Live life in a basket.

imgur: the simple image sharer

The most viral images on the internet, curated in real time by a dedicated community through commenting, voting and sharing. we're hiring! blog about imgur imgur store uploading tools upgrade to pro developer api need help? </div terms privacy upload images 23 sign in sign up #secondary-nav .header-center #topbar Loading... browse your computer drag and drop here Ctrl + V paste from your clipboard gallery submit vars share on Imgur create album Start Upload Blog Horizontal Grid (0) By uploading, you agree to our terms of service Optimizing your large GIFs... That file type is not supported! Supported formats: JPEG, GIF, PNG, APNG, TIFF, BMP, PDF, XCF 2 minutes ago · 0 views · stats ...

Linked on 2014-11-09 02:35:31 | Similar Links
imgur: the simple image sharer

The most viral images on the internet, curated in real time by a dedicated community through commenting, voting and sharing. we're hiring! blog about imgur imgur store uploading tools upgrade to pro developer api need help? </div terms privacy upload images 23 sign in sign up #secondary-nav .header-center #topbar Loading... browse your computer drag and drop here Ctrl + V paste from your clipboard gallery submit vars share on Imgur create album Start Upload Blog Horizontal Grid (0) By uploading, you agree to our terms of service Optimizing your large GIFs... That file type is not supported! Supported formats: JPEG, GIF, PNG, APNG, TIFF, BMP, PDF, XCF 2 minutes ago · 0 views · stats ...

Linked on 2014-11-09 02:35:24 | Similar Links
Laughing Owl (Edit) - YouTube

Upload Sign in Search Loading... Watch Queue TV Queue Remove all Disconnect Loading... Watch Queue TV Queue __count__/__total__ <p class="yt-spinner "> <span class="yt-spinner-img yt-sprite" title="Loading icon"></span> <span class="yt-spinner-message"> Loading... </span> </p> Find out why Close Laughing Owl (Edit) VanCityVideo Subscribe Subscribed Unsubscribe 779 Loading... Loading... Working... Add to Sign in to add this video to a playlist. Sign in Share More Report Sign in to report inappropriate content. Sign in Statistics 69,277 795 Sign in to make your opinion count. Sign in 18 Sign in to make your opinion count. Sign in Loading... Loading... ...

Linked on 2014-11-09 02:09:40 | Similar Links
All the Little Things - Sandi Metz - RailsConf 2014

Confreaks Expert recording services for conferences, seminars, and workshops. Home Events Presenters Blog Search Login Sign Up RailsConf 2014 Place this tag where you want the +1 button to render. Place this tag after the last +1 button tag. Tweet All the Little Things Sandi Metz This presentation, by Sandi Metz , is licensed under a Creative Commons Attribution ShareAlike 3.0 Theory tells us to build applications out of small, interchangeable objects but reality often supplies the exact opposite. Many apps contain huge classes of long methods and hair-raising conditionals; they're hard to understand, difficult to reuse and costly to change. This talk takes an ugly section of conditional code and converts it into a few simple objects. It bridges the gap between OO theory and practice and teaches straightforward strategies that all can ...

Linked on 2014-11-09 00:50:38 | Similar Links
SQL Fiddle

SQL Fiddle Loading... View Sample Fiddle Clear Login Text to DDL About Exit Fullscreen Use this panel to setup your database problem (CREATE TABLE, INSERT, and whatever other statements you need to prepare a representative sample of your real database). Use "Text to DDL" to quickly build your schema objects from text. Build Schema Edit Fullscreen Browser <a href="#" id="schemaDiagram" class="btn btn-info"> Diagram <i class="icon-qrcode"></i> </a> [ ; ] Query Terminator Semi-colon [ ; ] Pipe [ | ] Slash [ / ] Double-slash [ // ] Keyword [ GO ] DDL Editor end ddl div Use this panel to try to solve the problem with other SQL statements (SELECTs, etc...). Results will be displayed below. Share your queries by copying and pasting the URL that is generated after each run. ...

Linked on 2014-11-08 06:31:31 | Similar Links
joey hess leaves debian (orphaning debhelper, alien, dpkg-repack and debmirror) : linux

jump to content my subreddits announcements Art AskReddit askscience aww blog books creepy dataisbeautiful DIY Documentaries EarthPorn explainlikeimfive Fitness food funny Futurology gadgets gaming GetMotivated gifs history IAmA InternetIsBeautiful Jokes LifeProTips listentothis mildlyinteresting movies Music news nosleep nottheonion OldSchoolCool personalfinance philosophy photoshopbattles pics science Showerthoughts space sports television tifu todayilearned TwoXChromosomes UpliftingNews videos worldnews WritingPrompts edit subscriptions front - all - random | food - books - aww - Music - news - philosophy - creepy - explainlikeimfive - worldnews - AskReddit - nottheonion - askscience - history - Fitness - science - space - listentothis - OldSchoolCool - photoshopbattles - sports - nosleep - DIY - todayilearned - pics - EarthPorn - Documentaries - Jokes - videos - gifs - gaming - mild...

Linked on 2014-11-08 05:10:38 | Similar Links
lcamtuf's blog: Pulling JPEGs out of thin air

skip links for text browsers skip to main | skip to sidebar This is a personal blog. My other stuff: book | home page | Twitter | CNC robotics | electronics lcamtuf's blog google_ad_section_start(name=default) November 07, 2014 Pulling JPEGs out of thin air This is an interesting demonstration of the capabilities of afl ; I was actually pretty surprised that it worked! $ mkdir in_dir $ echo ' hello ' >in_dir/hello $ ./afl-fuzz -i in_dir -o out_dir ./libjpeg-turbo-1.3.1/djpeg In essence, I created a text file containing just "hello" and asked the fuzzer to keep feeding it to a program that expects a JPEG image ( djpeg is a simple utility bundled with libjpeg-turbo ). Of course, my input file does not resemble a valid picture, so it gets immediately rejected by the utility: $ ./djpeg '../out_dir/queue/id:000000,orig:hello' Not a JPEG file: ...

Linked on 2014-11-08 01:41:24 | Similar Links
Walls Fall Out - OFFICIAL on Vimeo

Force any HTML comments inject by third parties to close Vimeo Join Log In Create Video School Learn how to make better videos. Music Store Get free and affordable licensed tracks. Cameo New! Create cinematic videos on your phone. Creative Commons Find licensed videos on Vimeo. Creator Services Make money by making video. Watch Staff Picks Hand-picked videos we like On Demand New! Watch movies, series, and more. Categories A simple way to browse our catalog of videos. Channels Video showcases curated by members. Groups Join other members to watch and discuss. Couch Mode Lean back and enjoy the Vimeo. Upload from Cheryl Merkowski 1 year ago Mature Music video for Cheryl Merkowski's hit song "Walls Fall Out". This SLIGHTLY NSFW piece of art raises aware...

Linked on 2014-11-07 23:58:50 | Similar Links |
Git merge vs. rebase

By Mislav Marohnić on 20 Feb 2013 git pull --rebase instead of git pull git rebase -i @{u} before git push (on “feature”) git merge master to make feature compatible with latest master (on “master”) git merge --no-ff feature to ship a feature However if “feature” contains only 1 commit, avoid the merge commit: (on “master”) git cherry-pick feature If you enjoy this post, check out my git tips you didn’t know about ! git pull When you want to push your changes to a branch, but someone else already pushed before you, you have to pull in their changes first. Normally, git does a merge commit in that situation. Such merge commits can be numerous, especially between a team of people who push their changes often. Those merges convey no useful information to others, and litter the project’s history. You should always pull with git pull --rebase . Git can be configured to ...

Linked on 2014-11-07 23:38:40 | Similar Links
beets: the music geek’s media organizer

the media library management system for obsessive-compulsive music geeks. The purpose of beets is to get your music collection right once and for all. It catalogs your collection, automatically improving its metadata as it goes using the MusicBrainz database. Then it provides a bouquet of tools for manipulating and accessing your music. Because beets is designed as a library, it can do almost anything you can imagine for your music collection. Via plugins , beets becomes a panacea: Fetch or calculate all the metadata you could possibly need: album art , lyrics , genres , tempos , ReplayGain levels, or acoustic fingerprints . Get metadata from MusicBrainz , Discogs , or Beatport . Or guess metadata using songs' filenames or their acoustic fingerprints. Transcode audio to any format you like. Check your library for duplicate tracks and albums o...

Linked on 2014-11-07 22:20:30 | Similar Links
Quadruple amputee sought in murder of parents | abc13.com

[if lt IE 8]> <div class="unsupported"><strong>You are using an unsupported browser or browser setting.</strong><br>Please ensure you are not viewing this site in IE &quot;compatibility view,&quot; <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.</div> <![endif] <input type="hidden" name="site" value="ktrk"> GO The weather popup form Personalize your weather by entering a location. Sorry, but the location you entered was not found. Please try again. Sections Traffic Video Houston Southwest Southeast Northwest Northeast end .nav-container-default Home Accuweather Traffic Video Photos Mobile Apps Local News Houston Southwest Southeast Northwest Northeast end .nav-sections-header Ma...

Linked on 2014-11-07 22:19:45 | Similar Links
Hot Aisle/Cold Aisle Layout : ENERGY STAR

<![endif] Google Tag Manager End Google Tag Manager Skip directly to page content Facebook Twitter YouTube Our Blog Search Energy Efficient Products Products ENERGY STAR products are independently certified to save energy without sacrificing features or functionality. Saving energy helps prevent climate change. Look for the ENERGY STAR label to save money on your energy bills and help protect our environment. Find ENERGY STAR Products Energy Savings at Home Take the Pledge Learn about Climate Change Ways to Save Tax Credits Ask an Expert Heat and Cool Efficiently How can I make my home entertainment center more energy efficient? What should I know about LED lights? I'd like to know about power management. How can I reduce hot water use in my home? Where does my money go? Set and Save with ENERGY STAR Product Finder Rebate Finder Store Loc...

Linked on 2014-11-07 21:43:41 | Similar Links
This Amazon Echo hates your family | The Verge

<![endif] Trending now 27 New articles Previous 4:17 PM Elon Musk may be getting into the satellite business 4:14 PM Beats Solo2 Wireless headphones leaked by the FCC 4:07 PM 'Mass Effect' concept art hints at what the next chapter of the sci-fi epic will look like 3:52 PM 'The Theory of Everything' director on filming a movie with Stephen Hawking on set 3:40 PM Here are a ton of videos of 'Overwatch,' Blizzard's new first-person shooter 2:49 PM Blizzard CEO says harassment is tarnishing gaming's reputation 2:47 PM ABC deletes 'Selfie' TV show from its lineup 2:40 PM This is Overwatch, Blizzard's new game that looks like 'Team Fortress' by way of Pixar 2:34 PM 'Hearthstone' gets its first big expansion next month 2:13 PM Facebook's News Feed settings now let you 'see less' from you...

Linked on 2014-11-07 21:36:50 | Similar Links
Control.Arrow

Source Contents Index base-4.7.0.1: Basic libraries Copyright (c) Ross Paterson 2002 License BSD-style (see the LICENSE file in the distribution) Maintainer libraries@haskell.org Stability provisional Portability portable Safe Haskell Trustworthy Language Haskell2010 Control.Arrow Contents Arrows Derived combinators Right-to-left variants Monoid operations Conditionals Arrow application Feedback Description Basic arrow definitions, based on Generalising Monads to Arrows , by John Hughes, Science of Computer Programming 37, pp67-111, May 2000. plus a couple of definitions ( returnA and loop ) from A New Notation for Arrows , by Ross Paterson, in ICFP 2001 , Firenze, Italy, pp229-240. These papers and more information on arrows can be found at http://www.haskell.org/arrows/ . Synopsis class Category a => Arrow a where arr :: (b -> c) -> a b c first :: a b c -> a (b, d) (c, d) secon...

Linked on 2014-11-07 21:16:27 | Similar Links
dotfiles/init.el at master · trinque/dotfiles · GitHub

Skip to content Sign up Sign in This repository Explore Features Enterprise Blog Star 0 Fork 0 trinque / dotfiles /.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:6db1bd9be43886ef3b975a3bac9bd147 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 dotfiles / init.el Michael Trinque Nov 7, 2014 new init.el, kernel config and xmonad.hs ...

Linked on 2014-11-07 21:11:57 | Similar Links
Docker: What they didn't tell you

Any section element inside of this container is displayed as a slide Avishai Ish-Shalom (@nukemberg) CTO @ Fewbytes Chroot, namespaces cgroups Layered FS, layered images Container API Configuration management Scalability Security * Full process isolation Build, Ship and Run Any App, Anywhere Many apps use IPC and weird network protocols Unix domain sockets Marker/metadata files (JVM tools) Random ports for data channel (e.g. RMI) Hostname as universal ID (erlang) docker exec (since 1.3) nsenter Bridge networking Assign hostname Connect via local or remote JMX Local mode use hsperf files JMX uses RMI by default Use JMXMP instead of RMI Java 7u4 adds -Dcom.sun.management.jmxremote.rmi.port (and NAT the port) Use internal IP ( icc=true ) mount /tmp as shared volume EPMD (port mapper) requires consistent hostnames Docker assigns autogener...

Linked on 2014-11-07 21:10:13 | Similar Links
emacs-helm · GitHub

Skip to content Sign up Sign in This repository Explore Features Enterprise Blog emacs-helm /.org-header Filters Sources Forks Loading… Emacs Lisp 719 98 helm Emacs incremental completion and selection narrowing framework Updated Nov 7, 2014 Emacs Lisp 29 8 helm-ls-git Yet another helm to list git file. Updated Oct 13, 2014 Emacs Lisp 2 3 helm-ls-hg helm extensions for listing files in hg project. Updated Sep 29, 2014 Emacs Lisp 17 5 helm-cmd-t Helm functions to package directories (SCM controlled or not) as sources. Updated Aug 28, 2014 Python 1 0 helm-webkit Search browse history of Emacs-Webkit ( http://www.emacswiki.org/emacs/WebKit ) Updated Aug 10, 2014 Emacs Lisp 5 0 helm-mu Helm sources for searching emails and cont...

Linked on 2014-11-07 19:29:33 | Similar Links
« 1210 1211 1212 1213 1214 1506 »

Pages are deceptive. Live life in a basket.