Skip to content

Instantly share code, notes, and snippets.

@intel45
intel45 / haskeller_competency_matrix.md
Created February 18, 2024 17:18 — forked from graninas/haskeller_competency_matrix.md
Haskeller competency matrix

Haskeller Competency Matrix

See also List of materials about Software Design in Haskell

Junior Middle Senior Architect
Haskell level Basic Haskell Intermediate Haskell Advanced Haskell Language-agnostic
Haskell knowledge scope Learn you a Haskell Get programming with Haskell Haskell in Depth Knows several languages from different categories
Get programming with Haskell Haskell in Depth Functional Design and Architecture
[Other books on Software Engineering in Haskell](https://github.com/graninas/software-design-in-haskell#B
@intel45
intel45 / haskeller_competency_matrix.md
Created February 18, 2024 17:18 — forked from graninas/haskeller_competency_matrix.md
Haskeller competency matrix

Haskeller Competency Matrix

See also List of materials about Software Design in Haskell

Junior Middle Senior Architect
Haskell level Basic Haskell Intermediate Haskell Advanced Haskell Language-agnostic
Haskell knowledge scope Learn you a Haskell Get programming with Haskell Haskell in Depth Knows several languages from different categories
Get programming with Haskell Haskell in Depth Functional Design and Architecture
[Other books on Software Engineering in Haskell](https://github.com/graninas/software-design-in-haskell#B
@intel45
intel45 / SampleApiContorller.java
Created August 5, 2019 02:09 — forked from sojw/SampleApiContorller.java
Spring SwaggerConfiguration JavaConfig example
@Api(value = "Some API")
@RestController
@RequestMapping(value = "/Service")
public class SampleApiContorller {
@Autowired
private ResponseEntityUtil responseEntityUtil;
@Autowired
private ServiceApiProxyFactory serviceApiProxyFactory;
@intel45
intel45 / load-balancer.js
Created June 20, 2017 15:01 — forked from Zaggen/load-balancer.js
Node.js load balancer with
/*
* Author: Zaggen - 2017
* version: 0.1
* github: https://github.com/Zaggen
* Free to use and modify
* */
const httpProxy = require('http-proxy')
const http = require('http')
const proxy = httpProxy.createProxyServer({})