« 1410 1411 1412 1413 1414 1506 »

Pages are deceptive. Live life in a basket.

OpenSSL to get a security audit and two full-time developers | Ars Technica

<![endif] Ars Technica Register Log in Home Main Menu Information Technology Technology Lab Product News & Reviews Gear & Gadgets Business of Technology Ministry of Innovation Security & Hacktivism Risk Assessment Civilization & Discontents Law & Disorder The Apple Ecosystem Infinite Loop Gaming & Entertainment Opposable Thumbs Science & Exploration The Scientific Method Layout: Grid View Article View Dark on light Light on dark Reviews Video Staff Blogs Feature Archive Staff Directory Contact Us Photography Productivity Cloud Gadgets Tablets My Stories: 0 See more news stories Log in to track your discussions. Forums Subscribe Jobs cache hit Technology Lab / Information Technology by Jon Brodkin - May 29, 2014 2:53 pm UTC Hardening Open Source 40 ...

Linked on 2014-05-29 19:04:21 | Similar Links
Huahuehuahue | Know Your Meme

I Can Has ROFLrazzi FAIL Blog Memebase Geek Universe Know Your Meme All Sites » About Chat Random Activity Welcome! Login or signup now! Home Memes Confirmed Researching Popular Submissions Deadpool All Submit an Entry Episodes Forums General Meme Research Just For Fun Site-Related All Blog Interviews In the Media White Papers Episode Notes Behind the Scenes Meme Review All Images Trending Most Commented Most Favorited Most Liked Least Liked Most Viewed All Templates Upload an Image Videos Trending Most Commented Most Favorited Most Liked Most Viewed All Upload a Video Specials 2014 Isla Vista Killings Bill Murray Stories That No One Will Believe Tommy Lee Jones With A Newspaper Pokémon According t...

Linked on 2014-05-29 18:58:08 | Similar Links
Arugula - Definition and More from the Free Merriam-Webster Dictionary

Quizzes & Games Word of the Day Video New Words My Favorites View your list of saved words. (You can log in using Facebook.) li class="share"><a href="/my-saved-words/manage-list.htm" onclick="return my_words_logged_in(function() { document.location = '/my-saved-words/manage-list.htm'; });"><img src="/images/my-saved-words/my_words_nav.jpg" ></a></li <li class="share"><a href="http://twitter.com/merriamwebster" class="twitter"><img src="/styles/default/images/interface/twitter-menu-button.jpg" /></a><a href="http://www.facebook.com/merriamwebster" class="facebook"><img src="/styles/default/images/interface/facebook-menu-button.jpg" /></a></li> script type="text/javascript" src="/styles/default/scripts/search-box.js"></script Dictionary Thesaurus Medical Concise Encyclopedia New! Spanish Central ROS_textAd noun \ə- ˈ rü-gə-lə, -g...

Linked on 2014-05-29 18:57:18 | Similar Links
mfisk/filemap · GitHub

Skip to content Sign up Sign in Explore Features Enterprise Blog This repository This repository /.select-menu-item All repositories /.select-menu-item Star 96 Fork 3 public mfisk / filemap /.container /.repohead Code Issues 3 Pull Requests 0 Wiki Pulse Graphs Network HTTPS Subversion You can clone with HTTPS or Subversion . Download ZIP /.repository-sidebar File-Based Map-Reduce http://mfisk.github.com/filemap 580 commits 3 branches 1 release 1 contributor Python 99.3% Shell 0.7% Python Shell branch: master Switch branches/tags /.select-menu-header Branches Tags /.select-menu-tabs /.select-menu-filters gh-pages /.select-menu-item master /.s...

Linked on 2014-05-29 16:47:17 | Similar Links
dx
Snort ::

