Skip to content

Instantly share code, notes, and snippets.

View oeb25's full-sized avatar
💭
),*$(,)?

Oliver Bøving oeb25

💭
),*$(,)?
  • Denmark
View GitHub Profile
@oeb25
oeb25 / settings.json
Created September 28, 2017 12:59
VSCode settings
{
"window.zoomLevel": 0,
"editor.fontSize": 13,
"workbench.colorTheme": "Material Theme",
"editor.minimap.enabled": false,
"editor.tabSize": 2,
"extensions.ignoreRecommendations": false,
"emmet.showExpandedAbbreviation": "inMarkupAndStylesheetFilesOnly",
"editor.trimAutoWhitespace": true,
"editor.smoothScrolling": true,

Keybase proof

I hereby claim:

  • I am oeb25 on github.
  • I am oeb (https://keybase.io/oeb) on keybase.
  • I have a public key ASC_7As52FkWDTr32_0_JcIUYtz7ZE-M528pKrKAXZ_fMQo

To claim this, I am signing this object:

@oeb25
oeb25 / default.nix
Last active February 19, 2021 14:35
Elixir/Phoenix Nix and script configuration
with import <nixpkgs> {};
stdenv.mkDerivation rec {
name = "env";
env = buildEnv { name = name; paths = buildInputs; };
buildInputs = [
yarn
nodejs-6_x
elixir
postgresql96
// curl https://gist.githubusercontent.com/oeb25/cc95dbc60ab02cdd7373/raw/e55628c5d63596d969031f52a11c82339d46d575/webpack.config.js > webpack.config.js
// mkdir src && touch src/main.js && npm i -D webpack babel-loader
module.exports = {
entry: './src/main.js',
output: {
path: './build',
filename: 'bundle.js'
@oeb25
oeb25 / Promize.js
Last active August 29, 2015 14:22
A promise implementation in 85 LOC exluding comments
/**
* Promise Implementation in 85 LOC written in ES6
*
* This doesn't follow the official promise spec 100%, and isn't ment to.
* I only made this as a challenge, and encurage no one to use
* it for production!
*
* I wrote this without having looked at any others implementations, and may
* be slightly off!
*