Skip to content
View mikaelbr's full-sized avatar

Highlights

  • Pro

Organizations

@superherojs @BartJS @omniscientjs @kortslutning @varianter

Block or report mikaelbr

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 Loading

  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.8k 319

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

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

    JavaScript 612 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 51

  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.7k 224

  5. superherojs/superherojs superherojs/superherojs Public

    Superhero JavaScript

    HTML 1.8k 108

  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