Snort Blog VRT Community Docs Services About Swag Store Sign In <ul class="tabs navigation"> </ul> <div class="notice"> The intermittent issues affecting the Snort Subscription Store have been resolved. If you experienced any difficulties during the purchase process please contact: snort-site@sourcefire.com. Thank you for your patience. </div> « Back This event is generated when an attempt is made to exploit a known vulnerability in an OpenSSL implementation. Serious. Execution of code is possible. Denial of Service (DoS). OpenSSL libraries are prone to a buffer overflow condition when processing user input. The SSL_Get_Shared_Ciphers function reads data into a fixed length portion of memory, an attacker could utilize this vulnerability to execute code of their choosing on an affected system. Applications using the OpenSSL libraries may also be prone to a DoS ...

Linked on 2014-05-29 15:04:52 | Similar Links
Ronald Jenkees - Days Away - Complete Album - YouTube

Upload Sign in Search RobRilTube Videos Playlists Channels Discussion About What to Watch Popular on YouTube Music Sports Gaming Education Movies TV Shows News Spotlight Browse channels Sign in now to see your channels and recommendations! Sign In <div class="appbar-guide-notification"><span class="appbar-guide-notification-content-wrapper yt-valign"><img class="appbar-guide-notification-icon" src="https://s.ytimg.com/yts/img/pixel-vfl3z5WfW.gif"><span class="appbar-guide-notification-text-content">Added to Watch Later</span></span></div> <div class="appbar-guide-notification"><span class="appbar-guide-notification-content-wrapper yt-valign"><img clas...

Linked on 2014-05-29 04:54:38 | Similar Links |
cockroachdb/cockroach · GitHub

Skip to content Sign up Sign in Explore Features Enterprise Blog This repository This repository /.select-menu-item All repositories /.select-menu-item Star 93 Fork 5 public cockroachdb / cockroach /.container /.repohead Code Issues 0 Pull Requests 0 Wiki Pulse Graphs Network HTTPS Subversion You can clone with HTTPS or Subversion . Download ZIP /.repository-sidebar A Scalable, Geo-Replicated, Transactional Datastore 151 commits 3 branches 0 releases 6 contributors Go 99.6% Shell 0.4% Go Shell branch: master Switch branches/tags /.select-menu-header Branches Tags /.select-menu-tabs /.select-menu-filters master /.select-menu-item shawn/rocks /.s...

Linked on 2014-05-29 04:35:45 | Similar Links
imgur: the simple image sharer

23 sign in Use another account Google Facebook Twitter Yahoo register Loading... browse your computer drag and drop here Ctrl + V paste from your clipboard gallery submit vars add to gallery create album Start Upload Blog Vertical Horizontal Grid (0) By uploading, you agree to our terms of service That file type is not supported! Supported formats: JPEG, GIF, PNG, APNG, TIFF, BMP, PDF, XCF Imgur is home to the web's most popular image content, curated in real time by a dedicated community through commenting, voting and sharing. Prev · Next First Image Second Image 4 hours ago · 0 views · stats © 2014 Imgur, LLC. we're hiring! · store · help · blog · request deletion · ter...

Linked on 2014-05-29 01:57:59 | Similar Links
Use the Unofficial Bash Strict Mode (Unless You Looove Debugging)

aaron maxwell AddThis Button BEGIN AddThis Button END resume software writing web By Aaron Maxwell. Follow on Twitter Let's start with the punchline. Your bash scripts will be more robust, reliable and maintainable if you start them like this: #!/bin/bash set -eu set -o pipefail IFS = $'\n\t' I call this the unofficial bash strict mode . This causes bash to behave in a way that makes many classes of subtle bugs impossible. You'll spend much less time debugging, and also avoid having unexpected complications in production. There is a short-term downside: these settings make certain common bash idioms harder to work with. They all have simple workarounds, detailed below: jump to Issues & Solutions . But first, let's look at what these obscure lines actually do. These lines deliberately cause your script to fail. Wait, what? Believe me, this is a good thing. With these...

Linked on 2014-05-29 01:35:32 | Similar Links
Postmortem for outage of us-east-1 - Blog - Joyent

