69
JS96
6y

Nothing better than coding at night. ๐Ÿ˜

Comments
  • 11
    Correction:

    "Nothing better than coding with a beer"
  • 6
    non alcoholic beer ๐Ÿ˜ฒ
  • 8
    @heyheni You ruined it
  • 5
    @heyheni inside there isn't the same beer, I don't change the glass as like as I change the cape of the devDuck based on the language I'm using. ๐Ÿ˜‚
    It's actually a Tuborg. ๐Ÿ˜‹
  • 1
    Isn’t all day coding better?
  • 1
    @JS96 ๐Ÿ˜ฒ tuborg pils is one my favorite... but i only get to drink it when i visit denmark.
  • 2
    @heyheni they don't sell it in Switzerland? ๐Ÿค”
  • 4
    function Beer(numOfBeers) {
    var self = this;
    self.numOfBeers = numOfBeers;

    if (numOfBeers >= 20) throw 'no one can possibly drink ' + numOfBeers + ' beers';
    if (numOfBeers <= 0) throw 'YOU DON\'T LIKE BEER?';

    self.drink = function () {
    self.numOfBeers -= 1;
    if (self.numOfBeers > 0) {
    return 'you have drank a beer, ' + self.numOfBeers + ' beers remain';
    } else {
    return 'you\'re drunk, go home';
    }
    };
    }

    var numOfBeers = 5;
    var beer = new Beer(numOfBeers);

    for (var i = 0; i < numOfBeers; i++) {
    console.log(beer.drink());
    }
  • 1
    @JS96 no, you can't even get it in special beer shops.
    Copenhagen in summer ๐Ÿ˜Ž
  • 2
    @heyheni oh, you mean "Tuborg Pils" (I never tried it unfortunately, isn't available here either), for a moment I thought Tuborg in general. ๐Ÿ˜…
  • 1
    @JS96 Hey, what's your monitor?
  • 3
    @CozyPlanes An old LG E2360V:
    http://lg.com/uk/monitors/...
    I bought it a lot of years ago, so you probably won't find it new.
  • 0
    Seriously brahh??? Yeah maybe
  • 2
    Nothing better than drinking at night...

    ..not sleeping, drinking through the night, in the morning, noon...

    Later. It’s night time again.
  • 1
    coding while drunk looks intriguing

    outcome 1: what the actual fuck was I thinking last night

    outcome 2: I AM A GENIUS. ALCOHOLISM WILL PROPEL MY CAREER
  • 2
    I don't get the excitement over a Tuborg ๐Ÿ˜‚ I'm from Denmark, and it's absolutely garbage compared to what you can get for a little more money.
    But looks good anyway! I prefer rum over beer though
  • 1
    @aaxa Tuborg Classic er den bedeste verdags øl i verden! ok!!!? ๐Ÿคจ

    yeah but your right... ToØl is awesome craftbeer from copenhagen.
    and Omnipollo from Skåne ๐Ÿ˜

    https://goo.gl/5P5WrH
    To Øl

    https://goo.gl/n6nqts
    Omnipollo
  • 2
    @heyheni haha that's true.
    I'm more into dark beer. Especially brown ales.
    My favourite Danish brown ale so far is the one from Nørrebro Bryghus closely followed by the one from Svaneke ๐Ÿ˜
Add Comment