Vulpo One





Jobs T__T

Steven Paul "Steve" Jobs

Steven Paul “Steve” Jobs
(February 24, 1955 – October 5, 2011)

Rest in peace. Mac is cool, iPhone sucks. Thanks for Pixar

Comments


Chrome: No Choice for Russia

bool FirstRun::SearchEngineSelectorDisallowed() {
    // For now, the only case in which the search engine dialog should never be
    // shown is if the locale is Russia.
    std::string locale = g_browser_process->GetApplicationLocale();
    return (locale == "ru");
}

In Soviet Russia, web browser sets search engine for YOU!

Comments




Am I completely lost to society?

image0

#!/usr/bin/ruby

require 'date'

puts "Enter your birthdate (YYYY-MM-DD):"
birth = Date.parse(gets, true)
today = Date.today
age   = today-birth # in days

min_age = (2 * (age - 7 * 365.25)).round
max_age = (age/2 + 7 * 365.25).round

min_birth = Date.today - min_age
max_birth = Date.today - max_age

puts "Your age pool is #{min_birth.to_s} - #{max_birth.to_s}"

puts "You're too young ^__^" if min_birth > max_birth

Comments