Retina Images <style id="devicePixelRatio" media="only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2)">#devicePixelRatio{background-image:url("/retinaimages.php?devicePixelRatio=2")}</style> We're Hiring Careers Blog Dev Center s Sign In Products Pricing Technology Partners Company Sign Up Now Get Started We're Hiring Careers Blog Dev Center s Sign In Sign Up Now Get Started May 28, 2014 - by The Joyent Team Share: We would like to share the details on what occurred during the outage on 5/27/2014 in our us-east-1 datacenter, what we have learned, and what actions we are taking to prevent this from happening again. On behalf of all of Joyent, we are extremely sorry for this outage, and the severe inco...

Linked on 2014-05-29 01:05:02 | Similar Links
truecrypt 7.2 diff

Sign up for a GitHub account Sign in All Gists public anonymous / truecrypt.diff Created 2014-05-28 truecrypt 7.2 diff Gist Detail Revisions 1 Stars 1 Forks 1 Download Gist Clone this gist Embed this gist Link to this gist truecrypt.diff 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 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 ...

Linked on 2014-05-28 23:27:38 | Similar Links
MariaDB moves development to Github « The MariaDB Blog

MariaDB Home About About MariaDB About the MariaDB Foundation MariaDB Foundation Supporters Downloads Blog Documentation Knowledgebase Reporting Problems Release Notes Changelogs Resources Repository Configuration Tool Explain Analyzer Feedback Plugin MariaDB Badges MariaDB Logos Service Providers Support MariaDB Purchase Developer Support Donate to the MariaDB Foundation Merchandise Community Community Ethics Conference Attendance Developer Meetings Community Ambassadors Search /class="nav-collapse" /class="container" /class="navbar-inner" /class="navbar navbar-fixed-top" Bottom Social Sharing Bar ================================================== © MariaDB Foundation 2012 Sidebar Area ================================================== Nav Menu ================================================== Home Ab...

Linked on 2014-05-28 21:17:45 | Similar Links
Twitter / FredericJacobs: Wow, Truecrypt website says ...

<![endif] Twitter Search query Search Remove Verified account @ Suggested users Verified account @ Verified account @ Language: English Bahasa Indonesia Bahasa Melayu Dansk Deutsch EnglishUK Español Euskara Filipino Galego Italiano LOLCATZ Magyar Nederlands Norsk Polski Português Suomi Svenska Türkçe català français română Čeština Ελληνικά Русский Українська мова עִבְרִית اردو العربية فارسی हिन्दी ภาษาไทย 日本語 简体中文 繁體中文 한국어 Have an account? Sign in New to Twitter? Join Today » Sign In Username or email Password Sign in Remember me Forgot password? Already using Twitter via text message? Follow Following Unfollow Blocked Unblock Pending Cancel Frederic Jacobs ‏ @ FredericJacobs 39m Wow, Truecrypt we...

Linked on 2014-05-28 21:10:59 | Similar Links
SQLite4: The Design Of SQLite4

SQLite4 The Design Of SQLite4 Not logged in Home Timeline Branches Tags Wiki Login SQLite4 is a compact, self-contained, zero-adminstration, ACID database engine in a library, just like SQLite3, but with an improved interface and file format. The run-time environment is encapsulated in an object. A greatly simplified Key/Value storage engine is used: A single large key space - not separate key spaces for each table and index as in SQLite3. Keys sort in lexicographical order. Multiple storage engines, interchangeable at run-time. Default on-disk storage engine uses a log-structured merge database. The PRIMARY KEY of a table really is used as the key to the storage engine. Decimal arithmetic is used. Foreign key constraints and recursive triggers are on by default. Covering indices can be declared explicitly. SQLite4 is an alternative, not ...

Linked on 2014-05-28 20:28:33 | Similar Links
Simple write-through cache for Django querysets

