Joined July 2013
·
Posted to
jQuery native alternatives
over 1 year
ago
Thanks
Posted to
7steps organization system: a short why
over 1 year
ago
In a different list. Since I use mostly Trello as the organization tool, there's no way around if I want to keep the dashboard tidy.
I think that in a dedicated app or post-it system the rejected tasks should be hidden to avoid distractions.
Posted to
SSH your office's computer with reverse ssh tunnel.
over 1 year
ago
The public computer needs to have GatewayPorts enabled on the /etc/ssh/sshd_config, otherwise it wont work.
Add
GatewayPorts yes
In /etc/ssh/sshd_config
Achievements
718 Karma
33,835 Total ProTip Views
Kona
Have at least one original repo where CoffeeScript is the dominant language
Altruist
Increase developer well-being by sharing at least 20 open source projects
Raven
Have at least one original repo where some form of shell script is the dominant language
Walrus
The walrus is no stranger to variety. Use at least 4 different languages throughout all your repos
Forked
Have a project valued enough to be forked by someone else
Mongoose 3
Have at least three original repos where Ruby is the dominant language
Mongoose
Have at least one original repo where Ruby is the dominant language
I'm working on a concept language based on the tenants of https://github.com/creationix/jack but with a more radical approach to the abstract syntax tree (which is actually a cyclic graph in my idea) in which blocks, functions and objects are one and the same, and central control structures such as "if" are just methods provided in the core library with a native binding, but not part of the language.
You can find some ideas about the intended usage in here: https://gist.github.com/xaviervia/7716401
You can also find a description and notes about the structures in the abstract graph in here: https://gist.github.com/xaviervia/8104068 . The notes I made to myself so they are not entirely intelligible, but still.
I'm currently exploring the implications of using the abstract graph model (for example, an entire program can be persisted as a set of nodes and relationships in MongoDB or Neo4j), and I'm pretty excited about the flexibility it gives. I found you can, for example, edit a method's content, or partially fill an "if" condition as if it was a curried method. I'd like to jump to implementation as soon as possible, but checking the consistency of the core model is unavoidable and time consuming, so I'm not there yet.