Skip to content

Instantly share code, notes, and snippets.

View fuzzyalej's full-sized avatar
🎯
Focusing

Alejandro Andrés fuzzyalej

🎯
Focusing
View GitHub Profile

Hola a tod@s

TL;DR: Programador Javascript. Stack react-redux/node-express. Pasion. Buen rollo. 22-36K.

Últimamente está habiendo mucho movimiento de ofertas… vamos con otra a ver si os resulta interesante.

En Redradix estamos buscando dos programadores JavaScript para que se unan a nuestro equipo. Le pegamos bastante duro a este lenguaje desde hace tiempo. Ahora mismo nuestro stack es puramente Javascript. En front estamos utilizando React para la vista y Redux como contenedor de aplicaciones. Llevamos más de un año con esta apuesta y gracias al ecosistema de React esta funcionando de maravilla. En el back, Node con express para la mayoría de las ocasiones aunque depende mucho del proyecto. Buscamos a alguien que le motive trabajar en este stack.

Nos gustaría conocerte si te apasiona programar. (punto) Si tienes experiencia con React, genial, si no, te formaremos.

$ = jQuery;
/*
* jQuery BBQ: Back Button & Query Library - v1.3pre - 8/26/2010
* http://benalman.com/projects/jquery-bbq-plugin/
*
* Copyright (c) 2010 "Cowboy" Ben Alman
* Dual licensed under the MIT and GPL licenses.
* http://benalman.com/about/license/
*/

Redradix Sales/Account Manager Position

Who we are

We love the web! Our focus is creating great web and mobile apps for our clients, though we also teach what we know and help other teams get to speed in new technologies. Our clients are a mix of small entrepreneurs and big companies that want to benefit from our deep web knowledge, mostly JavaScript. Being entrepreneurs, we love people with new ideas and that makes stuff, to help us create a better future.

Our staff is an international mix of designers, frontenders, backenders and a dog. We have offices in Madrid and Barcelona and we usually hold internal workshops, weekends, roundtables, hackatons, paellas, anything that motivates us and pushes us forward. We’re also putting up a regular tech school and many other activities.

@fuzzyalej
fuzzyalej / functional_javascript.js
Last active August 29, 2015 14:16
Functional JS Workshop
function cell(value) {
return {
value: value,
next: null //null is cool
};
}
function cons(value, list) {
var tmp = cell(value);
tmp.next = list || null;
@fuzzyalej
fuzzyalej / gist:604f731533c7d3fcd077
Last active August 29, 2015 14:16
Debugging Sphinx

If you are a heavy user of thinking sphinx you might have encounter some tricky stuff that could be easily solved if you were able to actually see the indexed data.

Well, you can easily solve that now: mysql --host 127.0.0.1 --port 9306

With that, you have console access to the index database, that you can query with SphinxQL (http://sphinxsearch.com/docs/current.html#sphinxql-reference)

note: if you are using rails, the ID of the model is not id but sphinx_internal_id :)

Contract Killer

The popular open-source contract for web designers and developers by Stuff & Nonsense

  • Originally published: 23/12/2008
  • Revised date: 15/12/2013
  • Original post

@fuzzyalej
fuzzyalej / redact.js
Last active August 29, 2015 14:14 — forked from werelax/redact.js
// utils
var slice = Array.prototype.slice;
var concat = Array.prototype.concat;
var flatten = function(l) { return concat.apply([], l); };
// really stupid DSL
function nodeOrTextNode(n) {
if (typeof(n) === "object")
@fuzzyalej
fuzzyalej / introrx.md
Last active August 29, 2015 14:10 — forked from staltz/introrx.md

The introduction to Reactive Programming you've been missing

(by @andrestaltz)

So you're curious in learning this new thing called (Functional) Reactive Programming (FRP).

Learning it is hard, even harder by the lack of good material. When I started, I tried looking for tutorials. I found only a handful of practical guides, but they just scratched the surface and never tackled the challenge of building the whole architecture around it. Library documentations often don't help when you're trying to understand some function. I mean, honestly, look at this:

Rx.Observable.prototype.flatMapLatest(selector, [thisArg])

Projects each element of an observable sequence into a new sequence of observable sequences by incorporating the element's index and then transforms an observable sequence of observable sequences into an observable sequence producing values only from the most recent observable sequence.

@fuzzyalej
fuzzyalej / gist:dd3eaddec7eb2b0e7444
Created August 21, 2014 09:34
Delete old remote branches

Say you have a repo structured by features, issues, etc:

fuzzyalej@MightyPirate:~/code/supersecretproject (master)$ git branch -a
  develop
  issue/399
* master
  remotes/backup/master
  remotes/origin/HEAD -> origin/master
 remotes/origin/feature/234