Skip to content

Instantly share code, notes, and snippets.

View ZuraGuerra's full-sized avatar
🐟
🌏🌎🌍

Zura Guerra ZuraGuerra

🐟
🌏🌎🌍
View GitHub Profile

Tiny Content Framework

About the Project

This is a tiny content strategy framework focused on goals, messages, and branding. This is not a checklist. Use what you need and scrap the rest. Rewrite it or add to it. These topics should help you get to the bottom of things with clients and other people you work with.

Contribute

There’s more to come, and I’d love to hear what you think. Give me feedback on Twitter (@nicoleslaw) or by email ([email protected]). We all benefit from sharing our ideas and creating standards. Onward.

@ZuraGuerra
ZuraGuerra / spore.txt
Created February 11, 2016 08:46
Spore Mac
Process: cider [9983]
Path: /Applications/SPORE/SPORE.app/Contents/MacOS/cider
Identifier: com.transgaming.spore
Version: 3.0 Mac (1)
Build Info: Cider-1.0~1.0
Code Type: X86 (Native)
Parent Process: ??? [1]
Responsible: cider [9983]
User ID: 501
defmodule BeerSong do
@moduledoc """
This showcases recursion, pattern-matching, multi-line strings,
default arguments, embedded docs and pipes.
"""
import String, only: [downcase: 1]
@drink "Take one down and pass it around"
@no_beer "Go to the store and buy some more"
I -
*** ¿Cómo funciona una computadora?
xxx Introducción a Javascript
* Historia de la Computación
* I/O, Memory, Processing
* Del CPU a lenguajes de alto nivel
x Tipos de dato
x Gramática básica
x Instalar Sublime y linters
x Ejercicios con I/O
@ZuraGuerra
ZuraGuerra / imagemagick-install-steps
Created January 3, 2016 17:16 — forked from rodleviton/imagemagick-install-steps
Installing Image Magick on Ubuntu 14.04
sudo -i
cd
apt-get install build-essential checkinstall && apt-get build-dep imagemagick -y
wget http://www.imagemagick.org/download/ImageMagick-6.8.7-7.tar.gz
tar xzvf ImageMagick-6.8.9-1.tar.gz
cd ImageMagick-6.8.9-1/
./configure --prefix=/opt/imagemagick-6.8 && make
checkinstall
@ZuraGuerra
ZuraGuerra / install-r15b01.sh
Created December 18, 2015 09:09 — forked from hdiedrich/install-r15b01.sh
Script to install Erlang R15B01 (tested on a fresh Ubuntu 12.04 install)
# You will need to make this file executable (chmod u+x) and run it with sudo
apt-get update
apt-get --fix-missing -y install build-essential m4 libncurses5-dev libssh-dev unixodbc-dev libgmp3-dev libwxgtk2.8-dev libglu1-mesa-dev fop xsltproc default-jdk
mkdir -p /src/erlang
cd /src/erlang
wget http://www.erlang.org/download/otp_src_R15B01.tar.gz
tar -xvzf otp_src_R15B01.tar.gz
chmod -R 777 otp_src_R15B01
cd otp_src_R15B01
./configure
@ZuraGuerra
ZuraGuerra / cv-new.html
Created October 5, 2015 17:12
iñaki-cv
<!DOCTYPE html>
<html lang="es">
<head>
<title>Curriculum Vitae</title>
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Oswald:400,300">
<style>
.header {
font-family: 'Oswald', serif;
font-size: 50px;
}
@ZuraGuerra
ZuraGuerra / gist:1aa930a1450f73826378
Last active September 10, 2015 03:04
Ansible elixir error log
PLAY [app-servers] ************************************************************
GATHERING FACTS ***************************************************************
<104.236.85.42> ESTABLISH CONNECTION FOR USER: root
<104.236.85.42> REMOTE_MODULE setup
<104.236.85.42> EXEC ssh -C -tt -v -o ForwardAgent=yes -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o User=root -o ConnectTimeout=10 104.236.85.42 /bin/sh -c 'mkdir -p $HOME/.ansible/tmp/ansible-tmp-1441852806.17-35443393663971 && echo $HOME/.ansible/tmp/ansible-tmp-1441852806.17-35443393663971'
<104.236.85.42> PUT /var/folders/05/hf4hn6yn0_q37lrzbf1spp4r0000gr/T/tmpmtx8tG TO /root/.ansible/tmp/ansible-tmp-1441852806.17-35443393663971/setup
<104.236.85.42> EXEC ssh -C -tt -v -o ForwardAgent=yes -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o User=root -o ConnectTimeout=10
*DB en general
*SQL
*Estructuras MVC, más claro y más a fondo (estaba checando Rails con eso)
*Basics de Computer Science (como lo del binario o la arquitectura Von Neumann)
*Cuál es el workflow usual para sacar y mantener un sistema?
*Historia de Computer Science?
*Términos comunes (como hash) {digo, esto es googleable cada que resulte necesario, pero ¿hay algún diccionario o similar del que sepas (algo más sucinto que Wikipedia)?
*Fundamentos de estructuras de datos
*Me dio curiosidad: ¿cómo se distribuye un sistema en varios servidores?
*¿Qué tener en cuenta de seguridad al desarrollar? (¿Sabes de algún paper/libro que hable de eso en términos generales?)
@ZuraGuerra
ZuraGuerra / gist:5980ad7b070c79f91fa6
Created September 2, 2015 22:18
Relationships models
CAUSE
belongs_to :user, Dennis.User
has_many :challenges, Dennis.Challenge
CHALLENGE
belongs_to :user, Dennis.User
belongs_to :cause, Dennis.Cause