sudo apt-get update
sudo apt-get install -y libssl1.0.0 openssl
openssl version -a
and confirm the "built on" date is >= 2014-04-07sudo lsof -n | grep ssl | grep DEL
and restart all listed services.
Repeat #4 until no results are returned.
/* | |
* a small mixin for easy use of rem with px as fallback | |
* usage: @include x-rem(font-size, 14px) | |
* usage: @include x-rem(marign, 0 12px 2 1.2) | |
* usage: @include x-rem(padding, 1.5 24px) | |
* | |
* thanks to Eric Meyer for https://github.com/ericam/susy | |
* and Hans Christian Reinl for http://drublic.de/blog/rem-fallback-sass-less/ | |
*/ | |
@mixin x-rem($property, $values) { |
/*jslint sloppy:true, white:true, vars:true, plusplus:true */ | |
var permutation = function (collection){ | |
var current, | |
subarray, | |
result = [], | |
currentArray = [], | |
newResultArray = []; | |
if (collection.length){ |
{ | |
curly: true, | |
eqeqeq: true, | |
browser: true, | |
bitwise: true, | |
camelcase: true, | |
forin: true, | |
indent: 4, | |
latedef: 'nofunc', | |
newcap: true, |
'use strict'; | |
module.exports = function(grunt) { | |
// Project configuration. | |
grunt.initConfig({ | |
pkg: grunt.file.readJSON('package.json'), | |
// @see http://www.jshint.com/docs/options/ | |
jshint: { | |
// Files that jshint will watch |
# Delete previous commit (locally) but not eliminate the changes | |
git reset --soft HEAD~1 | |
# Delete previous commit (locally) and the modified files | |
git reset --hard HEAD~1 | |
# Delete a commit already pushed | |
git revert HEAD | |
# Pull a branch from repository |
# Programs | |
Chrome (https://www.google.com/intl/en/chrome/browser/) | |
Skype (http://www.skype.com/en/download-skype/skype-for-computer/) | |
Moom [App store] | |
Alinof timer [App store] | |
# Desarrollo | |
Xcode [App store] |
# Create user | |
CREATE USER user IDENTIFIED BY 'password'; | |
# Create and user (if doesn´t exist) and grant permissions | |
GRANT ALL ON *.* TO 'user'@'localhost' IDENTIFIED BY 'password'; | |
# Update | |
UPDATE [table] SET [table_field]=[new_value] WHERE [id]=[id]; | |
# Change user password |
!opener++ && console.log('getAvatarImg cache hit', url); | |
Source: http://forrst.com/posts/Shorthand_Javascript_Console_Log_Once-Jta |
This gist assumes: