Know Your Compensation Rights on Major AIrlines

Know Your Compensation Rights on Major AIrlines

We’ve all been on flights where something has gone wrong, and it’s hard to remember what airlines are required to give in the way of compensation. Tourist Meets Traveler has a handy online guide covering what you can expect from domestic carriers.

We’ve talked about air travel rights before, as well as web sites that will try to get you compensation. These all depend on the "contracts of carriage," though, and those contracts differ slightly among the airlines. Tourist Meets Traverl’s list links to each carriers’ website, so if the airlines’ policy changes, you’ll be able to check that.

Check out the link and save it the next time your flight gets delayed or cancelled.

Airline Passenger Rights for Bumped, Canceled or Delayed Flights | Tourist Meets Traveler

Photo by Jason Tester Guerrilla Futures.


via Lifehacker
Know Your Compensation Rights on Major AIrlines

Here’s how all the Pixar movies are connected in one universe

Here's how all the Pixar movies are connected in one universe

Maybe you’ve heard of The Pixar Theory by Jon Negroni that showed how all the characters of the Pixar movies are connected to each other in one universe. The evidence was undeniable! Bloop Animation shows how it all ties together in the video below. I want to believe!

The theory is encompasses all of Pixar’s movies since Toy Story, which are:

  • A Bug’s Life
  • Toy Story 2
  • Monsters Inc.
  • Finding Nemo
  • The Incredibles
  • Cars
  • Ratatouille
  • Wall-E
  • Up
  • Toy Story 3
  • Cars 2
  • Brave
  • Monsters University

Brave sets the stage for intelligent animals which leads the way for Ratatouille, Finding Nemo and Up to happen. For AI, the timeline starts with The Incredibles which leads to Toy Story, Cars and Wall-E. Which then in turns brings A Bug’s Life and Monsters, Inc. into the equation.

It’s a super fun theory that’s been passed around for a bit now but here it is in video form below to add to your YouTube education.


SPLOID is a new blog about awesome stuff. Join us on Facebook

via Gizmodo
Here’s how all the Pixar movies are connected in one universe

Convert a Drywall Doorway Into an Arch

Convert a Drywall Doorway Into an Arch

Ever wonder how to create an arched opening in drywall? The Family Handyman has a step-by-step slideshow that shows how to do it with modern materials like bendable sheetrock and plastic beading.

Arches have had varying popularity in home design over the last century or so. In older houses they might be built with brick or plaster, but they are much easier to re-create with modern materials in new construction. Even if you’re not looking to install a new archway, understanding how they are constructed can help with repair and removal as well. See the complete how-to below.

How To Build a Drywall Arch | The Family Handyman


Workshop is a new blog from Lifehacker all about DIY tips, techniques, and projects. Follow us on Twitter here.
via Lifehacker
Convert a Drywall Doorway Into an Arch

MySQL Workbench 6.2: It’s all about the Query

Improved Visual Explain
In MySQL 5.7, the Optimizer Team has been doing great work in refactoring as well as innovation with the new Cost Model. The improved Visual Explain enables the DBA to now get deeper insights into Optimizer decision making, for improved performance tuning of queries.   The UI was also improved to allow easier navigation in large query plans.
Streamlined Query Results Panel
The query results panel was updated to centralize the many features related to result sets into a single location. Result Grid, Form Editor, Field Types, Query Stats, Execution Plan (including the traditional and Visual Explain) and the new Spatial Viewer are all easily accessible from a single interface. Run SQL Script
It often happens that people try to load gigantic SQL script files into the Workbench SQL editor just to execute them. That will rarely work, as loading files for editing uses a lot of memory and Workbench does a lot of processing in the editor (syntax highlighting, syntax checking, code folding etc). To execute arbitrarily large scripts easily, you can now use the dialog at File -> Run SQL Script:   The dialog lets you preview a part of the script, specify a default schema (in case it’s not already defined) and a default character set to use when importing it. The output window shows warnings, messages and a nice progress bar.
Shared Snippets
SQL Snippets are useful to store queries and commands that are used often, but until now they could only be stored locally. In 6.2, you can now store snippets in the MySQL server you’re connected to and anyone anywhere who can access the .mysqlworkbench schema can also use these snippets.
Small changes
Resultset grid columns are now automatically resized to fit – and if you manually resize a column, the customized size is remembered, so next time you run that query again, the columns will be back to the size you left them.
Customize font for resultset grid – some people want to cram more text in the resultset grid, some people prefer bigger, easier to read text. Now you can pick what you like in Preferences.
Improved state saving for the SQL Editor – Opened, closed and reordered tabs are now properly saved and restored. The scroll position and cursor location is also remembered.
via Planet MySQL
MySQL Workbench 6.2: It’s all about the Query

Looking forward to Oracle OpenWorld 2014; visit us at Booth 2413!

I’m excited to once again be heading to San Francisco next week for Oracle OpenWorld, and also very pleased to have a booth there this year along with some great speakers from Percona. The scope of Oracle OpenWorld 2014, which runs Sept. 28-Oct. 2, is enormous and there are several keynotes and sessions I’m looking […]

The post Looking forward to Oracle OpenWorld 2014; visit us at Booth 2413! appeared first on MySQL Performance Blog.

via MySQL Performance Blog
Looking forward to Oracle OpenWorld 2014; visit us at Booth 2413!

How To Photograph A Wedding With One Photographer, One Camera, One Lens and One Flash

In our recent article How To Make Money As A High End Wedding Photographer, we explored the high end wedding photography market. But, it seems that the more I am able to charge for a wedding, the more complicated and stressful wedding photography becomes. So recently I have decided that I would like to simplify […]

The post How To Photograph A Wedding With One Photographer, One Camera, One Lens and One Flash appeared first on DIY Photography.


via DIYPhotography.net -Hacking Photography, One Picture At A Time
How To Photograph A Wedding With One Photographer, One Camera, One Lens and One Flash

How To Check If Your Mac or Linux Machine Is Vulnerable to Shellshock

How To Check If Your Mac or Linux Machine Is Vulnerable to Shellshock

Shellshock, the newly discovered vulnerability that allows attackers to inject code into your machine, puts your Mac or Linux at a serious risk for malicious attacks. Here’s how to test if your machine is vulnerable.

Shellshock uses a bash script to access your computer. From there, they can launch programs, enable features, and access files. The script only affects UNIX-based systems, so Linux and Mac are the only ones vulnerable.

You can test your system by running this test command from Terminal:

env x='() { :;}; echo vulnerable' bash -c 'echo hello'

If you’re not vulnerable, you’ll get this result:

bash: warning: x: ignoring function definition attempt
bash: error importing function definition for `x'
hello

If you are vulnerable, you’ll get:

vulnerable hello

You can also check the version of bash you’re running by entering:

bash --version

If you get version 3.2.51(1)-release as a result, you’ll need to update. Many Linux distributions already have patches available, so you can follow these instructions to update your system. Mac users are still waiting for a patch, but you can update bash manually using this guide.

via Gizmodo
How To Check If Your Mac or Linux Machine Is Vulnerable to Shellshock