Skip to content

Instantly share code, notes, and snippets.

View ignasi35's full-sized avatar
🚧
Breaking CI builds since 2001

Ignasi Marimon-Clos ignasi35

🚧
Breaking CI builds since 2001
View GitHub Profile
@ignasi35
ignasi35 / index.html
Last active December 13, 2015 16:59 — forked from darwin/index.html
<!DOCTYPE html>
<meta charset="utf-8">
<link rel="stylesheet" href="http://cmx.io/v/0.1/cmx.css"/>
<script src="http://cmx.io/v/0.1/cmx.js"></script>
<style>.cmx-user-scene4 .cmx-text-border .cmx-path {stroke: orange}</style>
<body>
<div style="max-width:900px; -webkit-transform:rotate(0deg);">
<scene id="scene1">
<label t="translate(0,346)">
@ignasi35
ignasi35 / custom_circuit_breaker.scala
Last active August 29, 2015 14:06 — forked from gszeliga/custom_circuit_breaker.scala
While reviewing the code at http://covariantblabbering.blogspot.com.es/2014/09/use-circuit-breakers-goddammit.html?view=classic I found some things I wanted to rewrite and ended up with this code.
package com.covariantblabbering
import java.util.concurrent.atomic.AtomicReference
import java.util.concurrent.atomic.AtomicInteger
import java.util.concurrent.atomic.AtomicLong
import scala.concurrent.duration.Duration
import scala.concurrent.duration._
import scala.util.{Failure, Success, Try}
@ignasi35
ignasi35 / softwareengineeringexcel.md
Last active August 30, 2015 19:52 — forked from arttuladhar/softwareengineeringexcel.md
Software Engineering Competency Checklist

NOT UPDATED (WIP)

Software Engineering Excellency

DATA STRUCTURES
  • Doesn’t know the difference between Array and LinkedList
  • Able to explain and use Arrays, LinkedLists, Dictionaries etc in practical programming tasks
  • Knows space and time tradeoffs of the basic data structures, Arrays vs LinkedLists, ...
  • Able to explain how hashtables can be implemented and can handle collisions, Priority queues and ways to implement them etc.
  • Knowledge of advanced data structures like B-trees, binomial and fibonacci heaps, AVL/Red Black trees, Splay Trees, Skip Lists, tries etc
@ignasi35
ignasi35 / github-notifications.js
Last active April 3, 2019 13:23 — forked from marcospereira/github-notifications.js
GitHub Notifications By Organizations
// ==UserScript==
// @name GitHub Notifications By Organizations
// @namespace https://github.com
// @version 1.0
// @description Group the notifications list by organizations
// @author marcospereira
// @match https://github.com/notifications
// @include https://github.com/*/notifications
// @include https://github.com/notifications/*
// @license MIT