Version: 2.1.1
Platform: x86_64
First, install or update to the latest system software.
sudo apt-get update
sudo apt-get install build-essential chrpath libssl-dev libxft-dev
I hereby claim:
To claim this, I am signing this object:
git diff --name-status branch..HEAD | grep A |
#!/bin/sh | |
set -e | |
if [ -e /.installed ]; then | |
echo 'Already installed.' | |
else | |
echo '' | |
echo 'INSTALLING' | |
echo '----------' |
https://www.couchsurfing.com/messages?per_page=6000 | |
var data = { '_method' : 'patch', | |
'authenticity_token' : jQuery('meta[name="csrf-token"]').attr('content') | |
} | |
jQuery('.inbox-thread__item').each( | |
function(i,e){ | |
var id = jQuery(e).attr('id') |
c = LinkedIn::Client.new | |
c.authorize_from_access authentication.token, authentication.secret | |
c.search(fields: [{:people => [:picture_url]}]).people.all.first.try(:picture_url) | |
#or better | |
c.profile(:fields => ['picture-urls::(original)']).picture_urls.all.first |
module AlizeExtension | |
def self.included(base) | |
base.extend(ClassMethods) | |
end | |
module ClassMethods | |
def alize_with_methods(relation, *fields) | |
alize relation, *fields | |
fields.each do |field| | |
define_method "#{relation}_#{field}" do |
Sete Atitudes para Hackear a Indústria de Software | |
By Klaus Wuestefeld | |
1) Torne-se excelente. | |
Seja realmente bom em alguma coisa. Não fique só choramingando ou | |
querendo progredir às custas dos outros. Não pense q pq vc sentou 4 | |
anos numa faculdade ouvindo um professor falar sobre software q vc | |
sabe alguma coisa. Jogador de futebol não aprende a jogar bola tendo |
<%= form_tag selected_categories_path, :multipart => true do %> | |
<%= text_field_tag 'dog[]', "dog1" -%> | |
<%= text_field_tag 'dog[]', "dog2" -%> | |
<%= file_field_tag 'attachment' -%> | |
Parameters: {"dog"=>["dog1dog2"]} |
logo_image = case movie.width | |
when 640..2000 #720 | |
"logos/logo-187x127.png" | |
when 464..639 | |
"logos/logo-120x81.png" | |
when 360..463 | |
"logos/logo-100x68.png" | |
when 320..359 | |
"logos/logo-83x56.png" | |
when 220..319 |