Skip to content

Instantly share code, notes, and snippets.

View fuzzyalej's full-sized avatar
🎯
Focusing

Alejandro Andrés fuzzyalej

🎯
Focusing
View GitHub Profile
@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;

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.

$ = 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/
*/

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.

@fuzzyalej
fuzzyalej / llm.html
Created June 8, 2024 05:02 — forked from edutrul/llm.html
AI WITHOUT EXTERNAL APIS IN THE BROWSER https://eduardotelaya.com
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MLC AI Web LLM</title>
<script type="module">
import { MLCEngine } from "https://esm.run/@mlc-ai/web-llm";
async function initialize() {