Giter Club home page Giter Club logo

This repository

I have moved my public stuff to coutego, which is my internet handle in GH but also reddit, twitter, gmail, … Most repositories here are either archived (those moved to coutego) or private.

About me

I’ve been a software developer or involved in software development since the times of the Spectrum. I have been programming professionally mostly in Java, but I have also used a bunch of other programming languages quite extensively:

  • C/C++
  • C#
  • Python
  • Javascript/Typescript
  • Clojure/Clojurescript

I have also had an interest in open source for a long time and co-founded Monodevelop (a .NET IDE) in 2004 although these days I use mostly Emacs and IntelliJ, both amazing pieces of software.

I’m a fan of:

  • Dependency injection (the strategy, more than any particular implementation - even though Spring was the revelation to me). DI, like Unix version 7, was an improvement with respect to all preceeding and following architectural styles.
  • Object oriented design and functional programming. I believe that OO and DI techniques are the way to go for overall design while FP techniques are the way to go in the low level implementation. I don’t think that it’s a coincidence that the most used FP language in mission critical systems uses the actor model.
  • Typescript. Although it can’t hide the multiple ugly corners of JS, the type system is just amazing. Anders Hejlsberg is amazing.
  • Clojure. Extremelly elegant language. It would be perfect if it had types. Rich Hickey’s talks are great, even if you don’t like the language.
  • Emacs. This text editor has been called many things: an OS, a religion, a drug. It’s all true. Watch out, kids. There is no coming back.
  • Reading quality (open) source code. First step to write a novel: read many (good) novels. GTK source was a revelation for me at the time. Anything that Linus writes is also worth looking at. The first public release of the source code of git is a master piece. Clojure’s standard library is great. Case in point:
    (defn assoc-in
      "Associates a value in a nested associative structure, where ks is a
      sequence of keys and v is the new value and returns a new nested structure.
      If any levels do not exist, hash-maps will be created."
      {:added "1.0"
       :static true}
      [m [k & ks] v]
      (if ks
        (assoc m k (assoc-in (get m k) ks v))
        (assoc m k v)))
        

Pedro Abelleira Seco's Projects

c2048 icon c2048

Implementation of a simple 2048 clone in re-frame

dto-utils icon dto-utils

Little clojure library to implement dto-like interfaces on the fly

injectable icon injectable

Dependency injection container for Clojure(Script)

jlisp icon jlisp

A Lisp intepreter implemented in Typescript

pluggable icon pluggable

Library to make it easy to implement plugin based architectures

spacemacs-1 icon spacemacs-1

A community-driven Emacs distribution - The best editor is neither Emacs nor Vim, it's Emacs *and* Vim!

sudoku icon sudoku

A sudoku solver and game webapp

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.