Skip to content

Instantly share code, notes, and snippets.

@eljojo
eljojo / growth_hacking.md
Last active August 29, 2015 14:22
Growth Hacking

I know about the existence of Growth Hacking and I know that as a StartUp one of your goals is to, well, grow as much as possible.
I also know about the existence of promotional posts, and how they can benefit both writers and companies looking to reach audiences.
What I didn't know, is how low some companies can go in order to promote their business for free.
Without further ado, here's an email I got yesterday. Let it speak by itself.

Hi Jose Tomas,

We’d love to see what tips you have for social media marketers. 

We would like you to create a post on your personal blog where you share

<html>
<head>
<title>This is the title</title>
<link rel="stylesheet" href="http://railsgirls.com/assets/bootstrap.css">
<link rel="stylesheet" href="http://railsgirls.com/assets/bootstrap-theme.css">
</head>
<body>
<h1>Hello HTML!</h1>
<p>How's it going?</p>
<form action="/add_to_list" method="get">
@eljojo
eljojo / gist:be8a0feff34b4d02509b
Created May 4, 2015 17:38
dokku_on_debian_after_fixing_nginx
root@dokku:~/dokku# make install
apt-get update
Hit http://security.debian.org jessie/updates InRelease
Hit http://ftp.de.debian.org jessie InRelease
Hit http://security.debian.org jessie/updates/main Sources
Hit http://ftp.de.debian.org jessie-updates InRelease
Hit http://security.debian.org jessie/updates/main amd64 Packages
Hit http://ftp.de.debian.org jessie/main Sources
Hit http://security.debian.org jessie/updates/main Translation-en
Hit http://ftp.de.debian.org jessie/main amd64 Packages
root@dokku:~# wget -qO- https://raw.github.com/progrium/dokku/master/bootstrap.sh|DOKKU_BRANCH=master bash
Hit http://security.debian.org jessie/updates InRelease
Hit http://ftp.de.debian.org jessie InRelease
Hit http://security.debian.org jessie/updates/main Sources
Hit http://ftp.de.debian.org jessie-updates InRelease
Hit http://security.debian.org jessie/updates/main amd64 Packages
Hit http://security.debian.org jessie/updates/main Translation-en
Hit http://ftp.de.debian.org jessie/main Sources
Hit http://ftp.de.debian.org jessie/main amd64 Packages
Hit http://ftp.de.debian.org jessie/main Translation-en
@eljojo
eljojo / rant.md
Created April 9, 2015 10:14
little rant

My problem is mainly when, because of sofware, database (or anything related to IT) architecture impose its way into how the real world works.

For example, imagine Deutsche Telekom. If you have a contract for both mobile phone and internet at home with them, it's completely reasonable that they have different internal systems and thus your name is stored in different locations.

Let's say you change your name. You call Deutsche Telekom (mobile) and tell them that you changed your name, the lady tells you that she updated your name in the computer and all is good. Next month you get the invoice and it shows your old name.

My question is: is this acceptable?

@eljojo
eljojo / internet_poetry.mail
Created February 23, 2015 10:08
Every now and then I receive this weird emails with seemingly random content.
Delivered-To: [email protected]
Received: by 10.70.42.72 with SMTP id m8csp1076269pdl;
Mon, 23 Feb 2015 01:36:13 -0800 (PST)
X-Received: by 10.68.237.165 with SMTP id vd5mr17877560pbc.44.1424684173209;
Mon, 23 Feb 2015 01:36:13 -0800 (PST)
Return-Path: <[email protected]>
Received: from node-ah4.pool-125-27.dynamic.totbb.net ([115.31.129.114])
by mx.google.com with ESMTP id su9si8855158pab.162.2015.02.23.01.36.12
for <[email protected]>;
Mon, 23 Feb 2015 01:36:12 -0800 (PST)

Keybase proof

I hereby claim:

  • I am eljojo on github.
  • I am eljojo (https://keybase.io/eljojo) on keybase.
  • I have a public key whose fingerprint is 85DE C355 32D7 551C 39D7 F35E 7342 F862 59B0 A5D0

To claim this, I am signing this object:

@eljojo
eljojo / callback_example.rb
Created September 23, 2014 16:58
example of what a callback is using active record
class User < ActiveRecord::Base
# here we set tha callback to be executed before saving the user
before_save :create_username
def create_username
if username.blank?
self.username = "example username"
end
end
@eljojo
eljojo / callback_example.js
Last active August 29, 2015 14:06
example of what a callback is
function loadTweets() {
// first we start loading the tweets with ajax and set the callback to tweetsLoaded
$.get("/tweets", tweetsLoaded)
// then, we show a message stating that we're loading the tweets
$("#status").text("loading tweets")
}
function tweetsLoaded(tweets) {
@eljojo
eljojo / almost_rbx.rb
Last active August 29, 2015 14:04
Almost Rubinius
module Rules
class Processor
def initialize(context)
require 'parser/current'
@context = context
end
def process(command)
node = node_for_command(command)
process_node(node)