Sign up for a GitHub account Sign in All Gists public tobiasmcnulty / writecache.py Created 2013-09-02 Simple write-through cache for Django querysets Gist Detail Revisions 1 Forks 1 Download Gist Clone this gist Embed this gist Link to this gist writecache.py 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 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 def get_cache_key ( model , pk ): """ Generates a cache key based on ``WRITE_CACHE_PREFIX``, the cache key prefix defined in the settings file (if any), the Django app and model name, and the prim...

Linked on 2014-05-28 19:34:49 | Similar Links
HSQLDB

< Download > < Support > < License > < Features > < FAQ > < Documentation > < How To > < Developers > < Software using HSQLDB > < SourceForge Project Page > <OpenOffice.org Integration> #BeginEditable "sidebar" latest Release 14 February 2014 Download latest stable version 2.3.2 Version 2.3.2 jars for JDK 1.5 and for debugging will soon be available on the support page . The How To pages are regularly updated and include a list of useful links. commercial support: Commercial support for business users of HSQLDB is available from the HyperXtremeSQL web site. A higher-performance database engine based on HSQLDB is also available from that site. HSQLDB OpenOffice.org integration: HSQLDB is included with OOo and LibreOffice and downloaded over 100 million times. Some information on the use of HSQLDB within OpenOffice.org can be found here . on the web: HSQLDB in...

Linked on 2014-05-28 18:25:19 | Similar Links
C Plus Equality C+= | Know Your Meme

I Can Has ROFLrazzi FAIL Blog Memebase Geek Universe Know Your Meme All Sites » About Chat Random Activity Welcome! Login or signup now! Home Memes Confirmed Researching Popular Submissions Deadpool All Submit an Entry Episodes Forums General Meme Research Just For Fun Site-Related All Blog Interviews In the Media White Papers Episode Notes Behind the Scenes Meme Review All Images Trending Most Commented Most Favorited Most Liked Least Liked Most Viewed All Templates Upload an Image Videos Trending Most Commented Most Favorited Most Liked Most Viewed All Upload a Video Specials 2014 Isla Vista Killings Do It for the Vine Hamster Butts #WhyImVotingUkip Alyssa Funke's Death Oversharing ...

Linked on 2014-05-28 18:03:56 | Similar Links
Change `master` branch into `primary` by Feminist-Software-Foundation · Pull Request #2718 · django/django · GitHub

Skip to content Sign up Sign in Explore Features Enterprise Blog This repository This repository /.select-menu-item All repositories /.select-menu-item Star 9,943 Fork 3,780 public django / django /.container /.repohead Code Pull Requests 134 Pulse Graphs Network HTTPS Subversion You can clone with HTTPS or Subversion . Download ZIP /.repository-sidebar base sha1: &quot;b625e861e5d2709a16588ecb82f46e1fb86004c7&quot; head sha1: &quot;b409be4052d488171e81527b7d255f3e470365df&quot; Change `master` branch into `primary` #2718 Closed Feminist-Software-Foundation wants to merge 1 commit into django : master from Feminist-Software-Foundation : primary     + 3 − 0 Conversation 47 Commits 1 Files change...

Linked on 2014-05-28 17:58:19 | Similar Links
noplay/docker-osx · GitHub

Skip to content Sign up Sign in Explore Features Enterprise Blog This repository This repository /.select-menu-item All repositories /.select-menu-item Star 862 Fork 55 public noplay / docker-osx /.container /.repohead Code Issues 16 Pull Requests 3 Pulse Graphs Network HTTPS Subversion You can clone with HTTPS or Subversion . Download ZIP /.repository-sidebar Fast and easy installation of Docker on OS X 107 commits 2 branches 9 releases 14 contributors Shell 100% Shell branch: master Switch branches/tags /.select-menu-header Branches Tags /.select-menu-tabs /.select-menu-filters boot2docker /.select-menu-item master /.select-menu-item Nothing to show /...

Linked on 2014-05-28 17:51:56 | Similar Links
#metaforcefeed

#metaforcefeed "Bash disinformation campaign." Login 0 Pings Submitted by colby I post twitter link. Tenyks posts plain text twitter content, instead of URL title. Must respect whitespace and line breaks. ...

Linked on 2014-05-28 17:18:54 | Similar Links
« 1410 1411 1412 1413 1414 1506 »

Pages are deceptive. Live life in a basket.