Skip to content
View mikaelbr's full-sized avatar

Highlights

  • Pro

Organizations

@superherojs @BartJS @omniscientjs @kortslutning @varianter
Block or Report

Block or report mikaelbr

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
mikaelbr/README.md

Hei! πŸ™

I do podcasts, Open Source and working on local development community efforts.

Blogs

Podcasts (norwegian)

  • Kortslutning – All about the life as developers. Oriented towards soft skills
  • BartJS Podcast – Podcast on all things JavaScript
  • Lesehesten – Periodically released podcasts discussing programming books and articles

Programming videos (norwegian)

Pinned

  1. node-notifier node-notifier Public

    A Node.js module for sending notifications on native Mac, Windows and Linux (or Growl as fallback)

    JavaScript 5.7k 316

  2. awesome-es2015-proxy awesome-es2015-proxy Public

    For learning how to use JavaScript Proxy, or just to see what is possible

    JavaScript 600 25

  3. omniscientjs/omniscient omniscientjs/omniscient Public

    A library providing an abstraction for React components that allows for fast top-down rendering embracing immutable data for js

    JavaScript 1.2k 55

  4. open-source-ideas/ideas open-source-ideas/ideas Public

    πŸ’‘ Looking for inspiration for your next open source project? Or perhaps you've got a brilliant idea you can't wait to share with others? Open Source Ideas is a community built specifically for this! πŸ‘‹

    6.5k 222

  5. superherojs/superherojs superherojs/superherojs Public

    Superhero JavaScript

    HTML 1.8k 112

  6. Complete collection of JavaScript de... Complete collection of JavaScript destructuring. Runnable demos and slides about the same topic: http://git.mikaelb.net/presentations/bartjs/destructuring
    1
    // === Arrays
    2
    
                  
    3
    var [a, b] = [1, 2];
    4
    console.log(a, b);
    5
    //=> 1 2